diff --git a/data-pipeline/generate_city.py b/data-pipeline/generate_city.py index 8f1fe8f..04a86b5 100644 --- a/data-pipeline/generate_city.py +++ b/data-pipeline/generate_city.py @@ -3,10 +3,10 @@ import json 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 +import pandas as pd # ========================================== # 1. Configuration @@ -41,7 +41,6 @@ JOB_DENSITY_FACTOR = 0.08 # Jobs per m3 (Commercial) # 2. Helpers # ========================================== def get_height(row): - """Estimates building height.""" h = 8.0 if "height" in row and str(row["height"]).lower() != "nan": try: @@ -63,7 +62,6 @@ def get_height(row): def estimate_road_width(row): - """Estimates width with US-unit safety checks.""" for key in ["width", "width:carriageway", "est_width"]: if key in row and str(row[key]) != "nan": val_str = str(row[key]).lower() @@ -96,10 +94,6 @@ def estimate_road_width(row): 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() @@ -107,7 +101,6 @@ def classify_building(row, height, area): volume = area * height - # Lists of tags residential_tags = [ "apartments", "residential", @@ -136,9 +129,7 @@ def classify_building(row, height, area): 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: @@ -152,11 +143,11 @@ def classify_building(row, height, area): if is_res: pop = round(volume * POP_DENSITY_FACTOR) category = "residential" - density_score = min(1.0, pop / 500) # Normalize for color (0-1) + density_score = min(1.0, pop / 500) elif is_com: jobs = round(volume * JOB_DENSITY_FACTOR) category = "commercial" - density_score = min(1.0, jobs / 1000) # Normalize for color (0-1) + density_score = min(1.0, jobs / 1000) return category, density_score, pop, jobs @@ -201,12 +192,32 @@ def parse_line_points(geom, center_x, center_y): # ========================================== print(f"1. Downloading Data for: {PLACE_NAME}...") +# Define valid tags lists for filtering later +PARK_TAGS_LEISURE = [ + "park", + "garden", + "playground", + "golf_course", + "pitch", + "recreation_ground", +] +PARK_TAGS_LANDUSE = [ + "grass", + "forest", + "park", + "meadow", + "village_green", + "recreation_ground", + "orchard", +] +NATURAL_TAGS = ["water", "bay", "coastline"] + tags_visual = { "building": True, - "natural": ["water", "bay"], - "leisure": ["park", "garden"], - "landuse": ["grass", "forest", "park"], - "amenity": True, # Fetch amenities to help classify jobs + "natural": NATURAL_TAGS, + "leisure": PARK_TAGS_LEISURE, + "landuse": PARK_TAGS_LANDUSE, + "amenity": True, # Needed for zoning, but MUST be filtered out of geometry "office": True, "shop": True, } @@ -228,23 +239,26 @@ center_y = gdf_visual.geometry.centroid.y.mean() output_visual = {"buildings": [], "water": [], "parks": [], "roads": []} output_routing = {"nodes": {}, "edges": []} -# We will store building data to map it to graph nodes later -building_data_points = [] # (x, y, pop, jobs) +building_data_points = [] print("3. Processing Visual Layers & Census Simulation...") + for idx, row in gdf_visual.iterrows(): + # Only process polygons + if row.geometry.geom_type not in ["Polygon", "MultiPolygon"]: + continue + polygons = parse_geometry(row.geometry, center_x, center_y) for poly_data in polygons: - # 1. Buildings (With Zoning Logic) + # ----------------------------- + # 1. BUILDINGS + # ----------------------------- 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]) @@ -257,16 +271,29 @@ for idx, row in gdf_visual.iterrows(): } ) - # 2. Water - elif ("natural" in row and str(row["natural"]) != "nan") or ( + # ----------------------------- + # 2. WATER + # ----------------------------- + elif ("natural" in row and str(row["natural"]) in NATURAL_TAGS) or ( "water" in row and str(row["water"]) != "nan" ): output_visual["water"].append({"shape": poly_data}) - # 3. Parks - else: + # ----------------------------- + # 3. PARKS (STRICT FILTER) + # ----------------------------- + elif ("leisure" in row and str(row["leisure"]) in PARK_TAGS_LEISURE) or ( + "landuse" in row and str(row["landuse"]) in PARK_TAGS_LANDUSE + ): output_visual["parks"].append({"shape": poly_data}) + # ----------------------------- + # 4. IGNORE EVERYTHING ELSE + # ----------------------------- + # Amenities, parking lots, and landuse=commercial fall here and are NOT drawn. + else: + pass + print(" Buffering roads...") road_polys = [] for idx, row in gdf_edges.iterrows(): @@ -281,21 +308,18 @@ if road_polys: output_visual["roads"].append({"shape": shape}) 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 + b_data = np.array([[b[2], b[3]] for b in building_data_points]) 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]) @@ -307,7 +331,7 @@ for node_id, row in gdf_nodes.iterrows(): output_routing["nodes"][int(node_id)] = { "x": round(nx, 2), "y": round(ny, 2), - "pop": node_pop, # Store for gameplay later + "pop": node_pop, "jobs": node_jobs, } diff --git a/index.html b/index.html index f73a08b..c28db7c 100644 --- a/index.html +++ b/index.html @@ -9,33 +9,48 @@ - + +
+ +$0
+

Route Planner

-

Left Click: Add Point
Drag: Move Point

- + + +
+
Budget: $1,000,000
+
Day: 1
+
+ Total Daily Riders: 0 +
+
+ +

Left Click: Add Point | Drag: Move

+

Current Draft

-
- Length: - 0 m + +
Length: 0 m
+
Cost: $0
+
Est. Riders: 0 / day
+
- +
-

Saved Routes

-
    - -
+

Active Routes

+
    diff --git a/public/city_data.json b/public/city_data.json index 4d775c0..c21d613 100644 --- a/public/city_data.json +++ b/public/city_data.json @@ -1 +1 @@ -{"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 +{"buildings": [{"shape": {"outer": [[-2355.22, -615.27], [-2356.49, -624.64], [-2351.63, -625.99], [-2353.82, -635.65], [-2360.59, -634.14], [-2363.21, -644.24], [-2364.61, -647.99], [-2366.57, -653.32], [-2368.75, -659.11], [-2371.11, -665.59], [-2372.54, -669.7], [-2366.91, -672.35], [-2371.45, -681.27], [-2378.11, -678.63], [-2378.42, -679.22], [-2381.09, -677.88], [-2393.46, -671.21], [-2394.86, -674.05], [-2398.11, -678.45], [-2401.22, -681.74], [-2404.06, -684.53], [-2406.95, -686.58], [-2410.67, -688.86], [-2414.44, -690.78], [-2418.27, -692.15], [-2421.92, -693.23], [-2426.13, -694.16], [-2425.63, -697.67], [-2485.93, -694.8], [-2487.33, -693.7], [-2489.5, -697.77], [-2494.7, -696.01], [-2499.62, -693.63], [-2502.11, -692.12], [-2503.77, -691.1], [-2507.17, -688.47], [-2508.15, -687.62], [-2511.1, -685.07], [-2506.8, -680.67], [-2502.99, -676.63], [-2505.25, -673.21], [-2525.68, -682.65], [-2527.52, -678.9], [-2531.48, -680.59], [-2542.55, -655.08], [-2539.66, -653.97], [-2542.17, -646.53], [-2544.39, -638.77], [-2545.58, -634.05], [-2545.54, -631.97], [-2542.44, -631.24], [-2543.66, -626.85], [-2544.51, -622.03], [-2541.8, -621.52], [-2543.06, -613.13], [-2544.08, -603.77], [-2544.29, -594.67], [-2544.17, -584.66], [-2543.72, -574.71], [-2543.06, -565.88], [-2541.57, -556.08], [-2539.78, -548.27], [-2542.97, -547.25], [-2540.48, -538.05], [-2542.98, -536.83], [-2543.84, -536.42], [-2542.65, -533.27], [-2541.97, -531.48], [-2539.63, -525.22], [-2537.31, -518.18], [-2534.54, -511.76], [-2536.78, -509.99], [-2533.58, -502.71], [-2527.85, -492.7], [-2522.76, -484.61], [-2515.98, -477.23], [-2514.5, -479.07], [-2513.1, -478.01], [-2504.72, -485.9], [-2499.71, -481.56], [-2494.56, -477.38], [-2501.21, -467.49], [-2499.85, -466.64], [-2495.55, -463.55], [-2495.87, -462.95], [-2488.93, -459.29], [-2481.86, -456.2], [-2473.44, -453.51], [-2466.07, -451.94], [-2457.94, -450.75], [-2450.45, -450.43], [-2442.3, -450.81], [-2435.69, -451.57], [-2427.31, -453.49], [-2418.77, -456.33], [-2410.7, -460.68], [-2406.72, -463.31], [-2398.91, -469.67], [-2392.63, -475.17], [-2387.86, -480.32], [-2385.08, -483.33], [-2379.04, -490.55], [-2373.77, -499.33], [-2370.01, -507.51], [-2366.86, -514.74], [-2365.54, -518.72], [-2363.68, -524.66], [-2356.72, -522.57], [-2353.33, -532.66], [-2360.38, -535.17], [-2358.22, -543.3], [-2357.01, -550.22], [-2355.16, -560.92], [-2353.87, -575.04], [-2353.82, -581.18], [-2353.74, -585.63], [-2346.68, -585.44], [-2346.86, -590.88], [-2353.86, -590.5], [-2353.88, -592.38], [-2354.44, -605.2], [-2355.22, -615.27]], "holes": [[[-2476.83, -649.4], [-2427.85, -650.84], [-2423.56, -649.12], [-2423.53, -643.62], [-2421.99, -643.56], [-2421.84, -637.45], [-2423.24, -637.31], [-2421.09, -631.38], [-2419.07, -623.3], [-2416.68, -613.07], [-2415.24, -601.97], [-2414.55, -586.0], [-2414.59, -570.01], [-2415.12, -562.95], [-2415.97, -555.41], [-2417.87, -545.01], [-2419.96, -536.48], [-2422.16, -528.02], [-2425.58, -524.78], [-2426.13, -525.17], [-2429.03, -521.15], [-2432.78, -517.41], [-2436.35, -514.97], [-2440.98, -512.43], [-2447.07, -511.18], [-2451.85, -510.61], [-2457.86, -511.66], [-2465.41, -514.96], [-2473.5, -522.38], [-2478.92, -527.15], [-2481.92, -538.02], [-2487.25, -559.27], [-2488.49, -575.26], [-2489.48, -586.43], [-2489.65, -599.91], [-2488.03, -615.46], [-2485.56, -626.14], [-2483.48, -634.84], [-2484.17, -646.91], [-2476.83, -649.4]]]}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 19455}}, {"shape": {"outer": [[-1894.81, -500.85], [-1898.14, -573.33], [-1927.25, -572.06], [-1927.06, -563.13], [-1928.27, -561.78], [-1940.85, -561.4], [-1951.31, -549.45], [-1950.95, -538.12], [-1943.29, -531.48], [-1953.98, -519.94], [-1953.02, -497.98], [-1894.81, -500.85]], "holes": [[[-1936.98, -520.85], [-1932.65, -525.31], [-1923.3, -535.99], [-1907.56, -536.34], [-1906.91, -519.62], [-1907.53, -519.58], [-1907.34, -512.04], [-1936.67, -510.89], [-1936.98, -520.85]]]}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1953}}, {"shape": {"outer": [[-1437.93, -202.57], [-1437.72, -201.12], [-1437.38, -194.26], [-1438.06, -194.23], [-1435.77, -147.63], [-1435.36, -139.88], [-1434.69, -129.07], [-1432.32, -88.39], [-1432.12, -86.63], [-1432.04, -84.38], [-1431.9, -82.92], [-1431.49, -76.64], [-1394.02, -78.47], [-1388.67, -78.73], [-1381.31, -79.14], [-1384.49, -142.69], [-1387.61, -202.45], [-1388.3, -215.7], [-1400.04, -215.09], [-1438.43, -213.09], [-1437.93, -202.57]], "holes": [[[-1421.37, -135.61], [-1420.59, -136.48], [-1419.67, -137.52], [-1398.82, -138.64], [-1397.85, -137.6], [-1397.19, -136.87], [-1396.46, -126.48], [-1397.26, -125.31], [-1420.59, -124.34], [-1421.03, -125.01], [-1421.37, -135.61]]]}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 11101}}, {"shape": {"outer": [[-2594.03, -702.29], [-2581.18, -702.54], [-2581.09, -697.55], [-2583.76, -697.49], [-2583.65, -692.26], [-2570.84, -692.52], [-2570.94, -697.75], [-2571.46, -697.73], [-2571.54, -701.6], [-2571.02, -701.61], [-2571.03, -703.89], [-2571.14, -707.6], [-2571.8, -707.58], [-2571.88, -711.56], [-2571.21, -711.57], [-2571.31, -716.4], [-2594.3, -715.93], [-2594.03, -702.29]], "holes": [[[-2585.65, -710.88], [-2582.18, -711.02], [-2581.99, -705.97], [-2584.55, -705.87], [-2585.46, -705.83], [-2585.65, -710.88]]]}, "height": 8.0, "data": {"type": "residential", "density": 0.328, "pop": 164, "jobs": 0}}, {"shape": {"outer": [[-936.8, -468.25], [-937.58, -488.87], [-939.16, -514.02], [-939.35, -517.04], [-971.52, -515.57], [-971.29, -510.46], [-976.09, -510.32], [-974.67, -487.09], [-970.99, -422.51], [-970.84, -416.49], [-967.54, -416.72], [-967.34, -412.13], [-944.77, -412.66], [-935.45, -412.97], [-936.17, -452.26], [-936.19, -453.56], [-925.73, -464.98], [-929.59, -468.43], [-936.8, -468.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1537, "jobs": 0}}, {"shape": {"outer": [[-2744.3, -145.86], [-2767.95, -146.89], [-2792.79, -147.32], [-2794.6, -147.39], [-2796.01, -147.45], [-2814.64, -147.87], [-2814.29, -146.74], [-2814.33, -145.84], [-2814.77, -144.83], [-2815.65, -144.16], [-2816.54, -143.84], [-2826.78, -143.98], [-2827.81, -144.42], [-2828.55, -145.04], [-2829.11, -145.99], [-2829.33, -147.28], [-2829.19, -148.19], [-2828.87, -148.91], [-2827.96, -149.84], [-2827.11, -150.25], [-2826.1, -150.39], [-2824.95, -150.25], [-2824.42, -153.64], [-2855.4, -158.86], [-2856.22, -152.54], [-2856.73, -148.61], [-2859.58, -148.89], [-2859.56, -139.48], [-2859.53, -130.11], [-2746.31, -128.67], [-2746.45, -133.75], [-2743.31, -133.06], [-2743.68, -137.89], [-2744.3, -145.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1453}}, {"shape": {"outer": [[1864.77, 1607.35], [1867.42, 1609.78], [1868.14, 1608.93], [1907.0, 1566.6], [1911.61, 1570.81], [1913.68, 1568.56], [1935.05, 1588.05], [1919.1, 1605.41], [1955.71, 1639.33], [1961.09, 1633.47], [1963.07, 1635.46], [1975.59, 1621.7], [1976.68, 1622.73], [1980.67, 1618.33], [1969.22, 1607.97], [1956.09, 1621.69], [1957.36, 1622.46], [1956.51, 1623.42], [1953.33, 1623.63], [1952.44, 1623.03], [1952.86, 1622.28], [1936.81, 1607.49], [1936.37, 1607.75], [1935.42, 1606.91], [1935.15, 1603.81], [1936.0, 1603.17], [1937.14, 1603.81], [1949.91, 1590.22], [1914.03, 1557.19], [1913.24, 1557.84], [1848.17, 1498.44], [1841.4, 1505.96], [1837.64, 1502.65], [1822.47, 1519.4], [1829.49, 1525.53], [1827.55, 1527.56], [1835.74, 1535.09], [1846.81, 1523.37], [1860.63, 1535.95], [1829.97, 1569.22], [1827.75, 1571.62], [1823.67, 1571.82], [1821.78, 1571.92], [1812.01, 1563.25], [1811.46, 1563.64], [1810.62, 1562.97], [1810.58, 1561.53], [1810.55, 1560.24], [1811.27, 1559.54], [1811.92, 1560.08], [1821.22, 1549.58], [1820.32, 1548.8], [1822.51, 1546.76], [1815.09, 1540.13], [1813.75, 1541.29], [1807.01, 1535.56], [1788.39, 1556.52], [1786.63, 1555.02], [1779.87, 1562.9], [1787.03, 1569.28], [1788.08, 1567.99], [1789.93, 1569.38], [1789.58, 1570.02], [1849.18, 1624.28], [1864.77, 1607.35]], "holes": [[[1843.93, 1584.61], [1876.48, 1549.14], [1893.84, 1564.95], [1879.97, 1580.06], [1879.1, 1579.27], [1871.45, 1587.6], [1869.63, 1585.95], [1859.68, 1596.8], [1860.12, 1597.19], [1858.86, 1598.56], [1852.54, 1598.55], [1844.2, 1590.95], [1843.93, 1584.61]]]}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 5246, "jobs": 0}}, {"shape": {"outer": [[-1754.69, 7.84], [-1754.0, 11.17], [-1746.96, 9.81], [-1746.87, 10.32], [-1743.3, 9.74], [-1740.92, 21.67], [-1758.76, 24.5], [-1758.09, 27.38], [-1758.67, 27.4], [-1756.59, 39.47], [-1756.01, 39.46], [-1755.95, 41.77], [-1750.76, 41.04], [-1750.17, 41.6], [-1742.11, 40.21], [-1742.1, 40.79], [-1729.44, 38.69], [-1729.48, 37.54], [-1721.42, 36.14], [-1721.44, 35.56], [-1716.27, 34.84], [-1718.94, 22.19], [-1724.11, 22.91], [-1725.53, 16.76], [-1724.86, 16.53], [-1725.06, 14.95], [-1725.25, 13.83], [-1725.36, 13.2], [-1726.23, 13.36], [-1727.37, 6.76], [-1724.48, 6.26], [-1725.52, 0.25], [-1721.16, -0.5], [-1720.15, -0.72], [-1719.14, -0.9], [-1717.56, -1.24], [-1717.85, -2.83], [-1718.79, -8.24], [-1719.81, -13.61], [-1720.12, -15.31], [-1721.38, -15.09], [-1722.64, -14.85], [-1723.64, -14.63], [-1728.04, -13.84], [-1729.12, -19.65], [-1732.16, -19.08], [-1733.37, -25.57], [-1732.36, -25.72], [-1732.46, -26.42], [-1732.72, -27.76], [-1732.82, -28.75], [-1732.95, -29.64], [-1733.82, -29.49], [-1735.09, -35.94], [-1730.34, -36.73], [-1732.68, -49.81], [-1737.65, -48.89], [-1737.75, -49.52], [-1746.19, -47.84], [-1746.33, -48.67], [-1747.43, -48.47], [-1758.7, -46.4], [-1758.55, -45.57], [-1766.61, -44.08], [-1766.5, -43.54], [-1771.68, -42.57], [-1771.38, -40.94], [-1799.41, -35.7], [-1799.05, -35.09], [-1796.99, -24.05], [-1794.04, -6.96], [-1793.91, -5.09], [-1795.35, -4.89], [-1794.59, -0.58], [-1793.44, 5.57], [-1791.55, 15.56], [-1773.57, 12.42], [-1773.78, 11.26], [-1754.69, 7.84]], "holes": [[[-1768.83, -26.22], [-1768.67, -25.36], [-1750.99, -28.57], [-1748.86, -16.21], [-1751.79, -15.66], [-1751.82, -14.89], [-1758.97, -13.58], [-1758.32, -10.47], [-1777.1, -7.31], [-1777.43, -8.63], [-1778.83, -8.38], [-1781.99, -24.11], [-1768.83, -26.22]]]}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4626}}, {"shape": {"outer": [[-3121.0, 39.02], [-3115.7, 53.57], [-3116.23, 64.74], [-3116.39, 65.3], [-3123.89, 64.85], [-3124.79, 80.11], [-3124.4, 80.14], [-3124.82, 87.49], [-3121.31, 120.9], [-3125.37, 121.3], [-3123.57, 139.58], [-3119.38, 139.17], [-3119.53, 140.58], [-3092.7, 139.61], [-3092.77, 137.56], [-3090.22, 137.47], [-3080.55, 137.11], [-3080.55, 136.99], [-3080.01, 136.96], [-3080.02, 136.85], [-3079.74, 136.84], [-3079.06, 136.81], [-3078.89, 140.71], [-3054.37, 139.8], [-3054.42, 138.0], [-3051.02, 137.88], [-3053.31, 74.21], [-3053.36, 72.76], [-3053.54, 67.89], [-3053.76, 61.72], [-3055.32, 62.16], [-3059.78, 62.34], [-3066.25, 62.55], [-3072.36, 62.79], [-3072.39, 62.18], [-3107.31, 63.47], [-3107.89, 47.77], [-3090.6, 44.54], [-3090.85, 37.93], [-3121.0, 39.02]], "holes": [[[-3080.11, 129.76], [-3090.52, 129.94], [-3090.86, 129.87], [-3091.2, 129.76], [-3091.54, 129.63], [-3091.86, 129.47], [-3092.16, 129.28], [-3092.45, 129.06], [-3092.71, 128.81], [-3092.96, 128.54], [-3113.34, 104.44], [-3113.77, 103.85], [-3114.16, 103.24], [-3114.49, 102.58], [-3114.76, 101.91], [-3114.98, 101.23], [-3115.14, 100.52], [-3115.24, 99.8], [-3116.14, 91.31], [-3116.15, 91.25], [-3088.05, 90.21], [-3088.01, 91.28], [-3086.98, 91.24], [-3087.13, 87.24], [-3081.7, 87.08], [-3080.11, 129.76]]]}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4028}}, {"shape": {"outer": [[-1540.72, -1210.18], [-1548.16, -1210.03], [-1548.61, -1225.01], [-1550.34, -1224.96], [-1550.55, -1231.81], [-1551.56, -1231.78], [-1551.6, -1233.19], [-1604.85, -1231.64], [-1604.47, -1218.72], [-1618.8, -1218.3], [-1617.77, -1183.1], [-1618.62, -1183.07], [-1618.5, -1179.31], [-1617.58, -1179.33], [-1617.49, -1176.26], [-1618.41, -1176.23], [-1618.31, -1172.78], [-1617.33, -1172.82], [-1617.21, -1169.02], [-1618.21, -1168.99], [-1617.86, -1157.11], [-1616.79, -1157.14], [-1616.34, -1141.82], [-1607.53, -1142.09], [-1607.51, -1141.12], [-1580.33, -1141.91], [-1579.6, -1144.32], [-1577.48, -1145.0], [-1576.19, -1142.85], [-1573.11, -1142.87], [-1572.57, -1145.43], [-1570.37, -1144.42], [-1570.55, -1150.5], [-1556.13, -1150.89], [-1530.68, -1151.6], [-1530.78, -1155.89], [-1539.0, -1155.6], [-1539.19, -1160.46], [-1526.0, -1160.72], [-1526.07, -1164.34], [-1522.11, -1164.42], [-1522.36, -1177.37], [-1521.77, -1177.39], [-1522.41, -1209.28], [-1526.99, -1209.19], [-1527.05, -1212.27], [-1523.34, -1212.35], [-1523.6, -1225.66], [-1527.72, -1229.32], [-1541.17, -1229.05], [-1540.72, -1210.18]], "holes": [[[-1581.88, -1181.54], [-1573.4, -1181.78], [-1573.35, -1179.91], [-1566.32, -1180.1], [-1565.89, -1164.34], [-1581.4, -1163.92], [-1581.88, -1181.54]]]}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4699}}, {"shape": {"outer": [[-1358.48, -115.07], [-1357.05, -82.2], [-1356.4, -82.23], [-1356.23, -78.43], [-1347.89, -78.84], [-1346.34, -78.79], [-1345.11, -78.86], [-1337.04, -79.24], [-1337.21, -82.95], [-1335.96, -83.01], [-1336.19, -87.85], [-1334.61, -87.92], [-1334.63, -88.47], [-1334.91, -94.3], [-1334.98, -96.41], [-1336.58, -96.34], [-1336.63, -98.55], [-1336.68, -99.66], [-1336.79, -100.89], [-1337.36, -113.49], [-1340.68, -113.37], [-1340.85, -116.16], [-1335.34, -116.41], [-1335.89, -127.44], [-1360.31, -126.27], [-1359.82, -115.01], [-1358.48, -115.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.67, "pop": 0, "jobs": 670}}, {"shape": {"outer": [[-1356.91, -152.28], [-1351.7, -152.56], [-1338.97, -153.24], [-1338.16, -153.28], [-1339.7, -190.86], [-1340.38, -205.06], [-1380.96, -202.56], [-1378.74, -151.13], [-1376.56, -151.25], [-1363.97, -151.91], [-1356.91, -152.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1345}}, {"shape": {"outer": [[-1215.02, 117.74], [-1215.06, 116.9], [-1219.52, 117.1], [-1221.0, 117.17], [-1238.16, 117.96], [-1241.02, 118.09], [-1240.88, 121.12], [-1240.73, 124.43], [-1242.66, 124.48], [-1242.69, 123.54], [-1249.87, 123.76], [-1251.14, 125.02], [-1254.28, 125.2], [-1253.06, 127.33], [-1252.3, 128.63], [-1250.84, 132.09], [-1250.1, 136.28], [-1249.98, 138.87], [-1250.19, 141.16], [-1251.03, 142.34], [-1251.91, 143.39], [-1252.88, 144.26], [-1253.83, 144.96], [-1252.0, 145.62], [-1249.43, 146.34], [-1246.79, 146.92], [-1244.81, 147.2], [-1242.55, 147.37], [-1237.31, 147.5], [-1237.2, 150.63], [-1206.27, 149.35], [-1206.56, 141.53], [-1195.13, 140.87], [-1195.5, 133.45], [-1194.23, 133.38], [-1191.79, 133.24], [-1192.13, 125.23], [-1194.73, 125.33], [-1195.8, 125.37], [-1196.13, 117.79], [-1204.08, 118.14], [-1210.28, 118.4], [-1214.98, 118.6], [-1215.02, 117.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1039}}, {"shape": {"outer": [[135.47, -528.34], [133.87, -527.01], [132.65, -525.84], [129.02, -529.07], [127.68, -527.8], [126.59, -526.31], [125.97, -524.81], [125.94, -523.02], [126.29, -521.08], [127.44, -519.21], [172.44, -474.33], [175.24, -471.6], [178.29, -468.79], [177.16, -467.26], [176.43, -465.76], [175.83, -463.94], [175.63, -462.17], [175.4, -460.56], [175.56, -458.68], [175.74, -456.85], [176.5, -454.8], [177.44, -452.77], [178.66, -451.02], [180.22, -449.23], [181.84, -447.91], [183.68, -446.99], [185.67, -446.19], [187.96, -445.81], [190.37, -445.77], [192.84, -446.0], [196.75, -447.38], [198.21, -448.4], [200.8, -445.8], [202.39, -444.09], [203.8, -442.76], [245.35, -401.74], [246.93, -400.04], [248.4, -398.84], [250.48, -397.86], [252.29, -397.76], [254.63, -398.23], [258.0, -400.95], [260.35, -398.9], [261.18, -398.71], [262.05, -398.75], [262.71, -399.17], [262.96, -399.74], [263.04, -400.29], [262.86, -401.14], [261.2, -402.81], [252.24, -411.15], [253.59, -412.68], [256.19, -415.69], [258.12, -418.57], [259.71, -421.22], [261.36, -424.47], [263.02, -428.62], [265.15, -429.37], [266.95, -430.33], [268.59, -431.84], [270.35, -433.29], [271.87, -435.55], [272.81, -437.71], [273.52, -440.26], [273.53, -440.89], [273.58, -443.6], [273.24, -446.85], [272.04, -450.08], [269.92, -453.41], [267.07, -456.27], [263.63, -458.19], [259.79, -459.18], [256.83, -459.36], [256.24, -460.51], [255.25, -461.71], [254.37, -462.42], [253.38, -462.95], [251.49, -463.46], [250.43, -463.49], [250.17, -466.66], [249.46, -470.56], [248.37, -475.52], [246.12, -482.18], [245.01, -484.59], [244.01, -486.74], [240.89, -492.39], [238.31, -496.36], [235.06, -500.13], [231.85, -503.42], [228.54, -506.63], [223.18, -510.76], [216.48, -514.36], [213.64, -515.65], [209.28, -517.51], [204.22, -518.64], [200.04, -519.58], [195.61, -520.2], [193.27, -520.49], [193.23, -522.24], [192.65, -524.09], [191.86, -525.33], [190.71, -526.44], [189.78, -527.01], [189.99, -529.55], [189.67, -531.67], [189.03, -534.45], [187.47, -537.27], [185.42, -539.67], [183.32, -541.39], [180.96, -542.52], [178.25, -543.25], [175.61, -543.52], [172.96, -543.52], [170.59, -543.19], [168.06, -542.48], [166.08, -541.62], [164.1, -540.57], [162.28, -539.05], [160.72, -537.64], [159.78, -536.57], [158.88, -534.94], [158.18, -533.24], [153.7, -531.3], [151.29, -530.27], [148.93, -529.14], [146.48, -527.83], [144.4, -526.4], [142.43, -525.0], [140.78, -523.42], [135.47, -528.34]], "holes": [[[193.06, -455.96], [191.66, -455.1], [190.06, -454.73], [188.43, -454.89], [186.93, -455.56], [185.72, -456.65], [184.91, -458.15], [184.64, -459.84], [184.94, -461.5], [185.79, -462.98], [187.07, -464.1], [188.66, -464.73], [190.36, -464.8], [191.99, -464.31], [193.37, -463.31], [194.3, -461.96], [194.76, -460.39], [194.69, -458.75], [194.11, -457.23], [193.06, -455.96]]]}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5679}}, {"shape": {"outer": [[-1435.9, 152.97], [-1434.3, 152.91], [-1434.26, 153.98], [-1433.99, 160.26], [-1429.89, 160.1], [-1410.28, 159.27], [-1410.49, 154.29], [-1410.69, 149.26], [-1408.75, 149.18], [-1410.08, 117.05], [-1408.68, 116.99], [-1408.75, 115.22], [-1407.25, 115.17], [-1407.51, 108.92], [-1408.24, 108.95], [-1408.58, 100.18], [-1406.16, 100.09], [-1402.8, 99.95], [-1402.7, 102.41], [-1400.36, 102.31], [-1400.34, 102.65], [-1398.39, 102.57], [-1395.63, 102.47], [-1395.49, 106.31], [-1394.45, 106.22], [-1393.66, 106.41], [-1392.47, 106.94], [-1391.1, 108.26], [-1389.71, 109.49], [-1388.5, 110.11], [-1386.86, 110.48], [-1385.24, 110.53], [-1383.61, 110.25], [-1382.01, 109.45], [-1380.57, 108.54], [-1379.4, 107.15], [-1378.65, 106.03], [-1377.86, 105.41], [-1376.87, 104.94], [-1376.1, 104.86], [-1375.12, 104.8], [-1372.78, 104.62], [-1371.32, 104.52], [-1371.14, 111.9], [-1370.51, 125.23], [-1329.76, 123.32], [-1332.27, 69.84], [-1340.02, 70.2], [-1340.04, 69.54], [-1349.99, 69.94], [-1359.71, 70.39], [-1359.68, 71.14], [-1368.75, 71.54], [-1368.78, 70.72], [-1369.9, 70.76], [-1369.96, 69.85], [-1370.1, 66.44], [-1370.49, 66.45], [-1379.0, 66.78], [-1378.95, 67.88], [-1383.34, 68.05], [-1391.44, 68.35], [-1395.25, 68.51], [-1395.3, 67.5], [-1395.67, 67.53], [-1399.13, 67.7], [-1400.93, 67.8], [-1403.95, 67.87], [-1404.29, 67.88], [-1404.1, 72.54], [-1405.15, 72.58], [-1405.12, 73.48], [-1405.72, 73.51], [-1405.78, 71.97], [-1406.3, 72.05], [-1410.07, 72.2], [-1414.27, 72.32], [-1414.23, 73.29], [-1416.67, 73.39], [-1416.79, 70.43], [-1418.16, 70.49], [-1431.01, 71.03], [-1432.34, 71.1], [-1432.2, 74.38], [-1433.72, 74.45], [-1433.69, 75.26], [-1437.58, 75.42], [-1441.83, 75.6], [-1443.35, 75.67], [-1442.89, 86.22], [-1441.41, 86.16], [-1439.26, 86.07], [-1438.83, 95.9], [-1439.79, 95.94], [-1439.25, 108.38], [-1438.17, 108.33], [-1437.81, 116.83], [-1440.04, 116.93], [-1441.67, 117.0], [-1441.14, 129.39], [-1440.14, 153.16], [-1435.9, 152.97]], "holes": [[[-1369.74, 104.78], [-1370.52, 104.82], [-1370.64, 102.35], [-1375.88, 102.6], [-1375.78, 104.59], [-1376.93, 104.64], [-1378.02, 105.14], [-1378.97, 105.87], [-1379.81, 107.17], [-1380.8, 108.39], [-1382.29, 109.26], [-1383.79, 109.85], [-1385.23, 110.18], [-1386.74, 110.09], [-1388.11, 109.78], [-1389.43, 109.1], [-1390.73, 108.05], [-1391.92, 106.73], [-1393.36, 106.02], [-1394.33, 105.81], [-1395.21, 105.86], [-1395.42, 102.08], [-1390.62, 101.82], [-1390.54, 103.24], [-1389.86, 104.75], [-1388.55, 106.09], [-1386.94, 106.93], [-1383.46, 106.55], [-1381.64, 105.4], [-1380.56, 103.7], [-1380.09, 102.33], [-1380.15, 101.24], [-1362.42, 100.38], [-1361.72, 114.9], [-1337.97, 113.75], [-1338.83, 95.96], [-1337.38, 95.9], [-1337.78, 87.61], [-1339.44, 87.68], [-1340.14, 73.12], [-1336.89, 72.98], [-1334.89, 72.87], [-1332.6, 120.75], [-1368.3, 122.45], [-1368.96, 104.77], [-1369.74, 104.78]]]}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6292}}, {"shape": {"outer": [[-2080.21, -187.24], [-2079.72, -176.06], [-2078.97, -158.81], [-2052.86, -159.95], [-2052.72, -156.91], [-2049.1, -157.07], [-2048.65, -146.68], [-2053.75, -146.45], [-2053.21, -134.19], [-2049.57, -134.35], [-2048.88, -133.44], [-2048.64, -125.03], [-2048.59, -123.42], [-2038.03, -123.72], [-2038.06, -124.73], [-2035.0, -124.82], [-2032.88, -131.16], [-2031.66, -131.22], [-2021.22, -131.66], [-2017.49, -131.81], [-2017.58, -134.03], [-2014.36, -134.16], [-2013.84, -122.05], [-2017.41, -121.9], [-2017.0, -111.83], [-2012.86, -107.81], [-1998.71, -108.28], [-1999.72, -135.54], [-1973.97, -136.51], [-1973.6, -126.56], [-1963.19, -126.95], [-1963.23, -127.78], [-1948.65, -128.32], [-1948.58, -129.0], [-1942.55, -129.25], [-1939.99, -129.36], [-1933.38, -129.64], [-1933.82, -139.36], [-1934.0, -145.3], [-1935.01, -164.5], [-1935.31, -170.29], [-1935.39, -171.76], [-1935.44, -173.0], [-1936.25, -193.0], [-1949.98, -192.4], [-1949.34, -177.29], [-1967.7, -176.51], [-1974.52, -176.23], [-1974.46, -174.85], [-1982.94, -174.49], [-1983.02, -176.28], [-2032.09, -174.17], [-2032.05, -173.22], [-2040.63, -172.85], [-2040.68, -173.93], [-2066.25, -172.81], [-2066.91, -187.82], [-2080.21, -187.24]], "holes": [[[-2039.19, -156.69], [-2037.46, -156.75], [-2037.67, -162.5], [-2031.79, -162.72], [-2031.74, -161.06], [-2020.13, -161.48], [-2019.81, -153.01], [-2020.85, -152.97], [-2020.75, -150.52], [-2038.94, -149.85], [-2039.19, -156.69]], [[-1994.22, -154.28], [-1994.58, -162.56], [-1985.22, -162.96], [-1984.99, -157.56], [-1975.18, -157.99], [-1974.93, -152.25], [-1992.78, -151.48], [-1992.9, -154.32], [-1994.22, -154.28]]]}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8488}}, {"shape": {"outer": [[-1789.31, -51.8], [-1789.73, -55.64], [-1788.62, -55.68], [-1776.83, -56.16], [-1754.66, -57.0], [-1752.26, -66.95], [-1751.72, -69.16], [-1750.97, -72.11], [-1750.66, -73.53], [-1750.07, -75.96], [-1754.73, -76.35], [-1755.26, -75.73], [-1756.07, -75.71], [-1762.86, -75.57], [-1763.3, -77.7], [-1764.67, -84.4], [-1766.47, -84.35], [-1775.38, -84.12], [-1777.1, -89.4], [-1792.51, -88.75], [-1793.92, -83.23], [-1835.67, -81.68], [-1839.0, -81.47], [-1848.1, -81.17], [-1847.83, -74.52], [-1847.46, -65.02], [-1849.56, -64.36], [-1849.13, -54.12], [-1847.07, -53.64], [-1846.79, -50.06], [-1846.68, -46.85], [-1846.47, -40.67], [-1846.43, -39.7], [-1840.32, -39.89], [-1840.05, -39.05], [-1836.72, -39.22], [-1833.2, -39.4], [-1833.2, -40.27], [-1820.59, -40.59], [-1816.21, -40.71], [-1802.8, -43.99], [-1803.25, -47.13], [-1789.31, -51.8]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2798}}, {"shape": {"outer": [[172.44, -474.33], [127.44, -519.21], [126.29, -521.08], [125.94, -523.02], [125.97, -524.81], [126.59, -526.31], [127.68, -527.8], [129.02, -529.07], [132.65, -525.84], [133.87, -527.01], [135.47, -528.34], [132.97, -530.89], [127.59, -536.35], [123.57, -540.34], [106.7, -557.12], [98.51, -565.27], [99.35, -566.13], [105.04, -571.98], [108.26, -575.07], [109.65, -576.78], [110.73, -578.66], [111.1, -579.93], [111.32, -580.68], [111.66, -582.89], [111.47, -585.82], [110.98, -588.46], [109.45, -591.58], [107.51, -593.69], [105.81, -595.29], [102.59, -596.91], [98.86, -597.59], [95.57, -597.32], [91.63, -596.11], [90.71, -595.56], [89.89, -595.08], [88.69, -594.08], [87.84, -593.21], [87.08, -592.22], [86.12, -590.87], [85.4, -589.42], [84.79, -587.89], [84.38, -585.88], [84.3, -585.09], [84.23, -584.35], [84.33, -582.47], [84.58, -580.72], [85.71, -578.09], [87.18, -575.77], [83.24, -571.99], [79.72, -568.44], [75.19, -563.86], [65.8, -554.73], [53.9, -542.49], [49.09, -537.55], [48.55, -537.52], [47.92, -537.42], [47.4, -536.95], [47.19, -536.38], [47.12, -535.7], [31.68, -521.73], [35.95, -517.82], [38.13, -515.57], [42.64, -520.0], [54.33, -530.34], [57.02, -527.57], [67.61, -517.03], [123.13, -461.39], [125.67, -458.84], [143.59, -440.97], [145.71, -438.8], [146.24, -438.28], [146.9, -437.59], [169.17, -415.27], [169.95, -414.52], [172.54, -411.91], [173.11, -411.48], [186.42, -398.15], [221.87, -361.83], [244.07, -338.37], [249.0, -333.22], [252.75, -329.42], [255.15, -326.74], [258.65, -326.22], [264.64, -331.98], [276.29, -343.53], [285.72, -352.93], [290.5, -357.7], [293.66, -360.85], [295.59, -362.55], [297.78, -364.66], [298.93, -363.43], [300.89, -362.4], [303.05, -361.55], [305.34, -361.04], [307.67, -361.01], [309.4, -361.18], [310.24, -361.19], [312.28, -361.95], [314.2, -362.85], [315.87, -364.05], [317.48, -365.48], [318.88, -367.27], [319.78, -369.03], [320.31, -371.35], [320.57, -373.75], [320.52, -376.13], [320.11, -378.7], [319.13, -380.9], [317.95, -382.53], [316.23, -384.32], [314.2, -385.77], [311.95, -386.89], [310.47, -387.55], [307.85, -387.91], [305.04, -387.63], [302.2, -386.9], [299.12, -385.19], [289.81, -376.64], [288.51, -375.47], [278.31, -385.17], [271.91, -391.7], [262.86, -401.14], [263.04, -400.29], [262.96, -399.74], [262.71, -399.17], [262.05, -398.75], [261.18, -398.71], [260.35, -398.9], [258.0, -400.95], [254.63, -398.23], [252.29, -397.76], [250.48, -397.86], [248.4, -398.84], [246.93, -400.04], [245.35, -401.74], [203.8, -442.76], [202.39, -444.09], [200.8, -445.8], [198.21, -448.4], [196.75, -447.38], [192.84, -446.0], [190.37, -445.77], [187.96, -445.81], [185.67, -446.19], [183.68, -446.99], [181.84, -447.91], [180.22, -449.23], [178.66, -451.02], [177.44, -452.77], [176.5, -454.8], [175.74, -456.85], [175.56, -458.68], [175.4, -460.56], [175.63, -462.17], [175.83, -463.94], [176.43, -465.76], [177.16, -467.26], [178.29, -468.79], [175.24, -471.6], [172.44, -474.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 10083}}, {"shape": {"outer": [[-1493.45, -993.08], [-1484.92, -993.08], [-1481.21, -993.08], [-1481.37, -989.2], [-1480.73, -989.2], [-1475.51, -989.13], [-1475.33, -993.1], [-1434.25, -992.91], [-1434.18, -991.38], [-1434.62, -991.43], [-1434.5, -981.53], [-1434.28, -963.54], [-1430.25, -963.55], [-1430.31, -991.34], [-1430.33, -997.42], [-1480.02, -997.72], [-1484.74, -997.73], [-1493.25, -997.75], [-1505.46, -997.79], [-1510.78, -997.81], [-1519.31, -997.83], [-1527.08, -997.85], [-1527.25, -1001.24], [-1532.79, -1001.42], [-1533.05, -997.75], [-1573.13, -997.26], [-1573.02, -993.14], [-1519.47, -993.1], [-1511.06, -993.1], [-1505.71, -993.1], [-1493.45, -993.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.523, "pop": 0, "jobs": 523}}, {"shape": {"outer": [[-132.97, -96.6], [-132.73, -91.43], [-131.43, -63.39], [-125.42, -63.56], [-125.33, -61.38], [-124.56, -61.4], [-123.28, -61.42], [-123.18, -58.83], [-117.07, -59.04], [-115.93, -59.08], [-114.95, -59.12], [-112.98, -59.19], [-111.82, -59.23], [-110.72, -59.28], [-108.89, -59.34], [-108.05, -59.38], [-106.83, -59.42], [-101.48, -59.6], [-99.97, -59.67], [-100.07, -62.37], [-99.32, -62.39], [-97.99, -62.44], [-98.08, -64.56], [-92.22, -64.75], [-93.75, -93.18], [-94.01, -98.1], [-92.21, -98.24], [-90.35, -98.96], [-89.36, -99.34], [-87.71, -100.51], [-85.73, -103.42], [-85.16, -105.11], [-84.59, -108.0], [-80.23, -108.18], [-51.45, -109.35], [-51.7, -115.38], [-49.84, -115.46], [-49.87, -115.97], [-49.92, -117.27], [-47.36, -117.37], [-47.39, -118.11], [-47.63, -123.98], [-47.67, -125.11], [-47.71, -126.09], [-47.79, -128.06], [-47.83, -129.16], [-47.88, -130.31], [-47.95, -132.12], [-47.99, -133.16], [-48.04, -134.14], [-48.33, -140.89], [-50.85, -140.79], [-50.92, -142.3], [-50.95, -142.99], [-53.47, -142.91], [-53.7, -148.48], [-81.22, -147.2], [-86.76, -146.99], [-86.92, -148.93], [-88.34, -151.56], [-89.91, -153.45], [-91.98, -154.93], [-92.58, -155.37], [-94.54, -155.83], [-96.75, -155.89], [-96.94, -160.88], [-97.97, -189.08], [-104.35, -188.91], [-104.42, -190.74], [-106.3, -190.68], [-106.37, -193.36], [-112.86, -193.08], [-114.0, -193.03], [-114.98, -192.98], [-116.99, -192.89], [-118.08, -192.83], [-119.23, -192.78], [-120.99, -192.7], [-121.97, -192.65], [-123.0, -192.61], [-125.68, -192.52], [-129.75, -192.36], [-129.66, -189.56], [-131.27, -189.46], [-131.23, -187.63], [-136.96, -187.45], [-135.97, -158.26], [-135.68, -152.82], [-137.57, -152.78], [-140.07, -152.41], [-140.51, -152.09], [-142.35, -150.53], [-143.41, -148.93], [-143.62, -148.57], [-144.25, -146.17], [-144.21, -143.82], [-150.47, -143.72], [-178.11, -142.5], [-177.93, -136.66], [-179.11, -136.61], [-179.08, -135.92], [-179.04, -134.81], [-182.26, -134.7], [-182.02, -127.92], [-181.98, -126.85], [-181.94, -125.9], [-181.88, -124.09], [-181.81, -122.52], [-181.79, -121.83], [-181.73, -119.87], [-181.69, -118.88], [-181.66, -117.79], [-181.44, -111.99], [-181.41, -111.03], [-178.24, -111.11], [-178.21, -110.39], [-178.16, -109.21], [-176.37, -109.29], [-176.16, -103.52], [-148.92, -104.88], [-142.15, -104.92], [-141.63, -102.34], [-140.78, -100.36], [-140.37, -99.97], [-138.9, -98.58], [-137.33, -97.39], [-136.78, -96.97], [-134.67, -96.64], [-132.97, -96.6]], "holes": []}, "height": 86.6, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 61937}}, {"shape": {"outer": [[-1072.11, -877.51], [-1068.29, -868.94], [-1066.23, -868.78], [-1064.25, -867.88], [-1061.99, -866.85], [-1060.91, -865.71], [-1016.9, -885.12], [-1008.6, -866.43], [-1086.48, -832.04], [-1088.2, -835.93], [-1089.77, -839.44], [-1091.1, -842.45], [-1101.02, -864.75], [-1072.11, -877.51]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1887}}, {"shape": {"outer": [[-950.03, -856.29], [-952.45, -855.2], [-1076.91, -798.7], [-1075.3, -795.17], [-1032.43, -814.62], [-1027.8, -804.49], [-1009.67, -812.72], [-1012.7, -819.34], [-1002.78, -823.84], [-998.55, -814.58], [-987.35, -819.66], [-986.95, -818.77], [-958.27, -831.79], [-961.51, -838.86], [-945.4, -846.16], [-950.03, -856.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1011}}, {"shape": {"outer": [[-1125.45, -133.31], [-1123.8, -133.39], [-1123.74, -132.13], [-1123.66, -130.32], [-1118.18, -130.55], [-1118.1, -129.18], [-1110.62, -129.54], [-1109.12, -129.61], [-1107.63, -129.68], [-1089.19, -130.56], [-1080.22, -130.95], [-1077.98, -131.08], [-1078.76, -147.39], [-1074.07, -147.61], [-1074.42, -154.91], [-1079.26, -154.69], [-1079.36, -156.86], [-1079.46, -158.87], [-1075.24, -161.54], [-1075.37, -165.6], [-1079.66, -163.17], [-1079.77, -165.74], [-1080.58, -184.77], [-1075.81, -185.03], [-1076.09, -191.59], [-1081.01, -191.41], [-1081.07, -192.96], [-1081.19, -195.72], [-1076.83, -198.46], [-1077.24, -202.89], [-1081.51, -200.36], [-1081.61, -202.38], [-1081.69, -204.03], [-1128.7, -201.8], [-1125.45, -133.31]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3964}}, {"shape": {"outer": [[-497.5, -279.97], [-551.75, -221.26], [-567.42, -235.62], [-580.14, -247.09], [-525.21, -305.78], [-510.72, -292.1], [-497.5, -279.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1953}}, {"shape": {"outer": [[-75.68, 199.09], [-73.89, 200.78], [-77.26, 205.23], [-31.02, 248.12], [-26.99, 243.86], [-23.86, 246.38], [3.06, 217.1], [25.3, 192.29], [20.43, 187.65], [-25.64, 145.4], [-39.71, 160.74], [-72.28, 195.47], [-75.68, 199.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3509}}, {"shape": {"outer": [[-2846.86, -217.02], [-2844.51, -231.92], [-2845.51, -232.08], [-2843.75, -243.22], [-2842.75, -243.06], [-2842.28, -246.03], [-2827.23, -243.67], [-2829.06, -232.02], [-2821.09, -230.78], [-2819.63, -239.99], [-2802.58, -237.32], [-2804.0, -228.32], [-2796.15, -227.09], [-2794.49, -237.68], [-2776.45, -234.85], [-2776.8, -232.64], [-2775.48, -232.43], [-2776.95, -223.1], [-2778.79, -223.39], [-2780.17, -214.66], [-2779.27, -214.52], [-2780.6, -206.17], [-2787.8, -207.29], [-2787.43, -209.65], [-2798.07, -211.32], [-2798.47, -208.81], [-2809.96, -210.6], [-2809.56, -213.11], [-2817.35, -214.33], [-2817.76, -211.73], [-2829.3, -213.53], [-2828.89, -216.13], [-2839.68, -217.82], [-2839.98, -215.94], [-2846.86, -217.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 680, "jobs": 0}}, {"shape": {"outer": [[-2770.83, -206.98], [-2769.61, -216.1], [-2754.47, -214.09], [-2754.26, -215.56], [-2748.58, -214.8], [-2748.82, -213.01], [-2744.95, -212.5], [-2746.13, -203.7], [-2770.83, -206.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-2133.62, -400.14], [-2126.27, -400.51], [-2121.96, -400.72], [-2113.16, -401.28], [-2098.97, -417.51], [-2099.56, -428.61], [-2100.19, -440.44], [-2113.6, -453.21], [-2134.29, -452.28], [-2134.29, -449.92], [-2135.84, -449.83], [-2135.66, -445.67], [-2133.89, -404.17], [-2133.62, -400.14]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1827}}, {"shape": {"outer": [[-2603.39, -22.29], [-2604.49, -57.88], [-2634.04, -56.95], [-2634.08, -58.29], [-2639.73, -58.12], [-2639.69, -56.78], [-2670.52, -55.82], [-2669.4, -19.9], [-2649.89, -20.5], [-2649.71, -14.96], [-2639.45, -15.28], [-2639.48, -16.12], [-2635.76, -16.24], [-2630.89, -16.39], [-2630.87, -15.6], [-2621.9, -15.88], [-2622.08, -21.7], [-2603.39, -22.29]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1412}}, {"shape": {"outer": [[-2564.2, 33.59], [-2564.31, 30.42], [-2557.31, 30.17], [-2557.73, 18.19], [-2537.55, 17.49], [-2537.52, 18.43], [-2535.86, 18.37], [-2533.75, 18.29], [-2533.84, 15.58], [-2490.49, 14.06], [-2490.08, 25.88], [-2478.85, 25.49], [-2479.05, 19.93], [-2460.4, 19.28], [-2459.69, 39.53], [-2478.27, 40.19], [-2478.34, 38.16], [-2481.15, 38.26], [-2480.54, 55.55], [-2500.61, 56.26], [-2501.26, 37.72], [-2496.53, 37.55], [-2496.63, 34.53], [-2497.43, 34.55], [-2497.68, 27.58], [-2516.75, 28.25], [-2516.31, 40.86], [-2529.99, 41.34], [-2533.11, 41.46], [-2533.34, 34.84], [-2536.79, 34.96], [-2536.74, 36.29], [-2557.11, 37.0], [-2557.24, 33.35], [-2564.2, 33.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1413}}, {"shape": {"outer": [[-2520.33, 121.74], [-2520.59, 115.23], [-2522.19, 76.4], [-2526.72, 76.58], [-2526.96, 70.9], [-2540.64, 69.52], [-2549.85, 69.89], [-2565.72, 70.54], [-2578.28, 71.06], [-2576.11, 124.02], [-2520.33, 121.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1863}}, {"shape": {"outer": [[-2407.34, -94.17], [-2416.05, -93.98], [-2416.01, -96.09], [-2422.51, -95.83], [-2423.41, -124.81], [-2418.72, -125.01], [-2410.42, -128.94], [-2411.83, -132.09], [-2363.66, -153.85], [-2362.09, -151.23], [-2355.91, -154.53], [-2348.17, -154.8], [-2348.01, -149.29], [-2346.93, -149.34], [-2346.8, -143.61], [-2345.85, -120.71], [-2346.9, -120.68], [-2346.99, -117.41], [-2354.11, -117.18], [-2356.26, -117.02], [-2345.63, -94.66], [-2388.02, -93.15], [-2392.59, -91.3], [-2396.22, -99.39], [-2407.34, -94.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2299}}, {"shape": {"outer": [[-2676.49, 333.63], [-2677.46, 299.78], [-2666.64, 299.47], [-2665.66, 333.32], [-2676.49, 333.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[-2627.02, 282.0], [-2627.16, 277.21], [-2625.35, 277.16], [-2625.38, 275.99], [-2625.55, 269.97], [-2663.45, 271.04], [-2664.17, 245.45], [-2668.82, 245.59], [-2668.87, 243.81], [-2675.79, 244.0], [-2674.96, 273.12], [-2676.96, 273.18], [-2676.79, 279.4], [-2673.98, 279.31], [-2673.85, 284.17], [-2657.19, 283.69], [-2657.21, 282.84], [-2627.02, 282.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.732, "pop": 366, "jobs": 0}}, {"shape": {"outer": [[-2708.9, 117.33], [-2709.91, 84.51], [-2736.67, 85.32], [-2736.41, 93.83], [-2746.65, 94.15], [-2746.44, 100.79], [-2802.6, 102.53], [-2801.84, 127.22], [-2746.41, 125.5], [-2746.51, 122.18], [-2743.81, 122.1], [-2741.98, 122.04], [-2741.78, 128.77], [-2724.46, 128.24], [-2724.77, 117.82], [-2708.9, 117.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1734}}, {"shape": {"outer": [[-2665.47, 120.7], [-2665.35, 123.69], [-2676.13, 124.12], [-2676.42, 116.73], [-2677.98, 116.79], [-2678.51, 103.51], [-2676.62, 103.43], [-2677.95, 70.51], [-2666.96, 70.08], [-2667.1, 66.74], [-2655.41, 66.27], [-2654.24, 95.21], [-2638.72, 94.59], [-2638.56, 98.9], [-2633.98, 98.71], [-2634.13, 94.98], [-2629.78, 94.81], [-2629.84, 93.26], [-2619.41, 92.84], [-2619.35, 94.38], [-2601.62, 93.67], [-2600.94, 110.4], [-2599.57, 110.35], [-2599.23, 118.6], [-2600.62, 118.65], [-2600.52, 121.07], [-2616.63, 121.72], [-2616.57, 123.2], [-2626.68, 123.61], [-2626.74, 122.12], [-2630.28, 122.27], [-2630.44, 118.5], [-2633.18, 118.62], [-2637.97, 118.81], [-2637.77, 123.87], [-2658.46, 124.7], [-2658.63, 120.43], [-2662.77, 120.6], [-2665.47, 120.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1753}}, {"shape": {"outer": [[-2643.66, 71.46], [-2643.98, 62.74], [-2646.62, 62.84], [-2646.85, 56.74], [-2643.82, 56.63], [-2643.96, 52.9], [-2630.63, 52.4], [-2594.85, 51.07], [-2594.73, 54.59], [-2592.33, 54.5], [-2592.13, 60.08], [-2594.55, 60.18], [-2594.2, 69.64], [-2643.66, 71.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.606, "pop": 0, "jobs": 606}}, {"shape": {"outer": [[-2464.34, 121.35], [-2464.49, 117.07], [-2464.6, 113.83], [-2464.72, 110.26], [-2464.74, 109.56], [-2457.96, 109.25], [-2458.11, 106.19], [-2463.66, 106.4], [-2464.85, 106.45], [-2464.96, 103.13], [-2465.17, 96.9], [-2463.66, 96.85], [-2463.81, 92.1], [-2465.33, 92.16], [-2465.59, 84.43], [-2465.66, 81.92], [-2465.88, 75.91], [-2471.01, 76.09], [-2473.33, 76.18], [-2480.21, 76.42], [-2486.19, 76.63], [-2487.81, 76.69], [-2489.46, 76.75], [-2498.53, 77.05], [-2500.28, 77.11], [-2502.75, 77.19], [-2510.03, 77.42], [-2511.9, 77.47], [-2511.12, 100.62], [-2510.9, 106.84], [-2510.86, 107.8], [-2510.57, 116.54], [-2510.35, 122.91], [-2508.09, 122.83], [-2501.0, 122.59], [-2494.91, 122.38], [-2482.53, 121.96], [-2479.45, 121.86], [-2476.48, 121.76], [-2473.85, 121.67], [-2471.2, 121.58], [-2468.21, 121.48], [-2464.34, 121.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1357}}, {"shape": {"outer": [[-2886.35, 60.43], [-2833.01, 58.17], [-2832.39, 72.86], [-2885.73, 75.13], [-2886.35, 60.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.503, "pop": 0, "jobs": 503}}, {"shape": {"outer": [[-2844.74, 115.62], [-2846.04, 83.74], [-2856.85, 84.17], [-2855.55, 116.0], [-2859.55, 116.16], [-2860.85, 84.2], [-2872.05, 84.66], [-2870.75, 116.63], [-2874.41, 116.78], [-2875.68, 85.35], [-2886.16, 85.77], [-2884.15, 135.36], [-2857.33, 134.27], [-2830.11, 133.18], [-2832.14, 83.15], [-2841.51, 83.52], [-2840.2, 115.44], [-2844.74, 115.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1481}}, {"shape": {"outer": [[-2733.55, 72.51], [-2734.31, 51.43], [-2812.26, 54.23], [-2811.35, 79.18], [-2803.01, 78.88], [-2802.7, 87.3], [-2755.73, 85.6], [-2756.05, 76.83], [-2745.86, 76.46], [-2745.98, 72.95], [-2733.55, 72.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1466}}, {"shape": {"outer": [[-1480.08, 27.23], [-1479.56, 36.04], [-1475.34, 35.84], [-1475.14, 39.92], [-1475.09, 41.06], [-1474.99, 43.65], [-1474.88, 45.96], [-1474.84, 47.04], [-1474.63, 50.88], [-1478.79, 51.07], [-1478.31, 60.13], [-1473.33, 60.01], [-1473.13, 66.19], [-1473.05, 67.26], [-1472.99, 68.41], [-1472.6, 74.77], [-1512.03, 76.53], [-1512.58, 63.97], [-1512.72, 61.65], [-1512.73, 60.6], [-1512.54, 59.9], [-1512.09, 59.32], [-1511.61, 58.87], [-1510.82, 58.57], [-1509.98, 58.52], [-1509.25, 58.63], [-1508.48, 59.08], [-1507.97, 59.82], [-1507.79, 60.62], [-1507.7, 61.62], [-1490.6, 60.97], [-1490.87, 53.51], [-1496.02, 53.77], [-1497.89, 52.15], [-1498.04, 48.37], [-1498.26, 43.82], [-1498.44, 39.97], [-1498.53, 37.41], [-1496.79, 35.37], [-1491.21, 35.06], [-1491.72, 28.07], [-1506.46, 28.56], [-1509.34, 28.64], [-1509.31, 29.79], [-1509.47, 30.43], [-1509.75, 30.96], [-1510.02, 31.34], [-1510.37, 31.65], [-1510.78, 31.89], [-1511.4, 32.09], [-1512.08, 32.1], [-1512.5, 32.01], [-1512.92, 31.83], [-1513.27, 31.6], [-1513.58, 31.31], [-1513.9, 30.79], [-1514.11, 30.36], [-1514.27, 29.75], [-1514.31, 28.84], [-1514.9, 13.68], [-1475.65, 12.23], [-1474.98, 27.07], [-1480.08, 27.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1142}}, {"shape": {"outer": [[-1543.0, 37.43], [-1523.89, 36.55], [-1522.07, 76.75], [-1525.69, 76.93], [-1525.59, 79.08], [-1525.56, 79.69], [-1526.4, 79.72], [-1533.29, 80.03], [-1533.31, 79.71], [-1533.47, 77.3], [-1538.75, 77.52], [-1542.38, 77.73], [-1542.55, 74.75], [-1547.53, 73.54], [-1543.39, 46.49], [-1544.4, 46.33], [-1544.07, 43.73], [-1543.0, 37.43]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.253, "pop": 0, "jobs": 253}}, {"shape": {"outer": [[-1960.3, -7.84], [-1959.64, 9.31], [-1961.93, 9.4], [-1961.52, 20.07], [-2002.11, 21.62], [-2001.24, 44.55], [-1954.25, 42.75], [-1953.69, 56.62], [-1951.69, 56.54], [-1951.61, 58.56], [-1939.11, 58.06], [-1939.19, 56.04], [-1936.56, 55.93], [-1936.65, 53.9], [-1934.64, 53.83], [-1935.31, 36.43], [-1922.51, 36.16], [-1922.22, 24.76], [-1922.37, 22.93], [-1923.15, -1.62], [-1923.27, -5.12], [-1923.33, -6.83], [-1923.91, -6.85], [-1926.18, -6.78], [-1930.39, -6.71], [-1932.27, -6.64], [-1943.26, -6.2], [-1945.18, -6.13], [-1950.58, -5.89], [-1950.68, -8.19], [-1951.36, -8.16], [-1960.3, -7.84]], "holes": []}, "height": 74.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 17905}}, {"shape": {"outer": [[-1818.53, 117.65], [-1779.43, 110.31], [-1782.93, 91.82], [-1792.99, 93.71], [-1825.92, 99.9], [-1832.98, 101.23], [-1836.57, 82.25], [-1864.82, 87.56], [-1860.88, 108.39], [-1850.05, 106.4], [-1849.41, 110.37], [-1849.33, 111.91], [-1849.84, 111.99], [-1849.7, 114.45], [-1851.65, 114.72], [-1851.48, 116.33], [-1851.3, 117.66], [-1860.51, 119.45], [-1857.88, 136.28], [-1832.45, 131.68], [-1829.56, 146.88], [-1828.69, 146.61], [-1827.13, 154.79], [-1834.05, 156.01], [-1834.19, 155.31], [-1838.17, 156.07], [-1837.55, 159.36], [-1840.43, 159.89], [-1838.62, 169.45], [-1835.75, 184.61], [-1805.2, 178.87], [-1805.78, 175.81], [-1800.01, 174.72], [-1804.09, 153.14], [-1815.54, 155.29], [-1817.73, 143.69], [-1813.75, 142.95], [-1818.53, 117.65]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8372}}, {"shape": {"outer": [[-1583.98, 178.23], [-1582.46, 194.03], [-1512.63, 187.34], [-1513.45, 179.75], [-1514.15, 171.54], [-1552.96, 175.25], [-1553.15, 173.35], [-1560.52, 174.05], [-1560.33, 175.96], [-1583.98, 178.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.722, "pop": 0, "jobs": 722}}, {"shape": {"outer": [[-1468.21, 97.45], [-1467.86, 107.22], [-1472.1, 107.47], [-1471.88, 111.56], [-1465.84, 111.31], [-1461.11, 111.02], [-1460.52, 122.75], [-1460.33, 127.5], [-1459.64, 137.68], [-1459.43, 141.09], [-1459.38, 143.83], [-1459.3, 145.96], [-1458.92, 157.54], [-1463.74, 157.83], [-1469.5, 158.05], [-1469.34, 162.34], [-1543.22, 165.85], [-1543.43, 162.25], [-1547.73, 162.4], [-1548.41, 149.5], [-1549.77, 149.57], [-1549.95, 146.06], [-1548.59, 146.0], [-1549.84, 122.06], [-1551.29, 122.15], [-1551.46, 118.83], [-1550.02, 118.76], [-1550.66, 106.36], [-1546.21, 106.19], [-1546.29, 102.81], [-1518.88, 101.36], [-1518.0, 101.34], [-1517.85, 104.82], [-1513.09, 104.54], [-1512.84, 112.96], [-1512.36, 131.58], [-1502.12, 130.83], [-1489.78, 130.69], [-1490.05, 121.95], [-1468.91, 98.24], [-1468.21, 97.45]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8897}}, {"shape": {"outer": [[-1622.69, 188.93], [-1621.79, 196.59], [-1620.51, 207.53], [-1620.14, 210.44], [-1652.31, 213.65], [-1652.52, 210.52], [-1654.64, 192.32], [-1645.87, 191.38], [-1622.69, 188.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.444, "pop": 0, "jobs": 444}}, {"shape": {"outer": [[-2140.52, 89.91], [-2140.55, 89.11], [-2135.4, 88.91], [-2133.12, 88.83], [-2130.04, 88.72], [-2130.01, 89.64], [-2122.38, 89.36], [-2122.25, 92.62], [-2117.46, 92.45], [-2117.51, 91.15], [-2114.55, 91.04], [-2114.1, 89.86], [-2113.06, 88.92], [-2111.54, 88.84], [-2110.4, 89.7], [-2110.15, 90.88], [-2107.33, 90.78], [-2107.27, 92.5], [-2106.74, 106.86], [-2116.92, 107.23], [-2117.31, 96.45], [-2122.34, 96.64], [-2122.3, 97.77], [-2129.72, 98.04], [-2130.08, 99.79], [-2131.09, 101.41], [-2132.63, 102.58], [-2134.77, 103.13], [-2136.98, 102.6], [-2138.71, 101.45], [-2139.96, 100.02], [-2140.62, 98.08], [-2148.46, 98.37], [-2148.76, 90.21], [-2140.52, 89.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.294, "pop": 0, "jobs": 294}}, {"shape": {"outer": [[-1993.48, 155.61], [-1991.91, 169.33], [-1991.37, 169.27], [-1991.25, 170.35], [-1990.86, 173.77], [-2016.41, 176.68], [-2015.13, 187.89], [-2017.57, 188.16], [-2018.34, 189.12], [-2018.66, 190.0], [-2018.22, 193.81], [-2018.07, 195.03], [-2045.36, 198.18], [-2044.97, 201.5], [-2047.8, 201.83], [-2046.97, 208.98], [-2044.25, 208.67], [-2043.91, 211.6], [-2010.3, 207.74], [-2011.54, 196.91], [-2011.73, 195.39], [-2009.65, 195.15], [-2009.73, 194.45], [-2010.24, 189.98], [-1981.73, 186.74], [-1981.23, 186.68], [-1982.64, 174.27], [-1968.9, 172.71], [-1968.7, 174.41], [-1956.54, 173.04], [-1956.73, 171.33], [-1943.12, 169.83], [-1941.81, 181.57], [-1941.38, 181.52], [-1912.49, 178.33], [-1911.91, 183.58], [-1910.43, 183.42], [-1910.24, 185.15], [-1909.02, 196.23], [-1874.82, 192.49], [-1875.16, 189.3], [-1872.26, 188.98], [-1873.09, 181.44], [-1876.13, 181.77], [-1876.41, 179.2], [-1876.6, 178.82], [-1877.06, 178.7], [-1881.14, 179.12], [-1881.1, 179.48], [-1903.89, 181.89], [-1904.47, 176.4], [-1905.69, 175.24], [-1906.61, 175.0], [-1908.19, 175.19], [-1909.47, 164.37], [-1935.19, 167.38], [-1935.45, 165.2], [-1935.72, 162.9], [-1935.32, 162.85], [-1936.88, 149.37], [-1957.3, 151.72], [-1958.83, 151.9], [-1958.99, 150.47], [-1965.52, 151.21], [-1971.44, 151.89], [-1971.3, 153.08], [-1993.48, 155.61]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 2183, "jobs": 0}}, {"shape": {"outer": [[-1649.87, 13.12], [-1648.64, 12.81], [-1637.58, 10.96], [-1636.5, 10.79], [-1630.79, 44.84], [-1643.7, 46.98], [-1649.87, 13.12]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.515, "pop": 0, "jobs": 515}}, {"shape": {"outer": [[-1615.15, 12.15], [-1614.25, 33.25], [-1612.89, 33.19], [-1612.01, 54.13], [-1601.91, 53.71], [-1597.09, 53.51], [-1597.15, 52.11], [-1592.29, 51.9], [-1586.54, 51.65], [-1579.64, 51.36], [-1575.78, 51.2], [-1575.33, 61.64], [-1565.49, 61.19], [-1560.42, 60.98], [-1561.54, 34.85], [-1561.62, 33.06], [-1561.73, 30.31], [-1560.63, 30.25], [-1561.49, 9.87], [-1577.72, 10.55], [-1577.64, 12.27], [-1584.3, 12.56], [-1589.34, 12.77], [-1593.37, 12.94], [-1598.99, 13.18], [-1599.06, 11.47], [-1615.15, 12.15]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2549}}, {"shape": {"outer": [[-1253.17, 114.06], [-1253.55, 112.84], [-1254.67, 111.41], [-1255.65, 110.93], [-1255.7, 109.99], [-1255.75, 108.76], [-1257.27, 72.41], [-1257.55, 65.76], [-1256.69, 65.01], [-1256.0, 64.06], [-1255.64, 63.02], [-1255.57, 61.67], [-1255.53, 60.27], [-1256.21, 59.33], [-1257.03, 58.33], [-1257.9, 57.63], [-1259.05, 57.29], [-1263.52, 57.37], [-1264.38, 57.81], [-1274.01, 58.13], [-1282.09, 58.53], [-1282.64, 58.35], [-1283.26, 58.39], [-1285.9, 58.65], [-1287.25, 58.91], [-1288.37, 59.83], [-1289.13, 60.83], [-1289.69, 62.0], [-1289.75, 63.3], [-1289.48, 64.53], [-1288.9, 65.66], [-1287.84, 66.57], [-1287.42, 66.85], [-1286.69, 83.73], [-1286.58, 86.35], [-1291.17, 86.56], [-1291.62, 85.81], [-1292.39, 85.41], [-1293.45, 85.37], [-1294.25, 85.73], [-1294.95, 86.55], [-1295.07, 87.3], [-1294.98, 88.17], [-1294.56, 89.01], [-1293.98, 89.51], [-1293.54, 89.76], [-1293.24, 97.29], [-1293.55, 97.6], [-1294.08, 98.14], [-1294.57, 98.97], [-1294.49, 99.86], [-1294.19, 100.76], [-1293.74, 101.2], [-1292.76, 101.63], [-1291.88, 101.66], [-1291.08, 101.24], [-1290.49, 100.57], [-1290.35, 100.19], [-1289.59, 100.19], [-1285.91, 100.15], [-1285.26, 112.58], [-1286.56, 113.55], [-1287.21, 115.19], [-1286.99, 116.76], [-1286.3, 117.72], [-1284.83, 118.6], [-1283.55, 118.78], [-1282.25, 118.48], [-1281.21, 117.66], [-1280.83, 116.78], [-1280.18, 116.73], [-1279.9, 117.28], [-1279.46, 117.66], [-1278.8, 117.83], [-1278.14, 117.61], [-1277.71, 117.16], [-1277.58, 116.59], [-1271.3, 116.25], [-1271.12, 116.78], [-1270.7, 117.12], [-1269.98, 117.29], [-1269.38, 117.11], [-1268.92, 116.69], [-1268.73, 116.1], [-1262.82, 115.77], [-1262.56, 116.32], [-1262.06, 116.74], [-1261.35, 116.89], [-1260.67, 116.67], [-1260.26, 116.2], [-1260.13, 115.62], [-1259.54, 115.59], [-1258.92, 116.43], [-1257.87, 117.1], [-1256.6, 117.42], [-1255.44, 117.13], [-1254.42, 116.63], [-1253.76, 115.89], [-1253.52, 115.02], [-1253.17, 114.06]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3206}}, {"shape": {"outer": [[-1372.34, 21.15], [-1373.58, -6.11], [-1373.79, -11.34], [-1374.01, -16.46], [-1375.21, -43.65], [-1379.0, -43.49], [-1384.59, -43.24], [-1384.64, -44.31], [-1390.15, -44.07], [-1391.59, -44.01], [-1394.23, -43.89], [-1398.84, -43.68], [-1398.79, -42.56], [-1407.7, -42.17], [-1407.37, -34.49], [-1425.69, -33.67], [-1425.82, -34.86], [-1438.41, -34.29], [-1442.09, -34.12], [-1443.35, -34.06], [-1442.59, -17.67], [-1441.28, -17.73], [-1440.85, -8.44], [-1440.37, 1.87], [-1441.76, 1.93], [-1440.98, 18.64], [-1440.15, 18.6], [-1423.62, 17.84], [-1423.81, 16.48], [-1406.92, 15.73], [-1406.59, 22.97], [-1397.2, 22.55], [-1397.16, 23.4], [-1390.6, 23.11], [-1388.61, 23.02], [-1387.05, 22.95], [-1381.57, 22.7], [-1381.62, 21.56], [-1372.34, 21.15]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4457}}, {"shape": {"outer": [[-2660.36, 348.7], [-2626.76, 347.73], [-2627.07, 336.91], [-2660.67, 337.87], [-2660.36, 348.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.292, "pop": 146, "jobs": 0}}, {"shape": {"outer": [[-2652.28, 312.5], [-2618.5, 311.53], [-2618.81, 300.72], [-2652.59, 301.7], [-2652.28, 312.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.292, "pop": 146, "jobs": 0}}, {"shape": {"outer": [[-2704.59, 307.15], [-2704.78, 300.63], [-2707.35, 300.71], [-2707.5, 295.83], [-2725.48, 296.35], [-2726.48, 296.38], [-2726.61, 291.88], [-2761.15, 292.88], [-2760.95, 299.82], [-2759.2, 299.77], [-2759.07, 304.33], [-2736.41, 303.68], [-2735.56, 332.88], [-2730.89, 332.75], [-2730.84, 334.6], [-2723.72, 334.4], [-2724.46, 308.85], [-2714.88, 308.57], [-2714.92, 307.45], [-2713.17, 307.4], [-2704.59, 307.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.788, "pop": 394, "jobs": 0}}, {"shape": {"outer": [[-2860.35, 410.1], [-2861.32, 379.05], [-2884.11, 379.75], [-2884.25, 375.18], [-2886.06, 375.24], [-2886.28, 368.32], [-2852.46, 367.27], [-2852.45, 367.8], [-2837.37, 367.33], [-2837.25, 371.37], [-2831.99, 371.21], [-2831.84, 375.87], [-2829.64, 375.81], [-2829.42, 382.85], [-2839.9, 383.18], [-2839.88, 383.95], [-2849.16, 384.24], [-2848.37, 409.72], [-2860.35, 410.1]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 557, "jobs": 0}}, {"shape": {"outer": [[-2915.81, 441.93], [-2916.45, 412.65], [-2939.44, 413.16], [-2939.53, 408.71], [-2941.33, 408.75], [-2941.49, 401.46], [-2907.99, 400.71], [-2907.88, 405.25], [-2887.54, 404.8], [-2887.43, 409.33], [-2885.04, 409.29], [-2884.88, 416.33], [-2895.15, 416.56], [-2895.13, 417.57], [-2904.8, 417.79], [-2904.24, 443.41], [-2911.08, 443.56], [-2911.13, 441.83], [-2915.81, 441.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.631, "pop": 0, "jobs": 631}}, {"shape": {"outer": [[-2606.71, 320.56], [-2572.5, 319.54], [-2572.47, 320.55], [-2569.61, 320.47], [-2569.33, 328.13], [-2572.46, 328.22], [-2572.38, 330.64], [-2606.38, 331.65], [-2606.71, 320.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[-2457.48, 208.74], [-2458.11, 209.29], [-2477.52, 211.36], [-2478.36, 203.51], [-2476.67, 203.33], [-2476.74, 202.6], [-2476.22, 202.54], [-2476.81, 197.04], [-2457.13, 194.95], [-2456.9, 197.16], [-2456.04, 205.19], [-2457.5, 205.35], [-2457.24, 207.78], [-2457.48, 208.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-2377.76, 191.82], [-2378.13, 180.14], [-2395.13, 180.68], [-2395.05, 183.34], [-2399.68, 183.5], [-2399.04, 203.58], [-2400.11, 203.61], [-2399.68, 216.95], [-2398.63, 216.92], [-2397.99, 237.03], [-2393.51, 236.89], [-2393.42, 239.51], [-2376.63, 238.99], [-2377.01, 227.23], [-2385.23, 227.49], [-2386.35, 192.08], [-2377.76, 191.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.764, "pop": 382, "jobs": 0}}, {"shape": {"outer": [[-1226.18, 47.99], [-1226.15, 49.03], [-1226.04, 52.99], [-1229.42, 53.08], [-1231.59, 53.34], [-1236.3, 53.5], [-1240.91, 53.67], [-1254.0, 54.47], [-1254.34, 60.18], [-1255.27, 69.61], [-1240.56, 71.06], [-1238.61, 112.53], [-1238.38, 115.27], [-1238.16, 117.96], [-1221.0, 117.17], [-1219.52, 117.1], [-1215.06, 116.9], [-1212.92, 116.73], [-1213.04, 113.48], [-1194.46, 112.6], [-1194.47, 112.22], [-1191.83, 112.08], [-1192.0, 109.38], [-1191.46, 109.3], [-1191.99, 100.89], [-1190.45, 100.79], [-1190.68, 96.37], [-1190.86, 93.2], [-1191.19, 86.79], [-1191.38, 83.35], [-1191.4, 82.92], [-1192.98, 82.92], [-1194.24, 50.81], [-1195.06, 50.88], [-1195.25, 47.07], [-1199.13, 47.23], [-1199.19, 46.59], [-1216.23, 47.47], [-1226.18, 47.99]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2822}}, {"shape": {"outer": [[-2649.16, 247.51], [-2649.35, 242.93], [-2651.19, 243.0], [-2651.47, 235.95], [-2607.89, 234.22], [-2607.71, 238.81], [-2578.09, 237.64], [-2577.82, 244.51], [-2579.77, 244.59], [-2579.59, 249.08], [-2606.48, 250.15], [-2606.43, 251.46], [-2618.8, 251.95], [-2619.02, 246.31], [-2649.16, 247.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.716, "pop": 358, "jobs": 0}}, {"shape": {"outer": [[-2471.2, 313.77], [-2506.05, 314.77], [-2506.37, 303.59], [-2471.51, 302.58], [-2471.2, 313.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-2445.56, 362.2], [-2479.73, 362.79], [-2479.93, 351.36], [-2445.76, 350.77], [-2445.56, 362.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-2453.54, 332.63], [-2454.51, 298.67], [-2443.51, 298.35], [-2442.53, 332.31], [-2453.54, 332.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-2428.11, 363.41], [-2429.37, 326.27], [-2424.23, 326.1], [-2424.44, 319.81], [-2390.6, 318.67], [-2389.12, 362.09], [-2428.11, 363.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 665, "jobs": 0}}, {"shape": {"outer": [[-2731.82, 35.26], [-2731.91, 31.57], [-2729.89, 31.52], [-2729.94, 29.54], [-2731.08, 29.58], [-2731.21, 24.11], [-2729.96, 24.09], [-2730.1, 18.49], [-2699.03, 17.73], [-2698.9, 22.83], [-2696.48, 22.78], [-2696.32, 28.93], [-2698.75, 28.99], [-2698.62, 34.45], [-2731.82, 35.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.44, "pop": 220, "jobs": 0}}, {"shape": {"outer": [[-2890.56, 19.56], [-2890.52, 21.06], [-2902.13, 21.55], [-2903.1, 22.83], [-2903.47, 24.14], [-2902.92, 25.44], [-2901.8, 26.42], [-2890.29, 25.93], [-2889.88, 35.59], [-2830.8, 33.09], [-2831.03, 27.63], [-2831.24, 22.87], [-2826.57, 22.67], [-2825.27, 22.1], [-2824.83, 20.36], [-2825.3, 18.98], [-2826.77, 17.95], [-2831.44, 18.15], [-2831.54, 15.85], [-2812.97, 15.07], [-2813.24, 8.85], [-2814.34, 8.87], [-2887.29, 11.96], [-2891.21, 12.13], [-2891.12, 14.25], [-2897.78, 14.53], [-2897.85, 12.76], [-2898.39, 0.01], [-2926.42, 1.2], [-2925.58, 21.05], [-2890.56, 19.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1402}}, {"shape": {"outer": [[-3124.02, 32.31], [-3133.09, 32.64], [-3134.26, 0.09], [-3087.15, -1.61], [-3088.05, -26.58], [-3067.99, -27.31], [-3068.03, -28.4], [-3021.83, -30.06], [-3021.79, -28.83], [-3002.05, -29.54], [-3001.16, -4.74], [-2972.53, -5.78], [-2971.54, 21.56], [-2971.36, 26.69], [-2985.67, 27.2], [-2988.38, 27.3], [-2987.9, 40.72], [-3009.8, 41.51], [-3010.29, 28.09], [-3041.93, 29.24], [-3047.42, 29.44], [-3047.17, 36.36], [-3060.52, 36.87], [-3066.96, 37.04], [-3090.85, 37.93], [-3121.0, 39.02], [-3123.77, 39.13], [-3124.02, 32.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5298}}, {"shape": {"outer": [[-2455.43, 270.72], [-2456.43, 236.19], [-2445.42, 235.88], [-2444.43, 270.4], [-2455.43, 270.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[-2462.23, 283.79], [-2495.78, 284.75], [-2496.1, 273.87], [-2462.54, 272.9], [-2462.23, 283.79]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.512, "pop": 256, "jobs": 0}}, {"shape": {"outer": [[-2518.32, 317.78], [-2517.89, 329.85], [-2569.21, 331.68], [-2569.33, 328.13], [-2569.61, 320.47], [-2569.69, 318.26], [-2555.45, 317.75], [-2555.36, 320.07], [-2552.53, 319.96], [-2552.57, 319.0], [-2518.32, 317.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.51, "pop": 255, "jobs": 0}}, {"shape": {"outer": [[-2555.67, 309.99], [-2555.45, 317.75], [-2569.69, 318.26], [-2570.04, 303.42], [-2565.2, 303.27], [-2565.35, 297.93], [-2579.58, 298.35], [-2579.75, 292.51], [-2588.38, 292.77], [-2588.65, 284.66], [-2588.91, 275.1], [-2584.58, 274.96], [-2584.67, 271.85], [-2579.85, 271.71], [-2579.88, 270.57], [-2558.48, 269.94], [-2558.44, 271.21], [-2554.46, 271.08], [-2554.28, 276.9], [-2554.03, 285.25], [-2557.94, 285.38], [-2557.59, 297.2], [-2554.61, 297.11], [-2554.54, 299.79], [-2552.65, 299.74], [-2552.56, 302.92], [-2550.12, 302.85], [-2549.91, 309.81], [-2555.67, 309.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.918, "pop": 459, "jobs": 0}}, {"shape": {"outer": [[-2714.86, -56.62], [-2715.09, -67.02], [-2716.04, -67.0], [-2716.3, -78.79], [-2738.9, -78.28], [-2738.84, -75.63], [-2741.24, -75.57], [-2741.4, -82.62], [-2764.74, -82.09], [-2764.48, -70.67], [-2770.6, -70.54], [-2770.36, -59.98], [-2740.8, -60.65], [-2740.89, -64.84], [-2736.96, -64.93], [-2736.85, -59.93], [-2724.35, -60.22], [-2724.26, -56.41], [-2714.86, -56.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.674, "pop": 0, "jobs": 674}}, {"shape": {"outer": [[-2742.62, -35.66], [-2758.46, -35.19], [-2759.06, -55.51], [-2770.57, -55.18], [-2769.98, -35.2], [-2786.57, -34.71], [-2786.88, -45.06], [-2810.01, -44.39], [-2809.7, -33.75], [-2826.25, -33.26], [-2826.84, -53.0], [-2838.04, -52.68], [-2837.46, -32.59], [-2853.22, -32.13], [-2852.86, -19.64], [-2808.95, -20.94], [-2808.75, -14.12], [-2793.99, -14.56], [-2793.89, -11.18], [-2791.02, -11.27], [-2790.97, -9.67], [-2782.6, -9.92], [-2782.75, -15.07], [-2783.45, -15.05], [-2783.56, -18.61], [-2785.65, -18.55], [-2785.76, -22.16], [-2742.25, -23.45], [-2742.62, -35.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1480}}, {"shape": {"outer": [[-2877.1, -41.44], [-2877.25, -47.83], [-2864.66, -48.12], [-2865.19, -70.35], [-2877.76, -70.05], [-2877.31, -51.32], [-2891.86, -50.97], [-2892.29, -69.38], [-2927.65, -68.54], [-2927.4, -58.03], [-2931.03, -57.95], [-2931.27, -67.94], [-2944.55, -67.63], [-2944.09, -48.32], [-2930.79, -48.64], [-2930.85, -50.78], [-2927.21, -50.88], [-2927.09, -45.65], [-2924.07, -45.71], [-2923.7, -30.27], [-2900.75, -31.1], [-2898.04, -27.8], [-2894.02, -27.89], [-2891.93, -30.15], [-2892.05, -34.41], [-2895.41, -37.13], [-2895.81, -44.12], [-2890.57, -44.25], [-2890.49, -41.13], [-2877.1, -41.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1275}}, {"shape": {"outer": [[-3153.15, -95.01], [-3153.09, -92.1], [-3143.51, -92.37], [-3143.48, -89.19], [-3136.94, -89.32], [-3136.98, -87.38], [-3134.38, -87.5], [-3134.26, -78.46], [-3136.72, -78.36], [-3136.69, -70.63], [-3117.6, -71.06], [-3117.26, -61.74], [-3110.63, -61.96], [-3109.62, -60.87], [-3109.57, -58.57], [-3110.8, -57.83], [-3114.05, -57.73], [-3113.79, -48.3], [-3117.06, -48.21], [-3116.93, -41.81], [-3140.46, -41.2], [-3140.45, -40.57], [-3141.63, -40.52], [-3142.22, -39.54], [-3164.19, -38.93], [-3169.36, -38.8], [-3169.42, -41.97], [-3169.46, -44.26], [-3167.82, -44.31], [-3167.93, -46.77], [-3176.09, -46.57], [-3177.18, -46.94], [-3177.74, -47.64], [-3177.9, -48.64], [-3177.54, -49.93], [-3176.47, -50.54], [-3174.85, -50.6], [-3174.84, -56.17], [-3180.75, -55.91], [-3181.39, -78.08], [-3184.11, -78.02], [-3185.11, -78.72], [-3185.41, -79.91], [-3185.31, -80.89], [-3184.28, -82.0], [-3180.83, -82.06], [-3181.34, -96.51], [-3162.41, -97.34], [-3162.48, -94.83], [-3153.15, -95.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1899}}, {"shape": {"outer": [[-1572.4, -67.03], [-1572.44, -70.57], [-1571.21, -70.6], [-1571.51, -81.37], [-1568.66, -81.42], [-1556.11, -81.39], [-1556.73, -107.01], [-1556.75, -108.66], [-1548.35, -108.84], [-1549.02, -129.59], [-1549.05, -130.69], [-1554.24, -130.55], [-1592.59, -129.52], [-1592.64, -132.39], [-1592.77, -139.17], [-1596.98, -139.05], [-1596.75, -118.26], [-1600.73, -118.17], [-1604.34, -118.04], [-1606.54, -127.24], [-1614.81, -125.94], [-1616.88, -125.65], [-1619.11, -125.28], [-1629.95, -123.42], [-1626.43, -105.25], [-1620.32, -106.38], [-1616.06, -82.57], [-1634.93, -79.13], [-1634.68, -77.69], [-1632.71, -66.61], [-1613.84, -69.94], [-1613.99, -65.64], [-1596.11, -66.42], [-1584.63, -66.77], [-1572.4, -67.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2646}}, {"shape": {"outer": [[-1668.09, -100.8], [-1670.52, -114.37], [-1671.07, -114.27], [-1671.29, -115.53], [-1671.52, -116.81], [-1669.09, -117.24], [-1669.25, -118.08], [-1668.47, -118.23], [-1670.78, -131.3], [-1671.67, -131.14], [-1671.82, -132.02], [-1675.77, -131.33], [-1676.87, -137.54], [-1677.66, -137.4], [-1677.78, -138.06], [-1681.52, -137.4], [-1690.23, -135.88], [-1690.11, -135.2], [-1690.92, -135.06], [-1689.52, -127.05], [-1691.63, -126.68], [-1692.21, -126.57], [-1691.54, -122.8], [-1692.29, -122.65], [-1693.02, -122.55], [-1692.62, -120.28], [-1693.95, -120.0], [-1697.01, -119.5], [-1697.21, -120.77], [-1705.42, -125.92], [-1715.04, -124.53], [-1720.78, -116.32], [-1720.51, -114.63], [-1719.3, -107.88], [-1720.01, -107.76], [-1719.9, -107.11], [-1722.14, -106.72], [-1723.2, -106.53], [-1723.05, -105.7], [-1732.47, -104.05], [-1742.93, -102.23], [-1743.65, -106.32], [-1747.62, -105.63], [-1747.79, -106.57], [-1736.96, -108.46], [-1738.59, -117.75], [-1736.35, -118.15], [-1736.86, -121.07], [-1741.96, -120.18], [-1741.3, -116.51], [-1749.94, -114.99], [-1752.81, -131.23], [-1768.77, -128.42], [-1767.49, -121.12], [-1767.21, -119.6], [-1767.02, -118.52], [-1762.02, -90.16], [-1761.69, -88.33], [-1761.49, -87.22], [-1746.48, -89.86], [-1745.56, -90.02], [-1745.38, -88.98], [-1743.87, -89.25], [-1741.8, -89.62], [-1741.51, -88.01], [-1740.63, -88.17], [-1719.99, -91.81], [-1719.82, -90.88], [-1716.4, -91.48], [-1716.21, -90.39], [-1715.37, -90.54], [-1693.82, -94.37], [-1692.42, -94.62], [-1692.56, -95.44], [-1688.99, -96.08], [-1689.17, -97.06], [-1684.09, -97.96], [-1679.46, -98.78], [-1670.98, -100.28], [-1668.09, -100.8]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4807}}, {"shape": {"outer": [[-1821.19, -15.53], [-1823.69, -14.98], [-1824.3, -14.85], [-1825.34, -14.65], [-1828.16, -31.01], [-1840.34, -28.92], [-1839.76, -24.7], [-1841.57, -24.33], [-1840.44, -18.01], [-1838.57, -18.33], [-1838.36, -17.39], [-1838.17, -16.32], [-1837.96, -15.1], [-1837.52, -12.54], [-1841.01, -11.96], [-1841.17, -12.94], [-1841.92, -12.85], [-1843.04, -12.68], [-1843.9, -12.52], [-1844.67, -15.29], [-1846.41, -22.73], [-1847.26, -27.35], [-1867.12, -24.18], [-1865.63, -9.36], [-1867.44, -9.01], [-1869.59, -8.67], [-1869.07, -0.6], [-1868.64, 6.17], [-1857.19, 3.97], [-1855.33, 3.65], [-1853.44, 3.29], [-1842.45, 1.38], [-1842.01, 3.71], [-1838.62, 3.13], [-1834.58, 25.87], [-1834.14, 29.08], [-1856.66, 32.94], [-1857.56, 33.1], [-1856.02, 41.98], [-1859.95, 42.66], [-1858.65, 50.17], [-1859.72, 50.36], [-1858.65, 56.54], [-1857.74, 56.38], [-1856.37, 56.11], [-1853.79, 55.71], [-1854.12, 53.77], [-1843.59, 51.97], [-1819.04, 47.75], [-1817.18, 47.43], [-1813.73, 46.81], [-1812.68, 46.64], [-1813.21, 43.58], [-1813.75, 40.33], [-1814.16, 37.92], [-1811.9, 37.54], [-1812.62, 33.37], [-1813.03, 30.95], [-1816.47, 11.1], [-1816.69, 9.79], [-1816.96, 8.34], [-1821.19, -15.53]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3111}}, {"shape": {"outer": [[-2032.39, 54.33], [-2033.29, 25.8], [-2048.31, 26.26], [-2047.91, 38.73], [-2051.22, 38.84], [-2051.31, 36.02], [-2068.15, 36.55], [-2082.46, 37.02], [-2082.37, 39.72], [-2086.66, 39.85], [-2087.07, 27.04], [-2102.46, 27.53], [-2102.3, 32.53], [-2104.74, 32.62], [-2104.84, 29.27], [-2109.68, 29.43], [-2109.71, 28.69], [-2151.99, 30.03], [-2151.85, 34.71], [-2157.84, 34.9], [-2158.01, 29.59], [-2184.63, 30.42], [-2183.66, 62.24], [-2171.73, 61.81], [-2171.77, 63.53], [-2167.81, 62.99], [-2167.65, 64.27], [-2137.07, 60.15], [-2114.88, 61.27], [-2114.82, 60.35], [-2108.57, 60.47], [-2108.09, 55.61], [-2101.01, 55.38], [-2100.81, 61.87], [-2085.76, 61.39], [-2085.97, 54.92], [-2047.42, 53.7], [-2047.39, 54.81], [-2032.39, 54.33]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4683}}, {"shape": {"outer": [[-1998.01, -93.84], [-1998.19, -94.42], [-1998.71, -108.28], [-2012.86, -107.81], [-2017.0, -111.83], [-2020.77, -107.96], [-2028.83, -107.69], [-2028.24, -90.2], [-2028.15, -87.56], [-2033.48, -87.38], [-2032.91, -70.78], [-2033.68, -70.76], [-2033.3, -59.37], [-2032.37, -59.39], [-2031.82, -42.83], [-2017.48, -43.3], [-2018.95, -87.93], [-2019.96, -87.9], [-2020.06, -91.07], [-2020.12, -93.11], [-1998.01, -93.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.738, "pop": 0, "jobs": 738}}, {"shape": {"outer": [[-1974.43, -71.44], [-1980.21, -71.21], [-1980.19, -70.74], [-1989.63, -70.37], [-1988.47, -40.76], [-1961.5, -41.81], [-1961.54, -43.02], [-1958.34, -43.15], [-1957.86, -43.16], [-1958.53, -60.36], [-1973.98, -59.76], [-1974.43, -71.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.47, "pop": 0, "jobs": 470}}, {"shape": {"outer": [[-2049.29, -46.95], [-2092.31, -45.71], [-2093.07, -72.4], [-2050.05, -73.63], [-2049.29, -46.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.735, "pop": 0, "jobs": 735}}, {"shape": {"outer": [[-2114.31, -82.23], [-2115.51, -82.18], [-2115.69, -87.08], [-2128.68, -86.64], [-2128.53, -82.38], [-2129.93, -82.33], [-2129.12, -59.87], [-2135.93, -59.63], [-2135.87, -58.03], [-2137.24, -55.88], [-2137.27, -52.42], [-2157.36, -51.69], [-2157.32, -50.41], [-2164.69, -50.23], [-2164.58, -44.16], [-2164.01, -44.19], [-2163.89, -41.09], [-2164.46, -41.07], [-2164.34, -37.75], [-2157.57, -37.99], [-2156.99, -38.02], [-2156.96, -36.95], [-2130.28, -37.92], [-2130.2, -35.7], [-2109.72, -36.44], [-2110.05, -45.42], [-2110.4, -55.03], [-2113.33, -54.93], [-2114.31, -82.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.901, "pop": 0, "jobs": 901}}, {"shape": {"outer": [[-2218.63, -33.26], [-2219.5, -56.05], [-2220.39, -79.14], [-2190.83, -80.27], [-2189.07, -34.38], [-2218.63, -33.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.869, "pop": 0, "jobs": 869}}, {"shape": {"outer": [[-2419.2, 57.86], [-2418.15, 93.47], [-2415.84, 93.41], [-2415.78, 100.27], [-2409.35, 100.23], [-2404.05, 100.18], [-2403.6, 111.29], [-2396.92, 111.15], [-2396.82, 113.29], [-2388.13, 112.99], [-2366.42, 112.21], [-2367.56, 91.24], [-2385.63, 91.91], [-2384.16, 83.1], [-2381.15, 83.06], [-2375.17, 48.31], [-2370.51, 48.33], [-2370.47, 54.88], [-2321.44, 53.05], [-2321.5, 51.26], [-2315.37, 51.03], [-2315.44, 33.87], [-2319.95, 33.93], [-2320.27, 32.55], [-2336.52, 29.77], [-2336.73, 22.04], [-2332.41, 21.85], [-2332.46, 19.17], [-2332.59, 11.24], [-2339.02, 11.36], [-2339.11, 6.44], [-2356.48, 7.09], [-2372.58, 7.67], [-2372.48, 12.95], [-2381.25, 13.27], [-2380.92, 23.39], [-2373.95, 23.5], [-2377.43, 41.17], [-2379.27, 41.1], [-2379.62, 36.01], [-2419.87, 37.26], [-2419.2, 57.86]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 9081}}, {"shape": {"outer": [[-2458.4, -29.04], [-2458.75, -37.43], [-2455.11, -37.58], [-2456.04, -59.27], [-2516.01, -56.69], [-2516.22, -62.74], [-2509.89, -64.69], [-2512.57, -72.88], [-2512.8, -78.89], [-2536.14, -77.87], [-2535.96, -68.48], [-2578.86, -67.11], [-2577.42, -21.61], [-2523.5, -24.29], [-2523.62, -26.87], [-2517.13, -27.15], [-2516.98, -23.62], [-2515.54, -23.68], [-2515.37, -19.7], [-2470.2, -21.64], [-2470.51, -28.52], [-2458.4, -29.04]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7201}}, {"shape": {"outer": [[-2429.95, -22.49], [-2431.33, -71.72], [-2412.71, -72.23], [-2411.34, -23.01], [-2429.95, -22.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.587, "pop": 0, "jobs": 587}}, {"shape": {"outer": [[-2353.29, -29.76], [-2353.74, -46.5], [-2355.9, -46.45], [-2391.11, -45.5], [-2391.48, -59.62], [-2360.23, -60.45], [-2360.86, -84.23], [-2375.97, -83.83], [-2376.18, -89.44], [-2387.44, -89.38], [-2387.5, -83.52], [-2392.87, -83.38], [-2392.39, -65.52], [-2406.71, -65.14], [-2405.85, -33.02], [-2400.0, -33.18], [-2399.88, -28.41], [-2376.98, -29.07], [-2353.29, -29.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1266}}, {"shape": {"outer": [[-2353.29, -29.76], [-2351.43, -29.82], [-2351.48, -31.52], [-2341.57, -31.82], [-2343.12, -81.9], [-2356.99, -81.46], [-2355.9, -46.45], [-2353.74, -46.5], [-2353.29, -29.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.426, "pop": 0, "jobs": 426}}, {"shape": {"outer": [[-2296.05, -31.66], [-2296.17, -35.91], [-2292.56, -36.01], [-2292.85, -48.12], [-2293.01, -54.79], [-2298.46, -54.64], [-2298.6, -59.42], [-2317.45, -58.88], [-2317.33, -54.65], [-2322.23, -54.6], [-2322.1, -49.48], [-2321.94, -42.4], [-2321.75, -34.62], [-2316.85, -34.76], [-2316.66, -31.26], [-2296.05, -31.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.468, "pop": 0, "jobs": 468}}, {"shape": {"outer": [[-2262.66, -31.35], [-2263.19, -49.52], [-2262.61, -49.53], [-2262.75, -55.01], [-2262.9, -59.83], [-2263.48, -59.81], [-2264.01, -78.18], [-2268.37, -78.05], [-2268.38, -78.46], [-2277.96, -78.19], [-2277.95, -77.78], [-2280.06, -77.72], [-2280.9, -77.69], [-2280.78, -73.24], [-2283.78, -73.15], [-2283.56, -65.59], [-2280.56, -65.68], [-2280.07, -48.59], [-2279.9, -42.93], [-2282.3, -42.86], [-2282.07, -34.9], [-2279.68, -34.97], [-2279.56, -30.86], [-2275.73, -30.97], [-2275.72, -30.66], [-2266.35, -30.93], [-2266.36, -31.24], [-2262.66, -31.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.542, "pop": 0, "jobs": 542}}, {"shape": {"outer": [[-2350.97, 90.05], [-2351.25, 78.5], [-2353.61, 78.56], [-2353.83, 69.4], [-2351.47, 69.34], [-2351.56, 65.8], [-2334.54, 65.39], [-2334.35, 73.28], [-2332.41, 73.24], [-2332.27, 78.96], [-2334.22, 79.0], [-2333.99, 87.91], [-2330.48, 87.82], [-2330.16, 100.68], [-2337.4, 100.86], [-2337.48, 97.38], [-2349.85, 97.68], [-2350.04, 90.04], [-2350.97, 90.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.401, "pop": 0, "jobs": 401}}, {"shape": {"outer": [[-2327.17, 95.21], [-2327.88, 68.83], [-2326.44, 68.79], [-2326.5, 68.27], [-2324.08, 67.05], [-2319.6, 66.98], [-2319.56, 68.64], [-2311.05, 68.41], [-2310.35, 94.74], [-2327.17, 95.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.29, "pop": 0, "jobs": 290}}, {"shape": {"outer": [[-2350.1, 128.2], [-2350.56, 112.08], [-2337.31, 111.7], [-2336.85, 127.82], [-2350.1, 128.2]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.18, "pop": 0, "jobs": 180}}, {"shape": {"outer": [[-2335.31, 150.49], [-2335.93, 130.26], [-2299.92, 129.17], [-2299.58, 140.29], [-2299.31, 149.41], [-2335.31, 150.49]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.817, "pop": 0, "jobs": 817}}, {"shape": {"outer": [[-2299.92, 129.17], [-2300.16, 123.06], [-2301.04, 97.36], [-2287.44, 96.89], [-2287.66, 90.43], [-2264.58, 89.65], [-2263.54, 120.04], [-2273.03, 120.37], [-2272.37, 139.37], [-2281.78, 139.68], [-2283.49, 141.65], [-2285.31, 141.72], [-2287.01, 141.78], [-2288.34, 139.9], [-2299.58, 140.29], [-2299.92, 129.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.995, "pop": 0, "jobs": 995}}, {"shape": {"outer": [[-2261.15, 74.12], [-2244.37, 73.64], [-2244.37, 71.87], [-2230.42, 71.53], [-2230.39, 72.79], [-2213.83, 72.57], [-2213.98, 63.98], [-2226.81, 64.34], [-2227.04, 56.27], [-2232.61, 50.82], [-2222.89, 50.58], [-2222.88, 51.46], [-2219.54, 51.33], [-2219.57, 50.36], [-2206.58, 50.1], [-2206.76, 42.22], [-2206.23, 42.2], [-2206.26, 40.73], [-2206.85, 40.74], [-2207.12, 29.17], [-2227.07, 29.62], [-2227.1, 28.65], [-2231.52, 28.72], [-2231.61, 24.74], [-2238.32, 24.89], [-2245.03, 25.05], [-2244.93, 29.04], [-2249.46, 29.17], [-2249.44, 30.27], [-2269.56, 30.73], [-2269.08, 51.84], [-2243.18, 51.12], [-2248.49, 56.82], [-2248.26, 64.69], [-2261.26, 65.07], [-2261.15, 74.12]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2293}}, {"shape": {"outer": [[-2027.61, 105.99], [-2021.29, 105.83], [-2021.26, 107.0], [-2014.11, 106.82], [-2014.17, 104.59], [-2013.13, 104.56], [-2013.5, 89.44], [-2023.47, 89.69], [-2023.44, 91.18], [-2027.98, 91.3], [-2027.61, 105.99]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.132, "pop": 0, "jobs": 132}}, {"shape": {"outer": [[-2316.87, 226.99], [-2324.84, 227.22], [-2328.15, 227.31], [-2333.43, 227.46], [-2333.6, 221.27], [-2334.22, 199.48], [-2334.4, 193.36], [-2332.0, 193.29], [-2332.07, 191.06], [-2329.55, 190.98], [-2327.01, 190.91], [-2326.95, 193.14], [-2318.21, 192.89], [-2317.99, 200.34], [-2303.82, 199.94], [-2303.74, 202.76], [-2301.25, 202.69], [-2300.86, 216.51], [-2303.83, 216.6], [-2303.58, 225.03], [-2316.91, 225.41], [-2316.87, 226.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.76, "pop": 380, "jobs": 0}}, {"shape": {"outer": [[-2109.4, -87.29], [-2115.69, -87.08], [-2128.68, -86.64], [-2154.94, -85.76], [-2155.66, -107.04], [-2110.11, -108.56], [-2109.4, -87.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.621, "pop": 0, "jobs": 621}}, {"shape": {"outer": [[-2173.6, -90.35], [-2173.9, -97.93], [-2174.69, -97.9], [-2174.98, -105.2], [-2174.18, -105.24], [-2174.55, -114.6], [-2174.92, -124.11], [-2175.72, -124.08], [-2175.97, -130.83], [-2175.18, -130.86], [-2175.4, -136.51], [-2176.44, -136.54], [-2177.59, -137.98], [-2177.59, -139.02], [-2164.63, -139.52], [-2164.19, -128.1], [-2163.19, -102.47], [-2162.74, -90.77], [-2173.6, -90.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.35, "pop": 0, "jobs": 350}}, {"shape": {"outer": [[-2221.35, -93.77], [-2221.51, -99.22], [-2222.26, -124.84], [-2222.44, -130.8], [-2218.07, -130.94], [-2218.32, -139.36], [-2218.35, -140.5], [-2211.61, -140.71], [-2211.34, -131.41], [-2200.14, -131.74], [-2199.05, -94.63], [-2203.01, -94.52], [-2202.96, -92.87], [-2216.68, -92.46], [-2216.72, -93.9], [-2221.35, -93.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.585, "pop": 0, "jobs": 585}}, {"shape": {"outer": [[-2202.97, -170.27], [-2203.07, -173.52], [-2202.23, -173.54], [-2202.41, -179.47], [-2202.52, -183.18], [-2224.21, -182.54], [-2223.14, -153.88], [-2222.59, -139.28], [-2218.32, -139.36], [-2218.35, -140.5], [-2211.61, -140.71], [-2168.64, -141.97], [-2168.81, -147.78], [-2157.05, -148.13], [-2157.26, -155.29], [-2152.25, -155.44], [-2152.13, -151.74], [-2113.34, -152.89], [-2114.14, -179.92], [-2112.93, -179.95], [-2113.14, -186.73], [-2149.86, -185.64], [-2149.82, -184.6], [-2156.21, -184.4], [-2158.17, -184.34], [-2158.19, -185.19], [-2168.95, -184.87], [-2168.55, -171.69], [-2169.46, -171.66], [-2175.76, -171.48], [-2175.92, -176.75], [-2189.67, -176.35], [-2189.5, -170.67], [-2202.97, -170.27]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4295}}, {"shape": {"outer": [[-1932.6, -110.94], [-1931.54, -110.98], [-1931.59, -112.27], [-1931.71, -115.87], [-1931.87, -120.01], [-1931.9, -120.71], [-1939.63, -120.42], [-1942.19, -120.32], [-1948.35, -120.09], [-1948.65, -128.32], [-1963.23, -127.78], [-1963.19, -126.95], [-1973.6, -126.56], [-1973.97, -136.51], [-1999.72, -135.54], [-1998.71, -108.28], [-1998.19, -94.42], [-1991.49, -94.67], [-1991.21, -87.21], [-1990.27, -87.24], [-1989.63, -70.37], [-1980.19, -70.74], [-1980.21, -71.21], [-1974.43, -71.44], [-1974.64, -76.18], [-1974.75, -80.79], [-1967.11, -81.07], [-1967.34, -86.08], [-1967.46, -88.9], [-1947.24, -89.66], [-1947.06, -84.76], [-1931.94, -85.36], [-1931.63, -85.24], [-1931.54, -85.42], [-1932.6, -110.94]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1939}}, {"shape": {"outer": [[-2068.02, -140.1], [-2068.61, -140.07], [-2068.79, -145.23], [-2080.08, -144.83], [-2079.89, -139.78], [-2080.57, -139.76], [-2079.44, -108.24], [-2095.15, -107.67], [-2094.65, -93.94], [-2050.5, -95.52], [-2050.99, -109.42], [-2066.9, -108.85], [-2068.02, -140.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.68, "pop": 0, "jobs": 680}}, {"shape": {"outer": [[-1888.72, -51.01], [-1888.94, -56.55], [-1888.98, -57.72], [-1889.02, -58.74], [-1889.88, -80.34], [-1889.96, -82.18], [-1891.17, -113.44], [-1862.18, -114.57], [-1858.99, -114.7], [-1855.22, -114.84], [-1855.28, -116.47], [-1835.4, -117.24], [-1835.31, -115.01], [-1798.97, -116.41], [-1798.71, -109.59], [-1798.64, -108.03], [-1798.6, -106.89], [-1798.35, -100.46], [-1810.95, -99.98], [-1835.64, -99.03], [-1835.6, -97.91], [-1836.34, -97.99], [-1839.72, -97.84], [-1872.69, -96.51], [-1872.56, -93.2], [-1872.51, -91.95], [-1872.46, -90.54], [-1871.71, -70.54], [-1858.73, -71.03], [-1858.7, -69.95], [-1858.63, -68.41], [-1858.05, -53.27], [-1858.88, -53.24], [-1870.96, -52.79], [-1871.18, -51.69], [-1888.72, -51.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1679}}, {"shape": {"outer": [[-1873.92, -120.33], [-1874.19, -128.23], [-1874.3, -131.69], [-1891.32, -131.11], [-1892.1, -153.86], [-1897.93, -153.66], [-1898.09, -158.32], [-1898.23, -162.42], [-1892.37, -162.62], [-1892.96, -180.07], [-1894.23, -180.02], [-1894.69, -193.48], [-1893.91, -193.51], [-1893.94, -194.08], [-1893.28, -194.1], [-1893.3, -194.52], [-1884.32, -194.83], [-1884.31, -194.35], [-1861.05, -195.17], [-1861.08, -196.05], [-1857.31, -196.18], [-1857.34, -196.96], [-1851.52, -197.16], [-1845.05, -197.38], [-1838.72, -197.6], [-1838.69, -196.91], [-1834.96, -197.04], [-1834.94, -196.5], [-1830.41, -196.66], [-1810.82, -197.32], [-1810.85, -197.91], [-1802.79, -198.18], [-1802.77, -197.67], [-1802.23, -197.69], [-1802.21, -197.12], [-1801.82, -197.13], [-1801.36, -183.53], [-1802.22, -183.49], [-1800.67, -138.37], [-1804.6, -138.23], [-1814.75, -137.89], [-1815.3, -153.91], [-1815.51, -160.15], [-1820.28, -159.99], [-1820.06, -153.72], [-1854.95, -152.53], [-1853.88, -121.01], [-1859.27, -120.82], [-1862.42, -120.72], [-1873.92, -120.33]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7282}}, {"shape": {"outer": [[-1732.87, -121.53], [-1727.58, -122.37], [-1726.19, -113.73], [-1720.51, -114.63], [-1720.78, -116.32], [-1715.04, -124.53], [-1705.42, -125.92], [-1697.21, -120.77], [-1697.01, -119.5], [-1693.95, -120.0], [-1694.51, -123.43], [-1692.94, -123.68], [-1693.86, -129.24], [-1695.36, -128.99], [-1699.07, -151.45], [-1705.28, -150.43], [-1705.38, -151.09], [-1711.59, -150.08], [-1711.42, -149.03], [-1730.24, -146.01], [-1729.84, -143.53], [-1729.64, -142.28], [-1736.04, -141.25], [-1732.87, -121.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.654, "pop": 0, "jobs": 654}}, {"shape": {"outer": [[-1690.65, -179.03], [-1674.09, -179.74], [-1674.18, -181.94], [-1659.48, -182.57], [-1659.27, -177.65], [-1651.94, -177.96], [-1645.09, -178.26], [-1645.3, -183.32], [-1630.27, -183.97], [-1630.18, -181.79], [-1613.65, -182.51], [-1614.39, -196.45], [-1614.76, -208.24], [-1631.33, -207.53], [-1631.23, -205.33], [-1650.07, -204.53], [-1653.51, -204.37], [-1656.63, -204.24], [-1662.99, -203.97], [-1675.18, -203.45], [-1675.26, -205.44], [-1691.74, -204.73], [-1690.65, -179.03]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1566}}, {"shape": {"outer": [[-1600.77, -171.42], [-1597.15, -171.67], [-1571.29, -172.77], [-1571.59, -179.71], [-1571.74, -188.64], [-1574.87, -188.52], [-1584.73, -188.13], [-1585.06, -196.63], [-1585.4, -205.27], [-1575.36, -205.66], [-1572.42, -205.77], [-1573.05, -221.84], [-1602.72, -220.67], [-1600.77, -171.42]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1080, "jobs": 0}}, {"shape": {"outer": [[-1539.17, -83.03], [-1532.19, -83.29], [-1530.81, -83.34], [-1529.73, -83.38], [-1522.29, -83.65], [-1522.31, -84.25], [-1517.08, -84.44], [-1516.94, -80.58], [-1508.39, -80.89], [-1506.82, -80.94], [-1505.48, -80.99], [-1496.95, -81.29], [-1495.4, -81.35], [-1493.96, -81.4], [-1492.4, -81.46], [-1492.63, -87.68], [-1493.47, -87.65], [-1493.93, -100.9], [-1494.85, -100.87], [-1494.91, -102.63], [-1494.97, -104.26], [-1497.62, -104.16], [-1498.43, -104.14], [-1498.46, -104.93], [-1501.56, -104.81], [-1510.58, -104.5], [-1517.36, -104.26], [-1517.6, -103.57], [-1520.97, -103.45], [-1523.79, -103.34], [-1523.94, -107.37], [-1524.42, -107.35], [-1540.04, -106.78], [-1539.17, -83.03]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.593, "pop": 0, "jobs": 593}}, {"shape": {"outer": [[-1495.19, -154.97], [-1488.25, -159.15], [-1490.26, -161.83], [-1489.29, -162.43], [-1485.41, -164.83], [-1494.21, -178.99], [-1494.31, -181.8], [-1488.84, -182.01], [-1488.94, -184.71], [-1489.03, -187.1], [-1494.55, -186.89], [-1494.66, -189.88], [-1486.79, -205.08], [-1488.45, -205.93], [-1490.88, -207.19], [-1490.43, -208.07], [-1489.96, -208.97], [-1489.72, -209.43], [-1497.31, -213.34], [-1498.45, -211.14], [-1499.5, -211.69], [-1500.51, -209.73], [-1506.68, -197.81], [-1505.68, -197.29], [-1506.55, -195.62], [-1508.47, -194.45], [-1509.81, -196.61], [-1508.71, -197.3], [-1510.4, -200.03], [-1518.71, -194.91], [-1516.97, -192.1], [-1515.7, -192.88], [-1514.39, -190.76], [-1517.0, -189.16], [-1519.33, -189.07], [-1519.37, -190.27], [-1533.29, -189.73], [-1533.25, -188.48], [-1536.1, -188.36], [-1535.78, -181.4], [-1532.9, -181.53], [-1532.71, -176.96], [-1516.03, -177.6], [-1508.54, -173.69], [-1505.6, -172.15], [-1495.19, -154.97]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 2322, "jobs": 0}}, {"shape": {"outer": [[-1661.51, -52.12], [-1667.47, -86.57], [-1654.43, -88.81], [-1648.48, -54.36], [-1649.23, -54.22], [-1660.21, -52.34], [-1661.51, -52.12]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.518, "pop": 0, "jobs": 518}}, {"shape": {"outer": [[-1379.48, -2007.58], [-1364.85, -2035.24], [-1359.51, -2032.45], [-1352.97, -2029.01], [-1367.6, -2001.35], [-1379.48, -2007.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[-1947.49, -1789.77], [-1820.8, -1793.29], [-1820.97, -1799.58], [-1816.21, -1799.7], [-1817.94, -1861.85], [-1823.49, -1861.69], [-1823.64, -1867.02], [-1884.97, -1865.32], [-1940.01, -1863.79], [-1943.82, -1863.69], [-1949.53, -1863.53], [-1947.49, -1789.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6172}}, {"shape": {"outer": [[-1229.86, -689.67], [-1229.95, -683.52], [-1229.69, -676.78], [-1227.85, -667.58], [-1226.55, -662.84], [-1223.68, -655.65], [-1220.63, -649.75], [-1217.76, -645.2], [-1212.28, -638.29], [-1209.73, -635.4], [-1207.55, -632.75], [-1207.17, -618.26], [-1199.86, -626.53], [-1192.86, -622.17], [-1186.48, -618.98], [-1179.26, -616.32], [-1172.26, -614.54], [-1170.33, -614.05], [-1163.37, -613.13], [-1156.69, -612.91], [-1149.76, -613.12], [-1142.18, -614.23], [-1135.05, -616.08], [-1132.86, -616.95], [-1128.54, -618.63], [-1122.29, -621.5], [-1117.7, -623.86], [-1113.53, -626.8], [-1111.54, -628.15], [-1109.99, -629.39], [-1100.55, -629.99], [-1106.49, -752.39], [-1107.09, -752.03], [-1107.19, -755.69], [-1111.95, -753.47], [-1116.05, -751.7], [-1115.83, -748.18], [-1116.3, -748.0], [-1124.47, -744.28], [-1125.31, -744.98], [-1126.7, -745.95], [-1128.62, -746.83], [-1129.98, -747.53], [-1132.04, -748.4], [-1133.91, -749.12], [-1136.31, -749.91], [-1138.44, -750.52], [-1140.79, -751.13], [-1143.06, -751.58], [-1145.93, -752.15], [-1148.77, -752.51], [-1150.88, -752.68], [-1153.62, -752.71], [-1155.92, -752.72], [-1158.41, -752.68], [-1160.66, -752.64], [-1163.18, -752.58], [-1165.5, -752.36], [-1167.92, -752.11], [-1170.12, -751.79], [-1172.04, -751.39], [-1174.63, -750.78], [-1176.77, -750.21], [-1180.38, -748.91], [-1182.87, -747.88], [-1186.32, -746.38], [-1186.72, -747.18], [-1211.76, -736.09], [-1212.73, -735.66], [-1210.68, -693.63], [-1229.86, -692.82], [-1229.86, -689.67]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 16461}}, {"shape": {"outer": [[-2448.43, -341.45], [-2448.76, -348.75], [-2448.03, -348.78], [-2451.87, -426.86], [-2452.67, -426.83], [-2452.83, -430.32], [-2445.8, -430.65], [-2445.85, -431.9], [-2440.57, -432.13], [-2440.63, -433.62], [-2437.82, -433.75], [-2437.77, -432.3], [-2436.51, -432.36], [-2407.3, -433.57], [-2402.98, -433.75], [-2403.06, -435.78], [-2395.96, -436.07], [-2395.88, -434.24], [-2395.17, -416.75], [-2394.89, -409.64], [-2392.51, -350.89], [-2391.27, -350.93], [-2391.11, -347.24], [-2397.95, -346.95], [-2397.89, -345.56], [-2417.18, -344.73], [-2422.2, -344.52], [-2440.96, -343.7], [-2440.87, -341.78], [-2448.43, -341.45]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6954}}, {"shape": {"outer": [[-2389.59, -303.2], [-2388.49, -276.12], [-2386.72, -235.25], [-2398.4, -234.75], [-2398.26, -231.38], [-2403.79, -231.14], [-2439.21, -229.64], [-2444.95, -229.39], [-2445.09, -232.78], [-2457.1, -232.27], [-2457.92, -249.86], [-2458.0, -253.1], [-2460.47, -311.12], [-2445.55, -311.76], [-2445.77, -316.8], [-2405.11, -318.53], [-2404.89, -313.49], [-2390.08, -314.12], [-2389.59, -303.2]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4977}}, {"shape": {"outer": [[-2528.76, -235.65], [-2532.12, -314.46], [-2529.49, -315.22], [-2529.55, -321.56], [-2497.64, -322.98], [-2495.61, -322.43], [-2481.28, -325.8], [-2478.83, -325.65], [-2478.96, -319.78], [-2477.83, -319.7], [-2477.74, -313.97], [-2479.1, -313.91], [-2479.22, -309.02], [-2477.49, -308.98], [-2474.78, -252.44], [-2474.64, -249.02], [-2473.67, -228.61], [-2481.36, -227.82], [-2489.66, -227.46], [-2498.11, -227.98], [-2507.52, -229.28], [-2513.37, -230.64], [-2520.36, -232.44], [-2528.76, -235.65]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4252}}, {"shape": {"outer": [[-2365.1, -307.92], [-2361.34, -308.07], [-2361.44, -310.91], [-2329.73, -312.12], [-2329.63, -309.59], [-2325.79, -309.74], [-2325.05, -290.46], [-2328.87, -290.32], [-2328.77, -287.61], [-2331.86, -287.49], [-2334.66, -287.38], [-2334.3, -278.15], [-2388.49, -276.12], [-2389.59, -303.2], [-2364.95, -304.09], [-2365.1, -307.92]], "holes": []}, "height": 56.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8399}}, {"shape": {"outer": [[-2329.33, -348.47], [-2294.0, -350.0], [-2293.85, -346.7], [-2287.85, -346.96], [-2287.68, -343.12], [-2216.38, -346.19], [-2216.54, -350.03], [-2210.92, -350.27], [-2211.07, -353.57], [-2175.05, -355.12], [-2175.71, -370.17], [-2201.2, -369.07], [-2201.85, -384.27], [-2170.35, -385.62], [-2171.04, -401.5], [-2202.43, -400.16], [-2203.06, -414.73], [-2177.21, -415.84], [-2177.98, -433.7], [-2332.73, -427.04], [-2331.97, -409.7], [-2310.4, -410.63], [-2309.75, -395.59], [-2331.49, -394.66], [-2330.82, -379.04], [-2308.82, -379.99], [-2308.28, -367.57], [-2330.11, -366.63], [-2329.33, -348.47]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 16020}}, {"shape": {"outer": [[-2387.24, -448.18], [-2395.46, -447.75], [-2406.72, -463.31], [-2398.91, -469.67], [-2392.63, -475.17], [-2387.86, -480.32], [-2385.08, -483.33], [-2379.04, -490.55], [-2373.77, -499.33], [-2370.01, -507.51], [-2366.86, -514.74], [-2365.54, -518.72], [-2349.68, -518.88], [-2272.46, -520.63], [-2272.26, -512.54], [-2274.14, -512.43], [-2272.57, -457.09], [-2270.84, -457.14], [-2270.67, -448.54], [-2387.08, -445.36], [-2387.24, -448.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5236}}, {"shape": {"outer": [[-2359.54, -233.43], [-2358.49, -233.47], [-2358.42, -231.68], [-2345.7, -232.16], [-2345.77, -233.94], [-2336.8, -234.27], [-2336.77, -233.47], [-2331.26, -233.68], [-2325.96, -233.87], [-2325.99, -234.67], [-2317.46, -234.98], [-2317.4, -233.39], [-2302.84, -233.92], [-2302.9, -235.51], [-2296.23, -235.76], [-2297.45, -268.78], [-2327.12, -267.68], [-2327.22, -270.29], [-2331.2, -270.15], [-2333.96, -270.04], [-2338.99, -269.85], [-2338.89, -267.26], [-2346.35, -266.98], [-2346.34, -266.53], [-2355.58, -266.19], [-2355.35, -260.1], [-2360.51, -259.91], [-2359.54, -233.43]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1798}}, {"shape": {"outer": [[-561.5, -114.09], [-531.75, -147.07], [-535.48, -150.4], [-501.25, -188.33], [-496.93, -184.45], [-489.75, -192.41], [-493.75, -196.0], [-479.57, -211.72], [-475.89, -208.42], [-449.77, -237.35], [-406.22, -198.33], [-405.23, -199.42], [-388.53, -184.45], [-395.75, -176.47], [-394.22, -175.1], [-415.98, -151.01], [-417.64, -152.51], [-445.03, -122.2], [-451.73, -119.39], [-561.5, -114.09]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8957}}, {"shape": {"outer": [[230.14, -203.64], [241.42, -193.21], [263.19, -216.62], [251.9, -227.04], [230.14, -203.64]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.413, "pop": 0, "jobs": 413}}, {"shape": {"outer": [[118.02, -335.68], [119.87, -334.02], [122.01, -332.22], [124.37, -330.2], [146.21, -310.42], [127.87, -290.22], [130.86, -287.53], [133.27, -285.36], [125.15, -276.39], [119.06, -281.86], [103.25, -264.42], [100.24, -267.12], [81.94, -283.59], [79.8, -285.53], [77.66, -287.45], [75.81, -289.12], [77.85, -291.36], [79.42, -293.1], [82.8, -296.83], [94.0, -309.18], [95.86, -311.24], [98.74, -314.41], [100.52, -316.37], [118.02, -335.68]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2057}}, {"shape": {"outer": [[-327.89, -71.06], [-253.11, -4.21], [-279.52, 25.13], [-290.38, 15.42], [-315.24, -6.8], [-339.26, -28.27], [-353.01, -40.56], [-352.61, -40.99], [-353.92, -42.15], [-349.12, -47.48], [-349.81, -48.09], [-333.18, -66.59], [-332.48, -65.96], [-327.89, -71.06]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 8362, "jobs": 0}}, {"shape": {"outer": [[-120.92, 60.27], [-146.36, 88.03], [-160.0, 75.62], [-158.91, 74.44], [-161.05, 72.5], [-137.85, 47.21], [-136.79, 46.05], [-135.87, 46.88], [-134.42, 48.21], [-133.11, 46.79], [-128.16, 51.31], [-124.05, 55.05], [-125.23, 56.35], [-120.92, 60.27]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2293}}, {"shape": {"outer": [[46.88, -93.99], [60.48, -81.9], [76.96, -67.26], [81.37, -63.34], [106.77, -40.76], [103.37, -36.96], [62.13, 9.11], [1.94, -44.37], [23.73, -68.71], [26.68, -66.09], [32.32, -72.4], [29.71, -74.73], [35.97, -81.73], [38.5, -79.47], [43.7, -85.28], [41.13, -87.57], [46.88, -93.99]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 14892}}, {"shape": {"outer": [[-195.76, -7.53], [-184.07, 3.13], [-182.19, 1.09], [-179.19, 3.82], [-176.51, 6.26], [-178.43, 8.36], [-165.47, 20.16], [-168.94, 23.98], [-192.24, 49.32], [-194.97, 52.3], [-225.31, 24.66], [-195.76, -7.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1161}}, {"shape": {"outer": [[192.07, -95.21], [218.6, -71.32], [227.24, -63.54], [243.53, -49.0], [219.16, -22.41], [168.52, -69.16], [192.07, -95.21]], "holes": []}, "height": 31.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6186}}, {"shape": {"outer": [[64.57, 64.74], [46.22, 85.13], [50.54, 89.0], [42.73, 97.67], [41.71, 96.76], [27.33, 84.15], [24.2, 81.36], [50.49, 52.14], [64.57, 64.74]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 1416, "jobs": 0}}, {"shape": {"outer": [[72.46, 72.08], [93.58, 91.57], [76.99, 109.43], [68.48, 101.58], [59.13, 111.63], [46.53, 100.01], [72.46, 72.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.599, "pop": 0, "jobs": 599}}, {"shape": {"outer": [[-137.85, 47.21], [-139.17, 46.0], [-140.23, 45.04], [-138.64, 43.32], [-140.86, 41.3], [-143.51, 38.88], [-161.04, 22.86], [-165.21, 27.39], [-168.94, 23.98], [-192.24, 49.32], [-188.02, 53.17], [-172.48, 67.36], [-175.2, 70.32], [-174.36, 71.08], [-173.41, 71.95], [-170.7, 68.99], [-169.82, 69.79], [-168.99, 68.89], [-168.02, 67.83], [-161.9, 73.41], [-161.05, 72.5], [-137.85, 47.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 606, "jobs": 0}}, {"shape": {"outer": [[271.02, -211.04], [293.85, -188.97], [287.72, -182.53], [285.31, -179.48], [284.74, -179.78], [285.23, -167.74], [285.6, -158.68], [285.71, -156.23], [277.25, -155.77], [277.28, -154.67], [260.59, -154.05], [260.08, -155.25], [251.9, -154.97], [250.36, -188.83], [271.02, -211.04]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 3231, "jobs": 0}}, {"shape": {"outer": [[264.82, -134.73], [296.69, -105.15], [253.04, -56.87], [237.0, -71.76], [235.55, -73.1], [221.62, -86.04], [264.82, -134.73]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5507}}, {"shape": {"outer": [[-115.0, 86.04], [-113.1, 129.66], [-116.8, 133.18], [-131.69, 133.71], [-136.97, 128.78], [-142.35, 134.51], [-152.19, 125.36], [-116.13, 85.88], [-115.0, 86.04]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1167}}, {"shape": {"outer": [[142.96, -47.96], [165.14, -27.81], [158.79, -20.23], [171.36, -8.83], [177.75, -14.67], [200.18, 5.59], [174.35, 35.08], [167.6, 28.3], [156.2, 42.12], [161.59, 47.2], [136.88, 73.92], [115.02, 54.29], [119.22, 48.4], [105.77, 36.58], [100.72, 43.26], [79.59, 22.52], [106.72, -6.99], [112.32, -2.04], [114.66, -4.44], [112.2, -6.72], [119.08, -14.2], [121.49, -12.15], [123.37, -14.3], [117.6, -19.94], [142.96, -47.96]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 9515}}, {"shape": {"outer": [[-150.35, 93.03], [-173.41, 71.95], [-174.36, 71.08], [-175.2, 70.32], [-194.97, 52.3], [-217.35, 76.61], [-220.07, 79.28], [-212.76, 85.96], [-209.37, 89.05], [-179.39, 116.46], [-175.8, 112.56], [-171.75, 116.26], [-160.68, 104.25], [-157.68, 101.0], [-150.35, 93.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1408}}, {"shape": {"outer": [[-82.73, -289.7], [-83.91, -288.39], [-90.05, -293.83], [-91.6, -292.09], [-95.43, -295.47], [-100.23, -299.74], [-98.78, -301.37], [-109.52, -310.88], [-97.04, -324.87], [-71.38, -353.63], [-57.47, -369.22], [-54.42, -366.52], [-28.95, -343.95], [-42.4, -328.97], [-79.9, -287.19], [-82.73, -289.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1911}}, {"shape": {"outer": [[-82.52, -284.28], [-79.9, -287.19], [-42.4, -328.97], [-28.95, -343.95], [17.51, -302.54], [-4.81, -277.68], [-29.85, -300.01], [-33.87, -295.54], [-61.12, -265.2], [-82.52, -284.28]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7662}}, {"shape": {"outer": [[-52.57, -257.7], [-35.69, -242.59], [-8.41, -272.54], [-25.28, -287.81], [-52.57, -257.7]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1805}}, {"shape": {"outer": [[-225.31, 24.66], [-230.11, 29.96], [-232.82, 32.94], [-247.25, 48.72], [-245.88, 49.96], [-249.08, 53.46], [-224.06, 76.16], [-221.24, 73.07], [-219.44, 74.71], [-217.35, 76.61], [-194.97, 52.3], [-225.31, 24.66]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2093}}, {"shape": {"outer": [[1326.14, 1727.86], [1334.7, 1723.72], [1341.43, 1728.15], [1343.91, 1727.54], [1352.45, 1738.1], [1347.38, 1741.51], [1350.04, 1744.95], [1340.55, 1752.67], [1338.45, 1751.11], [1326.11, 1762.1], [1316.58, 1750.98], [1325.12, 1742.61], [1322.4, 1736.11], [1326.14, 1727.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.473, "pop": 0, "jobs": 473}}, {"shape": {"outer": [[-1279.8, -51.36], [-1279.7, -49.18], [-1279.33, -40.93], [-1278.79, -40.96], [-1278.24, -28.97], [-1278.0, -23.82], [-1279.06, -23.78], [-1278.89, -20.12], [-1279.28, -20.1], [-1279.16, -17.5], [-1279.01, -14.35], [-1278.91, -12.0], [-1278.51, -12.01], [-1278.34, -8.39], [-1277.13, -8.45], [-1276.95, -4.59], [-1276.32, 8.92], [-1276.76, 8.95], [-1276.45, 15.58], [-1276.28, 19.02], [-1262.54, 18.38], [-1262.5, 19.31], [-1258.91, 19.14], [-1255.47, 18.99], [-1255.54, 17.68], [-1212.12, 15.63], [-1212.1, 15.96], [-1200.5, 15.41], [-1200.55, 14.51], [-1194.12, 14.22], [-1194.21, 12.22], [-1194.76, 0.48], [-1197.92, 0.62], [-1201.06, 0.78], [-1201.15, -1.1], [-1201.25, -3.35], [-1201.8, -3.32], [-1202.33, -14.56], [-1202.58, -20.05], [-1205.32, -19.92], [-1205.37, -21.02], [-1202.65, -21.14], [-1201.54, -21.19], [-1199.97, -21.27], [-1197.49, -21.39], [-1195.98, -21.45], [-1197.66, -57.73], [-1198.54, -57.68], [-1198.59, -58.87], [-1198.66, -60.38], [-1231.57, -58.87], [-1231.5, -57.4], [-1231.33, -53.63], [-1250.03, -52.77], [-1251.14, -53.73], [-1252.42, -53.97], [-1253.91, -53.54], [-1255.12, -52.49], [-1279.8, -51.36]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 11386}}, {"shape": {"outer": [[-1254.16, -77.95], [-1254.17, -78.26], [-1254.51, -85.38], [-1254.59, -87.63], [-1255.66, -109.18], [-1256.08, -117.68], [-1256.12, -118.43], [-1223.93, -120.03], [-1203.39, -121.05], [-1203.04, -113.93], [-1202.75, -108.22], [-1202.66, -106.31], [-1202.34, -106.33], [-1201.2, -83.66], [-1201.05, -80.49], [-1204.35, -80.33], [-1214.98, -79.8], [-1226.9, -79.21], [-1226.92, -79.65], [-1230.46, -79.47], [-1230.44, -79.1], [-1238.3, -78.72], [-1246.67, -78.31], [-1254.16, -77.95]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1204}}, {"shape": {"outer": [[-1249.28, -127.52], [-1241.94, -127.91], [-1241.78, -125.06], [-1225.03, -125.94], [-1225.2, -129.17], [-1221.46, -129.37], [-1217.02, -129.61], [-1218.44, -156.43], [-1218.56, -158.81], [-1218.7, -161.31], [-1218.79, -163.1], [-1227.34, -162.66], [-1227.55, -166.61], [-1227.66, -168.6], [-1244.05, -167.74], [-1243.95, -165.87], [-1243.76, -162.28], [-1251.11, -161.89], [-1250.95, -158.79], [-1250.74, -154.81], [-1249.83, -137.82], [-1249.65, -134.3], [-1249.33, -128.47], [-1249.28, -127.52]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2785}}, {"shape": {"outer": [[-1188.4, -863.22], [-1170.04, -871.58], [-1164.44, -859.36], [-1154.58, -863.85], [-1146.06, -845.27], [-1184.42, -827.82], [-1192.96, -846.47], [-1182.84, -851.07], [-1188.4, -863.22]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.952, "pop": 0, "jobs": 952}}, {"shape": {"outer": [[29.62, -458.3], [60.3, -491.73], [63.91, -495.68], [75.73, -484.91], [64.93, -473.14], [57.38, -464.91], [72.61, -451.04], [79.83, -458.9], [91.2, -471.29], [105.72, -458.06], [93.9, -445.18], [96.22, -443.07], [94.04, -440.7], [91.44, -443.07], [86.35, -437.53], [102.74, -422.59], [107.98, -428.29], [105.08, -430.95], [107.12, -433.17], [109.78, -430.74], [121.33, -443.31], [128.71, -436.53], [133.33, -432.38], [131.79, -430.7], [119.54, -417.35], [109.32, -406.21], [99.78, -395.82], [98.24, -397.21], [86.62, -407.8], [87.63, -408.9], [74.42, -420.94], [72.59, -418.94], [56.87, -433.26], [58.11, -434.61], [44.44, -447.05], [43.31, -445.83], [29.62, -458.3]], "holes": []}, "height": 53.9, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 15251}}, {"shape": {"outer": [[-1560.67, -526.95], [-1559.14, -528.7], [-1549.31, -529.05], [-1548.05, -527.7], [-1536.18, -528.26], [-1536.15, -529.15], [-1533.33, -529.23], [-1530.4, -529.32], [-1530.37, -528.53], [-1518.6, -529.05], [-1517.15, -530.62], [-1507.77, -531.02], [-1505.64, -529.07], [-1505.49, -519.89], [-1506.54, -518.46], [-1507.05, -517.77], [-1517.04, -517.35], [-1518.24, -518.69], [-1547.08, -517.6], [-1548.64, -515.96], [-1558.31, -515.65], [-1558.35, -517.49], [-1559.77, -517.49], [-1560.39, -517.5], [-1560.67, -526.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.506, "pop": 253, "jobs": 0}}, {"shape": {"outer": [[-1665.31, -510.82], [-1661.4, -515.4], [-1660.28, -514.46], [-1658.25, -515.93], [-1658.95, -517.54], [-1613.26, -539.98], [-1610.94, -535.25], [-1610.44, -525.69], [-1609.53, -524.29], [-1608.59, -514.63], [-1607.69, -513.35], [-1613.09, -507.53], [-1614.25, -508.41], [-1658.87, -506.95], [-1660.07, -505.46], [-1665.31, -510.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.88, "pop": 440, "jobs": 0}}, {"shape": {"outer": [[-1476.2, -1279.5], [-1476.92, -1300.41], [-1452.17, -1301.27], [-1439.99, -1288.57], [-1439.78, -1280.74], [-1442.54, -1280.66], [-1476.2, -1279.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.44, "pop": 0, "jobs": 440}}, {"shape": {"outer": [[-1549.86, -1333.41], [-1541.72, -1333.58], [-1541.22, -1310.67], [-1549.47, -1310.49], [-1549.67, -1319.76], [-1552.13, -1319.7], [-1552.36, -1330.58], [-1549.8, -1330.63], [-1549.86, -1333.41]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.138, "pop": 0, "jobs": 138}}, {"shape": {"outer": [[-1265.17, -833.06], [-1251.8, -838.87], [-1248.56, -841.53], [-1245.17, -843.88], [-1241.61, -846.13], [-1237.66, -847.99], [-1233.83, -849.47], [-1229.81, -850.65], [-1225.9, -851.67], [-1221.92, -852.43], [-1207.99, -859.06], [-1199.03, -839.47], [-1224.53, -827.87], [-1224.33, -827.46], [-1224.14, -827.03], [-1230.42, -824.17], [-1230.62, -824.6], [-1230.83, -825.05], [-1256.21, -813.51], [-1265.17, -833.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.895, "pop": 0, "jobs": 895}}, {"shape": {"outer": [[-1348.25, -831.93], [-1329.96, -791.53], [-1327.49, -786.17], [-1325.68, -782.4], [-1288.97, -799.2], [-1296.12, -815.23], [-1291.46, -817.45], [-1293.75, -822.67], [-1293.17, -822.94], [-1294.56, -825.98], [-1296.35, -830.01], [-1297.04, -829.71], [-1299.22, -834.69], [-1304.44, -832.8], [-1311.75, -848.92], [-1348.25, -831.93]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1942}}, {"shape": {"outer": [[-880.06, -848.88], [-852.91, -878.57], [-828.99, -856.86], [-843.95, -840.49], [-841.92, -838.66], [-850.06, -829.76], [-852.15, -831.65], [-856.2, -827.23], [-880.06, -848.88]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.746, "pop": 0, "jobs": 746}}, {"shape": {"outer": [[-1421.54, -766.87], [-1401.85, -767.86], [-1402.62, -782.67], [-1374.32, -784.15], [-1373.45, -783.86], [-1373.02, -783.16], [-1370.63, -737.41], [-1371.61, -736.43], [-1376.37, -736.24], [-1375.55, -718.68], [-1375.36, -714.98], [-1370.51, -713.59], [-1369.46, -712.32], [-1369.43, -709.13], [-1373.84, -707.0], [-1414.77, -687.24], [-1415.88, -686.71], [-1416.68, -686.43], [-1417.46, -686.51], [-1418.07, -686.98], [-1418.4, -687.71], [-1422.57, -765.8], [-1422.25, -766.42], [-1421.54, -766.87]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2166}}, {"shape": {"outer": [[-1086.59, -761.02], [-1041.06, -774.54], [-1026.89, -761.53], [-983.74, -721.92], [-983.37, -718.32], [-1014.93, -716.66], [-1007.81, -689.49], [-1031.93, -683.35], [-1033.49, -689.78], [-1074.42, -679.02], [-1082.63, -709.7], [-1074.45, -711.72], [-1086.59, -761.02]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3364}}, {"shape": {"outer": [[-825.38, -801.35], [-811.58, -816.29], [-804.6, -809.9], [-787.37, -828.57], [-783.95, -825.43], [-778.12, -820.08], [-773.25, -815.62], [-803.26, -783.07], [-804.27, -782.0], [-825.38, -801.35]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 936, "jobs": 0}}, {"shape": {"outer": [[-979.71, -951.77], [-973.55, -958.52], [-971.6, -956.75], [-966.43, -962.42], [-963.05, -959.36], [-963.43, -958.95], [-943.99, -941.36], [-938.35, -947.53], [-926.96, -937.23], [-947.92, -914.24], [-959.29, -924.51], [-958.26, -925.64], [-964.41, -931.2], [-965.32, -930.2], [-970.0, -934.45], [-969.06, -935.5], [-976.34, -942.09], [-977.14, -941.21], [-981.63, -945.28], [-977.52, -949.79], [-979.71, -951.77]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.656, "pop": 0, "jobs": 656}}, {"shape": {"outer": [[-841.37, -813.21], [-820.67, -835.65], [-813.0, -828.62], [-833.69, -806.18], [-841.37, -813.21]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.267, "pop": 0, "jobs": 267}}, {"shape": {"outer": [[-1483.36, -818.22], [-1482.57, -800.03], [-1478.47, -800.93], [-1478.19, -799.42], [-1479.51, -799.11], [-1481.04, -798.44], [-1482.21, -797.44], [-1483.32, -796.05], [-1484.0, -794.45], [-1484.32, -792.6], [-1484.11, -790.83], [-1483.6, -789.2], [-1482.93, -787.92], [-1482.09, -786.78], [-1480.91, -785.82], [-1479.62, -785.16], [-1477.85, -784.6], [-1476.01, -784.5], [-1474.01, -784.87], [-1472.39, -785.63], [-1471.29, -786.64], [-1470.33, -787.84], [-1469.71, -788.84], [-1469.35, -789.97], [-1469.1, -791.21], [-1466.89, -791.15], [-1466.39, -781.92], [-1453.89, -784.1], [-1372.74, -799.15], [-1372.99, -807.81], [-1373.24, -810.31], [-1373.41, -811.72], [-1370.83, -812.32], [-1373.43, -825.66], [-1374.1, -825.54], [-1374.6, -839.78], [-1468.55, -822.13], [-1468.54, -820.59], [-1483.36, -818.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2789}}, {"shape": {"outer": [[-1284.16, -928.82], [-1284.01, -918.98], [-1286.67, -918.94], [-1286.35, -898.63], [-1266.87, -898.93], [-1267.03, -908.92], [-1264.59, -908.96], [-1264.9, -929.12], [-1284.16, -928.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.488, "pop": 244, "jobs": 0}}, {"shape": {"outer": [[-1343.57, -952.78], [-1343.06, -930.51], [-1335.51, -930.68], [-1335.56, -933.06], [-1326.84, -933.26], [-1326.79, -930.64], [-1320.0, -930.79], [-1320.51, -952.96], [-1327.61, -952.8], [-1327.44, -944.9], [-1335.33, -944.72], [-1335.52, -952.95], [-1343.57, -952.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.342, "pop": 171, "jobs": 0}}, {"shape": {"outer": [[-1343.4, -987.21], [-1343.19, -976.96], [-1345.61, -976.92], [-1345.2, -956.72], [-1337.94, -956.87], [-1337.92, -955.45], [-1323.57, -955.75], [-1324.21, -987.6], [-1343.4, -987.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.418, "pop": 0, "jobs": 418}}, {"shape": {"outer": [[-1344.54, -926.88], [-1325.38, -927.48], [-1325.07, -917.51], [-1322.11, -917.59], [-1321.46, -896.99], [-1341.6, -896.36], [-1341.93, -906.78], [-1343.91, -906.71], [-1344.54, -926.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.401, "pop": 0, "jobs": 401}}, {"shape": {"outer": [[-1387.5, -1100.18], [-1371.23, -1100.55], [-1369.88, -1041.45], [-1386.15, -1041.09], [-1386.64, -1062.64], [-1405.1, -1062.22], [-1405.46, -1077.89], [-1387.0, -1078.31], [-1387.5, -1100.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.801, "pop": 0, "jobs": 801}}, {"shape": {"outer": [[-1404.71, -955.69], [-1404.73, -937.25], [-1367.45, -937.57], [-1366.48, -937.57], [-1366.34, -933.67], [-1386.31, -933.34], [-1386.15, -926.62], [-1382.49, -926.72], [-1382.18, -922.9], [-1381.27, -922.88], [-1381.17, -916.85], [-1386.12, -916.77], [-1386.21, -914.67], [-1411.14, -914.54], [-1411.17, -915.51], [-1415.61, -915.38], [-1415.56, -911.07], [-1453.16, -910.77], [-1454.93, -909.2], [-1459.38, -909.04], [-1461.4, -911.07], [-1461.6, -915.27], [-1459.75, -916.94], [-1460.07, -957.44], [-1439.78, -957.63], [-1439.8, -959.49], [-1435.53, -963.54], [-1434.28, -963.54], [-1430.25, -963.55], [-1430.25, -957.19], [-1426.9, -957.2], [-1424.88, -955.42], [-1404.71, -955.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1983}}, {"shape": {"outer": [[-1313.85, -908.82], [-1295.99, -909.37], [-1295.64, -897.61], [-1313.49, -897.06], [-1313.85, -908.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-1288.21, -989.02], [-1268.83, -989.36], [-1268.69, -981.33], [-1278.96, -981.15], [-1278.92, -979.06], [-1265.2, -979.31], [-1264.84, -959.3], [-1285.06, -958.93], [-1285.19, -966.57], [-1275.36, -966.76], [-1275.39, -968.54], [-1287.83, -968.32], [-1288.21, -989.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.472, "pop": 236, "jobs": 0}}, {"shape": {"outer": [[-1338.91, -1168.81], [-1330.3, -1178.74], [-1318.0, -1179.39], [-1310.05, -1172.25], [-1309.03, -1148.73], [-1307.44, -1147.47], [-1307.29, -1143.13], [-1308.58, -1141.65], [-1308.37, -1137.94], [-1306.49, -1136.68], [-1272.71, -1138.49], [-1264.72, -1131.42], [-1264.4, -1119.07], [-1269.87, -1112.99], [-1273.74, -1116.45], [-1273.95, -1121.71], [-1277.31, -1121.49], [-1278.47, -1119.89], [-1282.78, -1119.7], [-1284.31, -1121.2], [-1301.6, -1120.24], [-1305.16, -1116.53], [-1322.7, -1115.56], [-1330.07, -1122.24], [-1337.14, -1128.57], [-1338.91, -1168.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 986, "jobs": 0}}, {"shape": {"outer": [[-1461.52, -1222.8], [-1460.68, -1222.83], [-1457.15, -1222.93], [-1457.2, -1224.46], [-1427.23, -1225.3], [-1426.87, -1212.54], [-1429.6, -1212.47], [-1429.52, -1209.2], [-1449.88, -1208.63], [-1457.38, -1208.43], [-1457.18, -1201.46], [-1471.97, -1201.05], [-1472.07, -1204.54], [-1474.68, -1204.48], [-1475.01, -1216.34], [-1461.34, -1216.72], [-1461.52, -1222.8]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1066, "jobs": 0}}, {"shape": {"outer": [[-1415.8, -1217.75], [-1408.94, -1217.93], [-1408.86, -1214.9], [-1398.94, -1215.14], [-1398.86, -1212.03], [-1392.16, -1212.18], [-1391.9, -1201.43], [-1398.91, -1201.26], [-1398.99, -1204.63], [-1409.39, -1204.38], [-1409.46, -1207.13], [-1415.54, -1206.98], [-1415.8, -1217.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-1465.28, -1166.29], [-1464.95, -1146.52], [-1454.99, -1146.7], [-1455.01, -1148.44], [-1414.27, -1149.11], [-1414.23, -1146.53], [-1375.02, -1147.18], [-1375.67, -1186.87], [-1395.78, -1186.54], [-1395.6, -1175.67], [-1393.51, -1175.7], [-1393.33, -1164.87], [-1401.7, -1164.73], [-1401.75, -1167.78], [-1411.53, -1167.63], [-1411.9, -1190.63], [-1415.18, -1190.58], [-1414.8, -1167.11], [-1465.28, -1166.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 866, "jobs": 0}}, {"shape": {"outer": [[-1383.46, -1230.94], [-1383.34, -1224.2], [-1384.27, -1224.18], [-1384.09, -1214.17], [-1382.88, -1214.18], [-1382.7, -1204.46], [-1384.02, -1204.44], [-1383.89, -1197.5], [-1373.27, -1197.7], [-1373.4, -1204.57], [-1372.44, -1204.59], [-1372.62, -1214.61], [-1373.84, -1214.59], [-1374.0, -1224.1], [-1372.86, -1224.12], [-1372.98, -1231.13], [-1383.46, -1230.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[-1291.0, -931.99], [-1291.53, -954.77], [-1284.69, -954.93], [-1284.62, -951.86], [-1275.17, -952.08], [-1275.24, -954.9], [-1267.12, -955.09], [-1266.6, -932.59], [-1274.8, -932.4], [-1274.88, -935.47], [-1283.18, -935.28], [-1283.11, -932.17], [-1291.0, -931.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.4, "pop": 200, "jobs": 0}}, {"shape": {"outer": [[-1447.77, -768.32], [-1444.38, -768.43], [-1444.38, -769.9], [-1438.69, -770.23], [-1438.63, -768.79], [-1434.91, -768.81], [-1434.6, -765.89], [-1430.49, -766.16], [-1429.42, -742.72], [-1433.45, -742.61], [-1433.39, -737.41], [-1429.27, -737.72], [-1428.59, -714.31], [-1432.55, -714.21], [-1432.38, -708.93], [-1445.41, -708.35], [-1446.92, -707.3], [-1453.25, -707.15], [-1453.53, -713.34], [-1456.18, -713.27], [-1457.28, -713.24], [-1456.99, -703.86], [-1461.07, -703.72], [-1460.81, -697.75], [-1456.84, -697.95], [-1455.78, -677.22], [-1455.07, -664.65], [-1459.07, -664.36], [-1458.98, -661.34], [-1462.41, -661.18], [-1462.33, -659.81], [-1465.21, -659.66], [-1468.48, -659.49], [-1468.5, -660.79], [-1471.91, -660.68], [-1472.02, -663.68], [-1475.97, -663.44], [-1477.28, -697.29], [-1473.08, -697.42], [-1473.39, -702.85], [-1477.54, -702.74], [-1478.71, -725.93], [-1474.88, -726.14], [-1474.95, -729.77], [-1463.22, -730.19], [-1462.48, -731.72], [-1460.99, -733.28], [-1459.38, -734.08], [-1457.74, -734.24], [-1455.88, -733.97], [-1454.74, -732.8], [-1453.83, -731.42], [-1452.77, -728.61], [-1452.73, -726.29], [-1449.86, -726.33], [-1450.28, -736.71], [-1446.34, -736.82], [-1446.55, -742.07], [-1451.01, -741.95], [-1451.53, -764.88], [-1447.67, -764.99], [-1447.77, -768.32]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 3331, "jobs": 0}}, {"shape": {"outer": [[-1341.88, -2073.81], [-1335.16, -2085.82], [-1319.29, -2077.0], [-1326.02, -2065.0], [-1341.88, -2073.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[-1129.23, -2452.61], [-1129.32, -2454.25], [-1120.59, -2469.27], [-1112.85, -2469.79], [-1112.9, -2470.59], [-1094.53, -2471.85], [-1093.16, -2454.74], [-1129.23, -2452.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[-257.24, -448.27], [-219.77, -489.7], [-162.77, -437.71], [-160.52, -435.65], [-198.01, -394.42], [-218.53, -413.09], [-257.24, -448.27]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6259}}, {"shape": {"outer": [[-820.76, -79.93], [-819.88, -66.61], [-830.6, -65.98], [-842.66, -76.33], [-842.06, -78.89], [-820.76, -79.93]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.131, "pop": 0, "jobs": 131}}, {"shape": {"outer": [[-1056.0, -205.5], [-1055.87, -204.98], [-1055.51, -204.58], [-1054.97, -204.4], [-1054.41, -204.5], [-1052.65, -206.44], [-1041.29, -218.97], [-1040.44, -218.2], [-1037.49, -221.46], [-1035.62, -223.52], [-1043.2, -230.35], [-1055.91, -241.79], [-1056.54, -241.98], [-1057.17, -241.81], [-1057.63, -241.32], [-1057.73, -240.66], [-1056.7, -219.62], [-1056.34, -212.41], [-1056.0, -205.5]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.442, "pop": 221, "jobs": 0}}, {"shape": {"outer": [[-575.21, 431.44], [-573.73, 429.86], [-571.69, 427.73], [-565.71, 433.2], [-564.0, 431.5], [-557.52, 437.49], [-555.63, 435.3], [-546.17, 424.44], [-514.0, 389.21], [-520.25, 384.05], [-519.63, 383.4], [-533.27, 370.61], [-534.13, 370.09], [-535.12, 369.74], [-536.04, 369.73], [-536.95, 369.9], [-537.35, 370.06], [-537.95, 370.41], [-539.97, 372.5], [-541.35, 373.92], [-546.75, 379.83], [-549.39, 382.66], [-550.54, 381.66], [-552.34, 383.54], [-553.88, 385.29], [-552.81, 386.24], [-554.76, 388.65], [-557.17, 386.49], [-579.21, 366.03], [-580.43, 364.86], [-581.48, 365.91], [-582.56, 366.37], [-583.61, 366.96], [-584.56, 367.68], [-585.55, 368.55], [-586.13, 370.08], [-586.34, 371.36], [-588.05, 372.99], [-591.99, 376.88], [-594.19, 379.05], [-594.89, 379.73], [-595.85, 378.9], [-596.62, 378.3], [-598.36, 376.92], [-598.52, 376.42], [-598.65, 375.88], [-598.69, 375.61], [-598.73, 375.22], [-598.7, 374.76], [-598.62, 374.28], [-598.52, 374.01], [-598.36, 373.57], [-598.33, 373.12], [-598.41, 372.54], [-598.55, 372.0], [-598.77, 371.6], [-599.05, 371.24], [-599.26, 371.02], [-599.67, 370.74], [-600.15, 370.52], [-600.67, 370.45], [-601.18, 370.41], [-601.77, 370.4], [-602.35, 370.48], [-602.93, 370.6], [-603.47, 370.83], [-603.9, 371.06], [-604.31, 371.37], [-604.7, 371.7], [-605.07, 372.11], [-605.45, 372.56], [-612.95, 366.11], [-617.96, 372.11], [-616.65, 373.52], [-625.24, 383.2], [-626.15, 382.47], [-627.93, 384.36], [-628.78, 383.68], [-639.02, 395.0], [-629.75, 402.34], [-629.51, 404.04], [-628.92, 405.66], [-627.99, 406.97], [-626.57, 407.64], [-625.02, 407.86], [-623.76, 407.63], [-622.53, 406.7], [-619.9, 403.91], [-619.11, 404.65], [-618.23, 405.53], [-590.23, 430.67], [-588.61, 428.97], [-581.89, 435.05], [-577.03, 429.94], [-575.21, 431.44]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 14123}}, {"shape": {"outer": [[-1425.76, -2108.19], [-1392.63, -2109.93], [-1392.94, -2100.13], [-1416.83, -2099.01], [-1429.47, -2086.6], [-1438.15, -2094.39], [-1438.81, -2094.98], [-1425.76, -2108.19]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.324, "pop": 0, "jobs": 324}}, {"shape": {"outer": [[-1408.99, -2067.31], [-1401.39, -2080.3], [-1393.29, -2075.84], [-1397.42, -2068.33], [-1395.82, -2067.34], [-1397.62, -2064.33], [-1399.08, -2065.18], [-1400.53, -2062.65], [-1408.99, -2067.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1424.76, -2132.0], [-1419.42, -2132.27], [-1419.63, -2136.08], [-1412.65, -2136.61], [-1412.43, -2132.69], [-1394.53, -2133.75], [-1394.05, -2124.71], [-1395.48, -2124.57], [-1395.24, -2120.11], [-1395.97, -2119.0], [-1397.49, -2118.52], [-1403.06, -2118.37], [-1403.23, -2116.5], [-1404.17, -2115.28], [-1405.58, -2114.91], [-1423.71, -2114.17], [-1424.76, -2132.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.34, "pop": 0, "jobs": 340}}, {"shape": {"outer": [[-796.63, -118.06], [-796.23, -111.77], [-796.52, -111.75], [-796.15, -105.97], [-795.86, -105.99], [-795.55, -101.09], [-789.91, -101.45], [-790.21, -106.29], [-789.85, -106.31], [-790.2, -112.05], [-790.74, -111.96], [-791.15, -118.41], [-796.63, -118.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.063, "pop": 0, "jobs": 63}}, {"shape": {"outer": [[-961.45, -42.09], [-961.36, -40.34], [-962.12, -41.0], [-963.85, -39.03], [-963.18, -38.45], [-962.84, -31.69], [-952.77, -32.19], [-953.29, -42.5], [-961.45, -42.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-405.39, -279.74], [-349.03, -228.9], [-370.93, -203.67], [-370.25, -203.04], [-367.83, -200.83], [-374.44, -195.59], [-375.62, -194.63], [-376.74, -195.88], [-384.58, -204.71], [-393.82, -214.84], [-410.37, -229.56], [-433.46, -250.28], [-430.98, -252.95], [-430.14, -253.85], [-429.47, -253.24], [-428.35, -254.47], [-424.88, -258.22], [-427.16, -260.19], [-425.74, -261.83], [-423.46, -259.87], [-420.3, -263.33], [-405.39, -279.74]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2662}}, {"shape": {"outer": [[-786.89, 71.36], [-772.89, 84.07], [-787.24, 99.77], [-801.25, 87.08], [-786.89, 71.36]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[-697.45, -37.61], [-689.65, -46.41], [-668.3, -27.65], [-676.1, -18.84], [-697.45, -37.61]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.468, "pop": 234, "jobs": 0}}, {"shape": {"outer": [[-818.02, 69.88], [-803.3, 53.68], [-799.25, 57.33], [-804.02, 62.58], [-799.48, 66.68], [-809.69, 77.91], [-812.07, 78.18], [-813.66, 76.74], [-813.53, 73.94], [-818.02, 69.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-857.04, 36.22], [-848.34, 26.3], [-847.45, 27.08], [-846.05, 25.48], [-846.68, 24.92], [-840.7, 18.08], [-831.51, 26.07], [-843.49, 39.74], [-844.28, 39.06], [-845.48, 40.43], [-844.76, 41.06], [-847.66, 44.38], [-857.04, 36.22]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-966.22, -20.28], [-954.81, -20.96], [-953.32, 3.6], [-964.73, 4.28], [-966.22, -20.28]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[-546.26, -218.71], [-519.02, -248.41], [-512.98, -242.9], [-509.96, -240.15], [-492.86, -224.56], [-491.61, -223.42], [-517.52, -195.19], [-518.26, -194.83], [-518.99, -194.74], [-519.79, -194.88], [-520.47, -195.22], [-546.26, -218.71]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.955, "pop": 0, "jobs": 955}}, {"shape": {"outer": [[-903.31, -10.22], [-894.65, -19.79], [-888.38, -14.17], [-885.19, -17.68], [-877.13, -10.44], [-891.1, 4.99], [-897.7, -0.94], [-898.92, -2.03], [-896.8, -4.37], [-903.31, -10.22]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.466, "pop": 233, "jobs": 0}}, {"shape": {"outer": [[-1149.93, -8.97], [-1146.44, -9.14], [-1144.36, -9.29], [-1144.64, -14.43], [-1137.83, -14.8], [-1136.31, 15.34], [-1139.24, 15.52], [-1146.21, 15.86], [-1147.14, 15.91], [-1153.48, 16.26], [-1154.63, 16.31], [-1162.18, 16.73], [-1167.08, 16.99], [-1173.96, 17.37], [-1174.08, 14.99], [-1175.18, -5.22], [-1170.44, -5.46], [-1162.75, -5.88], [-1162.69, -4.71], [-1149.73, -5.41], [-1149.93, -8.97]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 948, "jobs": 0}}, {"shape": {"outer": [[-886.36, 11.71], [-883.2, 14.47], [-882.89, 14.12], [-880.06, 16.59], [-879.56, 16.03], [-875.37, 19.72], [-858.94, 1.07], [-868.65, -7.42], [-882.95, 8.81], [-883.42, 8.39], [-886.36, 11.71]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.346, "pop": 173, "jobs": 0}}, {"shape": {"outer": [[-1090.2, -11.57], [-1085.9, -11.76], [-1086.02, -16.0], [-1086.3, -21.92], [-1072.82, -22.56], [-1072.99, -26.27], [-1071.44, -26.42], [-1063.57, -26.81], [-1061.97, -26.82], [-1061.95, -26.26], [-1061.51, -17.79], [-1060.54, 1.21], [-1063.68, 1.34], [-1063.21, 7.83], [-1070.73, 7.26], [-1070.8, 6.3], [-1081.0, 6.89], [-1080.82, 8.89], [-1084.79, 9.18], [-1084.76, 10.45], [-1089.11, 10.72], [-1089.31, 7.53], [-1091.23, 7.62], [-1091.71, -3.0], [-1089.82, -3.08], [-1090.2, -11.57]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 768, "jobs": 0}}, {"shape": {"outer": [[-975.77, -27.63], [-974.16, 5.6], [-1010.97, 7.37], [-1012.03, -14.77], [-1002.35, -15.24], [-1002.32, -14.64], [-999.04, -14.8], [-998.6, -5.92], [-987.59, -6.46], [-988.58, -27.01], [-975.77, -27.63]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 895, "jobs": 0}}, {"shape": {"outer": [[-1036.2, -68.69], [-1034.68, -38.18], [-1034.49, -34.34], [-1034.21, -28.72], [-1037.55, -28.55], [-1037.53, -28.13], [-1045.38, -27.73], [-1045.41, -28.22], [-1063.59, -27.32], [-1063.57, -26.81], [-1071.44, -26.42], [-1071.46, -26.99], [-1073.02, -26.9], [-1074.69, -26.82], [-1074.97, -32.42], [-1076.66, -66.58], [-1073.75, -66.73], [-1073.78, -67.35], [-1065.31, -67.77], [-1065.28, -67.19], [-1062.7, -67.31], [-1056.18, -67.63], [-1050.46, -67.91], [-1047.48, -68.05], [-1047.5, -68.52], [-1038.77, -68.95], [-1038.75, -68.56], [-1036.51, -68.67], [-1036.2, -68.69]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 3144, "jobs": 0}}, {"shape": {"outer": [[-1061.51, -17.79], [-1050.5, -18.33], [-1046.12, -18.54], [-1046.35, -23.15], [-1040.0, -23.45], [-1039.86, -20.76], [-1039.77, -18.84], [-1036.98, -18.97], [-1036.94, -17.96], [-1036.89, -16.86], [-1036.84, -15.76], [-1036.27, -4.11], [-1036.15, -1.71], [-1032.71, -1.89], [-1032.53, 1.73], [-1032.36, 5.13], [-1032.82, 5.16], [-1035.81, 5.31], [-1035.78, 5.98], [-1045.55, 6.48], [-1055.12, 6.98], [-1057.76, 7.1], [-1060.24, 7.21], [-1060.54, 1.21], [-1061.51, -17.79]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 817, "jobs": 0}}, {"shape": {"outer": [[-1166.78, 86.35], [-1166.74, 87.1], [-1166.42, 93.54], [-1166.0, 93.53], [-1165.96, 94.04], [-1165.94, 94.63], [-1167.1, 94.68], [-1167.0, 96.64], [-1166.62, 104.1], [-1165.88, 104.05], [-1165.3, 115.51], [-1148.48, 114.66], [-1148.82, 107.95], [-1149.26, 107.97], [-1150.02, 93.01], [-1150.18, 89.89], [-1149.66, 89.86], [-1149.88, 85.5], [-1166.78, 86.35]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 687, "jobs": 0}}, {"shape": {"outer": [[-1096.16, 125.01], [-1088.09, 124.62], [-1087.31, 140.81], [-1109.32, 141.87], [-1109.96, 128.63], [-1096.02, 127.95], [-1096.16, 125.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[-1127.79, 90.41], [-1111.78, 89.57], [-1111.07, 103.11], [-1111.66, 104.12], [-1111.23, 112.28], [-1112.31, 113.21], [-1115.43, 113.38], [-1116.56, 112.44], [-1120.33, 112.64], [-1121.25, 113.57], [-1124.38, 113.74], [-1125.67, 112.73], [-1126.08, 105.05], [-1127.08, 103.79], [-1127.79, 90.41]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.5, "pop": 250, "jobs": 0}}, {"shape": {"outer": [[-1165.84, 128.46], [-1145.85, 127.54], [-1145.76, 129.44], [-1142.39, 129.29], [-1141.78, 142.54], [-1146.37, 142.75], [-1146.5, 139.98], [-1149.56, 140.11], [-1149.97, 142.11], [-1151.07, 143.82], [-1152.73, 145.02], [-1154.7, 145.56], [-1156.79, 145.32], [-1158.64, 144.32], [-1159.99, 142.73], [-1160.66, 140.74], [-1165.28, 140.96], [-1165.32, 139.89], [-1165.84, 128.46]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 0.714, "pop": 357, "jobs": 0}}, {"shape": {"outer": [[-1169.16, 84.49], [-1161.29, 84.13], [-1161.28, 84.48], [-1155.8, 84.22], [-1155.82, 83.81], [-1147.68, 83.42], [-1147.97, 77.31], [-1151.31, 77.46], [-1151.55, 72.55], [-1167.81, 73.32], [-1167.78, 74.03], [-1169.66, 74.12], [-1169.16, 84.49]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1141.74, 88.72], [-1132.6, 88.33], [-1132.55, 89.36], [-1131.49, 109.86], [-1130.89, 109.83], [-1130.69, 113.88], [-1137.17, 114.21], [-1137.3, 111.86], [-1138.74, 111.93], [-1139.4, 111.37], [-1140.55, 111.44], [-1140.85, 106.33], [-1141.59, 105.47], [-1141.69, 103.39], [-1141.05, 102.13], [-1141.74, 88.72]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[-1107.38, 74.94], [-1107.35, 75.55], [-1106.7, 87.99], [-1105.63, 108.83], [-1097.08, 108.39], [-1097.13, 107.54], [-1091.01, 107.22], [-1092.72, 74.17], [-1107.38, 74.94]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 776, "jobs": 0}}, {"shape": {"outer": [[-1169.02, 60.64], [-1168.86, 64.02], [-1170.58, 64.11], [-1170.2, 72.05], [-1155.28, 71.35], [-1155.34, 70.01], [-1150.0, 69.75], [-1150.21, 65.29], [-1148.28, 65.19], [-1148.53, 59.9], [-1153.19, 60.12], [-1153.2, 59.89], [-1158.77, 60.16], [-1158.81, 59.17], [-1162.24, 59.33], [-1162.2, 60.31], [-1169.02, 60.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1168.5, 45.54], [-1161.8, 45.23], [-1161.78, 45.67], [-1160.14, 45.6], [-1160.27, 42.88], [-1158.92, 41.64], [-1156.43, 41.53], [-1156.45, 41.03], [-1152.18, 40.84], [-1147.48, 40.62], [-1146.77, 56.17], [-1167.96, 57.14], [-1168.5, 45.54]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.308, "pop": 154, "jobs": 0}}, {"shape": {"outer": [[-1078.67, 134.31], [-1065.57, 133.72], [-1064.29, 161.82], [-1077.39, 162.42], [-1078.67, 134.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[-1042.6, 116.51], [-1028.77, 115.88], [-1027.49, 143.96], [-1041.32, 144.58], [-1042.6, 116.51]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 0.816, "pop": 408, "jobs": 0}}, {"shape": {"outer": [[-907.79, 184.77], [-886.41, 161.59], [-886.03, 161.93], [-885.29, 161.13], [-874.93, 170.64], [-897.04, 194.61], [-905.34, 187.01], [-907.79, 184.77]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.832, "pop": 416, "jobs": 0}}, {"shape": {"outer": [[-967.16, 194.26], [-963.7, 190.42], [-964.91, 189.34], [-959.19, 182.97], [-960.3, 181.98], [-958.34, 179.8], [-956.39, 177.62], [-955.26, 178.64], [-949.08, 171.75], [-939.69, 180.13], [-955.98, 198.25], [-957.52, 196.87], [-960.5, 200.19], [-967.16, 194.26]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.496, "pop": 248, "jobs": 0}}, {"shape": {"outer": [[-929.87, 176.28], [-921.04, 184.16], [-930.68, 194.87], [-929.87, 195.58], [-928.63, 196.69], [-931.64, 200.05], [-933.88, 198.06], [-941.36, 206.36], [-949.98, 198.66], [-929.87, 176.28]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.512, "pop": 256, "jobs": 0}}, {"shape": {"outer": [[-1086.34, 38.12], [-1076.78, 37.75], [-1076.66, 40.75], [-1074.59, 40.67], [-1074.31, 47.79], [-1075.56, 47.84], [-1075.44, 51.16], [-1074.11, 51.11], [-1073.45, 67.85], [-1074.8, 67.9], [-1074.77, 68.8], [-1080.67, 69.03], [-1080.73, 67.56], [-1085.84, 67.76], [-1085.9, 66.36], [-1087.24, 66.41], [-1088.22, 41.16], [-1086.22, 41.08], [-1086.34, 38.12]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 0.972, "pop": 486, "jobs": 0}}, {"shape": {"outer": [[-1042.37, 162.06], [-1025.19, 161.31], [-1024.51, 176.71], [-1041.7, 177.47], [-1042.37, 162.06]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[-966.58, 130.78], [-960.17, 123.79], [-958.01, 125.77], [-954.61, 122.04], [-953.08, 123.45], [-951.51, 124.88], [-947.65, 128.39], [-957.45, 139.09], [-966.58, 130.78]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-1003.32, 100.17], [-1003.74, 90.71], [-1002.66, 90.66], [-1002.71, 89.25], [-1002.78, 87.83], [-1003.93, 87.87], [-1004.35, 78.3], [-974.82, 76.98], [-974.41, 86.3], [-982.17, 86.64], [-981.62, 99.21], [-1003.32, 100.17]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.956, "pop": 478, "jobs": 0}}, {"shape": {"outer": [[-917.1, 196.21], [-916.65, 196.62], [-916.18, 197.06], [-910.52, 190.95], [-900.58, 200.09], [-915.71, 216.44], [-916.09, 216.1], [-919.08, 219.33], [-927.74, 211.35], [-924.42, 207.77], [-925.5, 206.77], [-921.41, 202.37], [-922.16, 201.68], [-917.1, 196.21]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.382, "pop": 191, "jobs": 0}}, {"shape": {"outer": [[-922.38, 167.75], [-905.16, 149.26], [-901.61, 152.55], [-902.15, 153.13], [-896.75, 158.14], [-901.85, 163.62], [-903.17, 162.4], [-906.02, 165.46], [-908.45, 168.06], [-907.0, 169.4], [-911.22, 173.93], [-916.3, 169.23], [-918.37, 171.45], [-922.38, 167.75]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.376, "pop": 188, "jobs": 0}}, {"shape": {"outer": [[-922.43, 107.44], [-909.34, 93.03], [-907.68, 94.53], [-905.89, 92.57], [-902.37, 95.74], [-904.48, 98.07], [-900.94, 101.27], [-913.92, 115.55], [-915.41, 114.21], [-917.25, 116.24], [-920.8, 113.04], [-918.74, 110.77], [-922.43, 107.44]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-880.42, 182.46], [-869.4, 170.18], [-858.9, 179.53], [-858.73, 182.26], [-868.85, 193.52], [-872.43, 190.33], [-872.06, 189.91], [-880.42, 182.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-1001.54, 137.47], [-1001.38, 140.75], [-1002.84, 140.83], [-1002.42, 149.03], [-999.72, 148.9], [-999.62, 150.94], [-998.08, 152.43], [-995.53, 152.3], [-994.3, 150.61], [-994.32, 150.27], [-989.85, 150.05], [-990.07, 145.75], [-987.67, 145.63], [-987.76, 143.92], [-986.29, 143.85], [-985.57, 143.01], [-985.65, 141.46], [-984.38, 141.39], [-984.62, 136.63], [-993.03, 137.05], [-993.07, 136.2], [-997.22, 136.41], [-997.18, 137.25], [-1001.54, 137.47]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[-934.76, 152.55], [-919.13, 135.45], [-908.65, 144.94], [-924.28, 162.06], [-934.76, 152.55]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[-1000.85, 165.17], [-977.38, 139.24], [-967.67, 147.97], [-991.15, 173.89], [-1000.85, 165.17]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[-914.7, 222.35], [-910.11, 217.35], [-910.71, 216.8], [-897.8, 202.73], [-887.68, 211.95], [-897.01, 222.12], [-900.4, 225.81], [-900.67, 225.56], [-905.46, 230.78], [-914.7, 222.35]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.484, "pop": 242, "jobs": 0}}, {"shape": {"outer": [[-1139.68, 127.25], [-1139.08, 139.15], [-1137.88, 139.09], [-1137.92, 138.35], [-1136.82, 138.3], [-1136.78, 139.09], [-1135.87, 139.64], [-1134.18, 139.5], [-1133.37, 138.85], [-1133.41, 138.01], [-1132.57, 137.97], [-1132.54, 138.61], [-1130.04, 138.49], [-1130.08, 137.82], [-1129.18, 137.77], [-1129.16, 138.4], [-1126.51, 138.28], [-1126.55, 137.61], [-1125.72, 137.57], [-1125.69, 138.19], [-1123.13, 138.06], [-1123.16, 137.4], [-1122.54, 137.37], [-1122.51, 138.02], [-1120.3, 137.92], [-1120.33, 137.21], [-1114.62, 136.92], [-1114.58, 137.89], [-1113.72, 137.84], [-1114.3, 126.07], [-1117.57, 126.25], [-1117.67, 124.4], [-1123.76, 124.7], [-1123.67, 126.45], [-1139.68, 127.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-845.44, 260.9], [-833.16, 247.31], [-821.32, 257.93], [-833.6, 271.52], [-845.44, 260.9]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-809.83, 167.45], [-805.48, 162.68], [-802.21, 165.64], [-784.62, 146.32], [-774.83, 155.17], [-796.77, 179.26], [-809.83, 167.45]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.32, "pop": 160, "jobs": 0}}, {"shape": {"outer": [[-775.06, 61.38], [-774.02, 60.19], [-774.99, 59.36], [-771.72, 55.63], [-770.76, 56.45], [-770.47, 56.12], [-767.12, 59.03], [-767.01, 58.9], [-758.22, 66.53], [-763.52, 72.61], [-768.33, 68.44], [-768.6, 68.75], [-772.7, 65.19], [-771.83, 64.19], [-775.06, 61.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-804.34, 250.21], [-794.2, 259.38], [-808.26, 274.81], [-814.24, 269.41], [-815.25, 270.51], [-819.89, 266.32], [-815.69, 261.72], [-815.22, 262.14], [-807.59, 253.77], [-808.37, 253.06], [-806.1, 250.57], [-805.32, 251.28], [-804.34, 250.21]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.316, "pop": 158, "jobs": 0}}, {"shape": {"outer": [[-874.39, 237.64], [-871.59, 234.66], [-872.2, 234.1], [-865.36, 226.82], [-864.76, 227.38], [-862.97, 225.48], [-856.19, 231.8], [-857.87, 233.59], [-850.43, 240.53], [-849.39, 239.43], [-843.1, 245.3], [-850.5, 253.18], [-851.54, 252.22], [-854.08, 254.94], [-860.82, 248.65], [-859.6, 247.35], [-865.39, 241.96], [-867.43, 244.13], [-874.39, 237.64]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.562, "pop": 281, "jobs": 0}}, {"shape": {"outer": [[-953.08, 123.45], [-951.64, 121.88], [-945.33, 115.0], [-947.88, 112.68], [-946.1, 110.74], [-947.55, 109.43], [-932.56, 93.09], [-924.19, 100.71], [-934.94, 112.44], [-922.42, 123.84], [-932.69, 135.02], [-948.01, 121.07], [-950.07, 123.3], [-951.51, 124.88], [-953.08, 123.45]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 508, "jobs": 0}}, {"shape": {"outer": [[-906.65, 86.75], [-890.18, 68.43], [-880.37, 77.18], [-896.84, 95.51], [-906.65, 86.75]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.34, "pop": 170, "jobs": 0}}, {"shape": {"outer": [[-842.44, 143.47], [-823.45, 123.02], [-814.83, 130.97], [-833.83, 151.42], [-842.44, 143.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[-426.49, 98.57], [-423.44, 95.21], [-424.36, 94.37], [-407.09, 75.35], [-392.08, 88.87], [-392.87, 89.73], [-366.95, 113.03], [-382.26, 129.93], [-380.35, 131.65], [-385.17, 136.97], [-389.83, 142.12], [-392.95, 139.31], [-395.35, 141.97], [-396.16, 141.25], [-399.39, 144.82], [-398.19, 145.9], [-399.97, 147.86], [-401.93, 150.02], [-403.89, 148.26], [-411.37, 156.52], [-413.22, 154.86], [-418.14, 160.31], [-419.29, 159.27], [-420.77, 160.9], [-420.14, 161.47], [-421.02, 162.43], [-421.92, 163.42], [-427.02, 158.84], [-427.76, 159.65], [-433.45, 154.53], [-432.46, 153.43], [-436.64, 149.66], [-435.41, 148.3], [-435.66, 145.92], [-429.96, 139.67], [-432.12, 137.71], [-423.97, 128.75], [-435.24, 118.56], [-426.06, 108.49], [-432.55, 102.61], [-427.79, 97.39], [-426.49, 98.57]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2756}}, {"shape": {"outer": [[-509.18, 52.85], [-501.59, 44.72], [-481.85, 63.03], [-506.58, 89.49], [-517.82, 79.06], [-499.48, 59.42], [-502.69, 56.44], [-503.92, 57.74], [-509.18, 52.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.542, "pop": 271, "jobs": 0}}, {"shape": {"outer": [[-580.12, -29.12], [-574.46, -35.39], [-575.03, -35.9], [-555.98, -57.02], [-551.36, -52.88], [-550.8, -53.51], [-546.05, -49.25], [-546.8, -48.42], [-542.44, -44.52], [-561.21, -23.69], [-562.08, -24.48], [-567.94, -17.97], [-571.57, -21.22], [-571.9, -20.84], [-576.39, -24.85], [-575.92, -25.36], [-580.12, -29.12]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.706, "pop": 353, "jobs": 0}}, {"shape": {"outer": [[-499.97, 230.29], [-492.81, 222.36], [-478.01, 235.62], [-479.25, 236.99], [-477.12, 238.9], [-481.48, 243.72], [-484.07, 241.4], [-485.64, 243.14], [-499.97, 230.29]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-653.53, 17.55], [-642.62, 6.12], [-636.14, 12.26], [-642.35, 18.76], [-642.57, 18.54], [-647.28, 23.48], [-653.53, 17.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-675.94, 65.9], [-660.81, 48.86], [-651.43, 57.14], [-666.56, 74.17], [-675.94, 65.9]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-647.43, 33.02], [-629.77, 13.63], [-624.19, 18.7], [-623.67, 18.13], [-619.53, 21.86], [-620.05, 22.44], [-614.32, 27.62], [-631.98, 46.99], [-647.43, 33.02]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.77, "pop": 385, "jobs": 0}}, {"shape": {"outer": [[-580.02, 140.41], [-567.1, 152.27], [-574.2, 159.95], [-583.25, 151.64], [-581.05, 149.25], [-584.92, 145.71], [-580.02, 140.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-671.56, 7.42], [-652.05, -14.18], [-638.1, -1.67], [-645.1, 6.08], [-648.01, 3.47], [-647.69, 3.13], [-655.83, -4.18], [-657.33, -2.51], [-651.94, 2.34], [-663.26, 14.86], [-671.56, 7.42]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.54, "pop": 270, "jobs": 0}}, {"shape": {"outer": [[-575.49, 22.17], [-566.25, 12.15], [-565.95, 12.43], [-563.89, 10.21], [-555.84, 17.57], [-557.9, 19.8], [-557.43, 20.23], [-566.67, 30.24], [-575.49, 22.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-685.01, 27.43], [-683.47, 25.74], [-684.88, 24.45], [-681.0, 20.23], [-679.55, 21.54], [-678.02, 19.86], [-668.04, 28.98], [-675.01, 36.56], [-685.01, 27.43]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-676.42, 16.37], [-671.77, 11.13], [-661.12, 20.51], [-665.78, 25.76], [-676.42, 16.37]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-983.55, 175.54], [-977.72, 169.09], [-975.35, 171.22], [-962.93, 157.47], [-957.52, 162.31], [-959.79, 164.82], [-957.72, 166.68], [-968.18, 178.27], [-968.01, 178.42], [-967.93, 179.84], [-969.02, 181.03], [-970.44, 181.04], [-970.57, 180.92], [-973.7, 184.38], [-983.55, 175.54]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.414, "pop": 207, "jobs": 0}}, {"shape": {"outer": [[-1001.31, 124.86], [-996.12, 124.61], [-996.16, 123.83], [-990.54, 123.56], [-990.5, 124.35], [-982.22, 123.96], [-982.19, 124.58], [-980.6, 124.5], [-980.33, 130.04], [-981.59, 131.51], [-990.21, 131.91], [-990.12, 133.95], [-1000.86, 134.46], [-1000.9, 133.46], [-1004.03, 133.61], [-1004.38, 126.09], [-1001.27, 125.93], [-1001.31, 124.86]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-783.91, 172.44], [-772.47, 159.9], [-771.56, 160.73], [-769.57, 158.56], [-751.74, 174.72], [-755.65, 179.01], [-754.68, 179.89], [-764.4, 190.55], [-765.54, 189.5], [-769.05, 193.36], [-770.44, 192.1], [-771.05, 192.76], [-776.34, 187.97], [-775.73, 187.3], [-776.68, 186.44], [-772.95, 182.37], [-783.91, 172.44]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.612, "pop": 306, "jobs": 0}}, {"shape": {"outer": [[-859.33, 133.21], [-840.24, 112.62], [-837.93, 114.75], [-833.26, 109.71], [-824.82, 117.47], [-850.91, 145.6], [-855.4, 141.47], [-854.36, 140.36], [-860.18, 135.0], [-858.89, 133.62], [-859.33, 133.21]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.368, "pop": 184, "jobs": 0}}, {"shape": {"outer": [[-928.44, 53.66], [-914.93, 38.74], [-918.17, 35.82], [-912.71, 29.79], [-900.64, 40.64], [-919.61, 61.59], [-928.44, 53.66]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[-917.91, 76.12], [-910.82, 68.17], [-900.15, 77.62], [-907.24, 85.57], [-917.91, 76.12]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-932.57, 47.1], [-932.69, 44.14], [-932.97, 44.15], [-933.52, 30.14], [-922.2, 29.69], [-922.06, 33.3], [-920.91, 34.38], [-920.77, 37.85], [-921.83, 38.98], [-921.72, 41.87], [-923.81, 43.96], [-927.75, 44.12], [-927.63, 46.91], [-932.57, 47.1]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-909.7, 64.32], [-907.59, 62.11], [-907.75, 61.94], [-899.32, 53.11], [-890.35, 61.6], [-894.11, 65.54], [-892.24, 67.31], [-899.03, 74.42], [-909.7, 64.32]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-870.44, 111.42], [-852.11, 91.44], [-839.85, 102.61], [-858.18, 122.59], [-870.44, 111.42]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.472, "pop": 236, "jobs": 0}}, {"shape": {"outer": [[-779.39, 218.34], [-766.53, 204.23], [-756.71, 213.1], [-769.56, 227.22], [-770.94, 225.97], [-773.48, 228.77], [-779.77, 223.08], [-777.23, 220.28], [-779.39, 218.34]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-1049.37, 51.37], [-1049.97, 37.36], [-1046.81, 37.23], [-1046.94, 34.19], [-1041.63, 33.96], [-1041.65, 33.53], [-1036.46, 33.32], [-1036.43, 34.05], [-1034.38, 33.96], [-1034.18, 38.79], [-1033.46, 38.76], [-1033.18, 45.47], [-1033.51, 45.5], [-1033.4, 48.26], [-1039.63, 48.53], [-1039.53, 50.96], [-1049.37, 51.37]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-975.79, 62.44], [-976.28, 52.92], [-977.11, 52.96], [-977.38, 47.77], [-976.54, 47.72], [-977.05, 37.79], [-976.1, 37.74], [-975.84, 35.79], [-974.86, 34.08], [-973.28, 32.89], [-971.36, 32.39], [-969.4, 32.67], [-967.69, 33.7], [-966.52, 35.3], [-966.06, 37.23], [-965.03, 37.18], [-963.77, 61.83], [-975.79, 62.44]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.358, "pop": 179, "jobs": 0}}, {"shape": {"outer": [[-949.71, 77.71], [-932.74, 59.08], [-923.13, 67.77], [-940.1, 86.41], [-949.71, 77.71]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[-949.85, 30.32], [-944.42, 30.09], [-944.4, 30.59], [-942.51, 30.51], [-942.53, 30.01], [-937.51, 29.79], [-937.46, 30.94], [-936.91, 30.91], [-936.8, 33.59], [-936.68, 36.3], [-935.59, 36.26], [-935.33, 42.42], [-936.41, 42.48], [-936.25, 46.12], [-937.31, 46.16], [-937.1, 51.02], [-948.33, 51.51], [-948.57, 45.87], [-947.99, 45.84], [-948.24, 39.88], [-949.43, 39.94], [-949.85, 30.32]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-793.0, 235.77], [-791.97, 236.71], [-796.55, 241.69], [-787.5, 249.94], [-774.18, 235.43], [-783.38, 227.06], [-788.1, 232.21], [-788.99, 231.41], [-793.0, 235.77]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-962.25, 31.76], [-953.35, 31.2], [-952.9, 38.35], [-953.37, 38.38], [-952.67, 49.69], [-952.45, 49.67], [-951.99, 57.05], [-960.66, 57.57], [-962.25, 31.76]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-796.41, 207.11], [-792.37, 202.68], [-793.01, 202.11], [-789.11, 197.85], [-788.47, 198.42], [-785.44, 195.1], [-777.42, 202.37], [-781.22, 206.53], [-780.92, 206.82], [-783.96, 210.14], [-784.27, 209.87], [-788.39, 214.37], [-796.41, 207.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-972.2, 93.18], [-970.78, 91.62], [-972.29, 90.25], [-971.04, 88.86], [-969.53, 88.82], [-968.82, 89.46], [-968.27, 88.85], [-966.35, 90.56], [-961.93, 85.68], [-949.86, 96.53], [-957.57, 105.03], [-965.87, 97.57], [-966.53, 98.29], [-972.2, 93.18]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-1001.59, 34.48], [-989.93, 34.02], [-989.07, 56.07], [-987.16, 56.0], [-986.75, 66.54], [-1000.36, 67.08], [-1000.74, 57.32], [-1003.48, 57.42], [-1004.02, 43.54], [-1001.24, 43.43], [-1001.59, 34.48]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.462, "pop": 231, "jobs": 0}}, {"shape": {"outer": [[-1065.9, 38.18], [-1065.23, 53.25], [-1068.55, 53.4], [-1067.97, 66.46], [-1064.83, 66.33], [-1064.47, 74.22], [-1085.78, 75.19], [-1085.01, 92.21], [-1081.81, 92.07], [-1081.26, 104.2], [-1054.37, 102.98], [-1054.96, 91.29], [-1049.79, 91.03], [-1031.92, 90.14], [-1032.73, 72.23], [-1033.77, 72.27], [-1034.25, 61.68], [-1033.66, 61.65], [-1033.75, 59.67], [-1033.82, 57.93], [-1034.49, 57.96], [-1034.62, 55.17], [-1040.22, 55.42], [-1040.27, 54.34], [-1053.88, 54.95], [-1054.65, 37.69], [-1065.9, 38.18]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 2512, "jobs": 0}}, {"shape": {"outer": [[-1004.32, 119.9], [-992.36, 119.56], [-992.4, 118.4], [-984.65, 118.18], [-984.79, 113.23], [-986.72, 113.28], [-986.85, 108.75], [-996.13, 109.01], [-996.14, 108.72], [-1002.41, 108.89], [-1002.24, 114.75], [-1004.47, 114.81], [-1004.32, 119.9]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-879.88, 95.02], [-866.14, 79.97], [-857.46, 87.84], [-871.2, 102.89], [-879.88, 95.02]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[-927.9, 84.48], [-924.84, 81.11], [-923.75, 82.11], [-919.42, 77.33], [-909.97, 85.83], [-917.36, 93.97], [-927.9, 84.48]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-957.18, 87.55], [-950.27, 79.93], [-940.34, 88.86], [-947.25, 96.49], [-957.18, 87.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-860.99, 164.92], [-854.79, 157.87], [-855.51, 157.24], [-850.12, 151.12], [-839.76, 160.16], [-843.25, 164.12], [-841.64, 165.52], [-847.85, 172.59], [-850.97, 169.88], [-852.01, 171.04], [-855.92, 167.63], [-856.77, 168.6], [-860.99, 164.92]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-953.67, 158.54], [-961.12, 151.92], [-956.27, 146.51], [-957.47, 145.46], [-951.47, 138.75], [-942.82, 146.43], [-953.67, 158.54]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-745.98, -205.07], [-740.32, -211.22], [-739.1, -210.11], [-738.32, -210.95], [-737.66, -211.68], [-741.37, -215.07], [-734.85, -222.17], [-721.15, -209.67], [-721.89, -208.86], [-734.69, -194.78], [-745.23, -204.39], [-745.98, -205.07]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.188, "pop": 0, "jobs": 188}}, {"shape": {"outer": [[-726.47, 236.7], [-708.25, 216.92], [-699.0, 225.4], [-705.22, 232.14], [-702.44, 234.69], [-714.44, 247.71], [-726.47, 236.7]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.424, "pop": 212, "jobs": 0}}, {"shape": {"outer": [[-1132.04, -20.12], [-1116.76, -20.9], [-1116.6, -17.77], [-1116.1, -8.43], [-1116.05, -7.48], [-1115.75, -1.52], [-1115.0, 12.67], [-1118.79, 12.87], [-1118.73, 13.85], [-1119.97, 13.93], [-1122.46, 14.06], [-1125.09, 14.19], [-1126.5, 14.25], [-1126.56, 13.22], [-1130.32, 13.42], [-1132.04, -20.12]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 732, "jobs": 0}}, {"shape": {"outer": [[-737.76, 321.75], [-715.12, 296.8], [-703.25, 307.5], [-725.89, 332.45], [-737.76, 321.75]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 754, "jobs": 0}}, {"shape": {"outer": [[-587.14, 336.61], [-584.2, 339.32], [-577.39, 331.95], [-572.31, 336.62], [-571.45, 337.41], [-569.54, 337.23], [-567.42, 339.18], [-567.37, 341.15], [-566.61, 341.85], [-581.14, 357.54], [-581.63, 357.1], [-589.99, 366.14], [-602.56, 354.6], [-595.79, 347.29], [-592.11, 350.68], [-590.8, 349.26], [-594.64, 345.74], [-588.51, 339.12], [-589.02, 338.64], [-587.14, 336.61]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.392, "pop": 196, "jobs": 0}}, {"shape": {"outer": [[-768.3, 276.1], [-759.91, 266.59], [-753.1, 272.56], [-752.37, 271.73], [-748.24, 275.35], [-748.97, 276.17], [-742.88, 281.51], [-751.2, 290.95], [-753.53, 288.9], [-755.75, 291.42], [-768.08, 280.63], [-765.91, 278.18], [-768.3, 276.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[-686.0, 253.17], [-681.16, 248.08], [-678.95, 250.18], [-674.94, 245.98], [-670.6, 250.1], [-669.24, 248.68], [-660.29, 257.15], [-665.68, 262.79], [-667.62, 260.95], [-670.83, 264.3], [-668.87, 266.16], [-669.62, 266.95], [-668.86, 267.67], [-674.19, 273.26], [-680.1, 267.66], [-677.82, 265.26], [-685.07, 258.4], [-682.88, 256.11], [-686.0, 253.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-788.72, 260.52], [-778.39, 269.63], [-784.36, 276.37], [-781.23, 279.12], [-782.73, 280.81], [-782.75, 283.9], [-784.23, 285.57], [-787.17, 285.79], [-789.31, 283.89], [-791.97, 284.02], [-794.96, 281.37], [-795.0, 279.24], [-799.09, 275.63], [-796.71, 272.96], [-798.42, 271.46], [-788.72, 260.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[-657.45, 292.31], [-653.98, 288.68], [-655.13, 287.6], [-645.22, 277.22], [-642.83, 279.49], [-640.53, 277.09], [-638.85, 278.69], [-637.29, 277.06], [-633.83, 280.34], [-634.96, 281.53], [-629.62, 286.6], [-645.7, 303.45], [-657.45, 292.31]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[-608.52, 332.95], [-601.72, 325.78], [-600.43, 326.98], [-600.3, 326.85], [-598.45, 328.6], [-590.85, 320.59], [-589.55, 321.8], [-589.02, 321.24], [-581.71, 328.12], [-590.78, 337.68], [-591.57, 336.95], [-597.56, 343.28], [-608.52, 332.95]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-696.11, 274.76], [-705.6, 285.19], [-693.22, 296.39], [-692.78, 295.91], [-690.48, 297.98], [-680.85, 287.4], [-691.15, 278.09], [-691.73, 278.72], [-696.11, 274.76]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 0.81, "pop": 405, "jobs": 0}}, {"shape": {"outer": [[-948.91, -24.83], [-934.02, -25.46], [-933.44, -11.89], [-935.71, -11.79], [-935.46, -6.13], [-940.94, -5.91], [-940.88, -4.43], [-940.83, -3.27], [-944.14, -3.13], [-944.19, -4.3], [-948.04, -4.14], [-948.91, -24.83]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[-702.91, 248.53], [-687.73, 231.88], [-685.34, 234.03], [-685.04, 233.7], [-682.41, 236.07], [-682.71, 236.4], [-680.4, 238.5], [-695.58, 255.15], [-702.91, 248.53]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.314, "pop": 157, "jobs": 0}}, {"shape": {"outer": [[-869.47, 22.1], [-862.58, 13.86], [-862.14, 14.24], [-852.29, 2.49], [-845.58, 8.06], [-848.3, 11.31], [-846.4, 12.88], [-853.42, 21.26], [-851.93, 22.5], [-858.93, 30.86], [-869.47, 22.1]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.324, "pop": 162, "jobs": 0}}, {"shape": {"outer": [[-739.32, 303.41], [-746.34, 297.04], [-738.23, 288.18], [-740.0, 286.57], [-734.76, 280.83], [-733.2, 282.24], [-732.68, 281.67], [-725.42, 288.28], [-725.94, 288.85], [-723.82, 290.78], [-729.12, 296.58], [-731.27, 294.63], [-739.32, 303.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-628.97, 368.66], [-633.92, 364.14], [-625.7, 355.23], [-627.26, 353.79], [-624.06, 350.32], [-622.35, 351.9], [-619.37, 348.66], [-610.43, 356.85], [-624.51, 372.12], [-624.84, 371.83], [-626.62, 371.96], [-628.56, 370.18], [-628.58, 368.4], [-628.66, 368.33], [-628.97, 368.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-647.44, 346.36], [-641.05, 339.38], [-638.18, 341.99], [-623.68, 326.11], [-626.24, 323.79], [-620.17, 317.14], [-609.15, 327.14], [-615.0, 333.55], [-615.82, 332.81], [-636.92, 355.9], [-647.44, 346.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.392, "pop": 196, "jobs": 0}}, {"shape": {"outer": [[-1112.64, -19.89], [-1109.73, -20.03], [-1109.79, -21.35], [-1102.7, -21.69], [-1102.02, -21.73], [-1100.65, -21.78], [-1100.61, -20.99], [-1096.74, -21.18], [-1095.19, 11.25], [-1098.24, 11.39], [-1098.18, 12.57], [-1107.59, 13.03], [-1108.03, 13.05], [-1108.09, 11.96], [-1108.67, 11.99], [-1109.95, 12.05], [-1111.13, 12.08], [-1111.82, -1.79], [-1111.92, -3.7], [-1112.07, -7.31], [-1112.26, -11.16], [-1112.64, -19.89]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.938, "pop": 469, "jobs": 0}}, {"shape": {"outer": [[-616.67, 299.36], [-612.96, 302.69], [-618.5, 308.82], [-620.25, 307.24], [-622.32, 309.54], [-620.72, 310.97], [-625.97, 316.78], [-627.63, 315.29], [-629.8, 317.69], [-628.08, 319.23], [-633.24, 324.94], [-635.04, 323.33], [-639.72, 328.51], [-637.97, 330.09], [-643.85, 336.59], [-658.95, 323.04], [-652.89, 316.34], [-651.13, 317.93], [-646.76, 313.1], [-648.45, 311.57], [-642.99, 305.54], [-641.23, 307.12], [-639.09, 304.76], [-640.91, 303.12], [-635.58, 297.22], [-633.84, 298.78], [-631.91, 296.65], [-633.72, 295.03], [-628.03, 288.75], [-623.74, 292.6], [-621.82, 290.47], [-614.55, 297.0], [-616.67, 299.36]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.95, "pop": 475, "jobs": 0}}, {"shape": {"outer": [[-928.91, -5.64], [-929.52, -25.17], [-923.41, -25.36], [-923.12, -16.19], [-921.82, -16.23], [-921.97, -21.39], [-914.18, -21.63], [-913.53, -0.82], [-915.95, -0.74], [-915.91, 0.77], [-921.19, 0.94], [-921.56, -11.04], [-922.81, -11.0], [-922.65, -5.84], [-928.91, -5.64]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-842.08, 50.12], [-821.76, 27.82], [-817.01, 32.11], [-818.47, 33.72], [-802.76, 47.92], [-822.63, 69.74], [-838.3, 55.57], [-837.29, 54.45], [-842.08, 50.12]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 573, "jobs": 0}}, {"shape": {"outer": [[-520.12, 261.93], [-512.58, 253.58], [-508.27, 257.45], [-507.95, 257.09], [-503.42, 261.16], [-503.73, 261.51], [-500.12, 264.75], [-507.66, 273.1], [-512.27, 268.97], [-512.67, 269.41], [-516.41, 266.05], [-516.01, 265.62], [-520.12, 261.93]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-608.93, 241.56], [-601.96, 233.68], [-592.51, 241.98], [-593.24, 242.8], [-588.09, 247.32], [-589.36, 248.74], [-583.84, 253.59], [-584.47, 254.3], [-578.46, 259.57], [-582.05, 263.62], [-593.53, 253.53], [-595.5, 255.75], [-601.89, 250.15], [-600.7, 248.79], [-608.93, 241.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[-447.09, 383.39], [-435.38, 393.96], [-437.52, 396.31], [-437.3, 397.55], [-437.55, 398.79], [-438.23, 399.85], [-439.22, 400.59], [-440.41, 400.94], [-441.64, 400.84], [-444.04, 403.46], [-458.06, 390.82], [-451.68, 383.8], [-449.36, 385.89], [-447.09, 383.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-435.96, 382.13], [-429.3, 374.74], [-420.79, 382.35], [-427.45, 389.73], [-435.96, 382.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-548.69, 221.75], [-543.77, 226.18], [-543.27, 225.63], [-539.96, 228.62], [-548.22, 237.67], [-550.25, 239.98], [-552.07, 238.4], [-553.79, 240.34], [-558.31, 236.27], [-556.59, 234.37], [-558.55, 232.62], [-548.69, 221.75]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-464.69, 475.41], [-448.96, 458.16], [-436.32, 469.59], [-437.34, 470.72], [-434.35, 473.42], [-437.91, 477.32], [-436.76, 478.36], [-447.91, 490.59], [-452.54, 486.4], [-454.49, 486.8], [-456.47, 486.47], [-458.18, 485.46], [-459.44, 483.84], [-460.01, 481.87], [-459.81, 479.83], [-464.69, 475.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.426, "pop": 213, "jobs": 0}}, {"shape": {"outer": [[-525.32, 291.97], [-525.83, 292.55], [-524.07, 294.07], [-528.43, 299.07], [-530.01, 297.7], [-529.97, 298.29], [-531.58, 300.11], [-534.03, 300.16], [-535.76, 298.66], [-535.78, 297.74], [-537.77, 296.0], [-538.65, 296.04], [-541.11, 293.88], [-541.1, 293.07], [-545.51, 289.25], [-541.5, 284.66], [-541.15, 284.96], [-537.83, 281.15], [-525.32, 291.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-426.74, 368.82], [-410.87, 351.96], [-408.07, 354.57], [-407.22, 353.66], [-403.63, 357.01], [-404.49, 357.92], [-401.5, 360.72], [-411.28, 371.1], [-408.53, 373.67], [-412.93, 378.34], [-414.59, 376.78], [-416.28, 378.59], [-426.74, 368.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-580.64, 211.15], [-570.69, 200.3], [-558.4, 211.49], [-568.35, 222.35], [-580.64, 211.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[-576.16, 296.19], [-555.87, 274.11], [-545.12, 283.91], [-548.87, 287.98], [-546.95, 289.92], [-549.25, 292.32], [-550.18, 293.4], [-537.35, 305.57], [-550.36, 319.72], [-576.16, 296.19]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 739, "jobs": 0}}, {"shape": {"outer": [[-537.79, 232.31], [-536.51, 233.46], [-535.84, 232.7], [-533.67, 234.62], [-534.39, 235.43], [-531.7, 237.8], [-534.71, 241.2], [-533.32, 242.42], [-536.54, 246.06], [-536.11, 246.44], [-539.1, 249.81], [-540.28, 248.77], [-542.91, 251.74], [-547.72, 247.52], [-545.58, 245.12], [-546.54, 244.28], [-543.7, 241.06], [-544.73, 240.15], [-537.79, 232.31]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-465.06, 389.76], [-444.56, 407.77], [-454.55, 419.07], [-475.06, 401.06], [-465.06, 389.76]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.72, "pop": 360, "jobs": 0}}, {"shape": {"outer": [[-594.71, 226.63], [-590.47, 222.03], [-589.3, 223.11], [-588.71, 222.48], [-583.36, 227.4], [-580.12, 223.88], [-573.85, 229.64], [-575.81, 231.75], [-572.8, 234.51], [-576.35, 238.35], [-572.58, 241.81], [-576.59, 246.15], [-584.69, 238.71], [-583.68, 237.61], [-586.79, 234.76], [-587.06, 235.04], [-594.48, 228.24], [-593.78, 227.49], [-594.71, 226.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-620.1, 254.93], [-617.33, 252.05], [-615.65, 253.67], [-612.35, 250.26], [-598.92, 263.11], [-605.91, 270.37], [-615.81, 260.9], [-614.88, 259.93], [-620.1, 254.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-484.6, 340.18], [-459.53, 312.7], [-445.43, 325.48], [-431.84, 337.79], [-456.91, 365.25], [-484.6, 340.18]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2334}}, {"shape": {"outer": [[-536.42, 250.02], [-534.03, 247.33], [-534.91, 246.56], [-530.76, 241.89], [-530.41, 242.21], [-527.38, 238.8], [-513.67, 250.89], [-520.9, 259.03], [-522.1, 257.98], [-524.42, 260.6], [-536.42, 250.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-594.56, 280.25], [-598.01, 277.16], [-597.17, 276.23], [-600.94, 272.86], [-591.45, 262.32], [-587.5, 265.84], [-588.24, 266.66], [-584.96, 269.59], [-594.56, 280.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-794.54, 22.94], [-782.5, 9.93], [-782.22, 10.19], [-780.6, 10.01], [-779.95, 10.6], [-779.48, 10.09], [-774.85, 14.34], [-780.1, 20.01], [-779.73, 20.35], [-787.79, 29.07], [-788.15, 28.74], [-789.24, 29.94], [-792.32, 27.12], [-791.26, 25.96], [-794.54, 22.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-878.45, -32.89], [-854.16, -60.41], [-851.31, -57.93], [-850.99, -58.29], [-844.81, -52.88], [-845.14, -52.51], [-842.13, -49.88], [-866.42, -22.35], [-878.45, -32.89]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1158}}, {"shape": {"outer": [[-832.54, 5.45], [-812.83, -16.67], [-811.26, -15.27], [-808.13, -18.78], [-804.58, -15.64], [-805.6, -14.49], [-797.21, -7.07], [-795.71, -8.75], [-790.42, -4.08], [-793.28, -0.87], [-787.36, 4.36], [-784.95, 1.65], [-782.28, 4.01], [-805.16, 29.67], [-832.54, 5.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.771, "pop": 0, "jobs": 771}}, {"shape": {"outer": [[-864.16, -18.38], [-848.46, -36.03], [-847.34, -35.05], [-840.62, -42.62], [-829.2, -32.53], [-836.27, -24.59], [-835.44, -23.86], [-846.17, -11.8], [-844.85, -10.64], [-843.97, -9.87], [-848.61, -4.64], [-864.16, -18.38]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.333, "pop": 0, "jobs": 333}}, {"shape": {"outer": [[-994.26, -37.96], [-1014.85, -36.92], [-1014.94, -38.84], [-1015.98, -59.19], [-1016.55, -70.12], [-1014.67, -70.2], [-996.04, -71.23], [-995.46, -60.41], [-994.26, -37.96]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 1078, "jobs": 0}}, {"shape": {"outer": [[-774.46, 31.36], [-766.71, 22.86], [-759.55, 29.34], [-762.15, 32.18], [-761.79, 32.51], [-766.94, 38.17], [-774.46, 31.36]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-782.19, 37.89], [-775.27, 30.66], [-775.12, 30.8], [-771.35, 26.87], [-771.5, 26.73], [-768.83, 23.94], [-774.77, 18.29], [-788.13, 32.23], [-782.19, 37.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-744.5, 52.5], [-738.13, 45.36], [-752.65, 32.5], [-753.85, 33.84], [-756.24, 31.72], [-760.1, 36.04], [-757.55, 38.31], [-758.87, 39.78], [-744.5, 52.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-780.59, -24.95], [-757.42, -50.14], [-749.53, -42.94], [-750.01, -42.41], [-745.05, -37.89], [-748.57, -34.05], [-747.94, -33.48], [-763.96, -16.06], [-769.53, -21.14], [-772.67, -17.71], [-780.59, -24.95]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.325, "pop": 0, "jobs": 325}}, {"shape": {"outer": [[-787.58, -30.88], [-774.97, -44.66], [-768.73, -38.98], [-781.33, -25.21], [-787.58, -30.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-714.19, -35.58], [-703.81, -46.69], [-697.58, -40.91], [-700.1, -38.21], [-679.07, -18.7], [-681.92, -15.65], [-679.5, -13.41], [-683.85, -8.77], [-686.26, -11.0], [-686.93, -10.28], [-714.19, -35.58]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.84, "pop": 420, "jobs": 0}}, {"shape": {"outer": [[-707.42, -7.69], [-701.02, -1.64], [-701.69, -0.94], [-698.92, 1.69], [-698.88, 3.17], [-700.69, 5.06], [-701.99, 5.18], [-705.19, 8.54], [-708.03, 5.85], [-708.66, 6.51], [-716.63, -1.04], [-713.67, -4.15], [-712.16, -2.72], [-707.42, -7.69]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-726.04, 16.28], [-727.64, 18.01], [-723.41, 21.85], [-723.17, 23.64], [-721.37, 25.27], [-719.13, 25.13], [-709.82, 14.97], [-717.51, 7.99], [-722.08, 12.99], [-725.9, 9.53], [-729.33, 13.28], [-726.04, 16.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-747.55, 2.08], [-735.42, -11.13], [-729.0, -5.28], [-732.39, -1.59], [-731.28, -0.57], [-727.45, -4.74], [-720.96, 1.17], [-733.73, 15.06], [-739.61, 9.7], [-739.12, 9.16], [-740.79, 7.64], [-741.08, 7.96], [-747.55, 2.08]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.356, "pop": 178, "jobs": 0}}, {"shape": {"outer": [[-709.13, -13.46], [-705.14, -17.65], [-699.24, -12.06], [-698.32, -13.03], [-691.48, -6.57], [-696.76, -1.04], [-699.79, -3.91], [-700.53, -3.15], [-704.28, -6.69], [-703.19, -7.84], [-709.13, -13.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-680.19, 47.86], [-688.22, 56.33], [-689.35, 55.29], [-692.17, 58.26], [-700.39, 50.52], [-699.39, 49.46], [-701.59, 47.38], [-691.51, 36.74], [-688.61, 39.48], [-690.88, 41.87], [-687.44, 45.11], [-685.4, 42.95], [-680.19, 47.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-743.33, 97.6], [-737.75, 102.72], [-730.65, 109.25], [-705.36, 81.93], [-718.44, 69.91], [-721.41, 73.12], [-720.46, 73.99], [-723.45, 77.23], [-724.01, 76.73], [-727.31, 80.28], [-729.14, 78.61], [-741.35, 91.79], [-739.51, 93.48], [-743.33, 97.6]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 1198, "jobs": 0}}, {"shape": {"outer": [[-608.45, 177.98], [-601.08, 170.14], [-597.7, 173.3], [-597.38, 172.97], [-594.13, 176.01], [-594.4, 176.3], [-590.84, 179.63], [-591.24, 180.06], [-589.31, 181.88], [-596.33, 189.32], [-608.45, 177.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-767.56, 115.87], [-756.05, 102.89], [-753.73, 104.94], [-752.52, 103.58], [-742.0, 112.84], [-739.17, 109.64], [-731.11, 116.74], [-740.52, 127.35], [-742.18, 125.88], [-747.76, 132.17], [-750.33, 129.91], [-751.82, 131.59], [-766.55, 118.62], [-765.62, 117.58], [-767.56, 115.87]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.81, "pop": 405, "jobs": 0}}, {"shape": {"outer": [[-729.16, 149.86], [-715.21, 134.13], [-708.56, 139.99], [-714.64, 146.84], [-714.47, 146.99], [-717.56, 150.47], [-717.73, 150.32], [-722.52, 155.72], [-729.16, 149.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-693.02, 185.69], [-688.62, 189.54], [-690.5, 191.68], [-683.01, 198.21], [-674.41, 188.43], [-676.38, 186.7], [-672.37, 182.14], [-681.87, 173.86], [-685.99, 178.53], [-686.4, 178.17], [-693.02, 185.69]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[-664.39, 151.08], [-650.94, 136.75], [-644.65, 142.6], [-658.2, 157.05], [-662.86, 152.72], [-664.39, 151.08]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-708.65, 172.62], [-697.39, 160.87], [-689.63, 168.25], [-702.07, 181.24], [-705.86, 177.63], [-704.67, 176.4], [-708.65, 172.62]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-601.8, 140.5], [-600.19, 138.77], [-588.64, 126.42], [-578.52, 135.8], [-591.69, 149.88], [-601.8, 140.5]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[-748.88, 136.83], [-742.2, 142.87], [-738.67, 138.99], [-738.53, 139.12], [-727.27, 126.75], [-734.1, 120.59], [-748.88, 136.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-724.27, 162.55], [-707.42, 143.91], [-701.99, 148.79], [-704.51, 151.58], [-700.36, 155.3], [-712.45, 168.67], [-716.04, 165.45], [-718.28, 167.93], [-724.27, 162.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[-677.25, 139.89], [-669.54, 147.0], [-667.12, 146.88], [-665.59, 146.03], [-651.91, 131.27], [-661.15, 122.76], [-666.74, 128.79], [-665.86, 129.6], [-666.58, 130.37], [-665.51, 131.36], [-670.96, 137.22], [-673.02, 135.33], [-677.25, 139.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-740.5, 144.32], [-734.78, 138.19], [-734.57, 138.38], [-732.01, 135.64], [-731.36, 136.25], [-727.54, 132.15], [-726.91, 132.73], [-724.5, 130.15], [-718.72, 135.51], [-733.23, 151.06], [-740.5, 144.32]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-618.47, 189.87], [-617.05, 188.27], [-621.35, 184.46], [-616.99, 179.58], [-616.21, 180.29], [-613.75, 177.54], [-599.1, 190.51], [-603.61, 195.58], [-604.84, 194.49], [-609.04, 199.2], [-610.3, 198.07], [-612.26, 200.27], [-619.1, 194.2], [-616.66, 191.46], [-618.47, 189.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-708.29, 117.69], [-700.49, 109.39], [-701.57, 108.39], [-692.11, 98.31], [-683.16, 106.65], [-700.41, 125.03], [-708.29, 117.69]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.306, "pop": 153, "jobs": 0}}, {"shape": {"outer": [[-686.47, 123.39], [-681.32, 117.67], [-674.16, 109.69], [-666.91, 116.17], [-674.53, 124.65], [-672.67, 126.31], [-676.63, 130.72], [-677.76, 129.71], [-681.25, 133.6], [-684.14, 131.03], [-681.37, 127.95], [-686.47, 123.39]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[-636.18, 203.1], [-630.93, 197.31], [-630.59, 197.63], [-626.31, 192.9], [-618.26, 200.14], [-619.18, 201.16], [-615.69, 204.3], [-619.14, 208.11], [-617.26, 209.8], [-622.52, 215.62], [-627.9, 210.78], [-628.69, 211.64], [-632.57, 208.15], [-631.67, 207.16], [-636.18, 203.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[-616.94, 157.98], [-613.35, 161.3], [-612.85, 160.76], [-607.18, 165.99], [-619.48, 179.24], [-623.22, 175.79], [-625.29, 178.02], [-629.2, 174.42], [-627.63, 172.73], [-629.26, 171.23], [-616.94, 157.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-637.85, 151.93], [-625.75, 163.02], [-635.24, 173.29], [-633.54, 174.85], [-640.73, 182.63], [-647.85, 176.11], [-646.44, 174.58], [-647.3, 173.8], [-644.88, 171.24], [-647.93, 168.41], [-646.73, 167.11], [-647.68, 166.24], [-645.52, 163.9], [-647.35, 162.21], [-637.85, 151.93]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-674.6, 202.2], [-659.8, 186.32], [-657.13, 188.79], [-654.51, 185.98], [-652.28, 188.05], [-654.89, 190.86], [-651.44, 194.04], [-665.87, 209.52], [-670.54, 205.2], [-670.92, 205.61], [-674.6, 202.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-646.87, 198.12], [-641.09, 203.39], [-643.43, 205.94], [-641.92, 207.32], [-643.3, 208.82], [-637.2, 214.37], [-635.9, 212.95], [-628.3, 219.86], [-629.62, 221.29], [-629.43, 221.48], [-642.45, 235.66], [-652.96, 226.08], [-650.27, 223.16], [-652.27, 221.34], [-650.0, 218.87], [-658.16, 211.45], [-650.53, 203.13], [-650.12, 203.51], [-648.19, 201.38], [-649.1, 200.55], [-646.87, 198.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-407.95, 415.25], [-407.51, 414.77], [-409.85, 412.65], [-405.14, 407.5], [-402.81, 409.63], [-400.78, 407.42], [-388.27, 418.79], [-395.44, 426.62], [-407.95, 415.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-480.84, 8.34], [-477.81, 11.07], [-477.82, 13.47], [-469.99, 20.52], [-479.84, 31.39], [-480.11, 31.14], [-480.68, 31.78], [-485.04, 27.86], [-484.47, 27.23], [-485.17, 26.6], [-483.35, 24.6], [-487.68, 20.72], [-485.4, 18.2], [-487.81, 16.04], [-480.84, 8.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-538.13, 5.2], [-536.59, 6.55], [-540.99, 11.51], [-544.92, 8.03], [-545.25, 8.41], [-548.74, 8.2], [-552.11, 5.23], [-552.59, 1.72], [-552.37, 1.47], [-554.65, -0.54], [-551.26, -4.34], [-552.08, -5.07], [-548.87, -8.67], [-550.5, -10.1], [-544.01, -17.39], [-542.03, -15.64], [-528.53, -30.84], [-524.06, -26.89], [-522.87, -28.24], [-518.62, -24.49], [-519.55, -23.43], [-515.71, -20.04], [-538.13, 5.2]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.474, "pop": 0, "jobs": 474}}, {"shape": {"outer": [[-488.65, 41.09], [-483.76, 35.86], [-482.82, 36.73], [-480.88, 34.66], [-466.82, 47.72], [-473.65, 55.02], [-488.65, 41.09]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-531.08, 10.2], [-519.98, -1.58], [-523.26, -4.63], [-518.71, -9.46], [-515.12, -6.1], [-510.06, -11.47], [-509.65, -11.08], [-507.91, -12.93], [-504.41, -9.66], [-506.15, -7.81], [-502.6, -4.49], [-506.57, -0.27], [-505.18, 1.03], [-509.84, 5.98], [-511.14, 4.75], [-515.97, 9.88], [-518.28, 7.72], [-525.51, 15.41], [-531.08, 10.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-510.73, 221.07], [-507.88, 217.84], [-508.27, 217.49], [-504.71, 213.44], [-504.15, 213.94], [-500.82, 210.15], [-494.5, 215.68], [-504.25, 226.75], [-510.73, 221.07]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-553.0, 42.94], [-543.62, 33.18], [-537.55, 38.98], [-546.94, 48.74], [-547.13, 48.55], [-548.65, 50.13], [-554.16, 44.88], [-552.63, 43.29], [-553.0, 42.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-517.97, 19.81], [-496.18, -3.6], [-483.7, 7.92], [-505.49, 31.35], [-517.97, 19.81]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.762, "pop": 381, "jobs": 0}}, {"shape": {"outer": [[-498.16, 44.41], [-495.38, 41.34], [-494.1, 42.49], [-491.92, 40.08], [-484.03, 47.17], [-483.86, 46.99], [-479.09, 51.28], [-479.52, 51.75], [-476.21, 54.73], [-481.66, 60.74], [-489.58, 53.61], [-487.99, 51.86], [-494.41, 46.09], [-495.25, 47.02], [-498.16, 44.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-546.11, 49.7], [-537.1, 39.71], [-530.18, 45.89], [-539.23, 55.93], [-539.97, 55.26], [-541.15, 56.58], [-546.99, 51.35], [-545.78, 49.99], [-546.11, 49.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-561.74, 36.42], [-551.34, 25.61], [-545.17, 31.5], [-555.56, 42.32], [-561.74, 36.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-474.59, 34.15], [-465.23, 42.9], [-459.83, 37.15], [-458.74, 36.89], [-457.88, 36.15], [-457.46, 35.11], [-457.61, 33.91], [-458.33, 32.93], [-459.44, 32.44], [-466.65, 25.71], [-469.89, 29.15], [-471.38, 27.77], [-474.26, 30.84], [-472.78, 32.23], [-474.59, 34.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-535.27, 169.23], [-534.57, 168.49], [-536.18, 166.97], [-525.25, 155.4], [-520.46, 159.89], [-522.08, 161.6], [-516.78, 166.56], [-519.94, 169.92], [-514.47, 175.05], [-515.19, 175.82], [-512.6, 178.25], [-513.43, 179.13], [-511.73, 180.71], [-516.34, 185.62], [-521.3, 180.98], [-521.88, 181.6], [-527.21, 176.61], [-527.79, 177.21], [-529.91, 175.23], [-529.42, 174.71], [-535.27, 169.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-622.28, 45.07], [-620.12, 47.02], [-619.28, 46.1], [-617.02, 48.15], [-618.34, 49.6], [-614.05, 53.49], [-603.21, 41.6], [-611.93, 33.72], [-622.28, 45.07]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-530.93, 203.23], [-537.1, 197.85], [-536.33, 196.98], [-536.59, 196.76], [-527.84, 186.8], [-521.39, 192.43], [-524.49, 195.96], [-522.46, 197.73], [-525.81, 201.54], [-527.86, 199.74], [-530.93, 203.23]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-509.82, 173.73], [-500.75, 163.61], [-493.89, 169.71], [-493.51, 170.05], [-500.74, 178.12], [-499.53, 179.2], [-503.19, 183.28], [-510.02, 177.19], [-508.2, 175.17], [-509.82, 173.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-526.97, 204.75], [-522.35, 199.66], [-522.93, 199.14], [-519.14, 194.97], [-514.58, 199.09], [-513.51, 197.9], [-509.88, 201.16], [-519.37, 211.6], [-526.97, 204.75]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-514.82, 140.76], [-507.99, 133.07], [-506.71, 131.64], [-506.09, 132.18], [-503.79, 129.58], [-500.67, 132.32], [-499.82, 131.37], [-498.8, 132.27], [-497.28, 132.18], [-495.67, 133.56], [-495.72, 134.96], [-491.64, 138.57], [-493.02, 140.11], [-488.86, 143.77], [-486.67, 145.71], [-490.29, 149.8], [-489.24, 150.72], [-492.88, 154.81], [-493.84, 153.97], [-498.9, 149.5], [-500.08, 150.82], [-502.48, 148.71], [-505.34, 149.11], [-514.82, 140.76]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.203, "pop": 0, "jobs": 203}}, {"shape": {"outer": [[-488.17, 198.02], [-477.93, 207.38], [-471.71, 200.61], [-466.33, 205.53], [-463.89, 202.89], [-462.91, 203.79], [-459.71, 200.34], [-456.79, 197.16], [-451.96, 201.58], [-447.63, 205.55], [-446.7, 205.7], [-445.88, 205.32], [-436.25, 194.34], [-434.26, 196.06], [-432.36, 193.9], [-432.22, 193.16], [-432.33, 192.48], [-432.64, 191.86], [-433.29, 191.26], [-432.51, 190.44], [-448.73, 175.29], [-449.34, 175.03], [-450.06, 175.02], [-450.68, 175.31], [-460.38, 166.39], [-464.86, 171.22], [-464.96, 171.55], [-464.32, 172.14], [-475.76, 184.53], [-476.19, 184.33], [-476.8, 184.45], [-477.31, 184.81], [-478.08, 185.66], [-479.1, 186.79], [-478.37, 187.41], [-479.42, 188.53], [-488.17, 198.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.944, "pop": 472, "jobs": 0}}, {"shape": {"outer": [[-554.13, 183.24], [-550.95, 179.75], [-551.95, 178.86], [-547.09, 173.49], [-544.07, 173.47], [-542.17, 175.18], [-542.18, 176.54], [-536.69, 181.48], [-540.2, 185.35], [-541.6, 184.1], [-546.79, 189.83], [-554.13, 183.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-612.06, 55.83], [-608.5, 52.0], [-608.94, 51.61], [-606.84, 49.35], [-607.33, 48.89], [-603.85, 45.15], [-603.36, 45.61], [-600.66, 42.71], [-596.71, 46.37], [-597.76, 47.5], [-593.76, 51.2], [-593.56, 53.5], [-599.6, 59.98], [-601.51, 58.21], [-605.19, 62.17], [-612.06, 55.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-519.51, 213.0], [-506.94, 199.58], [-504.9, 201.49], [-504.19, 200.72], [-499.47, 205.12], [-512.74, 219.3], [-519.51, 213.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-591.64, 78.43], [-586.32, 72.82], [-587.9, 71.33], [-584.09, 67.31], [-582.53, 68.79], [-576.17, 62.08], [-567.59, 70.13], [-569.44, 72.09], [-568.75, 72.73], [-582.38, 87.14], [-591.64, 78.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.236, "pop": 118, "jobs": 0}}, {"shape": {"outer": [[-434.26, 260.22], [-426.79, 252.23], [-408.41, 269.26], [-415.89, 277.27], [-434.26, 260.22]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[-540.23, 99.79], [-535.19, 94.15], [-522.89, 105.06], [-527.93, 110.69], [-540.23, 99.79]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-575.37, 133.58], [-566.37, 124.05], [-552.4, 137.16], [-552.69, 137.45], [-550.53, 139.47], [-558.03, 147.41], [-560.03, 145.53], [-561.26, 146.82], [-575.37, 133.58]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-560.38, 122.16], [-555.09, 116.64], [-541.42, 129.67], [-546.61, 135.08], [-548.39, 133.38], [-548.84, 133.86], [-558.24, 124.9], [-557.89, 124.53], [-560.38, 122.16]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-549.13, 105.41], [-544.85, 100.94], [-539.67, 105.87], [-538.73, 104.89], [-535.45, 108.01], [-534.86, 107.38], [-532.83, 109.31], [-533.33, 109.84], [-529.93, 113.07], [-532.54, 115.79], [-531.63, 116.67], [-533.56, 118.68], [-534.47, 117.81], [-535.26, 118.62], [-549.13, 105.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-449.42, 274.73], [-439.01, 263.6], [-422.2, 279.2], [-432.62, 290.34], [-449.42, 274.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[-612.71, 116.2], [-601.23, 103.94], [-591.35, 113.11], [-606.39, 129.18], [-613.31, 122.75], [-616.17, 125.8], [-619.29, 122.9], [-618.3, 121.83], [-620.41, 119.88], [-614.98, 114.08], [-612.71, 116.2]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 533, "jobs": 0}}, {"shape": {"outer": [[-655.26, 83.03], [-642.28, 69.83], [-636.44, 75.53], [-649.6, 88.91], [-652.08, 86.48], [-652.99, 87.41], [-654.91, 85.54], [-653.82, 84.43], [-655.26, 83.03]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-640.76, 99.15], [-630.2, 87.46], [-636.65, 81.67], [-647.21, 93.37], [-640.76, 99.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-428.4, 290.99], [-419.39, 281.52], [-410.32, 290.08], [-419.33, 299.56], [-428.4, 290.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-555.17, 113.02], [-550.91, 108.65], [-548.32, 111.14], [-547.28, 110.08], [-545.14, 112.16], [-544.35, 111.35], [-541.33, 114.27], [-541.95, 114.91], [-536.47, 120.22], [-541.94, 125.83], [-555.17, 113.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-640.63, 101.15], [-639.5, 99.91], [-639.75, 99.68], [-633.51, 92.96], [-633.97, 92.54], [-626.62, 84.62], [-623.51, 87.49], [-621.68, 85.52], [-617.09, 89.74], [-618.92, 91.7], [-618.49, 92.1], [-633.2, 107.98], [-640.63, 101.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-664.41, 75.84], [-658.46, 81.28], [-657.41, 80.14], [-656.74, 80.76], [-646.13, 69.23], [-652.89, 63.06], [-663.5, 74.59], [-663.37, 74.71], [-664.41, 75.84]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-575.36, 87.38], [-568.47, 79.86], [-565.03, 82.99], [-561.9, 79.56], [-555.91, 85.02], [-561.63, 91.26], [-558.92, 93.73], [-563.23, 98.43], [-575.36, 87.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-632.69, -217.01], [-604.88, -192.0], [-582.73, -216.45], [-610.54, -241.46], [-632.69, -217.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.79, "pop": 0, "jobs": 790}}, {"shape": {"outer": [[-545.33, -190.97], [-531.01, -178.05], [-585.58, -117.99], [-596.9, -128.19], [-582.47, -144.08], [-585.97, -147.23], [-555.73, -180.53], [-555.23, -180.08], [-545.33, -190.97]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1267}}, {"shape": {"outer": [[-697.97, -224.4], [-693.3, -229.54], [-690.6, -227.1], [-689.7, -228.1], [-683.92, -222.88], [-684.82, -221.89], [-679.74, -217.28], [-678.74, -218.38], [-672.88, -213.09], [-673.88, -211.99], [-671.07, -209.46], [-675.68, -204.41], [-678.64, -207.09], [-681.04, -204.45], [-686.9, -209.74], [-684.5, -212.38], [-689.7, -217.08], [-692.2, -214.33], [-697.79, -219.37], [-695.36, -222.05], [-697.97, -224.4]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.298, "pop": 149, "jobs": 0}}, {"shape": {"outer": [[-495.15, -96.74], [-490.18, -96.94], [-485.21, -97.14], [-484.02, -78.81], [-483.77, -75.52], [-455.76, -50.79], [-480.5, -23.79], [-510.93, -50.75], [-494.0, -69.72], [-494.22, -74.88], [-495.15, -96.74]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.965, "pop": 0, "jobs": 965}}, {"shape": {"outer": [[-1058.89, -380.23], [-1004.36, -382.88], [-1003.62, -367.65], [-1042.05, -365.78], [-1041.52, -354.88], [-1040.83, -340.82], [-1056.93, -340.04], [-1058.89, -380.23]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1729, "jobs": 0}}, {"shape": {"outer": [[-758.9, -496.51], [-749.85, -506.06], [-744.14, -500.69], [-746.8, -497.9], [-746.33, -497.46], [-749.81, -493.8], [-750.27, -494.23], [-753.2, -491.13], [-758.9, -496.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-725.77, -321.47], [-710.92, -337.63], [-709.11, -337.74], [-707.35, -336.14], [-707.36, -334.52], [-707.25, -334.42], [-705.73, -334.51], [-703.95, -332.9], [-703.91, -331.23], [-703.78, -331.11], [-702.01, -331.21], [-700.36, -329.71], [-700.29, -328.02], [-700.2, -327.95], [-698.53, -328.04], [-696.81, -326.47], [-696.78, -324.86], [-696.51, -324.62], [-695.06, -324.65], [-693.36, -323.11], [-693.25, -321.55], [-693.06, -321.38], [-691.53, -321.42], [-689.79, -319.83], [-689.75, -316.31], [-691.24, -314.68], [-692.66, -314.67], [-694.19, -313.01], [-688.15, -307.51], [-688.2, -305.56], [-689.3, -304.35], [-691.09, -304.27], [-695.38, -299.59], [-695.21, -298.02], [-696.47, -296.64], [-698.48, -296.6], [-725.77, -321.47]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 556, "jobs": 0}}, {"shape": {"outer": [[-950.62, -326.77], [-950.79, -331.42], [-952.14, -331.37], [-952.29, -335.35], [-948.1, -335.5], [-948.15, -336.69], [-937.98, -337.08], [-937.81, -332.62], [-936.89, -331.8], [-936.77, -329.72], [-937.65, -328.79], [-937.59, -327.26], [-950.62, -326.77]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1098.39, -216.75], [-1094.69, -216.91], [-1094.72, -217.48], [-1085.61, -217.88], [-1085.59, -217.37], [-1078.89, -217.66], [-1078.52, -209.14], [-1096.38, -208.36], [-1096.52, -211.48], [-1098.15, -211.4], [-1098.39, -216.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1129.42, -217.47], [-1120.75, -217.99], [-1120.89, -220.33], [-1114.31, -220.72], [-1113.5, -207.0], [-1128.7, -206.04], [-1129.42, -217.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-1095.01, -126.44], [-1075.72, -127.36], [-1075.03, -127.39], [-1072.68, -127.5], [-1072.41, -121.71], [-1072.18, -117.0], [-1074.33, -116.89], [-1074.29, -116.07], [-1094.46, -115.12], [-1095.01, -126.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-1156.52, -113.54], [-1156.74, -117.11], [-1152.81, -117.35], [-1153.17, -123.46], [-1183.26, -121.67], [-1183.14, -119.49], [-1182.64, -111.38], [-1173.53, -111.93], [-1171.56, -110.22], [-1156.4, -111.13], [-1156.52, -113.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.207, "pop": 0, "jobs": 207}}, {"shape": {"outer": [[-1188.5, -208.07], [-1188.69, -211.97], [-1188.85, -215.18], [-1187.97, -215.22], [-1188.01, -216.3], [-1188.07, -217.31], [-1189.01, -217.26], [-1189.21, -221.24], [-1190.26, -243.19], [-1187.56, -243.32], [-1184.81, -243.45], [-1184.76, -242.53], [-1183.36, -242.59], [-1182.13, -242.65], [-1182.17, -243.57], [-1176.83, -243.83], [-1176.79, -242.9], [-1174.34, -243.02], [-1173.08, -215.62], [-1172.78, -209.46], [-1174.17, -209.4], [-1174.13, -208.75], [-1188.5, -208.07]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.77, "pop": 385, "jobs": 0}}, {"shape": {"outer": [[-996.61, -215.44], [-991.3, -221.44], [-990.14, -221.16], [-988.12, -223.44], [-983.3, -228.89], [-975.0, -221.58], [-982.04, -213.55], [-981.64, -212.33], [-986.68, -206.68], [-996.61, -215.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-1149.39, -110.11], [-1149.5, -112.9], [-1149.86, -112.88], [-1150.13, -119.48], [-1146.02, -119.64], [-1146.14, -122.36], [-1141.11, -122.56], [-1141.12, -122.92], [-1135.21, -123.17], [-1134.97, -118.39], [-1133.79, -118.45], [-1133.75, -117.59], [-1133.36, -109.56], [-1133.73, -109.55], [-1140.62, -109.28], [-1140.66, -110.19], [-1144.63, -110.04], [-1144.65, -110.3], [-1149.39, -110.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-1156.52, -113.54], [-1153.05, -113.71], [-1152.67, -105.86], [-1143.92, -106.28], [-1143.97, -107.49], [-1142.46, -107.56], [-1142.4, -106.37], [-1133.6, -106.78], [-1130.04, -106.95], [-1129.96, -105.25], [-1129.86, -103.61], [-1129.64, -99.01], [-1129.12, -88.16], [-1128.94, -84.15], [-1133.75, -83.93], [-1155.04, -82.92], [-1155.95, -102.4], [-1156.19, -106.76], [-1156.4, -111.13], [-1156.52, -113.54]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.656, "pop": 328, "jobs": 0}}, {"shape": {"outer": [[-1162.18, -216.12], [-1163.49, -244.75], [-1160.32, -244.62], [-1159.35, -244.35], [-1156.14, -241.56], [-1152.62, -238.51], [-1151.52, -238.21], [-1150.55, -238.45], [-1149.27, -239.58], [-1143.74, -245.07], [-1137.31, -245.37], [-1135.3, -205.58], [-1161.27, -204.18], [-1166.56, -208.97], [-1162.1, -212.65], [-1162.18, -216.12]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.568, "pop": 0, "jobs": 568}}, {"shape": {"outer": [[-1181.11, -81.67], [-1179.95, -81.73], [-1173.18, -82.06], [-1167.08, -82.34], [-1165.27, -82.43], [-1166.43, -106.26], [-1174.33, -105.86], [-1182.26, -105.48], [-1181.11, -81.67]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.396, "pop": 198, "jobs": 0}}, {"shape": {"outer": [[-1123.98, -108.86], [-1119.91, -109.06], [-1115.3, -109.3], [-1110.8, -109.53], [-1110.27, -98.39], [-1110.51, -98.39], [-1110.13, -90.34], [-1109.88, -85.1], [-1113.4, -84.92], [-1114.08, -84.89], [-1118.17, -84.68], [-1118.69, -84.66], [-1119.32, -84.63], [-1122.76, -84.45], [-1123.98, -108.86]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.334, "pop": 167, "jobs": 0}}, {"shape": {"outer": [[-942.7, -205.21], [-936.57, -199.63], [-935.84, -200.43], [-936.92, -201.41], [-933.55, -205.08], [-930.15, -201.99], [-933.51, -198.33], [-934.5, -199.22], [-935.26, -198.4], [-929.11, -192.8], [-948.51, -171.65], [-962.09, -184.02], [-955.96, -190.71], [-954.65, -189.51], [-946.95, -197.91], [-948.28, -199.13], [-946.38, -201.21], [-942.7, -205.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.426, "pop": 213, "jobs": 0}}, {"shape": {"outer": [[-885.66, -118.93], [-866.74, -140.18], [-856.12, -130.79], [-854.7, -132.39], [-852.41, -130.35], [-850.8, -132.17], [-848.06, -129.74], [-870.26, -104.91], [-873.6, -104.84], [-890.3, -119.5], [-888.54, -121.49], [-885.66, -118.93]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.38, "pop": 0, "jobs": 380}}, {"shape": {"outer": [[-920.14, -147.36], [-900.73, -168.6], [-885.6, -154.87], [-905.0, -133.63], [-910.79, -138.89], [-911.16, -138.49], [-914.61, -141.62], [-914.25, -142.02], [-920.14, -147.36]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 723, "jobs": 0}}, {"shape": {"outer": [[-929.87, -158.31], [-926.71, -161.77], [-927.23, -162.23], [-920.6, -169.5], [-914.01, -163.55], [-923.76, -152.79], [-929.87, -158.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-900.3, -128.51], [-882.47, -148.17], [-876.82, -143.07], [-894.51, -123.23], [-900.3, -128.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1017.73, -234.37], [-1001.37, -252.91], [-996.26, -253.19], [-995.39, -252.43], [-992.66, -250.04], [-991.89, -249.38], [-989.83, -251.71], [-985.58, -247.99], [-1006.38, -224.42], [-1012.16, -229.48], [-1017.73, -234.37]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.368, "pop": 0, "jobs": 368}}, {"shape": {"outer": [[-1048.28, -199.27], [-1032.38, -217.04], [-1030.7, -218.92], [-1024.63, -213.53], [-1037.05, -199.65], [-1042.21, -193.88], [-1048.28, -199.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-1005.47, -223.07], [-984.41, -246.53], [-978.64, -241.38], [-986.95, -232.11], [-991.82, -226.69], [-999.69, -217.92], [-1000.92, -219.02], [-1005.47, -223.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.156, "pop": 0, "jobs": 156}}, {"shape": {"outer": [[-865.91, -152.8], [-847.63, -172.81], [-834.89, -161.25], [-836.14, -159.88], [-830.69, -154.95], [-838.38, -146.53], [-835.28, -143.71], [-844.62, -133.49], [-865.91, -152.8]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.596, "pop": 0, "jobs": 596}}, {"shape": {"outer": [[-1023.64, -211.69], [-1021.74, -211.39], [-1019.47, -209.44], [-1019.41, -208.29], [-1017.44, -206.16], [-1016.4, -206.05], [-1014.22, -203.97], [-1014.1, -202.42], [-1025.73, -189.55], [-1027.09, -190.68], [-1035.62, -198.37], [-1023.64, -211.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[-973.36, -133.47], [-956.72, -152.06], [-951.83, -147.72], [-965.57, -132.37], [-972.03, -132.28], [-973.36, -133.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[-908.62, -192.68], [-885.38, -218.82], [-874.11, -208.87], [-884.18, -197.54], [-873.59, -188.18], [-863.63, -199.38], [-852.08, -189.18], [-875.19, -163.18], [-908.62, -192.68]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1409, "jobs": 0}}, {"shape": {"outer": [[-1035.41, -168.86], [-1035.7, -175.06], [-1035.85, -178.34], [-1025.73, -189.55], [-1014.1, -202.42], [-994.88, -185.17], [-1021.16, -156.09], [-1032.17, -165.96], [-1035.41, -168.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.633, "pop": 0, "jobs": 633}}, {"shape": {"outer": [[-828.23, -206.43], [-827.8, -206.94], [-826.45, -205.8], [-824.82, -207.7], [-824.41, -207.36], [-817.41, -215.57], [-807.79, -226.84], [-821.96, -238.85], [-823.41, -237.16], [-827.2, -240.39], [-825.79, -242.04], [-839.4, -253.58], [-842.46, -249.99], [-855.95, -234.18], [-855.46, -233.77], [-857.2, -231.73], [-855.73, -230.48], [-856.05, -230.12], [-852.44, -227.06], [-844.76, -220.56], [-843.88, -219.8], [-842.66, -221.23], [-840.88, -219.71], [-839.04, -218.15], [-840.31, -216.67], [-837.07, -213.93], [-831.01, -208.79], [-828.23, -206.43]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 1832, "jobs": 0}}, {"shape": {"outer": [[-566.16, -767.8], [-560.72, -773.61], [-548.17, -761.94], [-553.62, -756.13], [-566.16, -767.8]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-523.74, -823.33], [-511.33, -836.5], [-504.97, -830.55], [-517.38, -817.38], [-523.74, -823.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-588.42, -834.75], [-580.14, -843.29], [-579.93, -843.1], [-578.64, -844.43], [-574.53, -840.49], [-576.66, -838.3], [-573.78, -835.53], [-579.2, -829.96], [-581.74, -832.41], [-583.8, -830.3], [-588.42, -834.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-549.91, -781.59], [-544.5, -787.5], [-533.94, -777.9], [-539.08, -772.29], [-542.16, -775.1], [-542.44, -774.8], [-549.91, -781.59]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-581.62, -882.43], [-576.41, -888.02], [-577.25, -888.8], [-570.35, -896.2], [-565.34, -891.56], [-568.54, -888.12], [-567.14, -886.82], [-573.18, -880.32], [-574.04, -881.12], [-576.89, -878.06], [-581.62, -882.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-580.48, -769.32], [-574.96, -764.32], [-576.83, -762.27], [-576.27, -761.75], [-587.92, -748.98], [-594.01, -754.5], [-580.48, -769.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-587.0, -819.09], [-572.62, -834.51], [-568.03, -830.26], [-573.4, -824.5], [-572.48, -823.65], [-581.49, -813.99], [-587.0, -819.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-599.59, -895.65], [-590.0, -905.77], [-589.58, -905.37], [-587.67, -907.39], [-583.8, -903.76], [-585.72, -901.75], [-584.15, -900.27], [-593.74, -890.15], [-599.59, -895.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-559.59, -775.7], [-554.3, -781.42], [-551.25, -778.61], [-550.35, -779.6], [-541.3, -771.27], [-546.78, -765.34], [-551.49, -769.66], [-551.63, -769.51], [-554.83, -772.47], [-555.4, -771.85], [-559.59, -775.7]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-586.25, -747.1], [-574.46, -759.96], [-572.62, -758.29], [-571.52, -759.49], [-567.79, -756.1], [-580.69, -742.03], [-586.25, -747.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-558.92, -862.29], [-542.34, -880.11], [-531.39, -869.99], [-547.97, -852.16], [-558.92, -862.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.29, "pop": 145, "jobs": 0}}, {"shape": {"outer": [[-535.21, -794.0], [-530.07, -799.58], [-522.21, -792.37], [-523.27, -791.21], [-521.85, -789.91], [-525.01, -786.49], [-526.57, -787.91], [-527.49, -786.92], [-529.35, -788.63], [-529.72, -788.23], [-532.42, -790.7], [-532.05, -791.1], [-535.21, -794.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-581.76, -808.91], [-564.4, -827.6], [-554.49, -818.46], [-571.84, -799.77], [-581.76, -808.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-538.89, -795.16], [-541.08, -792.76], [-540.55, -792.27], [-544.51, -787.95], [-533.82, -778.21], [-528.02, -784.53], [-530.85, -787.11], [-530.49, -787.51], [-538.89, -795.16]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-635.87, -853.77], [-625.27, -865.19], [-624.13, -864.13], [-622.47, -865.92], [-623.81, -867.15], [-617.12, -874.37], [-614.41, -871.87], [-613.34, -873.02], [-608.89, -868.91], [-610.03, -867.68], [-608.68, -866.44], [-607.55, -867.66], [-600.6, -861.26], [-601.64, -860.14], [-599.47, -858.14], [-598.37, -859.33], [-591.7, -853.19], [-592.79, -852.01], [-591.36, -850.69], [-590.25, -851.89], [-585.94, -847.93], [-587.0, -846.77], [-584.25, -844.23], [-590.83, -837.14], [-591.92, -838.14], [-593.58, -836.35], [-592.44, -835.29], [-603.07, -823.84], [-605.65, -826.21], [-606.69, -825.08], [-614.29, -832.08], [-607.89, -838.97], [-610.61, -841.48], [-608.46, -843.8], [-609.33, -844.6], [-611.53, -842.23], [-615.54, -845.91], [-614.39, -847.16], [-616.45, -849.05], [-617.61, -847.79], [-620.25, -850.23], [-626.7, -843.26], [-634.23, -850.19], [-633.19, -851.31], [-635.87, -853.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.934, "pop": 467, "jobs": 0}}, {"shape": {"outer": [[-648.45, -900.95], [-657.87, -890.7], [-656.7, -889.63], [-659.48, -886.61], [-655.17, -882.67], [-651.32, -886.87], [-650.65, -886.27], [-647.79, -889.39], [-648.08, -889.66], [-645.4, -892.57], [-645.85, -892.99], [-643.05, -896.02], [-643.83, -896.74], [-642.05, -898.69], [-644.56, -900.98], [-646.35, -899.04], [-648.45, -900.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-430.1, -913.02], [-424.6, -918.83], [-415.52, -910.31], [-415.75, -910.07], [-413.55, -908.01], [-418.43, -902.86], [-420.62, -904.92], [-421.02, -904.5], [-430.1, -913.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-556.15, -803.63], [-553.54, -806.48], [-554.87, -807.69], [-549.04, -814.03], [-548.63, -813.66], [-547.66, -814.72], [-543.25, -810.71], [-544.22, -809.65], [-543.91, -809.37], [-549.81, -802.94], [-549.93, -803.06], [-552.48, -800.29], [-556.15, -803.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-656.52, -878.16], [-649.42, -885.68], [-649.1, -885.37], [-640.43, -894.57], [-634.74, -889.25], [-650.5, -872.53], [-656.52, -878.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-647.72, -870.54], [-631.29, -888.61], [-620.31, -878.69], [-636.75, -860.63], [-647.72, -870.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.29, "pop": 145, "jobs": 0}}, {"shape": {"outer": [[-484.35, -854.15], [-466.82, -873.39], [-456.24, -863.82], [-473.77, -844.59], [-484.35, -854.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.298, "pop": 149, "jobs": 0}}, {"shape": {"outer": [[-553.46, -796.82], [-544.99, -806.11], [-544.57, -805.73], [-541.64, -808.95], [-535.95, -803.79], [-547.36, -791.3], [-553.46, -796.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-579.07, -739.33], [-577.69, -740.86], [-577.89, -741.02], [-565.63, -754.61], [-564.62, -753.7], [-563.7, -754.73], [-559.03, -750.54], [-559.4, -750.13], [-557.92, -748.8], [-570.74, -734.61], [-572.88, -736.54], [-574.25, -735.02], [-579.07, -739.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-512.49, -815.6], [-501.49, -827.54], [-492.75, -819.54], [-503.75, -807.61], [-512.49, -815.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-535.66, -842.2], [-519.44, -859.77], [-507.26, -848.6], [-523.47, -831.03], [-528.33, -835.5], [-528.82, -834.96], [-533.34, -839.11], [-532.85, -839.63], [-535.66, -842.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.32, "pop": 160, "jobs": 0}}, {"shape": {"outer": [[-572.53, -876.25], [-555.53, -894.65], [-545.85, -885.78], [-562.86, -867.38], [-572.53, -876.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-668.08, -896.81], [-663.76, -901.45], [-664.15, -901.81], [-659.76, -906.53], [-659.36, -906.16], [-656.63, -909.1], [-656.2, -908.71], [-654.87, -910.14], [-649.36, -905.03], [-650.68, -903.6], [-650.41, -903.34], [-661.87, -891.05], [-668.08, -896.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-545.03, -849.3], [-538.89, -855.95], [-538.69, -855.76], [-536.86, -857.74], [-532.79, -854.01], [-534.6, -852.06], [-532.75, -850.35], [-538.93, -843.69], [-545.03, -849.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-557.89, -954.32], [-556.23, -952.77], [-553.96, -955.16], [-550.17, -951.61], [-558.08, -943.25], [-562.13, -947.05], [-560.48, -948.79], [-561.87, -950.11], [-557.89, -954.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-557.84, -910.71], [-554.13, -914.85], [-549.98, -911.16], [-553.69, -907.02], [-557.84, -910.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-588.37, -938.08], [-583.03, -944.02], [-577.17, -938.78], [-582.51, -932.85], [-588.37, -938.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-559.52, -940.99], [-548.49, -952.71], [-543.5, -948.05], [-547.78, -943.5], [-546.88, -942.66], [-550.45, -938.87], [-549.38, -937.86], [-552.55, -934.48], [-554.29, -936.1], [-556.04, -934.23], [-559.17, -937.15], [-558.4, -937.98], [-559.38, -938.9], [-558.4, -939.94], [-559.52, -940.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-487.79, -868.17], [-475.1, -882.04], [-468.58, -876.11], [-481.28, -862.26], [-487.79, -868.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-584.3, -958.55], [-573.58, -970.43], [-567.58, -965.05], [-578.31, -953.18], [-584.3, -958.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-579.63, -914.17], [-574.22, -909.66], [-569.33, -915.46], [-572.19, -917.85], [-570.7, -919.62], [-575.08, -923.28], [-580.63, -916.69], [-578.8, -915.16], [-579.63, -914.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-528.63, -894.55], [-511.64, -912.98], [-501.62, -903.82], [-518.62, -885.39], [-528.63, -894.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[-588.44, -968.26], [-577.16, -980.48], [-575.46, -978.93], [-575.72, -978.65], [-572.71, -975.89], [-574.08, -974.4], [-572.95, -973.37], [-582.6, -962.91], [-588.44, -968.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-573.56, -954.81], [-562.36, -966.47], [-557.48, -961.81], [-568.67, -950.15], [-573.56, -954.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-546.54, -921.76], [-542.96, -925.65], [-543.62, -926.24], [-539.25, -930.99], [-538.6, -930.4], [-535.71, -933.55], [-535.42, -933.3], [-533.91, -934.96], [-528.95, -930.43], [-530.47, -928.78], [-529.92, -928.27], [-536.72, -920.86], [-537.54, -921.61], [-540.34, -918.56], [-542.65, -920.66], [-543.88, -919.32], [-546.54, -921.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-695.49, -925.91], [-688.57, -933.69], [-684.93, -930.48], [-678.86, -937.31], [-667.81, -927.55], [-680.8, -912.94], [-695.49, -925.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.217, "pop": 0, "jobs": 217}}, {"shape": {"outer": [[-496.6, -842.4], [-491.17, -848.29], [-479.8, -837.89], [-485.23, -832.0], [-496.6, -842.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-564.28, -916.13], [-564.07, -916.35], [-565.95, -918.01], [-562.49, -921.92], [-560.61, -920.26], [-560.32, -920.59], [-555.23, -916.11], [-559.2, -911.65], [-564.28, -916.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-675.46, -831.82], [-654.76, -854.63], [-652.99, -853.05], [-651.36, -854.84], [-647.45, -851.33], [-648.11, -850.6], [-644.74, -847.56], [-649.1, -842.75], [-647.45, -841.27], [-646.41, -842.42], [-637.83, -834.69], [-638.97, -833.42], [-633.87, -828.83], [-632.82, -830.0], [-624.23, -822.25], [-625.24, -821.14], [-623.68, -819.74], [-619.28, -824.59], [-615.72, -821.38], [-615.27, -821.88], [-611.44, -818.43], [-613.02, -816.69], [-611.08, -814.94], [-631.75, -792.17], [-633.55, -793.8], [-635.06, -792.14], [-639.6, -796.22], [-639.12, -796.76], [-641.56, -798.96], [-637.35, -803.59], [-638.6, -804.71], [-639.45, -803.78], [-647.56, -811.08], [-646.81, -811.9], [-649.0, -813.87], [-647.73, -815.27], [-651.01, -818.22], [-652.3, -816.8], [-654.67, -818.94], [-655.42, -818.11], [-663.33, -825.24], [-662.48, -826.18], [-663.86, -827.43], [-667.94, -822.93], [-670.59, -825.32], [-671.15, -824.71], [-675.3, -828.45], [-673.68, -830.23], [-675.46, -831.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 646, "jobs": 0}}, {"shape": {"outer": [[-543.26, -940.5], [-542.93, -940.2], [-541.4, -941.88], [-537.71, -938.51], [-539.24, -936.84], [-538.96, -936.59], [-543.89, -931.23], [-543.06, -930.46], [-546.67, -926.54], [-551.8, -931.21], [-543.26, -940.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-594.11, -977.58], [-584.68, -987.45], [-578.62, -981.7], [-586.85, -973.08], [-587.11, -973.34], [-587.9, -972.52], [-590.13, -974.64], [-590.54, -974.2], [-594.11, -977.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-560.12, -929.36], [-563.82, -925.36], [-560.7, -922.49], [-556.99, -926.5], [-560.12, -929.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-504.9, -834.26], [-498.85, -840.81], [-486.17, -829.18], [-492.23, -822.63], [-504.9, -834.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-547.36, -908.65], [-535.95, -921.01], [-521.49, -907.75], [-532.9, -895.4], [-547.36, -908.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-515.7, -883.75], [-504.26, -896.21], [-483.16, -876.96], [-494.6, -864.5], [-515.7, -883.75]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.508, "pop": 254, "jobs": 0}}, {"shape": {"outer": [[-596.62, -972.12], [-594.27, -974.73], [-591.85, -972.56], [-590.18, -974.42], [-587.01, -971.58], [-591.03, -967.11], [-596.62, -972.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-602.97, -964.87], [-602.56, -965.31], [-603.51, -966.15], [-599.84, -970.25], [-598.9, -969.41], [-598.55, -969.79], [-588.89, -961.21], [-589.22, -960.85], [-587.14, -959.0], [-591.23, -954.43], [-602.97, -964.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-610.14, -958.26], [-606.46, -962.36], [-593.63, -950.91], [-593.86, -950.65], [-592.56, -949.5], [-594.96, -946.83], [-596.25, -947.99], [-597.31, -946.81], [-610.14, -958.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-505.53, -948.54], [-488.8, -966.81], [-479.43, -958.27], [-496.14, -940.01], [-505.53, -948.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[-529.91, -971.29], [-523.3, -978.46], [-516.64, -972.37], [-523.52, -964.91], [-524.16, -965.49], [-525.72, -963.79], [-530.92, -968.55], [-529.09, -970.54], [-529.91, -971.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-402.25, -930.05], [-398.89, -935.1], [-393.72, -931.69], [-397.08, -926.64], [-402.25, -930.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-452.96, -959.36], [-448.39, -964.25], [-445.18, -961.26], [-449.76, -956.37], [-452.96, -959.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-556.35, -1021.82], [-540.46, -1039.26], [-528.35, -1028.3], [-520.38, -1021.53], [-517.42, -1018.56], [-512.58, -1023.18], [-503.05, -1014.45], [-511.26, -1004.76], [-524.5, -1008.35], [-536.68, -1012.24], [-556.35, -1021.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.516, "pop": 0, "jobs": 516}}, {"shape": {"outer": [[-458.63, -826.46], [-455.19, -830.22], [-454.5, -829.59], [-452.41, -831.87], [-438.65, -819.41], [-442.91, -814.74], [-445.53, -817.1], [-446.38, -816.18], [-447.06, -816.79], [-448.18, -815.57], [-451.4, -818.49], [-451.12, -818.8], [-454.68, -822.03], [-454.51, -822.23], [-457.97, -825.35], [-457.71, -825.63], [-458.63, -826.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-448.43, -832.63], [-443.63, -837.86], [-442.71, -837.02], [-440.3, -839.64], [-437.42, -837.02], [-434.93, -839.72], [-432.06, -837.1], [-428.65, -840.8], [-426.17, -838.53], [-425.26, -839.52], [-419.43, -834.18], [-419.29, -834.34], [-418.56, -833.69], [-418.4, -833.87], [-416.68, -833.23], [-415.94, -831.63], [-416.11, -831.45], [-414.99, -830.43], [-415.14, -830.28], [-413.61, -828.89], [-413.42, -829.1], [-412.59, -828.34], [-412.45, -828.49], [-410.71, -827.91], [-409.98, -826.23], [-410.11, -826.08], [-409.31, -825.35], [-409.5, -825.13], [-402.8, -819.02], [-405.66, -815.93], [-404.39, -814.77], [-409.82, -808.87], [-410.91, -809.88], [-428.17, -791.1], [-432.38, -794.93], [-433.11, -794.13], [-439.12, -799.6], [-440.15, -798.47], [-446.41, -804.19], [-444.62, -806.13], [-444.94, -806.42], [-437.94, -814.04], [-436.24, -812.49], [-431.74, -817.4], [-448.43, -832.63]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 643, "jobs": 0}}, {"shape": {"outer": [[-484.28, -931.53], [-475.39, -941.48], [-474.03, -940.28], [-471.24, -943.39], [-466.32, -939.02], [-472.38, -932.23], [-472.1, -931.98], [-475.24, -928.47], [-475.52, -928.72], [-479.01, -924.82], [-483.45, -928.75], [-482.44, -929.89], [-484.28, -931.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-540.04, -978.75], [-533.04, -986.48], [-530.41, -984.11], [-528.29, -986.44], [-524.88, -983.37], [-527.49, -980.49], [-527.99, -980.93], [-534.48, -973.75], [-540.04, -978.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-447.37, -894.8], [-446.76, -895.46], [-448.52, -897.07], [-442.05, -904.09], [-440.29, -902.47], [-439.6, -903.22], [-427.38, -892.04], [-435.15, -883.62], [-447.37, -894.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-458.72, -928.04], [-448.84, -940.26], [-440.68, -949.62], [-432.5, -947.63], [-420.33, -936.62], [-439.71, -915.34], [-440.96, -916.48], [-442.51, -916.59], [-447.48, -916.8], [-450.3, -920.02], [-458.72, -928.04]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 892, "jobs": 0}}, {"shape": {"outer": [[-477.06, -925.25], [-474.27, -928.14], [-473.79, -927.68], [-467.5, -934.2], [-468.0, -934.68], [-461.46, -941.47], [-457.01, -937.23], [-460.34, -933.76], [-459.05, -932.68], [-463.13, -927.56], [-462.57, -927.15], [-466.1, -923.16], [-466.49, -923.56], [-469.78, -920.06], [-470.41, -920.59], [-471.26, -919.71], [-477.06, -925.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-503.6, -971.32], [-499.73, -975.2], [-497.1, -972.58], [-500.96, -968.71], [-503.6, -971.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-443.09, -953.96], [-438.85, -959.87], [-433.56, -956.11], [-437.81, -950.2], [-443.09, -953.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-490.6, -934.55], [-483.97, -942.08], [-483.17, -941.38], [-479.53, -945.52], [-475.95, -942.4], [-486.23, -930.72], [-490.6, -934.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-423.95, -924.52], [-417.39, -931.64], [-417.14, -931.4], [-416.23, -932.38], [-412.47, -928.96], [-413.38, -927.96], [-409.15, -924.11], [-407.6, -925.8], [-403.05, -921.63], [-402.89, -918.32], [-405.18, -915.84], [-405.38, -916.01], [-409.4, -911.65], [-414.62, -916.43], [-414.84, -916.19], [-423.95, -924.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-522.26, -963.93], [-515.5, -971.19], [-509.46, -965.62], [-516.21, -958.36], [-516.48, -958.59], [-518.18, -956.77], [-523.41, -961.59], [-521.7, -963.43], [-522.26, -963.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-438.38, -905.2], [-436.72, -907.03], [-437.88, -908.06], [-434.88, -911.38], [-433.73, -910.35], [-432.78, -911.4], [-421.68, -901.45], [-422.02, -901.08], [-420.87, -900.04], [-425.45, -894.95], [-426.61, -895.99], [-427.27, -895.25], [-438.38, -905.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-516.08, -954.76], [-514.29, -956.71], [-514.62, -957.01], [-507.96, -964.28], [-502.16, -959.01], [-510.59, -949.78], [-516.08, -954.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-312.27, -769.95], [-310.01, -772.43], [-310.33, -772.73], [-307.06, -776.32], [-306.74, -776.03], [-305.01, -777.95], [-305.34, -778.25], [-302.09, -781.83], [-301.75, -781.53], [-299.54, -783.97], [-289.98, -775.36], [-302.7, -761.34], [-312.27, -769.95]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-343.05, -817.21], [-333.73, -827.58], [-332.54, -826.51], [-327.77, -831.81], [-323.96, -828.42], [-329.74, -821.99], [-328.89, -821.24], [-332.96, -816.71], [-333.99, -817.62], [-338.23, -812.9], [-343.05, -817.21]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-300.62, -820.38], [-294.57, -827.11], [-287.57, -820.87], [-288.48, -819.85], [-282.8, -814.78], [-288.82, -808.08], [-290.07, -809.19], [-291.56, -807.55], [-295.1, -810.72], [-293.55, -812.43], [-295.06, -813.77], [-295.67, -813.1], [-298.64, -815.75], [-297.2, -817.34], [-300.62, -820.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-337.65, -798.41], [-327.42, -809.73], [-320.58, -803.6], [-332.47, -790.43], [-338.98, -796.26], [-337.31, -798.11], [-337.65, -798.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-294.67, -766.19], [-288.44, -773.08], [-276.33, -762.22], [-282.56, -755.33], [-294.67, -766.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-383.36, -876.65], [-379.22, -872.92], [-376.87, -875.51], [-373.84, -872.77], [-376.2, -870.18], [-372.16, -866.54], [-376.34, -861.95], [-377.49, -863.0], [-387.16, -852.39], [-386.18, -851.5], [-390.59, -846.67], [-401.41, -856.45], [-396.95, -861.34], [-395.66, -860.17], [-385.99, -870.79], [-387.47, -872.13], [-383.36, -876.65]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[-262.4, -798.52], [-252.61, -789.86], [-255.65, -786.45], [-254.83, -785.72], [-260.82, -779.0], [-265.53, -783.16], [-266.51, -782.05], [-270.15, -785.28], [-268.54, -787.1], [-269.33, -787.79], [-267.44, -789.91], [-270.51, -792.63], [-266.76, -796.85], [-265.16, -795.43], [-262.4, -798.52]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-374.11, -854.6], [-370.25, -859.14], [-367.55, -856.85], [-371.4, -852.32], [-374.11, -854.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-359.15, -834.44], [-356.01, -837.86], [-356.91, -838.68], [-354.32, -841.51], [-354.82, -841.97], [-353.13, -843.81], [-353.53, -844.17], [-349.51, -848.56], [-346.68, -845.97], [-345.24, -847.54], [-339.6, -842.43], [-348.19, -833.06], [-349.05, -833.84], [-353.35, -829.15], [-359.15, -834.44]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-351.5, -824.88], [-339.21, -838.29], [-337.72, -836.93], [-336.19, -838.6], [-332.49, -835.24], [-334.02, -833.57], [-332.65, -832.32], [-340.83, -823.38], [-341.96, -824.4], [-346.06, -819.92], [-351.5, -824.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-412.56, -798.76], [-407.79, -803.93], [-409.1, -805.13], [-401.98, -812.84], [-395.37, -806.77], [-407.26, -793.89], [-409.46, -795.91], [-410.4, -794.9], [-412.89, -797.18], [-411.95, -798.2], [-412.56, -798.76]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-252.54, -808.76], [-245.9, -815.89], [-236.21, -806.96], [-242.85, -799.81], [-252.54, -808.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-261.56, -802.59], [-259.26, -805.07], [-258.12, -804.02], [-254.02, -808.45], [-244.73, -799.92], [-251.13, -793.02], [-261.56, -802.59]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-381.32, -844.46], [-376.89, -849.46], [-375.77, -848.47], [-373.32, -851.2], [-370.61, -848.81], [-371.51, -847.79], [-364.68, -841.75], [-372.16, -833.35], [-378.77, -839.19], [-377.27, -840.88], [-381.32, -844.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-283.77, -769.59], [-274.76, -761.51], [-268.44, -768.49], [-277.44, -776.58], [-283.77, -769.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-328.82, -787.32], [-308.79, -809.03], [-297.63, -798.8], [-305.0, -790.82], [-310.84, -796.16], [-313.09, -793.72], [-309.85, -790.76], [-320.26, -779.48], [-328.82, -787.32]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.384, "pop": 192, "jobs": 0}}, {"shape": {"outer": [[-306.52, -840.19], [-301.8, -845.27], [-301.2, -844.72], [-299.25, -846.82], [-295.28, -843.16], [-295.51, -842.91], [-293.06, -840.66], [-292.83, -840.9], [-287.12, -835.65], [-293.78, -828.47], [-294.04, -828.7], [-294.86, -827.81], [-299.77, -832.32], [-301.38, -830.59], [-305.44, -834.33], [-303.0, -836.95], [-306.52, -840.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-574.68, -1075.37], [-568.75, -1070.42], [-570.34, -1068.85], [-556.33, -1056.51], [-535.56, -1079.32], [-542.17, -1084.79], [-534.96, -1088.92], [-576.97, -1151.52], [-584.19, -1144.58], [-588.26, -1148.94], [-609.14, -1126.09], [-610.79, -1124.29], [-592.27, -1108.72], [-585.26, -1116.66], [-564.82, -1085.78], [-574.68, -1075.37]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2418}}, {"shape": {"outer": [[-668.37, -1029.87], [-664.47, -1026.29], [-667.94, -1022.53], [-669.9, -1024.34], [-671.07, -1023.07], [-673.01, -1024.85], [-668.37, -1029.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-786.2, -1064.1], [-731.97, -1125.81], [-719.08, -1114.57], [-741.87, -1088.65], [-773.32, -1052.86], [-786.2, -1064.1]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.786, "pop": 0, "jobs": 786}}, {"shape": {"outer": [[-812.99, -1087.0], [-750.78, -1158.97], [-734.25, -1144.79], [-796.46, -1072.81], [-812.99, -1087.0]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1160}}, {"shape": {"outer": [[-785.21, -1148.16], [-792.55, -1154.61], [-788.22, -1159.51], [-780.88, -1153.06], [-785.21, -1148.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-799.49, -1128.98], [-797.07, -1131.61], [-794.69, -1129.42], [-791.7, -1132.64], [-789.73, -1130.83], [-795.14, -1124.98], [-799.49, -1128.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-807.49, -1141.19], [-804.48, -1144.44], [-800.59, -1140.86], [-798.31, -1143.31], [-791.79, -1137.31], [-797.07, -1131.61], [-807.49, -1141.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-817.85, -1119.2], [-810.11, -1127.48], [-801.48, -1119.99], [-808.89, -1111.72], [-817.85, -1119.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-802.84, -1125.4], [-800.51, -1127.97], [-797.0, -1124.58], [-799.35, -1122.01], [-802.84, -1125.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-833.7, -1061.04], [-831.97, -1059.51], [-836.35, -1054.58], [-829.57, -1048.6], [-830.85, -1047.15], [-824.0, -1041.12], [-822.68, -1042.62], [-817.6, -1038.14], [-816.68, -1039.19], [-814.0, -1036.83], [-828.3, -1020.73], [-827.44, -1019.96], [-829.11, -1018.08], [-830.23, -1019.08], [-839.03, -1009.17], [-841.65, -1011.49], [-840.56, -1012.72], [-846.01, -1017.52], [-844.83, -1018.86], [-850.81, -1024.12], [-852.24, -1022.51], [-859.13, -1028.58], [-863.33, -1023.86], [-865.17, -1025.5], [-870.81, -1019.16], [-869.13, -1017.67], [-872.35, -1014.05], [-867.96, -1010.17], [-869.54, -1008.38], [-860.46, -1000.36], [-858.92, -1002.08], [-853.77, -997.53], [-849.97, -1001.8], [-847.84, -999.93], [-848.35, -999.36], [-842.28, -994.01], [-843.59, -992.53], [-837.8, -987.42], [-836.28, -989.13], [-833.19, -986.41], [-828.02, -992.23], [-826.66, -991.03], [-819.16, -999.46], [-820.51, -1000.65], [-814.26, -1007.68], [-813.18, -1006.72], [-808.6, -1011.88], [-809.93, -1013.05], [-803.68, -1020.08], [-802.02, -1018.61], [-795.01, -1026.5], [-796.54, -1027.85], [-791.06, -1034.02], [-793.86, -1036.49], [-792.46, -1038.08], [-797.93, -1042.91], [-799.51, -1041.14], [-808.06, -1048.67], [-803.9, -1053.34], [-809.19, -1058.01], [-807.73, -1059.64], [-816.85, -1067.68], [-818.2, -1066.15], [-822.77, -1070.18], [-825.88, -1066.67], [-827.46, -1068.06], [-833.7, -1061.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1011, "jobs": 0}}, {"shape": {"outer": [[-764.16, -967.46], [-741.45, -992.37], [-729.68, -981.72], [-730.22, -981.11], [-751.55, -957.71], [-752.37, -956.81], [-764.16, -967.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.343, "pop": 0, "jobs": 343}}, {"shape": {"outer": [[-704.46, -911.39], [-700.13, -915.99], [-699.32, -915.23], [-693.96, -920.9], [-688.94, -916.19], [-694.23, -910.58], [-690.35, -906.96], [-694.75, -902.3], [-704.46, -911.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-776.83, -921.95], [-758.89, -941.51], [-719.86, -905.97], [-738.01, -886.18], [-751.32, -898.31], [-749.87, -899.87], [-753.81, -903.46], [-755.34, -901.79], [-760.5, -906.49], [-758.93, -908.2], [-762.54, -911.5], [-763.82, -910.11], [-776.83, -921.95]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 974, "jobs": 0}}, {"shape": {"outer": [[-1062.05, -1030.86], [-1057.55, -1035.78], [-1060.81, -1038.74], [-1062.47, -1036.93], [-1066.46, -1040.54], [-1064.59, -1042.59], [-1067.14, -1044.9], [-1074.51, -1036.82], [-1079.72, -1041.54], [-1080.46, -1040.73], [-1089.63, -1049.04], [-1084.94, -1054.17], [-1086.47, -1055.56], [-1078.47, -1064.31], [-1072.87, -1059.23], [-1071.8, -1060.4], [-1062.76, -1052.19], [-1067.09, -1047.45], [-1063.32, -1044.03], [-1061.76, -1045.73], [-1058.13, -1042.42], [-1059.98, -1040.4], [-1056.99, -1037.67], [-1049.43, -1045.92], [-1044.72, -1041.64], [-1043.55, -1042.91], [-1033.82, -1034.07], [-1038.84, -1028.59], [-1037.91, -1027.75], [-1045.92, -1018.98], [-1050.73, -1023.36], [-1052.12, -1021.85], [-1062.05, -1030.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.678, "pop": 339, "jobs": 0}}, {"shape": {"outer": [[-735.5, -951.25], [-730.11, -957.06], [-732.06, -958.86], [-727.08, -964.23], [-724.74, -962.07], [-717.28, -970.12], [-685.97, -941.28], [-703.85, -922.01], [-714.7, -932.01], [-713.24, -933.57], [-715.94, -936.05], [-717.37, -934.51], [-721.62, -938.42], [-719.98, -940.19], [-722.82, -942.8], [-724.43, -941.06], [-735.5, -951.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.902, "pop": 451, "jobs": 0}}, {"shape": {"outer": [[-733.71, -878.88], [-728.95, -884.13], [-726.97, -882.34], [-725.43, -884.04], [-721.94, -880.89], [-723.52, -879.14], [-720.75, -876.64], [-714.97, -883.0], [-711.04, -879.47], [-721.52, -867.91], [-733.71, -878.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.11, "pop": 0, "jobs": 110}}, {"shape": {"outer": [[-786.54, -930.17], [-774.66, -943.08], [-767.83, -936.85], [-779.72, -923.94], [-786.54, -930.17]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[-1143.89, -1104.56], [-1138.29, -1100.03], [-1139.4, -1098.75], [-1130.15, -1090.24], [-1126.18, -1095.09], [-1122.1, -1092.0], [-1123.68, -1090.05], [-1117.43, -1084.88], [-1122.86, -1078.3], [-1117.65, -1073.72], [-1119.04, -1072.59], [-1109.51, -1064.2], [-1104.89, -1068.97], [-1103.94, -1068.06], [-1094.81, -1077.69], [-1100.47, -1082.27], [-1099.52, -1083.55], [-1108.7, -1091.35], [-1113.21, -1086.43], [-1117.68, -1090.17], [-1115.89, -1092.4], [-1122.21, -1097.55], [-1116.61, -1104.19], [-1121.44, -1108.57], [-1120.21, -1109.8], [-1129.85, -1117.72], [-1133.9, -1113.22], [-1135.28, -1114.37], [-1143.89, -1104.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.686, "pop": 343, "jobs": 0}}, {"shape": {"outer": [[-1193.1, -1151.93], [-1191.31, -1150.45], [-1196.3, -1145.41], [-1187.1, -1137.07], [-1185.73, -1138.53], [-1180.79, -1133.99], [-1174.31, -1140.7], [-1173.18, -1139.48], [-1171.94, -1138.16], [-1172.9, -1137.26], [-1169.53, -1133.87], [-1167.4, -1136.0], [-1163.69, -1132.19], [-1168.24, -1127.16], [-1159.15, -1118.93], [-1158.0, -1120.37], [-1152.39, -1115.52], [-1144.02, -1124.58], [-1145.81, -1126.16], [-1141.69, -1131.07], [-1150.33, -1139.0], [-1151.6, -1137.44], [-1156.53, -1141.75], [-1163.31, -1134.38], [-1166.23, -1137.12], [-1164.31, -1138.92], [-1168.02, -1142.19], [-1170.14, -1139.95], [-1171.57, -1141.42], [-1173.86, -1143.77], [-1169.41, -1149.01], [-1178.4, -1157.69], [-1179.9, -1156.44], [-1184.18, -1160.79], [-1193.1, -1151.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.656, "pop": 328, "jobs": 0}}, {"shape": {"outer": [[-978.47, -1038.86], [-964.83, -1053.29], [-961.22, -1049.9], [-956.68, -1054.72], [-949.12, -1047.64], [-953.24, -1043.28], [-949.52, -1039.79], [-963.58, -1024.89], [-978.47, -1038.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.305, "pop": 0, "jobs": 305}}, {"shape": {"outer": [[-1094.0, -1160.49], [-1088.76, -1155.54], [-1087.81, -1156.54], [-1079.43, -1148.6], [-1084.12, -1143.69], [-1079.46, -1139.28], [-1077.71, -1141.1], [-1073.74, -1137.35], [-1071.74, -1135.46], [-1065.71, -1141.79], [-1060.76, -1137.1], [-1059.65, -1138.26], [-1051.15, -1130.19], [-1055.59, -1125.55], [-1054.35, -1124.39], [-1063.09, -1115.23], [-1067.64, -1119.55], [-1068.75, -1118.39], [-1078.04, -1127.19], [-1073.86, -1131.57], [-1076.67, -1134.23], [-1077.25, -1134.78], [-1078.79, -1133.17], [-1084.96, -1139.01], [-1090.8, -1132.88], [-1095.58, -1137.4], [-1096.84, -1136.07], [-1106.58, -1145.26], [-1101.45, -1150.64], [-1102.45, -1151.59], [-1094.0, -1160.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.672, "pop": 336, "jobs": 0}}, {"shape": {"outer": [[-1045.71, -1098.56], [-1040.8, -1094.05], [-1041.88, -1092.89], [-1032.3, -1084.1], [-1028.11, -1088.64], [-1025.01, -1085.79], [-1026.92, -1083.71], [-1020.89, -1078.18], [-1026.36, -1072.27], [-1020.9, -1067.25], [-1021.67, -1066.41], [-1011.99, -1057.49], [-1007.06, -1062.8], [-1006.09, -1061.91], [-997.58, -1071.07], [-1002.9, -1075.99], [-1001.75, -1077.22], [-1010.59, -1085.38], [-1015.69, -1079.9], [-1020.45, -1084.3], [-1018.99, -1085.87], [-1025.05, -1091.46], [-1019.09, -1097.9], [-1024.07, -1102.49], [-1023.08, -1103.55], [-1031.55, -1111.33], [-1036.16, -1106.36], [-1037.43, -1107.53], [-1045.71, -1098.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.69, "pop": 345, "jobs": 0}}, {"shape": {"outer": [[-962.49, -1161.49], [-955.45, -1169.05], [-951.85, -1165.72], [-953.2, -1164.27], [-951.14, -1162.36], [-956.84, -1156.25], [-962.49, -1161.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1009.38, -1179.91], [-1003.79, -1173.02], [-1006.17, -1171.11], [-1004.37, -1168.88], [-1006.76, -1166.95], [-1004.28, -1163.9], [-1008.57, -1160.45], [-1015.49, -1168.98], [-1013.07, -1170.93], [-1016.02, -1174.56], [-1009.38, -1179.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1029.05, -1155.84], [-1025.43, -1159.84], [-1026.53, -1160.84], [-1023.07, -1164.64], [-1015.98, -1158.26], [-1014.34, -1160.06], [-1010.33, -1156.45], [-1015.63, -1150.61], [-1019.25, -1153.89], [-1022.69, -1150.1], [-1029.05, -1155.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-915.7, -1099.31], [-910.46, -1105.07], [-898.85, -1094.57], [-904.09, -1088.81], [-915.7, -1099.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-951.77, -1088.16], [-942.09, -1098.78], [-932.51, -1090.12], [-942.18, -1079.49], [-951.77, -1088.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-921.6, -1133.92], [-916.0, -1139.82], [-907.65, -1131.94], [-909.47, -1130.04], [-908.13, -1128.76], [-910.9, -1125.85], [-914.27, -1129.02], [-915.56, -1128.22], [-921.6, -1133.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-931.25, -1084.92], [-918.58, -1073.79], [-922.42, -1069.45], [-921.81, -1068.91], [-929.16, -1060.6], [-937.38, -1067.81], [-929.57, -1076.65], [-934.64, -1081.09], [-931.25, -1084.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-1001.81, -1131.36], [-996.31, -1137.42], [-1000.89, -1141.54], [-1003.44, -1138.73], [-1002.61, -1137.99], [-1005.56, -1134.74], [-1001.81, -1131.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-896.86, -1121.94], [-886.88, -1112.69], [-891.63, -1107.59], [-901.61, -1116.84], [-896.86, -1121.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-983.45, -1139.32], [-987.97, -1143.2], [-983.91, -1147.87], [-979.4, -1143.98], [-983.45, -1139.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-918.16, -1121.54], [-913.82, -1117.44], [-910.25, -1121.21], [-914.6, -1125.3], [-918.16, -1121.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-956.15, -1152.39], [-949.22, -1145.92], [-940.02, -1155.68], [-946.95, -1162.15], [-956.15, -1152.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-999.74, -1128.6], [-992.57, -1136.66], [-987.3, -1132.0], [-994.48, -1123.94], [-999.74, -1128.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1000.11, -1181.84], [-993.98, -1186.48], [-988.13, -1178.78], [-994.26, -1174.15], [-1000.11, -1181.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1015.13, -1145.25], [-1005.04, -1156.12], [-1000.43, -1151.88], [-1002.2, -1149.98], [-1000.92, -1148.81], [-1009.27, -1139.84], [-1015.13, -1145.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-983.41, -1180.6], [-991.3, -1190.18], [-984.84, -1195.46], [-976.96, -1185.88], [-983.41, -1180.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-940.35, -1137.6], [-931.02, -1147.77], [-924.6, -1141.21], [-933.84, -1131.57], [-940.35, -1137.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-986.21, -1171.48], [-981.62, -1174.99], [-977.83, -1170.08], [-982.42, -1166.57], [-986.21, -1171.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-923.68, -1112.7], [-927.18, -1109.11], [-922.92, -1105.31], [-919.65, -1109.33], [-923.68, -1112.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-997.12, -1149.36], [-993.59, -1153.3], [-991.4, -1151.36], [-994.94, -1147.42], [-997.12, -1149.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[-918.26, -1093.26], [-916.5, -1091.68], [-918.33, -1089.66], [-911.91, -1083.9], [-910.33, -1085.65], [-909.09, -1084.53], [-905.4, -1088.62], [-914.81, -1097.07], [-918.26, -1093.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-988.14, -1116.34], [-986.68, -1118.05], [-986.0, -1117.48], [-979.21, -1125.46], [-983.79, -1129.33], [-987.01, -1125.55], [-988.24, -1126.6], [-993.28, -1120.69], [-988.14, -1116.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-976.28, -1109.24], [-967.47, -1119.22], [-962.74, -1115.08], [-971.55, -1105.1], [-976.28, -1109.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-920.32, -1088.78], [-911.73, -1081.34], [-917.3, -1074.95], [-924.4, -1081.09], [-922.93, -1082.78], [-924.43, -1084.07], [-920.32, -1088.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-971.96, -1159.17], [-967.63, -1163.92], [-962.97, -1159.7], [-967.3, -1154.95], [-971.96, -1159.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-966.16, -1098.77], [-961.46, -1094.63], [-962.35, -1093.63], [-957.77, -1089.59], [-951.1, -1097.1], [-960.39, -1105.29], [-966.16, -1098.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1002.96, -1169.0], [-998.51, -1172.11], [-995.52, -1167.84], [-999.97, -1164.74], [-1002.96, -1169.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-986.86, -1115.58], [-976.3, -1127.18], [-971.18, -1122.56], [-981.73, -1110.95], [-986.86, -1115.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-909.94, -1111.22], [-905.93, -1115.44], [-904.91, -1114.48], [-903.74, -1115.73], [-892.51, -1105.18], [-896.02, -1101.48], [-897.84, -1103.18], [-899.51, -1101.42], [-909.94, -1111.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-838.69, -1311.85], [-836.58, -1309.03], [-839.35, -1306.98], [-834.3, -1300.21], [-830.99, -1302.67], [-829.18, -1300.24], [-824.5, -1303.7], [-833.47, -1315.72], [-838.69, -1311.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-878.18, -1226.73], [-874.02, -1231.27], [-864.42, -1222.55], [-866.87, -1219.87], [-865.48, -1218.6], [-867.17, -1216.74], [-878.18, -1226.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-945.79, -1223.99], [-937.83, -1230.15], [-930.8, -1221.16], [-934.84, -1218.03], [-936.72, -1220.44], [-940.65, -1217.4], [-945.79, -1223.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-878.14, -1232.46], [-875.06, -1235.66], [-878.79, -1239.22], [-881.87, -1236.01], [-878.14, -1232.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-882.71, -1272.12], [-879.68, -1274.33], [-881.39, -1276.64], [-876.68, -1280.07], [-873.43, -1275.66], [-872.14, -1276.59], [-868.42, -1271.54], [-877.44, -1264.96], [-882.71, -1272.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-865.12, -1239.11], [-870.89, -1233.1], [-862.42, -1225.02], [-861.25, -1226.24], [-859.68, -1224.74], [-855.83, -1228.74], [-857.83, -1230.65], [-857.07, -1231.43], [-865.12, -1239.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-926.82, -1185.48], [-920.66, -1191.96], [-915.89, -1187.46], [-922.04, -1180.98], [-926.82, -1185.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-822.91, -1282.44], [-817.14, -1288.89], [-808.79, -1281.47], [-814.56, -1275.02], [-822.91, -1282.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-922.5, -1244.59], [-920.8, -1242.37], [-922.74, -1240.89], [-916.72, -1233.03], [-915.72, -1233.79], [-909.96, -1226.43], [-904.45, -1230.96], [-917.52, -1248.39], [-922.5, -1244.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-925.25, -1164.37], [-918.37, -1171.76], [-912.99, -1166.79], [-919.88, -1159.4], [-925.25, -1164.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-833.28, -1272.95], [-828.73, -1278.1], [-820.12, -1271.26], [-824.67, -1265.8], [-833.28, -1272.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-869.71, -1241.31], [-867.55, -1243.72], [-871.07, -1246.85], [-873.23, -1244.43], [-869.71, -1241.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[-913.26, -1252.04], [-907.62, -1256.13], [-897.44, -1242.18], [-903.08, -1238.1], [-913.26, -1252.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-896.11, -1186.38], [-904.9, -1194.18], [-899.91, -1199.65], [-891.19, -1191.8], [-896.11, -1186.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-894.42, -1268.75], [-892.07, -1265.63], [-893.22, -1264.76], [-885.76, -1254.9], [-878.96, -1259.99], [-886.69, -1270.22], [-887.87, -1269.33], [-889.95, -1272.1], [-894.42, -1268.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-933.07, -1186.59], [-927.01, -1181.1], [-935.05, -1172.27], [-940.07, -1176.81], [-938.03, -1179.05], [-939.08, -1180.0], [-933.07, -1186.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-905.45, -1254.92], [-896.99, -1261.49], [-891.83, -1254.89], [-892.73, -1254.2], [-887.23, -1247.11], [-894.01, -1242.1], [-899.54, -1248.91], [-900.3, -1248.32], [-905.45, -1254.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-942.22, -1202.98], [-937.19, -1206.94], [-933.33, -1201.93], [-938.57, -1197.97], [-942.22, -1202.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-958.41, -1215.56], [-949.29, -1222.56], [-940.12, -1210.71], [-949.24, -1203.7], [-958.41, -1215.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-833.27, -1317.02], [-826.12, -1324.65], [-813.21, -1312.65], [-820.36, -1305.02], [-833.27, -1317.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-935.43, -1231.98], [-927.84, -1237.98], [-919.77, -1227.81], [-924.07, -1224.42], [-922.82, -1222.85], [-926.11, -1220.26], [-935.43, -1231.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-965.56, -1208.36], [-964.35, -1206.77], [-968.61, -1203.54], [-963.78, -1197.21], [-954.3, -1204.4], [-960.34, -1212.31], [-965.56, -1208.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-845.1, -1262.06], [-835.23, -1252.86], [-841.9, -1245.27], [-849.96, -1252.12], [-846.78, -1255.7], [-849.02, -1257.59], [-845.1, -1262.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-890.5, -1227.88], [-886.94, -1231.88], [-883.49, -1228.84], [-887.06, -1224.84], [-890.5, -1227.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-899.69, -1220.47], [-895.58, -1224.68], [-890.38, -1219.64], [-894.5, -1215.42], [-899.69, -1220.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-873.09, -1256.81], [-882.31, -1249.46], [-877.51, -1243.47], [-868.28, -1250.83], [-873.09, -1256.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-906.29, -1216.37], [-903.82, -1219.07], [-899.63, -1215.27], [-902.1, -1212.56], [-906.29, -1216.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-901.02, -1203.18], [-896.55, -1199.04], [-895.8, -1199.84], [-889.8, -1194.3], [-886.0, -1198.38], [-896.47, -1208.06], [-901.02, -1203.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-855.67, -1297.61], [-846.71, -1286.08], [-854.13, -1280.35], [-861.35, -1289.64], [-859.33, -1291.21], [-861.07, -1293.45], [-855.67, -1297.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-885.46, -1200.99], [-881.81, -1205.02], [-890.73, -1213.04], [-894.38, -1209.01], [-885.46, -1200.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-841.61, -1266.08], [-836.42, -1272.0], [-828.36, -1264.83], [-834.08, -1258.56], [-841.61, -1266.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-853.16, -1300.03], [-843.51, -1307.1], [-836.56, -1297.67], [-846.2, -1290.6], [-853.16, -1300.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-901.71, -1231.06], [-897.87, -1233.94], [-894.46, -1229.42], [-898.31, -1226.54], [-901.71, -1231.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-882.97, -1218.28], [-879.8, -1221.93], [-870.98, -1214.36], [-875.4, -1209.24], [-882.25, -1215.13], [-881.0, -1216.58], [-882.97, -1218.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-947.97, -1183.82], [-939.63, -1193.55], [-933.75, -1188.55], [-942.1, -1178.82], [-947.97, -1183.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-917.57, -1225.65], [-913.72, -1228.98], [-908.86, -1223.42], [-912.71, -1220.08], [-917.57, -1225.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-933.61, -1170.89], [-925.73, -1179.48], [-919.97, -1174.22], [-927.85, -1165.64], [-933.61, -1170.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-856.8, -1246.25], [-848.72, -1239.08], [-853.92, -1233.26], [-861.99, -1240.45], [-856.8, -1246.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-872.69, -1283.13], [-866.12, -1288.06], [-861.64, -1282.13], [-859.18, -1283.99], [-855.7, -1279.37], [-858.98, -1276.91], [-860.22, -1278.57], [-865.98, -1274.24], [-872.69, -1283.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-804.17, -1270.82], [-799.78, -1275.72], [-798.11, -1274.24], [-796.1, -1276.49], [-789.77, -1270.86], [-796.17, -1263.71], [-804.17, -1270.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-809.28, -1260.5], [-799.31, -1251.13], [-804.97, -1245.15], [-814.93, -1254.54], [-809.28, -1260.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-805.72, -1232.57], [-801.98, -1236.56], [-797.02, -1231.94], [-800.76, -1227.96], [-805.72, -1232.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-812.29, -1292.37], [-804.8, -1300.97], [-803.53, -1299.87], [-799.11, -1304.93], [-792.53, -1299.25], [-804.45, -1285.58], [-812.29, -1292.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-846.79, -1193.86], [-844.63, -1196.51], [-847.57, -1198.89], [-849.73, -1196.24], [-846.79, -1193.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-837.3, -1187.56], [-832.01, -1182.72], [-837.27, -1177.01], [-832.88, -1173.0], [-837.19, -1168.33], [-846.86, -1177.18], [-837.3, -1187.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-793.3, -1262.39], [-790.74, -1265.29], [-785.01, -1260.24], [-787.57, -1257.35], [-793.3, -1262.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-807.1, -1232.18], [-801.79, -1227.37], [-804.59, -1224.29], [-809.91, -1229.1], [-807.1, -1232.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-862.96, -1139.87], [-871.42, -1147.9], [-866.83, -1152.7], [-858.36, -1144.67], [-862.96, -1139.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-874.42, -1170.73], [-870.23, -1175.23], [-864.05, -1169.5], [-868.23, -1165.01], [-874.42, -1170.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-803.35, -1223.44], [-800.63, -1221.19], [-798.95, -1223.21], [-793.39, -1218.6], [-798.97, -1211.9], [-804.45, -1216.44], [-803.06, -1218.1], [-805.87, -1220.42], [-803.35, -1223.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-847.01, -1169.79], [-855.41, -1160.8], [-848.99, -1154.85], [-845.28, -1158.82], [-844.49, -1158.1], [-839.8, -1163.11], [-847.01, -1169.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-766.81, -1254.71], [-759.4, -1263.18], [-753.21, -1257.81], [-760.62, -1249.34], [-766.81, -1254.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-845.21, -1193.49], [-842.58, -1196.04], [-840.13, -1193.52], [-842.77, -1190.98], [-845.21, -1193.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-848.75, -1214.84], [-842.32, -1209.33], [-843.97, -1207.43], [-842.01, -1205.74], [-844.6, -1202.73], [-853.0, -1209.91], [-848.75, -1214.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-782.96, -1251.35], [-779.91, -1255.16], [-775.01, -1251.27], [-778.06, -1247.45], [-782.96, -1251.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-787.32, -1266.33], [-778.62, -1276.13], [-772.31, -1270.56], [-781.02, -1260.76], [-787.32, -1266.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-779.66, -1246.41], [-774.1, -1241.28], [-780.13, -1234.79], [-778.17, -1232.98], [-781.5, -1229.38], [-789.87, -1237.11], [-788.73, -1238.34], [-790.71, -1240.15], [-786.84, -1244.3], [-784.03, -1241.72], [-779.66, -1246.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-877.67, -1134.56], [-874.0, -1138.04], [-875.0, -1139.09], [-871.15, -1142.73], [-864.56, -1135.8], [-872.08, -1128.69], [-877.67, -1134.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-814.74, -1205.32], [-809.13, -1200.24], [-811.88, -1197.12], [-814.23, -1199.12], [-815.93, -1197.33], [-819.19, -1200.4], [-814.74, -1205.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-891.61, -1131.99], [-879.99, -1121.93], [-885.14, -1116.03], [-896.76, -1126.09], [-891.61, -1131.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-887.93, -1131.62], [-883.07, -1136.82], [-873.65, -1128.09], [-878.51, -1122.88], [-887.93, -1131.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-793.88, -1277.12], [-787.16, -1284.56], [-780.05, -1278.19], [-786.77, -1270.75], [-793.88, -1277.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-859.92, -1204.65], [-852.76, -1198.32], [-858.26, -1192.16], [-865.41, -1198.49], [-859.92, -1204.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-788.46, -1286.17], [-784.25, -1290.71], [-775.63, -1282.77], [-779.85, -1278.22], [-788.46, -1286.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-778.39, -1259.48], [-767.42, -1271.34], [-760.75, -1265.22], [-771.72, -1253.36], [-778.39, -1259.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-821.85, -1247.26], [-816.68, -1253.03], [-806.54, -1244.02], [-810.5, -1239.59], [-812.65, -1241.51], [-813.85, -1240.15], [-821.85, -1247.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-808.15, -1262.26], [-803.32, -1267.67], [-792.99, -1258.54], [-796.62, -1254.46], [-798.68, -1256.27], [-799.87, -1254.94], [-808.15, -1262.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-872.62, -1192.65], [-863.37, -1185.47], [-867.65, -1179.99], [-876.9, -1187.16], [-872.62, -1192.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-840.35, -1225.8], [-834.77, -1220.55], [-840.26, -1214.76], [-845.84, -1220.01], [-840.35, -1225.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-832.14, -1234.75], [-826.34, -1229.45], [-832.03, -1223.26], [-837.83, -1228.58], [-832.14, -1234.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-822.86, -1243.93], [-815.81, -1237.99], [-820.87, -1232.01], [-827.94, -1237.96], [-822.86, -1243.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-820.81, -1218.04], [-817.9, -1221.02], [-813.14, -1216.41], [-816.04, -1213.43], [-820.81, -1218.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-793.72, -1232.05], [-784.63, -1224.08], [-789.09, -1219.03], [-797.22, -1226.15], [-794.76, -1228.94], [-795.72, -1229.78], [-793.72, -1232.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-808.39, -1217.38], [-798.02, -1207.74], [-802.56, -1202.9], [-812.92, -1212.54], [-808.39, -1217.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-830.89, -1196.35], [-827.45, -1193.24], [-830.61, -1189.77], [-825.73, -1185.33], [-820.54, -1191.01], [-816.96, -1187.77], [-812.06, -1193.13], [-823.97, -1203.93], [-830.89, -1196.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-878.52, -1150.16], [-876.81, -1151.82], [-880.53, -1155.61], [-882.24, -1153.94], [-878.52, -1150.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-910.48, -1148.46], [-905.06, -1153.98], [-900.87, -1149.89], [-906.29, -1144.38], [-910.48, -1148.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-911.67, -1147.58], [-907.07, -1143.24], [-912.06, -1137.99], [-916.66, -1142.31], [-911.67, -1147.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-706.26, -774.71], [-701.08, -780.34], [-701.74, -780.95], [-699.48, -783.4], [-696.54, -780.73], [-697.11, -780.11], [-693.37, -776.71], [-689.16, -781.3], [-690.05, -782.1], [-688.09, -784.24], [-690.76, -786.67], [-681.92, -796.31], [-679.19, -793.82], [-678.8, -794.23], [-676.36, -792.0], [-676.74, -791.58], [-674.08, -789.15], [-676.85, -786.13], [-676.58, -785.88], [-684.64, -777.1], [-684.9, -777.35], [-689.16, -772.73], [-687.88, -771.56], [-694.68, -764.16], [-706.26, -774.71]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-676.46, -739.09], [-649.79, -768.57], [-639.39, -759.23], [-666.06, -729.75], [-676.46, -739.09]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.584, "pop": 292, "jobs": 0}}, {"shape": {"outer": [[-942.66, -714.5], [-937.14, -720.53], [-908.49, -751.85], [-940.64, -781.05], [-947.0, -774.09], [-947.13, -770.93], [-926.29, -752.02], [-952.46, -723.4], [-942.66, -714.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.82, "pop": 410, "jobs": 0}}, {"shape": {"outer": [[-729.42, -828.61], [-719.82, -839.25], [-713.23, -833.36], [-722.83, -822.71], [-729.42, -828.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.081, "pop": 0, "jobs": 81}}, {"shape": {"outer": [[-950.54, -786.6], [-944.94, -781.75], [-948.97, -777.5], [-949.18, -769.32], [-946.26, -766.68], [-959.83, -752.13], [-945.47, -739.15], [-949.17, -734.8], [-948.99, -732.19], [-953.98, -726.94], [-981.15, -752.4], [-950.54, -786.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.764, "pop": 382, "jobs": 0}}, {"shape": {"outer": [[-688.71, -761.5], [-668.28, -783.74], [-659.47, -775.7], [-679.91, -753.47], [-688.71, -761.5]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.378, "pop": 189, "jobs": 0}}, {"shape": {"outer": [[-735.26, -807.11], [-714.55, -830.05], [-710.01, -825.98], [-717.39, -817.8], [-716.93, -817.39], [-730.26, -802.63], [-735.26, -807.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-714.1, -799.1], [-712.95, -798.08], [-710.77, -800.53], [-711.92, -801.55], [-699.04, -816.0], [-696.98, -814.17], [-695.59, -815.73], [-690.6, -811.32], [-692.98, -808.65], [-688.24, -804.47], [-689.46, -803.11], [-687.49, -801.36], [-694.12, -793.91], [-695.45, -795.09], [-696.82, -793.56], [-695.7, -792.57], [-699.52, -788.28], [-700.69, -789.31], [-705.19, -784.27], [-704.21, -783.41], [-714.5, -771.86], [-716.89, -773.97], [-717.81, -772.94], [-722.89, -777.43], [-722.08, -778.35], [-725.77, -781.61], [-724.67, -782.84], [-726.86, -784.78], [-714.1, -799.1]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.804, "pop": 402, "jobs": 0}}, {"shape": {"outer": [[-898.17, -744.96], [-889.97, -753.89], [-880.36, -745.13], [-888.56, -736.19], [-898.17, -744.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.101, "pop": 0, "jobs": 101}}, {"shape": {"outer": [[-718.45, -811.1], [-712.88, -806.12], [-700.15, -820.21], [-705.71, -825.2], [-718.45, -811.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1015.44, -769.17], [-1000.22, -755.31], [-991.87, -764.41], [-993.48, -765.89], [-964.13, -797.85], [-967.14, -800.6], [-965.71, -802.16], [-967.9, -804.15], [-967.22, -804.91], [-969.64, -807.1], [-970.53, -806.13], [-973.55, -808.89], [-974.86, -807.45], [-977.82, -810.15], [-1015.44, -769.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.862, "pop": 431, "jobs": 0}}, {"shape": {"outer": [[-892.4, -709.88], [-857.74, -748.29], [-847.41, -739.03], [-882.07, -700.61], [-892.4, -709.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.46, "pop": 0, "jobs": 460}}, {"shape": {"outer": [[-680.65, -671.75], [-671.26, -682.25], [-664.83, -676.53], [-674.23, -666.04], [-674.44, -666.22], [-675.43, -665.13], [-680.92, -670.01], [-679.94, -671.11], [-680.65, -671.75]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-872.87, -653.81], [-862.85, -664.65], [-857.29, -659.54], [-867.3, -648.7], [-867.52, -648.9], [-869.01, -647.29], [-874.08, -651.95], [-872.59, -653.55], [-872.87, -653.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-786.45, -709.43], [-774.27, -698.42], [-795.56, -675.06], [-793.24, -672.97], [-791.98, -674.36], [-783.21, -666.42], [-784.36, -665.16], [-780.82, -661.94], [-791.29, -650.46], [-808.12, -665.71], [-809.0, -664.75], [-817.52, -672.46], [-816.18, -673.92], [-821.54, -678.77], [-810.5, -690.89], [-806.57, -687.34], [-786.45, -709.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.958, "pop": 479, "jobs": 0}}, {"shape": {"outer": [[-621.34, -698.64], [-614.11, -706.52], [-606.27, -699.4], [-606.45, -699.22], [-604.79, -697.71], [-611.64, -690.22], [-613.3, -691.72], [-613.49, -691.5], [-621.34, -698.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-769.56, -656.63], [-751.89, -676.14], [-745.58, -670.46], [-763.24, -650.95], [-769.56, -656.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-865.59, -646.48], [-864.6, -647.57], [-864.82, -647.76], [-854.9, -658.65], [-854.54, -658.33], [-852.86, -660.18], [-848.09, -655.88], [-849.78, -654.03], [-849.38, -653.66], [-859.24, -642.82], [-859.42, -642.99], [-860.47, -641.83], [-865.59, -646.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-675.3, -664.09], [-665.39, -674.91], [-659.54, -669.58], [-669.45, -658.76], [-675.3, -664.09]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-756.32, -655.86], [-745.69, -667.77], [-739.7, -662.47], [-744.3, -657.32], [-744.07, -657.11], [-750.1, -650.35], [-753.0, -652.91], [-754.05, -651.74], [-756.42, -653.85], [-755.37, -655.02], [-756.32, -655.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-640.2, -681.34], [-630.11, -672.26], [-630.67, -671.64], [-629.71, -670.78], [-632.96, -667.19], [-633.91, -668.06], [-635.05, -666.8], [-638.42, -669.83], [-639.06, -669.13], [-643.01, -672.69], [-642.38, -673.39], [-645.15, -675.88], [-644.14, -676.99], [-645.21, -677.96], [-641.61, -681.93], [-640.54, -680.96], [-640.2, -681.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-814.77, -693.1], [-821.34, -685.9], [-842.94, -705.46], [-816.29, -734.68], [-789.79, -710.69], [-800.49, -698.96], [-813.64, -710.87], [-823.04, -700.58], [-814.77, -693.1]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 579, "jobs": 0}}, {"shape": {"outer": [[-660.03, -650.61], [-650.12, -661.28], [-643.13, -654.83], [-653.04, -644.16], [-654.53, -645.54], [-655.39, -644.61], [-659.99, -648.84], [-659.13, -649.78], [-660.03, -650.61]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-623.46, -698.06], [-614.67, -690.1], [-615.08, -689.66], [-613.41, -688.14], [-620.06, -680.86], [-621.71, -682.35], [-622.09, -681.93], [-630.89, -689.91], [-623.46, -698.06]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-667.24, -657.83], [-655.84, -670.41], [-655.43, -670.03], [-653.96, -671.64], [-650.69, -668.69], [-652.14, -667.08], [-649.05, -664.3], [-658.42, -653.95], [-658.83, -654.32], [-660.86, -652.08], [-661.21, -652.41], [-662.34, -651.17], [-668.05, -656.3], [-666.93, -657.55], [-667.24, -657.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-694.99, -685.92], [-693.75, -687.28], [-694.43, -687.89], [-690.54, -692.17], [-689.87, -691.57], [-685.8, -696.05], [-681.18, -691.91], [-683.56, -689.28], [-683.34, -689.08], [-688.23, -683.68], [-688.46, -683.89], [-690.37, -681.77], [-694.99, -685.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-618.44, -722.76], [-610.24, -731.8], [-604.23, -726.38], [-612.43, -717.34], [-618.44, -722.76]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-857.41, -642.23], [-847.69, -652.73], [-845.58, -650.79], [-844.65, -651.8], [-841.51, -648.92], [-842.44, -647.92], [-841.99, -647.51], [-845.03, -644.23], [-844.63, -643.86], [-847.68, -640.58], [-848.07, -640.93], [-851.72, -637.0], [-857.41, -642.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-774.13, -667.43], [-760.13, -682.67], [-753.34, -676.49], [-767.33, -661.23], [-774.13, -667.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-635.82, -749.14], [-634.74, -748.16], [-630.2, -753.13], [-625.08, -748.51], [-624.48, -749.17], [-621.44, -746.44], [-621.88, -745.95], [-620.75, -744.92], [-620.48, -745.21], [-614.76, -740.03], [-619.44, -734.89], [-616.91, -732.61], [-624.92, -723.82], [-629.18, -727.68], [-635.02, -721.28], [-630.84, -717.5], [-633.35, -714.74], [-632.23, -713.72], [-640.17, -705.01], [-642.52, -707.14], [-643.41, -706.15], [-652.41, -714.29], [-651.56, -715.21], [-653.49, -716.96], [-654.44, -715.9], [-659.96, -720.89], [-658.95, -722.01], [-661.16, -724.01], [-654.7, -731.1], [-653.64, -730.14], [-646.73, -737.72], [-645.52, -736.63], [-643.35, -739.0], [-644.29, -739.85], [-635.82, -749.14]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 737, "jobs": 0}}, {"shape": {"outer": [[-867.56, -673.86], [-863.88, -677.94], [-854.4, -669.45], [-858.07, -665.38], [-867.56, -673.86]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-775.46, -620.75], [-770.69, -626.14], [-764.43, -620.65], [-769.21, -615.26], [-775.46, -620.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-688.28, -679.16], [-678.58, -690.02], [-678.06, -689.56], [-676.28, -691.55], [-670.54, -686.45], [-672.32, -684.47], [-671.89, -684.08], [-681.59, -673.22], [-688.28, -679.16]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-632.15, -689.85], [-622.58, -680.94], [-622.8, -680.7], [-621.89, -679.85], [-625.84, -675.63], [-626.76, -676.49], [-627.84, -675.33], [-634.95, -681.95], [-636.65, -680.14], [-641.08, -684.27], [-639.04, -686.44], [-637.07, -684.61], [-634.81, -687.0], [-636.04, -688.15], [-633.69, -690.65], [-632.46, -689.5], [-632.15, -689.85]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-600.36, -728.53], [-587.5, -716.67], [-602.36, -700.69], [-615.22, -712.55], [-600.36, -728.53]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.534, "pop": 267, "jobs": 0}}, {"shape": {"outer": [[-816.8, -606.23], [-806.99, -616.94], [-812.46, -621.92], [-822.28, -611.21], [-821.95, -610.91], [-823.07, -609.69], [-818.17, -605.24], [-817.05, -606.46], [-816.8, -606.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-768.41, -786.54], [-767.28, -786.6], [-765.02, -784.53], [-764.83, -784.74], [-763.53, -784.79], [-753.07, -775.24], [-753.04, -773.88], [-762.61, -763.49], [-759.03, -760.22], [-755.51, -757.01], [-755.53, -755.73], [-762.29, -748.38], [-763.41, -748.35], [-766.96, -751.59], [-769.8, -754.18], [-771.22, -754.16], [-773.25, -751.96], [-782.79, -760.68], [-782.83, -762.4], [-786.46, -765.69], [-786.48, -766.89], [-768.41, -786.54]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.403, "pop": 0, "jobs": 403}}, {"shape": {"outer": [[-736.95, -659.16], [-731.76, -654.34], [-739.07, -646.53], [-739.29, -646.74], [-741.74, -644.12], [-746.71, -648.75], [-736.95, -659.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-730.39, -577.44], [-730.04, -577.84], [-734.15, -581.55], [-732.75, -583.1], [-738.53, -588.33], [-735.05, -592.15], [-729.28, -586.93], [-728.74, -587.53], [-724.43, -583.63], [-725.19, -582.79], [-716.63, -575.07], [-721.65, -569.55], [-730.39, -577.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-838.53, -623.38], [-826.99, -635.71], [-821.56, -630.66], [-832.07, -619.44], [-834.12, -621.36], [-835.16, -620.25], [-838.53, -623.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-793.05, -584.79], [-790.54, -587.53], [-790.96, -587.91], [-786.92, -592.35], [-786.51, -591.97], [-782.06, -596.87], [-775.96, -591.36], [-786.94, -579.28], [-793.05, -584.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-741.35, -572.1], [-731.35, -563.05], [-738.05, -555.71], [-748.04, -564.75], [-741.35, -572.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-800.12, -594.23], [-791.5, -603.4], [-790.07, -602.06], [-788.79, -603.42], [-785.75, -600.57], [-787.03, -599.21], [-785.04, -597.36], [-793.66, -588.2], [-800.12, -594.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-757.74, -559.28], [-743.04, -546.11], [-749.61, -538.82], [-755.72, -544.29], [-764.32, -551.99], [-757.74, -559.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.124, "pop": 0, "jobs": 124}}, {"shape": {"outer": [[-771.79, -563.05], [-768.02, -567.31], [-768.86, -568.04], [-765.75, -571.57], [-764.28, -570.28], [-760.33, -574.76], [-755.5, -570.53], [-764.76, -560.01], [-765.08, -560.29], [-766.64, -558.54], [-771.79, -563.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-786.57, -578.22], [-774.64, -590.99], [-768.66, -585.43], [-777.52, -575.94], [-777.72, -576.12], [-780.78, -572.85], [-786.57, -578.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-843.0, -630.59], [-836.02, -638.1], [-830.24, -632.76], [-837.22, -625.26], [-838.2, -626.15], [-839.84, -624.38], [-844.43, -628.62], [-842.78, -630.39], [-843.0, -630.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-814.92, -604.34], [-805.03, -615.15], [-804.71, -614.86], [-803.68, -615.98], [-801.33, -613.84], [-802.35, -612.73], [-799.4, -610.04], [-809.29, -599.23], [-814.92, -604.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-850.43, -636.71], [-839.44, -648.66], [-833.48, -643.21], [-841.4, -634.6], [-841.7, -634.87], [-844.76, -631.53], [-850.43, -636.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-777.94, -571.1], [-775.13, -574.15], [-775.48, -574.46], [-771.68, -578.59], [-771.33, -578.27], [-766.52, -583.48], [-760.92, -578.35], [-764.11, -574.89], [-763.93, -574.72], [-770.22, -567.91], [-770.41, -568.08], [-772.35, -565.98], [-777.94, -571.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-751.41, -554.97], [-743.62, -548.14], [-737.54, -555.02], [-745.33, -561.86], [-751.41, -554.97]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-807.99, -598.36], [-796.67, -610.73], [-790.6, -605.21], [-801.91, -592.84], [-807.99, -598.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-829.88, -616.75], [-823.63, -623.24], [-821.82, -621.53], [-819.07, -624.39], [-818.87, -624.19], [-817.87, -625.23], [-815.04, -622.52], [-816.08, -621.45], [-815.18, -620.6], [-817.79, -617.89], [-817.07, -617.21], [-821.54, -612.58], [-823.23, -614.2], [-825.14, -612.21], [-829.88, -616.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1068.4, -537.9], [-1069.21, -538.19], [-1069.47, -538.92], [-1070.99, -565.22], [-1069.31, -565.32], [-1070.03, -576.66], [-1069.99, -577.15], [-1069.64, -577.45], [-1049.36, -578.55], [-1048.97, -578.45], [-1048.84, -577.98], [-1048.4, -569.72], [-1047.89, -560.2], [-1029.38, -561.19], [-1029.88, -570.93], [-1030.37, -579.9], [-1002.13, -581.39], [-1001.51, -569.83], [-987.97, -570.55], [-987.44, -560.67], [-972.61, -561.45], [-972.81, -565.11], [-974.94, -565.0], [-975.27, -571.33], [-975.88, -582.53], [-957.41, -583.51], [-955.36, -545.54], [-955.77, -544.55], [-956.73, -543.75], [-998.67, -541.4], [-998.58, -539.84], [-999.53, -538.83], [-1023.21, -537.29], [-1024.31, -537.69], [-1025.1, -538.53], [-1025.19, -540.23], [-1068.4, -537.9]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2449}}, {"shape": {"outer": [[-970.51, -321.76], [-933.51, -323.45], [-932.67, -305.13], [-950.73, -304.31], [-949.91, -286.02], [-968.58, -284.97], [-970.51, -321.76]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 1970, "jobs": 0}}, {"shape": {"outer": [[-872.93, -475.9], [-870.71, -473.84], [-869.33, -475.32], [-866.66, -472.86], [-864.46, -475.22], [-839.0, -451.66], [-839.66, -450.97], [-835.77, -447.36], [-840.24, -442.56], [-839.17, -441.57], [-844.29, -436.07], [-846.12, -437.77], [-849.84, -433.76], [-847.84, -431.9], [-853.64, -425.68], [-854.63, -426.61], [-857.68, -423.34], [-862.72, -428.0], [-863.77, -426.87], [-869.35, -432.05], [-868.33, -433.14], [-871.98, -436.52], [-863.73, -445.38], [-872.09, -453.12], [-875.52, -449.45], [-875.2, -449.16], [-878.25, -445.88], [-879.45, -447.0], [-881.35, -444.94], [-883.81, -447.22], [-884.95, -445.99], [-890.52, -451.16], [-889.52, -452.23], [-894.75, -457.07], [-891.74, -460.29], [-892.77, -461.24], [-887.21, -467.21], [-886.79, -466.84], [-884.4, -469.39], [-882.67, -467.79], [-876.72, -474.17], [-875.56, -473.09], [-872.93, -475.9]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1329, "jobs": 0}}, {"shape": {"outer": [[-1016.88, -352.51], [-1013.83, -352.66], [-1013.69, -349.88], [-1010.8, -350.01], [-1010.25, -338.95], [-1016.21, -338.66], [-1016.88, -352.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1007.51, -353.54], [-998.32, -354.02], [-997.66, -341.42], [-1006.85, -340.95], [-1007.51, -353.54]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1033.35, -350.43], [-1030.32, -350.59], [-1030.22, -348.89], [-1026.15, -349.12], [-1025.65, -340.3], [-1032.76, -339.9], [-1033.35, -350.43]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1024.95, -350.89], [-1021.44, -351.09], [-1021.36, -349.52], [-1018.37, -349.69], [-1017.82, -340.12], [-1024.31, -339.76], [-1024.95, -350.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-989.89, -355.47], [-991.43, -383.95], [-978.34, -384.65], [-977.52, -369.44], [-976.81, -356.18], [-989.89, -355.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-1014.92, -495.27], [-1015.35, -504.23], [-1005.57, -504.7], [-1005.53, -503.89], [-999.86, -504.15], [-999.47, -496.0], [-1014.92, -495.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1015.28, -505.59], [-1015.52, -510.41], [-1011.5, -510.61], [-1011.63, -513.14], [-1006.52, -513.4], [-1006.49, -512.68], [-1002.24, -512.89], [-1001.9, -506.03], [-1011.12, -505.58], [-1011.13, -505.8], [-1015.28, -505.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1046.29, -483.36], [-1046.61, -490.55], [-1041.91, -490.76], [-1041.86, -489.75], [-1036.79, -489.97], [-1036.52, -483.78], [-1046.29, -483.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1044.6, -495.34], [-1045.05, -502.07], [-1042.96, -502.22], [-1043.48, -509.92], [-1039.83, -510.17], [-1039.94, -511.8], [-1037.06, -511.99], [-1036.95, -510.36], [-1036.79, -510.37], [-1035.82, -495.92], [-1044.6, -495.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1070.8, -499.57], [-1059.56, -500.32], [-1059.62, -501.2], [-1054.37, -501.55], [-1054.31, -500.65], [-1053.75, -500.69], [-1053.25, -493.27], [-1068.44, -492.27], [-1068.46, -492.56], [-1069.72, -492.47], [-1069.85, -494.53], [-1070.46, -494.49], [-1070.8, -499.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1071.22, -502.87], [-1053.3, -503.53], [-1053.63, -512.62], [-1071.56, -511.95], [-1071.22, -502.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1032.02, -504.18], [-1032.5, -513.21], [-1027.61, -513.48], [-1027.64, -514.09], [-1019.09, -514.55], [-1018.57, -504.9], [-1032.02, -504.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1020.37, -474.8], [-996.31, -475.94], [-995.63, -461.58], [-1019.7, -460.46], [-1020.37, -474.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-1023.77, -411.71], [-1025.36, -446.44], [-996.52, -447.75], [-994.93, -413.03], [-1023.77, -411.71]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 2108, "jobs": 0}}, {"shape": {"outer": [[-1010.95, -486.2], [-1011.29, -494.36], [-1000.81, -494.79], [-1000.47, -486.64], [-1005.03, -486.45], [-1004.98, -485.3], [-1007.41, -485.2], [-1007.46, -486.34], [-1010.95, -486.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1067.23, -491.45], [-1062.36, -491.74], [-1062.31, -490.92], [-1054.62, -491.39], [-1054.21, -484.53], [-1057.75, -484.32], [-1057.73, -483.91], [-1062.16, -483.65], [-1062.13, -483.07], [-1066.71, -482.79], [-1066.79, -484.17], [-1067.96, -484.1], [-1068.3, -489.92], [-1067.15, -489.98], [-1067.23, -491.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1042.44, -424.48], [-1042.01, -410.94], [-1050.08, -410.61], [-1050.02, -408.78], [-1053.94, -408.61], [-1053.85, -407.37], [-1064.93, -407.0], [-1066.73, -408.69], [-1067.37, -427.27], [-1061.25, -427.47], [-1061.31, -429.5], [-1049.54, -430.0], [-1049.31, -424.24], [-1042.44, -424.48]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.264, "pop": 0, "jobs": 264}}, {"shape": {"outer": [[-1062.32, -329.91], [-1035.56, -331.08], [-1035.55, -330.77], [-1034.13, -330.83], [-1033.54, -317.25], [-1057.2, -316.22], [-1057.22, -316.63], [-1061.73, -316.44], [-1062.32, -329.91]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 818, "jobs": 0}}, {"shape": {"outer": [[-1063.53, -473.15], [-1044.25, -474.11], [-1043.58, -460.9], [-1062.87, -459.93], [-1063.53, -473.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-1057.52, -432.15], [-1058.35, -451.71], [-1043.7, -452.33], [-1042.86, -432.77], [-1057.52, -432.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-906.75, -634.83], [-899.77, -642.36], [-899.04, -641.69], [-897.88, -642.94], [-893.31, -638.74], [-894.47, -637.48], [-893.64, -636.72], [-900.6, -629.18], [-901.78, -630.27], [-903.37, -628.55], [-907.38, -632.22], [-905.78, -633.95], [-906.75, -634.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2127.51, -544.56], [-2126.93, -530.05], [-2119.18, -530.36], [-2119.77, -544.87], [-2127.51, -544.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2116.22, -542.16], [-2115.78, -532.76], [-2107.38, -533.15], [-2107.81, -542.28], [-2110.0, -542.18], [-2110.11, -544.63], [-2114.33, -544.43], [-2114.22, -542.26], [-2116.22, -542.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2071.64, -535.18], [-2065.28, -535.24], [-2062.02, -535.28], [-2061.8, -512.9], [-2071.41, -512.8], [-2071.64, -535.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-2131.0, -543.3], [-2130.53, -529.05], [-2138.46, -528.8], [-2138.93, -543.05], [-2131.0, -543.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2138.74, -521.09], [-2125.71, -521.32], [-2125.58, -514.28], [-2132.24, -514.17], [-2132.26, -515.57], [-2138.65, -515.45], [-2138.74, -521.09]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2134.5, -555.84], [-2134.97, -571.12], [-2107.95, -571.96], [-2107.47, -556.68], [-2134.5, -555.84]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.578, "pop": 289, "jobs": 0}}, {"shape": {"outer": [[-2134.7, -505.93], [-2124.43, -506.23], [-2123.67, -480.82], [-2133.94, -480.52], [-2134.7, -505.93]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-2070.85, -508.59], [-2061.56, -508.76], [-2061.15, -486.02], [-2070.42, -485.85], [-2070.85, -508.59]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[-2088.06, -522.95], [-2081.09, -523.09], [-2081.1, -523.73], [-2077.32, -523.81], [-2076.5, -486.03], [-2080.84, -485.94], [-2080.86, -486.69], [-2087.26, -486.55], [-2088.06, -522.95]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.556, "pop": 278, "jobs": 0}}, {"shape": {"outer": [[-1056.11, -291.85], [-1039.63, -292.73], [-1040.04, -300.42], [-1030.97, -300.9], [-1029.9, -281.17], [-1037.68, -280.75], [-1038.06, -287.84], [-1046.66, -287.37], [-1046.62, -286.67], [-1054.14, -286.27], [-1055.8, -286.18], [-1056.11, -291.85]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.166, "pop": 0, "jobs": 166}}, {"shape": {"outer": [[-1027.49, -300.87], [-1025.02, -300.88], [-1025.12, -302.9], [-1022.03, -303.05], [-1022.08, -304.14], [-1015.5, -304.47], [-1015.39, -302.28], [-1009.53, -302.57], [-1009.47, -301.45], [-992.43, -302.29], [-993.59, -325.52], [-995.64, -325.42], [-995.87, -330.02], [-977.05, -330.96], [-976.84, -326.7], [-978.03, -326.64], [-977.75, -320.97], [-975.3, -321.1], [-975.05, -316.14], [-976.21, -316.08], [-975.33, -298.3], [-973.99, -298.36], [-973.75, -293.63], [-975.36, -293.55], [-974.98, -285.92], [-985.89, -285.37], [-985.76, -282.83], [-992.04, -282.53], [-992.16, -284.87], [-1013.87, -283.79], [-1013.8, -282.73], [-1026.29, -281.95], [-1027.49, -300.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 579, "jobs": 0}}, {"shape": {"outer": [[-1060.16, -293.52], [-1042.46, -294.24], [-1043.25, -313.59], [-1060.95, -312.87], [-1060.16, -293.52]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-927.61, -568.43], [-911.02, -569.19], [-910.74, -563.32], [-915.63, -563.1], [-915.52, -560.67], [-927.23, -560.13], [-927.61, -568.43]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-781.75, -516.17], [-771.87, -526.57], [-766.03, -521.07], [-775.91, -510.67], [-781.75, -516.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-872.36, -595.57], [-864.31, -603.92], [-864.01, -603.64], [-860.8, -606.99], [-855.24, -601.67], [-866.5, -589.97], [-872.36, -595.57]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-829.17, -551.4], [-823.53, -546.28], [-810.32, -560.73], [-813.12, -563.28], [-812.07, -564.42], [-814.9, -567.0], [-829.17, -551.4]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-834.96, -563.2], [-825.61, -573.79], [-820.02, -568.9], [-829.38, -558.3], [-834.96, -563.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-878.75, -602.75], [-873.2, -597.73], [-862.86, -609.08], [-868.42, -614.1], [-878.75, -602.75]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-812.63, -541.87], [-801.57, -554.17], [-795.21, -548.5], [-806.27, -536.19], [-812.63, -541.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-798.0, -528.91], [-786.55, -541.4], [-783.96, -539.04], [-784.84, -538.08], [-781.3, -534.86], [-784.3, -531.59], [-783.91, -531.24], [-787.39, -527.44], [-787.78, -527.79], [-791.86, -523.33], [-793.82, -525.11], [-795.01, -523.81], [-798.3, -526.79], [-797.1, -528.09], [-798.0, -528.91]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-844.25, -567.89], [-833.01, -580.14], [-827.09, -574.75], [-829.79, -571.82], [-829.59, -571.62], [-833.63, -567.23], [-833.84, -567.41], [-838.34, -562.51], [-844.25, -567.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-843.74, -569.38], [-832.13, -581.99], [-837.12, -586.56], [-838.48, -585.08], [-839.32, -585.84], [-849.57, -574.71], [-843.74, -569.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-819.74, -546.03], [-814.96, -551.46], [-815.31, -551.76], [-812.2, -555.29], [-811.85, -554.99], [-808.06, -559.29], [-803.14, -554.98], [-814.81, -541.73], [-819.74, -546.03]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-804.8, -535.7], [-795.06, -546.35], [-789.71, -541.49], [-792.7, -538.22], [-792.5, -538.05], [-795.66, -534.6], [-795.84, -534.78], [-799.44, -530.84], [-804.8, -535.7]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-790.6, -521.01], [-786.33, -525.64], [-786.59, -525.88], [-783.21, -529.56], [-782.94, -529.31], [-778.04, -534.63], [-771.84, -528.95], [-784.4, -515.33], [-790.6, -521.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-901.95, -625.69], [-891.86, -636.61], [-886.04, -631.28], [-888.56, -628.54], [-888.15, -628.17], [-895.71, -619.98], [-901.95, -625.69]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-865.17, -590.78], [-859.62, -585.44], [-849.59, -595.78], [-855.13, -601.13], [-865.17, -590.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-855.73, -583.32], [-849.71, -577.86], [-840.73, -587.72], [-841.06, -588.02], [-839.77, -589.44], [-844.55, -593.76], [-845.84, -592.35], [-846.26, -592.72], [-848.7, -590.05], [-849.18, -590.49], [-855.73, -583.32]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-893.09, -619.27], [-886.32, -613.11], [-876.4, -623.94], [-879.29, -626.57], [-880.46, -625.29], [-884.35, -628.82], [-893.09, -619.27]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-885.79, -609.91], [-875.95, -620.51], [-875.48, -620.08], [-874.23, -621.42], [-869.66, -617.2], [-870.9, -615.86], [-870.43, -615.43], [-880.25, -604.82], [-885.79, -609.91]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-927.5, -580.67], [-927.91, -588.81], [-917.17, -589.35], [-916.76, -581.21], [-927.5, -580.67]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-836.74, -485.87], [-830.17, -479.76], [-821.19, -489.33], [-827.77, -495.45], [-836.74, -485.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-830.11, -475.25], [-828.52, -477.0], [-829.16, -477.57], [-827.33, -479.6], [-826.69, -479.03], [-824.63, -481.3], [-812.31, -470.25], [-817.79, -464.19], [-830.11, -475.25]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-852.16, -498.0], [-840.44, -510.64], [-834.38, -505.07], [-846.08, -492.42], [-852.16, -498.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-915.78, -620.71], [-912.36, -624.49], [-904.42, -617.36], [-905.38, -616.31], [-902.28, -613.52], [-904.74, -610.8], [-915.78, -620.71]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-873.17, -519.12], [-864.56, -528.36], [-863.86, -527.7], [-861.48, -530.26], [-857.64, -526.71], [-861.17, -522.91], [-859.77, -521.63], [-867.22, -513.62], [-873.17, -519.12]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-807.49, -500.33], [-803.11, -504.97], [-792.77, -495.27], [-798.01, -489.71], [-805.22, -496.46], [-804.34, -497.39], [-807.49, -500.33]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-901.47, -591.85], [-901.57, -595.79], [-895.13, -595.95], [-895.03, -592.01], [-901.47, -591.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-896.87, -567.56], [-891.03, -567.8], [-890.82, -562.82], [-896.67, -562.59], [-896.87, -567.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-844.17, -492.98], [-836.88, -500.89], [-836.65, -500.69], [-834.35, -503.2], [-828.62, -497.97], [-838.22, -487.55], [-844.17, -492.98]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-865.46, -512.0], [-855.12, -523.71], [-854.05, -522.78], [-850.79, -526.46], [-847.43, -523.52], [-850.79, -519.73], [-849.54, -518.63], [-859.8, -507.03], [-865.46, -512.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-925.3, -579.3], [-910.26, -579.65], [-910.18, -576.19], [-912.46, -576.14], [-912.41, -573.98], [-925.16, -573.69], [-925.17, -573.98], [-927.25, -573.93], [-927.38, -579.08], [-925.29, -579.13], [-925.3, -579.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-904.65, -547.19], [-899.25, -541.94], [-889.63, -551.77], [-890.86, -552.97], [-889.49, -554.37], [-892.73, -557.52], [-894.09, -556.12], [-895.02, -557.03], [-904.65, -547.19]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-882.11, -526.86], [-873.12, -536.64], [-868.67, -532.57], [-870.36, -530.75], [-869.35, -529.81], [-870.19, -528.89], [-869.66, -528.41], [-873.4, -524.35], [-874.44, -525.3], [-877.16, -522.34], [-882.11, -526.86]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-928.43, -598.95], [-922.78, -599.16], [-922.73, -598.04], [-916.69, -598.27], [-916.68, -597.94], [-913.37, -598.06], [-913.22, -594.0], [-928.21, -593.42], [-928.43, -598.95]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-927.92, -549.88], [-928.15, -556.72], [-917.26, -557.08], [-917.18, -554.58], [-913.77, -554.69], [-913.65, -550.81], [-917.05, -550.69], [-917.04, -550.24], [-927.92, -549.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-890.73, -532.0], [-877.81, -546.06], [-877.3, -545.6], [-875.89, -547.14], [-872.8, -544.33], [-874.28, -542.72], [-871.79, -540.45], [-882.86, -528.39], [-885.41, -530.71], [-887.19, -528.77], [-890.73, -532.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-922.28, -613.65], [-922.09, -613.85], [-923.42, -615.09], [-918.41, -620.39], [-908.61, -611.2], [-910.52, -609.17], [-907.97, -606.77], [-910.58, -603.99], [-913.15, -606.4], [-913.8, -605.7], [-922.28, -613.65]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-800.23, -504.35], [-793.88, -511.29], [-785.21, -503.4], [-791.55, -496.47], [-800.23, -504.35]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-821.76, -482.04], [-816.57, -487.74], [-813.24, -484.73], [-813.04, -484.96], [-810.09, -482.29], [-810.3, -482.06], [-807.48, -479.51], [-807.82, -479.14], [-806.75, -478.17], [-811.14, -473.34], [-812.21, -474.31], [-812.35, -474.17], [-813.6, -475.31], [-813.92, -474.95], [-821.76, -482.04]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-859.95, -504.51], [-856.1, -508.78], [-856.49, -509.14], [-849.24, -517.18], [-843.1, -511.69], [-854.21, -499.38], [-859.95, -504.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-898.21, -599.29], [-893.9, -603.97], [-887.35, -597.97], [-891.66, -593.29], [-898.21, -599.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-927.92, -608.41], [-918.69, -608.83], [-918.34, -601.21], [-927.57, -600.79], [-927.6, -601.33], [-929.7, -601.23], [-930.0, -608.03], [-927.9, -608.12], [-927.92, -608.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-816.67, -490.49], [-811.13, -496.47], [-802.91, -488.91], [-803.24, -488.55], [-800.22, -485.77], [-805.43, -480.14], [-816.67, -490.49]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-896.76, -540.46], [-886.12, -552.07], [-882.04, -548.35], [-883.19, -547.1], [-881.69, -545.74], [-887.71, -539.17], [-888.05, -539.48], [-891.52, -535.7], [-891.99, -536.12], [-892.78, -535.25], [-897.32, -539.38], [-896.53, -540.25], [-896.76, -540.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-886.17, -284.91], [-879.65, -292.01], [-865.9, -279.45], [-886.54, -257.01], [-887.75, -258.11], [-889.27, -259.5], [-901.61, -270.76], [-906.98, -275.68], [-907.54, -286.91], [-907.76, -291.49], [-890.17, -292.35], [-889.47, -278.09], [-885.84, -278.26], [-886.17, -284.91]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 1504, "jobs": 0}}, {"shape": {"outer": [[-831.5, -412.65], [-819.79, -425.43], [-792.4, -400.54], [-804.11, -387.76], [-831.5, -412.65]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.674, "pop": 337, "jobs": 0}}, {"shape": {"outer": [[-719.43, -301.78], [-717.72, -300.18], [-716.3, -301.7], [-704.03, -290.28], [-710.11, -283.81], [-723.47, -296.23], [-721.6, -298.23], [-722.21, -298.8], [-719.43, -301.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1785.87, -877.03], [-1768.2, -877.63], [-1767.81, -866.04], [-1785.48, -865.44], [-1785.87, -877.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.131, "pop": 0, "jobs": 131}}, {"shape": {"outer": [[-1745.84, -826.1], [-1724.56, -826.98], [-1725.33, -845.68], [-1746.61, -844.8], [-1745.84, -826.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.255, "pop": 0, "jobs": 255}}, {"shape": {"outer": [[-1801.73, -829.36], [-1787.31, -829.67], [-1786.77, -810.84], [-1801.19, -810.43], [-1801.36, -812.71], [-1804.09, -812.64], [-1804.15, -814.81], [-1801.32, -814.89], [-1801.47, -820.44], [-1806.5, -820.19], [-1806.59, -823.46], [-1801.57, -823.6], [-1801.73, -829.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.189, "pop": 0, "jobs": 189}}, {"shape": {"outer": [[-2062.54, -871.36], [-2035.83, -872.34], [-2036.37, -886.9], [-2063.07, -885.91], [-2062.54, -871.36]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-659.69, -214.14], [-665.03, -208.41], [-663.93, -207.39], [-666.37, -204.76], [-661.58, -200.35], [-659.01, -203.13], [-656.17, -200.51], [-650.96, -206.11], [-653.92, -208.84], [-649.12, -214.0], [-646.42, -211.51], [-641.2, -217.13], [-643.93, -219.63], [-639.16, -224.77], [-636.48, -222.29], [-631.42, -227.72], [-634.18, -230.26], [-631.68, -232.95], [-637.63, -238.44], [-639.85, -236.05], [-638.69, -234.97], [-639.01, -234.63], [-639.92, -235.46], [-645.12, -229.86], [-645.31, -230.04], [-649.52, -225.52], [-648.48, -224.57], [-648.91, -224.1], [-649.72, -224.84], [-655.01, -219.16], [-655.17, -219.31], [-659.41, -214.74], [-658.34, -213.76], [-658.77, -213.29], [-659.69, -214.14]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.602, "pop": 301, "jobs": 0}}, {"shape": {"outer": [[-703.89, -238.48], [-699.13, -234.08], [-696.58, -236.83], [-695.68, -236.0], [-690.38, -241.7], [-691.35, -242.59], [-686.63, -247.68], [-685.77, -246.88], [-680.63, -252.4], [-681.61, -253.31], [-676.82, -258.47], [-675.91, -257.63], [-670.74, -263.19], [-671.73, -264.11], [-669.2, -266.83], [-673.99, -271.27], [-676.42, -268.65], [-679.28, -271.29], [-684.45, -265.72], [-681.56, -263.05], [-686.37, -257.86], [-689.16, -260.44], [-694.39, -254.81], [-691.6, -252.22], [-696.13, -247.36], [-698.79, -249.82], [-704.18, -244.01], [-701.26, -241.31], [-703.89, -238.48]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.576, "pop": 288, "jobs": 0}}, {"shape": {"outer": [[-644.16, -308.59], [-633.41, -320.49], [-608.4, -348.26], [-606.26, -350.57], [-588.53, -334.68], [-585.86, -332.27], [-613.43, -301.75], [-615.3, -299.66], [-620.46, -304.28], [-629.4, -294.38], [-639.89, -303.78], [-639.4, -304.33], [-644.16, -308.59]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.413, "pop": 0, "jobs": 413}}, {"shape": {"outer": [[-575.79, -328.24], [-570.96, -333.35], [-572.05, -334.37], [-569.33, -337.27], [-568.13, -336.15], [-563.36, -341.24], [-540.19, -319.69], [-525.21, -305.78], [-580.14, -247.09], [-618.16, -282.43], [-613.5, -287.41], [-614.47, -288.31], [-611.42, -291.58], [-610.43, -290.67], [-605.88, -295.59], [-583.61, -275.19], [-584.56, -274.16], [-579.71, -269.73], [-574.79, -265.25], [-570.32, -270.11], [-560.64, -280.62], [-569.11, -288.35], [-564.4, -293.47], [-570.89, -299.4], [-571.06, -301.04], [-560.76, -311.96], [-559.65, -313.13], [-575.79, -328.24]], "holes": []}, "height": 56.0, "data": {"type": "residential", "density": 1.0, "pop": 7611, "jobs": 0}}, {"shape": {"outer": [[-649.58, -366.21], [-641.49, -358.24], [-645.48, -354.22], [-653.58, -362.19], [-653.1, -362.67], [-654.31, -363.85], [-651.11, -367.08], [-649.9, -365.89], [-649.58, -366.21]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-792.04, -456.55], [-791.43, -457.2], [-792.52, -458.22], [-788.23, -462.79], [-787.13, -461.77], [-786.67, -462.25], [-776.44, -452.68], [-781.8, -446.98], [-792.04, -456.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-721.95, -415.04], [-719.33, -412.66], [-718.11, -413.99], [-715.11, -411.26], [-733.15, -391.55], [-738.77, -396.65], [-721.95, -415.04]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-726.65, -472.77], [-723.05, -469.54], [-723.86, -468.65], [-685.69, -434.33], [-684.97, -435.13], [-681.53, -432.04], [-693.2, -419.14], [-738.41, -459.8], [-726.65, -472.77]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 702, "jobs": 0}}, {"shape": {"outer": [[-654.73, -362.8], [-645.76, -353.96], [-650.89, -348.79], [-659.86, -357.63], [-654.73, -362.8]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-769.32, -425.62], [-758.22, -437.58], [-751.78, -431.65], [-755.88, -427.25], [-755.75, -427.13], [-759.92, -422.63], [-760.05, -422.75], [-762.89, -419.69], [-769.32, -425.62]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-747.57, -402.99], [-732.25, -419.6], [-726.29, -414.14], [-741.62, -397.53], [-747.57, -402.99]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-663.23, -348.69], [-661.29, -350.76], [-666.66, -355.71], [-663.4, -359.22], [-651.73, -348.46], [-656.92, -342.86], [-663.23, -348.69]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-753.46, -425.69], [-747.72, -420.48], [-750.96, -416.95], [-750.79, -416.79], [-753.28, -414.07], [-753.44, -414.23], [-754.91, -412.63], [-760.79, -417.98], [-758.53, -420.45], [-758.66, -420.55], [-755.5, -424.01], [-755.23, -423.78], [-753.46, -425.69]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-714.27, -396.22], [-707.91, -390.36], [-711.58, -386.4], [-711.39, -386.22], [-715.11, -382.21], [-715.31, -382.39], [-718.21, -379.27], [-724.58, -385.14], [-714.27, -396.22]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-754.19, -411.91], [-740.47, -426.7], [-734.69, -421.37], [-748.42, -406.59], [-754.19, -411.91]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-799.61, -449.15], [-799.18, -449.61], [-800.51, -450.83], [-795.55, -456.18], [-794.3, -455.03], [-794.14, -455.21], [-783.2, -445.15], [-788.39, -439.56], [-793.21, -444.0], [-793.57, -443.6], [-799.61, -449.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-774.67, -479.44], [-762.14, -468.44], [-758.33, -472.76], [-762.09, -476.06], [-760.81, -477.51], [-769.58, -485.2], [-774.67, -479.44]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-786.25, -464.9], [-780.86, -470.65], [-769.05, -459.63], [-774.44, -453.88], [-786.25, -464.9]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-753.62, -485.98], [-744.72, -495.59], [-743.93, -494.87], [-741.13, -497.89], [-736.18, -493.33], [-747.88, -480.69], [-753.62, -485.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-660.74, -393.49], [-648.04, -407.43], [-641.9, -401.88], [-654.6, -387.93], [-657.05, -390.14], [-657.91, -389.21], [-661.01, -392.01], [-660.15, -392.95], [-660.74, -393.49]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-747.68, -480.26], [-736.02, -492.85], [-730.77, -488.02], [-734.1, -484.41], [-733.32, -483.69], [-741.63, -474.71], [-747.68, -480.26]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-663.08, -336.81], [-665.81, -333.93], [-664.74, -332.92], [-668.67, -328.76], [-677.01, -336.59], [-673.24, -340.58], [-673.9, -341.2], [-671.01, -344.26], [-669.96, -343.27], [-667.56, -345.82], [-663.25, -341.77], [-665.66, -339.24], [-663.08, -336.81]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-775.74, -431.68], [-766.51, -441.63], [-760.78, -436.35], [-770.01, -426.4], [-770.3, -426.67], [-771.71, -425.16], [-776.92, -429.97], [-775.52, -431.48], [-775.74, -431.68]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-705.88, -406.52], [-710.9, -411.09], [-707.28, -415.04], [-702.26, -410.47], [-705.88, -406.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-784.2, -439.35], [-773.29, -451.27], [-766.58, -445.18], [-774.99, -435.99], [-775.63, -436.58], [-778.13, -433.85], [-784.2, -439.35]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-731.54, -392.45], [-730.2, -391.22], [-730.63, -390.77], [-727.34, -387.76], [-726.91, -388.22], [-726.04, -387.43], [-723.82, -389.84], [-723.29, -389.36], [-719.79, -393.18], [-720.3, -393.65], [-716.1, -398.23], [-721.59, -403.25], [-731.54, -392.45]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-780.37, -473.09], [-777.29, -476.45], [-776.71, -475.91], [-774.34, -478.5], [-768.1, -472.85], [-770.05, -470.71], [-766.01, -467.05], [-769.51, -463.21], [-780.37, -473.09]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-639.73, -386.81], [-636.66, -390.26], [-633.49, -387.46], [-630.03, -391.33], [-628.21, -389.72], [-628.04, -389.92], [-624.13, -386.47], [-630.8, -378.98], [-632.37, -380.36], [-637.2, -374.96], [-641.42, -378.71], [-636.64, -384.07], [-639.73, -386.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-686.44, -349.25], [-683.37, -352.51], [-683.84, -352.96], [-675.61, -361.7], [-669.71, -356.2], [-681.01, -344.18], [-686.44, -349.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-696.84, -355.94], [-685.18, -368.38], [-678.33, -362.0], [-685.33, -354.52], [-686.1, -355.25], [-690.75, -350.28], [-696.84, -355.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-670.96, -365.86], [-667.46, -362.59], [-667.19, -362.87], [-665.72, -361.49], [-656.86, -370.92], [-661.08, -374.88], [-665.01, -370.71], [-665.75, -371.39], [-670.96, -365.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-143.4, -425.42], [-139.92, -422.28], [-137.97, -391.27], [-141.61, -387.26], [-161.64, -405.31], [-143.4, -425.42]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.412, "pop": 0, "jobs": 412}}, {"shape": {"outer": [[-117.76, -386.4], [-97.07, -408.52], [-90.78, -402.69], [-70.74, -384.07], [-96.94, -356.06], [-114.64, -372.5], [-117.18, -372.39], [-117.76, -386.4]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 2124, "jobs": 0}}, {"shape": {"outer": [[-118.19, -367.42], [-113.03, -367.56], [-98.62, -354.15], [-113.58, -338.18], [-114.69, -337.55], [-116.35, -337.74], [-117.41, -338.57], [-118.19, -367.42]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[-119.75, -426.6], [-117.22, -427.41], [-99.84, -411.01], [-114.83, -395.24], [-118.62, -395.1], [-119.75, -426.6]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.632, "pop": 316, "jobs": 0}}, {"shape": {"outer": [[312.22, -85.37], [320.8, -94.64], [336.36, -80.03], [339.22, -77.46], [330.75, -68.33], [312.22, -85.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[290.46, -180.31], [297.03, -187.25], [327.33, -159.36], [326.61, -157.71], [304.0, -156.89], [303.94, -158.24], [303.31, -171.74], [300.47, -171.51], [290.46, -180.31]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.298, "pop": 149, "jobs": 0}}, {"shape": {"outer": [[-320.67, -229.88], [-305.19, -216.02], [-302.97, -213.98], [-292.45, -204.58], [-305.19, -190.4], [-315.22, -183.9], [-341.24, -207.13], [-320.67, -229.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.732, "pop": 0, "jobs": 732}}, {"shape": {"outer": [[-146.0, -527.7], [-145.14, -501.1], [-153.81, -500.86], [-156.09, -502.78], [-157.16, -527.17], [-146.0, -527.7]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-190.67, -521.39], [-185.44, -526.97], [-183.92, -525.56], [-183.61, -525.91], [-180.4, -522.93], [-180.01, -523.34], [-176.01, -519.61], [-176.39, -519.2], [-173.72, -516.72], [-178.23, -511.89], [-179.25, -512.83], [-179.94, -512.1], [-181.43, -513.48], [-182.0, -512.86], [-189.23, -519.59], [-188.99, -519.84], [-190.67, -521.39]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-157.31, -499.89], [-142.35, -486.2], [-147.75, -480.32], [-162.73, -494.01], [-157.31, -499.89]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-182.94, -527.04], [-180.97, -529.19], [-182.91, -530.96], [-179.45, -534.74], [-165.26, -521.86], [-168.35, -518.48], [-169.77, -519.77], [-172.12, -517.21], [-182.94, -527.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2062.52, -570.56], [-2062.1, -560.45], [-2068.88, -560.17], [-2069.17, -567.25], [-2066.82, -567.35], [-2066.95, -570.38], [-2062.52, -570.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2050.17, -619.32], [-2032.37, -619.72], [-2031.99, -602.96], [-2049.79, -602.55], [-2050.17, -619.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[-2074.67, -617.26], [-2057.21, -617.79], [-2056.59, -597.21], [-2057.7, -597.18], [-2057.52, -591.09], [-2072.86, -590.64], [-2073.03, -596.42], [-2074.05, -596.39], [-2074.67, -617.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.362, "pop": 181, "jobs": 0}}, {"shape": {"outer": [[-2093.94, -544.38], [-2085.17, -544.61], [-2084.83, -531.17], [-2091.69, -530.99], [-2091.77, -534.02], [-2093.69, -533.97], [-2093.94, -544.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2052.94, -503.69], [-2029.67, -504.66], [-2029.39, -498.14], [-2052.67, -497.18], [-2052.94, -503.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2082.21, -570.91], [-2073.58, -571.32], [-2072.95, -558.46], [-2079.98, -558.11], [-2080.08, -560.29], [-2081.69, -560.21], [-2082.21, -570.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2107.75, -591.82], [-2108.71, -611.44], [-2095.9, -612.06], [-2094.95, -592.44], [-2107.75, -591.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-2053.86, -515.67], [-2029.84, -516.68], [-2029.54, -509.5], [-2053.56, -508.49], [-2053.86, -515.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2045.51, -542.61], [-2028.04, -543.22], [-2027.7, -533.76], [-2045.17, -533.14], [-2045.51, -542.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2140.98, -605.23], [-2118.01, -605.96], [-2118.41, -618.74], [-2141.39, -618.02], [-2140.98, -605.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.236, "pop": 118, "jobs": 0}}, {"shape": {"outer": [[-2049.45, -596.45], [-2031.76, -596.76], [-2031.48, -580.7], [-2049.17, -580.39], [-2049.45, -596.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-2084.95, -572.85], [-2084.28, -557.34], [-2092.68, -556.97], [-2093.2, -568.89], [-2091.22, -568.97], [-2091.37, -572.58], [-2084.95, -572.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2042.05, -566.65], [-2041.83, -561.67], [-2043.84, -561.57], [-2043.7, -558.2], [-2029.94, -558.8], [-2030.3, -567.15], [-2042.05, -566.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2068.91, -553.69], [-2056.51, -554.2], [-2056.16, -545.82], [-2068.56, -545.3], [-2068.91, -553.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2049.53, -576.52], [-2029.17, -577.18], [-2028.89, -568.46], [-2049.24, -567.8], [-2049.53, -576.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2045.03, -527.97], [-2030.35, -528.56], [-2029.99, -519.75], [-2044.67, -519.16], [-2045.03, -527.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2141.02, -598.14], [-2117.88, -599.02], [-2117.41, -586.72], [-2140.56, -585.84], [-2141.02, -598.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-2047.77, -554.85], [-2031.86, -555.49], [-2031.74, -552.44], [-2028.98, -552.54], [-2028.8, -547.88], [-2047.75, -547.12], [-2047.81, -548.48], [-2049.4, -548.41], [-2049.55, -551.89], [-2047.66, -551.96], [-2047.77, -554.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2045.39, -495.09], [-2027.8, -495.64], [-2027.6, -489.21], [-2033.72, -489.02], [-2033.68, -487.56], [-2043.64, -487.26], [-2043.69, -489.18], [-2045.21, -489.12], [-2045.39, -495.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2088.61, -616.24], [-2080.42, -616.37], [-2080.05, -592.8], [-2088.23, -592.67], [-2088.61, -616.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-396.27, -743.92], [-390.59, -738.64], [-406.0, -722.15], [-411.68, -727.42], [-396.27, -743.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-394.81, -777.28], [-392.74, -779.54], [-391.2, -778.14], [-379.31, -791.15], [-374.74, -787.0], [-384.57, -776.25], [-384.81, -776.47], [-388.96, -771.95], [-394.81, -777.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-364.99, -704.16], [-359.13, -698.67], [-362.47, -695.14], [-362.04, -694.74], [-365.7, -690.87], [-366.12, -691.27], [-369.3, -687.9], [-375.16, -693.39], [-372.03, -696.69], [-372.32, -696.97], [-368.66, -700.85], [-368.37, -700.57], [-364.99, -704.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-465.22, -772.78], [-460.22, -778.18], [-461.41, -779.29], [-466.28, -774.04], [-472.34, -779.62], [-461.83, -790.95], [-455.3, -784.94], [-457.85, -782.17], [-456.49, -780.92], [-453.15, -784.52], [-448.77, -780.49], [-460.19, -768.16], [-465.22, -772.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-380.22, -701.51], [-363.97, -718.93], [-360.67, -715.88], [-362.17, -714.27], [-359.24, -711.55], [-372.4, -697.45], [-373.25, -698.22], [-373.79, -697.64], [-375.59, -699.31], [-376.64, -698.19], [-380.22, -701.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-361.56, -767.29], [-340.09, -748.02], [-350.94, -736.01], [-372.4, -755.3], [-361.56, -767.29]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.654, "pop": 327, "jobs": 0}}, {"shape": {"outer": [[-387.23, -724.83], [-382.49, -720.46], [-385.81, -716.88], [-384.43, -715.61], [-391.95, -707.5], [-397.11, -712.26], [-393.18, -716.49], [-394.15, -717.39], [-387.23, -724.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-472.38, -809.64], [-467.25, -815.12], [-463.06, -811.21], [-462.77, -811.51], [-458.48, -807.52], [-458.76, -807.22], [-455.46, -804.15], [-460.6, -798.67], [-472.38, -809.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-386.3, -705.3], [-383.72, -708.13], [-384.95, -709.25], [-377.83, -717.04], [-372.45, -712.16], [-376.26, -708.0], [-375.84, -707.62], [-381.73, -701.16], [-386.3, -705.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-366.74, -687.27], [-358.16, -696.21], [-351.26, -689.65], [-354.74, -686.03], [-354.55, -685.85], [-359.37, -680.81], [-362.52, -683.82], [-362.81, -683.53], [-366.74, -687.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-418.87, -730.61], [-417.29, -732.35], [-417.65, -732.67], [-413.97, -736.72], [-414.45, -737.15], [-411.21, -740.72], [-410.73, -740.29], [-408.51, -742.73], [-408.15, -742.41], [-405.02, -745.88], [-400.09, -741.45], [-413.95, -726.17], [-418.87, -730.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-420.8, -735.67], [-407.27, -750.44], [-413.03, -755.68], [-428.23, -739.09], [-424.84, -736.0], [-423.17, -737.83], [-420.8, -735.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-449.86, -761.18], [-435.77, -776.32], [-428.65, -769.76], [-441.84, -755.58], [-443.87, -757.45], [-444.77, -756.48], [-449.86, -761.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-347.34, -693.11], [-341.46, -687.77], [-347.14, -681.58], [-346.59, -681.08], [-350.3, -677.02], [-350.85, -677.53], [-353.11, -675.08], [-358.75, -680.22], [-353.36, -686.1], [-353.59, -686.3], [-347.34, -693.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-384.05, -772.98], [-371.71, -786.53], [-364.98, -780.44], [-377.31, -766.9], [-380.38, -769.66], [-382.2, -767.66], [-384.89, -770.09], [-383.06, -772.1], [-384.05, -772.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-478.65, -798.9], [-479.16, -798.36], [-480.85, -799.96], [-485.87, -794.67], [-484.38, -793.28], [-485.51, -792.08], [-475.95, -783.09], [-469.31, -790.11], [-478.65, -798.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-369.99, -760.27], [-359.04, -772.64], [-365.41, -778.24], [-376.36, -765.87], [-373.82, -763.64], [-375.69, -761.53], [-373.07, -759.23], [-371.2, -761.33], [-369.99, -760.27]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-395.33, -730.34], [-389.81, -725.22], [-392.79, -722.02], [-392.51, -721.76], [-395.65, -718.39], [-395.94, -718.66], [-399.4, -714.95], [-405.23, -720.36], [-398.55, -727.5], [-398.25, -727.22], [-395.33, -730.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-400.97, -783.83], [-399.82, -785.05], [-400.29, -785.49], [-394.89, -791.29], [-394.42, -790.85], [-391.13, -794.39], [-391.72, -794.95], [-386.13, -800.96], [-385.53, -800.41], [-384.31, -801.71], [-379.78, -797.52], [-380.92, -796.3], [-379.11, -794.63], [-393.5, -779.18], [-394.06, -779.7], [-395.19, -778.48], [-400.97, -783.83]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[-473.97, -807.3], [-470.51, -804.04], [-471.03, -803.51], [-466.09, -798.87], [-470.51, -794.2], [-471.57, -795.2], [-472.55, -794.16], [-479.88, -801.05], [-473.97, -807.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-407.38, -789.49], [-403.51, -793.79], [-405.12, -795.22], [-402.31, -798.35], [-402.56, -798.58], [-399.88, -801.54], [-399.39, -801.1], [-393.54, -807.61], [-388.16, -802.8], [-390.06, -800.7], [-389.98, -800.62], [-392.84, -797.44], [-392.28, -796.95], [-396.0, -792.82], [-396.56, -793.31], [-399.46, -790.08], [-400.15, -790.7], [-403.97, -786.44], [-407.38, -789.49]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-428.46, -741.71], [-411.98, -759.87], [-415.67, -763.19], [-417.07, -761.66], [-419.76, -764.09], [-425.63, -757.63], [-424.16, -756.31], [-426.19, -754.09], [-427.75, -755.49], [-433.7, -748.94], [-431.03, -746.54], [-432.29, -745.16], [-428.46, -741.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-436.07, -747.64], [-419.3, -765.97], [-423.95, -770.19], [-440.72, -751.86], [-436.07, -747.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-446.7, -650.95], [-438.16, -643.26], [-451.42, -628.64], [-459.96, -636.34], [-446.7, -650.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.145, "pop": 0, "jobs": 145}}, {"shape": {"outer": [[-391.66, -644.98], [-377.53, -660.71], [-370.53, -654.48], [-384.67, -638.73], [-391.66, -644.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-427.44, -681.01], [-421.85, -675.93], [-412.18, -686.51], [-417.77, -691.59], [-427.44, -681.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-515.25, -759.76], [-512.41, -757.19], [-511.97, -757.67], [-508.17, -754.26], [-508.61, -753.78], [-502.77, -748.52], [-507.72, -743.06], [-520.2, -754.3], [-515.25, -759.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-456.11, -705.93], [-446.0, -716.94], [-441.31, -712.67], [-447.14, -706.31], [-446.16, -705.42], [-450.44, -700.76], [-450.72, -701.02], [-451.5, -700.18], [-454.77, -703.17], [-454.0, -704.0], [-456.11, -705.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-476.63, -728.22], [-473.39, -725.41], [-474.31, -724.35], [-471.8, -722.18], [-470.87, -723.24], [-470.65, -723.05], [-460.71, -734.46], [-466.7, -739.62], [-476.63, -728.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-490.04, -739.81], [-484.67, -745.59], [-485.75, -746.59], [-479.85, -752.94], [-475.13, -748.58], [-484.25, -738.78], [-485.95, -740.34], [-488.1, -738.02], [-490.04, -739.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-418.93, -614.82], [-412.84, -609.36], [-416.89, -604.87], [-416.46, -604.49], [-419.89, -600.7], [-420.31, -601.09], [-422.92, -598.2], [-423.16, -598.42], [-424.1, -597.38], [-429.71, -602.41], [-428.77, -603.45], [-429.02, -603.67], [-418.93, -614.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-461.28, -713.9], [-457.84, -717.65], [-457.46, -717.31], [-451.26, -724.09], [-447.39, -720.57], [-451.87, -715.68], [-451.01, -714.9], [-456.17, -709.27], [-458.0, -710.91], [-459.07, -709.75], [-461.01, -711.52], [-459.95, -712.69], [-461.28, -713.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-518.78, -738.96], [-508.1, -729.39], [-521.41, -714.62], [-532.1, -724.18], [-518.78, -738.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-404.9, -659.69], [-394.51, -670.95], [-387.63, -664.65], [-398.02, -653.38], [-404.9, -659.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-557.46, -718.13], [-545.69, -730.87], [-540.4, -726.02], [-552.18, -713.28], [-557.46, -718.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-491.75, -728.4], [-475.33, -746.55], [-468.91, -740.79], [-476.01, -732.94], [-477.51, -734.3], [-479.58, -732.01], [-478.02, -730.6], [-483.93, -724.07], [-486.7, -726.56], [-488.04, -725.06], [-491.75, -728.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-538.77, -724.51], [-538.03, -723.84], [-536.93, -725.05], [-531.43, -720.09], [-535.66, -715.43], [-535.15, -714.96], [-538.41, -711.36], [-538.93, -711.82], [-542.5, -707.88], [-543.86, -709.11], [-544.95, -707.9], [-549.21, -711.74], [-548.12, -712.95], [-548.74, -713.51], [-538.77, -724.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-386.19, -664.73], [-381.03, -659.99], [-383.97, -656.8], [-383.62, -656.48], [-390.44, -649.13], [-396.28, -654.51], [-390.19, -661.06], [-389.87, -660.77], [-386.19, -664.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-434.06, -686.27], [-430.65, -689.91], [-430.0, -689.3], [-423.02, -696.75], [-417.84, -691.93], [-428.23, -680.83], [-434.06, -686.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-506.28, -757.77], [-505.63, -757.17], [-506.36, -756.36], [-504.24, -754.46], [-503.51, -755.27], [-499.9, -752.0], [-489.49, -763.46], [-495.88, -769.22], [-506.28, -757.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-401.05, -640.82], [-391.75, -632.63], [-396.83, -626.92], [-406.12, -635.11], [-401.05, -640.82]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-514.2, -764.79], [-510.41, -768.82], [-510.9, -769.28], [-507.01, -773.43], [-506.52, -772.96], [-503.76, -775.91], [-497.17, -769.76], [-507.61, -758.64], [-514.2, -764.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-420.66, -620.74], [-415.78, -626.23], [-412.95, -623.72], [-412.58, -624.14], [-409.22, -621.17], [-409.59, -620.76], [-406.46, -618.01], [-409.28, -614.83], [-407.85, -613.57], [-409.91, -611.25], [-420.66, -620.74]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-471.72, -720.47], [-460.54, -732.37], [-454.16, -726.44], [-465.34, -714.53], [-466.49, -715.61], [-467.22, -714.83], [-470.04, -717.46], [-469.31, -718.23], [-471.72, -720.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-446.64, -702.62], [-442.6, -698.88], [-443.4, -698.04], [-441.32, -696.11], [-440.51, -696.94], [-432.77, -705.2], [-432.98, -705.39], [-431.02, -707.49], [-436.35, -712.44], [-438.31, -710.34], [-438.91, -710.89], [-446.64, -702.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-406.63, -659.71], [-395.52, -671.88], [-395.76, -672.1], [-394.28, -673.72], [-400.44, -679.3], [-401.92, -677.68], [-402.43, -678.13], [-413.54, -665.97], [-411.9, -664.48], [-412.77, -663.53], [-408.44, -659.61], [-407.57, -660.56], [-406.63, -659.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-437.14, -609.5], [-426.96, -620.55], [-421.05, -615.15], [-423.94, -612.02], [-423.6, -611.7], [-427.5, -607.46], [-427.84, -607.77], [-431.24, -604.1], [-437.14, -609.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-441.07, -692.62], [-435.5, -687.57], [-425.18, -698.83], [-430.74, -703.89], [-433.89, -700.45], [-434.44, -700.96], [-438.35, -696.69], [-437.79, -696.2], [-441.07, -692.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-518.56, -700.22], [-506.87, -712.99], [-447.26, -658.79], [-458.95, -646.03], [-518.56, -700.22]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 976, "jobs": 0}}, {"shape": {"outer": [[-408.26, -635.38], [-398.41, -626.4], [-398.56, -626.22], [-397.58, -625.33], [-402.33, -620.16], [-403.31, -621.05], [-403.62, -620.72], [-406.61, -623.44], [-406.99, -623.02], [-410.97, -626.64], [-410.57, -627.07], [-413.48, -629.71], [-408.26, -635.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-421.17, -673.4], [-413.73, -666.59], [-402.32, -678.94], [-409.76, -685.76], [-421.17, -673.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-430.6, -643.6], [-423.93, -637.59], [-440.18, -619.68], [-446.84, -625.68], [-430.6, -643.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.139, "pop": 0, "jobs": 139}}, {"shape": {"outer": [[-499.76, -749.75], [-488.87, -761.58], [-482.93, -756.15], [-493.81, -744.32], [-499.76, -749.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-520.42, -753.51], [-509.45, -743.45], [-513.68, -738.86], [-524.65, -748.93], [-520.42, -753.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-297.62, -671.03], [-290.89, -664.96], [-292.55, -663.14], [-292.95, -663.5], [-295.6, -660.59], [-295.19, -660.23], [-297.02, -658.21], [-298.09, -659.18], [-298.47, -658.77], [-297.4, -657.8], [-299.34, -655.67], [-299.74, -656.02], [-301.92, -653.62], [-301.53, -653.26], [-303.44, -651.16], [-310.17, -657.25], [-304.07, -663.95], [-303.36, -663.3], [-302.95, -663.75], [-303.67, -664.39], [-297.62, -671.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-269.73, -673.46], [-258.33, -685.63], [-252.24, -679.98], [-263.64, -667.8], [-269.73, -673.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-247.13, -577.17], [-244.4, -580.21], [-244.76, -580.52], [-236.68, -589.5], [-229.97, -583.5], [-240.78, -571.5], [-241.05, -571.73], [-242.08, -570.58], [-247.97, -575.84], [-246.92, -576.99], [-247.13, -577.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-251.13, -620.95], [-247.01, -625.39], [-242.42, -621.18], [-246.55, -616.72], [-251.13, -620.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-213.51, -645.71], [-206.88, -639.77], [-219.81, -625.4], [-226.45, -631.33], [-213.51, -645.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-207.69, -637.6], [-207.26, -637.23], [-206.41, -638.17], [-200.84, -633.24], [-201.67, -632.31], [-201.33, -632.0], [-204.26, -628.71], [-203.85, -628.34], [-207.96, -623.72], [-208.38, -624.1], [-211.13, -621.01], [-213.18, -622.82], [-215.95, -619.71], [-219.29, -622.66], [-216.46, -625.84], [-216.98, -626.3], [-214.23, -629.39], [-214.66, -629.77], [-207.69, -637.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-221.1, -577.64], [-234.44, -563.06], [-227.62, -556.85], [-214.27, -571.42], [-221.1, -577.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-203.28, -558.61], [-200.95, -561.13], [-201.23, -561.38], [-197.18, -565.78], [-188.75, -558.05], [-195.13, -551.14], [-203.28, -558.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-304.69, -690.88], [-306.7, -688.74], [-308.43, -690.35], [-312.32, -686.21], [-296.51, -671.49], [-292.09, -676.19], [-293.13, -677.16], [-291.65, -678.74], [-304.69, -690.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-353.29, -576.66], [-344.87, -569.22], [-350.76, -562.61], [-315.88, -531.76], [-317.99, -529.39], [-314.17, -526.0], [-308.36, -532.53], [-306.81, -531.15], [-303.63, -534.72], [-304.02, -537.11], [-306.02, -538.03], [-306.6, -542.9], [-304.59, -545.46], [-305.11, -553.08], [-313.75, -552.5], [-314.68, -550.62], [-319.26, -550.49], [-320.85, -552.3], [-323.03, -552.45], [-325.36, -554.53], [-337.61, -565.53], [-333.15, -570.46], [-353.63, -588.85], [-371.93, -568.62], [-373.62, -570.14], [-376.58, -566.86], [-379.72, -569.69], [-381.2, -568.06], [-389.69, -575.72], [-385.32, -580.53], [-388.83, -583.69], [-383.11, -589.99], [-380.09, -587.26], [-376.28, -591.45], [-378.75, -593.68], [-373.33, -599.63], [-369.08, -595.8], [-366.83, -598.26], [-367.98, -599.31], [-365.83, -601.66], [-369.77, -605.24], [-363.85, -611.71], [-359.24, -607.51], [-356.48, -610.53], [-358.32, -612.21], [-354.89, -615.95], [-353.0, -614.23], [-350.32, -617.13], [-354.82, -621.23], [-349.3, -627.24], [-344.26, -622.64], [-341.4, -625.73], [-326.63, -612.23], [-329.2, -609.44], [-327.81, -608.17], [-346.86, -587.49], [-338.91, -580.21], [-335.74, -580.41], [-325.53, -571.17], [-308.39, -590.0], [-312.58, -593.8], [-307.54, -599.34], [-296.13, -589.0], [-286.88, -580.67], [-278.87, -573.41], [-257.65, -554.23], [-275.86, -534.23], [-266.91, -526.14], [-252.08, -542.44], [-247.25, -538.09], [-245.47, -540.06], [-239.42, -534.62], [-241.24, -532.62], [-238.42, -530.08], [-257.92, -508.48], [-260.16, -510.49], [-263.55, -506.73], [-260.02, -503.57], [-276.63, -485.09], [-280.12, -488.27], [-281.97, -486.26], [-286.46, -490.34], [-289.4, -487.13], [-294.56, -491.73], [-292.45, -494.08], [-294.72, -496.1], [-277.31, -515.54], [-278.29, -516.4], [-279.26, -515.33], [-283.98, -519.51], [-286.59, -516.58], [-285.62, -515.71], [-299.2, -500.45], [-297.77, -499.2], [-301.93, -494.52], [-303.83, -496.2], [-305.42, -494.42], [-307.66, -496.39], [-308.41, -495.55], [-313.0, -499.6], [-312.21, -500.49], [-314.96, -502.91], [-314.36, -503.58], [-327.11, -514.83], [-328.69, -513.05], [-336.2, -519.7], [-342.13, -524.93], [-340.75, -526.48], [-362.03, -545.29], [-372.77, -554.79], [-353.29, -576.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5202}}, {"shape": {"outer": [[-238.96, -569.98], [-233.76, -575.67], [-234.44, -576.28], [-230.46, -580.63], [-224.26, -575.0], [-233.42, -564.96], [-233.84, -565.35], [-234.64, -564.48], [-239.45, -568.84], [-238.66, -569.71], [-238.96, -569.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-231.9, -594.83], [-226.78, -600.39], [-216.25, -590.76], [-221.37, -585.21], [-231.9, -594.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-307.57, -633.19], [-301.26, -640.18], [-301.11, -640.05], [-298.35, -643.1], [-294.14, -639.32], [-296.95, -636.22], [-295.96, -635.34], [-302.23, -628.4], [-302.56, -628.7], [-303.49, -627.66], [-305.25, -629.24], [-304.31, -630.27], [-307.57, -633.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-221.68, -651.86], [-214.98, -645.81], [-225.44, -634.32], [-226.81, -635.56], [-228.2, -634.03], [-232.37, -637.8], [-230.97, -639.32], [-232.15, -640.37], [-221.68, -651.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-250.85, -603.73], [-253.0, -601.35], [-253.82, -602.09], [-257.55, -597.98], [-256.73, -597.24], [-262.4, -590.98], [-257.24, -586.33], [-247.95, -596.59], [-248.36, -596.96], [-246.1, -599.45], [-250.85, -603.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-269.9, -598.08], [-262.74, -606.22], [-262.11, -605.67], [-261.33, -606.56], [-256.08, -601.97], [-256.87, -601.08], [-255.77, -600.12], [-262.93, -591.98], [-263.46, -592.45], [-264.85, -590.86], [-270.85, -596.1], [-269.46, -597.69], [-269.9, -598.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-317.94, -678.52], [-312.88, -684.08], [-309.71, -681.23], [-309.33, -681.64], [-305.41, -678.09], [-305.8, -677.68], [-302.9, -675.06], [-307.97, -669.5], [-317.94, -678.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-241.49, -630.05], [-236.32, -635.64], [-225.96, -626.13], [-231.13, -620.53], [-241.49, -630.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-278.53, -646.13], [-284.05, -640.13], [-283.68, -639.79], [-291.53, -631.24], [-291.9, -631.58], [-295.69, -627.45], [-295.98, -627.72], [-300.18, -623.14], [-295.32, -618.73], [-295.02, -619.05], [-293.9, -618.02], [-294.2, -617.69], [-286.92, -611.05], [-286.55, -611.46], [-285.49, -610.5], [-285.86, -610.09], [-281.15, -605.8], [-273.14, -614.53], [-273.6, -614.95], [-265.85, -623.39], [-265.65, -623.2], [-258.48, -631.0], [-260.95, -633.25], [-260.21, -634.06], [-268.2, -641.36], [-268.94, -640.55], [-270.24, -641.72], [-269.59, -642.43], [-274.94, -647.3], [-277.16, -644.88], [-278.53, -646.13]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.549, "pop": 0, "jobs": 549}}, {"shape": {"outer": [[-317.81, -637.33], [-305.8, -650.76], [-311.96, -656.21], [-323.96, -642.79], [-317.81, -637.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-256.56, -584.45], [-246.63, -595.44], [-239.23, -588.8], [-249.16, -577.8], [-256.56, -584.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-193.5, -577.02], [-192.07, -578.59], [-193.17, -579.6], [-190.45, -582.58], [-189.35, -581.57], [-188.15, -582.89], [-176.13, -571.98], [-176.39, -571.69], [-175.12, -570.55], [-179.94, -565.28], [-181.2, -566.43], [-181.48, -566.13], [-193.5, -577.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-205.56, -560.35], [-197.93, -553.3], [-198.28, -552.92], [-195.16, -550.04], [-201.06, -543.72], [-211.8, -553.65], [-205.56, -560.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-254.97, -660.51], [-242.66, -673.82], [-238.58, -670.08], [-238.08, -670.62], [-235.87, -668.58], [-248.68, -654.72], [-254.97, -660.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-176.88, -668.65], [-168.9, -661.37], [-177.14, -652.4], [-178.05, -653.23], [-178.91, -652.29], [-185.98, -658.74], [-176.88, -668.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-207.18, -612.8], [-205.16, -615.02], [-204.54, -614.47], [-196.65, -623.21], [-195.58, -623.22], [-194.69, -624.19], [-194.67, -625.51], [-195.77, -626.5], [-196.78, -626.5], [-201.14, -630.41], [-208.4, -622.38], [-207.6, -621.64], [-210.26, -618.69], [-209.31, -617.84], [-210.87, -616.12], [-207.18, -612.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-325.35, -670.01], [-321.74, -674.0], [-321.77, -674.76], [-320.7, -675.93], [-319.02, -675.97], [-317.9, -674.97], [-317.93, -674.1], [-308.56, -665.69], [-313.92, -659.75], [-325.35, -670.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-249.79, -647.56], [-234.44, -664.65], [-230.5, -661.14], [-245.85, -644.05], [-249.79, -647.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-220.51, -547.44], [-214.32, -554.2], [-203.2, -544.1], [-203.04, -544.27], [-200.42, -541.89], [-205.17, -536.69], [-207.16, -538.49], [-208.25, -537.3], [-209.36, -537.31], [-220.51, -547.44]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-260.4, -666.63], [-249.44, -678.45], [-244.84, -674.22], [-255.8, -662.4], [-260.4, -666.63]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-230.32, -619.94], [-225.24, -625.49], [-213.56, -614.85], [-218.63, -609.32], [-230.32, -619.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-337.57, -658.19], [-333.82, -662.34], [-334.45, -662.9], [-328.6, -669.37], [-322.64, -664.02], [-327.3, -658.86], [-327.82, -659.33], [-328.78, -658.25], [-327.68, -657.26], [-330.11, -654.58], [-330.69, -655.11], [-332.23, -653.4], [-332.68, -653.8], [-334.06, -652.28], [-338.74, -656.47], [-337.36, -658.0], [-337.57, -658.19]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-298.64, -690.94], [-293.3, -696.69], [-292.66, -696.1], [-290.35, -698.58], [-290.98, -699.18], [-283.16, -707.57], [-281.39, -705.93], [-280.22, -707.19], [-269.39, -697.18], [-270.54, -695.94], [-268.84, -694.37], [-285.41, -676.58], [-290.24, -681.05], [-289.91, -681.39], [-291.29, -682.66], [-291.61, -682.32], [-297.37, -687.65], [-296.31, -688.79], [-298.64, -690.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.392, "pop": 196, "jobs": 0}}, {"shape": {"outer": [[-275.77, -681.59], [-266.17, -691.91], [-259.55, -685.79], [-269.15, -675.48], [-275.77, -681.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-198.56, -568.14], [-193.01, -574.14], [-185.21, -567.01], [-185.63, -566.55], [-182.79, -563.95], [-187.91, -558.4], [-198.56, -568.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-259.45, -655.34], [-255.49, -651.5], [-263.71, -643.06], [-267.68, -646.9], [-259.45, -655.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-328.58, -653.92], [-328.09, -653.48], [-330.69, -650.6], [-327.97, -648.15], [-328.92, -647.1], [-325.55, -644.1], [-314.22, -656.69], [-320.8, -662.57], [-328.58, -653.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-219.83, -583.7], [-214.71, -589.34], [-199.36, -575.49], [-204.49, -569.85], [-219.83, -583.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-223.33, -556.37], [-220.51, -559.44], [-221.66, -560.48], [-217.41, -565.09], [-216.17, -563.95], [-214.03, -566.27], [-213.49, -565.77], [-212.86, -566.46], [-209.2, -563.11], [-209.84, -562.43], [-209.02, -561.67], [-218.22, -551.69], [-223.33, -556.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-277.35, -605.3], [-266.83, -616.88], [-260.75, -611.4], [-271.44, -599.62], [-275.17, -602.98], [-275.0, -603.18], [-277.35, -605.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-189.61, -599.83], [-179.19, -611.2], [-180.22, -612.14], [-178.03, -614.53], [-182.35, -618.46], [-184.64, -615.96], [-185.57, -616.82], [-195.9, -605.55], [-194.03, -603.85], [-195.6, -602.12], [-192.69, -599.47], [-191.12, -601.2], [-189.61, -599.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-184.28, -587.73], [-179.02, -593.49], [-179.44, -593.87], [-173.07, -600.86], [-167.67, -595.98], [-169.72, -593.73], [-169.47, -593.51], [-173.22, -589.4], [-172.96, -589.16], [-178.8, -582.76], [-184.28, -587.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-162.05, -598.79], [-163.64, -597.08], [-163.85, -597.26], [-167.11, -593.74], [-167.62, -594.22], [-172.24, -589.22], [-171.73, -588.75], [-173.47, -586.87], [-167.28, -581.19], [-164.17, -584.55], [-163.61, -584.04], [-159.62, -588.35], [-160.31, -588.99], [-156.21, -593.43], [-162.05, -598.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-202.2, -613.46], [-192.39, -624.16], [-185.7, -618.05], [-188.91, -614.56], [-188.46, -614.15], [-192.22, -610.06], [-192.66, -610.47], [-195.52, -607.36], [-202.2, -613.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-188.05, -598.35], [-186.15, -600.39], [-186.38, -600.6], [-175.65, -612.14], [-170.75, -607.61], [-172.57, -605.66], [-170.79, -604.01], [-179.54, -594.59], [-179.84, -594.87], [-181.89, -592.68], [-182.45, -593.19], [-188.05, -598.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-132.45, -696.53], [-125.94, -703.64], [-123.03, -701.0], [-121.77, -702.37], [-117.45, -698.44], [-118.71, -697.06], [-117.13, -695.63], [-115.89, -696.99], [-112.13, -693.58], [-113.42, -692.17], [-109.5, -688.62], [-108.3, -689.93], [-104.63, -686.61], [-105.89, -685.22], [-104.51, -683.96], [-103.18, -685.41], [-99.44, -682.03], [-100.78, -680.55], [-99.41, -679.32], [-98.23, -680.61], [-94.58, -677.29], [-95.82, -675.92], [-94.54, -674.76], [-93.32, -676.1], [-89.01, -672.19], [-90.29, -670.78], [-86.92, -667.72], [-102.08, -651.13], [-106.43, -655.06], [-105.13, -656.48], [-109.78, -660.69], [-110.98, -659.38], [-114.69, -662.74], [-113.44, -664.12], [-114.64, -665.21], [-115.83, -663.91], [-119.59, -667.31], [-118.33, -668.69], [-119.9, -670.11], [-121.09, -668.8], [-124.75, -672.13], [-123.54, -673.46], [-124.97, -674.77], [-126.23, -673.38], [-129.85, -676.67], [-128.51, -678.15], [-131.35, -680.73], [-128.15, -684.22], [-131.63, -687.38], [-129.21, -690.03], [-131.87, -692.44], [-130.1, -694.39], [-132.45, -696.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.89, "pop": 445, "jobs": 0}}, {"shape": {"outer": [[-129.41, -640.77], [-123.45, -647.4], [-113.6, -638.59], [-119.56, -631.97], [-123.05, -635.09], [-123.89, -634.15], [-126.52, -636.51], [-125.67, -637.43], [-129.41, -640.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-117.13, -467.81], [-112.53, -472.81], [-111.31, -471.67], [-95.1, -489.13], [-90.88, -493.69], [-84.7, -500.34], [-80.45, -496.62], [-65.8, -513.43], [-121.65, -563.99], [-117.13, -467.81]], "holes": []}, "height": 31.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6466}}, {"shape": {"outer": [[-92.21, -486.07], [-115.08, -463.29], [-114.94, -458.42], [-90.92, -437.24], [-90.83, -434.14], [-85.19, -428.69], [-82.53, -429.06], [-59.26, -408.15], [-54.38, -409.03], [-32.38, -431.5], [-44.82, -442.83], [-55.95, -452.97], [-60.73, -457.32], [-92.21, -486.07]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4044}}, {"shape": {"outer": [[-44.03, -470.89], [-34.62, -481.36], [-28.03, -475.48], [-33.57, -469.31], [-37.44, -465.01], [-44.03, -470.89]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-19.85, -469.94], [-5.43, -456.79], [-28.91, -431.25], [-43.32, -444.4], [-26.21, -463.03], [-19.85, -469.94]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.758, "pop": 0, "jobs": 758}}, {"shape": {"outer": [[-73.89, -575.88], [-74.61, -576.41], [-77.69, -578.7], [-51.98, -608.51], [-42.77, -599.96], [-68.62, -570.9], [-71.99, -574.18], [-72.93, -572.86], [-74.84, -574.54], [-73.89, -575.88]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.674, "pop": 337, "jobs": 0}}, {"shape": {"outer": [[-195.09, -664.21], [-189.79, -670.1], [-189.99, -670.28], [-186.22, -674.47], [-186.02, -674.29], [-182.58, -678.11], [-175.94, -672.17], [-188.47, -658.29], [-195.09, -664.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-10.49, -534.25], [-7.66, -537.38], [-6.79, -536.6], [5.43, -550.06], [8.58, -547.23], [9.69, -548.45], [20.97, -538.29], [21.42, -538.78], [27.69, -533.14], [26.14, -531.44], [28.73, -529.1], [18.94, -518.31], [16.83, -515.97], [17.82, -515.07], [15.66, -512.7], [14.73, -511.67], [9.47, -516.4], [10.86, -517.93], [-4.42, -531.69], [-5.87, -530.09], [-8.63, -532.58], [-10.49, -534.25]], "holes": []}, "height": 31.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1797}}, {"shape": {"outer": [[-159.5, -660.82], [-155.75, -657.35], [-153.66, -659.59], [-149.78, -656.0], [-152.39, -653.18], [-149.71, -650.7], [-152.61, -647.6], [-153.83, -648.74], [-163.19, -638.7], [-172.47, -647.28], [-164.28, -656.08], [-164.09, -655.89], [-159.5, -660.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[-221.31, -756.67], [-216.48, -761.79], [-207.52, -753.4], [-212.34, -748.28], [-221.31, -756.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-230.07, -713.88], [-197.28, -683.87], [-205.05, -675.44], [-237.84, -705.46], [-230.07, -713.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-210.4, -771.33], [-204.81, -777.28], [-191.33, -764.75], [-196.91, -758.79], [-210.4, -771.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-170.31, -683.86], [-157.4, -684.38], [-157.35, -683.11], [-154.42, -683.23], [-154.01, -673.22], [-163.85, -672.82], [-163.9, -674.0], [-166.35, -673.9], [-166.45, -676.21], [-170.0, -676.06], [-170.31, -683.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-216.63, -786.82], [-211.69, -782.22], [-216.64, -776.92], [-221.59, -781.52], [-216.63, -786.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-201.61, -673.26], [-190.52, -685.24], [-185.26, -680.42], [-187.92, -677.54], [-186.59, -676.33], [-194.68, -667.6], [-197.68, -670.36], [-198.04, -669.99], [-201.61, -673.26]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-170.75, -738.55], [-193.17, -737.62], [-193.02, -732.28], [-195.66, -729.16], [-201.02, -729.12], [-202.71, -727.12], [-201.71, -707.54], [-199.91, -705.52], [-194.67, -705.56], [-191.43, -703.36], [-190.95, -697.83], [-169.22, -698.45], [-169.14, -703.24], [-166.71, -706.14], [-164.42, -710.34], [-163.34, -714.62], [-163.26, -719.41], [-163.95, -724.73], [-166.04, -728.8], [-170.44, -733.8], [-170.75, -738.55]], "holes": []}, "height": 45.4, "data": {"type": "residential", "density": 1.0, "pop": 2897, "jobs": 0}}, {"shape": {"outer": [[-232.43, -766.74], [-227.68, -771.85], [-220.12, -764.87], [-224.88, -759.76], [-232.43, -766.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-250.76, -747.21], [-234.43, -764.98], [-215.34, -747.56], [-231.67, -729.79], [-241.19, -738.26], [-250.76, -747.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.5, "pop": 250, "jobs": 0}}, {"shape": {"outer": [[-570.99, -575.5], [-565.18, -581.77], [-566.09, -582.61], [-551.55, -598.3], [-553.69, -600.28], [-550.26, -603.98], [-547.84, -601.75], [-544.64, -605.2], [-527.26, -589.2], [-554.26, -560.09], [-570.99, -575.5]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 668, "jobs": 0}}, {"shape": {"outer": [[-636.49, -628.78], [-633.62, -632.02], [-634.07, -632.42], [-630.39, -636.56], [-629.94, -636.16], [-626.48, -640.06], [-626.27, -639.88], [-622.24, -644.42], [-617.03, -639.82], [-624.66, -631.23], [-624.22, -630.84], [-627.86, -626.75], [-628.3, -627.14], [-631.08, -624.0], [-636.49, -628.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-472.1, -567.65], [-466.49, -573.67], [-455.91, -563.92], [-456.89, -562.85], [-455.34, -561.42], [-459.69, -556.73], [-461.25, -558.16], [-461.51, -557.89], [-472.1, -567.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-508.25, -517.29], [-502.03, -523.86], [-501.63, -523.48], [-498.89, -526.38], [-495.63, -523.32], [-494.63, -524.36], [-491.57, -521.48], [-502.38, -510.06], [-506.92, -514.35], [-506.08, -515.24], [-508.25, -517.29]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-517.97, -523.66], [-517.08, -524.63], [-516.34, -523.96], [-503.67, -537.96], [-510.16, -543.8], [-520.02, -532.9], [-519.74, -532.64], [-522.65, -529.43], [-521.86, -528.7], [-522.63, -527.85], [-517.97, -523.66]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-554.74, -683.71], [-546.12, -675.89], [-565.59, -654.55], [-573.06, -661.33], [-571.22, -663.34], [-572.37, -664.39], [-554.74, -683.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.266, "pop": 133, "jobs": 0}}, {"shape": {"outer": [[-486.9, -548.53], [-486.3, -549.18], [-487.48, -550.26], [-484.28, -553.76], [-483.1, -552.68], [-482.79, -553.01], [-479.93, -550.43], [-479.68, -550.71], [-476.29, -547.62], [-476.54, -547.35], [-472.83, -543.98], [-476.94, -539.5], [-481.43, -543.56], [-481.77, -543.2], [-484.29, -545.49], [-483.95, -545.86], [-486.9, -548.53]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-489.48, -584.49], [-483.95, -590.58], [-483.73, -590.39], [-480.92, -593.48], [-479.35, -592.07], [-478.55, -592.95], [-480.01, -594.26], [-476.15, -598.52], [-475.42, -597.87], [-472.28, -601.33], [-470.23, -599.48], [-469.49, -600.29], [-465.26, -596.46], [-482.13, -577.87], [-489.48, -584.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[-541.1, -671.61], [-536.32, -667.19], [-537.77, -665.63], [-537.57, -665.45], [-548.1, -654.11], [-553.23, -658.84], [-542.68, -670.2], [-542.54, -670.07], [-541.1, -671.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-492.77, -545.71], [-488.43, -541.85], [-486.38, -544.15], [-479.21, -537.79], [-482.11, -534.54], [-480.76, -533.34], [-484.65, -528.98], [-493.32, -536.66], [-492.25, -537.87], [-496.44, -541.59], [-492.77, -545.71]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-572.6, -638.08], [-567.45, -643.75], [-562.33, -639.13], [-567.47, -633.46], [-572.6, -638.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-570.87, -704.14], [-565.42, -699.18], [-566.63, -697.87], [-561.7, -693.38], [-561.21, -693.9], [-557.67, -690.67], [-558.15, -690.14], [-557.77, -689.8], [-574.01, -672.11], [-587.75, -684.63], [-584.42, -688.26], [-583.92, -687.82], [-574.98, -697.57], [-576.03, -698.52], [-570.87, -704.14]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.482, "pop": 241, "jobs": 0}}, {"shape": {"outer": [[-517.28, -520.38], [-512.91, -516.24], [-509.96, -519.33], [-509.17, -518.57], [-504.79, -523.17], [-505.59, -523.92], [-502.55, -527.11], [-506.92, -531.24], [-509.83, -528.2], [-510.36, -528.71], [-514.79, -524.06], [-514.25, -523.55], [-517.28, -520.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-520.65, -650.98], [-518.88, -649.36], [-518.61, -649.67], [-513.56, -645.04], [-513.84, -644.74], [-510.94, -642.07], [-516.24, -636.32], [-506.33, -627.24], [-501.05, -632.97], [-498.24, -630.4], [-497.91, -630.75], [-492.82, -626.1], [-493.15, -625.74], [-491.42, -624.16], [-500.36, -614.46], [-501.24, -615.26], [-507.09, -608.93], [-506.09, -608.01], [-515.19, -598.15], [-524.83, -606.99], [-521.03, -611.12], [-531.06, -620.31], [-534.71, -616.37], [-544.31, -625.16], [-535.49, -634.72], [-534.48, -633.79], [-528.49, -640.28], [-529.58, -641.3], [-520.65, -650.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.958, "pop": 479, "jobs": 0}}, {"shape": {"outer": [[-603.86, -666.0], [-598.15, -672.14], [-584.92, -659.92], [-590.63, -653.77], [-603.86, -666.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-553.72, -474.38], [-543.87, -484.83], [-534.89, -476.43], [-540.51, -470.47], [-540.07, -470.06], [-542.09, -467.91], [-542.52, -468.32], [-544.74, -465.98], [-553.72, -474.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-629.6, -621.75], [-619.6, -632.85], [-613.73, -627.61], [-616.1, -624.97], [-615.79, -624.69], [-619.7, -620.36], [-620.01, -620.64], [-623.73, -616.51], [-629.6, -621.75]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-617.33, -650.79], [-612.77, -655.88], [-597.98, -642.73], [-603.14, -636.97], [-604.82, -638.47], [-605.01, -638.25], [-613.5, -645.8], [-612.71, -646.69], [-617.33, -650.79]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-609.99, -655.9], [-609.76, -656.15], [-610.94, -657.23], [-605.67, -662.93], [-604.5, -661.85], [-604.31, -662.04], [-592.44, -651.14], [-598.12, -644.99], [-609.99, -655.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-611.45, -625.35], [-606.08, -620.52], [-614.94, -610.75], [-616.86, -612.48], [-617.1, -612.22], [-620.19, -615.0], [-617.13, -618.37], [-617.65, -618.84], [-614.39, -622.42], [-614.23, -622.28], [-611.45, -625.35]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-539.5, -541.66], [-528.62, -553.63], [-527.06, -552.23], [-525.85, -553.57], [-519.5, -547.83], [-518.51, -548.94], [-514.0, -544.87], [-524.56, -533.25], [-530.39, -538.51], [-532.91, -535.73], [-539.5, -541.66]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-492.37, -600.38], [-481.3, -612.24], [-480.95, -611.93], [-479.59, -613.38], [-474.93, -609.06], [-476.28, -607.61], [-475.35, -606.74], [-486.42, -594.87], [-486.78, -595.21], [-489.15, -592.68], [-494.56, -597.69], [-492.21, -600.23], [-492.37, -600.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-545.46, -552.72], [-533.27, -565.66], [-537.52, -569.64], [-550.78, -555.57], [-549.08, -553.98], [-548.01, -555.11], [-545.46, -552.72]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-533.72, -563.99], [-529.02, -559.83], [-532.39, -556.06], [-531.05, -554.86], [-535.52, -549.84], [-535.91, -550.18], [-539.68, -545.96], [-540.24, -546.45], [-541.93, -544.57], [-547.02, -549.08], [-533.72, -563.99]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-481.24, -560.03], [-478.37, -557.35], [-479.58, -556.06], [-470.4, -547.51], [-465.96, -552.23], [-466.71, -552.92], [-463.91, -555.91], [-467.81, -559.54], [-470.76, -556.39], [-478.17, -563.29], [-481.24, -560.03]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-464.23, -584.24], [-455.37, -594.0], [-440.71, -580.79], [-449.57, -571.03], [-464.23, -584.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-500.76, -606.71], [-488.59, -619.8], [-485.71, -617.15], [-484.33, -618.64], [-480.24, -614.86], [-493.79, -600.28], [-494.15, -600.62], [-494.79, -599.92], [-496.69, -601.68], [-496.05, -602.36], [-500.76, -606.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-426.47, -546.0], [-434.31, -552.96], [-421.56, -567.22], [-413.72, -560.26], [-426.47, -546.0]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.056, "pop": 0, "jobs": 56}}, {"shape": {"outer": [[-610.21, -608.96], [-598.96, -621.25], [-575.67, -600.09], [-586.96, -587.77], [-587.4, -588.18], [-590.26, -585.05], [-594.36, -588.78], [-591.47, -591.93], [-610.21, -608.96]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 0.767, "pop": 0, "jobs": 767}}, {"shape": {"outer": [[-595.52, -674.29], [-588.83, -681.69], [-578.47, -672.38], [-584.58, -665.63], [-591.18, -671.56], [-591.76, -670.91], [-595.52, -674.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-502.34, -542.72], [-495.59, -550.04], [-497.53, -551.82], [-495.05, -554.5], [-498.39, -557.56], [-500.87, -554.88], [-501.18, -555.16], [-507.93, -547.84], [-507.8, -547.72], [-508.87, -546.57], [-504.68, -542.74], [-503.62, -543.9], [-502.34, -542.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[13.92, -442.08], [18.48, -438.04], [19.3, -437.23], [17.7, -435.47], [19.22, -434.11], [18.46, -433.28], [19.4, -432.42], [22.21, -429.89], [21.54, -429.15], [25.11, -425.93], [51.46, -402.33], [53.48, -400.47], [63.09, -391.69], [64.68, -390.24], [63.42, -388.86], [72.93, -380.28], [61.14, -367.15], [59.09, -364.92], [60.81, -363.33], [51.29, -353.03], [44.6, -345.59], [43.37, -346.7], [41.98, -345.16], [41.15, -345.92], [29.94, -333.57], [27.04, -330.39], [13.99, -342.15], [12.17, -343.8], [-27.4, -379.51], [-29.05, -377.7], [-31.56, -379.96], [-33.07, -378.3], [-37.97, -382.71], [-39.82, -384.38], [-15.61, -411.03], [-17.65, -412.88], [-12.24, -418.84], [-9.47, -416.34], [12.52, -440.54], [13.92, -442.08]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 13709}}, {"shape": {"outer": [[-317.52, -338.34], [-292.62, -365.77], [-279.09, -352.96], [-270.71, -362.07], [-249.05, -341.69], [-262.06, -327.14], [-260.98, -326.1], [-270.22, -316.18], [-274.86, -313.48], [-278.78, -311.8], [-281.74, -310.88], [-284.75, -310.75], [-288.29, -314.06], [-289.48, -313.07], [-288.98, -312.59], [-290.23, -311.42], [-313.24, -334.42], [-317.52, -338.34]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3620}}, {"shape": {"outer": [[-327.76, -403.99], [-353.11, -374.52], [-356.48, -377.54], [-358.24, -375.6], [-403.53, -416.1], [-393.77, -426.95], [-392.36, -425.69], [-388.82, -429.62], [-360.03, -401.69], [-344.0, -418.91], [-327.76, -403.99]], "holes": []}, "height": 40.5, "data": {"type": "residential", "density": 1.0, "pop": 3502, "jobs": 0}}, {"shape": {"outer": [[-430.54, -378.56], [-427.64, -378.58], [-416.96, -368.74], [-416.99, -367.25], [-424.57, -358.79], [-420.86, -355.67], [-418.7, -355.82], [-407.58, -345.81], [-407.48, -342.66], [-408.42, -341.45], [-418.41, -330.81], [-425.3, -322.97], [-423.21, -321.0], [-422.99, -314.57], [-425.31, -312.23], [-418.38, -305.61], [-418.31, -303.18], [-424.23, -295.67], [-437.46, -280.58], [-440.29, -280.18], [-474.83, -311.47], [-482.36, -318.3], [-482.46, -321.77], [-462.83, -343.2], [-459.87, -343.66], [-452.14, -351.89], [-451.76, -355.02], [-446.13, -361.27], [-430.54, -378.56]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6302}}, {"shape": {"outer": [[-405.21, -338.47], [-398.36, -345.77], [-399.28, -346.64], [-395.65, -350.51], [-393.69, -348.67], [-392.81, -349.61], [-385.9, -343.16], [-386.82, -342.18], [-384.76, -340.26], [-388.55, -336.22], [-390.74, -338.26], [-397.11, -331.46], [-394.01, -328.56], [-404.26, -317.63], [-418.41, -330.81], [-408.42, -341.45], [-405.21, -338.47]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 0.677, "pop": 0, "jobs": 677}}, {"shape": {"outer": [[-426.69, -541.12], [-429.1, -543.36], [-431.47, -540.84], [-436.14, -545.18], [-445.77, -534.91], [-440.43, -529.92], [-442.77, -527.43], [-448.06, -532.35], [-486.24, -491.61], [-484.11, -489.63], [-483.1, -490.71], [-478.19, -486.15], [-426.69, -541.12]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.954, "pop": 477, "jobs": 0}}, {"shape": {"outer": [[-594.05, -422.28], [-587.46, -416.27], [-599.12, -403.6], [-605.22, -409.17], [-602.29, -412.37], [-602.76, -412.81], [-594.05, -422.28]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-680.13, -522.22], [-674.82, -517.35], [-676.21, -515.85], [-673.74, -513.58], [-673.35, -514.01], [-667.99, -509.11], [-659.13, -518.72], [-665.15, -524.23], [-665.84, -523.47], [-667.27, -524.78], [-665.77, -526.4], [-671.47, -531.62], [-680.13, -522.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-688.01, -570.94], [-682.64, -576.91], [-679.68, -574.27], [-679.27, -574.72], [-675.97, -571.77], [-676.22, -571.5], [-672.63, -568.3], [-678.16, -562.15], [-688.01, -570.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-668.66, -561.5], [-651.99, -579.92], [-641.96, -570.92], [-659.99, -550.98], [-663.61, -554.22], [-662.24, -555.74], [-668.66, -561.5]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[-576.19, -463.53], [-570.03, -470.16], [-555.22, -456.51], [-561.38, -449.88], [-576.19, -463.53]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-731.3, -525.58], [-726.96, -530.33], [-727.29, -530.63], [-723.79, -534.46], [-723.46, -534.16], [-718.75, -539.31], [-712.51, -533.65], [-725.05, -519.91], [-731.3, -525.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-600.53, -430.65], [-595.91, -435.79], [-589.92, -430.43], [-589.33, -431.09], [-584.38, -426.67], [-584.98, -426.01], [-582.03, -423.37], [-586.66, -418.23], [-600.53, -430.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-582.08, -452.15], [-579.2, -449.65], [-578.61, -450.32], [-572.77, -445.21], [-573.36, -444.53], [-569.26, -440.94], [-569.99, -440.12], [-569.1, -439.34], [-574.41, -433.33], [-588.1, -445.32], [-582.08, -452.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-626.31, -431.73], [-616.89, -441.83], [-616.39, -441.36], [-613.6, -444.35], [-609.76, -440.79], [-611.66, -438.76], [-610.68, -437.87], [-611.57, -436.92], [-611.36, -436.73], [-615.37, -432.42], [-615.58, -432.62], [-616.23, -433.21], [-621.64, -427.41], [-622.14, -427.87], [-623.16, -426.79], [-626.75, -430.1], [-625.73, -431.2], [-626.31, -431.73]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-667.75, -596.71], [-666.35, -595.42], [-665.38, -596.47], [-660.7, -592.18], [-662.25, -590.5], [-661.53, -589.84], [-671.41, -579.15], [-676.41, -583.73], [-675.75, -584.44], [-677.55, -586.09], [-667.75, -596.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-607.54, -437.87], [-601.62, -432.59], [-613.09, -419.83], [-617.28, -423.56], [-614.9, -426.22], [-616.63, -427.76], [-607.54, -437.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-707.62, -507.27], [-705.57, -505.42], [-706.48, -504.42], [-702.27, -500.62], [-692.29, -511.6], [-694.41, -513.52], [-695.52, -512.31], [-699.65, -516.03], [-707.62, -507.27]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-696.64, -561.1], [-690.76, -567.57], [-682.36, -559.99], [-688.24, -553.52], [-696.64, -561.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-564.38, -483.25], [-556.13, -492.36], [-552.25, -488.87], [-555.14, -485.68], [-554.53, -485.13], [-556.48, -482.97], [-555.38, -481.98], [-558.78, -478.21], [-564.38, -483.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-668.11, -581.08], [-666.49, -579.63], [-669.13, -576.7], [-667.91, -575.61], [-670.36, -572.89], [-666.14, -569.14], [-653.17, -583.58], [-660.21, -589.87], [-668.11, -581.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-712.96, -545.02], [-708.78, -549.74], [-698.89, -541.03], [-702.07, -537.45], [-703.9, -539.05], [-704.9, -537.93], [-712.96, -545.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-611.64, -418.43], [-601.85, -428.92], [-596.09, -423.58], [-600.14, -419.24], [-600.64, -419.69], [-606.38, -413.55], [-611.64, -418.43]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-569.01, -481.91], [-574.86, -487.17], [-564.94, -498.12], [-559.09, -492.86], [-569.01, -481.91]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-594.11, -466.23], [-592.51, -467.93], [-593.06, -468.45], [-587.15, -474.77], [-586.86, -474.5], [-584.88, -476.63], [-578.91, -471.09], [-586.71, -462.75], [-588.47, -464.38], [-590.16, -462.56], [-594.11, -466.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-717.07, -513.05], [-705.69, -525.12], [-703.95, -523.5], [-702.09, -525.47], [-698.96, -522.53], [-700.51, -520.89], [-699.53, -519.98], [-703.9, -515.35], [-703.34, -514.83], [-707.06, -510.89], [-707.49, -511.29], [-710.47, -508.13], [-713.97, -511.41], [-714.61, -510.74], [-717.07, -513.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-573.91, -457.94], [-563.44, -448.23], [-568.53, -442.77], [-571.75, -445.77], [-572.19, -445.3], [-575.88, -448.72], [-575.44, -449.19], [-579.0, -452.5], [-577.7, -453.89], [-579.11, -455.19], [-577.11, -457.33], [-575.7, -456.03], [-573.91, -457.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-563.39, -466.51], [-558.05, -472.18], [-548.32, -463.06], [-553.66, -457.41], [-563.39, -466.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-701.63, -499.42], [-689.94, -512.33], [-684.11, -507.1], [-695.8, -494.18], [-701.63, -499.42]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-654.68, -475.37], [-648.13, -469.49], [-657.45, -459.17], [-658.97, -460.54], [-658.14, -461.47], [-663.17, -465.98], [-654.68, -475.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-656.13, -459.73], [-649.53, -466.87], [-648.82, -466.22], [-645.62, -469.68], [-640.78, -465.25], [-643.97, -461.8], [-643.25, -461.15], [-647.29, -456.79], [-648.0, -457.44], [-651.3, -453.88], [-655.32, -457.57], [-654.61, -458.33], [-656.13, -459.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-648.82, -450.77], [-647.67, -452.01], [-647.91, -452.23], [-639.0, -461.87], [-633.87, -457.16], [-635.91, -454.95], [-635.11, -454.23], [-639.47, -449.51], [-640.26, -450.24], [-642.82, -447.48], [-642.97, -447.62], [-644.07, -446.42], [-648.82, -450.77]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-706.56, -551.83], [-703.1, -555.85], [-701.68, -554.64], [-697.41, -559.61], [-687.17, -550.88], [-691.05, -546.36], [-694.41, -549.22], [-698.25, -544.74], [-706.56, -551.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-724.0, -519.52], [-720.17, -523.65], [-720.32, -523.79], [-716.35, -528.1], [-716.2, -527.96], [-712.21, -532.26], [-706.05, -526.6], [-717.83, -513.85], [-724.0, -519.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-507.08, -400.93], [-507.35, -409.66], [-507.5, -414.41], [-507.87, -426.47], [-490.81, -427.73], [-489.21, -427.86], [-485.96, -428.1], [-485.37, -428.82], [-484.59, -429.33], [-483.2, -429.7], [-481.67, -429.56], [-480.1, -428.91], [-479.54, -428.37], [-479.2, -427.34], [-478.9, -426.41], [-438.48, -389.26], [-428.82, -380.35], [-430.54, -378.56], [-446.13, -361.27], [-447.6, -362.54], [-490.7, -401.69], [-493.17, -401.57], [-507.08, -400.93]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 5566, "jobs": 0}}, {"shape": {"outer": [[613.79, 479.08], [617.83, 474.72], [609.88, 467.43], [612.16, 464.95], [622.57, 474.49], [635.44, 486.3], [629.13, 493.14], [613.79, 479.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.147, "pop": 0, "jobs": 147}}, {"shape": {"outer": [[1987.16, 2378.57], [2006.61, 2374.43], [2013.32, 2405.87], [1993.84, 2410.0], [1990.61, 2394.87], [1988.91, 2386.75], [1987.16, 2378.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.409, "pop": 0, "jobs": 409}}, {"shape": {"outer": [[1986.94, 2439.2], [2001.05, 2430.02], [2002.81, 2432.71], [2007.65, 2440.1], [2009.22, 2442.52], [1995.12, 2451.69], [1993.4, 2449.06], [1988.84, 2442.1], [1986.94, 2439.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-52.57, -257.7], [-25.28, -287.81], [-33.87, -295.54], [-61.12, -265.2], [-52.57, -257.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.299, "pop": 0, "jobs": 299}}, {"shape": {"outer": [[-353.34, 178.43], [-322.23, 206.81], [-333.38, 218.96], [-360.96, 193.79], [-360.44, 193.22], [-363.97, 189.99], [-362.8, 188.73], [-364.47, 187.29], [-365.51, 185.35], [-365.79, 183.17], [-365.26, 181.03], [-364.01, 179.21], [-362.28, 178.02], [-360.26, 177.49], [-358.17, 177.66], [-356.26, 178.53], [-354.77, 180.0], [-353.34, 178.43]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.427, "pop": 0, "jobs": 427}}, {"shape": {"outer": [[-1189.1, -340.55], [-1186.75, -340.65], [-1186.69, -339.21], [-1177.72, -339.6], [-1177.75, -340.25], [-1124.93, -342.74], [-1125.18, -348.01], [-1120.69, -348.22], [-1120.44, -343.05], [-1093.05, -344.35], [-1091.49, -344.42], [-1091.59, -346.55], [-1090.14, -346.61], [-1088.67, -348.1], [-1088.77, -350.0], [-1086.55, -350.12], [-1086.69, -352.6], [-1086.87, -356.0], [-1088.03, -377.36], [-1091.55, -377.17], [-1093.96, -379.48], [-1094.07, -381.88], [-1122.04, -380.57], [-1121.81, -375.57], [-1126.01, -375.38], [-1126.14, -378.23], [-1130.78, -378.01], [-1132.04, -377.95], [-1132.14, -380.18], [-1185.98, -377.66], [-1185.87, -375.29], [-1188.65, -372.49], [-1190.47, -372.4], [-1189.59, -351.99], [-1189.1, -340.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2401}}, {"shape": {"outer": [[-1146.38, -332.94], [-1125.81, -334.0], [-1125.68, -331.36], [-1125.55, -328.94], [-1125.44, -326.91], [-1125.39, -325.86], [-1125.3, -324.14], [-1125.19, -322.09], [-1118.56, -322.42], [-1118.47, -320.84], [-1118.1, -313.55], [-1117.98, -311.27], [-1117.52, -302.33], [-1105.64, -302.94], [-1105.58, -301.76], [-1101.82, -301.94], [-1090.3, -302.54], [-1088.73, -301.15], [-1083.87, -296.85], [-1083.23, -296.28], [-1082.71, -286.72], [-1089.23, -279.7], [-1098.71, -279.21], [-1103.22, -283.39], [-1107.89, -283.18], [-1107.75, -280.07], [-1111.38, -279.9], [-1164.54, -277.44], [-1164.67, -280.22], [-1165.3, -279.63], [-1165.98, -278.99], [-1168.57, -278.87], [-1170.39, -280.6], [-1170.43, -281.62], [-1170.48, -282.91], [-1169.72, -283.93], [-1169.84, -286.16], [-1170.53, -299.59], [-1159.5, -300.15], [-1144.72, -300.92], [-1145.99, -325.38], [-1146.38, -332.94]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1720}}, {"shape": {"outer": [[-1094.0, -316.24], [-1091.91, -316.33], [-1091.78, -313.23], [-1088.11, -313.35], [-1088.32, -318.4], [-1088.36, -319.21], [-1088.32, -320.08], [-1088.33, -320.32], [-1094.17, -320.07], [-1094.0, -316.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[628.26, -34.07], [631.15, -33.34], [649.24, -28.83], [652.83, -27.51], [661.14, -24.46], [673.86, -19.8], [685.83, -14.94], [696.66, -9.28], [699.24, -8.04], [698.45, -5.61], [705.6, -2.89], [700.9, 12.94], [698.37, 21.5], [693.27, 20.14], [687.93, 18.7], [677.56, 15.94], [675.73, 15.45], [666.91, 13.1], [663.6, 12.2], [653.73, 9.57], [648.52, 8.18], [641.41, 6.28], [639.74, 5.85], [627.22, 2.65], [618.52, 0.16], [617.33, 0.24], [616.78, 0.19], [616.23, 0.03], [615.7, -0.31], [615.33, -0.61], [614.88, -1.31], [614.69, -2.19], [614.71, -2.82], [614.82, -3.46], [615.2, -4.35], [615.63, -4.84], [616.17, -5.15], [616.77, -5.31], [617.34, -5.34], [617.89, -5.23], [618.53, -5.01], [619.02, -4.76], [619.34, -4.42], [619.65, -3.97], [619.85, -3.39], [626.05, -27.14], [628.26, -34.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1770}}, {"shape": {"outer": [[499.45, -3.72], [510.13, 6.1], [492.28, 25.75], [488.76, 22.73], [490.21, 21.15], [482.87, 14.53], [499.45, -3.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.234, "pop": 0, "jobs": 234}}, {"shape": {"outer": [[507.15, 36.51], [502.36, 32.16], [518.9, 14.0], [523.7, 18.33], [507.15, 36.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[534.07, 27.31], [527.74, 34.31], [533.8, 39.74], [530.7, 43.19], [524.68, 37.79], [520.48, 42.43], [522.72, 44.44], [520.93, 46.42], [523.84, 49.03], [525.45, 47.26], [536.19, 56.9], [547.89, 43.97], [548.54, 42.72], [548.72, 42.09], [548.74, 41.42], [548.51, 40.75], [547.74, 39.58], [534.07, 27.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.328, "pop": 164, "jobs": 0}}, {"shape": {"outer": [[446.94, -17.04], [464.44, -35.73], [473.65, -27.85], [474.1, -27.07], [474.11, -25.69], [473.71, -24.93], [457.95, -7.67], [446.94, -17.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.292, "pop": 146, "jobs": 0}}, {"shape": {"outer": [[533.04, 26.77], [523.7, 18.33], [507.15, 36.51], [512.07, 40.97], [515.08, 37.67], [519.48, 41.65], [533.04, 26.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[518.9, 14.0], [510.13, 6.1], [492.28, 25.75], [499.7, 32.44], [501.06, 30.94], [502.36, 32.16], [518.9, 14.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[457.35, -91.87], [464.85, -85.08], [468.08, -89.17], [486.15, -64.03], [479.05, -56.44], [457.3, -76.49], [449.83, -83.56], [457.35, -91.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.414, "pop": 207, "jobs": 0}}, {"shape": {"outer": [[848.63, 83.1], [853.84, 77.46], [855.94, 79.39], [872.95, 60.99], [893.46, 79.79], [871.25, 103.84], [848.63, 83.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.597, "pop": 0, "jobs": 597}}, {"shape": {"outer": [[313.27, 230.39], [314.74, 228.85], [328.98, 214.05], [328.68, 203.82], [311.63, 188.41], [298.47, 201.85], [299.6, 218.37], [313.27, 230.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.526, "pop": 0, "jobs": 526}}, {"shape": {"outer": [[-2352.84, -751.77], [-2346.04, -760.48], [-2347.86, -761.9], [-2344.69, -765.97], [-2340.64, -762.73], [-2339.35, -764.33], [-2335.42, -761.19], [-2334.29, -762.59], [-2327.14, -756.87], [-2325.55, -757.83], [-2321.66, -754.73], [-2323.77, -752.11], [-2318.24, -747.69], [-2329.72, -733.41], [-2332.72, -735.81], [-2331.6, -737.25], [-2338.06, -742.24], [-2338.99, -741.05], [-2344.87, -745.03], [-2352.84, -751.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.365, "pop": 0, "jobs": 365}}, {"shape": {"outer": [[-2253.37, -671.11], [-2261.99, -677.88], [-2241.5, -703.95], [-2235.31, -711.75], [-2203.6, -686.87], [-2215.69, -671.58], [-2214.34, -670.52], [-2219.62, -663.84], [-2215.25, -660.4], [-2219.21, -655.39], [-2223.17, -654.89], [-2226.44, -657.45], [-2230.08, -652.85], [-2253.37, -671.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1163}}, {"shape": {"outer": [[-2298.21, -729.63], [-2290.13, -723.4], [-2289.77, -723.97], [-2287.4, -726.93], [-2284.51, -730.56], [-2292.46, -736.85], [-2295.94, -732.47], [-2298.21, -729.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2241.89, -721.6], [-2235.48, -716.59], [-2235.96, -715.98], [-2243.93, -705.84], [-2241.5, -703.95], [-2261.99, -677.88], [-2263.04, -676.55], [-2285.21, -693.85], [-2283.14, -696.48], [-2262.6, -722.61], [-2249.27, -712.21], [-2241.89, -721.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.717, "pop": 0, "jobs": 717}}, {"shape": {"outer": [[2512.93, 2706.45], [2501.31, 2695.28], [2520.5, 2675.44], [2532.2, 2686.68], [2534.46, 2684.34], [2580.52, 2728.55], [2574.64, 2734.64], [2572.48, 2732.57], [2560.39, 2745.07], [2562.57, 2747.17], [2556.71, 2753.22], [2510.56, 2708.91], [2512.93, 2706.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1655}}, {"shape": {"outer": [[2348.99, 2403.83], [2355.46, 2410.94], [2328.51, 2438.79], [2284.38, 2396.06], [2311.66, 2367.98], [2329.53, 2350.72], [2327.17, 2348.28], [2321.93, 2352.67], [2316.89, 2347.81], [2305.95, 2359.0], [2278.52, 2331.37], [2311.79, 2298.75], [2313.69, 2300.33], [2319.04, 2296.05], [2321.39, 2298.27], [2342.09, 2276.9], [2343.09, 2277.64], [2345.96, 2274.83], [2364.01, 2291.2], [2367.1, 2288.39], [2362.12, 2282.21], [2379.42, 2264.2], [2380.22, 2265.38], [2387.65, 2257.88], [2397.34, 2256.95], [2397.3, 2255.22], [2406.92, 2255.38], [2406.93, 2267.46], [2421.63, 2281.63], [2422.32, 2280.86], [2428.88, 2286.87], [2427.72, 2288.21], [2443.27, 2303.5], [2454.46, 2303.35], [2454.6, 2313.9], [2452.8, 2313.84], [2452.69, 2325.77], [2454.93, 2325.81], [2455.39, 2326.56], [2468.01, 2326.7], [2468.81, 2325.91], [2469.46, 2325.57], [2470.06, 2325.93], [2470.42, 2326.8], [2470.11, 2327.78], [2469.91, 2345.64], [2470.24, 2346.12], [2470.55, 2346.98], [2470.47, 2348.01], [2469.81, 2348.14], [2469.04, 2347.94], [2468.7, 2347.36], [2451.99, 2347.61], [2452.65, 2359.56], [2454.96, 2359.72], [2454.6, 2370.39], [2452.37, 2370.51], [2408.23, 2415.22], [2392.67, 2399.78], [2393.52, 2398.99], [2387.86, 2393.66], [2387.44, 2394.21], [2377.89, 2385.07], [2378.26, 2384.61], [2372.05, 2379.13], [2348.99, 2403.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 12424}}, {"shape": {"outer": [[982.57, 1062.21], [964.76, 1081.39], [960.49, 1077.43], [958.49, 1079.66], [953.89, 1075.44], [931.96, 1099.57], [919.01, 1087.96], [918.49, 1088.85], [913.1, 1083.67], [913.73, 1083.0], [910.26, 1079.99], [912.54, 1077.47], [880.69, 1048.71], [878.73, 1050.89], [874.93, 1047.57], [874.35, 1048.51], [868.19, 1043.14], [872.28, 1038.99], [871.9, 1037.15], [874.32, 1034.03], [876.25, 1034.31], [883.24, 1026.6], [883.13, 1024.76], [885.62, 1021.96], [887.21, 1022.07], [890.51, 1018.54], [891.24, 1017.77], [897.23, 1023.04], [891.98, 1028.85], [896.03, 1032.6], [894.23, 1034.61], [928.12, 1064.57], [933.15, 1058.87], [930.9, 1056.6], [945.89, 1040.01], [953.46, 1046.93], [957.06, 1042.58], [962.15, 1047.06], [963.64, 1045.44], [982.57, 1062.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2112}}, {"shape": {"outer": [[-2108.81, -671.89], [-2099.73, -672.31], [-2098.4, -642.9], [-2106.81, -642.53], [-2107.16, -650.3], [-2109.87, -650.18], [-2110.5, -664.28], [-2108.47, -664.38], [-2108.81, -671.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-1361.82, -631.22], [-1374.26, -630.42], [-1374.44, -637.43], [-1362.14, -638.0], [-1361.82, -631.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1454.5, -608.36], [-1465.48, -602.71], [-1467.8, -607.21], [-1456.59, -612.88], [-1454.5, -608.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1434.88, -586.81], [-1465.46, -582.67], [-1467.45, -595.25], [-1436.74, -599.06], [-1434.88, -586.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.31, "pop": 155, "jobs": 0}}, {"shape": {"outer": [[-1451.71, -606.37], [-1455.18, -613.24], [-1445.55, -618.25], [-1442.07, -611.44], [-1451.71, -606.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1399.09, -522.09], [-1401.4, -521.94], [-1411.03, -521.32], [-1411.04, -521.96], [-1418.25, -521.6], [-1418.06, -520.95], [-1426.2, -520.61], [-1426.27, -521.37], [-1433.64, -521.11], [-1433.67, -520.23], [-1441.69, -519.79], [-1441.71, -520.44], [-1443.37, -520.37], [-1448.7, -520.13], [-1448.68, -519.42], [-1457.14, -519.02], [-1457.43, -525.38], [-1460.43, -525.35], [-1460.76, -536.61], [-1457.86, -536.7], [-1457.98, -538.97], [-1413.4, -541.18], [-1413.94, -552.38], [-1458.23, -555.51], [-1458.08, -557.92], [-1460.77, -558.33], [-1460.05, -569.3], [-1457.53, -569.15], [-1456.73, -575.54], [-1448.52, -575.02], [-1448.55, -574.14], [-1441.21, -573.48], [-1441.07, -574.35], [-1433.46, -573.86], [-1433.6, -573.05], [-1425.77, -572.46], [-1425.73, -573.05], [-1417.53, -572.74], [-1417.78, -571.98], [-1415.48, -571.82], [-1413.68, -571.76], [-1412.47, -571.85], [-1410.2, -572.3], [-1408.67, -572.61], [-1408.63, -573.1], [-1400.28, -573.57], [-1400.42, -572.64], [-1393.05, -573.01], [-1393.19, -573.82], [-1385.01, -574.38], [-1385.04, -573.57], [-1377.57, -573.99], [-1377.6, -574.97], [-1369.09, -575.49], [-1369.05, -568.58], [-1366.16, -568.72], [-1365.85, -563.66], [-1366.89, -563.68], [-1366.56, -557.65], [-1368.25, -557.6], [-1368.39, -555.09], [-1381.14, -554.43], [-1410.35, -552.92], [-1409.87, -541.77], [-1401.47, -542.33], [-1401.53, -538.74], [-1401.02, -538.04], [-1400.01, -538.84], [-1397.55, -535.15], [-1404.15, -530.99], [-1403.34, -529.65], [-1399.41, -529.77], [-1399.31, -527.41], [-1399.09, -522.09]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 3170, "jobs": 0}}, {"shape": {"outer": [[-1475.33, -2932.76], [-1475.37, -2922.96], [-1485.13, -2923.77], [-1496.58, -2926.61], [-1508.2, -2931.61], [-1512.43, -2934.1], [-1519.66, -2938.68], [-1521.14, -2936.9], [-1528.3, -2942.58], [-1532.35, -2946.38], [-1537.1, -2952.02], [-1535.3, -2954.21], [-1540.73, -2962.54], [-1543.27, -2967.32], [-1536.65, -2970.49], [-1531.58, -2973.04], [-1532.99, -2976.33], [-1534.45, -2979.61], [-1536.05, -2984.09], [-1537.03, -2987.81], [-1537.39, -2990.68], [-1486.91, -3020.45], [-1473.93, -2996.91], [-1496.76, -2982.75], [-1517.39, -2966.2], [-1515.55, -2964.33], [-1512.88, -2961.64], [-1508.29, -2957.64], [-1503.16, -2953.86], [-1498.05, -2951.07], [-1492.51, -2948.61], [-1485.78, -2946.52], [-1480.71, -2945.13], [-1474.9, -2944.66], [-1470.53, -2944.45], [-1470.52, -2936.5], [-1471.71, -2936.24], [-1471.61, -2932.77], [-1475.33, -2932.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2141}}, {"shape": {"outer": [[-1431.05, -2945.19], [-1445.54, -2942.26], [-1443.63, -2932.81], [-1429.79, -2935.61], [-1428.66, -2930.04], [-1418.36, -2932.12], [-1422.1, -2950.53], [-1431.74, -2948.58], [-1431.05, -2945.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-1572.92, -3079.21], [-1578.55, -3078.72], [-1578.84, -3082.27], [-1573.2, -3082.8], [-1572.92, -3079.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2263.91, -1784.81], [-2286.7, -1762.12], [-2294.41, -1769.8], [-2277.9, -1786.24], [-2280.51, -1788.84], [-2274.22, -1795.09], [-2263.91, -1784.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.306, "pop": 153, "jobs": 0}}, {"shape": {"outer": [[-2570.84, -1804.92], [-2588.04, -1793.45], [-2589.91, -1796.27], [-2592.81, -1794.36], [-2595.05, -1789.7], [-2605.04, -1794.46], [-2601.15, -1802.57], [-2595.84, -1806.03], [-2596.18, -1806.55], [-2579.69, -1817.26], [-2579.41, -1816.84], [-2573.91, -1820.42], [-2570.56, -1820.66], [-2569.79, -1809.98], [-2572.86, -1807.91], [-2570.84, -1804.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.332, "pop": 0, "jobs": 332}}, {"shape": {"outer": [[-2537.4, -1670.11], [-2543.21, -1670.81], [-2542.73, -1674.9], [-2536.76, -1674.26], [-2537.4, -1670.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2292.59, -1841.69], [-2285.17, -1847.92], [-2277.82, -1854.1], [-2268.63, -1843.23], [-2264.85, -1843.12], [-2264.92, -1841.01], [-2264.98, -1838.93], [-2256.11, -1828.44], [-2256.33, -1828.26], [-2263.56, -1822.17], [-2270.88, -1816.02], [-2281.48, -1828.56], [-2292.59, -1841.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.42, "pop": 0, "jobs": 420}}, {"shape": {"outer": [[-2167.5, -1871.18], [-2183.83, -1874.8], [-2180.96, -1887.66], [-2164.63, -1884.05], [-2167.31, -1872.05], [-2167.5, -1871.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-2357.55, -1805.22], [-2373.14, -1824.17], [-2354.17, -1839.66], [-2338.58, -1820.72], [-2357.55, -1805.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[2162.8, 1129.49], [2136.31, 1158.71], [2131.15, 1153.84], [2128.69, 1155.66], [2126.69, 1155.96], [2124.76, 1155.66], [2122.99, 1154.84], [2117.88, 1159.77], [2108.04, 1151.45], [2109.93, 1149.01], [2093.69, 1134.66], [2095.81, 1132.53], [2089.07, 1126.07], [2087.91, 1127.31], [2051.91, 1094.03], [2055.08, 1090.51], [2051.61, 1087.72], [2050.66, 1086.82], [2050.09, 1085.97], [2049.56, 1084.45], [2049.3, 1083.16], [2049.42, 1081.63], [2049.77, 1080.21], [2050.6, 1078.99], [2051.34, 1077.99], [2053.88, 1074.97], [2052.08, 1073.44], [2065.22, 1058.75], [2086.56, 1034.86], [2118.78, 1063.68], [2108.29, 1075.35], [2112.78, 1079.31], [2114.74, 1077.24], [2114.87, 1076.3], [2115.05, 1074.83], [2115.62, 1073.46], [2116.41, 1072.83], [2117.87, 1072.19], [2119.18, 1071.99], [2121.0, 1072.48], [2122.12, 1073.54], [2122.87, 1074.99], [2122.96, 1076.3], [2122.73, 1077.77], [2161.01, 1112.46], [2157.47, 1116.58], [2158.48, 1117.75], [2159.18, 1119.2], [2159.21, 1120.26], [2159.24, 1121.27], [2158.85, 1122.86], [2158.33, 1123.85], [2157.39, 1124.75], [2162.8, 1129.49]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6087}}, {"shape": {"outer": [[-757.75, -2808.28], [-764.12, -2822.45], [-791.38, -2810.28], [-785.0, -2796.1], [-757.75, -2808.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[-567.19, -2802.86], [-578.72, -2802.37], [-580.97, -2855.76], [-569.44, -2856.24], [-567.19, -2802.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.494, "pop": 247, "jobs": 0}}, {"shape": {"outer": [[-708.21, -2849.39], [-722.74, -2843.84], [-711.71, -2815.08], [-697.17, -2820.61], [-708.21, -2849.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.384, "pop": 192, "jobs": 0}}, {"shape": {"outer": [[-446.06, -2483.45], [-446.89, -2512.72], [-434.77, -2513.18], [-433.71, -2487.5], [-431.5, -2486.58], [-431.21, -2484.08], [-432.79, -2482.08], [-435.31, -2482.01], [-437.11, -2484.02], [-446.06, -2483.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-518.98, -2715.44], [-563.42, -2713.72], [-562.23, -2682.83], [-517.78, -2684.54], [-518.98, -2715.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.88, "pop": 0, "jobs": 880}}, {"shape": {"outer": [[-565.79, -2730.99], [-565.8, -2731.31], [-567.76, -2779.6], [-547.31, -2780.43], [-547.58, -2787.06], [-542.69, -2787.27], [-543.1, -2797.22], [-548.62, -2796.99], [-549.24, -2812.34], [-543.71, -2812.57], [-543.81, -2814.86], [-523.42, -2815.68], [-521.68, -2773.06], [-511.97, -2773.45], [-511.29, -2756.67], [-512.96, -2756.61], [-512.82, -2753.33], [-512.31, -2753.36], [-511.92, -2743.83], [-520.07, -2743.5], [-520.01, -2742.23], [-536.27, -2741.57], [-536.04, -2735.68], [-541.77, -2735.44], [-541.63, -2731.97], [-565.79, -2730.99]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2014}}, {"shape": {"outer": [[-633.79, -2684.44], [-645.05, -2680.16], [-662.56, -2725.74], [-643.48, -2733.02], [-633.77, -2707.75], [-641.6, -2704.76], [-633.79, -2684.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.522, "pop": 0, "jobs": 522}}, {"shape": {"outer": [[-755.57, -2794.0], [-757.94, -2799.39], [-784.68, -2787.73], [-768.35, -2750.48], [-746.3, -2760.07], [-740.03, -2745.77], [-760.85, -2736.7], [-745.87, -2702.55], [-734.68, -2707.42], [-742.18, -2724.54], [-735.3, -2727.53], [-738.76, -2735.41], [-721.55, -2742.92], [-714.01, -2725.72], [-697.24, -2733.02], [-708.89, -2759.58], [-710.49, -2758.88], [-723.15, -2787.74], [-724.48, -2787.16], [-731.99, -2804.27], [-755.57, -2794.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2509}}, {"shape": {"outer": [[-721.4, -2690.84], [-727.05, -2703.99], [-711.51, -2710.62], [-705.87, -2697.47], [-721.4, -2690.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-551.37, -2853.4], [-579.88, -2875.86], [-568.64, -2890.04], [-540.12, -2867.58], [-551.37, -2853.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.42, "pop": 0, "jobs": 420}}, {"shape": {"outer": [[-443.21, -2469.26], [-444.86, -2473.34], [-452.96, -2469.75], [-450.99, -2465.99], [-452.5, -2465.07], [-446.93, -2453.79], [-435.92, -2458.79], [-434.87, -2456.65], [-425.69, -2460.5], [-426.75, -2463.19], [-423.73, -2464.59], [-425.25, -2467.81], [-424.74, -2469.24], [-425.36, -2471.62], [-426.79, -2472.23], [-428.53, -2475.67], [-429.72, -2475.14], [-443.21, -2469.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-130.19, -2640.19], [-135.17, -2644.1], [-142.73, -2634.56], [-163.09, -2650.57], [-158.56, -2656.29], [-165.57, -2661.8], [-154.93, -2675.25], [-159.1, -2678.52], [-140.98, -2701.43], [-123.52, -2687.71], [-119.55, -2692.73], [-110.06, -2685.28], [-107.97, -2687.92], [-102.84, -2683.89], [-115.54, -2667.86], [-110.81, -2664.15], [-112.84, -2661.58], [-103.38, -2654.13], [-110.02, -2645.74], [-119.73, -2653.39], [-130.19, -2640.19]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1559}}, {"shape": {"outer": [[-15.67, -2671.29], [-13.47, -2651.71], [-28.33, -2650.05], [-30.53, -2669.7], [-36.42, -2669.05], [-36.67, -2671.25], [-43.06, -2670.54], [-45.45, -2691.87], [-31.59, -2693.4], [-31.87, -2696.01], [-13.66, -2698.04], [-13.4, -2695.73], [5.8, -2697.87], [6.35, -2693.01], [8.64, -2693.27], [9.46, -2685.99], [7.14, -2685.72], [8.22, -2676.08], [-13.83, -2673.64], [-13.59, -2671.52], [-15.67, -2671.29]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.856, "pop": 0, "jobs": 856}}, {"shape": {"outer": [[-27.44, -2771.7], [-24.41, -2764.01], [-54.4, -2752.29], [-57.66, -2760.58], [-66.95, -2756.95], [-75.43, -2778.51], [-19.71, -2800.27], [-15.11, -2788.6], [-10.99, -2778.13], [-27.44, -2771.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1078}}, {"shape": {"outer": [[501.78, -2482.18], [516.25, -2494.95], [525.44, -2484.61], [510.98, -2471.84], [501.78, -2482.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.171, "pop": 0, "jobs": 171}}, {"shape": {"outer": [[522.39, 260.3], [576.9, 310.59], [590.46, 294.73], [535.97, 245.75], [522.39, 260.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.961, "pop": 0, "jobs": 961}}, {"shape": {"outer": [[750.32, 150.91], [776.29, 174.38], [758.18, 194.27], [755.54, 191.88], [752.42, 189.06], [748.55, 185.56], [744.76, 189.74], [742.0, 187.25], [738.9, 184.43], [742.59, 180.37], [732.11, 170.91], [750.32, 150.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.632, "pop": 0, "jobs": 632}}, {"shape": {"outer": [[775.4, 122.54], [780.4, 125.78], [807.51, 142.85], [783.4, 169.76], [760.41, 148.74], [755.93, 144.77], [764.39, 135.69], [773.43, 125.49], [775.4, 122.54]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1274, "jobs": 0}}, {"shape": {"outer": [[532.91, 390.44], [567.74, 422.36], [564.69, 425.59], [561.98, 428.44], [560.26, 426.83], [552.65, 434.38], [554.26, 435.87], [564.35, 445.18], [555.58, 454.42], [511.42, 414.42], [532.91, 390.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1051}}, {"shape": {"outer": [[1655.21, 792.91], [1689.01, 823.28], [1674.76, 839.03], [1666.29, 831.41], [1650.1, 848.4], [1642.21, 841.23], [1635.8, 835.83], [1635.64, 833.75], [1635.19, 831.57], [1636.27, 830.54], [1637.31, 829.49], [1628.91, 821.55], [1655.21, 792.91]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.475, "pop": 0, "jobs": 475}}, {"shape": {"outer": [[-2862.62, -1145.13], [-2861.63, -1145.46], [-2860.46, -1145.51], [-2859.36, -1145.34], [-2858.18, -1144.95], [-2857.15, -1144.32], [-2851.25, -1139.22], [-2846.14, -1134.81], [-2813.51, -1106.67], [-2813.77, -1106.42], [-2814.66, -1105.5], [-2814.02, -1104.81], [-2814.64, -1104.2], [-2812.39, -1102.09], [-2815.09, -1099.06], [-2815.3, -1099.29], [-2815.89, -1098.59], [-2816.36, -1097.85], [-2816.7, -1097.15], [-2817.01, -1096.45], [-2817.32, -1095.58], [-2817.58, -1094.7], [-2817.8, -1093.66], [-2817.92, -1092.91], [-2818.0, -1092.16], [-2818.02, -1091.5], [-2818.02, -1090.9], [-2818.0, -1090.33], [-2817.73, -1090.34], [-2817.72, -1087.13], [-2820.94, -1087.06], [-2820.93, -1085.8], [-2822.29, -1085.75], [-2823.76, -1085.67], [-2826.8, -1085.59], [-2831.95, -1085.44], [-2832.0, -1086.72], [-2834.22, -1086.69], [-2838.34, -1086.63], [-2841.18, -1086.6], [-2843.67, -1086.53], [-2848.75, -1086.45], [-2856.13, -1086.33], [-2859.42, -1086.29], [-2864.98, -1086.17], [-2868.44, -1086.09], [-2871.5, -1086.07], [-2874.8, -1085.99], [-2875.92, -1086.82], [-2879.49, -1089.45], [-2880.28, -1088.45], [-2883.09, -1084.89], [-2883.7, -1084.12], [-2886.25, -1086.02], [-2887.63, -1084.12], [-2890.58, -1086.42], [-2892.05, -1084.83], [-2896.52, -1088.37], [-2895.09, -1090.02], [-2898.21, -1092.43], [-2896.77, -1094.25], [-2899.14, -1096.19], [-2894.95, -1101.43], [-2896.94, -1103.04], [-2884.92, -1117.68], [-2864.07, -1144.03], [-2863.33, -1144.71], [-2862.62, -1145.13]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 2872, "jobs": 0}}, {"shape": {"outer": [[1775.52, 1242.43], [1873.11, 1331.55], [1874.17, 1332.52], [1904.01, 1300.08], [1864.37, 1262.94], [1805.38, 1209.97], [1775.52, 1242.43]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 4155, "jobs": 0}}, {"shape": {"outer": [[-1811.78, -374.5], [-1830.87, -373.72], [-1832.63, -416.81], [-1813.54, -417.59], [-1811.78, -374.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.527, "pop": 0, "jobs": 527}}, {"shape": {"outer": [[-1762.42, -413.22], [-1762.81, -421.37], [-1760.97, -421.45], [-1761.86, -440.27], [-1762.54, -440.2], [-1764.14, -440.14], [-1764.47, -448.14], [-1805.21, -446.19], [-1804.38, -428.82], [-1803.54, -411.25], [-1762.42, -413.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.942, "pop": 0, "jobs": 942}}, {"shape": {"outer": [[-349.87, 307.52], [-360.81, 298.16], [-356.76, 293.46], [-358.03, 292.36], [-353.27, 286.83], [-347.56, 291.73], [-349.34, 293.8], [-342.84, 299.36], [-349.87, 307.52]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-79.02, 370.11], [-59.56, 387.8], [-65.09, 393.84], [-63.74, 395.06], [-71.94, 404.01], [-78.02, 398.48], [-77.27, 397.65], [-80.29, 394.9], [-80.28, 393.63], [-78.22, 391.39], [-80.74, 389.08], [-76.21, 384.13], [-81.78, 379.06], [-81.99, 373.35], [-79.02, 370.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.31, "pop": 155, "jobs": 0}}, {"shape": {"outer": [[682.88, -3147.34], [672.01, -3136.73], [675.15, -3133.58], [669.88, -3128.64], [674.09, -3124.4], [679.39, -3129.5], [683.09, -3125.6], [729.69, -3167.81], [727.7, -3170.32], [742.74, -3183.97], [739.86, -3187.16], [743.5, -3190.43], [738.39, -3196.08], [734.74, -3192.81], [732.02, -3195.83], [720.91, -3186.1], [715.45, -3191.87], [721.5, -3200.06], [715.46, -3204.42], [718.74, -3208.93], [714.97, -3211.65], [711.69, -3207.13], [706.18, -3211.1], [688.37, -3187.46], [683.83, -3183.53], [672.68, -3173.16], [669.83, -3170.7], [642.65, -3153.9], [646.52, -3146.95], [642.05, -3144.48], [643.56, -3141.77], [648.04, -3144.25], [652.05, -3137.05], [679.62, -3152.8], [682.88, -3147.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2323}}, {"shape": {"outer": [[102.7, -2593.16], [167.51, -2626.9], [180.01, -2602.86], [165.79, -2595.05], [169.11, -2586.0], [137.99, -2570.91], [143.62, -2557.57], [125.11, -2549.46], [102.7, -2593.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1787}}, {"shape": {"outer": [[31.89, -2511.71], [92.79, -2499.93], [88.33, -2479.76], [27.85, -2492.42], [31.89, -2511.71]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.799, "pop": 0, "jobs": 799}}, {"shape": {"outer": [[187.53, -2659.02], [207.19, -2677.26], [222.47, -2660.45], [202.93, -2642.29], [187.53, -2659.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.486, "pop": 243, "jobs": 0}}, {"shape": {"outer": [[-475.92, -2253.95], [-466.63, -2254.35], [-466.65, -2254.96], [-460.99, -2255.21], [-461.02, -2256.09], [-457.09, -2256.26], [-457.0, -2254.07], [-447.93, -2254.46], [-445.07, -2257.86], [-439.56, -2258.09], [-436.58, -2254.93], [-427.52, -2255.33], [-427.63, -2257.81], [-422.76, -2258.02], [-422.68, -2256.32], [-415.31, -2256.64], [-414.23, -2231.32], [-413.13, -2231.37], [-412.22, -2209.89], [-434.0, -2208.96], [-434.77, -2227.02], [-455.59, -2226.14], [-455.55, -2225.05], [-460.41, -2224.85], [-460.6, -2229.28], [-467.8, -2228.97], [-468.52, -2245.79], [-475.57, -2245.49], [-475.92, -2253.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1281}}, {"shape": {"outer": [[-1752.79, -251.63], [-1753.96, -280.09], [-1758.54, -279.95], [-1759.85, -325.49], [-1754.95, -325.63], [-1755.42, -342.69], [-1758.03, -342.61], [-1758.09, -344.63], [-1757.03, -344.66], [-1758.7, -345.96], [-1761.27, -347.19], [-1764.55, -348.07], [-1767.54, -348.5], [-1770.01, -348.54], [-1772.82, -348.43], [-1772.76, -346.48], [-1774.36, -346.43], [-1774.25, -342.16], [-1775.71, -342.13], [-1775.56, -336.42], [-1796.96, -335.83], [-1798.17, -341.96], [-1841.2, -340.77], [-1841.28, -343.64], [-1848.46, -343.44], [-1848.48, -344.13], [-1855.78, -343.93], [-1855.69, -340.74], [-1861.8, -340.57], [-1861.07, -313.94], [-1859.9, -313.97], [-1859.61, -303.45], [-1851.81, -303.67], [-1851.78, -302.54], [-1848.91, -302.63], [-1848.89, -302.03], [-1845.27, -302.13], [-1845.22, -300.49], [-1836.73, -300.72], [-1836.78, -302.84], [-1834.11, -302.91], [-1834.13, -303.68], [-1832.87, -303.72], [-1833.12, -312.55], [-1803.79, -313.36], [-1803.28, -295.02], [-1803.98, -295.0], [-1803.73, -276.78], [-1805.91, -277.67], [-1819.87, -277.1], [-1822.03, -276.42], [-1821.02, -249.12], [-1752.79, -251.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4298}}, {"shape": {"outer": [[-1590.72, -257.8], [-1591.17, -264.51], [-1591.08, -264.86], [-1591.92, -282.91], [-1592.6, -297.26], [-1593.24, -297.25], [-1593.82, -308.64], [-1593.18, -308.66], [-1594.9, -341.27], [-1576.52, -342.38], [-1576.7, -347.24], [-1569.52, -347.6], [-1569.39, -342.65], [-1558.97, -343.14], [-1559.08, -345.96], [-1558.87, -348.15], [-1557.83, -351.56], [-1556.4, -354.16], [-1554.57, -356.36], [-1553.41, -357.55], [-1551.44, -359.0], [-1548.22, -360.55], [-1544.51, -361.41], [-1541.11, -361.42], [-1540.93, -357.24], [-1535.68, -357.59], [-1535.27, -350.62], [-1540.72, -350.46], [-1539.74, -330.8], [-1537.39, -330.23], [-1534.65, -328.9], [-1532.25, -326.75], [-1530.97, -324.4], [-1530.21, -322.05], [-1513.24, -323.02], [-1513.11, -324.46], [-1512.68, -325.98], [-1511.54, -328.12], [-1509.5, -330.35], [-1506.89, -331.8], [-1504.69, -332.59], [-1505.57, -352.09], [-1511.23, -351.8], [-1511.43, -358.68], [-1505.92, -358.94], [-1506.24, -363.14], [-1501.13, -363.36], [-1498.44, -363.24], [-1495.27, -362.39], [-1492.49, -360.96], [-1490.23, -359.09], [-1488.23, -356.92], [-1486.61, -354.12], [-1485.54, -351.6], [-1485.22, -349.32], [-1484.9, -347.9], [-1484.36, -347.19], [-1483.4, -346.92], [-1480.78, -295.58], [-1484.33, -295.47], [-1488.55, -288.91], [-1486.27, -286.92], [-1484.17, -284.42], [-1483.09, -282.73], [-1482.79, -282.17], [-1481.4, -282.93], [-1480.55, -280.86], [-1479.97, -278.63], [-1479.69, -274.62], [-1480.23, -271.08], [-1481.61, -267.68], [-1482.61, -265.8], [-1483.98, -263.77], [-1485.76, -262.12], [-1487.86, -260.42], [-1489.86, -259.27], [-1492.14, -258.26], [-1492.72, -259.72], [-1494.7, -259.16], [-1497.81, -258.82], [-1498.01, -262.49], [-1499.16, -262.59], [-1501.87, -263.13], [-1504.58, -264.22], [-1507.26, -266.24], [-1510.03, -270.29], [-1511.48, -275.24], [-1514.14, -275.14], [-1513.86, -268.1], [-1535.4, -267.13], [-1535.34, -265.19], [-1545.75, -264.6], [-1545.84, -266.42], [-1555.42, -266.0], [-1555.65, -270.44], [-1565.95, -270.08], [-1566.24, -266.27], [-1567.49, -263.13], [-1568.45, -261.35], [-1569.94, -259.53], [-1572.83, -256.81], [-1576.2, -255.1], [-1579.94, -254.06], [-1583.72, -253.82], [-1583.91, -258.08], [-1590.72, -257.8]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 14919}}, {"shape": {"outer": [[-1437.51, -284.83], [-1439.65, -328.27], [-1437.97, -328.36], [-1438.07, -330.43], [-1442.6, -330.21], [-1444.39, -366.74], [-1401.96, -368.81], [-1401.84, -366.26], [-1388.84, -366.89], [-1387.28, -334.5], [-1384.27, -334.65], [-1384.1, -331.06], [-1374.35, -331.53], [-1374.02, -324.58], [-1370.11, -324.77], [-1354.32, -325.51], [-1354.1, -320.79], [-1353.95, -317.73], [-1352.69, -317.79], [-1352.03, -303.64], [-1353.29, -303.58], [-1353.15, -300.75], [-1353.09, -299.62], [-1350.96, -299.72], [-1350.84, -297.31], [-1344.42, -297.62], [-1343.03, -268.18], [-1348.77, -267.92], [-1361.52, -267.31], [-1370.5, -266.88], [-1373.06, -266.77], [-1373.7, -280.16], [-1389.68, -279.41], [-1414.91, -278.21], [-1414.83, -276.52], [-1421.66, -276.19], [-1421.76, -278.21], [-1436.21, -277.51], [-1436.57, -284.88], [-1437.51, -284.83]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 13521}}, {"shape": {"outer": [[-1947.38, -297.16], [-1930.49, -297.65], [-1930.41, -294.72], [-1912.29, -295.25], [-1911.48, -267.7], [-1889.31, -268.35], [-1890.34, -303.68], [-1896.12, -303.52], [-1896.21, -306.44], [-1896.3, -309.37], [-1887.87, -309.61], [-1888.27, -323.12], [-1910.24, -322.47], [-1910.3, -324.61], [-1906.92, -324.7], [-1907.06, -329.28], [-1907.19, -333.84], [-1910.42, -333.75], [-1910.67, -342.05], [-1931.14, -341.45], [-1931.05, -338.36], [-1943.84, -337.98], [-1948.58, -337.85], [-1947.38, -297.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1815}}, {"shape": {"outer": [[-2125.42, -274.08], [-2115.06, -277.97], [-2114.2, -276.26], [-2100.32, -282.34], [-2102.11, -286.18], [-2062.23, -305.02], [-2060.5, -301.38], [-2038.93, -313.22], [-2039.94, -314.88], [-2022.71, -325.0], [-2019.95, -234.49], [-2046.74, -233.67], [-2046.8, -235.97], [-2112.07, -234.03], [-2112.01, -232.05], [-2124.19, -231.7], [-2125.42, -274.08]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7425}}, {"shape": {"outer": [[-1323.0, -270.3], [-1324.01, -292.3], [-1323.57, -292.32], [-1325.11, -325.37], [-1327.29, -325.27], [-1330.49, -325.11], [-1330.99, -335.71], [-1327.84, -335.86], [-1327.26, -335.89], [-1327.55, -342.08], [-1324.83, -342.2], [-1324.96, -345.01], [-1325.9, -344.97], [-1327.06, -370.39], [-1295.28, -371.73], [-1290.95, -372.17], [-1269.62, -373.22], [-1234.02, -374.97], [-1234.09, -376.38], [-1220.28, -377.06], [-1219.23, -355.52], [-1220.39, -355.46], [-1220.04, -348.47], [-1220.73, -348.44], [-1220.36, -340.94], [-1220.11, -335.9], [-1219.89, -331.58], [-1218.17, -297.31], [-1215.36, -297.44], [-1214.2, -274.28], [-1248.87, -272.55], [-1248.94, -274.05], [-1318.9, -270.51], [-1323.0, -270.3]], "holes": []}, "height": 50.0, "data": {"type": "residential", "density": 1.0, "pop": 26985, "jobs": 0}}, {"shape": {"outer": [[-2184.64, -229.32], [-2154.97, -230.74], [-2153.99, -229.61], [-2152.54, -229.74], [-2151.88, -230.94], [-2151.92, -232.33], [-2152.93, -233.04], [-2153.12, -237.91], [-2152.57, -238.62], [-2152.61, -241.15], [-2153.25, -241.78], [-2153.82, -256.86], [-2165.94, -256.41], [-2165.84, -253.69], [-2172.94, -253.61], [-2175.64, -252.33], [-2175.71, -247.67], [-2185.15, -247.31], [-2184.64, -229.32]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.467, "pop": 0, "jobs": 467}}, {"shape": {"outer": [[-1162.05, -422.95], [-1163.03, -446.82], [-1163.86, -467.01], [-1168.48, -466.83], [-1168.53, -467.91], [-1168.66, -471.06], [-1162.08, -471.32], [-1162.52, -481.89], [-1169.2, -481.62], [-1169.88, -498.57], [-1172.05, -498.48], [-1172.14, -500.88], [-1179.62, -500.56], [-1179.53, -498.3], [-1182.54, -498.18], [-1182.44, -497.54], [-1181.71, -481.14], [-1183.1, -481.08], [-1182.55, -467.71], [-1181.15, -467.76], [-1181.08, -466.18], [-1185.11, -466.02], [-1183.31, -422.0], [-1184.82, -421.94], [-1184.95, -424.97], [-1188.98, -424.82], [-1188.84, -421.38], [-1190.22, -421.33], [-1190.11, -418.83], [-1192.41, -418.73], [-1192.13, -411.92], [-1189.72, -412.02], [-1189.62, -409.45], [-1158.71, -410.71], [-1158.63, -408.83], [-1145.33, -409.38], [-1145.42, -411.52], [-1115.1, -412.77], [-1115.19, -415.07], [-1113.0, -415.02], [-1113.46, -422.55], [-1115.69, -422.46], [-1115.8, -425.13], [-1146.21, -423.88], [-1146.48, -430.31], [-1156.85, -429.89], [-1156.58, -423.17], [-1162.05, -422.95]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 4384, "jobs": 0}}, {"shape": {"outer": [[-1350.49, -415.49], [-1350.86, -423.9], [-1353.07, -423.8], [-1353.18, -426.3], [-1376.78, -425.29], [-1376.81, -425.84], [-1377.07, -432.04], [-1389.01, -431.52], [-1388.89, -428.82], [-1400.41, -428.33], [-1403.02, -428.22], [-1403.23, -433.16], [-1406.79, -433.0], [-1406.91, -435.86], [-1407.3, -444.86], [-1409.33, -444.76], [-1409.37, -445.59], [-1419.71, -445.12], [-1419.63, -443.44], [-1420.35, -443.4], [-1425.73, -443.15], [-1425.79, -444.36], [-1436.7, -443.85], [-1437.81, -467.46], [-1439.93, -467.36], [-1440.03, -469.54], [-1449.61, -469.08], [-1449.49, -466.76], [-1451.79, -466.65], [-1450.67, -443.18], [-1452.78, -443.09], [-1451.99, -426.63], [-1449.87, -426.73], [-1449.84, -426.14], [-1453.71, -425.96], [-1453.64, -424.38], [-1452.57, -402.09], [-1448.61, -402.27], [-1448.34, -396.6], [-1445.64, -396.72], [-1445.51, -394.19], [-1436.28, -394.62], [-1436.36, -396.39], [-1436.41, -397.36], [-1433.84, -397.48], [-1434.17, -404.49], [-1421.62, -405.07], [-1421.35, -399.41], [-1416.16, -399.64], [-1411.4, -399.87], [-1411.64, -404.96], [-1391.57, -405.89], [-1391.74, -409.55], [-1376.21, -410.26], [-1376.27, -411.67], [-1352.51, -412.72], [-1352.63, -415.4], [-1350.49, -415.49]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 5915, "jobs": 0}}, {"shape": {"outer": [[-1644.43, -266.42], [-1644.2, -266.43], [-1644.57, -274.33], [-1656.51, -273.75], [-1656.38, -271.2], [-1660.97, -270.98], [-1660.84, -268.28], [-1660.8, -265.18], [-1660.7, -261.71], [-1660.56, -256.95], [-1660.41, -253.72], [-1654.44, -254.02], [-1654.69, -259.12], [-1644.11, -259.63], [-1644.43, -266.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.167, "pop": 0, "jobs": 167}}, {"shape": {"outer": [[-1645.2, -321.48], [-1644.95, -316.03], [-1644.71, -310.59], [-1632.67, -311.12], [-1633.59, -332.2], [-1626.19, -332.52], [-1627.09, -353.07], [-1634.56, -352.73], [-1634.71, -355.96], [-1646.76, -355.44], [-1646.01, -338.5], [-1666.32, -337.61], [-1666.54, -342.59], [-1673.21, -342.29], [-1672.27, -320.86], [-1673.71, -320.8], [-1673.56, -317.17], [-1672.06, -317.23], [-1672.06, -317.02], [-1667.16, -317.24], [-1666.95, -312.28], [-1663.15, -312.44], [-1663.27, -315.37], [-1663.51, -320.68], [-1645.2, -321.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.795, "pop": 0, "jobs": 795}}, {"shape": {"outer": [[-1692.79, -473.99], [-1696.08, -473.85], [-1696.39, -481.01], [-1721.27, -479.96], [-1720.86, -470.37], [-1722.9, -470.28], [-1722.82, -468.28], [-1732.16, -467.88], [-1731.12, -443.33], [-1724.04, -443.63], [-1723.88, -439.97], [-1728.57, -439.77], [-1728.39, -435.58], [-1719.29, -435.96], [-1719.15, -432.66], [-1700.34, -433.45], [-1700.52, -437.57], [-1686.63, -438.16], [-1686.93, -445.28], [-1686.81, -445.3], [-1687.08, -451.6], [-1684.0, -451.73], [-1684.78, -470.12], [-1688.52, -469.96], [-1688.62, -472.35], [-1688.69, -472.35], [-1688.98, -479.15], [-1692.99, -478.98], [-1692.79, -473.99]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2597}}, {"shape": {"outer": [[-1634.44, -409.65], [-1633.02, -409.72], [-1633.25, -414.78], [-1634.61, -414.72], [-1634.81, -419.0], [-1664.02, -417.68], [-1664.54, -417.65], [-1663.27, -389.71], [-1681.05, -388.9], [-1681.12, -390.49], [-1678.78, -390.6], [-1679.02, -396.05], [-1680.42, -395.98], [-1680.71, -402.37], [-1681.23, -413.5], [-1681.74, -424.76], [-1691.12, -424.33], [-1703.37, -423.77], [-1710.61, -423.44], [-1710.69, -425.04], [-1716.68, -424.77], [-1716.57, -422.23], [-1727.7, -421.72], [-1725.93, -383.07], [-1725.88, -382.09], [-1726.1, -382.08], [-1725.84, -376.49], [-1720.38, -376.75], [-1720.39, -377.05], [-1719.38, -377.1], [-1624.85, -381.41], [-1625.98, -406.19], [-1634.27, -405.81], [-1634.44, -409.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2325}}, {"shape": {"outer": [[-1600.55, -403.8], [-1599.98, -394.17], [-1581.58, -395.25], [-1582.15, -404.88], [-1600.55, -403.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1584.5, -406.71], [-1585.02, -415.9], [-1604.29, -414.8], [-1603.76, -405.6], [-1584.5, -406.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1686.99, -350.84], [-1688.12, -350.8], [-1689.53, -350.73], [-1689.59, -352.38], [-1706.51, -351.71], [-1706.44, -350.08], [-1709.33, -349.97], [-1709.21, -347.03], [-1716.57, -346.75], [-1716.53, -345.58], [-1720.99, -345.41], [-1721.06, -347.48], [-1730.06, -347.14], [-1729.72, -338.16], [-1728.71, -338.2], [-1727.06, -338.26], [-1726.99, -336.16], [-1727.49, -336.14], [-1727.4, -333.73], [-1728.53, -333.69], [-1728.49, -332.58], [-1729.5, -332.54], [-1731.28, -332.46], [-1731.16, -329.32], [-1732.79, -329.26], [-1731.93, -307.2], [-1729.17, -307.31], [-1729.08, -305.24], [-1712.92, -305.87], [-1713.05, -309.19], [-1703.97, -309.55], [-1703.84, -306.23], [-1687.73, -306.86], [-1687.8, -308.82], [-1685.36, -308.92], [-1686.13, -328.62], [-1686.61, -328.6], [-1686.67, -330.21], [-1686.73, -331.86], [-1686.25, -331.88], [-1686.99, -350.84]], "holes": []}, "height": 45.5, "data": {"type": "residential", "density": 1.0, "pop": 4323, "jobs": 0}}, {"shape": {"outer": [[-1596.59, -417.55], [-1592.32, -417.67], [-1592.37, -419.44], [-1581.55, -419.87], [-1581.95, -430.03], [-1603.29, -429.17], [-1602.88, -419.03], [-1596.64, -419.27], [-1596.59, -417.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2117.85, -327.15], [-2042.36, -364.42], [-2044.55, -368.71], [-2040.19, -371.13], [-2038.05, -366.55], [-2031.19, -369.97], [-2026.85, -372.23], [-2027.24, -391.76], [-2025.02, -391.94], [-2023.03, -392.05], [-2024.04, -417.8], [-2025.3, -449.67], [-2031.51, -449.49], [-2047.15, -449.06], [-2055.16, -448.85], [-2054.83, -435.84], [-2055.88, -430.0], [-2057.79, -423.98], [-2060.34, -417.68], [-2063.67, -411.39], [-2068.22, -405.82], [-2073.49, -400.99], [-2080.06, -396.37], [-2085.2, -394.08], [-2090.82, -391.94], [-2094.92, -390.61], [-2099.14, -389.45], [-2103.86, -388.46], [-2108.6, -387.81], [-2119.19, -387.24], [-2119.37, -385.99], [-2120.48, -386.02], [-2127.85, -386.2], [-2127.61, -346.67], [-2118.21, -347.27], [-2118.01, -335.55], [-2117.85, -327.15]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7117}}, {"shape": {"outer": [[-1997.01, -501.22], [-1995.07, -501.31], [-1994.91, -497.87], [-1987.9, -498.2], [-1987.72, -494.59], [-1972.61, -495.32], [-1972.78, -498.94], [-1966.27, -499.25], [-1966.43, -502.69], [-1964.37, -502.79], [-1964.89, -513.51], [-1965.4, -524.15], [-1967.46, -524.04], [-1967.61, -527.16], [-1974.14, -526.85], [-1974.3, -530.22], [-1989.41, -529.49], [-1989.24, -525.84], [-1996.25, -525.51], [-1996.07, -522.01], [-1998.0, -521.91], [-1997.01, -501.22]], "holes": []}, "height": 54.9, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4346}}, {"shape": {"outer": [[-2639.97, -147.76], [-2636.97, -147.88], [-2637.04, -149.71], [-2630.43, -149.97], [-2631.51, -176.4], [-2637.04, -176.17], [-2637.08, -177.25], [-2647.04, -176.84], [-2646.84, -171.94], [-2646.76, -171.94], [-2645.83, -149.31], [-2660.78, -148.7], [-2661.73, -171.85], [-2672.55, -171.4], [-2672.65, -173.72], [-2674.96, -173.63], [-2676.07, -173.59], [-2675.97, -171.36], [-2686.79, -170.91], [-2685.83, -147.52], [-2685.98, -147.52], [-2685.66, -139.72], [-2674.97, -140.15], [-2674.87, -137.58], [-2664.6, -138.0], [-2664.71, -140.46], [-2660.57, -140.64], [-2660.59, -140.95], [-2639.72, -141.79], [-2639.97, -147.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.898, "pop": 0, "jobs": 898}}, {"shape": {"outer": [[-2732.71, -158.73], [-2713.98, -159.36], [-2714.35, -170.19], [-2733.08, -169.56], [-2732.71, -158.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.13, "pop": 0, "jobs": 130}}, {"shape": {"outer": [[-2617.97, -142.5], [-2584.59, -143.71], [-2586.14, -186.63], [-2619.53, -185.42], [-2617.97, -142.5]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.402, "pop": 0, "jobs": 402}}, {"shape": {"outer": [[-2002.79, -380.3], [-1906.85, -427.52], [-1907.06, -432.8], [-1911.03, -432.63], [-1912.16, -460.92], [-1912.33, -465.32], [-1951.67, -463.93], [-1951.04, -450.86], [-1957.12, -450.58], [-1962.32, -450.34], [-1962.89, -463.61], [-1989.94, -461.27], [-2003.9, -460.81], [-2000.65, -422.42], [-2003.57, -422.26], [-2003.5, -418.35], [-2002.79, -380.3]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 10593}}, {"shape": {"outer": [[2573.85, 1756.89], [2572.69, 1761.34], [2574.14, 1761.69], [2572.99, 1765.94], [2571.53, 1765.55], [2570.88, 1768.19], [2568.34, 1767.45], [2566.19, 1776.14], [2554.07, 1773.01], [2559.11, 1753.65], [2566.08, 1755.32], [2566.45, 1754.12], [2572.09, 1755.61], [2571.91, 1756.38], [2573.85, 1756.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.188, "pop": 0, "jobs": 188}}, {"shape": {"outer": [[2826.6, 2689.08], [2844.36, 2693.7], [2842.34, 2705.18], [2845.27, 2710.65], [2856.15, 2714.37], [2850.53, 2732.38], [2816.32, 2722.35], [2826.6, 2689.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.641, "pop": 0, "jobs": 641}}, {"shape": {"outer": [[944.37, 540.66], [985.32, 576.85], [934.78, 634.13], [892.63, 596.57], [944.37, 540.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2712}}, {"shape": {"outer": [[1276.97, 674.21], [1220.35, 622.81], [1244.39, 596.52], [1274.89, 624.22], [1276.04, 622.97], [1302.15, 646.68], [1276.97, 674.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1781}}, {"shape": {"outer": [[1586.55, 811.84], [1600.24, 797.31], [1610.48, 806.57], [1613.03, 803.79], [1618.55, 808.97], [1603.05, 825.85], [1586.55, 811.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.288, "pop": 0, "jobs": 288}}, {"shape": {"outer": [[2004.1, 1291.06], [2008.34, 1287.3], [2009.52, 1286.26], [1994.66, 1269.61], [1988.08, 1275.44], [1992.94, 1280.88], [1994.1, 1279.86], [1994.7, 1280.53], [2004.1, 1291.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[-493.98, -2176.98], [-477.38, -2177.88], [-475.37, -2153.11], [-489.31, -2151.41], [-493.98, -2176.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.249, "pop": 0, "jobs": 249}}, {"shape": {"outer": [[-569.88, -2171.89], [-562.07, -2172.25], [-561.24, -2153.68], [-562.88, -2153.61], [-562.28, -2140.23], [-568.45, -2139.96], [-569.88, -2171.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.146, "pop": 0, "jobs": 146}}, {"shape": {"outer": [[-589.35, -2090.18], [-586.41, -2095.12], [-583.08, -2093.15], [-586.01, -2088.22], [-589.35, -2090.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.014, "pop": 0, "jobs": 14}}, {"shape": {"outer": [[-1164.91, -3162.09], [-1154.8, -3110.96], [-1133.91, -3115.06], [-1117.92, -3034.22], [-1098.86, -3037.96], [-1096.41, -3025.6], [-1088.77, -3027.09], [-1085.3, -3009.57], [-1049.03, -3016.7], [-1055.01, -3046.94], [-1076.07, -3042.8], [-1083.73, -3081.59], [-1078.78, -3082.56], [-1080.92, -3093.45], [-1085.85, -3092.48], [-1094.41, -3135.8], [-1115.28, -3131.69], [-1119.46, -3152.81], [-1137.36, -3149.29], [-1140.82, -3166.83], [-1164.91, -3162.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4471}}, {"shape": {"outer": [[-2354.12, -1912.25], [-2340.26, -1915.91], [-2339.82, -1915.18], [-2336.14, -1909.15], [-2334.5, -1906.46], [-2337.8, -1904.79], [-2342.84, -1902.22], [-2343.98, -1901.64], [-2354.12, -1912.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1772.87, -1839.02], [-1730.19, -1840.88], [-1725.01, -1840.95], [-1723.14, -1795.81], [-1734.73, -1784.62], [-1771.72, -1819.34], [-1772.87, -1839.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1253}}, {"shape": {"outer": [[-1622.53, -1744.61], [-1612.46, -1744.85], [-1603.46, -1745.08], [-1536.47, -1746.72], [-1537.66, -1795.69], [-1543.2, -1795.41], [-1543.66, -1804.64], [-1595.15, -1802.64], [-1595.29, -1811.41], [-1598.69, -1811.36], [-1600.55, -1811.26], [-1600.44, -1802.92], [-1606.86, -1802.84], [-1611.6, -1802.79], [-1611.42, -1798.18], [-1617.78, -1797.97], [-1617.76, -1793.72], [-1619.86, -1793.59], [-1619.89, -1789.3], [-1619.37, -1773.62], [-1618.74, -1754.18], [-1622.78, -1753.84], [-1622.53, -1744.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3027}}, {"shape": {"outer": [[-1725.01, -1840.95], [-1723.14, -1795.81], [-1722.71, -1792.07], [-1712.31, -1792.33], [-1708.84, -1793.58], [-1710.0, -1841.21], [-1725.01, -1840.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.455, "pop": 0, "jobs": 455}}, {"shape": {"outer": [[-1543.66, -1804.64], [-1543.2, -1795.41], [-1537.66, -1795.69], [-1531.07, -1796.01], [-1531.24, -1804.67], [-1518.99, -1825.54], [-1523.65, -1827.79], [-1521.67, -1830.73], [-1593.17, -1869.41], [-1595.99, -1864.32], [-1597.38, -1865.08], [-1606.24, -1847.83], [-1604.38, -1846.78], [-1605.81, -1844.35], [-1599.46, -1840.6], [-1599.19, -1830.72], [-1598.96, -1822.0], [-1598.69, -1811.36], [-1595.29, -1811.41], [-1595.15, -1802.64], [-1543.66, -1804.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2401}}, {"shape": {"outer": [[-1696.85, -1780.6], [-1685.83, -1769.59], [-1690.51, -1765.21], [-1695.19, -1760.82], [-1709.43, -1775.16], [-1720.87, -1785.38], [-1712.31, -1792.33], [-1708.84, -1793.58], [-1696.85, -1780.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.293, "pop": 0, "jobs": 293}}, {"shape": {"outer": [[-1710.06, -1844.91], [-1680.65, -1874.66], [-1676.33, -1879.02], [-1685.67, -1888.05], [-1703.5, -1869.71], [-1714.28, -1858.21], [-1719.2, -1858.13], [-1727.86, -1849.84], [-1724.38, -1845.61], [-1725.01, -1840.95], [-1710.0, -1841.21], [-1710.06, -1844.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.503, "pop": 0, "jobs": 503}}, {"shape": {"outer": [[-1756.3, -1932.68], [-1675.73, -1890.12], [-1669.08, -1902.29], [-1749.47, -1946.16], [-1756.3, -1932.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.847, "pop": 0, "jobs": 847}}, {"shape": {"outer": [[-1696.85, -1780.6], [-1656.65, -1766.28], [-1643.88, -1793.45], [-1635.29, -1824.47], [-1634.0, -1830.32], [-1631.23, -1841.19], [-1629.17, -1848.39], [-1651.46, -1854.39], [-1655.79, -1841.18], [-1659.33, -1841.8], [-1662.34, -1832.54], [-1710.06, -1844.91], [-1710.0, -1841.21], [-1708.84, -1793.58], [-1696.85, -1780.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2952}}, {"shape": {"outer": [[-1734.73, -1784.62], [-1765.91, -1751.45], [-1758.63, -1739.41], [-1755.43, -1742.11], [-1753.41, -1740.43], [-1749.78, -1743.36], [-1745.3, -1739.57], [-1709.43, -1775.16], [-1720.87, -1785.38], [-1712.31, -1792.33], [-1722.71, -1792.07], [-1723.14, -1795.81], [-1734.73, -1784.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.886, "pop": 0, "jobs": 886}}, {"shape": {"outer": [[-1775.56, -1918.4], [-1748.04, -1919.19], [-1710.43, -1898.63], [-1718.12, -1884.03], [-1724.25, -1872.39], [-1730.11, -1872.32], [-1730.28, -1856.31], [-1733.34, -1856.38], [-1733.39, -1846.71], [-1730.61, -1842.85], [-1730.19, -1840.88], [-1772.87, -1839.02], [-1773.42, -1855.1], [-1775.56, -1918.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2432}}, {"shape": {"outer": [[-1813.44, 84.74], [-1814.63, 77.86], [-1811.17, 77.26], [-1807.9, 76.7], [-1806.7, 83.57], [-1813.44, 84.74]], "holes": []}, "height": 25.9, "data": {"type": "commercial", "density": 0.099, "pop": 0, "jobs": 99}}, {"shape": {"outer": [[-3244.16, -1700.13], [-3233.13, -1690.76], [-3237.38, -1685.8], [-3229.98, -1679.52], [-3228.77, -1680.94], [-3205.88, -1661.5], [-3199.02, -1669.52], [-3189.26, -1661.22], [-3184.07, -1667.29], [-3178.97, -1662.96], [-3181.12, -1660.46], [-3176.11, -1656.2], [-3170.88, -1651.75], [-3168.69, -1654.3], [-3163.64, -1650.0], [-3168.56, -1644.26], [-3158.93, -1636.08], [-3161.75, -1632.77], [-3164.58, -1635.18], [-3185.06, -1611.29], [-3181.06, -1607.88], [-3176.88, -1604.32], [-3174.53, -1607.07], [-3165.74, -1599.58], [-3168.86, -1595.95], [-3146.85, -1577.2], [-3137.05, -1588.62], [-3135.6, -1590.31], [-3134.19, -1589.13], [-3116.23, -1610.04], [-3129.23, -1621.13], [-3127.92, -1622.67], [-3122.1, -1629.43], [-3124.83, -1631.75], [-3123.87, -1632.85], [-3155.59, -1659.88], [-3158.27, -1656.77], [-3163.38, -1661.12], [-3161.92, -1662.82], [-3172.13, -1671.53], [-3173.53, -1669.9], [-3178.66, -1674.26], [-3179.83, -1672.9], [-3182.92, -1675.53], [-3163.76, -1697.89], [-3163.2, -1697.41], [-3157.09, -1704.54], [-3158.08, -1705.38], [-3151.59, -1712.97], [-3161.79, -1721.63], [-3162.73, -1720.53], [-3164.46, -1722.0], [-3151.15, -1737.57], [-3187.18, -1768.14], [-3192.88, -1761.47], [-3195.95, -1764.08], [-3200.07, -1767.58], [-3212.11, -1753.49], [-3204.92, -1747.39], [-3206.33, -1745.73], [-3205.65, -1745.16], [-3244.16, -1700.13]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7442}}, {"shape": {"outer": [[-3172.72, -1866.52], [-3159.1, -1855.51], [-3160.65, -1853.6], [-3153.5, -1847.83], [-3151.95, -1849.74], [-3142.56, -1842.15], [-3138.34, -1830.09], [-3135.98, -1830.85], [-3124.1, -1799.51], [-3117.0, -1802.3], [-3116.51, -1801.06], [-3110.93, -1803.25], [-3111.41, -1804.48], [-3103.47, -1807.59], [-3120.38, -1851.66], [-3119.03, -1853.27], [-3129.33, -1862.12], [-3130.38, -1860.9], [-3152.59, -1878.75], [-3136.92, -1897.66], [-3150.01, -1908.2], [-3157.93, -1898.81], [-3160.04, -1900.23], [-3173.25, -1883.76], [-3168.93, -1880.47], [-3174.2, -1874.09], [-3169.51, -1870.48], [-3172.72, -1866.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1726}}, {"shape": {"outer": [[-3101.9, -1725.45], [-3102.29, -1724.68], [-3112.21, -1730.68], [-3110.8, -1733.41], [-3113.55, -1735.16], [-3106.17, -1748.17], [-3095.74, -1741.45], [-3080.57, -1759.95], [-3037.72, -1725.06], [-3052.56, -1706.98], [-3043.27, -1699.41], [-3049.45, -1691.88], [-3050.31, -1692.57], [-3055.4, -1686.37], [-3077.87, -1704.67], [-3067.6, -1717.18], [-3062.54, -1713.06], [-3057.73, -1718.93], [-3082.29, -1738.94], [-3086.39, -1733.95], [-3082.02, -1731.19], [-3083.83, -1728.39], [-3083.15, -1727.85], [-3089.51, -1717.91], [-3101.9, -1725.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 844, "jobs": 0}}, {"shape": {"outer": [[-3044.26, -1774.72], [-3031.05, -1790.23], [-3043.65, -1800.87], [-3056.85, -1785.36], [-3044.26, -1774.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-3148.06, -2021.99], [-3126.94, -1994.52], [-3137.28, -1986.63], [-3136.36, -1985.42], [-3144.79, -1978.99], [-3149.14, -1984.65], [-3150.17, -1983.87], [-3153.05, -1987.62], [-3156.56, -1992.19], [-3151.9, -1995.75], [-3163.19, -2010.44], [-3148.06, -2021.99]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.488, "pop": 0, "jobs": 488}}, {"shape": {"outer": [[-1238.22, -2819.97], [-1238.35, -2824.69], [-1239.66, -2824.65], [-1240.1, -2839.99], [-1238.79, -2840.03], [-1239.25, -2856.07], [-1202.55, -2857.11], [-1202.63, -2860.02], [-1190.5, -2860.37], [-1189.29, -2818.02], [-1194.98, -2817.86], [-1194.82, -2812.5], [-1230.68, -2811.48], [-1230.92, -2820.18], [-1238.22, -2819.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1376}}, {"shape": {"outer": [[-2143.01, -638.56], [-2115.69, -639.18], [-2116.1, -656.78], [-2122.42, -656.64], [-2123.17, -689.66], [-2123.31, -695.56], [-2123.86, -696.88], [-2135.59, -696.61], [-2135.63, -698.69], [-2144.39, -698.49], [-2143.01, -638.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 538, "jobs": 0}}, {"shape": {"outer": [[-2079.22, -643.83], [-2090.4, -643.51], [-2091.51, -681.9], [-2080.32, -682.22], [-2080.21, -678.53], [-2079.22, -643.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[-2055.83, -671.11], [-2055.02, -645.36], [-2033.59, -646.02], [-2034.19, -665.35], [-2034.39, -671.77], [-2055.83, -671.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.442, "pop": 221, "jobs": 0}}, {"shape": {"outer": [[-2076.17, -643.91], [-2065.59, -644.16], [-2066.4, -678.61], [-2076.98, -678.36], [-2076.17, -643.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.292, "pop": 146, "jobs": 0}}, {"shape": {"outer": [[-1976.9, -648.25], [-1977.38, -659.11], [-1984.36, -658.81], [-1984.53, -662.59], [-2004.61, -661.72], [-2003.98, -647.07], [-1976.9, -648.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[-2006.1, -591.73], [-2005.68, -579.79], [-1994.31, -580.18], [-1994.73, -592.13], [-2006.1, -591.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1954.99, -585.62], [-1956.13, -624.87], [-1923.73, -625.81], [-1923.34, -612.24], [-1930.82, -612.02], [-1930.07, -586.34], [-1954.99, -585.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.864, "pop": 432, "jobs": 0}}, {"shape": {"outer": [[-1912.39, -617.0], [-1912.64, -625.16], [-1896.84, -625.64], [-1896.59, -617.47], [-1912.39, -617.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1973.65, -589.28], [-1961.76, -589.52], [-1962.4, -621.3], [-1974.29, -621.06], [-1973.65, -589.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[-1989.39, -599.02], [-1989.99, -619.47], [-1978.85, -619.79], [-1978.25, -599.34], [-1989.39, -599.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-2006.14, -610.4], [-1992.87, -611.03], [-1993.32, -620.48], [-2006.59, -619.84], [-2006.14, -610.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1865.79, -247.66], [-1866.59, -277.2], [-1854.63, -277.52], [-1854.4, -269.17], [-1838.6, -269.6], [-1838.61, -270.06], [-1834.53, -270.16], [-1834.64, -274.37], [-1824.7, -274.64], [-1824.32, -260.45], [-1834.4, -260.18], [-1834.18, -252.37], [-1836.48, -252.31], [-1838.6, -252.25], [-1838.7, -255.89], [-1854.26, -255.48], [-1854.05, -247.97], [-1859.71, -247.82], [-1865.79, -247.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.501, "pop": 0, "jobs": 501}}, {"shape": {"outer": [[-2596.13, -915.5], [-2604.21, -922.4], [-2619.05, -905.16], [-2624.76, -898.53], [-2616.68, -891.63], [-2596.13, -915.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-2626.69, -901.65], [-2632.15, -906.25], [-2642.71, -915.11], [-2648.62, -920.09], [-2655.21, -912.31], [-2633.27, -893.86], [-2626.69, -901.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-2651.34, -921.74], [-2645.88, -928.09], [-2636.46, -938.87], [-2630.73, -945.69], [-2638.84, -952.62], [-2659.46, -928.68], [-2651.34, -921.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[-2679.53, -941.59], [-2673.82, -948.35], [-2656.93, -967.92], [-2648.89, -961.07], [-2671.5, -934.74], [-2679.53, -941.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[-2686.97, -948.75], [-2687.89, -997.64], [-2698.27, -997.45], [-2697.35, -948.55], [-2686.97, -948.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}, {"shape": {"outer": [[-2981.43, -1223.43], [-2968.09, -1239.23], [-2960.01, -1232.47], [-2940.53, -1216.16], [-2933.05, -1209.88], [-2935.02, -1207.56], [-2946.39, -1194.08], [-2953.87, -1200.35], [-2973.34, -1216.66], [-2981.43, -1223.43]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.794, "pop": 0, "jobs": 794}}, {"shape": {"outer": [[-2981.23, -1242.45], [-2988.46, -1233.9], [-2981.0, -1227.65], [-2973.78, -1236.19], [-2976.55, -1238.51], [-2981.23, -1242.45]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.03, "pop": 0, "jobs": 30}}, {"shape": {"outer": [[-2162.31, -1429.91], [-2162.79, -1444.53], [-2150.28, -1444.95], [-2149.8, -1430.32], [-2162.31, -1429.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.117, "pop": 0, "jobs": 117}}, {"shape": {"outer": [[-793.51, -2225.47], [-787.64, -2235.74], [-785.96, -2246.11], [-786.49, -2253.6], [-785.21, -2253.67], [-785.56, -2260.99], [-787.54, -2301.99], [-788.26, -2317.04], [-785.47, -2334.36], [-781.24, -2341.18], [-780.11, -2340.7], [-777.23, -2345.53], [-773.41, -2351.93], [-761.26, -2361.08], [-743.62, -2365.19], [-728.5, -2362.76], [-728.72, -2361.28], [-726.2, -2360.75], [-723.76, -2359.41], [-723.3, -2360.41], [-709.67, -2352.09], [-699.95, -2338.51], [-695.94, -2322.75], [-696.19, -2315.72], [-699.46, -2292.85], [-697.11, -2282.77], [-688.6, -2271.97], [-701.56, -2258.92], [-710.92, -2271.66], [-709.97, -2272.5], [-712.27, -2275.39], [-712.84, -2277.65], [-714.19, -2276.96], [-717.83, -2292.4], [-714.28, -2314.75], [-713.18, -2314.65], [-712.84, -2316.88], [-714.27, -2317.18], [-716.57, -2330.79], [-722.98, -2339.57], [-732.16, -2344.93], [-743.13, -2346.4], [-753.34, -2344.09], [-762.37, -2338.23], [-757.96, -2334.12], [-751.83, -2328.72], [-754.74, -2323.41], [-762.9, -2326.25], [-767.43, -2327.9], [-769.35, -2317.53], [-769.03, -2304.27], [-768.41, -2291.76], [-767.56, -2277.79], [-767.02, -2268.27], [-766.79, -2262.03], [-766.58, -2257.23], [-768.18, -2257.24], [-767.67, -2246.75], [-770.19, -2229.27], [-780.94, -2211.96], [-790.24, -2220.61], [-789.47, -2222.04], [-793.51, -2225.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 2049, "jobs": 0}}, {"shape": {"outer": [[1575.68, 2456.21], [1571.81, 2444.89], [1548.71, 2452.74], [1552.58, 2464.05], [1575.68, 2456.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-1585.3, -942.45], [-1584.61, -911.6], [-1532.51, -912.76], [-1533.19, -943.61], [-1559.93, -943.01], [-1566.31, -942.87], [-1570.03, -942.78], [-1585.3, -942.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1029}}, {"shape": {"outer": [[-1555.47, -854.93], [-1554.31, -825.83], [-1566.31, -825.41], [-1565.45, -807.37], [-1522.56, -808.87], [-1524.02, -846.57], [-1523.17, -846.6], [-1523.46, -849.49], [-1523.75, -851.3], [-1524.3, -853.0], [-1525.2, -854.39], [-1526.62, -855.61], [-1528.18, -856.39], [-1529.91, -856.69], [-1533.35, -856.61], [-1533.31, -855.73], [-1555.47, -854.93]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1771, "jobs": 0}}, {"shape": {"outer": [[-1543.15, -952.86], [-1543.86, -979.59], [-1575.16, -978.75], [-1578.77, -978.66], [-1601.6, -978.05], [-1600.89, -951.31], [-1570.24, -952.13], [-1566.53, -952.23], [-1543.15, -952.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.989, "pop": 0, "jobs": 989}}, {"shape": {"outer": [[-2320.52, -1729.47], [-2331.14, -1739.57], [-2336.22, -1734.26], [-2350.61, -1718.92], [-2345.29, -1713.97], [-2347.37, -1711.75], [-2342.93, -1707.62], [-2338.81, -1706.97], [-2337.32, -1706.74], [-2332.2, -1705.93], [-2329.27, -1703.15], [-2327.0, -1700.99], [-2317.21, -1711.55], [-2320.28, -1714.8], [-2326.94, -1722.49], [-2320.52, -1729.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.434, "pop": 0, "jobs": 434}}, {"shape": {"outer": [[-2279.01, -1719.48], [-2269.84, -1727.19], [-2258.24, -1713.49], [-2267.41, -1705.79], [-2279.01, -1719.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.138, "pop": 0, "jobs": 138}}, {"shape": {"outer": [[-1877.93, -1883.29], [-1878.98, -1912.54], [-1859.5, -1913.24], [-1859.59, -1915.64], [-1851.57, -1915.93], [-1852.12, -1931.13], [-1810.15, -1932.64], [-1808.46, -1885.8], [-1877.93, -1883.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1788}}, {"shape": {"outer": [[50.78, 124.2], [59.89, 113.83], [83.22, 134.17], [74.1, 144.55], [50.78, 124.2]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 523, "jobs": 0}}, {"shape": {"outer": [[-325.55, 248.96], [-328.24, 246.51], [-329.74, 248.15], [-335.63, 242.78], [-334.13, 241.15], [-334.7, 240.63], [-327.96, 233.29], [-318.82, 241.63], [-325.55, 248.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-356.23, 221.73], [-381.32, 199.12], [-372.2, 189.08], [-347.12, 211.69], [-356.23, 221.73]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[-397.93, 517.33], [-395.74, 504.9], [-366.34, 510.02], [-368.53, 522.45], [-397.93, 517.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.241, "pop": 0, "jobs": 241}}, {"shape": {"outer": [[-200.02, 142.72], [-216.41, 127.88], [-206.96, 117.52], [-190.58, 132.37], [-200.02, 142.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[-92.43, 57.5], [-82.11, 46.48], [-56.79, 70.02], [-55.24, 71.47], [-65.56, 82.48], [-92.43, 57.5]], "holes": []}, "height": 38.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1707}}, {"shape": {"outer": [[-325.88, 252.41], [-314.99, 240.74], [-308.17, 247.05], [-309.22, 248.18], [-308.64, 248.73], [-310.67, 250.91], [-311.26, 250.36], [-316.51, 255.99], [-315.94, 256.52], [-317.8, 258.51], [-318.38, 257.99], [-319.06, 258.72], [-319.52, 258.3], [-320.78, 259.64], [-325.92, 254.88], [-324.67, 253.53], [-325.88, 252.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-254.79, 132.1], [-249.96, 126.73], [-252.03, 124.89], [-229.75, 100.08], [-225.39, 103.98], [-224.67, 103.17], [-217.31, 109.74], [-217.69, 110.17], [-213.71, 113.73], [-233.19, 135.41], [-241.15, 144.27], [-254.79, 132.1]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 741, "jobs": 0}}, {"shape": {"outer": [[-359.99, 437.78], [-374.54, 424.95], [-354.52, 402.43], [-339.97, 415.26], [-341.78, 417.25], [-359.99, 437.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.468, "pop": 234, "jobs": 0}}, {"shape": {"outer": [[-336.76, 519.54], [-290.56, 470.53], [-276.31, 483.76], [-279.92, 487.68], [-270.73, 495.72], [-245.71, 493.86], [-266.22, 516.34], [-336.76, 519.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1331}}, {"shape": {"outer": [[178.49, 251.06], [164.43, 238.21], [179.37, 221.98], [193.43, 234.83], [178.49, 251.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[-291.84, 227.97], [-291.18, 228.57], [-291.7, 229.14], [-287.05, 233.36], [-286.53, 232.79], [-283.54, 235.52], [-281.91, 233.74], [-281.31, 234.29], [-277.25, 229.85], [-277.85, 229.3], [-271.69, 222.58], [-271.21, 223.02], [-267.09, 218.52], [-267.58, 218.08], [-266.07, 216.44], [-268.17, 214.52], [-264.57, 210.58], [-266.03, 209.26], [-264.2, 207.26], [-265.46, 206.12], [-263.71, 204.2], [-264.67, 203.33], [-264.21, 202.83], [-268.3, 199.1], [-268.77, 199.61], [-275.55, 193.44], [-283.15, 201.73], [-275.9, 208.31], [-275.64, 210.28], [-291.84, 227.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-89.98, 176.42], [-91.16, 155.28], [-93.03, 123.78], [-79.73, 123.19], [-78.18, 124.37], [-65.23, 109.81], [-45.77, 126.87], [-89.98, 176.42]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 3693, "jobs": 0}}, {"shape": {"outer": [[-339.17, 236.36], [-329.96, 226.41], [-341.08, 216.2], [-350.29, 226.15], [-339.17, 236.36]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-375.0, 464.05], [-401.17, 493.17], [-413.33, 482.33], [-400.25, 467.78], [-388.24, 454.43], [-385.09, 457.24], [-383.23, 455.17], [-377.37, 460.4], [-378.14, 461.25], [-375.0, 464.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.41, "pop": 0, "jobs": 410}}, {"shape": {"outer": [[-316.68, 260.62], [-309.96, 253.22], [-309.79, 253.38], [-303.96, 246.99], [-303.83, 247.11], [-302.37, 245.5], [-299.35, 248.24], [-300.79, 249.83], [-297.65, 252.66], [-310.21, 266.47], [-311.05, 265.71], [-312.6, 267.41], [-317.9, 262.62], [-316.35, 260.92], [-316.68, 260.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-527.95, -2156.41], [-531.42, -2175.43], [-515.83, -2176.14], [-513.33, -2157.26], [-527.95, -2156.41]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.185, "pop": 0, "jobs": 185}}, {"shape": {"outer": [[-531.32, -2195.24], [-531.63, -2208.98], [-531.69, -2211.6], [-531.79, -2216.17], [-523.73, -2216.35], [-523.26, -2195.43], [-531.32, -2195.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-572.05, -2194.75], [-573.02, -2204.96], [-574.02, -2204.87], [-575.58, -2221.3], [-569.26, -2221.9], [-567.95, -2208.09], [-566.88, -2208.2], [-565.65, -2195.35], [-572.05, -2194.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[-511.53, -2155.79], [-502.41, -2156.12], [-505.75, -2175.34], [-514.71, -2175.09], [-511.53, -2155.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-599.03, -2147.19], [-599.66, -2164.09], [-589.68, -2164.45], [-589.05, -2147.56], [-599.03, -2147.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-605.01, -2197.13], [-605.22, -2198.95], [-606.29, -2198.82], [-607.86, -2212.19], [-598.08, -2213.33], [-596.54, -2200.22], [-597.46, -2200.1], [-597.22, -2198.04], [-605.01, -2197.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-499.83, -2151.98], [-490.92, -2153.54], [-494.61, -2175.66], [-504.21, -2175.16], [-499.83, -2151.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.137, "pop": 0, "jobs": 137}}, {"shape": {"outer": [[-579.6, -2159.11], [-579.77, -2164.92], [-581.25, -2164.88], [-581.47, -2172.27], [-576.5, -2172.43], [-576.12, -2159.21], [-579.6, -2159.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.037, "pop": 0, "jobs": 37}}, {"shape": {"outer": [[-1870.25, -698.62], [-1846.8, -699.28], [-1847.15, -711.61], [-1833.64, -712.0], [-1834.34, -736.47], [-1854.63, -735.88], [-1855.04, -749.95], [-1871.71, -749.48], [-1870.25, -698.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.915, "pop": 0, "jobs": 915}}, {"shape": {"outer": [[-1953.44, -742.44], [-1897.7, -744.94], [-1898.28, -757.62], [-1899.06, -757.58], [-1899.51, -767.55], [-1925.21, -766.39], [-1925.08, -763.52], [-1935.07, -763.06], [-1935.16, -765.01], [-1954.42, -764.14], [-1953.44, -742.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.774, "pop": 0, "jobs": 774}}, {"shape": {"outer": [[-2008.14, -741.0], [-1989.13, -741.72], [-1989.38, -748.24], [-1966.6, -749.1], [-1967.09, -761.9], [-2002.69, -760.56], [-2002.42, -753.38], [-2008.6, -753.15], [-2008.14, -741.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.394, "pop": 0, "jobs": 394}}, {"shape": {"outer": [[-2009.9, -696.43], [-1983.78, -690.01], [-1940.04, -691.07], [-1939.91, -685.88], [-1925.15, -686.23], [-1925.2, -687.97], [-1917.54, -688.17], [-1917.64, -691.68], [-1901.81, -692.12], [-1900.99, -692.14], [-1901.68, -717.26], [-1942.59, -716.13], [-1942.77, -722.64], [-1945.78, -722.56], [-1945.89, -726.32], [-1948.84, -726.22], [-1948.73, -722.58], [-1954.23, -722.41], [-1954.34, -726.16], [-1956.83, -726.08], [-1980.16, -725.36], [-1979.9, -716.92], [-2010.37, -715.96], [-2010.25, -711.91], [-2010.96, -711.06], [-2010.7, -701.03], [-2009.99, -700.49], [-2009.9, -696.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2016}}, {"shape": {"outer": [[-1875.15, -656.29], [-1830.87, -658.11], [-1831.75, -679.47], [-1876.02, -677.65], [-1875.15, -656.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.606, "pop": 0, "jobs": 606}}, {"shape": {"outer": [[-1958.53, -60.36], [-1957.86, -43.16], [-1958.34, -43.15], [-1958.27, -41.49], [-1930.74, -42.59], [-1930.77, -43.28], [-1930.25, -43.3], [-1931.75, -80.6], [-1931.94, -85.36], [-1947.06, -84.76], [-1948.36, -84.66], [-1948.14, -79.94], [-1947.81, -72.64], [-1947.77, -71.07], [-1963.33, -70.44], [-1963.57, -76.62], [-1974.64, -76.18], [-1974.43, -71.44], [-1973.98, -59.76], [-1958.53, -60.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.803, "pop": 0, "jobs": 803}}, {"shape": {"outer": [[-1993.85, -559.64], [-1993.17, -545.79], [-2000.06, -545.45], [-1999.61, -536.21], [-1967.79, -537.78], [-1968.24, -547.0], [-1984.96, -546.18], [-1985.62, -559.72], [-1985.76, -562.43], [-1982.47, -562.59], [-1982.75, -568.34], [-1969.23, -569.01], [-1969.7, -578.53], [-2001.41, -576.98], [-2000.94, -567.54], [-1994.25, -567.87], [-1993.85, -559.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.51, "pop": 0, "jobs": 510}}, {"shape": {"outer": [[-1903.5, -366.37], [-1904.12, -382.37], [-1892.18, -382.83], [-1892.12, -381.3], [-1890.54, -381.37], [-1890.33, -376.05], [-1890.05, -368.52], [-1891.62, -368.47], [-1891.56, -366.84], [-1903.5, -366.37]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2830.95, -175.37], [-2840.86, -176.85], [-2841.43, -171.79], [-2853.11, -173.49], [-2855.4, -158.86], [-2824.42, -153.64], [-2824.95, -150.25], [-2826.1, -150.39], [-2827.11, -150.25], [-2827.96, -149.84], [-2828.87, -148.91], [-2829.19, -148.19], [-2829.33, -147.28], [-2829.11, -145.99], [-2828.55, -145.04], [-2827.81, -144.42], [-2826.78, -143.98], [-2816.54, -143.84], [-2815.65, -144.16], [-2814.77, -144.83], [-2814.33, -145.84], [-2814.29, -146.74], [-2814.64, -147.87], [-2815.31, -148.44], [-2816.36, -148.84], [-2819.11, -149.26], [-2818.83, -150.92], [-2818.57, -152.65], [-2812.06, -151.56], [-2809.14, -152.09], [-2806.69, -153.32], [-2805.04, -154.69], [-2803.77, -157.03], [-2803.43, -160.32], [-2805.2, -163.37], [-2806.4, -164.92], [-2809.54, -165.99], [-2806.73, -182.44], [-2819.56, -184.13], [-2820.85, -183.86], [-2822.01, -183.34], [-2822.55, -179.68], [-2830.22, -180.71], [-2830.95, -175.37]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1363}}, {"shape": {"outer": [[-2333.94, -76.15], [-2293.62, -77.45], [-2294.11, -92.8], [-2281.09, -93.22], [-2264.46, -93.75], [-2264.98, -110.06], [-2265.51, -126.21], [-2283.86, -125.61], [-2284.01, -130.06], [-2285.5, -130.01], [-2335.63, -128.39], [-2334.5, -93.57], [-2333.94, -76.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1999}}, {"shape": {"outer": [[-2407.3, -82.62], [-2406.71, -65.14], [-2392.39, -65.52], [-2392.87, -83.38], [-2407.3, -82.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.163, "pop": 0, "jobs": 163}}, {"shape": {"outer": [[-2908.06, 345.39], [-2905.49, 352.53], [-2896.69, 350.15], [-2896.73, 348.06], [-2886.8, 340.72], [-2886.86, 339.51], [-2885.62, 338.5], [-2884.23, 338.58], [-2875.42, 328.1], [-2875.6, 326.84], [-2874.61, 325.39], [-2873.25, 325.25], [-2867.9, 314.08], [-2863.6, 316.26], [-2851.12, 335.22], [-2818.47, 314.65], [-2791.64, 297.74], [-2800.16, 284.66], [-2801.6, 285.59], [-2805.44, 279.7], [-2796.76, 275.54], [-2786.93, 275.26], [-2769.43, 271.67], [-2756.18, 266.67], [-2756.98, 264.55], [-2759.01, 259.16], [-2761.35, 259.94], [-2765.25, 261.24], [-2766.04, 255.14], [-2770.13, 255.23], [-2770.66, 254.17], [-2777.3, 254.47], [-2777.35, 255.03], [-2785.11, 255.24], [-2785.14, 256.49], [-2794.16, 256.83], [-2794.19, 255.85], [-2809.7, 256.44], [-2809.67, 257.16], [-2812.41, 257.26], [-2812.43, 256.54], [-2825.53, 257.04], [-2832.9, 256.09], [-2843.82, 253.56], [-2852.65, 253.19], [-2865.27, 253.72], [-2865.16, 256.45], [-2865.06, 259.17], [-2868.28, 260.59], [-2865.86, 266.18], [-2869.5, 267.62], [-2878.92, 267.88], [-2878.33, 283.13], [-2876.29, 283.12], [-2876.53, 291.48], [-2879.11, 291.72], [-2880.98, 300.53], [-2885.25, 309.15], [-2897.01, 304.52], [-2901.0, 313.51], [-2890.84, 318.74], [-2895.55, 324.36], [-2893.95, 325.93], [-2898.77, 330.57], [-2900.38, 329.26], [-2909.65, 334.99], [-2912.68, 337.59], [-2907.39, 344.09], [-2908.06, 345.39]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 4624, "jobs": 0}}, {"shape": {"outer": [[-2397.33, 310.71], [-2398.39, 273.72], [-2386.65, 273.39], [-2386.83, 267.31], [-2372.59, 266.9], [-2372.81, 259.32], [-2366.43, 259.13], [-2366.35, 262.03], [-2363.68, 261.96], [-2363.86, 255.8], [-2350.7, 255.42], [-2350.38, 266.61], [-2349.22, 266.58], [-2348.97, 275.45], [-2350.12, 275.48], [-2349.15, 309.51], [-2349.89, 309.53], [-2349.79, 312.81], [-2346.61, 312.72], [-2346.21, 326.6], [-2354.5, 326.84], [-2354.48, 327.51], [-2364.39, 327.8], [-2364.41, 327.12], [-2385.82, 327.74], [-2386.22, 313.92], [-2371.28, 313.49], [-2371.31, 312.63], [-2366.24, 312.48], [-2361.75, 312.35], [-2361.72, 313.22], [-2352.34, 312.95], [-2352.44, 309.42], [-2362.43, 309.7], [-2363.27, 280.38], [-2366.98, 280.49], [-2384.69, 281.0], [-2384.38, 291.72], [-2383.85, 310.32], [-2397.33, 310.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 865, "jobs": 0}}, {"shape": {"outer": [[-2317.63, 327.53], [-2317.79, 319.66], [-2319.11, 319.68], [-2319.32, 309.93], [-2318.01, 309.9], [-2318.46, 288.43], [-2310.79, 288.28], [-2310.87, 284.11], [-2313.15, 284.15], [-2313.32, 276.19], [-2304.55, 276.0], [-2304.38, 283.8], [-2301.94, 283.75], [-2302.1, 276.51], [-2265.01, 275.72], [-2264.75, 287.66], [-2259.01, 287.54], [-2258.59, 307.18], [-2271.17, 307.44], [-2271.54, 289.97], [-2301.74, 290.62], [-2301.79, 288.03], [-2305.31, 288.11], [-2305.2, 293.1], [-2304.82, 311.35], [-2287.48, 310.97], [-2287.49, 310.44], [-2277.84, 310.23], [-2277.82, 310.78], [-2246.85, 310.11], [-2246.55, 323.89], [-2258.13, 324.14], [-2258.11, 325.21], [-2267.76, 325.42], [-2267.78, 324.34], [-2300.63, 325.05], [-2300.85, 314.89], [-2304.65, 314.97], [-2304.39, 327.24], [-2317.63, 327.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 867, "jobs": 0}}, {"shape": {"outer": [[-1549.87, -463.28], [-1568.06, -462.36], [-1567.62, -453.75], [-1566.61, -453.8], [-1566.57, -453.23], [-1549.4, -454.09], [-1549.87, -463.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2936.5, 372.77], [-2932.06, 379.89], [-2920.85, 372.95], [-2925.29, 365.83], [-2936.5, 372.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1603.31, -435.68], [-1595.2, -436.07], [-1595.14, -434.85], [-1583.14, -435.44], [-1583.62, -445.04], [-1603.72, -444.04], [-1603.31, -435.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2157.11, -110.53], [-2082.11, -113.39], [-2083.56, -151.33], [-2101.73, -150.63], [-2107.06, -150.43], [-2150.37, -148.78], [-2156.28, -148.55], [-2156.19, -146.41], [-2159.4, -146.29], [-2159.25, -142.46], [-2158.34, -142.48], [-2157.11, -110.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1823}}, {"shape": {"outer": [[-1227.85, -667.58], [-1229.69, -676.78], [-1229.95, -683.52], [-1229.86, -689.67], [-1229.86, -692.82], [-1210.68, -693.63], [-1212.73, -735.66], [-1213.53, -735.31], [-1255.05, -717.18], [-1250.47, -706.86], [-1245.7, -696.15], [-1262.71, -688.32], [-1297.88, -686.04], [-1296.36, -682.22], [-1302.57, -679.38], [-1285.53, -641.26], [-1272.1, -647.3], [-1227.85, -667.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2426}}, {"shape": {"outer": [[-2500.95, -694.73], [-2501.59, -716.53], [-2502.41, -716.5], [-2502.47, -718.51], [-2538.07, -717.48], [-2538.0, -715.46], [-2538.89, -715.43], [-2538.36, -698.03], [-2538.25, -693.63], [-2523.67, -694.06], [-2508.15, -687.62], [-2507.17, -688.47], [-2503.77, -691.1], [-2502.11, -692.12], [-2500.95, -694.73]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.271, "pop": 0, "jobs": 271}}, {"shape": {"outer": [[-2425.63, -697.67], [-2425.75, -699.94], [-2422.96, -700.07], [-2423.42, -710.16], [-2425.54, -756.51], [-2424.01, -756.57], [-2424.39, -765.48], [-2424.48, -767.73], [-2428.51, -767.57], [-2428.58, -769.37], [-2485.11, -767.2], [-2485.02, -764.87], [-2488.96, -764.72], [-2488.75, -759.26], [-2488.57, -754.79], [-2487.58, -754.83], [-2486.1, -718.07], [-2488.91, -717.96], [-2488.75, -714.19], [-2485.91, -714.3], [-2485.57, -706.49], [-2486.48, -706.44], [-2486.14, -699.26], [-2485.93, -694.8], [-2425.63, -697.67]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6310}}, {"shape": {"outer": [[-2406.95, -686.58], [-2404.06, -684.53], [-2401.22, -681.74], [-2398.11, -678.45], [-2394.86, -674.05], [-2393.46, -671.21], [-2381.09, -677.88], [-2382.84, -680.04], [-2374.11, -686.57], [-2365.19, -693.37], [-2369.32, -698.74], [-2370.01, -698.25], [-2383.95, -688.42], [-2387.58, -692.44], [-2391.65, -696.01], [-2395.97, -699.6], [-2400.59, -702.59], [-2406.44, -705.21], [-2400.64, -718.62], [-2413.98, -723.31], [-2415.6, -717.35], [-2417.73, -709.44], [-2423.07, -710.33], [-2423.42, -710.16], [-2422.96, -700.07], [-2425.75, -699.94], [-2425.63, -697.67], [-2426.13, -694.16], [-2421.92, -693.23], [-2418.27, -692.15], [-2414.44, -690.78], [-2410.67, -688.86], [-2406.95, -686.58]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1574}}, {"shape": {"outer": [[-1679.04, -937.93], [-1667.69, -938.23], [-1667.62, -935.36], [-1658.41, -935.61], [-1658.48, -938.46], [-1646.7, -938.78], [-1647.82, -981.4], [-1656.1, -981.19], [-1659.18, -981.11], [-1680.15, -980.55], [-1679.04, -937.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.9, "pop": 0, "jobs": 900}}, {"shape": {"outer": [[-1613.14, -997.68], [-1613.07, -994.56], [-1656.48, -993.19], [-1656.1, -981.19], [-1659.18, -981.11], [-1659.65, -996.21], [-1613.14, -997.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1668.7, -1141.73], [-1652.4, -1141.79], [-1649.53, -1141.79], [-1649.57, -1146.18], [-1651.26, -1146.08], [-1651.76, -1168.86], [-1650.47, -1168.9], [-1650.25, -1172.28], [-1648.02, -1173.3], [-1646.78, -1175.11], [-1646.86, -1189.23], [-1647.74, -1191.62], [-1651.13, -1192.0], [-1650.93, -1196.03], [-1652.39, -1196.62], [-1653.0, -1217.64], [-1651.54, -1217.36], [-1651.52, -1228.28], [-1684.21, -1227.34], [-1683.69, -1215.0], [-1670.01, -1215.22], [-1669.58, -1194.85], [-1668.21, -1147.04], [-1668.82, -1145.74], [-1668.7, -1141.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 712, "jobs": 0}}, {"shape": {"outer": [[-1575.03, -1082.79], [-1583.34, -1082.58], [-1588.78, -1082.44], [-1615.25, -1081.78], [-1613.28, -1003.11], [-1613.14, -997.68], [-1613.07, -994.56], [-1612.99, -991.4], [-1579.07, -992.25], [-1575.46, -992.34], [-1573.0, -992.4], [-1573.02, -993.14], [-1573.13, -997.26], [-1573.2, -1000.56], [-1573.29, -1003.97], [-1573.75, -1022.08], [-1574.77, -1063.33], [-1571.12, -1063.43], [-1571.23, -1067.88], [-1574.06, -1067.81], [-1574.28, -1076.56], [-1574.88, -1076.54], [-1574.96, -1079.94], [-1575.03, -1082.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2330}}, {"shape": {"outer": [[-1569.46, -1020.29], [-1567.73, -1022.15], [-1566.15, -1022.2], [-1566.11, -1020.87], [-1559.08, -1021.07], [-1557.7, -1021.11], [-1540.89, -1021.62], [-1535.64, -1021.78], [-1535.64, -1025.01], [-1532.21, -1025.23], [-1530.35, -1025.35], [-1527.21, -1025.94], [-1529.68, -1115.24], [-1530.68, -1151.6], [-1556.13, -1150.89], [-1570.55, -1150.5], [-1570.37, -1144.42], [-1570.11, -1137.79], [-1569.79, -1128.4], [-1569.65, -1121.46], [-1569.6, -1115.32], [-1569.44, -1110.24], [-1569.26, -1104.36], [-1569.14, -1100.79], [-1568.93, -1093.99], [-1568.49, -1080.24], [-1570.91, -1082.34], [-1573.45, -1080.01], [-1574.96, -1079.94], [-1574.88, -1076.54], [-1574.28, -1076.56], [-1574.06, -1067.81], [-1571.23, -1067.88], [-1571.12, -1063.43], [-1574.77, -1063.33], [-1573.75, -1022.08], [-1571.22, -1022.15], [-1569.46, -1020.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3525}}, {"shape": {"outer": [[-155.77, 451.42], [-153.65, 453.34], [-152.03, 451.55], [-149.75, 453.62], [-151.31, 455.32], [-149.17, 457.26], [-157.66, 466.57], [-164.19, 460.66], [-155.77, 451.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.075, "pop": 0, "jobs": 75}}, {"shape": {"outer": [[-2899.75, -1182.6], [-2917.36, -1161.68], [-2926.39, -1169.25], [-2908.79, -1190.16], [-2899.75, -1182.6]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.452, "pop": 226, "jobs": 0}}, {"shape": {"outer": [[-2908.95, -1163.99], [-2902.18, -1172.26], [-2893.55, -1165.24], [-2900.33, -1156.97], [-2908.95, -1163.99]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2897.92, -1157.33], [-2886.59, -1170.77], [-2877.33, -1163.03], [-2888.64, -1149.57], [-2897.92, -1157.33]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.119, "pop": 0, "jobs": 119}}, {"shape": {"outer": [[-2868.85, -733.99], [-2859.56, -734.27], [-2859.67, -737.9], [-2837.95, -738.55], [-2837.9, -736.87], [-2806.67, -737.8], [-2806.99, -748.59], [-2809.66, -748.5], [-2810.52, -777.68], [-2808.15, -777.74], [-2808.47, -788.45], [-2839.37, -787.54], [-2839.32, -785.8], [-2861.47, -785.14], [-2861.56, -787.96], [-2870.16, -787.71], [-2869.76, -774.32], [-2869.66, -771.19], [-2837.46, -772.16], [-2836.85, -752.02], [-2869.37, -751.04], [-2869.3, -748.87], [-2868.85, -733.99]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1989}}, {"shape": {"outer": [[-2923.07, -1175.66], [-2909.78, -1191.0], [-2919.27, -1199.16], [-2929.26, -1187.63], [-2926.53, -1185.27], [-2929.83, -1181.46], [-2923.07, -1175.66]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.132, "pop": 0, "jobs": 132}}, {"shape": {"outer": [[-2569.79, -146.21], [-2570.74, -146.2], [-2571.01, -155.67], [-2572.19, -155.64], [-2573.12, -156.33], [-2574.2, -166.35], [-2574.36, -179.34], [-2564.9, -179.6], [-2564.89, -182.06], [-2549.82, -182.74], [-2545.95, -182.92], [-2542.84, -183.03], [-2532.9, -182.85], [-2528.36, -181.82], [-2523.66, -179.92], [-2524.38, -177.24], [-2530.14, -176.41], [-2530.02, -175.15], [-2529.83, -173.19], [-2533.41, -173.04], [-2532.33, -170.06], [-2529.78, -166.25], [-2527.32, -166.56], [-2524.57, -159.99], [-2510.97, -160.98], [-2509.66, -156.59], [-2526.25, -151.14], [-2534.17, -149.28], [-2533.99, -145.69], [-2542.96, -141.76], [-2548.56, -139.63], [-2554.46, -138.07], [-2559.16, -137.2], [-2564.41, -136.68], [-2569.21, -136.73], [-2569.79, -146.21]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2179}}, {"shape": {"outer": [[-1318.36, -458.33], [-1254.67, -461.37], [-1242.22, -461.96], [-1242.34, -464.58], [-1222.33, -465.53], [-1222.84, -476.12], [-1234.18, -475.57], [-1235.44, -501.82], [-1297.51, -498.86], [-1297.43, -497.25], [-1308.53, -496.71], [-1308.58, -497.79], [-1311.47, -497.64], [-1311.56, -499.57], [-1332.72, -498.49], [-1331.11, -467.24], [-1330.0, -467.3], [-1329.95, -466.42], [-1332.77, -466.27], [-1332.43, -459.21], [-1325.24, -459.56], [-1318.43, -459.89], [-1318.36, -458.33]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3309}}, {"shape": {"outer": [[-1312.0, -596.43], [-1317.08, -594.98], [-1320.92, -593.79], [-1326.52, -592.47], [-1333.55, -608.23], [-1336.69, -614.91], [-1336.34, -615.69], [-1340.79, -625.68], [-1340.85, -629.41], [-1334.71, -632.53], [-1337.17, -637.93], [-1342.13, -648.8], [-1342.33, -649.23], [-1342.97, -660.54], [-1341.15, -665.47], [-1336.8, -670.31], [-1305.02, -684.69], [-1302.57, -679.38], [-1285.53, -641.26], [-1272.1, -647.3], [-1270.51, -643.56], [-1269.02, -644.13], [-1266.88, -640.25], [-1259.21, -623.12], [-1267.91, -617.53], [-1274.53, -613.63], [-1280.03, -610.53], [-1285.82, -607.7], [-1295.74, -603.23], [-1312.0, -596.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2890}}, {"shape": {"outer": [[-2523.71, 292.67], [-2526.61, 292.75], [-2526.59, 294.0], [-2531.1, 294.13], [-2531.15, 292.22], [-2538.89, 292.43], [-2540.01, 251.2], [-2563.57, 251.85], [-2563.55, 252.7], [-2567.39, 252.81], [-2567.63, 244.48], [-2570.23, 244.56], [-2570.42, 237.32], [-2526.9, 236.14], [-2526.88, 236.89], [-2520.91, 236.73], [-2520.71, 244.39], [-2525.92, 244.53], [-2525.88, 245.77], [-2524.28, 245.74], [-2523.08, 290.25], [-2523.77, 290.27], [-2523.71, 292.67]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 942, "jobs": 0}}, {"shape": {"outer": [[-2013.04, -824.94], [-2013.4, -833.95], [-2000.88, -834.45], [-2000.52, -825.44], [-2013.04, -824.94]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[-2188.26, -886.02], [-2175.47, -875.14], [-2188.29, -860.16], [-2201.08, -871.03], [-2188.26, -886.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.212, "pop": 0, "jobs": 212}}, {"shape": {"outer": [[-1590.6, -610.81], [-1599.14, -610.39], [-1599.04, -608.28], [-1607.35, -607.86], [-1607.75, -616.16], [-1610.1, -616.05], [-1610.55, -625.11], [-1605.07, -625.38], [-1606.11, -646.23], [-1610.79, -646.0], [-1611.27, -655.84], [-1608.68, -655.97], [-1609.1, -664.42], [-1600.31, -664.86], [-1600.19, -662.42], [-1594.43, -662.7], [-1594.6, -666.03], [-1584.78, -666.52], [-1584.38, -658.54], [-1586.74, -658.42], [-1586.44, -652.52], [-1593.43, -652.17], [-1593.55, -654.72], [-1596.5, -654.56], [-1596.17, -647.95], [-1591.86, -648.16], [-1590.71, -625.11], [-1596.09, -624.84], [-1595.72, -617.31], [-1590.93, -617.55], [-1590.6, -610.81]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.992, "pop": 496, "jobs": 0}}, {"shape": {"outer": [[-1624.28, -601.21], [-1625.06, -617.62], [-1654.2, -616.23], [-1653.41, -599.82], [-1624.28, -601.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.384, "pop": 192, "jobs": 0}}, {"shape": {"outer": [[-1551.33, -671.29], [-1575.51, -670.08], [-1574.26, -645.13], [-1573.52, -645.18], [-1573.08, -636.19], [-1574.26, -636.13], [-1574.03, -631.55], [-1581.55, -631.16], [-1580.54, -611.0], [-1578.11, -611.12], [-1578.0, -609.08], [-1567.74, -609.58], [-1567.84, -611.44], [-1563.06, -611.69], [-1563.11, -612.68], [-1560.04, -612.83], [-1560.3, -618.06], [-1553.38, -618.4], [-1553.58, -622.27], [-1549.56, -622.48], [-1550.38, -638.9], [-1561.47, -638.34], [-1561.82, -645.4], [-1550.07, -645.99], [-1551.33, -671.29]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 991, "jobs": 0}}, {"shape": {"outer": [[-1626.71, -644.41], [-1643.94, -643.62], [-1642.93, -621.46], [-1625.7, -622.24], [-1626.71, -644.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.306, "pop": 153, "jobs": 0}}, {"shape": {"outer": [[-1657.34, -601.52], [-1658.76, -630.33], [-1676.02, -629.48], [-1674.59, -600.67], [-1657.34, -601.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.398, "pop": 199, "jobs": 0}}, {"shape": {"outer": [[-1660.47, -662.98], [-1677.11, -662.1], [-1675.58, -633.03], [-1658.94, -633.89], [-1660.47, -662.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[-1627.82, -664.42], [-1657.02, -662.87], [-1656.14, -646.35], [-1626.94, -647.9], [-1627.82, -664.42]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.508, "pop": 254, "jobs": 0}}, {"shape": {"outer": [[-1739.23, -638.83], [-1738.24, -617.04], [-1721.05, -617.82], [-1722.04, -639.61], [-1739.23, -638.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-1710.14, -644.19], [-1710.95, -660.93], [-1737.48, -659.96], [-1739.22, -659.96], [-1740.29, -659.17], [-1740.42, -657.91], [-1739.24, -656.69], [-1739.89, -656.62], [-1740.05, -648.83], [-1739.49, -642.85], [-1710.14, -644.19]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.868, "pop": 434, "jobs": 0}}, {"shape": {"outer": [[-1691.32, -662.15], [-1707.8, -661.37], [-1706.39, -631.9], [-1689.91, -632.68], [-1691.32, -662.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[-1689.75, -629.2], [-1718.78, -628.05], [-1718.1, -610.81], [-1689.06, -611.95], [-1689.75, -629.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.402, "pop": 201, "jobs": 0}}, {"shape": {"outer": [[-838.33, -889.95], [-852.96, -903.23], [-825.38, -933.39], [-810.75, -920.12], [-838.33, -889.95]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.904, "pop": 0, "jobs": 904}}, {"shape": {"outer": [[-802.6, -897.19], [-790.5, -886.24], [-791.26, -885.4], [-789.6, -883.9], [-780.47, -893.93], [-765.9, -880.77], [-790.52, -853.74], [-804.65, -866.52], [-813.49, -856.82], [-827.68, -869.65], [-802.6, -897.19]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1188}}, {"shape": {"outer": [[-780.73, -833.79], [-756.81, -859.7], [-764.09, -866.38], [-758.47, -872.46], [-737.19, -852.95], [-766.73, -820.95], [-772.46, -826.2], [-778.3, -831.55], [-780.73, -833.79]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 636, "jobs": 0}}, {"shape": {"outer": [[-537.11, -1199.05], [-528.04, -1202.58], [-554.94, -1264.75], [-564.46, -1260.99], [-537.11, -1199.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.54, "pop": 270, "jobs": 0}}, {"shape": {"outer": [[-2556.89, -213.79], [-2557.2, -224.65], [-2557.54, -236.55], [-2565.66, -236.31], [-2565.68, -237.12], [-2582.43, -236.65], [-2582.55, -241.07], [-2591.39, -240.82], [-2593.59, -240.75], [-2593.74, -245.78], [-2598.74, -245.64], [-2602.11, -245.54], [-2601.98, -240.92], [-2613.81, -240.59], [-2613.64, -234.45], [-2614.7, -234.42], [-2613.98, -209.56], [-2598.43, -210.0], [-2595.28, -210.09], [-2595.31, -211.05], [-2565.69, -211.9], [-2565.74, -213.54], [-2556.89, -213.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1039}}, {"shape": {"outer": [[-3231.35, -1952.95], [-3232.1, -1952.0], [-3228.26, -1948.88], [-3243.19, -1930.63], [-3242.51, -1930.07], [-3247.41, -1924.09], [-3240.09, -1918.13], [-3235.19, -1924.12], [-3234.31, -1923.41], [-3233.74, -1924.11], [-3229.72, -1920.85], [-3214.6, -1939.34], [-3192.5, -1921.38], [-3193.26, -1920.45], [-3189.8, -1917.64], [-3188.96, -1918.65], [-3187.51, -1917.26], [-3195.17, -1907.38], [-3204.16, -1911.23], [-3206.48, -1906.62], [-3209.33, -1907.71], [-3213.98, -1898.12], [-3190.75, -1887.22], [-3156.2, -1929.65], [-3165.86, -1943.02], [-3180.27, -1925.96], [-3188.71, -1932.8], [-3209.69, -1949.8], [-3211.83, -1951.53], [-3197.53, -1969.01], [-3206.51, -1976.31], [-3213.69, -1967.53], [-3217.61, -1970.72], [-3220.59, -1967.06], [-3216.64, -1963.86], [-3220.78, -1958.8], [-3222.6, -1960.42], [-3224.1, -1961.75], [-3231.35, -1952.95]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 1327, "jobs": 0}}, {"shape": {"outer": [[-1201.25, -2969.14], [-1212.62, -3029.81], [-1230.33, -3026.52], [-1231.29, -3031.61], [-1238.8, -3030.21], [-1226.48, -2964.44], [-1201.25, -2969.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1039}}, {"shape": {"outer": [[-1154.0, -3002.89], [-1165.55, -3063.27], [-1196.1, -3057.46], [-1184.18, -2995.15], [-1171.89, -2997.49], [-1172.25, -2999.42], [-1154.0, -3002.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1239}}, {"shape": {"outer": [[-1343.67, -3048.82], [-1308.41, -3049.83], [-1309.73, -3096.19], [-1323.94, -3095.79], [-1324.05, -3099.81], [-1337.82, -3099.41], [-1337.7, -3095.39], [-1352.18, -3094.98], [-1352.0, -3088.58], [-1357.71, -3088.42], [-1363.92, -3088.24], [-1362.57, -3041.24], [-1343.46, -3041.79], [-1343.67, -3048.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1687}}, {"shape": {"outer": [[-972.38, -3004.29], [-979.15, -3005.3], [-983.1, -2992.85], [-979.76, -2983.67], [-949.56, -2984.69], [-950.3, -2999.55], [-949.32, -2999.58], [-949.84, -3013.66], [-941.6, -3013.96], [-941.44, -3009.83], [-932.85, -3010.15], [-933.46, -3026.95], [-942.34, -3026.61], [-942.74, -3037.35], [-950.71, -3037.06], [-950.86, -3041.03], [-959.41, -3040.74], [-959.98, -3057.67], [-973.25, -3057.22], [-972.69, -3040.3], [-973.88, -3040.25], [-972.38, -3004.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1302}}, {"shape": {"outer": [[222.23, -286.62], [252.22, -319.69], [254.24, -317.88], [256.3, -320.15], [261.43, -317.54], [266.28, -314.37], [270.05, -311.14], [273.61, -307.48], [277.12, -303.14], [280.27, -298.55], [278.01, -296.08], [280.36, -293.97], [250.4, -260.95], [246.94, -264.07], [245.12, -262.07], [223.65, -281.4], [225.62, -283.57], [222.23, -286.62]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5425}}, {"shape": {"outer": [[-2918.74, -1224.8], [-2902.52, -1243.29], [-2890.01, -1232.41], [-2906.23, -1213.91], [-2918.74, -1224.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.326, "pop": 163, "jobs": 0}}, {"shape": {"outer": [[-1904.84, -1006.97], [-1905.67, -1045.89], [-1909.89, -1045.79], [-1909.91, -1046.82], [-1949.54, -1045.97], [-1949.52, -1044.93], [-1952.41, -1044.87], [-1952.11, -1030.74], [-1944.65, -1030.9], [-1944.12, -1006.13], [-1904.84, -1006.97]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1407}}, {"shape": {"outer": [[-1899.95, -1012.57], [-1895.44, -1012.69], [-1895.1, -1009.39], [-1892.01, -1005.98], [-1887.08, -1006.06], [-1884.42, -1009.64], [-1884.28, -1012.97], [-1879.87, -1013.08], [-1880.14, -1023.96], [-1877.19, -1024.03], [-1877.33, -1029.24], [-1880.27, -1029.17], [-1880.51, -1038.66], [-1879.45, -1038.69], [-1879.62, -1045.24], [-1884.11, -1045.13], [-1884.18, -1047.88], [-1897.97, -1047.54], [-1897.9, -1044.78], [-1901.9, -1044.67], [-1901.73, -1038.07], [-1900.59, -1038.1], [-1899.95, -1012.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.497, "pop": 0, "jobs": 497}}, {"shape": {"outer": [[-2680.07, -1020.66], [-2665.48, -1038.17], [-2658.05, -1032.03], [-2672.65, -1014.53], [-2680.07, -1020.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.141, "pop": 0, "jobs": 141}}, {"shape": {"outer": [[-2310.79, -792.51], [-2300.93, -792.91], [-2300.98, -794.12], [-2283.44, -794.85], [-2275.59, -795.17], [-2275.44, -791.4], [-2254.55, -792.27], [-2254.71, -796.12], [-2246.34, -796.46], [-2236.97, -796.84], [-2228.77, -797.19], [-2228.62, -793.45], [-2208.03, -794.29], [-2208.19, -798.07], [-2182.21, -799.14], [-2182.18, -798.41], [-2172.89, -798.8], [-2173.19, -806.08], [-2171.84, -806.13], [-2172.02, -810.37], [-2172.99, -810.33], [-2173.31, -817.86], [-2176.59, -817.73], [-2182.98, -817.45], [-2182.93, -816.2], [-2198.36, -815.54], [-2208.62, -815.11], [-2208.78, -819.1], [-2211.44, -818.99], [-2219.43, -818.65], [-2227.1, -818.32], [-2229.91, -818.21], [-2229.89, -817.62], [-2252.67, -816.64], [-2258.8, -816.39], [-2266.01, -816.08], [-2273.62, -815.75], [-2276.39, -815.64], [-2276.23, -812.03], [-2292.39, -811.34], [-2297.06, -811.14], [-2302.06, -810.93], [-2302.11, -812.02], [-2311.28, -811.63], [-2311.25, -811.05], [-2310.97, -804.46], [-2313.05, -804.37], [-2312.85, -799.79], [-2311.1, -799.87], [-2310.79, -792.51]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 3923, "jobs": 0}}, {"shape": {"outer": [[1215.62, 2076.7], [1220.78, 2084.77], [1218.9, 2085.89], [1230.11, 2103.41], [1235.49, 2100.8], [1238.46, 2105.39], [1241.43, 2109.98], [1236.46, 2112.98], [1249.7, 2136.02], [1226.59, 2149.1], [1220.2, 2137.75], [1217.36, 2139.53], [1194.34, 2101.47], [1196.39, 2100.19], [1191.09, 2091.67], [1215.62, 2076.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1298}}, {"shape": {"outer": [[330.02, -182.96], [331.25, -182.79], [332.46, -183.02], [333.34, -183.96], [364.57, -217.78], [365.79, -219.38], [342.93, -239.81], [310.79, -204.5], [310.48, -203.3], [310.3, -202.29], [310.46, -201.17], [310.85, -200.31], [330.02, -182.96]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 3813, "jobs": 0}}, {"shape": {"outer": [[331.3, -181.74], [333.61, -179.62], [353.11, -161.64], [385.6, -197.09], [383.23, -199.11], [383.8, -199.74], [382.83, -200.63], [383.55, -201.41], [376.48, -207.89], [367.3, -216.32], [366.78, -215.75], [364.57, -217.78], [333.34, -183.96], [331.3, -181.74]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 3588, "jobs": 0}}, {"shape": {"outer": [[353.11, -161.64], [374.87, -142.14], [375.48, -142.8], [402.52, -172.78], [405.01, -175.28], [385.6, -197.09], [353.11, -161.64]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1417, "jobs": 0}}, {"shape": {"outer": [[375.48, -142.8], [384.76, -134.62], [404.5, -156.72], [407.82, -153.56], [409.83, -156.04], [420.5, -145.96], [423.02, -148.77], [424.31, -152.7], [426.1, -155.11], [419.4, -159.79], [417.88, -157.54], [405.32, -169.86], [402.52, -172.78], [375.48, -142.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.42, "pop": 0, "jobs": 420}}, {"shape": {"outer": [[398.29, -121.22], [418.92, -102.75], [429.44, -96.18], [447.8, -116.59], [440.58, -123.05], [441.5, -124.06], [433.5, -131.2], [436.28, -134.31], [438.46, -137.82], [423.02, -148.77], [421.14, -146.66], [401.45, -124.75], [399.75, -122.85], [398.82, -121.83], [398.29, -121.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.863, "pop": 0, "jobs": 863}}, {"shape": {"outer": [[-408.6, -282.64], [-402.17, -289.77], [-378.96, -315.37], [-367.52, -327.98], [-328.67, -293.03], [-307.87, -274.32], [-343.24, -235.3], [-345.63, -232.65], [-349.03, -228.9], [-405.39, -279.74], [-408.6, -282.64]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2752}}, {"shape": {"outer": [[190.77, -311.87], [192.64, -310.24], [193.18, -308.66], [195.09, -307.0], [196.59, -306.48], [198.45, -304.8], [200.0, -303.41], [201.1, -301.59], [202.79, -300.11], [204.35, -299.48], [205.95, -298.03], [209.29, -301.71], [208.63, -302.31], [215.15, -309.51], [215.78, -308.95], [218.72, -312.19], [217.19, -313.57], [217.7, -314.14], [218.18, -314.65], [219.64, -313.34], [222.48, -316.46], [221.85, -317.03], [228.41, -324.28], [229.23, -323.54], [232.71, -327.38], [230.95, -328.95], [230.15, -330.62], [228.51, -332.17], [227.18, -332.58], [223.16, -335.86], [222.66, -337.1], [220.38, -339.17], [219.29, -339.24], [217.21, -341.1], [213.97, -337.52], [214.75, -336.82], [211.16, -332.84], [211.78, -332.28], [210.12, -330.44], [208.7, -331.71], [205.54, -328.22], [207.2, -326.73], [207.13, -325.01], [211.28, -321.17], [209.9, -319.69], [205.76, -323.53], [204.15, -323.52], [202.52, -324.95], [199.22, -321.21], [200.63, -319.97], [198.95, -318.06], [198.25, -318.68], [194.8, -314.78], [193.98, -315.5], [190.77, -311.87]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 664, "jobs": 0}}, {"shape": {"outer": [[559.69, 162.78], [547.86, 152.12], [549.25, 150.59], [509.99, 115.33], [518.01, 106.45], [533.38, 120.26], [553.13, 98.41], [538.69, 85.45], [564.84, 56.53], [574.75, 65.42], [583.69, 83.37], [581.47, 85.7], [596.49, 99.94], [594.22, 101.39], [600.31, 106.88], [597.53, 109.93], [603.07, 114.92], [559.69, 162.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2799}}, {"shape": {"outer": [[584.56, 179.23], [588.87, 183.3], [641.24, 230.47], [644.85, 226.66], [648.45, 230.47], [666.7, 211.45], [664.21, 208.48], [667.19, 205.34], [665.01, 203.44], [612.74, 157.91], [609.12, 154.75], [604.0, 150.3], [584.29, 171.76], [588.09, 175.49], [584.56, 179.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1929}}, {"shape": {"outer": [[743.77, 1.01], [712.44, -8.61], [716.76, -20.04], [747.15, -10.32], [743.77, 1.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.31, "pop": 155, "jobs": 0}}, {"shape": {"outer": [[772.93, 50.82], [732.43, 38.45], [731.66, 40.03], [728.98, 39.3], [726.7, 35.3], [725.47, 35.02], [718.15, 21.47], [716.08, 17.65], [713.64, 16.93], [705.98, 14.96], [706.18, 14.28], [707.69, 9.04], [711.21, -3.84], [742.0, 5.31], [737.72, 19.44], [778.36, 32.25], [776.46, 38.78], [772.93, 50.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 664, "jobs": 0}}, {"shape": {"outer": [[2493.32, 1763.8], [2494.47, 1759.38], [2492.66, 1758.92], [2497.99, 1736.29], [2526.06, 1742.96], [2518.77, 1772.39], [2497.49, 1766.93], [2497.98, 1765.0], [2493.32, 1763.8]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.942, "pop": 0, "jobs": 942}}, {"shape": {"outer": [[2269.94, 1719.98], [2276.38, 1713.56], [2272.25, 1710.15], [2272.03, 1708.12], [2271.02, 1705.97], [2269.22, 1704.5], [2269.76, 1703.62], [2238.66, 1653.89], [2217.18, 1671.34], [2259.19, 1712.25], [2259.74, 1711.83], [2260.77, 1713.55], [2262.51, 1715.08], [2264.38, 1715.79], [2266.08, 1715.8], [2269.94, 1719.98]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.745, "pop": 0, "jobs": 745}}, {"shape": {"outer": [[2392.36, 1742.07], [2403.22, 1699.87], [2403.89, 1697.27], [2425.12, 1702.95], [2419.73, 1722.35], [2422.1, 1723.62], [2423.16, 1725.59], [2422.55, 1729.11], [2470.27, 1741.65], [2465.34, 1760.43], [2392.36, 1742.07]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1455, "jobs": 0}}, {"shape": {"outer": [[-111.44, 449.59], [-118.69, 443.08], [-117.86, 442.15], [-118.97, 441.16], [-115.9, 437.76], [-114.79, 438.76], [-114.69, 438.65], [-112.6, 438.51], [-111.51, 439.48], [-110.56, 438.43], [-108.88, 438.37], [-106.95, 440.11], [-106.98, 441.63], [-107.94, 442.69], [-106.43, 444.06], [-111.44, 449.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-122.92, 438.42], [-130.09, 431.92], [-122.21, 423.29], [-114.07, 430.67], [-115.88, 432.65], [-116.85, 431.76], [-122.92, 438.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-124.98, 412.01], [-133.12, 404.76], [-129.28, 400.48], [-128.49, 401.17], [-125.62, 397.97], [-118.26, 404.53], [-124.98, 412.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-106.88, 453.8], [-107.1, 445.18], [-105.74, 445.14], [-105.83, 441.73], [-100.34, 441.6], [-100.26, 444.83], [-97.9, 444.77], [-97.54, 458.58], [-102.94, 458.72], [-103.07, 453.7], [-106.88, 453.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-290.42, 283.83], [-286.38, 287.63], [-286.74, 288.03], [-283.25, 291.32], [-282.88, 290.92], [-278.57, 294.98], [-277.15, 293.48], [-276.06, 294.51], [-273.23, 291.53], [-274.33, 290.5], [-271.51, 287.52], [-283.35, 276.37], [-290.42, 283.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-282.67, 273.67], [-277.24, 267.67], [-269.22, 274.88], [-270.07, 275.83], [-267.89, 277.79], [-270.06, 280.18], [-272.24, 278.22], [-274.64, 280.88], [-282.67, 273.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-274.98, 297.95], [-266.61, 288.62], [-263.96, 290.99], [-263.08, 290.0], [-260.35, 292.42], [-261.24, 293.42], [-258.89, 295.5], [-269.02, 306.77], [-276.43, 300.17], [-274.68, 298.23], [-274.98, 297.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-258.26, 279.23], [-266.16, 271.85], [-267.19, 271.81], [-269.08, 270.05], [-269.07, 269.13], [-272.18, 266.24], [-273.34, 266.47], [-274.45, 266.08], [-275.2, 265.16], [-275.35, 263.99], [-274.93, 262.97], [-274.07, 262.29], [-272.97, 262.12], [-268.68, 257.56], [-266.02, 260.05], [-265.48, 259.47], [-253.16, 270.97], [-255.99, 273.97], [-254.56, 275.3], [-258.26, 279.23]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-255.64, 264.19], [-265.91, 254.75], [-263.58, 252.24], [-264.96, 250.96], [-258.32, 243.79], [-251.99, 249.63], [-253.11, 250.84], [-247.8, 255.73], [-255.64, 264.19]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-255.6, 239.0], [-249.87, 232.73], [-247.94, 234.48], [-247.56, 234.07], [-239.53, 241.35], [-240.92, 242.88], [-238.46, 245.1], [-243.17, 250.25], [-246.87, 246.91], [-247.21, 247.29], [-251.15, 243.72], [-250.8, 243.35], [-255.6, 239.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-247.59, 232.46], [-243.52, 228.03], [-242.5, 228.96], [-239.3, 225.47], [-229.8, 234.12], [-230.17, 234.51], [-227.83, 236.65], [-233.18, 242.47], [-233.6, 242.09], [-235.16, 243.78], [-247.59, 232.46]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-265.34, 307.58], [-249.24, 288.97], [-242.62, 294.66], [-258.71, 313.27], [-265.34, 307.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-255.02, 316.69], [-239.34, 299.07], [-232.89, 304.77], [-248.57, 322.39], [-255.02, 316.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-241.86, 327.16], [-239.87, 324.96], [-242.43, 322.67], [-236.47, 316.06], [-226.49, 325.03], [-234.45, 333.82], [-241.86, 327.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-231.87, 333.74], [-221.73, 322.63], [-221.24, 323.06], [-220.53, 322.29], [-218.32, 324.29], [-218.12, 324.06], [-214.7, 327.17], [-225.76, 339.28], [-225.92, 339.14], [-228.03, 341.45], [-233.55, 336.44], [-231.44, 334.14], [-231.87, 333.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-222.93, 341.73], [-216.42, 334.53], [-215.64, 335.22], [-210.18, 329.16], [-204.73, 334.04], [-205.25, 334.61], [-204.19, 335.57], [-207.49, 339.23], [-206.78, 339.87], [-216.37, 350.49], [-221.51, 345.89], [-220.07, 344.29], [-222.93, 341.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-179.95, 181.19], [-187.07, 174.37], [-187.46, 172.97], [-191.6, 169.01], [-187.11, 164.34], [-185.93, 165.47], [-185.36, 164.88], [-174.36, 175.38], [-179.95, 181.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-186.77, 161.82], [-180.92, 155.7], [-166.64, 169.25], [-172.49, 175.38], [-186.77, 161.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-125.25, 259.44], [-108.15, 258.48], [-108.28, 254.3], [-109.7, 206.6], [-116.38, 200.98], [-141.5, 227.78], [-126.13, 241.81], [-125.25, 259.44]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 1410, "jobs": 0}}, {"shape": {"outer": [[-133.82, 210.3], [-123.81, 199.21], [-130.19, 193.49], [-142.38, 206.99], [-138.21, 210.73], [-136.02, 208.32], [-133.82, 210.3]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-146.63, 199.88], [-142.64, 203.4], [-141.12, 201.69], [-140.96, 201.83], [-130.04, 189.6], [-134.18, 185.93], [-146.63, 199.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-148.58, 197.69], [-137.9, 186.08], [-146.55, 178.17], [-157.24, 189.78], [-156.69, 190.28], [-158.13, 191.84], [-153.62, 195.97], [-152.18, 194.4], [-148.58, 197.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-161.18, 192.33], [-145.24, 175.02], [-151.46, 169.33], [-167.4, 186.63], [-161.18, 192.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-154.53, 171.52], [-161.04, 165.54], [-173.44, 178.94], [-166.94, 184.91], [-154.53, 171.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-225.85, 208.08], [-223.71, 205.69], [-224.71, 204.8], [-220.19, 199.75], [-207.85, 210.71], [-212.46, 215.87], [-211.79, 216.47], [-213.82, 218.76], [-217.67, 215.35], [-218.13, 215.86], [-222.21, 212.23], [-221.75, 211.72], [-225.85, 208.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-217.92, 196.75], [-212.11, 190.65], [-200.62, 201.52], [-206.42, 207.62], [-217.92, 196.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-199.56, 200.79], [-209.71, 191.83], [-203.37, 184.69], [-199.44, 188.16], [-198.5, 187.1], [-192.28, 192.59], [-199.56, 200.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-178.88, 198.02], [-186.09, 191.4], [-180.24, 185.08], [-175.9, 189.05], [-177.66, 190.96], [-174.79, 193.59], [-178.88, 198.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-178.01, 198.63], [-172.04, 192.16], [-165.04, 198.57], [-171.01, 205.04], [-178.01, 198.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-208.59, 219.92], [-195.98, 206.3], [-191.29, 210.6], [-191.49, 210.82], [-190.38, 211.83], [-192.04, 213.61], [-190.65, 214.89], [-192.91, 217.33], [-190.92, 219.16], [-192.14, 220.48], [-191.76, 220.83], [-197.25, 226.76], [-197.64, 226.42], [-199.42, 228.35], [-208.59, 219.92]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-193.55, 235.78], [-192.32, 234.39], [-192.78, 233.98], [-186.84, 227.27], [-187.02, 227.11], [-183.76, 223.41], [-178.37, 228.14], [-182.92, 233.29], [-178.93, 236.8], [-183.77, 242.26], [-187.69, 238.82], [-188.74, 240.0], [-193.55, 235.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-180.13, 245.3], [-169.82, 233.73], [-169.35, 234.15], [-167.78, 232.38], [-165.36, 234.51], [-166.83, 236.16], [-162.51, 239.97], [-172.92, 251.67], [-174.75, 250.05], [-176.33, 251.82], [-178.5, 249.9], [-177.8, 249.11], [-179.96, 247.2], [-179.09, 246.22], [-180.13, 245.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-313.69, 125.18], [-293.24, 102.62], [-288.94, 106.49], [-283.01, 99.95], [-278.39, 104.11], [-276.38, 101.91], [-271.5, 106.3], [-272.39, 107.28], [-253.27, 124.49], [-251.99, 125.64], [-262.87, 137.65], [-258.61, 141.48], [-275.21, 159.79], [-313.69, 125.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1256}}, {"shape": {"outer": [[-380.68, -463.85], [-411.73, -429.52], [-413.71, -431.3], [-411.68, -433.55], [-423.89, -444.5], [-419.92, -448.88], [-418.35, -447.47], [-416.1, -449.96], [-417.97, -451.64], [-395.16, -476.85], [-380.68, -463.85]], "holes": []}, "height": 38.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2585}}, {"shape": {"outer": [[-439.35, -518.32], [-471.18, -483.22], [-453.41, -467.21], [-442.12, -457.04], [-430.24, -470.14], [-423.98, -477.03], [-417.7, -471.37], [-403.99, -486.48], [-416.45, -497.65], [-418.09, -499.22], [-439.35, -518.32]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2269}}, {"shape": {"outer": [[-360.06, -445.41], [-340.71, -427.55], [-331.32, -437.64], [-350.69, -455.51], [-360.06, -445.41]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.382, "pop": 191, "jobs": 0}}, {"shape": {"outer": [[-353.36, -457.53], [-362.66, -447.47], [-368.29, -452.61], [-369.77, -453.93], [-360.48, -464.07], [-353.36, -457.53]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-366.72, -442.61], [-372.61, -447.81], [-374.1, -449.14], [-388.03, -433.55], [-380.69, -427.03], [-366.72, -442.61]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[-402.73, -139.43], [-389.9, -153.51], [-381.03, -145.48], [-376.28, -141.19], [-375.4, -122.1], [-381.39, -121.83], [-381.42, -122.49], [-381.82, -122.47], [-381.78, -121.43], [-388.29, -121.13], [-388.33, -122.13], [-388.72, -122.12], [-388.7, -121.46], [-389.29, -121.43], [-389.27, -121.09], [-396.17, -120.78], [-396.19, -121.05], [-401.89, -120.79], [-402.67, -138.23], [-402.73, -139.43]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.761, "pop": 0, "jobs": 761}}, {"shape": {"outer": [[-345.38, -124.11], [-346.23, -142.72], [-343.37, -142.84], [-326.82, -127.76], [-326.29, -126.38], [-326.39, -125.13], [-327.03, -124.09], [-328.07, -123.69], [-346.11, -122.88], [-346.13, -123.22], [-346.17, -124.08], [-345.38, -124.11]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-375.37, -121.38], [-375.4, -122.1], [-376.28, -141.19], [-362.19, -156.67], [-361.5, -156.05], [-360.34, -157.32], [-353.02, -150.7], [-359.9, -143.16], [-358.97, -122.78], [-368.68, -122.34], [-368.65, -121.68], [-375.37, -121.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[-345.38, -124.11], [-346.23, -142.72], [-346.32, -144.64], [-353.02, -150.7], [-359.9, -143.16], [-358.97, -122.78], [-358.96, -122.65], [-346.13, -123.22], [-346.17, -124.08], [-345.38, -124.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-1051.81, -86.5], [-1052.31, -96.26], [-1053.1, -111.81], [-1053.46, -119.13], [-1054.23, -134.32], [-1054.62, -142.03], [-1053.42, -142.1], [-1053.59, -145.37], [-1054.81, -145.31], [-1055.02, -149.4], [-1053.8, -149.47], [-1053.86, -150.52], [-1055.04, -150.45], [-1055.17, -152.83], [-1053.97, -152.88], [-1054.04, -154.31], [-1055.21, -154.25], [-1055.48, -159.65], [-1054.32, -159.71], [-1054.39, -161.11], [-1055.54, -161.04], [-1055.67, -163.4], [-1054.52, -163.46], [-1054.56, -164.46], [-1055.75, -164.4], [-1055.88, -166.96], [-1054.7, -167.02], [-1054.74, -167.88], [-1053.57, -167.95], [-1035.41, -168.86], [-1032.17, -165.96], [-1021.16, -156.09], [-994.88, -185.17], [-956.72, -152.06], [-973.36, -133.47], [-974.18, -132.57], [-976.48, -132.46], [-975.46, -113.27], [-975.11, -107.03], [-974.33, -91.99], [-982.34, -91.6], [-983.38, -91.55], [-983.32, -90.49], [-993.47, -89.93], [-993.51, -91.01], [-994.38, -90.97], [-1030.09, -89.18], [-1030.05, -88.24], [-1032.16, -88.13], [-1032.2, -88.97], [-1033.7, -88.9], [-1033.65, -87.97], [-1034.8, -87.91], [-1035.84, -87.86], [-1035.89, -88.8], [-1037.33, -88.73], [-1037.27, -87.73], [-1039.53, -87.62], [-1039.59, -88.59], [-1041.2, -88.5], [-1041.14, -87.49], [-1043.44, -87.38], [-1043.49, -88.4], [-1045.08, -88.32], [-1045.0, -86.84], [-1047.73, -86.71], [-1051.81, -86.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 2665, "jobs": 0}}, {"shape": {"outer": [[-1076.66, -66.58], [-1076.69, -67.74], [-1082.65, -67.45], [-1084.66, -67.35], [-1084.58, -66.18], [-1085.52, -66.17], [-1086.23, -66.17], [-1085.75, -57.11], [-1084.43, -31.84], [-1074.97, -32.42], [-1076.66, -66.58]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.094, "pop": 0, "jobs": 94}}, {"shape": {"outer": [[-901.62, -338.64], [-895.92, -344.94], [-893.87, -347.21], [-892.86, -346.31], [-892.48, -346.72], [-892.77, -346.98], [-884.81, -355.84], [-883.61, -354.76], [-875.94, -347.91], [-876.44, -347.35], [-874.6, -345.7], [-872.58, -343.9], [-862.39, -334.79], [-859.45, -338.05], [-859.27, -338.25], [-855.26, -334.67], [-858.08, -331.55], [-855.03, -328.81], [-841.58, -316.79], [-838.5, -314.03], [-839.3, -313.15], [-837.91, -311.9], [-839.32, -310.34], [-859.33, -288.26], [-876.64, -303.85], [-885.37, -311.7], [-897.87, -297.91], [-908.64, -307.6], [-907.65, -308.69], [-907.11, -309.28], [-908.57, -310.6], [-909.76, -311.68], [-909.54, -314.41], [-908.87, -317.18], [-907.9, -320.29], [-906.8, -323.26], [-905.47, -326.64], [-903.97, -329.68], [-902.6, -332.45], [-901.19, -334.99], [-899.85, -337.06], [-901.62, -338.64]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 4414, "jobs": 0}}, {"shape": {"outer": [[-2216.26, -637.93], [-2166.47, -599.36], [-2167.32, -639.11], [-2167.45, -645.42], [-2164.5, -649.2], [-2168.67, -652.42], [-2184.11, -664.39], [-2192.73, -653.35], [-2199.88, -658.9], [-2216.26, -637.93]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1858, "jobs": 0}}, {"shape": {"outer": [[-78.21, 43.22], [-69.39, 33.53], [-46.62, 54.08], [-43.07, 57.28], [-51.88, 66.98], [-52.97, 66.0], [-78.21, 43.22]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.39, "pop": 0, "jobs": 390}}, {"shape": {"outer": [[1664.0, 888.5], [1657.65, 882.78], [1669.96, 869.2], [1676.32, 874.93], [1674.85, 876.54], [1666.7, 885.51], [1664.0, 888.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.1, "pop": 0, "jobs": 100}}, {"shape": {"outer": [[-719.07, -1329.56], [-716.93, -1328.51], [-714.86, -1327.5], [-713.82, -1329.17], [-708.29, -1330.96], [-706.97, -1330.45], [-705.99, -1331.9], [-704.66, -1333.89], [-705.66, -1334.51], [-704.31, -1336.62], [-705.41, -1341.17], [-707.19, -1341.87], [-707.1, -1342.64], [-711.19, -1344.38], [-712.56, -1342.49], [-717.45, -1341.37], [-718.89, -1342.08], [-721.28, -1338.1], [-720.51, -1337.47], [-721.76, -1335.69], [-720.34, -1331.59], [-718.57, -1330.88], [-719.07, -1329.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[-1276.92, -1358.54], [-1274.54, -1364.62], [-1269.39, -1368.47], [-1263.17, -1370.11], [-1256.57, -1367.62], [-1252.47, -1362.3], [-1251.53, -1355.44], [-1253.81, -1349.46], [-1259.7, -1345.58], [-1266.03, -1344.7], [-1272.24, -1347.42], [-1274.79, -1350.51], [-1276.02, -1352.25], [-1276.31, -1354.25], [-1276.92, -1358.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.312, "pop": 0, "jobs": 312}}, {"shape": {"outer": [[742.57, 15.4], [746.19, 3.98], [784.37, 16.03], [780.75, 27.43], [742.57, 15.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.384, "pop": 192, "jobs": 0}}, {"shape": {"outer": [[872.93, 224.56], [870.97, 222.83], [866.22, 218.62], [877.07, 206.46], [883.1, 211.82], [894.55, 221.96], [889.52, 227.6], [893.83, 231.41], [889.87, 235.86], [885.55, 232.03], [878.32, 240.12], [867.56, 230.58], [871.99, 225.61], [872.93, 224.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.34, "pop": 0, "jobs": 340}}, {"shape": {"outer": [[905.17, 198.99], [900.7, 194.92], [908.83, 186.05], [909.91, 187.04], [913.92, 182.66], [917.48, 185.89], [913.56, 190.17], [915.53, 191.95], [911.3, 196.56], [910.49, 195.82], [907.02, 199.6], [905.7, 198.41], [905.17, 198.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[911.6, 198.43], [921.59, 187.35], [924.99, 190.4], [928.21, 193.28], [918.22, 204.35], [911.6, 198.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[927.8, 210.54], [932.87, 204.84], [939.25, 210.47], [934.62, 215.66], [932.0, 213.35], [931.55, 213.85], [927.8, 210.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[925.37, 268.81], [919.82, 263.77], [928.88, 253.86], [931.28, 253.79], [935.55, 257.67], [925.37, 268.81]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[926.71, 272.69], [925.41, 271.51], [920.84, 267.31], [907.77, 281.46], [909.42, 282.97], [908.41, 284.06], [916.36, 291.33], [917.41, 290.19], [922.13, 294.53], [921.08, 295.66], [930.83, 304.6], [931.85, 303.49], [934.07, 305.53], [947.31, 291.18], [939.25, 283.78], [941.22, 281.65], [942.4, 282.74], [948.97, 275.62], [945.11, 272.08], [940.64, 267.97], [941.13, 267.44], [938.48, 265.0], [935.95, 262.67], [926.71, 272.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.768, "pop": 384, "jobs": 0}}, {"shape": {"outer": [[936.5, 309.1], [959.29, 284.57], [969.49, 293.99], [946.7, 318.51], [936.5, 309.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[963.41, 333.32], [949.15, 320.67], [971.58, 295.58], [985.84, 308.24], [963.41, 333.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.514, "pop": 257, "jobs": 0}}, {"shape": {"outer": [[950.17, 242.94], [943.79, 237.21], [954.87, 224.49], [961.41, 230.9], [950.17, 242.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[952.24, 243.09], [966.69, 227.24], [971.25, 231.36], [969.24, 233.58], [962.59, 240.88], [965.45, 243.46], [959.66, 249.81], [952.24, 243.09]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.046, "pop": 0, "jobs": 46}}, {"shape": {"outer": [[974.32, 263.03], [967.42, 256.78], [976.47, 246.85], [983.38, 253.12], [974.32, 263.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.08, "pop": 0, "jobs": 80}}, {"shape": {"outer": [[980.24, 260.06], [980.52, 260.31], [979.56, 261.4], [981.84, 263.41], [982.8, 262.31], [986.01, 265.12], [995.29, 254.6], [989.51, 249.55], [980.24, 260.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1008.59, 285.44], [1013.56, 289.95], [1022.7, 279.98], [1017.73, 275.46], [1008.59, 285.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1024.44, 308.62], [1019.03, 303.51], [1032.56, 289.25], [1037.98, 294.35], [1024.44, 308.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.094, "pop": 0, "jobs": 94}}, {"shape": {"outer": [[1028.96, 366.14], [1036.42, 358.37], [1035.48, 357.46], [1038.41, 354.41], [1033.01, 349.28], [1022.62, 360.1], [1028.96, 366.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1041.56, 321.46], [1035.43, 315.64], [1048.25, 302.24], [1052.52, 306.3], [1051.25, 307.63], [1053.11, 309.38], [1041.56, 321.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-783.95, -825.43], [-778.3, -831.55], [-772.46, -826.2], [-778.12, -820.08], [-783.95, -825.43]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[70.28, 704.91], [73.47, 707.72], [72.63, 708.68], [78.86, 714.17], [79.6, 713.34], [82.95, 716.3], [95.34, 702.34], [88.91, 696.68], [82.56, 691.08], [70.28, 704.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[794.2, 35.48], [796.54, 27.61], [795.08, 27.17], [795.26, 26.56], [803.67, 29.04], [805.76, 22.05], [815.09, 24.82], [812.8, 32.47], [825.51, 36.24], [830.31, 20.17], [823.93, 18.28], [825.34, 13.57], [814.13, 10.25], [814.38, 9.43], [804.42, 6.48], [803.25, 10.42], [797.27, 8.66], [795.64, 14.13], [791.89, 13.02], [791.22, 15.28], [788.19, 14.37], [784.19, 27.83], [789.43, 29.38], [788.15, 33.69], [794.2, 35.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.628, "pop": 314, "jobs": 0}}, {"shape": {"outer": [[871.01, 107.95], [876.05, 112.59], [867.96, 121.33], [862.92, 116.69], [871.01, 107.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[884.14, 110.28], [887.48, 113.38], [884.46, 116.62], [885.26, 117.36], [878.96, 124.1], [873.92, 119.41], [881.87, 110.91], [882.76, 111.75], [884.14, 110.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[891.08, 129.32], [897.5, 130.88], [900.5, 118.65], [899.82, 118.49], [900.32, 116.43], [902.06, 116.86], [902.7, 114.23], [903.72, 114.48], [904.77, 110.22], [898.35, 108.65], [897.28, 113.02], [895.2, 112.51], [891.08, 129.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[891.78, 104.38], [897.06, 108.15], [908.78, 91.81], [903.5, 88.05], [891.78, 104.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[910.32, 111.79], [910.53, 111.92], [910.1, 112.69], [912.36, 113.96], [913.36, 114.52], [913.8, 113.75], [917.48, 115.83], [923.49, 105.23], [916.33, 101.19], [910.32, 111.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[907.05, 132.09], [908.94, 125.4], [914.12, 119.48], [918.1, 120.89], [917.97, 121.44], [922.98, 122.68], [924.44, 116.26], [933.16, 118.24], [930.69, 129.02], [926.62, 128.09], [924.76, 136.19], [919.17, 134.93], [917.92, 134.64], [919.32, 128.17], [918.54, 127.98], [917.62, 127.77], [916.94, 127.6], [916.38, 127.47], [914.65, 134.06], [912.96, 133.63], [907.05, 132.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[931.34, 137.89], [934.1, 126.29], [942.04, 128.17], [939.29, 139.75], [931.34, 137.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[943.03, 137.68], [947.82, 128.76], [955.32, 132.76], [949.74, 143.14], [946.19, 141.26], [946.98, 139.79], [943.03, 137.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[956.77, 130.54], [965.16, 132.71], [962.27, 143.89], [961.97, 143.82], [961.37, 146.13], [953.8, 144.17], [954.38, 141.91], [953.86, 141.77], [956.77, 130.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[964.41, 144.33], [973.54, 146.59], [977.16, 132.09], [976.16, 131.84], [976.92, 128.78], [967.8, 126.53], [964.74, 138.81], [965.73, 139.05], [964.41, 144.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[979.15, 143.22], [980.04, 143.42], [981.09, 138.28], [994.42, 142.04], [993.12, 146.43], [994.0, 146.62], [993.09, 149.37], [991.42, 151.81], [992.41, 152.43], [989.85, 154.47], [988.17, 153.21], [985.2, 152.42], [983.94, 150.06], [977.89, 148.71], [979.15, 143.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1023.57, 157.73], [1025.29, 157.94], [1029.1, 158.38], [1029.14, 158.02], [1032.97, 158.46], [1033.33, 155.45], [1034.15, 155.55], [1034.9, 149.23], [1033.89, 149.1], [1034.25, 146.08], [1032.49, 145.87], [1032.59, 145.01], [1031.03, 144.84], [1031.56, 140.34], [1025.7, 139.65], [1024.59, 149.05], [1023.57, 157.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1039.74, 146.71], [1049.39, 148.26], [1047.51, 159.92], [1045.34, 159.58], [1044.99, 161.77], [1041.57, 161.22], [1041.93, 159.03], [1038.58, 158.49], [1037.96, 157.76], [1039.74, 146.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-82.11, 46.48], [-78.21, 43.22], [-52.97, 66.0], [-56.79, 70.02], [-82.11, 46.48]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.152, "pop": 0, "jobs": 152}}, {"shape": {"outer": [[-29.6, -11.51], [-25.52, -16.12], [-23.39, -17.07], [3.93, 6.9], [4.04, 9.11], [5.3, 10.63], [6.74, 10.41], [12.36, 15.63], [4.25, 24.32], [-2.52, 18.03], [0.38, 14.92], [-0.53, 14.08], [-4.21, 10.82], [-29.6, -11.51]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.367, "pop": 0, "jobs": 367}}, {"shape": {"outer": [[-29.6, -11.51], [-37.54, -2.14], [-12.77, 20.64], [-4.21, 10.82], [-29.6, -11.51]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.239, "pop": 0, "jobs": 239}}, {"shape": {"outer": [[-37.54, -2.14], [-44.33, 5.88], [-18.36, 29.23], [-11.67, 21.69], [-12.77, 20.64], [-37.54, -2.14]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.202, "pop": 0, "jobs": 202}}, {"shape": {"outer": [[-44.33, 5.88], [-50.9, 13.13], [-24.94, 36.48], [-18.36, 29.23], [-44.33, 5.88]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.191, "pop": 0, "jobs": 191}}, {"shape": {"outer": [[-50.9, 13.13], [-60.2, 23.79], [-33.21, 48.84], [-23.62, 38.17], [-24.94, 36.48], [-50.9, 13.13]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.298, "pop": 0, "jobs": 298}}, {"shape": {"outer": [[-33.21, 48.84], [-37.4, 53.45], [-41.97, 49.09], [-64.39, 28.38], [-60.2, 23.79], [-33.21, 48.84]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.127, "pop": 0, "jobs": 127}}, {"shape": {"outer": [[-46.62, 54.08], [-69.39, 33.53], [-64.39, 28.38], [-41.97, 49.09], [-46.62, 54.08]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.12, "pop": 0, "jobs": 120}}, {"shape": {"outer": [[-95.2, 91.45], [-90.79, 86.38], [-76.29, 99.47], [-81.01, 104.72], [-95.2, 91.45]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.075, "pop": 0, "jobs": 75}}, {"shape": {"outer": [[-27.98, 61.52], [-24.49, 57.76], [-21.36, 60.64], [-27.82, 67.6], [-31.53, 71.58], [-37.58, 78.05], [-52.28, 93.89], [-62.03, 84.91], [-34.65, 55.37], [-27.98, 61.52]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.468, "pop": 0, "jobs": 468}}, {"shape": {"outer": [[-37.58, 78.05], [-31.78, 83.36], [-46.3, 99.22], [-52.28, 93.89], [-37.58, 78.05]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-46.3, 99.22], [-32.37, 112.14], [-14.34, 92.25], [-16.77, 88.91], [-27.68, 78.82], [-31.78, 83.36], [-46.3, 99.22]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.73, "pop": 365, "jobs": 0}}, {"shape": {"outer": [[-959.98, -113.79], [-959.91, -112.37], [-958.89, -92.61], [-958.85, -91.96], [-951.78, -92.33], [-952.76, -111.47], [-952.9, -114.15], [-959.98, -113.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.099, "pop": 0, "jobs": 99}}, {"shape": {"outer": [[-951.78, -92.33], [-943.74, -92.74], [-943.8, -93.2], [-944.73, -111.89], [-945.43, -125.89], [-945.81, -133.29], [-945.83, -133.74], [-941.73, -138.43], [-950.94, -146.45], [-958.94, -137.33], [-958.97, -136.09], [-957.49, -134.79], [-957.14, -127.96], [-953.61, -128.14], [-952.9, -114.15], [-952.76, -111.47], [-951.78, -92.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[-943.8, -93.2], [-929.08, -93.89], [-929.53, -103.13], [-929.88, -110.13], [-930.14, -110.07], [-930.86, -124.56], [-928.83, -126.82], [-937.55, -134.63], [-945.43, -125.89], [-944.73, -111.89], [-943.8, -93.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.44, "pop": 220, "jobs": 0}}, {"shape": {"outer": [[-917.79, -107.88], [-916.07, -107.96], [-916.21, -110.85], [-914.24, -113.02], [-913.86, -113.52], [-917.84, -116.98], [-923.02, -111.08], [-923.59, -110.43], [-929.88, -110.13], [-929.53, -103.13], [-929.08, -93.89], [-921.66, -94.25], [-915.42, -94.56], [-915.87, -103.8], [-917.59, -103.72], [-917.79, -107.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-917.84, -116.98], [-926.74, -124.72], [-928.18, -126.02], [-929.82, -124.18], [-929.65, -121.39], [-929.12, -112.94], [-923.02, -111.08], [-917.84, -116.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-914.24, -113.02], [-910.88, -109.99], [-910.17, -94.81], [-915.42, -94.56], [-915.87, -103.8], [-916.07, -107.96], [-916.21, -110.85], [-914.24, -113.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.057, "pop": 0, "jobs": 57}}, {"shape": {"outer": [[-910.88, -109.99], [-909.73, -111.22], [-895.8, -98.26], [-895.37, -97.08], [-895.48, -96.15], [-895.85, -95.44], [-896.55, -95.06], [-910.15, -94.43], [-910.17, -94.81], [-910.88, -109.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2137.03, -573.13], [-2137.24, -581.69], [-2121.76, -582.06], [-2121.61, -575.67], [-2125.12, -575.58], [-2125.07, -573.41], [-2137.03, -573.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-830.6, -65.98], [-824.04, -60.34], [-818.97, -65.84], [-819.88, -66.61], [-830.6, -65.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.023, "pop": 0, "jobs": 23}}, {"shape": {"outer": [[-819.88, -66.61], [-818.97, -65.84], [-818.63, -65.96], [-818.21, -66.43], [-812.35, -72.92], [-810.79, -74.65], [-810.99, -80.5], [-820.76, -79.93], [-819.88, -66.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.065, "pop": 0, "jobs": 65}}, {"shape": {"outer": [[-388.78, 271.22], [-379.04, 280.09], [-369.09, 269.23], [-367.8, 270.4], [-357.16, 258.79], [-369.54, 247.53], [-379.32, 258.21], [-377.98, 259.43], [-388.78, 271.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.364, "pop": 182, "jobs": 0}}, {"shape": {"outer": [[-380.72, 232.96], [-376.55, 236.82], [-378.87, 239.31], [-376.59, 241.41], [-374.5, 239.18], [-370.7, 242.68], [-375.79, 248.15], [-375.66, 249.86], [-380.89, 255.48], [-382.25, 255.09], [-388.43, 261.74], [-388.8, 261.39], [-390.82, 263.57], [-399.64, 255.42], [-397.62, 253.24], [-398.04, 252.85], [-392.22, 246.61], [-392.85, 244.53], [-387.39, 238.68], [-386.03, 238.66], [-380.72, 232.96]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.564, "pop": 282, "jobs": 0}}, {"shape": {"outer": [[-447.28, 452.93], [-442.94, 448.33], [-439.55, 451.5], [-435.96, 447.68], [-434.45, 449.08], [-433.89, 448.49], [-421.29, 460.15], [-426.09, 465.24], [-429.46, 462.07], [-433.22, 466.05], [-447.28, 452.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-421.01, 428.59], [-413.87, 421.01], [-411.43, 423.3], [-410.22, 422.02], [-402.15, 429.58], [-400.42, 427.74], [-395.97, 431.91], [-400.38, 436.58], [-398.73, 438.12], [-403.01, 442.68], [-405.08, 440.75], [-407.16, 442.95], [-412.26, 438.18], [-411.81, 437.7], [-418.56, 431.37], [-418.32, 431.11], [-421.01, 428.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-396.72, 400.54], [-390.92, 405.7], [-384.27, 398.27], [-381.53, 400.72], [-372.63, 390.77], [-374.55, 389.06], [-373.88, 388.32], [-380.22, 382.67], [-380.89, 383.43], [-382.36, 382.12], [-383.57, 383.47], [-384.61, 382.55], [-387.39, 385.66], [-386.35, 386.57], [-391.26, 392.06], [-390.08, 393.11], [-396.72, 400.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-414.1, 302.92], [-408.83, 296.91], [-408.32, 297.36], [-403.58, 291.96], [-400.06, 295.02], [-397.52, 292.13], [-392.04, 296.89], [-395.43, 300.76], [-394.97, 301.16], [-401.09, 308.16], [-400.85, 308.36], [-404.42, 312.44], [-405.18, 311.77], [-405.72, 312.4], [-411.93, 307.01], [-411.38, 306.38], [-413.62, 304.43], [-413.08, 303.82], [-414.1, 302.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-366.86, -22.56], [-328.83, 12.03], [-345.65, 30.39], [-372.36, 6.11], [-386.22, 21.25], [-361.38, 43.84], [-364.79, 47.56], [-361.36, 50.69], [-372.17, 62.48], [-411.59, 26.63], [-405.12, 19.56], [-403.42, 21.11], [-392.93, 9.66], [-393.09, 7.87], [-388.88, 3.32], [-387.02, 3.27], [-381.61, -2.63], [-383.52, -4.37], [-366.86, -22.56]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3672}}, {"shape": {"outer": [[884.98, 1904.44], [893.68, 1900.84], [894.25, 1907.95], [892.9, 1923.76], [880.06, 1914.98], [875.45, 1908.82], [884.98, 1904.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.151, "pop": 0, "jobs": 151}}, {"shape": {"outer": [[1057.22, 332.54], [1066.18, 322.21], [1065.21, 321.37], [1065.51, 321.04], [1061.28, 317.39], [1052.02, 328.07], [1057.22, 332.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1034.56, 364.27], [1043.04, 354.89], [1044.38, 356.1], [1049.02, 360.27], [1040.55, 369.64], [1035.61, 365.21], [1034.56, 364.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1029.53, 371.98], [1034.47, 376.39], [1040.55, 369.64], [1035.61, 365.21], [1029.53, 371.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1039.92, 374.97], [1050.27, 363.0], [1054.24, 366.41], [1058.23, 369.84], [1047.89, 381.8], [1039.92, 374.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.106, "pop": 0, "jobs": 106}}, {"shape": {"outer": [[1059.23, 337.26], [1065.43, 343.19], [1075.72, 332.49], [1069.51, 326.56], [1059.23, 337.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1069.04, 348.86], [1075.5, 354.72], [1078.37, 357.32], [1089.61, 345.01], [1087.85, 343.41], [1084.01, 339.94], [1080.27, 336.55], [1069.04, 348.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.134, "pop": 0, "jobs": 134}}, {"shape": {"outer": [[1097.57, 426.66], [1102.62, 421.12], [1108.57, 414.39], [1102.39, 408.87], [1091.36, 421.1], [1097.57, 426.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.088, "pop": 0, "jobs": 88}}, {"shape": {"outer": [[-2848.95, -1165.42], [-2837.26, -1179.19], [-2830.19, -1173.22], [-2841.89, -1159.47], [-2848.95, -1165.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.107, "pop": 0, "jobs": 107}}, {"shape": {"outer": [[-2841.89, -1159.47], [-2835.33, -1153.92], [-2823.63, -1167.69], [-2830.19, -1173.22], [-2841.89, -1159.47]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.087, "pop": 0, "jobs": 87}}, {"shape": {"outer": [[-2835.33, -1153.92], [-2828.06, -1147.78], [-2816.35, -1161.56], [-2823.63, -1167.69], [-2835.33, -1153.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.11, "pop": 0, "jobs": 110}}, {"shape": {"outer": [[-2494.27, -861.65], [-2482.8, -875.17], [-2474.71, -868.34], [-2476.26, -866.52], [-2486.17, -854.83], [-2494.27, -861.65]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.105, "pop": 0, "jobs": 105}}, {"shape": {"outer": [[885.4, 241.34], [890.57, 246.02], [894.36, 249.44], [907.23, 235.31], [908.63, 233.78], [914.29, 238.9], [900.03, 254.56], [897.16, 251.98], [894.76, 254.6], [884.16, 266.25], [872.4, 255.62], [882.8, 244.19], [885.4, 241.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.299, "pop": 0, "jobs": 299}}, {"shape": {"outer": [[961.57, 185.33], [961.21, 185.01], [957.76, 188.81], [951.18, 182.87], [952.76, 181.14], [951.11, 179.64], [953.74, 176.74], [951.94, 175.13], [957.03, 169.52], [960.83, 172.94], [962.87, 170.69], [969.47, 176.64], [961.57, 185.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[993.48, 223.55], [990.7, 221.06], [993.03, 218.48], [988.34, 214.26], [990.84, 211.49], [993.8, 214.15], [994.43, 213.47], [998.94, 217.52], [993.48, 223.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[872.79, 170.7], [877.49, 174.94], [884.66, 167.07], [877.79, 160.85], [874.53, 164.42], [876.71, 166.39], [872.79, 170.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[881.65, 158.15], [888.42, 163.95], [895.57, 155.67], [890.46, 151.29], [888.4, 153.67], [886.73, 152.25], [881.65, 158.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[923.99, 181.73], [929.72, 175.66], [923.84, 170.14], [918.11, 176.2], [920.95, 178.87], [923.99, 181.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[914.61, 171.31], [907.36, 164.96], [911.93, 159.77], [914.94, 162.4], [915.76, 161.47], [920.01, 165.19], [914.61, 171.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[948.4, 171.07], [944.97, 168.1], [944.63, 168.49], [941.58, 165.84], [935.02, 173.34], [941.02, 178.55], [941.78, 177.67], [942.26, 178.09], [948.4, 171.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[936.35, 192.26], [941.56, 196.73], [942.87, 195.21], [946.16, 198.04], [950.41, 193.12], [951.99, 194.47], [953.86, 192.3], [943.78, 183.66], [936.35, 192.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[969.97, 222.73], [963.79, 217.11], [966.84, 213.78], [968.0, 212.52], [966.6, 211.24], [967.64, 210.11], [971.31, 206.12], [978.87, 213.0], [969.97, 222.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[996.72, 180.22], [994.03, 183.22], [993.36, 182.62], [989.11, 187.36], [989.78, 187.96], [985.42, 192.81], [991.41, 198.15], [1002.71, 185.56], [996.72, 180.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[996.68, 205.78], [1001.32, 209.91], [1007.23, 203.3], [1006.7, 202.84], [1012.9, 195.91], [1008.1, 191.64], [1005.59, 194.45], [1003.79, 192.85], [997.82, 199.52], [1000.3, 201.73], [996.68, 205.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1014.22, 218.67], [1005.85, 211.21], [1015.19, 200.79], [1023.57, 208.24], [1014.22, 218.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1017.6, 216.76], [1018.1, 217.19], [1011.47, 224.8], [1011.94, 225.2], [1009.61, 227.87], [1012.99, 230.78], [1015.21, 228.22], [1016.53, 229.36], [1020.22, 225.12], [1019.2, 224.25], [1022.24, 220.77], [1023.65, 221.99], [1030.61, 213.99], [1024.56, 208.76], [1017.6, 216.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1030.43, 232.66], [1036.11, 237.57], [1038.87, 234.41], [1039.88, 235.28], [1043.34, 231.3], [1042.36, 230.44], [1045.29, 227.07], [1039.59, 222.14], [1030.43, 232.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1036.06, 244.19], [1041.05, 248.6], [1044.24, 245.0], [1044.69, 245.4], [1055.04, 233.73], [1051.96, 231.02], [1050.87, 232.25], [1048.49, 230.15], [1045.6, 233.4], [1044.9, 232.77], [1041.28, 236.84], [1041.62, 237.14], [1039.1, 239.99], [1039.48, 240.33], [1036.06, 244.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1044.75, 247.46], [1056.24, 235.15], [1061.47, 240.01], [1049.99, 252.31], [1044.75, 247.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1054.81, 254.76], [1057.42, 251.89], [1055.69, 250.33], [1059.72, 245.9], [1060.24, 246.38], [1062.53, 243.88], [1064.08, 245.28], [1065.83, 243.35], [1069.9, 247.04], [1059.21, 258.75], [1054.81, 254.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1066.85, 265.99], [1077.26, 254.66], [1070.03, 248.05], [1059.62, 259.39], [1060.55, 260.24], [1058.99, 261.94], [1060.26, 263.09], [1059.03, 264.43], [1062.42, 267.52], [1063.65, 266.2], [1064.46, 266.94], [1066.03, 265.24], [1066.85, 265.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1070.35, 265.54], [1079.19, 255.96], [1084.91, 261.22], [1076.06, 270.78], [1070.35, 265.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1072.03, 277.62], [1079.1, 283.85], [1092.4, 268.88], [1085.33, 262.65], [1072.03, 277.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1082.11, 287.06], [1089.11, 293.3], [1100.98, 280.06], [1100.02, 279.21], [1098.85, 278.17], [1093.97, 273.82], [1082.11, 287.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1092.4, 296.56], [1096.28, 292.35], [1095.91, 292.0], [1104.21, 283.02], [1112.43, 290.56], [1111.77, 291.27], [1112.97, 292.37], [1106.9, 298.93], [1105.15, 297.31], [1101.55, 301.2], [1100.76, 300.48], [1098.88, 302.5], [1098.76, 302.38], [1096.99, 304.3], [1090.9, 298.7], [1092.66, 296.8], [1092.4, 296.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[1111.76, 303.47], [1117.32, 297.41], [1119.94, 299.8], [1124.75, 294.57], [1130.58, 299.88], [1123.98, 307.08], [1122.69, 305.91], [1118.93, 310.0], [1111.76, 303.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1094.13, 315.66], [1098.38, 311.12], [1100.59, 313.17], [1103.21, 310.37], [1110.28, 316.95], [1102.89, 324.85], [1095.75, 318.23], [1096.28, 317.66], [1094.13, 315.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1057.66, 197.4], [1064.34, 190.29], [1069.48, 195.09], [1070.25, 194.28], [1075.14, 198.83], [1070.14, 204.15], [1066.37, 200.63], [1063.92, 203.25], [1057.66, 197.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1068.73, 210.35], [1072.44, 213.76], [1082.46, 202.98], [1082.16, 202.71], [1087.32, 197.16], [1082.25, 192.49], [1079.04, 195.95], [1078.65, 195.58], [1069.38, 205.56], [1071.42, 207.45], [1068.73, 210.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1077.03, 215.52], [1084.31, 207.45], [1094.52, 216.59], [1087.25, 224.66], [1077.03, 215.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1096.94, 206.05], [1099.58, 203.23], [1099.24, 202.9], [1105.49, 196.24], [1111.13, 201.5], [1102.24, 210.98], [1096.94, 206.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1089.62, 227.27], [1093.23, 223.32], [1092.8, 222.94], [1094.76, 220.79], [1095.19, 221.18], [1098.97, 217.04], [1105.36, 222.84], [1103.69, 224.66], [1104.33, 225.25], [1099.69, 230.32], [1098.76, 229.48], [1095.94, 232.55], [1094.17, 230.94], [1093.95, 231.2], [1089.62, 227.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1105.66, 208.6], [1108.85, 211.46], [1109.27, 210.98], [1112.56, 213.91], [1120.03, 205.6], [1116.35, 202.31], [1116.77, 201.83], [1113.97, 199.33], [1105.66, 208.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1114.42, 216.1], [1126.06, 203.35], [1127.58, 204.73], [1129.13, 203.02], [1133.68, 207.14], [1120.49, 221.6], [1114.42, 216.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1125.71, 218.99], [1131.5, 224.1], [1144.11, 209.87], [1138.32, 204.77], [1125.71, 218.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1140.32, 218.79], [1142.86, 221.07], [1141.95, 222.07], [1143.6, 223.55], [1144.51, 222.54], [1145.99, 223.88], [1155.83, 212.96], [1150.15, 207.89], [1140.32, 218.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1157.02, 231.87], [1158.96, 229.79], [1162.93, 233.47], [1168.92, 227.04], [1168.23, 226.41], [1170.08, 224.43], [1159.73, 214.83], [1157.84, 216.85], [1156.82, 215.92], [1150.91, 222.25], [1152.33, 223.58], [1150.35, 225.69], [1157.02, 231.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[1171.74, 228.69], [1179.8, 219.81], [1190.85, 229.78], [1182.79, 238.66], [1171.74, 228.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1042.44, 186.04], [1040.72, 184.52], [1044.39, 180.39], [1045.28, 179.91], [1045.92, 179.87], [1046.54, 180.04], [1049.64, 182.77], [1050.92, 181.33], [1056.73, 186.43], [1056.83, 188.32], [1050.68, 195.24], [1046.04, 191.13], [1045.0, 191.24], [1043.86, 190.23], [1043.84, 189.18], [1041.5, 187.11], [1042.44, 186.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1163.02, 237.46], [1166.31, 233.76], [1168.25, 235.49], [1170.24, 233.25], [1180.76, 242.55], [1177.72, 245.96], [1174.56, 249.5], [1173.18, 251.05], [1166.27, 244.96], [1168.58, 242.37], [1163.02, 237.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1173.26, 253.32], [1163.18, 244.27], [1156.17, 252.01], [1166.24, 261.06], [1173.26, 253.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1141.49, 269.56], [1144.87, 265.89], [1143.92, 265.03], [1148.6, 259.93], [1151.19, 262.3], [1155.1, 258.05], [1160.75, 263.21], [1156.74, 267.57], [1157.4, 268.17], [1152.88, 273.1], [1152.53, 272.78], [1149.1, 276.51], [1147.78, 275.31], [1146.6, 276.59], [1144.26, 274.47], [1145.45, 273.18], [1141.49, 269.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1104.5, 241.1], [1109.79, 245.75], [1118.54, 235.84], [1113.24, 231.2], [1104.5, 241.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1112.84, 247.78], [1115.97, 250.25], [1116.68, 249.61], [1119.31, 251.97], [1129.02, 241.24], [1122.87, 235.46], [1112.84, 247.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1098.53, 234.95], [1104.44, 240.02], [1114.15, 228.8], [1110.08, 225.3], [1107.96, 227.75], [1106.82, 226.78], [1105.16, 228.69], [1103.69, 228.98], [1102.47, 229.4], [1101.65, 230.26], [1101.53, 231.48], [1098.53, 234.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1121.34, 253.72], [1127.07, 258.79], [1137.67, 246.9], [1131.43, 241.36], [1123.71, 250.02], [1124.23, 250.48], [1121.34, 253.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1132.38, 256.87], [1137.55, 261.32], [1143.28, 254.69], [1144.41, 255.67], [1148.83, 250.55], [1145.11, 247.36], [1141.02, 252.08], [1138.44, 249.87], [1132.38, 256.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1034.37, 276.99], [1027.63, 284.03], [1047.31, 302.72], [1054.04, 295.69], [1034.37, 276.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[1093.72, 372.5], [1104.5, 381.97], [1112.62, 372.78], [1101.82, 363.31], [1093.72, 372.5]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[1117.84, 393.08], [1123.52, 398.29], [1131.69, 389.44], [1130.83, 388.66], [1131.88, 387.52], [1127.53, 383.54], [1126.48, 384.67], [1126.01, 384.24], [1117.84, 393.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.065, "pop": 0, "jobs": 65}}, {"shape": {"outer": [[1126.44, 396.54], [1133.59, 402.86], [1140.62, 394.96], [1139.07, 393.6], [1140.36, 392.16], [1134.75, 387.2], [1126.44, 396.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1031.0, 443.36], [1041.2, 432.41], [1069.53, 458.62], [1059.33, 469.58], [1031.0, 443.36]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.324, "pop": 0, "jobs": 324}}, {"shape": {"outer": [[1070.46, 479.56], [1075.75, 473.8], [1073.78, 472.01], [1075.43, 470.21], [1067.53, 463.02], [1060.6, 470.59], [1070.46, 479.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[1072.15, 481.92], [1082.27, 470.69], [1111.89, 497.17], [1101.78, 508.4], [1072.15, 481.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.384, "pop": 0, "jobs": 384}}, {"shape": {"outer": [[1137.46, 326.54], [1164.45, 351.32], [1172.93, 342.15], [1168.0, 337.63], [1159.91, 330.2], [1150.4, 321.45], [1145.95, 317.38], [1137.46, 326.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[1170.8, 361.68], [1181.97, 349.53], [1181.21, 348.84], [1182.28, 347.68], [1181.59, 347.06], [1180.67, 346.21], [1176.63, 342.52], [1175.56, 343.68], [1174.84, 343.01], [1163.67, 355.15], [1170.8, 361.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1171.21, 363.33], [1177.45, 369.0], [1181.32, 364.78], [1181.45, 364.9], [1185.17, 360.84], [1184.21, 359.97], [1188.51, 355.27], [1183.09, 350.35], [1171.21, 363.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1204.39, 386.42], [1208.02, 382.41], [1208.62, 382.94], [1211.68, 379.55], [1210.35, 378.36], [1213.35, 375.06], [1208.64, 370.82], [1200.99, 379.27], [1202.13, 380.31], [1200.09, 382.55], [1204.39, 386.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1208.04, 388.88], [1212.51, 392.94], [1213.23, 392.15], [1215.6, 394.3], [1221.25, 388.13], [1220.16, 387.15], [1223.0, 384.04], [1217.9, 379.41], [1212.59, 385.23], [1211.93, 384.63], [1208.04, 388.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1218.4, 399.51], [1219.71, 400.75], [1218.85, 401.65], [1222.16, 404.77], [1223.36, 403.52], [1225.48, 405.51], [1228.24, 402.6], [1229.61, 403.89], [1231.69, 401.7], [1230.32, 400.41], [1234.98, 395.48], [1234.23, 394.77], [1235.52, 393.41], [1229.73, 387.98], [1228.45, 389.33], [1228.24, 389.13], [1218.4, 399.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1230.28, 410.66], [1236.66, 416.51], [1245.86, 406.57], [1239.49, 400.71], [1230.28, 410.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1239.69, 418.5], [1246.94, 425.13], [1256.05, 415.26], [1249.33, 409.11], [1247.75, 410.83], [1247.21, 410.34], [1239.69, 418.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1252.67, 436.15], [1263.78, 423.94], [1262.81, 423.06], [1258.64, 419.3], [1257.14, 417.94], [1253.99, 421.4], [1253.49, 420.95], [1249.14, 425.74], [1249.4, 425.96], [1245.79, 429.95], [1250.5, 434.19], [1248.3, 436.6], [1250.09, 438.22], [1252.28, 435.8], [1252.67, 436.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1252.24, 438.53], [1262.01, 427.8], [1265.73, 431.16], [1267.76, 432.99], [1270.06, 435.07], [1260.29, 445.81], [1252.24, 438.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1282.33, 403.91], [1296.9, 417.07], [1306.47, 406.55], [1306.97, 407.0], [1312.69, 400.72], [1310.56, 398.79], [1311.47, 397.79], [1303.17, 390.29], [1302.26, 391.3], [1297.63, 387.1], [1282.33, 403.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.299, "pop": 0, "jobs": 299}}, {"shape": {"outer": [[1275.82, 394.43], [1282.68, 400.7], [1290.03, 392.69], [1287.62, 390.49], [1288.31, 389.73], [1284.42, 386.19], [1283.73, 386.94], [1283.17, 386.43], [1275.82, 394.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1259.04, 380.47], [1263.19, 384.32], [1264.7, 382.71], [1267.96, 385.74], [1277.23, 375.83], [1274.64, 373.43], [1279.54, 368.19], [1275.21, 364.15], [1270.3, 369.4], [1269.82, 368.95], [1259.04, 380.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1248.91, 368.02], [1249.34, 368.42], [1248.09, 369.78], [1253.22, 374.47], [1254.49, 373.11], [1254.72, 373.32], [1265.27, 361.84], [1258.52, 355.68], [1254.23, 360.33], [1255.18, 361.19], [1248.91, 368.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1238.57, 361.82], [1245.35, 367.92], [1258.64, 353.27], [1257.51, 352.26], [1258.45, 351.22], [1253.93, 347.16], [1252.99, 348.18], [1251.86, 347.16], [1238.57, 361.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[1227.21, 349.08], [1230.77, 352.18], [1231.86, 353.14], [1232.58, 353.76], [1243.87, 340.89], [1237.97, 335.75], [1227.31, 347.9], [1227.84, 348.35], [1227.21, 349.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1224.94, 339.93], [1217.51, 332.79], [1223.9, 326.18], [1222.31, 324.64], [1226.33, 320.47], [1228.79, 322.83], [1231.8, 319.71], [1238.38, 326.01], [1224.94, 339.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[1207.71, 323.23], [1212.9, 328.03], [1219.65, 320.77], [1214.46, 315.97], [1207.71, 323.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1195.35, 318.89], [1196.75, 320.17], [1201.22, 324.32], [1202.52, 325.51], [1216.08, 310.96], [1208.92, 304.34], [1205.41, 308.09], [1195.35, 318.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[1189.84, 313.79], [1195.35, 318.89], [1205.41, 308.09], [1200.9, 303.92], [1196.74, 308.38], [1195.73, 307.46], [1189.84, 313.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1180.67, 308.26], [1186.52, 313.48], [1190.04, 309.57], [1190.44, 309.93], [1196.79, 302.87], [1190.17, 296.95], [1184.21, 303.59], [1184.57, 303.91], [1180.67, 308.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1169.92, 294.68], [1173.9, 298.3], [1175.12, 296.96], [1178.08, 299.65], [1184.0, 293.2], [1176.8, 286.65], [1171.69, 292.23], [1171.95, 292.47], [1169.92, 294.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1246.83, 444.61], [1255.25, 452.34], [1255.06, 452.55], [1257.89, 455.13], [1257.56, 455.49], [1259.34, 457.12], [1255.56, 461.21], [1254.85, 461.98], [1254.25, 462.64], [1241.21, 450.69], [1246.83, 444.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1247.47, 468.12], [1252.59, 462.43], [1245.67, 456.25], [1240.21, 462.32], [1243.54, 465.3], [1243.88, 464.92], [1247.47, 468.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1230.01, 468.3], [1241.04, 477.96], [1245.66, 472.73], [1241.35, 468.95], [1241.93, 468.29], [1238.03, 464.86], [1237.44, 465.53], [1234.63, 463.07], [1230.01, 468.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1231.89, 475.67], [1237.8, 481.04], [1228.9, 490.8], [1222.98, 485.44], [1231.89, 475.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2821.05, -1141.86], [-2809.33, -1155.63], [-2816.35, -1161.56], [-2828.06, -1147.78], [-2821.05, -1141.86]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.093, "pop": 0, "jobs": 93}}, {"shape": {"outer": [[-2821.05, -1141.86], [-2814.44, -1136.28], [-2800.53, -1152.64], [-2797.46, -1156.25], [-2804.07, -1161.83], [-2809.33, -1155.63], [-2821.05, -1141.86]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.063, "pop": 0, "jobs": 63}}, {"shape": {"outer": [[-2871.63, -1185.34], [-2854.74, -1204.7], [-2847.04, -1198.02], [-2863.93, -1178.67], [-2871.63, -1185.34]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.073, "pop": 0, "jobs": 73}}, {"shape": {"outer": [[908.17, 1299.79], [920.57, 1312.26], [934.84, 1298.18], [922.45, 1285.71], [908.17, 1299.79]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[1377.36, 1277.66], [1388.64, 1265.95], [1378.86, 1256.6], [1367.59, 1268.31], [1377.36, 1277.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.141, "pop": 0, "jobs": 141}}, {"shape": {"outer": [[1340.8, 1247.09], [1352.83, 1233.76], [1343.37, 1223.76], [1329.91, 1237.62], [1340.8, 1247.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.168, "pop": 0, "jobs": 168}}, {"shape": {"outer": [[1371.88, 293.43], [1368.87, 290.73], [1370.05, 289.43], [1367.95, 287.53], [1374.68, 280.13], [1376.46, 281.74], [1377.16, 280.96], [1379.17, 282.77], [1378.11, 283.93], [1379.44, 285.12], [1371.88, 293.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1392.36, 277.0], [1398.69, 269.53], [1406.59, 276.18], [1401.65, 282.01], [1395.87, 277.15], [1394.48, 278.79], [1392.36, 277.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1403.42, 284.83], [1410.29, 277.38], [1415.59, 282.22], [1411.19, 286.98], [1412.24, 287.95], [1409.76, 290.64], [1403.42, 284.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1383.11, 267.8], [1385.19, 269.46], [1384.0, 270.94], [1390.23, 275.92], [1398.03, 266.24], [1389.72, 259.6], [1383.11, 267.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1370.34, 257.53], [1377.77, 248.75], [1385.5, 255.24], [1378.07, 264.03], [1370.34, 257.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1342.5, 268.97], [1351.44, 259.38], [1357.55, 265.04], [1348.59, 274.62], [1342.5, 268.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1430.15, 300.48], [1439.88, 290.15], [1448.24, 297.96], [1438.52, 308.29], [1430.15, 300.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1441.09, 312.09], [1442.43, 313.16], [1446.02, 316.04], [1449.49, 318.82], [1461.89, 303.45], [1453.48, 296.72], [1441.09, 312.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[1451.25, 320.0], [1459.67, 327.09], [1470.31, 316.01], [1463.23, 310.04], [1460.27, 312.7], [1458.78, 311.17], [1451.25, 320.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1449.05, 356.55], [1449.89, 355.6], [1462.65, 340.96], [1481.74, 357.47], [1478.19, 361.55], [1479.53, 362.71], [1468.04, 375.9], [1461.84, 370.54], [1459.21, 373.56], [1459.83, 374.1], [1457.29, 377.03], [1456.33, 376.2], [1453.18, 379.81], [1454.22, 380.72], [1451.36, 384.01], [1450.45, 383.22], [1447.75, 386.31], [1448.41, 386.87], [1445.11, 390.65], [1444.18, 389.86], [1442.25, 392.07], [1441.0, 393.5], [1438.81, 391.61], [1437.79, 392.77], [1434.95, 390.31], [1430.33, 386.31], [1435.79, 380.05], [1434.5, 378.93], [1437.01, 376.04], [1438.09, 376.98], [1440.5, 374.21], [1439.59, 373.43], [1442.13, 370.51], [1443.15, 371.39], [1446.44, 367.63], [1445.73, 367.02], [1448.32, 364.04], [1449.42, 365.0], [1452.0, 362.04], [1450.83, 361.03], [1452.29, 359.35], [1449.05, 356.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.673, "pop": 0, "jobs": 673}}, {"shape": {"outer": [[1474.63, 376.95], [1528.34, 348.19], [1535.89, 362.19], [1475.07, 394.74], [1468.71, 382.94], [1475.81, 379.14], [1474.63, 376.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.862, "pop": 431, "jobs": 0}}, {"shape": {"outer": [[1727.62, 497.12], [1721.76, 491.93], [1734.29, 477.89], [1740.15, 483.08], [1727.62, 497.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1728.13, 497.74], [1729.79, 499.16], [1728.38, 500.79], [1732.31, 504.16], [1733.59, 502.69], [1735.58, 504.41], [1748.99, 488.94], [1741.41, 482.42], [1728.13, 497.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[1735.84, 505.12], [1736.98, 506.13], [1735.71, 507.55], [1740.12, 511.45], [1741.5, 509.9], [1742.48, 510.79], [1754.89, 496.83], [1748.34, 491.05], [1735.84, 505.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1756.11, 497.69], [1762.43, 503.4], [1750.01, 517.04], [1743.69, 511.33], [1756.11, 497.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1774.52, 532.98], [1779.4, 526.34], [1778.45, 525.63], [1783.1, 519.3], [1787.81, 522.74], [1785.98, 525.22], [1788.97, 527.41], [1781.54, 537.53], [1782.92, 538.54], [1779.92, 542.61], [1774.42, 538.6], [1776.48, 535.8], [1774.52, 532.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1789.28, 538.31], [1798.72, 527.92], [1800.71, 525.73], [1812.8, 536.64], [1810.94, 538.68], [1801.37, 549.21], [1789.28, 538.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[1805.75, 551.5], [1815.99, 541.44], [1822.82, 548.28], [1813.01, 558.33], [1805.75, 551.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1817.2, 565.26], [1830.63, 550.1], [1842.62, 560.65], [1829.18, 575.8], [1817.2, 565.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[1725.0, 530.9], [1731.95, 537.03], [1741.19, 526.6], [1735.42, 521.51], [1734.29, 522.78], [1733.11, 521.74], [1725.0, 530.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1702.15, 510.86], [1709.47, 501.87], [1710.97, 503.08], [1712.78, 500.87], [1718.76, 505.7], [1709.63, 516.9], [1702.15, 510.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1709.49, 517.59], [1716.95, 508.79], [1724.56, 515.19], [1717.1, 524.0], [1709.49, 517.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1716.95, 524.47], [1724.0, 530.66], [1732.01, 521.6], [1731.13, 520.83], [1732.77, 518.99], [1727.14, 514.05], [1725.76, 515.63], [1725.2, 515.14], [1716.95, 524.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1536.51, 367.9], [1543.43, 361.0], [1545.18, 361.96], [1548.92, 361.26], [1551.87, 363.64], [1551.68, 365.9], [1543.09, 374.45], [1536.51, 367.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1520.82, 381.62], [1527.77, 387.79], [1517.53, 399.24], [1510.58, 393.06], [1520.82, 381.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1518.44, 403.58], [1530.34, 389.76], [1538.04, 396.35], [1526.14, 410.16], [1518.44, 403.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1551.26, 382.23], [1548.07, 379.08], [1550.39, 376.75], [1546.62, 373.01], [1553.85, 365.75], [1560.82, 372.63], [1551.26, 382.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1552.0, 383.16], [1559.81, 390.7], [1566.61, 383.7], [1558.79, 376.17], [1552.0, 383.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1561.43, 391.86], [1570.34, 382.2], [1577.96, 388.61], [1568.96, 398.29], [1561.43, 391.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1570.4, 399.72], [1573.18, 402.0], [1575.23, 400.29], [1580.16, 404.51], [1586.09, 397.54], [1578.6, 390.72], [1570.4, 399.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1605.57, 423.34], [1612.04, 429.15], [1622.11, 418.01], [1615.67, 412.23], [1612.62, 415.61], [1612.27, 415.29], [1607.9, 420.13], [1608.21, 420.41], [1605.57, 423.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1612.75, 430.87], [1613.73, 429.79], [1612.92, 429.07], [1621.86, 419.1], [1628.8, 425.29], [1619.66, 435.48], [1619.12, 435.0], [1618.34, 435.85], [1612.75, 430.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1621.14, 436.58], [1630.31, 426.28], [1637.58, 432.7], [1628.44, 442.97], [1625.67, 440.51], [1624.61, 441.7], [1620.46, 438.04], [1621.49, 436.87], [1621.14, 436.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1536.59, 424.44], [1544.85, 431.98], [1546.24, 430.47], [1548.99, 432.96], [1554.39, 427.08], [1553.32, 426.1], [1559.02, 419.9], [1549.31, 411.06], [1545.99, 414.67], [1544.2, 413.03], [1538.59, 419.15], [1540.15, 420.56], [1536.59, 424.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[1604.63, 408.12], [1605.05, 408.49], [1607.91, 405.35], [1610.13, 407.34], [1610.85, 406.56], [1614.18, 409.57], [1611.2, 412.85], [1612.06, 413.61], [1609.38, 416.56], [1609.82, 416.96], [1606.59, 420.52], [1606.2, 420.17], [1604.91, 421.59], [1598.03, 415.37], [1604.63, 408.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1378.6, 292.63], [1384.4, 285.68], [1394.08, 293.68], [1401.62, 299.91], [1397.16, 305.27], [1396.3, 306.29], [1395.82, 306.87], [1378.6, 292.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1690.68, 497.19], [1701.85, 484.22], [1706.85, 482.94], [1711.0, 486.84], [1711.11, 490.43], [1712.59, 491.97], [1708.26, 496.98], [1709.8, 498.95], [1704.19, 504.95], [1701.67, 502.67], [1698.7, 505.8], [1693.49, 501.06], [1694.25, 500.16], [1690.68, 497.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[1676.06, 481.33], [1678.62, 483.79], [1676.92, 485.53], [1680.85, 489.31], [1682.04, 488.08], [1685.69, 491.6], [1689.98, 487.17], [1689.88, 485.75], [1692.24, 482.82], [1691.96, 482.19], [1691.52, 481.63], [1692.99, 480.95], [1693.44, 478.07], [1689.13, 474.28], [1685.14, 474.07], [1686.0, 473.19], [1683.36, 470.64], [1678.16, 475.98], [1679.12, 476.91], [1676.53, 479.56], [1677.17, 480.17], [1676.06, 481.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[1660.68, 469.08], [1670.52, 458.09], [1679.63, 466.18], [1674.82, 471.56], [1674.22, 472.9], [1669.72, 477.93], [1665.81, 474.46], [1665.09, 475.26], [1661.97, 472.5], [1663.11, 471.22], [1660.68, 469.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1632.95, 438.58], [1634.42, 437.06], [1634.91, 437.53], [1637.83, 434.5], [1640.99, 437.52], [1643.23, 435.19], [1651.31, 442.92], [1649.82, 444.48], [1650.82, 445.44], [1642.62, 453.95], [1630.59, 442.44], [1633.65, 439.25], [1632.95, 438.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[1647.83, 459.76], [1658.46, 448.14], [1663.66, 452.86], [1661.29, 455.45], [1662.87, 456.88], [1661.4, 458.49], [1662.25, 459.27], [1659.12, 462.68], [1658.5, 462.11], [1654.09, 466.92], [1652.38, 465.37], [1653.12, 464.57], [1647.83, 459.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1979.22, 626.71], [1988.0, 618.15], [1999.56, 629.92], [1990.79, 638.48], [1979.22, 626.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2049.19, 690.29], [2058.76, 679.73], [2051.06, 672.8], [2041.49, 683.35], [2049.19, 690.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2085.61, 719.12], [2094.81, 708.53], [2085.85, 700.79], [2076.65, 711.37], [2085.61, 719.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2012.15, 657.24], [2020.63, 647.49], [2030.26, 655.8], [2021.78, 665.55], [2012.15, 657.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1997.98, 644.96], [2006.77, 636.69], [2013.35, 643.63], [2004.56, 651.9], [1997.98, 644.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1974.23, 624.55], [1982.59, 614.57], [1972.0, 605.78], [1963.65, 615.76], [1974.23, 624.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2089.72, 726.56], [2101.7, 713.59], [2107.89, 719.28], [2095.9, 732.24], [2089.72, 726.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2037.17, 679.88], [2045.65, 670.34], [2032.16, 658.44], [2023.68, 667.98], [2037.17, 679.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[2072.05, 709.52], [2079.13, 701.07], [2070.78, 694.13], [2063.71, 702.57], [2072.05, 709.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2058.25, 693.55], [2067.27, 684.12], [2072.05, 688.67], [2060.83, 700.38], [2056.05, 695.83], [2058.25, 693.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1413.62, 322.98], [1420.37, 328.97], [1429.93, 318.26], [1423.19, 312.27], [1413.62, 322.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1425.44, 330.66], [1431.25, 335.66], [1441.09, 324.3], [1435.29, 319.3], [1425.44, 330.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1431.54, 343.09], [1440.81, 349.36], [1449.99, 335.87], [1440.72, 329.6], [1431.54, 343.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1316.72, 295.16], [1317.59, 295.97], [1318.83, 297.11], [1323.75, 301.67], [1335.49, 289.09], [1333.86, 287.58], [1335.0, 286.35], [1331.38, 283.0], [1330.24, 284.23], [1328.46, 282.58], [1316.72, 295.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1281.18, 263.49], [1288.42, 269.92], [1298.63, 258.51], [1297.37, 257.39], [1301.09, 253.24], [1296.77, 249.4], [1296.33, 249.88], [1294.39, 248.15], [1292.21, 250.58], [1291.8, 250.21], [1289.03, 253.32], [1289.72, 253.94], [1287.65, 256.24], [1287.05, 255.72], [1283.26, 259.95], [1283.86, 260.49], [1281.18, 263.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1233.91, 220.7], [1245.13, 209.13], [1253.98, 217.65], [1242.76, 229.21], [1233.91, 220.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1308.72, 288.23], [1316.24, 295.02], [1329.81, 280.12], [1322.29, 273.32], [1308.72, 288.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1271.04, 254.04], [1279.43, 261.59], [1292.51, 247.16], [1284.12, 239.62], [1271.04, 254.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[1299.3, 279.75], [1303.14, 283.24], [1301.56, 284.96], [1302.43, 285.76], [1303.76, 286.97], [1304.6, 287.73], [1319.04, 272.01], [1318.04, 271.09], [1319.29, 269.73], [1314.4, 265.28], [1313.15, 266.65], [1312.15, 265.74], [1299.3, 279.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1263.27, 247.26], [1265.8, 249.6], [1265.46, 249.98], [1269.6, 253.81], [1272.74, 250.44], [1272.92, 250.6], [1277.83, 245.33], [1277.65, 245.16], [1281.82, 240.67], [1275.14, 234.5], [1269.74, 240.3], [1269.18, 239.77], [1265.31, 243.94], [1265.88, 244.46], [1263.27, 247.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1289.51, 271.4], [1292.76, 274.31], [1295.15, 276.44], [1296.63, 277.75], [1307.51, 265.65], [1305.02, 263.45], [1306.46, 261.85], [1302.57, 258.37], [1301.13, 259.97], [1300.39, 259.31], [1289.51, 271.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1252.87, 238.3], [1266.1, 223.97], [1274.06, 231.27], [1260.83, 245.6], [1260.62, 245.4], [1259.18, 246.96], [1256.14, 244.17], [1257.57, 242.61], [1252.87, 238.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-1374.5, -2427.58], [-1338.79, -2428.67], [-1338.41, -2416.72], [-1279.21, -2419.13], [-1276.17, -2377.74], [-1372.16, -2374.41], [-1374.5, -2427.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2793}}, {"shape": {"outer": [[-1172.56, -2569.21], [-1154.01, -2570.03], [-1152.31, -2569.19], [-1153.05, -2567.7], [-1143.57, -2563.05], [-1136.72, -2576.9], [-1134.73, -2575.92], [-1117.28, -2611.22], [-1119.15, -2612.15], [-1115.24, -2620.06], [-1115.67, -2620.27], [-1114.4, -2622.85], [-1126.1, -2628.61], [-1150.11, -2627.06], [-1151.56, -2624.13], [-1157.57, -2627.08], [-1168.77, -2604.44], [-1170.16, -2605.12], [-1171.02, -2603.4], [-1174.03, -2603.22], [-1172.56, -2569.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1666}}, {"shape": {"outer": [[-1044.25, -2581.96], [-1032.31, -2582.48], [-1032.97, -2597.63], [-1034.71, -2597.55], [-1034.75, -2598.52], [-1038.24, -2598.36], [-1038.2, -2597.4], [-1044.9, -2597.11], [-1044.25, -2581.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[-1219.65, -2406.62], [-1221.43, -2403.49], [-1219.77, -2402.56], [-1223.06, -2396.77], [-1213.94, -2391.64], [-1216.57, -2387.02], [-1207.85, -2382.11], [-1200.16, -2395.66], [-1219.65, -2406.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-1525.7, -2024.42], [-1515.8, -2041.46], [-1498.33, -2031.39], [-1508.22, -2014.35], [-1525.7, -2024.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.318, "pop": 159, "jobs": 0}}, {"shape": {"outer": [[-1445.74, -2024.86], [-1436.63, -2019.91], [-1426.83, -2037.79], [-1435.94, -2042.75], [-1445.74, -2024.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.135, "pop": 0, "jobs": 135}}, {"shape": {"outer": [[-1512.69, -2046.73], [-1503.36, -2064.16], [-1486.56, -2055.23], [-1495.89, -2037.81], [-1512.69, -2046.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-1484.26, -1960.59], [-1480.34, -1967.67], [-1483.02, -1969.14], [-1478.21, -1977.84], [-1475.28, -1976.23], [-1476.92, -1973.28], [-1453.27, -1960.3], [-1451.39, -1954.22], [-1454.35, -1948.87], [-1460.04, -1947.28], [-1484.26, -1960.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.307, "pop": 0, "jobs": 307}}, {"shape": {"outer": [[-1467.23, -1990.72], [-1466.77, -1991.57], [-1459.88, -2004.38], [-1445.16, -1996.52], [-1447.63, -1991.94], [-1430.92, -1983.01], [-1435.8, -1973.94], [-1437.65, -1974.93], [-1467.23, -1990.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.364, "pop": 182, "jobs": 0}}, {"shape": {"outer": [[-1439.81, -1896.42], [-1434.33, -1893.43], [-1423.81, -1887.69], [-1408.06, -1916.33], [-1414.38, -1919.79], [-1407.21, -1932.83], [-1405.94, -1932.15], [-1400.88, -1941.34], [-1392.01, -1936.49], [-1385.54, -1948.26], [-1394.28, -1953.03], [-1397.33, -1947.47], [-1403.09, -1950.62], [-1408.4, -1953.52], [-1439.81, -1896.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.713, "pop": 0, "jobs": 713}}, {"shape": {"outer": [[2277.31, 895.34], [2282.76, 890.31], [2292.19, 900.44], [2286.75, 905.48], [2277.31, 895.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2181.71, 805.96], [2190.47, 796.05], [2197.58, 802.3], [2188.83, 812.21], [2181.71, 805.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2139.75, 750.34], [2141.27, 748.51], [2136.75, 744.75], [2132.49, 749.9], [2129.66, 747.55], [2122.71, 755.93], [2132.38, 763.94], [2142.06, 752.25], [2139.75, 750.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2151.83, 782.1], [2160.76, 772.35], [2166.47, 777.55], [2157.54, 787.29], [2151.83, 782.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2114.25, 747.37], [2119.13, 742.26], [2126.64, 749.4], [2121.75, 754.5], [2114.25, 747.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2143.67, 774.17], [2152.61, 764.94], [2158.97, 771.05], [2150.04, 780.28], [2143.67, 774.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2191.31, 817.29], [2201.93, 806.09], [2209.34, 813.06], [2198.71, 824.26], [2191.31, 817.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2135.69, 765.6], [2141.65, 759.11], [2148.72, 765.56], [2142.75, 772.04], [2135.69, 765.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2211.98, 833.24], [2219.02, 826.36], [2221.42, 828.81], [2224.32, 825.97], [2226.95, 828.63], [2217.0, 838.35], [2211.98, 833.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2263.86, 881.37], [2274.58, 870.13], [2282.17, 877.31], [2276.79, 882.96], [2280.15, 886.15], [2274.82, 891.74], [2263.86, 881.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2323.6, 964.17], [2334.09, 953.87], [2340.46, 960.32], [2327.93, 972.6], [2323.98, 968.59], [2326.01, 966.6], [2323.6, 964.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-736.48, -1025.66], [-725.18, -1018.91], [-721.88, -1024.16], [-716.07, -1020.36], [-681.21, -1072.92], [-687.98, -1077.88], [-686.57, -1079.51], [-689.66, -1081.14], [-689.43, -1082.07], [-696.53, -1089.01], [-736.48, -1025.66]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1268, "jobs": 0}}, {"shape": {"outer": [[-653.43, -1211.1], [-651.62, -1212.73], [-652.97, -1213.89], [-658.32, -1218.48], [-660.31, -1216.82], [-662.55, -1217.95], [-666.21, -1212.27], [-668.34, -1213.63], [-674.76, -1217.45], [-702.87, -1172.0], [-707.21, -1175.89], [-727.79, -1194.29], [-707.52, -1209.29], [-720.05, -1225.06], [-721.88, -1224.08], [-723.37, -1225.36], [-729.16, -1219.25], [-732.56, -1221.92], [-740.3, -1214.03], [-738.5, -1211.57], [-745.66, -1206.61], [-743.32, -1203.63], [-748.6, -1198.07], [-751.31, -1199.84], [-755.54, -1194.82], [-753.23, -1193.03], [-754.38, -1191.16], [-750.45, -1188.22], [-752.53, -1186.84], [-746.22, -1179.62], [-743.76, -1181.8], [-715.56, -1156.3], [-716.3, -1154.16], [-709.62, -1148.14], [-711.41, -1145.58], [-699.95, -1139.29], [-659.07, -1204.06], [-653.43, -1211.1]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 2983, "jobs": 0}}, {"shape": {"outer": [[-2298.21, -729.63], [-2290.13, -723.4], [-2284.52, -719.07], [-2294.82, -705.81], [-2293.41, -704.71], [-2295.83, -701.6], [-2299.16, -704.16], [-2298.86, -704.54], [-2307.14, -710.91], [-2308.1, -711.31], [-2311.04, -713.72], [-2309.02, -716.17], [-2308.4, -716.93], [-2308.52, -718.91], [-2309.03, -719.31], [-2301.94, -728.43], [-2300.19, -727.08], [-2298.21, -729.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.248, "pop": 0, "jobs": 248}}, {"shape": {"outer": [[-1308.78, -580.23], [-1314.27, -580.06], [-1319.48, -590.69], [-1320.92, -593.79], [-1317.08, -594.98], [-1315.7, -591.99], [-1312.53, -585.1], [-1294.02, -586.14], [-1294.09, -584.86], [-1308.93, -583.95], [-1308.78, -580.23]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2839.1, -47.99], [-2838.91, -47.69], [-2838.85, -47.32], [-2838.94, -46.98], [-2839.15, -46.68], [-2839.46, -46.49], [-2839.82, -46.44], [-2840.17, -46.52], [-2840.46, -46.73], [-2840.65, -47.04], [-2840.71, -47.4], [-2840.62, -47.75], [-2840.41, -48.05], [-2840.11, -48.23], [-2839.75, -48.29], [-2839.4, -48.21], [-2839.1, -47.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2839.0, -45.73], [-2838.81, -45.42], [-2838.75, -45.07], [-2838.84, -44.72], [-2839.05, -44.43], [-2839.36, -44.24], [-2839.71, -44.18], [-2840.07, -44.26], [-2840.36, -44.48], [-2840.55, -44.78], [-2840.61, -45.14], [-2840.52, -45.49], [-2840.31, -45.78], [-2840.0, -45.97], [-2839.64, -46.02], [-2839.29, -45.94], [-2839.0, -45.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2838.31, -58.71], [-2837.54, -58.0], [-2837.12, -57.04], [-2837.09, -56.01], [-2837.46, -55.03], [-2838.17, -54.28], [-2839.13, -53.85], [-2840.17, -53.82], [-2841.14, -54.19], [-2841.9, -54.9], [-2842.32, -55.85], [-2842.36, -56.89], [-2841.99, -57.86], [-2841.27, -58.61], [-2840.32, -59.04], [-2839.28, -59.07], [-2838.31, -58.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2830.71, -59.07], [-2830.07, -58.12], [-2829.83, -57.01], [-2830.05, -55.89], [-2830.68, -54.94], [-2831.64, -54.3], [-2832.75, -54.07], [-2833.88, -54.29], [-2834.83, -54.92], [-2835.48, -55.86], [-2835.71, -56.98], [-2835.49, -58.1], [-2834.85, -59.05], [-2833.91, -59.69], [-2832.78, -59.92], [-2831.66, -59.7], [-2830.71, -59.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2839.16, -50.24], [-2838.97, -49.93], [-2838.91, -49.58], [-2839.0, -49.22], [-2839.21, -48.92], [-2839.53, -48.74], [-2839.88, -48.68], [-2840.24, -48.76], [-2840.53, -48.98], [-2840.72, -49.28], [-2840.77, -49.65], [-2840.69, -49.99], [-2840.48, -50.29], [-2840.17, -50.48], [-2839.81, -50.53], [-2839.46, -50.45], [-2839.16, -50.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2841.51, -46.54], [-2841.31, -46.22], [-2841.26, -45.86], [-2841.34, -45.52], [-2841.55, -45.22], [-2841.86, -45.04], [-2842.22, -44.98], [-2842.57, -45.06], [-2842.86, -45.27], [-2843.05, -45.58], [-2843.11, -45.93], [-2843.03, -46.29], [-2842.81, -46.58], [-2842.51, -46.77], [-2842.15, -46.83], [-2841.8, -46.74], [-2841.51, -46.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2841.6, -48.69], [-2841.41, -48.38], [-2841.35, -48.02], [-2841.44, -47.67], [-2841.65, -47.38], [-2841.96, -47.19], [-2842.32, -47.13], [-2842.67, -47.21], [-2842.96, -47.43], [-2843.16, -47.73], [-2843.21, -48.09], [-2843.13, -48.44], [-2842.92, -48.74], [-2842.6, -48.93], [-2842.25, -48.98], [-2841.89, -48.9], [-2841.6, -48.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2841.39, -52.66], [-2841.14, -52.27], [-2841.07, -51.82], [-2841.17, -51.36], [-2841.44, -50.98], [-2841.83, -50.74], [-2842.29, -50.66], [-2842.75, -50.77], [-2843.13, -51.03], [-2843.37, -51.43], [-2843.45, -51.88], [-2843.35, -52.33], [-2843.07, -52.71], [-2842.68, -52.96], [-2842.22, -53.03], [-2841.77, -52.93], [-2841.39, -52.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[-2823.63, -36.72], [-2814.62, -36.94], [-2814.82, -45.65], [-2823.84, -45.43], [-2823.63, -36.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2474.64, -249.02], [-2466.1, -249.45], [-2457.92, -249.86], [-2458.0, -253.1], [-2466.19, -252.79], [-2474.78, -252.44], [-2474.64, -249.02]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2093.23, -490.32], [-2094.19, -523.77], [-2100.78, -523.59], [-2122.93, -523.01], [-2122.64, -511.82], [-2121.68, -511.85], [-2121.57, -507.89], [-2119.26, -507.96], [-2118.62, -483.84], [-2115.61, -483.92], [-2115.56, -481.92], [-2108.49, -482.1], [-2108.55, -484.11], [-2102.21, -484.27], [-2102.27, -486.33], [-2095.33, -488.39], [-2095.32, -490.26], [-2093.23, -490.32]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1440, "jobs": 0}}, {"shape": {"outer": [[-1984.36, -360.7], [-1984.51, -366.95], [-1979.47, -367.07], [-1979.53, -369.43], [-1972.64, -369.6], [-1972.59, -367.31], [-1974.61, -367.25], [-1974.45, -360.96], [-1984.36, -360.7]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1531.8, -156.3], [-1532.71, -176.96], [-1532.9, -181.53], [-1535.78, -181.4], [-1536.1, -188.36], [-1536.13, -189.17], [-1539.51, -189.02], [-1539.53, -189.69], [-1559.14, -188.85], [-1558.77, -180.27], [-1571.59, -179.71], [-1571.29, -172.77], [-1597.15, -171.67], [-1597.05, -169.19], [-1596.34, -152.48], [-1580.27, -153.17], [-1580.3, -153.94], [-1575.91, -154.13], [-1557.43, -154.93], [-1557.38, -153.92], [-1538.35, -154.76], [-1538.41, -156.01], [-1531.8, -156.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1079}}, {"shape": {"outer": [[-1318.23, -191.96], [-1320.38, -191.85], [-1321.66, -191.79], [-1321.6, -190.48], [-1328.51, -190.15], [-1333.32, -189.92], [-1335.77, -189.8], [-1335.83, -191.05], [-1337.51, -190.97], [-1338.58, -190.92], [-1339.7, -190.86], [-1340.38, -205.06], [-1339.19, -205.12], [-1329.29, -205.61], [-1321.06, -205.98], [-1277.4, -208.07], [-1277.13, -202.46], [-1276.76, -194.78], [-1276.06, -180.16], [-1273.44, -180.29], [-1272.85, -167.91], [-1274.16, -167.85], [-1275.55, -167.78], [-1275.0, -156.32], [-1278.64, -156.15], [-1278.51, -153.59], [-1305.82, -152.29], [-1305.94, -154.77], [-1308.92, -154.63], [-1316.37, -154.29], [-1316.45, -155.89], [-1317.38, -155.85], [-1317.52, -158.82], [-1318.0, -168.81], [-1318.07, -170.39], [-1318.17, -172.42], [-1317.29, -172.45], [-1318.23, -191.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1659}}, {"shape": {"outer": [[-1904.96, -395.65], [-1905.24, -403.94], [-1890.95, -404.43], [-1890.66, -396.14], [-1904.96, -395.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1862.18, -114.57], [-1858.99, -114.7], [-1859.27, -120.82], [-1862.42, -120.72], [-1862.18, -114.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1839.05, -81.54], [-1835.67, -81.68], [-1836.34, -97.99], [-1839.72, -97.84], [-1839.05, -81.54]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1789.94, -632.23], [-1767.95, -633.07], [-1768.03, -635.23], [-1763.2, -635.42], [-1762.54, -618.13], [-1768.56, -617.9], [-1770.97, -620.43], [-1776.0, -620.29], [-1776.07, -622.95], [-1785.28, -622.69], [-1789.8, -624.11], [-1789.94, -632.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-1805.66, -658.09], [-1797.03, -658.29], [-1797.18, -665.27], [-1796.01, -665.31], [-1796.21, -674.63], [-1800.64, -674.53], [-1800.69, -676.83], [-1806.06, -676.72], [-1805.94, -670.82], [-1807.08, -670.79], [-1806.9, -662.54], [-1805.76, -662.57], [-1805.66, -658.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1902.84, -428.7], [-1891.52, -434.85], [-1892.1, -466.41], [-1892.83, -466.4], [-1892.86, -467.95], [-1893.18, -467.96], [-1893.22, -469.76], [-1894.39, -469.72], [-1894.4, -470.34], [-1906.18, -470.07], [-1906.11, -467.42], [-1908.0, -467.38], [-1907.84, -460.83], [-1905.98, -460.88], [-1905.39, -436.7], [-1907.23, -436.65], [-1907.15, -433.2], [-1905.32, -433.25], [-1902.84, -428.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.44, "pop": 220, "jobs": 0}}, {"shape": {"outer": [[-1776.0, -668.57], [-1775.68, -659.0], [-1763.55, -659.4], [-1763.88, -668.99], [-1776.0, -668.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.074, "pop": 0, "jobs": 74}}, {"shape": {"outer": [[-1671.29, -472.2], [-1671.6, -479.49], [-1663.11, -479.85], [-1662.8, -472.56], [-1664.68, -472.49], [-1664.53, -468.9], [-1667.95, -468.76], [-1668.11, -472.33], [-1671.29, -472.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2610.11, -262.41], [-2599.26, -262.76], [-2599.56, -272.05], [-2601.16, -273.47], [-2601.28, -277.18], [-2610.58, -276.88], [-2610.48, -273.52], [-2613.33, -273.43], [-2613.08, -265.47], [-2610.21, -265.55], [-2610.11, -262.41]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[-2700.79, -213.8], [-2701.14, -223.95], [-2679.52, -224.7], [-2679.18, -214.55], [-2689.88, -214.18], [-2689.8, -211.53], [-2691.82, -211.46], [-2691.66, -206.86], [-2695.16, -206.74], [-2695.32, -211.35], [-2697.16, -211.28], [-2697.25, -213.93], [-2700.79, -213.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.163, "pop": 0, "jobs": 163}}, {"shape": {"outer": [[-2892.62, -177.82], [-2902.5, -179.32], [-2900.04, -195.32], [-2890.16, -193.83], [-2892.62, -177.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2870.14, -173.84], [-2879.19, -175.17], [-2876.44, -193.76], [-2867.39, -192.43], [-2870.14, -173.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.11, "pop": 0, "jobs": 110}}, {"shape": {"outer": [[-2881.16, -176.47], [-2890.42, -177.98], [-2887.67, -194.83], [-2878.4, -193.33], [-2881.16, -176.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2875.53, -136.5], [-2884.36, -137.85], [-2881.99, -153.16], [-2873.16, -151.81], [-2875.53, -136.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2574.59, -245.61], [-2574.9, -254.91], [-2558.64, -255.44], [-2558.34, -246.15], [-2574.59, -245.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2654.58, -244.22], [-2654.92, -254.03], [-2643.75, -254.4], [-2643.42, -245.08], [-2645.65, -245.0], [-2645.64, -244.52], [-2654.58, -244.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2575.25, -273.77], [-2575.61, -283.55], [-2559.83, -284.14], [-2559.74, -281.45], [-2557.51, -281.54], [-2557.24, -274.44], [-2575.25, -273.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2658.69, -276.47], [-2658.3, -263.79], [-2656.88, -263.83], [-2656.82, -262.14], [-2646.89, -262.45], [-2646.95, -264.14], [-2642.14, -264.27], [-2642.53, -276.97], [-2658.69, -276.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-2655.98, -225.45], [-2656.4, -236.39], [-2643.26, -236.84], [-2643.24, -236.42], [-2641.07, -236.51], [-2640.64, -226.49], [-2642.74, -226.4], [-2642.72, -225.96], [-2655.98, -225.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2105.45, -787.11], [-2106.64, -818.06], [-2104.45, -818.14], [-2104.9, -830.1], [-2094.53, -830.5], [-2093.77, -810.66], [-2098.94, -810.46], [-2098.38, -796.01], [-2090.02, -796.33], [-2089.69, -787.72], [-2105.45, -787.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.298, "pop": 0, "jobs": 298}}, {"shape": {"outer": [[-2046.07, -766.66], [-2057.29, -766.48], [-2057.28, -765.93], [-2068.42, -765.76], [-2068.41, -765.26], [-2086.14, -764.98], [-2086.32, -776.36], [-2068.88, -776.64], [-2068.9, -777.23], [-2058.34, -777.4], [-2058.35, -777.93], [-2046.25, -778.12], [-2046.07, -766.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.368, "pop": 184, "jobs": 0}}, {"shape": {"outer": [[-2079.28, -717.6], [-2079.4, -721.99], [-2082.87, -721.9], [-2082.89, -723.05], [-2086.41, -722.96], [-2087.26, -755.46], [-2079.35, -755.66], [-2079.3, -754.21], [-2071.56, -754.41], [-2071.01, -733.07], [-2054.13, -733.5], [-2053.94, -726.05], [-2052.53, -726.09], [-2052.32, -718.31], [-2079.28, -717.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.654, "pop": 327, "jobs": 0}}, {"shape": {"outer": [[-2058.06, -832.12], [-2058.0, -830.29], [-2057.26, -808.77], [-2057.17, -806.27], [-2031.8, -807.15], [-2032.71, -833.0], [-2058.06, -832.12]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.184, "pop": 0, "jobs": 184}}, {"shape": {"outer": [[-2124.6, -730.33], [-2124.97, -745.57], [-2091.92, -746.38], [-2091.55, -731.13], [-2124.6, -730.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[-2079.11, -780.66], [-2067.68, -780.89], [-2068.03, -798.19], [-2079.46, -797.96], [-2079.11, -780.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2210.36, -772.36], [-2210.04, -762.36], [-2209.96, -759.9], [-2201.17, -760.18], [-2174.61, -761.03], [-2175.0, -773.47], [-2210.36, -772.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[-1985.25, -799.89], [-1984.91, -789.38], [-1967.91, -789.93], [-1968.25, -800.45], [-1985.25, -799.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2126.51, -766.37], [-2126.85, -781.66], [-2092.56, -782.43], [-2092.22, -767.13], [-2126.51, -766.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.42, "pop": 210, "jobs": 0}}, {"shape": {"outer": [[-2009.58, -769.75], [-2010.13, -785.34], [-1986.14, -786.17], [-1977.61, -775.58], [-1981.92, -771.8], [-1986.64, -770.55], [-2009.58, -769.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.283, "pop": 0, "jobs": 283}}, {"shape": {"outer": [[-2034.64, -717.77], [-2041.97, -717.58], [-2041.99, -718.67], [-2048.56, -718.5], [-2049.39, -752.57], [-2035.5, -752.91], [-2034.64, -717.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.386, "pop": 193, "jobs": 0}}, {"shape": {"outer": [[-2145.73, -800.42], [-2146.57, -822.11], [-2142.4, -827.3], [-2107.67, -828.56], [-2106.98, -809.5], [-2111.5, -809.34], [-2125.67, -808.82], [-2126.37, -807.84], [-2127.06, -806.87], [-2126.84, -801.1], [-2145.73, -800.42]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.926, "pop": 463, "jobs": 0}}, {"shape": {"outer": [[-2128.41, -737.89], [-2134.71, -737.77], [-2134.69, -736.75], [-2142.27, -736.6], [-2142.73, -761.06], [-2135.29, -761.19], [-2135.27, -759.83], [-2128.82, -759.95], [-2128.41, -737.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-2043.55, -768.52], [-2031.92, -768.85], [-2032.96, -805.95], [-2057.02, -805.27], [-2056.84, -798.91], [-2046.29, -799.21], [-2046.34, -801.25], [-2044.47, -801.3], [-2043.55, -768.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}, {"shape": {"outer": [[532.71, 1029.08], [515.77, 1013.81], [525.37, 1003.23], [535.87, 1012.7], [539.59, 1008.6], [529.17, 999.2], [538.78, 988.62], [555.65, 1003.82], [532.71, 1029.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.558, "pop": 279, "jobs": 0}}, {"shape": {"outer": [[547.41, 1042.28], [536.97, 1032.89], [545.02, 1024.01], [552.24, 1016.03], [562.68, 1025.41], [547.41, 1042.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[561.7, 1055.17], [551.66, 1046.04], [566.98, 1029.33], [577.01, 1038.46], [569.56, 1046.6], [561.7, 1055.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[578.88, 1036.73], [586.57, 1028.34], [594.22, 1020.0], [583.99, 1010.69], [568.65, 1027.42], [578.88, 1036.73]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.33, "pop": 165, "jobs": 0}}, {"shape": {"outer": [[595.11, 1018.56], [602.89, 1010.07], [609.84, 1002.5], [610.2, 1002.11], [600.32, 993.12], [585.23, 1009.57], [595.11, 1018.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[611.41, 1033.86], [627.02, 1016.85], [626.01, 1015.93], [616.83, 1007.57], [616.27, 1008.18], [613.87, 1010.8], [615.54, 1012.32], [610.9, 1017.37], [606.55, 1022.13], [604.54, 1020.3], [600.88, 1024.28], [611.41, 1033.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[594.88, 1052.29], [610.57, 1035.17], [599.93, 1025.5], [596.83, 1028.88], [598.71, 1030.6], [594.32, 1035.39], [590.07, 1040.02], [588.02, 1038.15], [584.07, 1042.45], [594.88, 1052.29]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.318, "pop": 159, "jobs": 0}}, {"shape": {"outer": [[578.23, 1070.16], [593.69, 1053.29], [583.47, 1043.99], [580.6, 1047.12], [582.27, 1048.65], [577.51, 1053.84], [573.35, 1058.38], [571.5, 1056.69], [567.83, 1060.69], [578.23, 1070.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[626.84, 1042.54], [642.63, 1025.86], [631.88, 1015.75], [629.01, 1018.78], [616.09, 1032.43], [626.84, 1042.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[580.68, 1005.83], [595.86, 989.41], [585.41, 979.83], [570.23, 996.24], [580.68, 1005.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[-2494.77, 195.49], [-2494.15, 200.21], [-2514.94, 202.58], [-2515.4, 197.85], [-2494.77, 195.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2523.46, 168.67], [-2518.88, 168.13], [-2518.45, 171.81], [-2522.94, 172.51], [-2523.46, 168.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-276.51, -29.29], [-250.86, -57.88], [-224.53, -34.44], [-245.59, -11.03], [-248.32, -7.98], [-250.25, -5.84], [-276.51, -29.29]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 2843, "jobs": 0}}, {"shape": {"outer": [[-274.68, -79.1], [-269.71, -74.68], [-294.78, -46.77], [-299.73, -51.23], [-274.68, -79.1]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.14, "pop": 0, "jobs": 140}}, {"shape": {"outer": [[-299.73, -51.23], [-310.37, -60.72], [-310.75, -60.29], [-325.52, -73.47], [-300.08, -101.77], [-274.68, -79.1], [-299.73, -51.23]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3604}}, {"shape": {"outer": [[-269.71, -74.68], [-250.86, -57.88], [-276.51, -29.29], [-295.38, -46.09], [-294.78, -46.77], [-269.71, -74.68]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.815, "pop": 0, "jobs": 815}}, {"shape": {"outer": [[-405.0, 225.3], [-397.05, 216.61], [-382.1, 230.19], [-390.04, 238.89], [-405.0, 225.3]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.133, "pop": 0, "jobs": 133}}, {"shape": {"outer": [[-366.32, 271.63], [-363.71, 268.72], [-364.14, 268.35], [-357.49, 260.94], [-356.78, 261.58], [-355.66, 260.33], [-353.14, 262.58], [-353.75, 263.25], [-350.62, 266.04], [-353.55, 269.3], [-353.04, 269.75], [-357.31, 274.51], [-357.82, 274.06], [-360.39, 276.92], [-361.42, 276.01], [-362.74, 277.48], [-366.57, 274.06], [-365.25, 272.59], [-366.32, 271.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-352.59, 172.05], [-330.72, 191.59], [-332.83, 193.93], [-313.08, 211.6], [-286.31, 181.87], [-306.42, 163.89], [-307.96, 165.6], [-329.46, 146.38], [-352.59, 172.05]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1162}}, {"shape": {"outer": [[-354.05, 285.92], [-352.39, 284.13], [-352.02, 284.47], [-342.15, 273.79], [-348.34, 268.1], [-358.14, 278.69], [-356.41, 280.27], [-358.14, 282.16], [-354.05, 285.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-341.29, 276.12], [-334.75, 281.33], [-333.22, 281.28], [-331.19, 283.51], [-330.92, 285.46], [-330.89, 286.5], [-336.37, 293.34], [-340.97, 289.28], [-342.47, 290.53], [-349.3, 284.67], [-341.29, 276.12]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.143, "pop": 0, "jobs": 143}}, {"shape": {"outer": [[-361.86, 319.6], [-353.94, 310.87], [-365.29, 300.65], [-367.77, 303.38], [-369.56, 301.77], [-375.0, 307.77], [-361.86, 319.6]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-368.58, 323.62], [-369.57, 322.77], [-368.89, 322.0], [-378.11, 313.94], [-378.79, 314.71], [-380.91, 312.86], [-383.87, 316.22], [-386.97, 313.51], [-391.4, 318.55], [-387.27, 322.17], [-389.08, 324.23], [-385.17, 327.64], [-386.55, 329.2], [-379.3, 335.54], [-374.99, 330.64], [-373.1, 332.29], [-370.39, 329.2], [-372.14, 327.67], [-368.58, 323.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-1566.42, -837.23], [-1557.75, -837.56], [-1558.4, -854.53], [-1567.06, -854.2], [-1566.42, -837.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.094, "pop": 0, "jobs": 94}}, {"shape": {"outer": [[-1579.3, -829.51], [-1569.24, -829.84], [-1570.01, -853.77], [-1580.07, -853.43], [-1579.77, -844.18], [-1579.3, -829.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.154, "pop": 0, "jobs": 154}}, {"shape": {"outer": [[-1616.7, -804.06], [-1617.72, -828.21], [-1616.97, -828.25], [-1617.59, -830.34], [-1611.88, -831.4], [-1607.0, -832.3], [-1606.12, -828.7], [-1592.38, -829.28], [-1582.08, -829.72], [-1581.05, -805.57], [-1616.7, -804.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.572, "pop": 0, "jobs": 572}}, {"shape": {"outer": [[-1592.38, -829.28], [-1592.85, -843.73], [-1582.44, -844.13], [-1582.08, -829.72], [-1592.38, -829.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.096, "pop": 0, "jobs": 96}}, {"shape": {"outer": [[1630.07, 1568.87], [1639.56, 1552.88], [1660.51, 1565.24], [1650.89, 1581.43], [1645.28, 1578.13], [1639.89, 1587.2], [1632.31, 1582.74], [1636.47, 1575.73], [1631.31, 1572.7], [1632.67, 1570.41], [1630.07, 1568.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.361, "pop": 0, "jobs": 361}}, {"shape": {"outer": [[1509.99, 1588.06], [1537.44, 1612.71], [1533.76, 1616.77], [1542.78, 1624.87], [1545.1, 1622.31], [1556.2, 1632.28], [1557.21, 1631.16], [1567.35, 1640.27], [1581.57, 1624.55], [1592.21, 1612.79], [1540.1, 1566.0], [1521.71, 1586.32], [1516.11, 1581.29], [1509.99, 1588.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1748}}, {"shape": {"outer": [[1496.68, 1576.91], [1502.92, 1582.54], [1527.79, 1555.12], [1521.55, 1549.5], [1496.68, 1576.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[1454.88, 1567.47], [1461.44, 1573.41], [1446.79, 1589.49], [1440.22, 1583.55], [1454.88, 1567.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1631.22, 1490.35], [1647.25, 1504.16], [1653.45, 1509.5], [1641.74, 1522.25], [1645.4, 1525.42], [1633.5, 1538.39], [1622.7, 1499.96], [1631.22, 1490.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.466, "pop": 0, "jobs": 466}}, {"shape": {"outer": [[1396.69, 1536.48], [1414.08, 1552.32], [1419.47, 1546.44], [1436.4, 1561.86], [1484.09, 1509.85], [1455.61, 1483.92], [1453.94, 1485.74], [1448.09, 1480.42], [1396.69, 1536.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2204}}, {"shape": {"outer": [[1461.58, 1467.84], [1548.74, 1547.94], [1560.09, 1536.81], [1545.16, 1522.35], [1581.61, 1479.95], [1580.68, 1469.17], [1576.28, 1465.21], [1574.53, 1448.94], [1571.83, 1433.14], [1558.17, 1421.18], [1534.56, 1400.49], [1527.64, 1394.43], [1513.36, 1410.29], [1498.02, 1427.34], [1478.18, 1449.4], [1461.58, 1467.84]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5337}}, {"shape": {"outer": [[1615.61, 1370.69], [1627.22, 1366.97], [1657.0, 1394.17], [1670.97, 1379.07], [1689.88, 1395.77], [1685.8, 1399.99], [1691.88, 1405.23], [1681.64, 1416.32], [1692.45, 1425.53], [1661.17, 1460.06], [1621.89, 1423.84], [1615.61, 1370.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2684}}, {"shape": {"outer": [[1314.47, 982.66], [1354.28, 938.85], [1375.84, 958.3], [1372.21, 962.3], [1422.45, 1007.61], [1432.29, 996.79], [1455.56, 1017.77], [1445.73, 1028.6], [1481.11, 1060.52], [1457.06, 1086.99], [1426.45, 1059.38], [1414.31, 1072.74], [1396.96, 1057.09], [1323.43, 990.75], [1314.47, 982.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5968}}, {"shape": {"outer": [[1714.16, 1407.07], [1701.18, 1421.08], [1729.98, 1447.59], [1728.13, 1449.59], [1729.35, 1450.72], [1727.55, 1452.66], [1739.01, 1463.22], [1740.32, 1461.8], [1748.29, 1469.12], [1750.58, 1466.65], [1754.77, 1470.51], [1762.31, 1462.38], [1767.8, 1456.45], [1729.22, 1420.92], [1714.16, 1407.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.972, "pop": 0, "jobs": 972}}, {"shape": {"outer": [[1711.49, 1404.61], [1728.83, 1385.9], [1749.39, 1404.82], [1748.25, 1406.04], [1749.52, 1407.2], [1746.71, 1410.24], [1745.12, 1408.77], [1742.83, 1411.25], [1744.07, 1412.39], [1741.37, 1415.31], [1737.62, 1411.86], [1729.22, 1420.92], [1714.16, 1407.07], [1711.49, 1404.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.433, "pop": 0, "jobs": 433}}, {"shape": {"outer": [[1404.57, 1229.05], [1521.66, 1334.28], [1522.59, 1332.42], [1542.32, 1311.16], [1500.3, 1272.44], [1514.64, 1256.99], [1521.66, 1263.46], [1544.48, 1238.86], [1540.21, 1234.92], [1544.21, 1230.17], [1538.03, 1224.47], [1542.74, 1219.41], [1530.05, 1207.7], [1542.4, 1194.39], [1528.15, 1181.96], [1526.2, 1174.08], [1509.12, 1158.57], [1522.18, 1144.22], [1499.47, 1123.95], [1419.62, 1212.79], [1410.1, 1223.45], [1404.57, 1229.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 5742, "jobs": 0}}, {"shape": {"outer": [[1389.05, 1204.99], [1408.94, 1222.44], [1410.1, 1223.45], [1419.62, 1212.79], [1418.3, 1211.61], [1403.24, 1198.25], [1398.79, 1194.23], [1389.05, 1204.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[1364.94, 1181.39], [1389.05, 1204.99], [1398.79, 1194.23], [1374.3, 1171.6], [1364.94, 1181.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.301, "pop": 0, "jobs": 301}}, {"shape": {"outer": [[1367.28, 1089.98], [1388.95, 1111.06], [1357.38, 1145.71], [1341.92, 1129.9], [1335.76, 1124.57], [1367.28, 1089.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.901, "pop": 0, "jobs": 901}}, {"shape": {"outer": [[1414.31, 1072.74], [1466.78, 1120.78], [1479.04, 1106.46], [1457.06, 1086.99], [1426.45, 1059.38], [1414.31, 1072.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.833, "pop": 0, "jobs": 833}}, {"shape": {"outer": [[1314.91, 1002.7], [1387.21, 1068.09], [1367.28, 1089.98], [1335.76, 1124.57], [1323.22, 1138.34], [1320.44, 1141.4], [1249.54, 1076.03], [1310.31, 1007.74], [1314.91, 1002.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6127}}, {"shape": {"outer": [[1335.76, 1124.57], [1323.22, 1138.34], [1328.62, 1143.48], [1325.91, 1146.44], [1364.94, 1181.39], [1374.3, 1171.6], [1377.01, 1168.39], [1355.1, 1147.78], [1338.84, 1132.87], [1341.92, 1129.9], [1335.76, 1124.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.707, "pop": 0, "jobs": 707}}, {"shape": {"outer": [[-234.65, 262.95], [-232.46, 260.61], [-233.63, 259.53], [-233.12, 258.98], [-235.91, 256.43], [-228.79, 248.78], [-228.62, 248.94], [-223.49, 243.44], [-217.28, 249.17], [-222.37, 254.65], [-221.3, 255.64], [-229.2, 264.14], [-229.69, 263.7], [-231.61, 265.75], [-234.65, 262.95]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-122.21, 399.46], [-121.09, 398.31], [-125.13, 394.44], [-112.46, 381.3], [-100.56, 392.69], [-114.36, 406.98], [-122.21, 399.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[-71.94, 404.01], [-60.02, 414.85], [-73.2, 429.24], [-69.8, 432.34], [-74.25, 437.2], [-74.03, 437.39], [-64.4, 446.14], [-62.53, 444.1], [-63.05, 443.62], [-56.93, 436.93], [-55.93, 437.84], [-32.78, 412.56], [-58.42, 389.26], [-63.74, 395.06], [-71.94, 404.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.906, "pop": 453, "jobs": 0}}, {"shape": {"outer": [[1418.66, 1293.86], [1462.38, 1332.46], [1431.58, 1366.08], [1389.46, 1328.12], [1418.66, 1293.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1042, "jobs": 0}}, {"shape": {"outer": [[1741.73, 1261.51], [1726.55, 1277.86], [1747.44, 1297.13], [1762.63, 1280.77], [1741.73, 1261.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.406, "pop": 0, "jobs": 406}}, {"shape": {"outer": [[1690.72, 1214.03], [1709.43, 1230.99], [1694.56, 1247.27], [1675.86, 1230.31], [1690.72, 1214.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.356, "pop": 0, "jobs": 356}}, {"shape": {"outer": [[1490.39, 1379.28], [1501.69, 1390.41], [1509.73, 1381.22], [1498.06, 1370.88], [1490.39, 1379.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.119, "pop": 0, "jobs": 119}}, {"shape": {"outer": [[1718.98, 1256.08], [1727.6, 1263.9], [1735.81, 1254.92], [1727.19, 1247.1], [1718.98, 1256.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1674.22, 1197.85], [1642.62, 1170.11], [1628.22, 1186.4], [1645.48, 1201.54], [1659.82, 1214.13], [1664.24, 1209.14], [1674.22, 1197.85]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.585, "pop": 0, "jobs": 585}}, {"shape": {"outer": [[1642.62, 1170.11], [1610.78, 1142.15], [1596.38, 1158.44], [1619.16, 1178.44], [1628.22, 1186.4], [1642.62, 1170.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.59, "pop": 0, "jobs": 590}}, {"shape": {"outer": [[1709.43, 1230.99], [1727.19, 1247.1], [1718.98, 1256.08], [1712.31, 1263.37], [1694.56, 1247.27], [1709.43, 1230.99]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.338, "pop": 0, "jobs": 338}}, {"shape": {"outer": [[1610.95, 1192.33], [1596.51, 1208.68], [1635.3, 1242.72], [1649.74, 1226.38], [1634.98, 1213.42], [1610.95, 1192.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.72, "pop": 0, "jobs": 720}}, {"shape": {"outer": [[1608.66, 1190.31], [1619.16, 1178.44], [1628.22, 1186.4], [1645.48, 1201.54], [1634.98, 1213.42], [1610.95, 1192.33], [1608.66, 1190.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.355, "pop": 0, "jobs": 355}}, {"shape": {"outer": [[1469.63, 1363.95], [1479.05, 1353.63], [1498.06, 1370.88], [1490.39, 1379.28], [1476.67, 1366.83], [1474.92, 1368.74], [1469.63, 1363.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.199, "pop": 0, "jobs": 199}}, {"shape": {"outer": [[1685.16, 1279.71], [1691.1, 1285.12], [1692.29, 1283.83], [1701.53, 1292.28], [1709.12, 1284.04], [1696.08, 1272.13], [1691.67, 1272.23], [1685.16, 1279.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[1310.31, 1007.74], [1236.8, 942.89], [1217.26, 925.26], [1177.07, 927.65], [1174.77, 884.06], [1135.88, 926.68], [1138.1, 975.62], [1249.54, 1076.03], [1310.31, 1007.74]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4276}}, {"shape": {"outer": [[1665.81, 1296.52], [1669.77, 1300.05], [1667.62, 1302.45], [1687.98, 1320.66], [1700.47, 1306.79], [1684.91, 1292.87], [1686.44, 1291.17], [1677.69, 1283.33], [1665.81, 1296.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.396, "pop": 0, "jobs": 396}}, {"shape": {"outer": [[1799.98, 1411.46], [1813.05, 1411.59], [1815.43, 1409.6], [1817.88, 1412.52], [1820.79, 1410.09], [1822.16, 1411.73], [1827.51, 1407.25], [1825.88, 1405.32], [1827.98, 1403.56], [1829.49, 1405.34], [1834.94, 1400.77], [1833.3, 1398.83], [1835.36, 1397.09], [1836.84, 1398.86], [1843.63, 1393.18], [1842.31, 1391.61], [1845.95, 1388.55], [1847.19, 1390.01], [1854.47, 1383.92], [1853.01, 1382.18], [1856.82, 1379.0], [1851.07, 1372.16], [1847.94, 1374.78], [1840.13, 1365.51], [1831.83, 1372.44], [1833.23, 1374.1], [1829.31, 1377.37], [1828.14, 1375.99], [1817.51, 1384.87], [1818.94, 1386.56], [1817.15, 1388.06], [1815.79, 1386.46], [1811.83, 1389.78], [1813.4, 1391.66], [1811.47, 1393.28], [1810.24, 1391.81], [1807.39, 1391.7], [1803.52, 1391.56], [1802.37, 1392.79], [1800.38, 1390.95], [1802.01, 1389.22], [1798.96, 1386.38], [1797.34, 1388.12], [1795.6, 1386.5], [1796.9, 1385.11], [1791.36, 1379.96], [1789.99, 1381.42], [1785.67, 1377.41], [1787.0, 1375.98], [1784.04, 1373.23], [1782.63, 1374.75], [1780.7, 1372.95], [1781.99, 1371.57], [1776.76, 1366.72], [1775.18, 1368.41], [1772.5, 1365.92], [1771.22, 1364.74], [1772.65, 1363.19], [1766.72, 1357.68], [1764.51, 1360.03], [1763.04, 1358.67], [1756.96, 1365.18], [1752.59, 1361.14], [1746.62, 1367.53], [1749.91, 1370.58], [1748.44, 1372.16], [1755.64, 1378.82], [1757.02, 1377.33], [1760.51, 1380.56], [1759.13, 1382.04], [1765.72, 1388.14], [1767.17, 1386.58], [1768.87, 1388.15], [1767.45, 1389.67], [1772.75, 1394.59], [1774.39, 1392.84], [1776.5, 1394.8], [1774.75, 1396.67], [1780.12, 1401.65], [1781.81, 1399.84], [1786.25, 1403.96], [1784.66, 1405.66], [1791.05, 1411.59], [1792.57, 1409.96], [1795.01, 1412.23], [1797.71, 1409.35], [1799.98, 1411.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1025, "jobs": 0}}, {"shape": {"outer": [[-73.36, 457.55], [-77.57, 453.72], [-76.1, 452.1], [-77.4, 450.91], [-74.65, 447.91], [-77.73, 445.1], [-75.88, 443.07], [-77.71, 441.4], [-74.03, 437.39], [-64.4, 446.14], [-63.6, 446.88], [-73.36, 457.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-47.13, 487.81], [-24.97, 463.25], [5.42, 490.46], [-16.74, 515.03], [-47.13, 487.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 540, "jobs": 0}}, {"shape": {"outer": [[-58.07, 491.04], [-53.84, 486.45], [-54.73, 485.64], [-48.72, 479.12], [-47.93, 479.84], [-43.78, 475.33], [-44.57, 474.61], [-42.49, 472.34], [-41.84, 472.93], [-37.68, 468.42], [-38.34, 467.83], [-33.54, 462.63], [-32.95, 463.18], [-28.78, 458.65], [-29.38, 458.11], [-20.79, 448.77], [-21.01, 442.5], [-18.99, 442.51], [-19.01, 448.24], [-14.84, 452.05], [-15.78, 453.05], [-12.86, 455.72], [-13.36, 456.25], [-8.59, 460.61], [-8.1, 460.07], [-2.43, 465.24], [-3.61, 466.52], [1.11, 470.83], [1.58, 470.33], [12.24, 480.08], [23.32, 468.05], [13.31, 458.9], [13.72, 458.45], [9.05, 454.18], [8.64, 454.63], [6.7, 452.86], [7.41, 452.08], [4.86, 449.74], [5.3, 449.26], [1.13, 445.45], [0.68, 445.93], [-3.06, 442.51], [-2.13, 441.49], [-4.83, 439.03], [-4.51, 438.68], [-9.22, 434.37], [-9.54, 434.73], [-14.63, 430.07], [-13.32, 428.65], [-15.59, 426.58], [-15.95, 426.98], [-18.66, 424.51], [-20.1, 426.08], [-21.15, 425.13], [-24.56, 428.84], [-25.46, 428.02], [-27.39, 430.12], [-26.92, 430.55], [-29.03, 432.83], [-29.22, 432.66], [-33.37, 437.17], [-33.16, 437.35], [-37.39, 441.95], [-37.6, 441.76], [-41.84, 446.37], [-41.51, 446.67], [-49.88, 455.76], [-50.21, 455.45], [-54.52, 460.13], [-54.12, 460.5], [-67.05, 474.54], [-67.45, 474.17], [-71.49, 478.57], [-69.29, 480.57], [-69.07, 480.34], [-59.89, 488.73], [-60.21, 489.08], [-58.07, 491.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 813, "jobs": 0}}, {"shape": {"outer": [[-3.48, 545.51], [9.03, 531.84], [2.08, 525.52], [-8.65, 537.25], [-8.42, 537.45], [-10.21, 539.4], [-3.48, 545.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2.63, 553.42], [14.18, 540.63], [8.61, 535.64], [4.59, 540.09], [5.67, 541.05], [-1.02, 548.45], [0.12, 549.48], [-0.73, 550.41], [2.63, 553.42]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[5.3, 523.44], [9.57, 518.55], [11.95, 520.62], [12.69, 519.77], [22.14, 527.95], [21.7, 528.46], [24.01, 530.45], [20.26, 534.74], [19.66, 534.23], [18.92, 535.06], [19.61, 535.65], [18.67, 536.72], [15.93, 534.34], [15.6, 534.73], [8.81, 528.84], [9.1, 528.51], [6.74, 526.46], [7.61, 525.46], [5.3, 523.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[29.34, 530.13], [33.17, 525.91], [30.92, 523.88], [34.05, 520.42], [23.34, 510.78], [23.0, 511.15], [20.8, 509.18], [16.52, 513.9], [17.89, 515.15], [16.12, 517.11], [24.77, 524.9], [24.22, 525.51], [29.34, 530.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[45.2, 513.17], [43.51, 511.63], [43.75, 511.37], [32.5, 501.07], [32.1, 501.51], [30.32, 499.88], [25.63, 504.97], [34.79, 513.36], [35.1, 513.03], [40.65, 518.1], [45.2, 513.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[47.64, 430.69], [48.36, 431.36], [49.56, 430.07], [52.06, 432.36], [50.86, 433.65], [53.17, 435.77], [42.01, 447.81], [40.83, 446.72], [39.86, 447.78], [35.97, 444.2], [36.94, 443.15], [36.49, 442.73], [47.64, 430.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[29.18, 435.36], [40.89, 422.8], [47.36, 428.8], [35.65, 441.35], [35.38, 441.11], [34.29, 442.27], [31.16, 439.38], [32.26, 438.21], [29.18, 435.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[19.72, 430.2], [33.22, 415.1], [36.12, 417.68], [36.78, 416.93], [39.47, 419.31], [38.79, 420.05], [40.83, 421.86], [28.81, 435.3], [25.93, 432.75], [24.46, 434.4], [19.72, 430.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[17.89, 429.99], [12.37, 424.86], [27.79, 408.38], [31.71, 412.02], [28.92, 415.0], [30.1, 416.1], [28.82, 417.46], [29.24, 417.85], [17.89, 429.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[6.15, 414.74], [17.82, 402.29], [24.23, 408.26], [12.56, 420.7], [6.15, 414.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[5.95, 414.47], [-0.08, 408.86], [10.44, 397.63], [16.47, 403.25], [5.95, 414.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-151.86, 274.75], [-139.52, 260.77], [-132.58, 266.84], [-143.65, 279.38], [-146.88, 276.56], [-148.15, 278.01], [-151.86, 274.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-171.33, 253.21], [-163.9, 245.32], [-162.56, 246.58], [-156.99, 240.68], [-153.36, 244.08], [-155.82, 246.69], [-155.26, 247.22], [-165.79, 258.4], [-169.35, 255.07], [-169.89, 255.66], [-171.41, 254.24], [-170.85, 253.65], [-171.33, 253.21]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-212.96, 288.0], [-206.15, 280.92], [-207.45, 279.68], [-201.69, 273.69], [-193.03, 281.97], [-198.56, 287.72], [-199.51, 286.81], [-206.55, 294.13], [-212.96, 288.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-194.82, 298.01], [-191.03, 293.83], [-192.26, 292.72], [-184.2, 283.85], [-183.75, 284.26], [-182.12, 282.47], [-175.04, 288.86], [-184.63, 299.39], [-187.07, 297.18], [-190.98, 301.49], [-194.82, 298.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-219.97, 270.78], [-225.67, 265.76], [-222.93, 262.68], [-223.15, 262.49], [-214.07, 252.26], [-212.7, 253.48], [-211.14, 251.72], [-207.48, 254.95], [-209.06, 256.72], [-208.18, 257.49], [-211.32, 261.03], [-210.68, 261.59], [-213.92, 265.24], [-214.55, 264.68], [-219.97, 270.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-186.29, 314.02], [-169.41, 295.53], [-159.93, 304.13], [-176.8, 322.61], [-186.29, 314.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-149.27, 313.97], [-157.01, 307.04], [-164.84, 315.72], [-163.09, 317.3], [-167.66, 322.36], [-161.67, 327.73], [-157.22, 322.79], [-156.51, 323.42], [-151.9, 318.31], [-152.61, 317.68], [-149.27, 313.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-288.91, 357.61], [-289.74, 358.54], [-292.83, 355.78], [-291.71, 354.52], [-293.3, 353.12], [-287.2, 346.3], [-291.17, 342.77], [-288.49, 339.78], [-288.32, 338.43], [-287.33, 337.39], [-285.8, 336.79], [-283.54, 334.27], [-281.83, 335.78], [-279.86, 333.57], [-271.93, 340.61], [-278.56, 348.0], [-277.88, 348.61], [-285.49, 357.1], [-286.76, 355.97], [-288.53, 357.95], [-288.91, 357.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-331.4, 332.15], [-326.32, 326.38], [-324.83, 327.67], [-318.19, 320.13], [-306.3, 330.53], [-314.31, 339.63], [-315.7, 338.41], [-319.42, 342.63], [-331.4, 332.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-319.52, 343.72], [-328.88, 353.77], [-343.32, 340.43], [-333.96, 330.37], [-319.52, 343.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-337.76, 368.47], [-330.0, 359.72], [-330.45, 359.33], [-329.97, 358.79], [-334.06, 355.2], [-333.23, 354.26], [-342.35, 346.25], [-343.26, 347.28], [-346.53, 344.4], [-351.55, 350.08], [-351.96, 349.71], [-357.11, 355.54], [-347.13, 364.33], [-345.09, 362.02], [-337.76, 368.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[-287.27, 388.27], [-301.79, 403.64], [-304.92, 400.7], [-305.34, 401.15], [-306.26, 400.29], [-307.46, 401.54], [-313.43, 395.94], [-312.23, 394.68], [-312.58, 394.35], [-298.07, 379.01], [-295.8, 381.15], [-292.77, 377.94], [-288.28, 382.16], [-288.67, 382.57], [-286.27, 384.82], [-288.47, 387.15], [-287.27, 388.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-291.36, 368.56], [-286.35, 363.17], [-277.93, 370.86], [-273.98, 366.57], [-270.63, 369.63], [-267.65, 372.16], [-276.56, 382.05], [-277.52, 381.2], [-278.45, 382.23], [-281.07, 379.88], [-280.02, 378.72], [-291.36, 368.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-254.85, 388.15], [-259.01, 384.56], [-257.32, 382.62], [-261.08, 379.37], [-256.53, 374.15], [-257.74, 373.11], [-248.3, 362.28], [-241.59, 368.08], [-241.75, 368.26], [-234.58, 374.47], [-238.47, 378.93], [-241.4, 376.4], [-243.57, 378.9], [-244.56, 378.03], [-252.45, 387.11], [-253.29, 386.37], [-254.85, 388.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[-275.28, 429.28], [-282.17, 422.66], [-280.24, 420.66], [-280.74, 420.19], [-273.22, 412.42], [-273.01, 412.62], [-266.32, 405.7], [-259.93, 411.84], [-266.19, 418.31], [-265.0, 419.45], [-272.6, 427.31], [-273.0, 426.94], [-275.28, 429.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[-318.32, 455.76], [-321.61, 452.78], [-330.41, 462.43], [-330.94, 461.95], [-332.38, 463.53], [-338.5, 457.99], [-337.06, 456.41], [-337.53, 455.99], [-329.26, 446.92], [-330.0, 446.24], [-320.99, 436.36], [-317.86, 439.19], [-317.13, 438.4], [-316.71, 438.77], [-315.2, 437.11], [-312.04, 439.96], [-313.56, 441.63], [-309.11, 445.66], [-318.32, 455.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[-78.01, 342.74], [-67.78, 331.68], [-55.49, 342.98], [-65.72, 354.04], [-78.01, 342.74]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[16.27, 394.64], [18.33, 392.38], [17.98, 392.05], [20.29, 389.52], [32.15, 400.24], [27.77, 405.04], [16.27, 394.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[21.85, 388.59], [23.14, 387.19], [22.55, 386.65], [25.9, 383.02], [37.95, 394.07], [33.31, 399.11], [21.85, 388.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[27.82, 383.58], [29.32, 381.87], [28.32, 381.01], [34.11, 374.39], [35.44, 375.54], [36.82, 373.97], [43.76, 379.99], [43.32, 380.5], [46.69, 383.42], [42.3, 388.45], [38.93, 385.52], [35.09, 389.9], [27.82, 383.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[39.57, 366.9], [45.36, 360.71], [57.57, 372.07], [52.31, 377.67], [47.85, 373.53], [47.31, 374.1], [39.57, 366.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[6.64, 365.09], [-4.57, 355.07], [-10.39, 361.53], [0.82, 371.56], [6.64, 365.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-23.2, 390.38], [-9.72, 375.7], [-3.74, 381.14], [-14.93, 393.34], [-17.31, 391.15], [-19.61, 393.65], [-23.2, 390.38]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-39.31, 377.05], [-35.05, 372.42], [-35.38, 372.11], [-31.85, 368.26], [-31.51, 368.56], [-27.46, 364.17], [-21.25, 369.83], [-28.87, 378.11], [-29.21, 377.8], [-32.37, 381.22], [-34.46, 379.32], [-35.53, 380.49], [-39.31, 377.05]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-30.28, 382.94], [-27.19, 379.62], [-28.3, 378.6], [-24.81, 374.84], [-24.22, 375.39], [-20.86, 371.77], [-19.19, 373.3], [-17.1, 371.05], [-13.56, 374.32], [-15.65, 376.57], [-15.07, 377.11], [-25.01, 387.82], [-28.07, 384.99], [-29.03, 386.02], [-30.85, 384.34], [-29.9, 383.3], [-30.28, 382.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-48.43, 354.64], [-36.42, 341.95], [-22.61, 354.94], [-34.61, 367.63], [-48.43, 354.64]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.348, "pop": 174, "jobs": 0}}, {"shape": {"outer": [[-42.26, 336.78], [-36.7, 330.64], [-48.6, 319.93], [-49.71, 321.15], [-50.23, 320.69], [-54.68, 325.62], [-42.26, 336.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-46.56, 316.63], [-45.85, 315.82], [-46.65, 315.13], [-44.92, 313.16], [-44.13, 313.85], [-41.58, 310.94], [-28.94, 321.94], [-34.3, 328.05], [-39.98, 323.11], [-39.61, 322.68], [-46.56, 316.63]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-40.76, 309.35], [-40.51, 309.07], [-41.99, 307.7], [-40.39, 305.95], [-38.89, 307.32], [-34.11, 302.14], [-22.02, 313.21], [-23.75, 315.08], [-22.76, 315.97], [-27.29, 320.89], [-28.15, 320.11], [-28.54, 320.54], [-40.76, 309.35]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-33.39, 301.58], [-26.97, 294.62], [-13.83, 306.66], [-20.26, 313.63], [-33.39, 301.58]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-26.43, 293.53], [-24.56, 291.47], [-26.37, 289.82], [-22.13, 285.17], [-12.07, 294.29], [-13.37, 295.71], [-7.44, 301.08], [-9.95, 303.83], [-9.29, 304.42], [-10.86, 306.14], [-22.46, 295.65], [-23.2, 296.46], [-26.43, 293.53]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-20.31, 286.46], [-14.86, 280.41], [-3.1, 290.92], [-6.35, 294.52], [-5.87, 294.95], [-7.72, 297.0], [-8.2, 296.58], [-8.55, 296.98], [-20.31, 286.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-13.71, 279.84], [-7.98, 273.59], [2.52, 283.15], [-3.21, 289.4], [-13.71, 279.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-8.68, 272.78], [-2.16, 265.74], [11.56, 278.32], [5.06, 285.36], [-8.68, 272.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[3.15, 256.28], [8.08, 250.94], [20.29, 262.13], [15.35, 267.48], [3.15, 256.28]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[10.41, 249.02], [17.33, 241.66], [20.37, 244.49], [21.4, 243.4], [25.7, 247.41], [25.12, 248.03], [28.04, 250.74], [27.64, 251.17], [30.02, 253.39], [27.83, 255.71], [32.04, 259.64], [28.38, 263.53], [26.06, 261.36], [24.22, 263.32], [20.96, 260.28], [21.67, 259.53], [10.41, 249.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[47.98, 235.66], [53.66, 240.82], [64.59, 228.88], [61.82, 226.37], [62.36, 225.77], [59.45, 223.13], [47.98, 235.66]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1433.86, -2011.79], [-1420.54, -2035.83], [-1413.58, -2032.0], [-1426.9, -2007.97], [-1433.86, -2011.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.14, "pop": 0, "jobs": 140}}, {"shape": {"outer": [[-1365.55, -2207.82], [-1365.61, -2209.51], [-1366.81, -2209.43], [-1367.29, -2220.73], [-1357.02, -2220.91], [-1357.22, -2227.83], [-1367.76, -2227.42], [-1368.33, -2241.72], [-1367.84, -2241.68], [-1368.18, -2250.06], [-1337.67, -2251.26], [-1297.39, -2228.37], [-1299.54, -2224.53], [-1299.15, -2224.35], [-1300.85, -2221.54], [-1300.41, -2221.34], [-1311.4, -2202.24], [-1321.17, -2207.57], [-1317.26, -2214.37], [-1343.14, -2228.56], [-1355.2, -2227.84], [-1354.99, -2218.85], [-1344.29, -2219.38], [-1342.88, -2187.29], [-1345.3, -2187.27], [-1344.47, -2170.12], [-1343.6, -2169.56], [-1342.48, -2172.09], [-1337.09, -2169.12], [-1336.69, -2169.75], [-1330.54, -2166.2], [-1360.29, -2113.1], [-1363.01, -2113.75], [-1367.41, -2207.75], [-1365.55, -2207.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1578, "jobs": 0}}, {"shape": {"outer": [[-348.27, -78.55], [-347.34, -79.56], [-327.75, -101.08], [-327.21, -101.69], [-327.04, -102.46], [-327.1, -103.19], [-327.47, -103.93], [-328.07, -104.54], [-328.87, -104.86], [-346.04, -104.12], [-359.84, -103.53], [-359.83, -103.19], [-359.18, -88.42], [-348.27, -78.55]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.592, "pop": 0, "jobs": 592}}, {"shape": {"outer": [[-348.27, -78.55], [-359.18, -88.42], [-359.83, -103.19], [-360.26, -103.18], [-360.61, -103.16], [-361.6, -104.11], [-364.32, -103.99], [-365.28, -103.95], [-366.11, -102.96], [-366.9, -102.91], [-366.04, -85.07], [-353.24, -73.43], [-352.6, -74.11], [-351.73, -74.07], [-350.36, -75.58], [-349.05, -76.99], [-349.11, -77.62], [-348.67, -78.1], [-348.27, -78.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-427.38, -82.1], [-442.28, -95.94], [-442.4, -97.57], [-444.9, -99.75], [-447.7, -99.99], [-449.03, -98.68], [-451.55, -98.5], [-450.33, -68.65], [-448.97, -63.02], [-445.14, -62.7], [-427.38, -82.1]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.59, "pop": 0, "jobs": 590}}, {"shape": {"outer": [[20.35, 91.85], [35.1, 104.39], [41.71, 96.76], [27.33, 84.15], [20.35, 91.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-855.5, -2422.73], [-855.84, -2433.97], [-852.6, -2434.06], [-852.62, -2434.87], [-850.57, -2434.94], [-850.54, -2434.07], [-847.23, -2434.16], [-847.11, -2430.06], [-844.18, -2430.16], [-844.08, -2426.83], [-846.62, -2426.75], [-846.52, -2423.18], [-849.43, -2423.09], [-849.38, -2421.43], [-852.27, -2421.35], [-852.32, -2422.83], [-855.5, -2422.73]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-858.36, -2447.34], [-849.56, -2447.74], [-849.97, -2456.52], [-858.9, -2456.11], [-858.75, -2452.78], [-862.39, -2452.61], [-862.19, -2448.44], [-858.42, -2448.61], [-858.36, -2447.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-860.95, -2433.67], [-860.29, -2420.87], [-868.49, -2420.41], [-869.26, -2433.22], [-860.95, -2433.67]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-816.97, -2425.01], [-810.79, -2425.1], [-810.95, -2436.06], [-820.15, -2435.92], [-820.03, -2427.61], [-817.01, -2427.65], [-816.97, -2425.01]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-842.16, -2392.04], [-841.98, -2386.44], [-841.81, -2381.03], [-850.2, -2380.77], [-850.55, -2391.77], [-842.16, -2392.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-883.2, -2419.5], [-875.38, -2419.75], [-875.71, -2430.37], [-883.54, -2430.11], [-883.2, -2419.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-909.38, -2418.52], [-901.1, -2418.83], [-901.56, -2430.84], [-909.83, -2430.53], [-909.38, -2418.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-924.08, -2421.1], [-912.1, -2421.5], [-912.4, -2430.78], [-924.38, -2430.39], [-924.08, -2421.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-805.82, -2426.84], [-793.65, -2427.26], [-793.99, -2436.75], [-801.45, -2436.49], [-801.6, -2440.71], [-806.31, -2440.54], [-805.82, -2426.84]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-816.88, -2454.2], [-806.67, -2454.61], [-807.07, -2464.14], [-815.43, -2463.8], [-815.3, -2460.56], [-816.38, -2460.5], [-816.31, -2459.02], [-817.07, -2458.98], [-816.88, -2454.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-711.75, -2428.7], [-683.39, -2429.63], [-683.74, -2440.13], [-689.48, -2439.95], [-689.84, -2450.9], [-712.46, -2450.15], [-711.75, -2428.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.35, "pop": 0, "jobs": 350}}, {"shape": {"outer": [[-855.77, -2440.56], [-849.9, -2440.75], [-850.03, -2444.94], [-855.9, -2444.75], [-855.77, -2440.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-868.57, -2456.09], [-861.91, -2456.39], [-862.03, -2460.48], [-868.75, -2460.29], [-868.57, -2456.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-861.15, -2463.77], [-850.76, -2464.27], [-850.89, -2466.99], [-849.66, -2467.05], [-849.83, -2470.82], [-850.96, -2470.77], [-851.09, -2473.42], [-861.59, -2472.92], [-861.15, -2463.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-856.48, -2478.67], [-847.79, -2479.16], [-848.27, -2487.71], [-851.77, -2487.51], [-851.7, -2486.34], [-856.9, -2486.05], [-856.48, -2478.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-955.81, -2370.95], [-956.44, -2384.64], [-947.51, -2385.03], [-946.9, -2371.36], [-955.81, -2370.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-940.6, -2385.66], [-930.85, -2386.1], [-930.14, -2369.11], [-939.84, -2368.69], [-940.6, -2385.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-926.21, -2368.73], [-926.78, -2386.28], [-916.53, -2386.61], [-915.96, -2369.05], [-926.21, -2368.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-912.98, -2370.91], [-913.46, -2386.61], [-903.93, -2386.9], [-903.45, -2371.2], [-912.98, -2370.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[600.32, 993.12], [604.06, 989.04], [616.32, 1000.2], [612.22, 1004.66], [609.84, 1002.5], [610.2, 1002.11], [600.32, 993.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.06, "pop": 0, "jobs": 60}}, {"shape": {"outer": [[616.27, 1008.18], [614.09, 1006.2], [618.24, 1001.67], [629.6, 1012.02], [626.01, 1015.93], [616.83, 1007.57], [616.27, 1008.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.054, "pop": 0, "jobs": 54}}, {"shape": {"outer": [[342.33, 65.28], [348.06, 58.91], [332.97, 45.44], [330.04, 48.7], [328.17, 47.03], [324.89, 50.69], [334.5, 59.26], [334.99, 58.72], [342.33, 65.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[339.1, 39.98], [351.01, 50.66], [356.11, 45.01], [344.2, 34.32], [339.1, 39.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[344.8, 31.2], [350.3, 24.88], [363.91, 36.64], [358.41, 42.96], [344.8, 31.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[352.8, 22.43], [362.75, 11.5], [380.72, 27.78], [370.78, 38.69], [352.8, 22.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.286, "pop": 143, "jobs": 0}}, {"shape": {"outer": [[363.88, 9.51], [371.09, 2.03], [382.75, 13.19], [375.54, 20.68], [363.88, 9.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[371.9, 2.12], [378.17, -5.0], [392.43, 7.47], [386.16, 14.58], [371.9, 2.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[381.32, -6.52], [390.92, -17.01], [408.06, -1.43], [398.46, 9.06], [381.32, -6.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[393.21, -19.07], [400.69, -27.85], [408.13, -21.56], [406.57, -19.74], [408.71, -17.93], [402.78, -10.97], [393.21, -19.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[400.56, -29.76], [406.28, -36.19], [418.27, -25.59], [412.55, -19.16], [400.56, -29.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[406.29, -39.99], [413.16, -47.04], [428.23, -32.49], [421.37, -25.44], [406.29, -39.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1208.76, 259.43], [1215.06, 264.84], [1222.12, 256.67], [1222.45, 256.95], [1224.32, 254.8], [1223.82, 254.37], [1225.02, 252.97], [1224.52, 252.54], [1223.8, 251.92], [1223.12, 251.34], [1223.56, 250.83], [1219.13, 247.03], [1216.1, 250.54], [1214.91, 249.52], [1211.25, 253.76], [1212.64, 254.94], [1208.76, 259.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1329.69, 305.51], [1333.95, 309.14], [1335.4, 310.38], [1336.66, 311.46], [1347.45, 298.93], [1340.48, 292.98], [1329.69, 305.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[434.03, 277.05], [438.26, 280.85], [434.54, 284.97], [439.82, 289.98], [424.81, 305.7], [424.87, 308.29], [425.01, 308.42], [441.3, 322.67], [451.4, 311.22], [450.11, 310.09], [445.04, 305.56], [451.14, 298.8], [463.44, 309.76], [464.87, 311.01], [468.17, 307.27], [468.49, 307.55], [470.29, 305.51], [472.1, 307.11], [476.8, 301.78], [478.2, 299.94], [481.98, 302.74], [483.31, 306.03], [484.74, 308.45], [486.68, 310.46], [489.18, 312.43], [491.36, 313.64], [493.43, 314.43], [495.85, 315.0], [498.48, 315.23], [500.95, 315.07], [503.1, 314.63], [505.15, 313.95], [507.76, 312.62], [509.9, 311.06], [511.78, 309.17], [513.4, 306.93], [514.52, 304.79], [515.43, 302.04], [515.87, 299.32], [515.7, 295.23], [514.98, 292.35], [513.74, 289.58], [510.57, 285.51], [508.59, 283.88], [505.24, 282.05], [503.15, 281.33], [500.87, 280.87], [493.66, 275.07], [494.21, 274.56], [492.93, 273.43], [495.58, 270.66], [464.17, 242.37], [454.69, 253.58], [459.52, 257.75], [439.91, 278.7], [435.94, 274.97], [434.03, 277.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2309}}, {"shape": {"outer": [[501.94, 333.75], [527.53, 305.6], [531.96, 300.73], [536.59, 304.9], [537.35, 304.07], [562.78, 327.02], [531.99, 360.88], [501.94, 333.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1181}}, {"shape": {"outer": [[470.52, 159.14], [481.91, 169.32], [491.87, 158.67], [497.27, 163.31], [513.88, 146.25], [497.17, 129.25], [470.52, 159.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.512, "pop": 0, "jobs": 512}}, {"shape": {"outer": [[-868.99, -2390.29], [-860.36, -2390.64], [-859.94, -2379.87], [-868.57, -2379.52], [-868.99, -2390.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-883.65, -2388.84], [-874.32, -2389.15], [-873.86, -2375.38], [-883.19, -2375.07], [-883.65, -2388.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-895.69, -2370.3], [-896.53, -2388.35], [-886.14, -2388.86], [-885.09, -2370.83], [-895.69, -2370.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-1155.71, -2407.62], [-1135.41, -2408.8], [-1136.28, -2423.64], [-1146.7, -2423.01], [-1155.71, -2407.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.146, "pop": 0, "jobs": 146}}, {"shape": {"outer": [[-879.59, -2537.01], [-860.48, -2538.39], [-860.66, -2540.89], [-852.05, -2545.92], [-852.78, -2555.93], [-861.0, -2560.49], [-861.34, -2565.27], [-885.77, -2563.5], [-885.07, -2553.82], [-875.5, -2554.51], [-874.88, -2546.03], [-880.22, -2545.64], [-879.59, -2537.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.417, "pop": 0, "jobs": 417}}, {"shape": {"outer": [[-821.26, -2490.36], [-813.08, -2490.77], [-813.94, -2507.96], [-822.12, -2507.54], [-821.26, -2490.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-937.34, -2420.78], [-929.14, -2420.95], [-929.48, -2436.23], [-931.12, -2436.19], [-931.2, -2439.81], [-937.76, -2439.66], [-937.34, -2420.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-954.76, -2420.22], [-946.15, -2420.65], [-946.61, -2429.72], [-955.22, -2429.3], [-954.76, -2420.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-966.36, -2419.4], [-957.25, -2419.77], [-957.64, -2429.61], [-966.76, -2429.25], [-966.36, -2419.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-976.49, -2418.7], [-968.18, -2418.84], [-968.73, -2434.07], [-977.36, -2433.83], [-976.49, -2418.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-991.26, -2415.34], [-982.48, -2415.66], [-983.14, -2433.66], [-991.92, -2433.34], [-991.26, -2415.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1006.41, -2414.71], [-997.69, -2415.04], [-998.32, -2432.01], [-1007.04, -2431.68], [-1006.41, -2414.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1022.81, -2414.71], [-1014.84, -2415.11], [-1015.44, -2427.05], [-1016.92, -2426.97], [-1017.01, -2428.75], [-1019.06, -2428.65], [-1019.15, -2430.43], [-1024.46, -2430.16], [-1024.01, -2421.17], [-1023.15, -2421.22], [-1022.81, -2414.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1036.87, -2415.89], [-1024.92, -2416.42], [-1025.31, -2425.5], [-1037.27, -2424.97], [-1036.87, -2415.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1054.26, -2413.51], [-1046.24, -2413.81], [-1046.75, -2427.33], [-1054.77, -2427.03], [-1054.26, -2413.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1067.32, -2414.42], [-1056.73, -2414.79], [-1057.09, -2425.05], [-1067.68, -2424.68], [-1067.32, -2414.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1078.29, -2413.0], [-1071.72, -2413.18], [-1071.89, -2419.17], [-1069.94, -2419.22], [-1070.19, -2428.04], [-1078.71, -2427.8], [-1078.29, -2413.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1098.95, -2413.55], [-1088.2, -2413.95], [-1088.35, -2417.99], [-1089.98, -2417.93], [-1090.13, -2422.16], [-1094.1, -2422.01], [-1094.19, -2424.54], [-1098.39, -2424.39], [-1098.3, -2421.79], [-1099.25, -2421.75], [-1098.95, -2413.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1113.12, -2411.18], [-1103.68, -2411.5], [-1104.26, -2428.0], [-1113.71, -2427.67], [-1113.12, -2411.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1120.43, -2413.49], [-1121.03, -2424.88], [-1128.75, -2424.47], [-1128.15, -2413.09], [-1120.43, -2413.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-895.44, -2494.15], [-886.08, -2494.46], [-886.42, -2504.75], [-887.24, -2504.72], [-887.31, -2506.8], [-894.9, -2506.54], [-894.83, -2504.47], [-895.78, -2504.44], [-895.44, -2494.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-909.4, -2488.56], [-904.43, -2488.71], [-904.51, -2491.21], [-900.29, -2491.34], [-900.69, -2504.24], [-909.87, -2503.95], [-909.4, -2488.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-922.5, -2498.57], [-914.1, -2498.86], [-914.39, -2507.41], [-915.74, -2507.36], [-915.81, -2509.47], [-921.87, -2509.26], [-921.8, -2507.16], [-922.8, -2507.12], [-922.5, -2498.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-934.12, -2496.6], [-934.05, -2506.11], [-942.59, -2506.17], [-942.66, -2496.66], [-934.12, -2496.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-956.86, -2494.3], [-952.65, -2494.5], [-952.77, -2497.05], [-949.42, -2497.21], [-949.94, -2508.08], [-957.51, -2507.72], [-956.86, -2494.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-967.7, -2495.72], [-959.77, -2495.99], [-960.1, -2505.65], [-963.0, -2505.56], [-963.07, -2507.56], [-967.11, -2507.42], [-967.04, -2505.42], [-968.03, -2505.38], [-967.7, -2495.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-979.61, -2498.56], [-971.08, -2498.92], [-970.5, -2484.94], [-979.03, -2484.58], [-979.61, -2498.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1006.78, -2489.54], [-999.22, -2489.9], [-999.76, -2501.32], [-1007.32, -2500.96], [-1006.78, -2489.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1023.23, -2489.9], [-1014.85, -2490.15], [-1015.13, -2499.36], [-1023.51, -2499.1], [-1023.23, -2489.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1036.26, -2497.57], [-1029.63, -2497.88], [-1029.18, -2488.29], [-1035.82, -2487.98], [-1036.26, -2497.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2867.22, -1211.62], [-2858.48, -1204.17], [-2873.72, -1186.43], [-2882.46, -1193.88], [-2867.22, -1211.62]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.15, "pop": 0, "jobs": 150}}, {"shape": {"outer": [[-2814.44, -1136.28], [-2806.25, -1129.37], [-2792.34, -1145.74], [-2800.53, -1152.64], [-2814.44, -1136.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.147, "pop": 0, "jobs": 147}}, {"shape": {"outer": [[1272.82, 566.15], [1279.06, 571.77], [1272.39, 579.12], [1266.15, 573.48], [1272.82, 566.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.053, "pop": 0, "jobs": 53}}, {"shape": {"outer": [[-880.75, -2655.0], [-869.63, -2655.69], [-870.75, -2673.63], [-881.87, -2672.94], [-880.75, -2655.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2272.04, 1305.11], [2273.43, 1303.49], [2272.24, 1302.09], [2275.58, 1297.83], [2277.06, 1299.22], [2277.9, 1298.2], [2285.13, 1304.16], [2283.74, 1306.07], [2286.69, 1308.29], [2282.22, 1313.44], [2272.04, 1305.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-884.47, -2676.6], [-876.52, -2676.75], [-876.71, -2686.49], [-884.66, -2686.33], [-884.47, -2676.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-177.12, 154.58], [-172.3, 149.43], [-161.25, 159.71], [-167.45, 166.33], [-174.81, 159.48], [-173.87, 158.48], [-175.8, 156.69], [-175.36, 156.22], [-177.12, 154.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-673.84, -434.81], [-666.51, -428.27], [-667.43, -427.24], [-663.51, -423.74], [-664.41, -422.73], [-657.78, -416.81], [-656.03, -418.76], [-653.94, -416.89], [-653.57, -417.29], [-649.91, -414.02], [-650.27, -413.62], [-648.28, -411.84], [-663.51, -394.9], [-663.86, -395.22], [-667.28, -391.42], [-668.6, -392.6], [-670.82, -390.14], [-694.78, -411.54], [-673.84, -434.81]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 725, "jobs": 0}}, {"shape": {"outer": [[-698.03, -395.64], [-695.52, -393.35], [-694.2, -394.8], [-690.72, -391.6], [-690.17, -392.2], [-683.26, -385.87], [-683.73, -385.36], [-680.16, -382.09], [-681.73, -380.38], [-679.21, -378.07], [-696.16, -359.67], [-698.82, -362.11], [-700.28, -360.52], [-703.33, -363.31], [-703.76, -362.85], [-710.93, -369.41], [-710.47, -369.91], [-714.01, -373.15], [-712.24, -375.05], [-714.83, -377.41], [-698.03, -395.64]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 518, "jobs": 0}}, {"shape": {"outer": [[-612.58, -954.37], [-597.72, -940.83], [-603.73, -934.27], [-604.97, -935.39], [-609.45, -930.5], [-596.22, -918.47], [-594.32, -920.53], [-587.79, -914.59], [-601.54, -899.61], [-609.82, -907.15], [-607.32, -909.89], [-614.76, -916.67], [-617.28, -913.92], [-634.53, -929.63], [-627.03, -937.81], [-626.43, -937.26], [-623.39, -940.58], [-624.38, -941.49], [-612.58, -954.37]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 748, "jobs": 0}}, {"shape": {"outer": [[-849.67, -185.91], [-866.26, -168.05], [-862.83, -164.89], [-861.13, -166.74], [-857.22, -163.13], [-839.84, -181.82], [-845.1, -186.67], [-847.59, -183.98], [-849.67, -185.91]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.215, "pop": 0, "jobs": 215}}, {"shape": {"outer": [[204.18, -162.21], [196.89, -169.14], [198.1, -170.41], [206.51, -179.28], [210.89, -175.64], [213.86, -173.08], [204.18, -162.21]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[345.9, 47.64], [344.97, 46.8], [341.94, 50.12], [342.85, 50.95], [342.05, 51.82], [352.33, 61.14], [356.48, 56.59], [346.22, 47.29], [345.9, 47.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-680.48, -864.09], [-697.46, -845.7], [-706.94, -854.4], [-690.04, -872.71], [-687.2, -870.1], [-685.32, -872.13], [-682.22, -869.29], [-684.02, -867.34], [-680.48, -864.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.213, "pop": 0, "jobs": 213}}, {"shape": {"outer": [[2941.08, 1904.8], [2950.48, 1907.2], [2943.91, 1932.65], [2934.52, 1930.25], [2941.08, 1904.8]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.143, "pop": 0, "jobs": 143}}, {"shape": {"outer": [[-1367.45, -937.57], [-1367.43, -947.12], [-1367.41, -963.31], [-1367.36, -991.85], [-1430.31, -991.34], [-1430.25, -963.55], [-1430.25, -957.19], [-1426.9, -957.2], [-1424.88, -955.42], [-1404.71, -955.69], [-1404.73, -937.25], [-1367.45, -937.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1879}}, {"shape": {"outer": [[-1575.16, -978.75], [-1575.46, -992.34], [-1579.07, -992.25], [-1578.77, -978.66], [-1575.16, -978.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1566.31, -942.87], [-1566.53, -952.23], [-1570.24, -952.13], [-1570.03, -942.78], [-1566.31, -942.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1864.86, -866.96], [-1854.25, -867.27], [-1854.46, -874.13], [-1840.89, -874.54], [-1841.33, -889.18], [-1852.93, -888.83], [-1853.04, -892.34], [-1865.61, -891.95], [-1864.86, -866.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.301, "pop": 0, "jobs": 301}}, {"shape": {"outer": [[-1707.37, -743.78], [-1707.9, -756.08], [-1702.29, -756.32], [-1702.34, -757.7], [-1696.27, -757.96], [-1696.22, -756.59], [-1690.94, -756.82], [-1691.0, -758.09], [-1685.13, -758.35], [-1685.07, -757.07], [-1679.13, -757.32], [-1678.6, -745.27], [-1684.98, -744.99], [-1685.03, -746.14], [-1690.17, -745.91], [-1690.12, -744.87], [-1696.19, -744.61], [-1696.24, -745.65], [-1701.31, -745.44], [-1701.24, -744.05], [-1707.37, -743.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-1673.89, -774.55], [-1674.41, -786.65], [-1662.36, -787.17], [-1662.3, -785.91], [-1657.23, -786.12], [-1657.28, -787.39], [-1651.22, -787.64], [-1651.15, -786.21], [-1646.02, -786.43], [-1646.08, -787.87], [-1636.91, -788.26], [-1636.39, -776.16], [-1645.2, -775.79], [-1645.16, -774.8], [-1651.23, -774.54], [-1651.27, -775.52], [-1656.34, -775.31], [-1656.29, -774.16], [-1662.29, -773.9], [-1662.34, -775.05], [-1673.89, -774.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.318, "pop": 159, "jobs": 0}}, {"shape": {"outer": [[-1675.01, -745.45], [-1675.58, -757.44], [-1664.0, -757.99], [-1664.06, -759.38], [-1658.05, -759.66], [-1657.99, -758.27], [-1652.52, -758.53], [-1652.59, -759.92], [-1646.64, -760.19], [-1646.58, -758.8], [-1635.41, -759.32], [-1634.85, -747.32], [-1646.44, -746.78], [-1646.5, -747.99], [-1651.7, -747.75], [-1651.65, -746.54], [-1657.78, -746.25], [-1657.84, -747.53], [-1662.91, -747.28], [-1662.85, -746.01], [-1675.01, -745.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[-1718.37, -772.52], [-1718.85, -784.65], [-1707.15, -785.12], [-1707.1, -783.94], [-1702.3, -784.13], [-1702.34, -785.31], [-1695.8, -785.56], [-1695.75, -784.29], [-1691.14, -784.47], [-1691.19, -785.75], [-1679.35, -786.21], [-1678.86, -774.1], [-1690.13, -773.66], [-1690.08, -772.39], [-1695.82, -772.16], [-1695.87, -773.42], [-1701.34, -773.2], [-1701.3, -772.08], [-1707.1, -771.85], [-1707.14, -772.98], [-1718.37, -772.52]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.338, "pop": 169, "jobs": 0}}, {"shape": {"outer": [[-1604.57, -750.61], [-1596.8, -750.93], [-1596.85, -752.04], [-1589.93, -752.32], [-1590.84, -774.37], [-1573.13, -775.08], [-1572.18, -752.12], [-1563.65, -752.47], [-1563.7, -753.86], [-1557.57, -754.11], [-1558.45, -775.68], [-1540.37, -776.42], [-1539.48, -754.89], [-1533.01, -755.16], [-1532.95, -753.75], [-1525.55, -754.06], [-1526.57, -778.85], [-1530.77, -778.68], [-1530.79, -782.34], [-1529.11, -784.34], [-1529.21, -788.26], [-1529.67, -788.24], [-1529.81, -791.53], [-1602.99, -788.53], [-1602.64, -779.93], [-1601.65, -779.97], [-1601.46, -775.21], [-1605.57, -775.04], [-1604.57, -750.61]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 716, "jobs": 0}}, {"shape": {"outer": [[-1536.35, -696.13], [-1521.8, -696.84], [-1523.85, -739.16], [-1538.4, -738.46], [-1536.35, -696.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.494, "pop": 247, "jobs": 0}}, {"shape": {"outer": [[-1822.93, -658.21], [-1814.7, -658.58], [-1815.78, -682.41], [-1824.01, -682.03], [-1822.93, -658.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1572.65, -721.59], [-1573.27, -736.12], [-1541.17, -737.48], [-1540.55, -722.94], [-1572.65, -721.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.374, "pop": 187, "jobs": 0}}, {"shape": {"outer": [[-1741.97, -722.5], [-1742.22, -731.23], [-1724.07, -731.76], [-1723.81, -723.02], [-1741.97, -722.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1636.87, -807.24], [-1648.68, -806.94], [-1649.77, -850.68], [-1637.95, -850.98], [-1636.87, -807.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.414, "pop": 207, "jobs": 0}}, {"shape": {"outer": [[-1571.39, -694.83], [-1572.08, -709.2], [-1540.24, -710.74], [-1539.55, -696.35], [-1571.39, -694.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.368, "pop": 184, "jobs": 0}}, {"shape": {"outer": [[-1695.39, -805.17], [-1708.96, -804.69], [-1709.69, -825.48], [-1696.13, -825.96], [-1695.39, -805.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-1662.37, -825.15], [-1677.51, -824.52], [-1677.69, -828.74], [-1680.74, -828.61], [-1681.47, -846.55], [-1663.28, -847.29], [-1662.37, -825.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-1720.78, -945.31], [-1745.08, -944.57], [-1745.58, -960.95], [-1744.45, -960.98], [-1745.14, -983.21], [-1721.97, -983.92], [-1720.78, -945.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.585, "pop": 0, "jobs": 585}}, {"shape": {"outer": [[-1740.55, -684.63], [-1742.02, -716.92], [-1730.94, -717.42], [-1729.97, -696.01], [-1720.55, -696.44], [-1720.05, -685.56], [-1740.55, -684.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.368, "pop": 184, "jobs": 0}}, {"shape": {"outer": [[-1644.06, -879.37], [-1691.52, -876.89], [-1692.36, -892.84], [-1693.2, -908.79], [-1670.75, -909.96], [-1671.07, -916.29], [-1646.06, -917.6], [-1644.06, -879.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1073}}, {"shape": {"outer": [[-1716.32, -711.58], [-1717.19, -731.51], [-1706.33, -731.99], [-1705.91, -722.72], [-1684.73, -723.65], [-1684.26, -712.98], [-1716.32, -711.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.354, "pop": 177, "jobs": 0}}, {"shape": {"outer": [[-1743.35, -800.78], [-1743.69, -809.51], [-1724.81, -810.24], [-1724.67, -806.58], [-1722.9, -806.65], [-1722.78, -803.73], [-1724.56, -803.66], [-1724.47, -801.52], [-1743.35, -800.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1636.03, -691.06], [-1666.08, -689.86], [-1667.55, -726.91], [-1661.98, -727.14], [-1662.06, -729.06], [-1644.66, -729.75], [-1644.6, -728.02], [-1637.51, -728.3], [-1636.03, -691.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.736, "pop": 0, "jobs": 736}}, {"shape": {"outer": [[-1819.1, -745.24], [-1819.86, -777.49], [-1767.64, -778.72], [-1767.47, -771.52], [-1768.43, -771.5], [-1768.0, -753.55], [-1767.03, -753.58], [-1766.86, -746.47], [-1819.1, -745.24]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1868}}, {"shape": {"outer": [[-1693.92, -1067.8], [-1688.66, -1067.92], [-1688.61, -1065.19], [-1684.04, -1065.29], [-1684.09, -1068.01], [-1681.62, -1068.06], [-1681.66, -1069.65], [-1660.47, -1070.09], [-1660.43, -1068.5], [-1658.26, -1068.55], [-1658.2, -1066.0], [-1653.05, -1066.1], [-1653.1, -1068.66], [-1648.31, -1068.76], [-1649.07, -1105.24], [-1659.45, -1105.02], [-1659.43, -1103.97], [-1669.14, -1103.75], [-1669.8, -1105.14], [-1670.96, -1105.67], [-1672.07, -1105.71], [-1673.27, -1104.84], [-1673.88, -1103.66], [-1684.39, -1103.44], [-1684.41, -1104.49], [-1694.68, -1104.28], [-1693.92, -1067.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1048}}, {"shape": {"outer": [[-1607.49, -714.77], [-1607.81, -722.25], [-1594.79, -722.8], [-1594.47, -715.32], [-1607.49, -714.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1741.97, -766.37], [-1742.38, -775.23], [-1724.11, -776.05], [-1723.71, -767.2], [-1741.97, -766.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1742.6, -754.09], [-1743.01, -763.24], [-1725.19, -764.03], [-1724.79, -754.87], [-1742.6, -754.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1923.67, -870.86], [-1923.93, -878.83], [-1907.65, -879.34], [-1907.41, -871.37], [-1923.67, -870.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[-1963.04, -856.98], [-1956.71, -857.14], [-1957.17, -875.93], [-1963.52, -875.77], [-1963.04, -856.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.076, "pop": 0, "jobs": 76}}, {"shape": {"outer": [[-1741.24, -744.0], [-1741.62, -752.44], [-1725.83, -753.15], [-1725.45, -744.72], [-1741.24, -744.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2130.16, -858.36], [-2130.33, -862.23], [-2118.56, -862.63], [-2118.16, -853.48], [-2122.25, -853.43], [-2130.16, -858.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.056, "pop": 0, "jobs": 56}}, {"shape": {"outer": [[-2114.8, -849.97], [-2111.7, -850.11], [-2067.94, -852.16], [-2069.44, -876.23], [-2077.59, -875.69], [-2078.31, -896.49], [-2070.3, -896.58], [-2070.71, -907.75], [-2112.21, -906.47], [-2111.76, -895.86], [-2099.39, -895.68], [-2099.28, -874.92], [-2112.59, -874.38], [-2115.69, -874.26], [-2114.8, -849.97]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 1064, "jobs": 0}}, {"shape": {"outer": [[-1593.99, -836.52], [-1597.99, -836.4], [-1597.95, -835.03], [-1602.27, -834.9], [-1602.31, -836.16], [-1604.56, -836.09], [-1604.9, -847.69], [-1604.23, -847.71], [-1604.29, -849.79], [-1597.02, -850.0], [-1596.96, -847.78], [-1596.32, -847.8], [-1596.18, -842.86], [-1594.17, -842.92], [-1593.99, -836.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.085, "pop": 0, "jobs": 85}}, {"shape": {"outer": [[-1987.82, -815.6], [-1988.72, -834.76], [-1966.09, -835.81], [-1965.19, -816.66], [-1973.54, -816.27], [-1973.44, -814.19], [-1978.29, -813.97], [-1978.39, -816.05], [-1987.82, -815.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.284, "pop": 0, "jobs": 284}}, {"shape": {"outer": [[-1878.75, -799.85], [-1847.12, -800.92], [-1847.43, -809.91], [-1853.43, -809.71], [-1853.94, -824.75], [-1847.96, -824.96], [-1848.42, -840.18], [-1861.35, -841.29], [-1880.14, -840.65], [-1878.75, -799.85]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.334, "pop": 0, "jobs": 334}}, {"shape": {"outer": [[305.91, 305.23], [315.67, 294.33], [311.17, 290.32], [311.45, 290.01], [307.43, 286.44], [307.15, 286.74], [304.83, 284.69], [295.07, 295.59], [305.91, 305.23]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[164.73, 194.66], [150.83, 182.24], [147.45, 185.99], [141.82, 180.97], [145.76, 176.59], [142.7, 173.85], [151.46, 164.12], [146.01, 159.27], [152.17, 152.43], [157.88, 157.54], [161.9, 153.08], [184.22, 173.01], [164.73, 194.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.628, "pop": 0, "jobs": 628}}, {"shape": {"outer": [[252.53, 154.81], [243.04, 165.28], [246.07, 168.02], [242.66, 171.78], [227.66, 158.29], [235.75, 149.36], [236.65, 150.18], [239.66, 146.85], [241.23, 148.26], [243.04, 146.27], [252.53, 154.81]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.202, "pop": 0, "jobs": 202}}, {"shape": {"outer": [[347.75, 365.37], [331.01, 350.2], [342.04, 338.11], [358.52, 353.04], [368.48, 342.12], [377.76, 350.53], [344.1, 387.39], [335.1, 379.23], [347.75, 365.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.628, "pop": 0, "jobs": 628}}, {"shape": {"outer": [[389.25, 367.15], [364.83, 394.37], [370.27, 399.22], [367.66, 402.13], [396.76, 428.05], [398.47, 426.14], [400.37, 427.84], [409.91, 417.23], [411.14, 418.32], [412.93, 416.32], [418.45, 421.23], [432.45, 405.62], [389.25, 367.15]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1195}}, {"shape": {"outer": [[336.94, 442.82], [365.94, 410.81], [335.03, 383.02], [321.27, 398.2], [315.66, 393.16], [300.66, 409.72], [316.63, 424.08], [326.61, 413.05], [331.51, 417.47], [321.3, 428.74], [336.94, 442.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 744, "jobs": 0}}, {"shape": {"outer": [[-88.42, 255.97], [-86.37, 255.87], [-84.68, 257.28], [-84.59, 259.35], [-82.65, 259.26], [-77.64, 263.66], [-77.37, 269.7], [-74.94, 269.59], [-74.84, 271.84], [-77.43, 271.96], [-77.04, 280.78], [-82.58, 281.03], [-82.44, 284.06], [-87.15, 284.27], [-88.42, 255.97]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.43, "pop": 215, "jobs": 0}}, {"shape": {"outer": [[-88.7, 251.53], [-82.68, 244.96], [-69.79, 256.68], [-75.81, 263.25], [-88.7, 251.53]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-74.65, 250.26], [-73.55, 249.09], [-72.66, 249.91], [-68.75, 245.72], [-69.81, 244.73], [-69.18, 244.05], [-69.59, 243.68], [-65.47, 239.26], [-70.39, 234.71], [-74.51, 239.12], [-82.47, 231.75], [-82.83, 232.13], [-84.43, 230.64], [-87.78, 234.24], [-87.76, 238.12], [-84.93, 240.74], [-85.29, 241.13], [-81.3, 244.82], [-80.95, 244.43], [-74.65, 250.26]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-72.75, 229.67], [-67.64, 223.97], [-64.09, 227.13], [-61.02, 223.69], [-71.39, 214.47], [-74.42, 217.85], [-77.82, 214.82], [-83.36, 220.99], [-76.06, 227.48], [-75.68, 227.06], [-72.75, 229.67]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-84.05, 301.21], [-84.16, 298.87], [-85.27, 298.92], [-85.42, 295.86], [-84.31, 295.81], [-84.44, 293.09], [-75.4, 292.66], [-75.34, 294.11], [-72.72, 293.99], [-72.4, 300.66], [-84.05, 301.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1950.49, 2338.33], [1963.37, 2324.89], [1962.57, 2324.1], [1928.1, 2290.7], [1922.78, 2295.87], [1924.25, 2312.35], [1950.49, 2338.33]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.235, "pop": 0, "jobs": 235}}, {"shape": {"outer": [[-320.02, 388.87], [-312.76, 380.5], [-309.77, 383.07], [-306.46, 379.26], [-310.96, 375.39], [-308.56, 372.62], [-315.11, 366.97], [-320.23, 372.87], [-320.52, 372.63], [-328.38, 381.69], [-320.02, 388.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-331.38, 380.32], [-338.45, 373.95], [-328.19, 362.64], [-320.47, 369.59], [-327.05, 376.84], [-327.69, 376.24], [-331.38, 380.32]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-227.57, 475.65], [-235.34, 468.6], [-219.99, 451.78], [-212.22, 458.83], [-227.57, 475.65]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.334, "pop": 167, "jobs": 0}}, {"shape": {"outer": [[-237.64, 466.04], [-244.19, 460.18], [-242.12, 457.88], [-242.69, 457.36], [-232.34, 445.89], [-224.77, 452.66], [-228.5, 456.8], [-227.77, 457.46], [-229.41, 459.27], [-230.08, 458.68], [-235.04, 464.18], [-235.55, 463.73], [-237.64, 466.04]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-212.12, 457.04], [-225.49, 445.1], [-223.74, 443.15], [-227.48, 439.81], [-222.76, 434.57], [-214.23, 442.19], [-213.8, 441.71], [-209.5, 445.56], [-210.03, 446.15], [-207.26, 448.63], [-207.73, 449.15], [-206.23, 450.49], [-212.12, 457.04]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-200.65, 441.22], [-208.32, 434.11], [-200.07, 425.25], [-192.39, 432.36], [-200.65, 441.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-208.27, 425.38], [-215.03, 419.37], [-197.93, 400.29], [-191.17, 406.3], [-208.27, 425.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-215.85, 418.62], [-222.68, 412.52], [-205.36, 393.24], [-198.53, 399.33], [-215.85, 418.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-110.51, 416.12], [-110.84, 409.79], [-106.88, 409.58], [-107.07, 405.87], [-101.11, 405.56], [-100.59, 415.61], [-110.51, 416.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-107.02, 436.33], [-107.19, 432.73], [-111.94, 432.96], [-112.13, 428.75], [-111.11, 428.71], [-111.15, 427.81], [-108.89, 427.71], [-108.85, 428.6], [-102.0, 428.27], [-101.87, 431.07], [-98.64, 430.91], [-98.4, 435.92], [-107.02, 436.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[38.89, 580.07], [35.67, 577.17], [34.23, 578.76], [28.62, 573.71], [30.06, 572.11], [29.41, 571.52], [37.02, 563.14], [38.42, 564.41], [39.83, 562.87], [43.1, 565.83], [41.7, 567.37], [46.49, 571.7], [38.89, 580.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[23.58, 570.26], [17.73, 564.95], [19.19, 563.36], [18.1, 562.37], [22.11, 557.99], [20.97, 556.95], [23.64, 554.03], [24.79, 555.07], [29.27, 550.16], [32.79, 553.36], [34.17, 551.84], [36.61, 554.06], [35.23, 555.57], [37.72, 557.83], [27.15, 569.39], [25.63, 568.01], [23.58, 570.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[16.08, 561.99], [14.15, 560.3], [13.42, 561.15], [10.12, 558.26], [10.85, 557.43], [10.58, 557.19], [16.13, 550.88], [15.05, 549.94], [18.45, 546.08], [20.87, 548.19], [22.24, 546.61], [26.4, 550.24], [16.08, 561.99]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[59.33, 518.42], [52.45, 512.21], [56.39, 507.89], [56.93, 508.38], [63.12, 501.58], [67.73, 505.74], [65.2, 508.53], [66.93, 510.08], [59.33, 518.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[45.61, 508.24], [40.82, 504.02], [50.91, 492.65], [54.26, 495.59], [55.56, 494.13], [58.92, 497.09], [52.17, 504.72], [50.24, 503.02], [45.61, 508.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[107.46, 452.62], [91.09, 437.95], [92.79, 436.05], [91.45, 434.86], [99.77, 425.64], [101.35, 427.06], [103.11, 425.12], [119.23, 439.57], [115.97, 443.19], [117.5, 444.56], [110.66, 452.15], [109.12, 450.77], [107.46, 452.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[71.66, 477.21], [62.14, 468.58], [66.01, 464.34], [68.28, 466.39], [70.85, 463.6], [74.16, 466.59], [75.42, 465.21], [79.35, 468.78], [71.66, 477.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[81.26, 458.65], [74.63, 452.66], [78.06, 448.91], [77.58, 448.47], [79.04, 446.87], [86.14, 453.29], [81.26, 458.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[88.57, 452.7], [86.04, 450.47], [87.15, 449.22], [83.41, 445.91], [85.62, 443.44], [84.6, 442.54], [86.84, 440.03], [87.85, 440.93], [88.74, 439.94], [95.37, 445.79], [94.89, 446.33], [96.65, 447.88], [94.9, 449.85], [96.74, 451.48], [93.72, 454.88], [89.75, 451.37], [88.57, 452.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[123.29, 430.11], [112.2, 419.92], [114.54, 417.38], [113.89, 416.78], [116.12, 414.36], [116.78, 414.96], [117.79, 413.87], [130.26, 425.32], [125.11, 430.9], [123.73, 429.63], [123.29, 430.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[130.43, 422.93], [114.39, 407.84], [120.57, 401.32], [121.19, 401.91], [121.54, 401.54], [127.63, 407.25], [127.2, 407.71], [136.54, 416.49], [130.43, 422.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[135.15, 411.43], [120.87, 398.03], [126.28, 392.31], [127.6, 393.54], [127.86, 393.27], [140.82, 405.42], [135.15, 411.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[61.08, 425.95], [59.75, 424.79], [59.64, 424.92], [50.0, 416.45], [51.52, 414.73], [50.97, 414.23], [54.3, 410.48], [54.86, 410.97], [55.35, 410.42], [64.9, 418.82], [62.5, 421.52], [63.92, 422.76], [61.08, 425.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[64.7, 416.65], [55.59, 408.39], [59.78, 403.79], [63.84, 407.47], [66.65, 404.38], [70.42, 407.8], [66.55, 412.05], [67.84, 413.22], [64.7, 416.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[75.48, 408.68], [63.18, 397.81], [67.39, 393.09], [79.69, 403.96], [75.48, 408.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[70.01, 395.12], [74.22, 390.4], [84.25, 399.27], [80.04, 403.99], [70.01, 395.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[59.1, 370.0], [48.35, 360.17], [54.3, 353.71], [66.07, 364.47], [60.49, 370.54], [59.46, 369.6], [59.1, 370.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[66.59, 352.37], [58.01, 344.63], [63.25, 338.86], [64.19, 339.71], [64.66, 339.2], [75.83, 349.27], [70.79, 354.84], [67.25, 351.64], [66.59, 352.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[86.49, 396.52], [78.94, 389.63], [80.64, 387.78], [77.34, 384.77], [80.04, 381.83], [90.89, 391.73], [86.49, 396.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[93.03, 389.44], [81.24, 378.9], [82.15, 377.88], [81.68, 377.45], [85.11, 373.63], [97.39, 384.59], [93.03, 389.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[50.02, 576.01], [46.2, 580.42], [45.58, 579.89], [42.64, 583.29], [42.34, 583.04], [40.58, 585.09], [44.15, 588.17], [44.58, 587.67], [48.55, 591.08], [56.66, 581.72], [50.02, 576.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[58.7, 576.65], [50.77, 569.63], [53.72, 566.33], [50.6, 563.56], [53.72, 560.06], [55.71, 561.81], [56.36, 561.08], [67.04, 570.54], [63.01, 575.06], [61.39, 573.63], [58.7, 576.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[54.49, 553.53], [57.44, 550.2], [60.13, 552.58], [61.19, 551.39], [64.83, 554.58], [65.45, 553.88], [74.34, 561.69], [69.25, 567.45], [68.04, 566.39], [67.71, 566.75], [64.19, 563.65], [63.67, 564.23], [59.51, 560.57], [60.57, 559.37], [56.88, 556.13], [57.13, 555.85], [54.49, 553.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[77.08, 557.65], [63.87, 545.73], [71.17, 537.7], [84.38, 549.62], [77.08, 557.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[65.92, 527.46], [64.31, 525.98], [63.77, 526.56], [61.12, 524.15], [61.66, 523.55], [60.13, 522.17], [64.33, 517.61], [63.8, 517.13], [67.45, 513.16], [67.84, 513.52], [71.01, 510.07], [76.93, 515.47], [65.92, 527.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[80.38, 540.38], [80.08, 540.11], [79.06, 541.23], [75.26, 537.76], [76.29, 536.64], [75.94, 536.32], [80.29, 531.6], [80.77, 532.05], [87.72, 524.51], [92.92, 529.28], [91.47, 530.85], [91.8, 531.17], [85.83, 537.64], [85.5, 537.34], [83.95, 539.0], [82.71, 537.86], [80.38, 540.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[71.11, 531.28], [69.0, 529.27], [69.7, 528.55], [67.91, 526.83], [78.29, 516.06], [83.03, 520.59], [78.72, 525.07], [77.88, 524.26], [71.11, 531.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[118.53, 516.77], [114.5, 513.14], [113.36, 514.39], [109.79, 511.18], [118.88, 501.15], [126.48, 507.98], [118.53, 516.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[110.49, 509.88], [103.51, 503.75], [111.39, 494.85], [118.37, 500.99], [110.49, 509.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[102.39, 502.58], [98.84, 499.29], [98.61, 499.55], [94.56, 495.8], [100.72, 489.2], [104.25, 492.46], [104.48, 492.2], [108.56, 495.97], [102.39, 502.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[127.69, 500.76], [115.82, 490.08], [121.56, 483.75], [133.43, 494.43], [132.92, 494.99], [134.05, 496.0], [129.04, 501.52], [127.91, 500.51], [127.69, 500.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[135.4, 494.0], [132.21, 491.19], [131.78, 491.7], [127.52, 487.95], [127.96, 487.46], [124.49, 484.4], [129.3, 478.97], [140.21, 488.58], [135.4, 494.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[143.19, 485.88], [125.46, 469.86], [133.44, 461.09], [150.38, 476.41], [148.24, 478.77], [149.01, 479.48], [143.19, 485.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.224, "pop": 112, "jobs": 0}}, {"shape": {"outer": [[154.8, 472.59], [139.89, 459.83], [144.55, 454.43], [158.28, 466.19], [157.15, 467.5], [158.32, 468.5], [154.8, 472.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[160.93, 463.9], [149.21, 453.36], [151.55, 450.78], [152.71, 451.82], [155.24, 449.03], [165.8, 458.53], [160.93, 463.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[177.33, 444.19], [164.61, 431.84], [169.83, 426.49], [182.55, 438.84], [177.33, 444.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[168.91, 456.12], [154.53, 443.02], [157.48, 439.81], [159.21, 441.37], [161.93, 438.4], [175.52, 450.77], [173.41, 453.08], [172.49, 452.24], [168.91, 456.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[7.27, 364.04], [5.83, 362.79], [5.62, 363.04], [-1.67, 356.73], [-0.25, 355.1], [-3.39, 352.38], [0.32, 348.13], [10.99, 357.37], [10.6, 357.82], [11.8, 358.85], [7.27, 364.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[13.62, 356.21], [2.22, 346.49], [7.94, 339.83], [19.34, 349.54], [13.62, 356.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[21.05, 350.42], [7.13, 338.47], [12.72, 331.98], [25.66, 343.07], [24.43, 344.5], [25.43, 345.35], [21.05, 350.42]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[29.52, 340.09], [11.45, 323.83], [20.71, 313.61], [38.78, 329.88], [29.52, 340.09]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[40.21, 325.87], [28.01, 314.67], [33.93, 308.26], [46.14, 319.46], [40.21, 325.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[40.13, 497.72], [34.75, 492.66], [36.84, 490.45], [36.01, 489.66], [39.27, 486.22], [38.54, 485.53], [40.85, 483.09], [44.23, 486.26], [45.38, 485.04], [48.96, 488.4], [40.13, 497.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[88.38, 489.77], [83.98, 486.0], [84.36, 485.55], [82.97, 484.37], [88.56, 477.89], [94.36, 482.84], [88.38, 489.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[82.06, 480.28], [75.66, 474.64], [80.12, 469.6], [86.53, 475.25], [82.06, 480.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[147.42, 396.96], [133.15, 383.88], [137.32, 379.35], [138.28, 380.22], [139.56, 378.84], [141.01, 378.83], [153.54, 390.31], [147.42, 396.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[152.96, 387.74], [144.88, 380.31], [145.28, 379.87], [140.52, 375.49], [145.95, 369.62], [151.54, 374.76], [152.04, 374.22], [156.41, 378.24], [155.91, 378.78], [158.8, 381.44], [152.96, 387.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[160.81, 380.44], [149.88, 370.17], [155.09, 364.67], [166.01, 374.94], [160.81, 380.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[163.92, 371.67], [154.28, 362.71], [159.16, 357.5], [168.8, 366.45], [163.92, 371.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[174.97, 367.53], [167.23, 360.56], [167.7, 360.03], [160.26, 353.32], [165.12, 347.96], [177.06, 358.71], [176.61, 359.2], [179.87, 362.13], [177.77, 364.44], [178.9, 365.46], [177.19, 367.35], [176.06, 366.32], [174.97, 367.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[188.26, 373.27], [183.25, 368.74], [184.8, 367.04], [181.95, 364.48], [191.65, 353.83], [191.63, 353.05], [192.89, 351.67], [194.76, 351.54], [196.21, 352.83], [197.88, 351.0], [206.12, 358.44], [200.79, 364.3], [199.15, 362.81], [194.47, 367.93], [194.64, 370.06], [192.68, 372.2], [190.39, 372.24], [189.73, 371.65], [188.26, 373.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[202.31, 380.34], [196.23, 374.67], [201.56, 369.01], [201.0, 368.49], [208.15, 360.89], [214.77, 367.06], [202.31, 380.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[194.69, 421.37], [182.2, 409.74], [190.1, 401.31], [202.59, 412.93], [194.69, 421.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[187.18, 433.2], [176.15, 423.33], [182.16, 416.66], [193.19, 426.53], [192.53, 427.27], [194.15, 428.72], [189.18, 434.24], [187.56, 432.78], [187.18, 433.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[225.7, 396.52], [218.2, 389.49], [229.34, 377.69], [233.95, 382.02], [234.31, 381.64], [237.55, 384.68], [234.56, 387.85], [234.21, 387.52], [225.7, 396.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[213.83, 388.03], [207.94, 382.6], [209.77, 380.62], [208.52, 379.47], [219.26, 367.92], [226.73, 374.81], [221.39, 380.56], [221.05, 380.26], [213.83, 388.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[211.55, 405.63], [205.34, 400.02], [211.98, 392.7], [218.2, 398.31], [215.78, 400.96], [216.82, 401.9], [214.54, 404.41], [213.51, 403.48], [211.55, 405.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[178.62, 517.63], [162.98, 503.27], [163.55, 502.65], [162.77, 501.94], [164.91, 499.61], [164.49, 499.24], [168.31, 495.1], [168.65, 495.42], [170.32, 493.61], [171.17, 494.4], [173.45, 491.95], [172.91, 491.44], [176.8, 487.24], [177.34, 487.73], [183.15, 481.46], [181.59, 480.02], [185.6, 475.68], [190.95, 480.6], [190.72, 480.86], [192.6, 482.59], [191.49, 483.81], [192.48, 484.73], [193.0, 484.17], [196.42, 487.31], [197.03, 486.65], [199.72, 489.12], [198.6, 490.33], [200.19, 491.8], [201.55, 490.33], [205.91, 494.33], [204.58, 495.75], [207.6, 498.53], [199.28, 507.53], [202.22, 510.22], [196.19, 516.75], [193.08, 513.91], [192.03, 515.05], [189.14, 512.4], [190.2, 511.27], [187.12, 508.43], [183.38, 512.48], [184.47, 513.48], [182.1, 516.04], [181.01, 515.05], [178.62, 517.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.804, "pop": 402, "jobs": 0}}, {"shape": {"outer": [[163.6, 520.28], [153.77, 511.16], [159.46, 505.07], [169.28, 514.19], [163.6, 520.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[156.31, 531.29], [153.07, 528.39], [152.4, 529.14], [145.26, 522.76], [148.6, 519.05], [147.9, 518.42], [149.74, 516.39], [151.59, 518.06], [151.95, 517.66], [158.33, 523.39], [157.53, 524.27], [160.35, 526.81], [156.31, 531.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[134.04, 534.04], [142.22, 525.08], [153.34, 535.13], [145.16, 544.1], [139.92, 539.36], [139.24, 540.11], [136.74, 537.84], [137.41, 537.09], [134.04, 534.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[157.78, 551.82], [149.55, 544.11], [159.5, 533.57], [167.72, 541.28], [157.78, 551.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[76.55, 617.92], [65.94, 608.21], [73.05, 600.5], [83.66, 610.2], [76.55, 617.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[83.15, 606.76], [72.97, 597.0], [79.08, 590.68], [80.76, 592.29], [81.64, 591.38], [90.13, 599.52], [83.15, 606.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[93.54, 597.17], [84.61, 588.91], [85.44, 588.0], [83.47, 586.18], [89.0, 580.24], [92.68, 583.65], [93.91, 582.32], [98.5, 586.58], [97.41, 587.76], [100.72, 590.82], [98.46, 593.25], [97.78, 592.63], [93.54, 597.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[95.45, 628.75], [94.92, 628.26], [92.96, 630.38], [82.38, 620.62], [84.34, 618.51], [83.63, 617.85], [91.15, 609.75], [93.84, 612.23], [96.34, 609.54], [102.77, 615.47], [100.22, 618.23], [102.91, 620.71], [95.45, 628.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[108.28, 641.18], [97.51, 631.62], [107.5, 620.44], [114.38, 626.54], [113.49, 627.54], [117.38, 630.98], [108.28, 641.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[118.43, 651.45], [117.88, 650.94], [115.76, 653.26], [109.78, 647.8], [111.89, 645.5], [111.15, 644.82], [120.88, 634.21], [128.16, 640.82], [118.43, 651.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[125.37, 658.71], [124.99, 658.37], [123.71, 659.81], [118.62, 655.29], [119.91, 653.85], [119.47, 653.45], [128.96, 642.86], [131.68, 645.28], [133.37, 643.39], [136.56, 646.22], [125.37, 658.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[132.43, 665.34], [125.84, 659.37], [128.82, 656.1], [128.5, 655.81], [130.69, 653.41], [131.01, 653.7], [132.82, 651.72], [139.41, 657.69], [132.43, 665.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[139.75, 671.48], [133.01, 665.44], [141.62, 655.95], [146.65, 660.47], [144.53, 662.81], [146.22, 664.33], [139.75, 671.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[153.35, 682.43], [153.07, 682.15], [151.37, 683.96], [145.81, 678.75], [147.5, 676.95], [146.93, 676.41], [154.63, 668.25], [161.06, 674.27], [153.35, 682.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[132.58, 729.25], [128.44, 725.49], [128.81, 725.08], [126.27, 722.78], [126.76, 722.24], [125.56, 721.18], [126.62, 720.0], [125.73, 719.21], [128.84, 715.76], [130.77, 715.89], [134.14, 712.22], [141.79, 719.16], [132.58, 729.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[147.58, 740.0], [146.94, 739.41], [144.9, 741.64], [138.48, 735.79], [140.26, 733.86], [139.48, 733.15], [149.57, 722.17], [157.4, 729.31], [147.58, 740.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[168.33, 695.59], [159.31, 687.44], [160.05, 686.62], [157.93, 684.7], [163.04, 679.09], [165.16, 681.01], [165.85, 680.27], [169.41, 683.48], [171.33, 681.37], [176.79, 686.29], [168.33, 695.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[183.18, 709.36], [174.41, 701.04], [181.12, 694.03], [182.28, 695.13], [188.14, 689.01], [195.74, 696.23], [183.18, 709.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[191.21, 721.2], [185.26, 715.85], [195.08, 705.01], [201.03, 710.36], [191.21, 721.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[198.22, 726.87], [192.73, 721.86], [201.95, 711.85], [207.43, 716.87], [198.22, 726.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[209.93, 713.96], [200.92, 705.7], [206.6, 699.56], [215.61, 707.82], [209.93, 713.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[36.34, 255.0], [32.39, 251.29], [32.65, 251.01], [20.79, 239.88], [26.24, 234.12], [42.05, 248.96], [41.57, 249.46], [42.35, 250.18], [39.58, 253.12], [38.8, 252.38], [36.34, 255.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[26.13, 233.48], [32.48, 226.61], [45.85, 238.88], [39.5, 245.76], [26.13, 233.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[44.14, 230.94], [35.35, 222.64], [41.36, 216.32], [44.57, 219.35], [49.21, 214.48], [54.51, 219.48], [49.93, 224.29], [50.21, 224.55], [44.14, 230.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[62.55, 246.26], [56.1, 240.49], [66.6, 228.85], [73.05, 234.63], [62.55, 246.26]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.038, "pop": 0, "jobs": 38}}, {"shape": {"outer": [[69.14, 254.98], [62.06, 248.52], [74.01, 235.53], [81.09, 241.99], [69.14, 254.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[74.74, 259.83], [70.92, 256.31], [74.71, 252.23], [74.41, 251.95], [81.11, 244.76], [87.35, 250.53], [80.77, 257.6], [78.65, 255.64], [74.74, 259.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[85.06, 266.42], [84.7, 266.1], [83.94, 266.93], [80.34, 263.7], [81.09, 262.85], [78.48, 260.5], [87.25, 250.82], [93.83, 256.72], [85.06, 266.42]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[92.97, 275.61], [88.79, 271.79], [88.16, 272.47], [85.81, 270.32], [86.44, 269.65], [85.68, 268.96], [95.37, 258.39], [101.24, 263.75], [101.27, 265.14], [100.07, 266.45], [100.44, 266.79], [100.49, 267.43], [92.97, 275.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[82.01, 282.45], [72.11, 273.4], [76.94, 268.14], [86.85, 277.19], [82.01, 282.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[73.5, 289.36], [61.74, 278.61], [64.35, 275.78], [65.15, 276.51], [67.87, 273.56], [74.01, 279.18], [73.33, 279.93], [78.14, 284.33], [73.5, 289.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[40.93, 304.4], [43.59, 306.8], [44.01, 306.33], [48.58, 310.45], [48.2, 310.87], [51.48, 313.83], [46.59, 319.22], [36.08, 309.75], [40.93, 304.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[54.52, 310.43], [43.6, 300.88], [48.79, 295.0], [59.71, 304.55], [54.52, 310.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[53.47, 288.59], [64.84, 298.73], [59.85, 304.28], [51.08, 296.46], [53.14, 294.17], [50.54, 291.85], [53.47, 288.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[67.39, 296.79], [56.26, 286.99], [60.9, 281.75], [67.37, 287.45], [67.54, 287.26], [72.2, 291.37], [67.39, 296.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[88.6, 330.32], [80.13, 322.71], [88.56, 313.4], [97.02, 321.02], [88.6, 330.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[103.87, 316.93], [92.75, 307.06], [98.24, 300.91], [101.33, 303.65], [101.66, 303.28], [105.64, 306.81], [105.31, 307.18], [109.37, 310.79], [103.87, 316.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[111.35, 308.75], [108.26, 305.94], [108.03, 306.19], [104.16, 302.67], [104.39, 302.41], [99.66, 298.1], [105.19, 292.08], [116.89, 302.73], [111.35, 308.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[150.55, 273.82], [136.03, 260.75], [138.46, 258.07], [138.02, 257.68], [139.95, 255.56], [140.38, 255.94], [143.15, 252.9], [157.67, 265.97], [150.55, 273.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[157.07, 262.82], [148.61, 254.99], [149.03, 254.53], [144.74, 250.55], [150.51, 244.36], [153.82, 247.44], [154.31, 246.91], [158.86, 251.12], [158.53, 251.47], [163.42, 256.0], [157.07, 262.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[166.25, 252.73], [156.71, 244.04], [157.04, 243.68], [152.93, 239.94], [158.39, 233.99], [172.04, 246.43], [166.25, 252.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[176.27, 292.59], [173.09, 289.76], [172.4, 290.53], [166.1, 284.91], [170.31, 280.24], [173.12, 282.75], [174.57, 281.13], [181.24, 287.08], [176.27, 292.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[185.22, 285.3], [173.3, 274.77], [180.43, 266.76], [192.35, 277.3], [185.22, 285.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[194.62, 275.51], [190.72, 271.81], [190.36, 272.19], [186.38, 268.42], [186.75, 268.03], [183.75, 265.19], [188.54, 260.18], [191.34, 262.83], [192.2, 261.93], [196.23, 265.75], [195.37, 266.65], [199.41, 270.5], [194.62, 275.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[209.28, 262.12], [195.64, 249.78], [201.45, 243.42], [215.09, 255.76], [209.28, 262.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[6.23, 145.01], [2.95, 142.27], [6.8, 137.69], [5.87, 136.92], [10.49, 131.42], [16.13, 136.11], [14.76, 137.74], [19.29, 141.51], [13.63, 148.23], [10.88, 145.93], [8.34, 148.94], [7.32, 148.09], [6.09, 149.56], [3.92, 147.74], [6.23, 145.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[460.94, 317.12], [474.95, 330.09], [472.62, 332.62], [473.37, 333.28], [450.11, 358.46], [449.92, 358.67], [435.19, 345.32], [460.94, 317.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.606, "pop": 303, "jobs": 0}}, {"shape": {"outer": [[489.51, 346.31], [465.32, 372.25], [450.11, 358.46], [473.37, 333.28], [474.38, 332.43], [489.51, 346.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.586, "pop": 293, "jobs": 0}}, {"shape": {"outer": [[461.78, 206.69], [442.51, 189.82], [470.52, 159.14], [481.91, 169.32], [487.53, 174.38], [485.93, 176.06], [484.34, 177.74], [486.7, 179.85], [461.78, 206.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.674, "pop": 0, "jobs": 674}}, {"shape": {"outer": [[-1405.03, -1332.93], [-1399.02, -1339.48], [-1388.09, -1329.53], [-1386.59, -1331.17], [-1370.19, -1316.25], [-1379.45, -1306.14], [-1388.79, -1314.64], [-1390.72, -1312.52], [-1397.31, -1318.52], [-1397.94, -1319.1], [-1394.25, -1323.13], [-1403.04, -1331.12], [-1405.03, -1332.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[-2486.17, -854.83], [-2476.26, -866.52], [-2472.76, -863.54], [-2467.95, -869.12], [-2465.05, -866.63], [-2463.29, -868.67], [-2446.05, -853.9], [-2444.81, -852.84], [-2446.15, -851.27], [-2439.63, -845.69], [-2438.04, -847.53], [-2424.97, -836.34], [-2459.81, -835.15], [-2465.8, -840.27], [-2467.14, -838.7], [-2486.17, -854.83]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 729, "jobs": 0}}, {"shape": {"outer": [[-355.65, -468.32], [-324.58, -439.71], [-337.47, -425.8], [-322.38, -411.9], [-289.52, -447.34], [-335.69, -489.84], [-353.59, -470.53], [-355.65, -468.32]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 4295, "jobs": 0}}, {"shape": {"outer": [[-1315.06, -122.55], [-1314.2, -122.58], [-1314.16, -119.44], [-1314.46, -119.43], [-1314.41, -118.52], [-1311.52, -118.61], [-1311.51, -118.33], [-1263.4, -120.59], [-1263.86, -128.91], [-1262.65, -128.96], [-1262.97, -135.72], [-1264.07, -135.67], [-1264.35, -143.67], [-1280.18, -142.97], [-1280.22, -143.68], [-1285.13, -143.46], [-1285.18, -142.47], [-1294.75, -142.02], [-1294.89, -143.01], [-1299.71, -142.88], [-1299.75, -141.88], [-1312.56, -141.3], [-1312.55, -141.17], [-1315.62, -141.11], [-1315.6, -140.09], [-1315.15, -140.12], [-1315.07, -136.79], [-1315.64, -136.78], [-1315.06, -122.55]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1254, "jobs": 0}}, {"shape": {"outer": [[21.77, 158.84], [26.83, 163.02], [36.99, 152.78], [30.05, 146.97], [27.79, 149.03], [26.1, 149.65], [23.99, 152.42], [24.03, 153.76], [21.87, 156.36], [22.99, 157.62], [21.77, 158.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[34.41, 171.13], [46.35, 158.54], [42.48, 154.8], [40.99, 156.34], [38.53, 154.27], [28.04, 165.6], [34.41, 171.13]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[45.22, 177.32], [45.16, 175.19], [54.11, 165.03], [47.79, 160.07], [40.79, 167.63], [41.19, 168.19], [37.14, 172.37], [42.42, 177.31], [45.22, 177.32]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[40.29, 150.9], [54.86, 163.43], [61.29, 156.54], [47.43, 143.25], [40.29, 150.9]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[62.02, 152.11], [70.8, 143.73], [56.53, 130.89], [48.66, 139.42], [62.02, 152.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[125.29, 120.14], [146.01, 139.38], [126.45, 160.3], [119.87, 154.18], [117.0, 157.25], [114.66, 155.09], [108.99, 161.14], [100.49, 153.08], [97.25, 150.14], [108.3, 138.32], [125.29, 120.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.655, "pop": 0, "jobs": 655}}, {"shape": {"outer": [[100.49, 153.08], [87.82, 166.34], [76.55, 178.15], [74.67, 180.13], [82.37, 187.43], [81.68, 188.13], [88.81, 194.89], [89.54, 194.12], [96.36, 200.59], [108.67, 187.7], [97.77, 177.37], [111.24, 163.26], [108.99, 161.14], [100.49, 153.08]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1164, "jobs": 0}}, {"shape": {"outer": [[57.06, 193.95], [67.89, 182.19], [95.2, 207.18], [84.46, 218.82], [75.9, 210.98], [76.12, 210.74], [64.44, 200.05], [64.12, 200.4], [57.06, 193.95]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.816, "pop": 408, "jobs": 0}}, {"shape": {"outer": [[92.12, 219.26], [92.22, 221.0], [93.83, 222.46], [95.65, 222.45], [93.57, 224.72], [96.81, 227.65], [98.46, 225.84], [101.68, 228.76], [109.92, 219.72], [99.94, 210.69], [92.12, 219.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[103.87, 236.23], [112.82, 244.22], [113.06, 243.96], [114.79, 245.5], [120.34, 239.32], [118.62, 237.78], [119.08, 237.27], [110.12, 229.27], [103.87, 236.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[121.6, 237.76], [128.07, 230.74], [117.31, 220.9], [114.99, 223.41], [114.09, 222.58], [109.94, 227.09], [121.6, 237.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[119.13, 301.84], [105.99, 290.11], [117.74, 277.05], [130.87, 288.78], [119.13, 301.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.198, "pop": 0, "jobs": 198}}, {"shape": {"outer": [[130.72, 293.11], [156.64, 316.41], [145.92, 328.23], [120.02, 304.93], [130.72, 293.11]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.778, "pop": 389, "jobs": 0}}, {"shape": {"outer": [[171.93, 339.36], [185.08, 351.41], [184.88, 351.62], [187.06, 353.62], [184.12, 356.79], [182.02, 354.86], [179.82, 357.23], [166.61, 345.13], [171.93, 339.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[180.67, 345.05], [186.68, 338.57], [179.36, 331.82], [173.34, 338.3], [180.67, 345.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1218.8, 483.48], [1225.27, 476.62], [1220.78, 472.41], [1214.3, 479.26], [1218.8, 483.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1226.83, 463.91], [1221.43, 458.76], [1218.7, 461.61], [1218.22, 461.14], [1214.68, 464.83], [1215.16, 465.29], [1212.28, 468.29], [1212.56, 468.56], [1211.68, 469.48], [1213.37, 471.08], [1214.25, 470.17], [1217.4, 473.18], [1220.29, 470.17], [1220.56, 470.43], [1226.83, 463.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1178.61, 439.62], [1182.51, 435.4], [1183.22, 436.05], [1190.25, 428.42], [1183.87, 422.57], [1172.93, 434.42], [1178.61, 439.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1188.96, 457.88], [1197.25, 448.73], [1196.62, 448.17], [1198.41, 446.19], [1193.76, 442.02], [1183.68, 453.14], [1188.96, 457.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1207.0, 467.65], [1210.87, 463.29], [1211.16, 463.53], [1215.18, 459.0], [1209.46, 453.95], [1201.55, 462.85], [1207.0, 467.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1204.72, 458.24], [1211.09, 450.99], [1204.04, 444.84], [1203.51, 445.46], [1203.01, 445.01], [1199.06, 449.5], [1202.24, 452.28], [1200.36, 454.42], [1204.72, 458.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1181.39, 423.5], [1175.82, 418.78], [1168.31, 427.59], [1168.61, 427.84], [1167.11, 429.6], [1172.38, 434.06], [1181.39, 423.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1158.88, 479.45], [1168.24, 469.05], [1163.16, 464.52], [1159.79, 468.27], [1158.94, 467.51], [1152.96, 474.16], [1158.88, 479.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1173.02, 488.37], [1180.33, 480.25], [1174.57, 475.12], [1175.15, 474.47], [1171.1, 470.85], [1162.23, 480.72], [1166.08, 484.16], [1157.55, 493.65], [1157.71, 493.8], [1156.9, 494.7], [1161.2, 498.53], [1161.97, 497.68], [1165.15, 500.51], [1174.71, 489.88], [1173.02, 488.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.198, "pop": 0, "jobs": 198}}, {"shape": {"outer": [[1177.48, 521.67], [1164.37, 510.17], [1184.87, 486.98], [1196.21, 496.94], [1187.76, 506.5], [1189.53, 508.05], [1177.48, 521.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.326, "pop": 0, "jobs": 326}}, {"shape": {"outer": [[1427.78, 736.55], [1437.0, 744.66], [1450.89, 728.96], [1441.66, 720.85], [1427.78, 736.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.165, "pop": 0, "jobs": 165}}, {"shape": {"outer": [[-2947.25, -1249.94], [-2934.38, -1264.6], [-2923.79, -1255.37], [-2936.66, -1240.72], [-2947.25, -1249.94]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.153, "pop": 0, "jobs": 153}}, {"shape": {"outer": [[-2929.26, -1232.69], [-2907.9, -1256.52], [-2898.73, -1248.37], [-2920.08, -1224.53], [-2929.26, -1232.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.314, "pop": 157, "jobs": 0}}, {"shape": {"outer": [[-2903.7, -1210.97], [-2885.3, -1233.24], [-2870.04, -1220.71], [-2876.18, -1213.29], [-2874.3, -1211.75], [-2876.08, -1209.61], [-2874.56, -1208.37], [-2878.43, -1203.67], [-2876.92, -1202.43], [-2881.15, -1197.32], [-2883.09, -1198.92], [-2885.49, -1196.02], [-2903.7, -1210.97]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.694, "pop": 347, "jobs": 0}}, {"shape": {"outer": [[-2806.25, -1129.37], [-2800.18, -1124.25], [-2783.6, -1143.75], [-2789.67, -1148.87], [-2806.25, -1129.37]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.057, "pop": 0, "jobs": 57}}, {"shape": {"outer": [[-2800.18, -1124.25], [-2794.02, -1118.72], [-2792.59, -1120.3], [-2791.09, -1122.07], [-2776.73, -1138.96], [-2772.79, -1143.58], [-2779.17, -1148.96], [-2800.18, -1124.25]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.174, "pop": 0, "jobs": 174}}, {"shape": {"outer": [[-2791.09, -1122.07], [-2776.73, -1138.96], [-2762.13, -1126.63], [-2765.9, -1122.19], [-2778.09, -1107.86], [-2780.41, -1109.82], [-2781.03, -1109.08], [-2783.6, -1111.25], [-2782.75, -1112.26], [-2787.06, -1115.89], [-2788.38, -1114.33], [-2791.32, -1116.81], [-2790.13, -1118.21], [-2792.59, -1120.3], [-2791.09, -1122.07]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.134, "pop": 0, "jobs": 134}}, {"shape": {"outer": [[-2778.09, -1107.86], [-2765.9, -1122.19], [-2758.48, -1115.91], [-2760.27, -1113.8], [-2770.65, -1101.59], [-2778.09, -1107.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.117, "pop": 0, "jobs": 117}}, {"shape": {"outer": [[-2770.65, -1101.59], [-2764.12, -1096.08], [-2753.73, -1108.29], [-2760.27, -1113.8], [-2770.65, -1101.59]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.077, "pop": 0, "jobs": 77}}, {"shape": {"outer": [[-2750.75, -1080.81], [-2744.18, -1075.2], [-2739.14, -1081.06], [-2738.43, -1081.89], [-2739.28, -1082.61], [-2736.39, -1085.96], [-2735.37, -1085.09], [-2731.47, -1089.63], [-2738.2, -1095.39], [-2750.75, -1080.81]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[-2744.18, -1075.2], [-2739.14, -1081.06], [-2738.03, -1080.13], [-2730.85, -1088.66], [-2725.13, -1083.88], [-2725.58, -1083.36], [-2724.88, -1082.78], [-2718.48, -1090.34], [-2712.86, -1085.64], [-2723.82, -1072.66], [-2724.25, -1073.04], [-2731.05, -1065.01], [-2731.22, -1065.16], [-2732.16, -1065.02], [-2734.59, -1067.02], [-2734.59, -1068.13], [-2736.61, -1069.81], [-2737.13, -1069.19], [-2744.18, -1075.2]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.205, "pop": 0, "jobs": 205}}, {"shape": {"outer": [[-2729.21, -1063.99], [-2721.93, -1072.66], [-2721.41, -1072.22], [-2716.97, -1077.52], [-2710.85, -1072.42], [-2722.55, -1058.46], [-2723.24, -1059.02], [-2724.21, -1058.67], [-2726.77, -1060.76], [-2726.69, -1061.9], [-2729.21, -1063.99]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.1, "pop": 0, "jobs": 100}}, {"shape": {"outer": [[-2722.25, -1056.44], [-2716.44, -1063.26], [-2712.94, -1060.3], [-2709.85, -1063.94], [-2709.34, -1063.76], [-2708.48, -1064.78], [-2708.05, -1064.41], [-2706.51, -1066.2], [-2710.5, -1069.6], [-2704.43, -1076.7], [-2697.64, -1070.93], [-2699.73, -1068.48], [-2696.56, -1065.8], [-2702.33, -1059.05], [-2701.42, -1058.27], [-2704.84, -1054.27], [-2705.89, -1055.16], [-2708.73, -1051.83], [-2709.46, -1052.46], [-2712.84, -1048.49], [-2722.25, -1056.44]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.085, "pop": 0, "jobs": 85}}, {"shape": {"outer": [[-1920.53, -724.27], [-1921.02, -733.21], [-1901.84, -734.27], [-1901.35, -725.32], [-1920.53, -724.27]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.11, "pop": 0, "jobs": 110}}, {"shape": {"outer": [[-1930.71, -722.73], [-1937.1, -722.49], [-1937.47, -732.42], [-1931.08, -732.66], [-1930.71, -722.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.041, "pop": 0, "jobs": 41}}, {"shape": {"outer": [[-1941.67, -722.02], [-1937.75, -722.17], [-1938.15, -731.79], [-1942.07, -731.63], [-1941.67, -722.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.024, "pop": 0, "jobs": 24}}, {"shape": {"outer": [[-2583.72, -555.02], [-2567.74, -555.53], [-2567.8, -557.46], [-2567.19, -557.48], [-2567.53, -568.21], [-2568.14, -568.2], [-2568.19, -569.84], [-2572.53, -569.7], [-2572.67, -574.08], [-2568.45, -574.21], [-2568.5, -576.06], [-2567.76, -576.08], [-2568.1, -586.87], [-2568.85, -586.85], [-2568.9, -588.48], [-2584.77, -587.97], [-2584.52, -580.07], [-2577.04, -580.31], [-2576.96, -577.67], [-2582.34, -577.5], [-2581.98, -565.99], [-2576.84, -566.16], [-2576.75, -563.3], [-2583.98, -563.07], [-2583.72, -555.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[2286.74, 1795.3], [2300.83, 1781.21], [2292.54, 1772.98], [2278.45, 1787.06], [2286.74, 1795.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.149, "pop": 0, "jobs": 149}}, {"shape": {"outer": [[2272.69, 1781.34], [2286.77, 1767.25], [2292.54, 1772.98], [2278.45, 1787.06], [2272.69, 1781.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.104, "pop": 0, "jobs": 104}}, {"shape": {"outer": [[2303.57, 1719.6], [2309.76, 1696.57], [2310.87, 1692.47], [2311.44, 1692.58], [2317.32, 1693.82], [2318.49, 1689.28], [2322.0, 1690.24], [2324.84, 1691.01], [2324.13, 1693.23], [2316.34, 1723.05], [2303.57, 1719.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.258, "pop": 0, "jobs": 258}}, {"shape": {"outer": [[2316.34, 1723.05], [2329.88, 1726.7], [2335.73, 1705.53], [2330.83, 1704.32], [2329.35, 1703.96], [2331.94, 1694.96], [2324.13, 1693.23], [2316.34, 1723.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.245, "pop": 0, "jobs": 245}}, {"shape": {"outer": [[2524.65, 1854.21], [2533.28, 1819.4], [2535.66, 1819.99], [2540.06, 1802.25], [2546.9, 1803.94], [2554.08, 1805.86], [2568.26, 1809.2], [2563.75, 1827.41], [2554.92, 1825.23], [2554.55, 1826.74], [2546.4, 1859.56], [2528.51, 1855.16], [2524.65, 1854.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.856, "pop": 0, "jobs": 856}}, {"shape": {"outer": [[2779.24, 1838.77], [2782.86, 1819.74], [2794.43, 1822.61], [2793.78, 1825.77], [2795.82, 1826.18], [2794.55, 1832.43], [2798.1, 1833.15], [2796.49, 1841.74], [2795.37, 1846.38], [2785.13, 1843.25], [2779.24, 1838.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.219, "pop": 0, "jobs": 219}}, {"shape": {"outer": [[2853.79, 1887.3], [2853.63, 1881.75], [2857.4, 1882.67], [2862.43, 1883.9], [2861.6, 1889.48], [2856.64, 1888.09], [2853.79, 1887.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.03, "pop": 0, "jobs": 30}}, {"shape": {"outer": [[2927.25, 1901.45], [2933.27, 1902.92], [2928.68, 1921.61], [2922.66, 1920.13], [2927.25, 1901.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.076, "pop": 0, "jobs": 76}}, {"shape": {"outer": [[2928.68, 1921.61], [2933.27, 1902.92], [2941.08, 1904.8], [2934.52, 1930.25], [2932.26, 1938.7], [2925.36, 1934.42], [2928.68, 1921.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[2585.73, 1570.59], [2602.43, 1570.28], [2621.12, 1570.58], [2620.62, 1541.1], [2591.76, 1540.49], [2591.25, 1559.18], [2591.22, 1559.99], [2586.41, 1559.79], [2585.73, 1570.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.594, "pop": 0, "jobs": 594}}, {"shape": {"outer": [[2541.89, 1616.24], [2622.63, 1671.22], [2627.27, 1668.91], [2622.24, 1579.58], [2603.15, 1580.33], [2602.43, 1570.28], [2585.73, 1570.59], [2574.07, 1562.65], [2567.79, 1558.36], [2555.23, 1576.32], [2559.87, 1579.75], [2540.73, 1609.96], [2541.89, 1616.24]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3640}}, {"shape": {"outer": [[117.21, 550.25], [124.58, 556.77], [124.06, 557.36], [129.9, 562.53], [129.19, 563.33], [133.95, 567.55], [134.57, 566.84], [141.64, 573.09], [128.06, 588.34], [121.44, 582.5], [121.71, 582.21], [118.6, 579.48], [115.74, 582.7], [118.4, 585.05], [112.0, 592.24], [106.67, 587.53], [106.4, 587.84], [99.54, 581.76], [101.99, 579.01], [100.77, 577.94], [101.27, 577.38], [95.61, 572.37], [98.24, 569.41], [99.31, 570.34], [102.4, 566.89], [103.04, 567.45], [106.45, 563.59], [104.89, 562.21], [108.14, 558.55], [108.65, 559.0], [113.46, 553.59], [113.9, 553.98], [117.21, 550.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.786, "pop": 393, "jobs": 0}}, {"shape": {"outer": [[144.44, 622.22], [143.99, 621.81], [143.27, 622.6], [140.48, 620.06], [141.19, 619.27], [136.33, 614.83], [134.95, 616.32], [131.73, 613.39], [133.11, 611.88], [126.13, 605.53], [132.67, 598.4], [136.31, 601.73], [139.12, 598.68], [129.56, 589.97], [139.54, 579.1], [139.98, 579.5], [143.45, 575.74], [149.97, 581.69], [149.65, 582.03], [153.99, 585.98], [154.36, 585.58], [160.89, 591.55], [160.53, 591.94], [163.83, 594.95], [164.09, 594.67], [167.18, 597.48], [144.44, 622.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.782, "pop": 391, "jobs": 0}}, {"shape": {"outer": [[171.81, 638.84], [169.14, 636.38], [168.17, 637.42], [165.46, 634.93], [166.09, 634.26], [163.02, 631.44], [162.57, 631.92], [158.24, 627.94], [161.96, 623.92], [162.16, 624.11], [164.66, 621.39], [163.28, 620.12], [163.11, 620.3], [156.71, 614.43], [159.55, 611.36], [159.15, 611.0], [169.67, 599.62], [173.32, 602.97], [173.09, 603.22], [175.89, 605.79], [176.29, 605.36], [180.66, 609.37], [180.18, 609.89], [181.59, 611.19], [182.04, 610.7], [186.67, 614.94], [186.22, 615.43], [188.36, 617.4], [188.78, 616.94], [191.55, 619.47], [188.72, 622.53], [188.46, 622.29], [186.75, 624.13], [187.27, 624.61], [181.06, 631.33], [180.54, 630.86], [175.96, 635.82], [175.22, 635.14], [171.81, 638.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.584, "pop": 292, "jobs": 0}}, {"shape": {"outer": [[200.42, 657.15], [185.89, 644.03], [197.96, 630.77], [212.49, 643.91], [200.42, 657.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[217.48, 705.82], [207.62, 696.71], [213.3, 690.6], [219.76, 696.57], [219.3, 697.06], [222.71, 700.2], [217.48, 705.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[222.07, 697.94], [210.93, 687.69], [213.37, 685.05], [212.19, 683.97], [214.64, 681.35], [215.81, 682.43], [217.19, 680.93], [228.33, 691.18], [227.87, 691.69], [229.04, 692.76], [223.5, 698.75], [222.33, 697.67], [222.07, 697.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[251.72, 638.54], [245.37, 632.56], [252.0, 625.57], [253.43, 626.92], [256.77, 623.4], [260.63, 627.04], [257.49, 630.34], [258.55, 631.33], [251.72, 638.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[261.02, 643.71], [260.73, 643.45], [259.58, 644.69], [254.52, 640.02], [255.76, 638.68], [255.46, 638.4], [265.47, 627.6], [271.13, 632.81], [261.02, 643.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[242.11, 629.55], [232.06, 620.54], [251.86, 598.63], [261.9, 607.64], [242.11, 629.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.318, "pop": 159, "jobs": 0}}, {"shape": {"outer": [[229.59, 618.23], [222.65, 611.93], [235.76, 597.59], [242.7, 603.88], [229.59, 618.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[224.68, 608.04], [224.47, 607.86], [222.21, 610.31], [216.46, 605.05], [218.73, 602.6], [218.45, 602.34], [229.84, 590.01], [236.06, 595.71], [224.68, 608.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[213.51, 603.42], [213.18, 603.12], [211.81, 604.6], [206.89, 600.08], [208.25, 598.6], [207.84, 598.21], [215.22, 590.25], [215.86, 590.83], [217.1, 589.48], [220.26, 592.38], [219.01, 593.73], [220.88, 595.45], [213.51, 603.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[207.13, 597.99], [201.65, 593.0], [205.81, 588.47], [205.31, 588.02], [208.06, 585.01], [208.56, 585.47], [209.05, 584.93], [214.53, 589.92], [207.13, 597.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[171.09, 561.15], [163.33, 554.35], [172.98, 543.4], [180.74, 550.18], [171.09, 561.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[181.05, 567.72], [180.51, 567.25], [179.57, 568.32], [178.01, 566.96], [178.95, 565.89], [176.29, 563.58], [181.59, 557.54], [186.35, 561.67], [181.05, 567.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[192.27, 585.13], [186.69, 580.36], [194.34, 571.49], [199.92, 576.27], [192.27, 585.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[198.92, 590.22], [194.06, 586.06], [196.47, 583.27], [195.49, 582.43], [199.82, 577.41], [205.65, 582.4], [198.92, 590.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[100.04, 381.7], [88.1, 370.52], [91.36, 367.07], [97.72, 373.03], [100.67, 369.9], [104.43, 373.42], [101.94, 376.06], [103.75, 377.76], [100.04, 381.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[107.12, 374.36], [98.07, 366.37], [99.33, 364.96], [97.72, 363.54], [102.07, 358.65], [103.58, 359.99], [103.98, 359.53], [113.12, 367.62], [107.12, 374.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[114.81, 366.58], [100.02, 353.81], [106.15, 346.76], [120.94, 359.53], [114.81, 366.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[130.01, 350.01], [126.17, 346.5], [125.33, 347.4], [119.35, 341.95], [120.55, 340.65], [119.64, 339.83], [118.88, 340.65], [115.28, 337.36], [119.95, 332.29], [134.28, 345.38], [130.01, 350.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[124.13, 354.99], [118.16, 349.87], [119.3, 348.55], [115.99, 345.71], [111.34, 351.09], [120.62, 359.05], [124.13, 354.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[216.95, 314.69], [203.99, 303.18], [198.09, 309.78], [199.68, 311.19], [199.18, 311.75], [202.38, 314.59], [202.46, 315.83], [204.8, 317.92], [206.07, 317.87], [210.56, 321.85], [211.57, 320.71], [212.08, 321.16], [216.55, 316.17], [216.04, 315.72], [216.95, 314.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[250.53, 367.97], [238.06, 356.69], [245.83, 348.15], [258.32, 359.43], [250.53, 367.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[226.6, 348.78], [220.93, 343.64], [221.99, 342.49], [221.48, 342.04], [229.41, 333.35], [229.73, 333.64], [231.27, 331.95], [234.92, 335.27], [233.38, 336.96], [235.58, 338.96], [226.6, 348.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[222.33, 340.3], [221.77, 339.77], [220.24, 341.39], [215.72, 337.2], [217.25, 335.56], [216.74, 335.1], [222.81, 328.62], [228.41, 333.81], [222.33, 340.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[206.53, 302.87], [208.93, 300.25], [208.52, 299.88], [211.6, 296.5], [216.8, 301.21], [214.29, 303.96], [218.26, 307.54], [215.51, 310.56], [212.21, 307.58], [211.99, 307.82], [206.53, 302.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[230.66, 307.99], [235.31, 302.88], [227.17, 295.53], [227.4, 295.28], [223.58, 291.83], [223.35, 292.08], [220.34, 289.36], [215.7, 294.47], [215.98, 294.72], [214.3, 296.57], [219.86, 301.58], [220.01, 301.41], [226.49, 307.26], [228.01, 305.59], [230.66, 307.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[235.81, 289.65], [233.61, 287.66], [234.04, 287.18], [226.45, 280.34], [221.95, 285.3], [222.26, 285.58], [220.1, 287.97], [229.59, 296.5], [229.85, 296.21], [232.16, 298.27], [234.33, 295.88], [232.03, 293.81], [235.81, 289.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[238.84, 289.53], [227.86, 279.49], [233.08, 273.81], [236.63, 277.05], [237.16, 276.48], [242.0, 280.91], [241.47, 281.48], [244.06, 283.84], [238.84, 289.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[250.95, 277.51], [241.14, 268.6], [240.82, 268.95], [238.28, 266.64], [233.22, 272.17], [245.57, 283.39], [250.95, 277.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[271.2, 287.05], [265.7, 282.12], [272.11, 275.03], [270.35, 273.45], [270.19, 273.63], [265.21, 269.16], [267.51, 266.62], [266.77, 265.94], [269.88, 262.5], [270.63, 263.17], [273.35, 260.17], [278.46, 264.76], [275.55, 267.98], [277.78, 269.99], [281.91, 265.43], [287.04, 270.04], [276.04, 282.19], [275.8, 281.96], [271.2, 287.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.177, "pop": 0, "jobs": 177}}, {"shape": {"outer": [[262.97, 353.65], [277.94, 336.81], [276.35, 335.41], [278.23, 333.29], [279.82, 334.7], [294.69, 317.97], [282.46, 307.18], [276.29, 314.13], [278.34, 315.93], [275.38, 319.25], [251.25, 297.97], [236.93, 314.08], [242.98, 319.42], [244.74, 317.43], [263.24, 333.77], [259.35, 338.14], [256.37, 335.51], [250.24, 342.41], [262.97, 353.65]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 928, "jobs": 0}}, {"shape": {"outer": [[265.04, 264.69], [263.44, 263.22], [261.41, 265.41], [257.46, 261.8], [259.48, 259.6], [259.14, 259.29], [267.91, 249.76], [273.81, 255.16], [265.04, 264.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[264.17, 300.72], [267.1, 297.53], [266.53, 297.01], [269.04, 294.27], [268.38, 293.67], [271.81, 289.92], [277.94, 295.5], [272.12, 301.85], [271.68, 301.44], [268.63, 304.78], [264.17, 300.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[282.88, 289.37], [275.91, 283.13], [283.96, 274.19], [284.22, 274.42], [287.01, 271.32], [287.85, 272.06], [288.64, 271.19], [294.51, 276.45], [282.88, 289.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[284.02, 290.16], [294.88, 278.38], [301.41, 284.36], [290.55, 296.14], [284.02, 290.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[214.01, 549.79], [203.62, 540.4], [208.53, 535.0], [210.25, 536.55], [211.54, 535.12], [209.83, 533.57], [214.08, 528.89], [224.15, 537.99], [223.35, 538.87], [224.29, 539.72], [221.78, 542.48], [220.84, 541.64], [218.73, 543.94], [219.06, 544.23], [218.67, 544.67], [219.75, 545.65], [217.29, 548.36], [216.2, 547.38], [214.01, 549.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[217.12, 524.66], [226.39, 514.44], [230.38, 518.04], [231.12, 517.23], [238.25, 523.65], [237.44, 524.55], [240.24, 527.07], [239.38, 528.01], [241.47, 529.88], [242.99, 528.22], [249.66, 534.23], [248.94, 535.03], [252.36, 538.11], [243.5, 547.88], [240.21, 544.91], [238.93, 546.34], [236.19, 543.87], [236.93, 543.06], [234.03, 540.45], [233.57, 540.97], [230.62, 538.3], [231.69, 537.12], [229.05, 534.74], [227.72, 536.2], [224.93, 533.69], [226.15, 532.34], [223.92, 530.33], [222.55, 531.84], [219.38, 528.99], [220.52, 527.72], [217.12, 524.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.414, "pop": 207, "jobs": 0}}, {"shape": {"outer": [[261.05, 564.2], [258.29, 561.77], [257.32, 562.85], [254.87, 560.68], [255.77, 559.66], [253.15, 557.35], [252.09, 558.55], [249.36, 556.13], [250.31, 555.06], [246.79, 551.96], [255.85, 541.79], [259.38, 544.9], [260.24, 543.93], [267.97, 550.77], [267.27, 551.56], [270.09, 554.04], [261.05, 564.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[286.1, 586.02], [278.36, 579.01], [277.03, 580.47], [274.53, 578.2], [275.74, 576.88], [275.4, 576.58], [276.21, 575.7], [274.43, 574.09], [273.19, 575.45], [272.84, 575.13], [271.6, 576.49], [268.96, 574.09], [270.06, 572.9], [267.55, 570.62], [277.16, 560.09], [279.87, 562.55], [280.84, 561.49], [288.11, 568.07], [287.26, 569.01], [290.19, 571.66], [287.49, 574.62], [292.42, 579.1], [286.1, 586.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[284.53, 630.27], [283.43, 629.26], [281.54, 631.3], [277.23, 627.31], [278.18, 626.28], [273.07, 621.56], [280.69, 613.37], [291.21, 623.09], [284.53, 630.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[291.59, 619.67], [281.66, 610.56], [283.81, 608.24], [282.67, 607.18], [285.06, 604.6], [286.37, 605.8], [286.96, 605.16], [288.74, 603.24], [287.45, 602.06], [289.87, 599.45], [290.98, 600.48], [298.02, 592.89], [305.29, 599.56], [300.75, 604.47], [303.49, 606.98], [300.98, 609.69], [301.94, 610.56], [295.26, 617.78], [294.21, 616.82], [291.59, 619.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[309.08, 600.11], [316.3, 592.11], [302.67, 579.9], [295.45, 587.88], [309.08, 600.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[281.88, 527.6], [290.54, 518.18], [285.34, 513.43], [285.11, 513.68], [283.83, 512.52], [284.21, 512.11], [278.0, 506.46], [277.63, 506.87], [273.83, 503.42], [274.18, 503.05], [268.45, 497.83], [268.1, 498.21], [266.88, 497.08], [267.27, 496.66], [262.3, 492.14], [253.4, 501.84], [259.87, 507.72], [260.26, 507.29], [266.73, 513.18], [265.98, 514.0], [268.09, 515.92], [268.84, 515.1], [269.54, 515.74], [269.21, 516.09], [272.81, 519.38], [271.94, 520.33], [273.51, 521.76], [274.38, 520.81], [274.53, 520.94], [274.86, 520.59], [275.79, 521.43], [274.92, 522.36], [276.66, 523.94], [277.2, 523.33], [281.88, 527.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.396, "pop": 198, "jobs": 0}}, {"shape": {"outer": [[294.78, 541.46], [285.07, 532.7], [308.64, 506.79], [318.35, 515.56], [294.78, 541.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[300.05, 547.9], [312.29, 534.34], [322.12, 543.15], [309.88, 556.72], [303.92, 551.37], [303.55, 551.78], [301.07, 549.55], [301.44, 549.14], [300.05, 547.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[489.4, 586.56], [443.21, 544.98], [475.84, 509.0], [514.89, 545.34], [524.4, 533.97], [532.28, 540.03], [489.4, 586.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2011}}, {"shape": {"outer": [[437.9, 540.65], [470.3, 505.48], [447.77, 484.88], [415.37, 520.05], [437.9, 540.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.934, "pop": 0, "jobs": 934}}, {"shape": {"outer": [[416.7, 578.74], [433.43, 560.16], [425.22, 552.82], [424.39, 553.75], [409.58, 540.52], [410.6, 539.39], [402.44, 532.09], [385.53, 550.88], [393.58, 558.08], [394.32, 557.26], [409.21, 570.57], [408.47, 571.38], [416.7, 578.74]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.702, "pop": 351, "jobs": 0}}, {"shape": {"outer": [[423.68, 632.05], [436.3, 618.27], [402.69, 587.71], [390.07, 601.49], [423.68, 632.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.543, "pop": 0, "jobs": 543}}, {"shape": {"outer": [[376.42, 564.4], [402.08, 587.04], [388.82, 601.97], [363.15, 579.32], [376.42, 564.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.437, "pop": 0, "jobs": 437}}, {"shape": {"outer": [[315.14, 658.91], [303.96, 648.79], [309.13, 643.11], [312.23, 645.91], [313.21, 644.84], [321.29, 652.16], [315.14, 658.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[310.31, 641.63], [315.88, 635.57], [318.95, 638.37], [319.34, 637.95], [323.72, 641.95], [323.34, 642.37], [327.89, 646.52], [322.33, 652.58], [310.31, 641.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[280.28, 668.39], [285.89, 662.3], [293.26, 654.3], [306.36, 666.28], [293.37, 680.37], [280.28, 668.39]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.095, "pop": 0, "jobs": 95}}, {"shape": {"outer": [[213.83, 664.02], [207.99, 658.73], [212.39, 653.92], [212.16, 653.72], [218.79, 646.47], [224.85, 651.97], [213.83, 664.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[221.79, 672.51], [216.21, 667.57], [221.13, 662.03], [220.43, 661.41], [224.47, 656.87], [225.17, 657.5], [227.9, 654.43], [233.49, 659.37], [221.79, 672.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[230.27, 674.8], [225.01, 670.14], [227.87, 666.92], [227.47, 666.57], [233.84, 659.41], [239.51, 664.41], [236.41, 667.9], [236.91, 668.36], [233.55, 672.13], [233.04, 671.68], [230.27, 674.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[187.97, 678.44], [180.75, 671.77], [185.96, 666.18], [193.17, 672.85], [187.97, 678.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[219.3, 743.07], [220.35, 741.92], [219.75, 741.37], [226.49, 733.91], [227.11, 734.47], [228.45, 732.98], [234.25, 738.19], [233.69, 738.81], [237.81, 742.52], [237.2, 743.19], [237.78, 743.71], [231.34, 750.84], [229.45, 749.15], [228.38, 750.32], [226.76, 748.87], [226.32, 749.36], [219.3, 743.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[254.37, 722.86], [243.44, 712.98], [263.7, 690.71], [274.23, 700.26], [274.63, 700.58], [254.37, 722.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.354, "pop": 177, "jobs": 0}}, {"shape": {"outer": [[282.81, 725.0], [280.26, 722.7], [278.6, 724.51], [275.77, 721.95], [277.47, 720.08], [276.8, 719.48], [286.8, 708.53], [292.32, 713.52], [288.63, 717.56], [288.63, 718.61], [282.81, 725.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[290.09, 729.15], [289.6, 728.71], [286.12, 732.59], [281.93, 728.85], [294.14, 715.22], [298.83, 719.4], [290.09, 729.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[245.98, 764.64], [236.88, 756.35], [241.03, 751.82], [240.48, 751.31], [243.48, 748.05], [242.35, 747.01], [245.49, 743.6], [249.27, 747.05], [247.51, 748.97], [254.51, 755.34], [245.98, 764.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[296.3, 739.7], [291.14, 735.03], [302.72, 722.35], [307.87, 727.03], [296.3, 739.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[302.49, 743.7], [297.5, 739.07], [309.03, 726.69], [314.02, 731.32], [302.49, 743.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[306.24, 747.49], [309.55, 743.86], [308.49, 742.89], [315.94, 734.74], [316.56, 735.31], [317.45, 734.35], [322.72, 739.13], [322.0, 739.92], [322.72, 740.58], [317.39, 746.39], [317.78, 746.74], [315.53, 749.19], [314.37, 748.13], [310.99, 751.81], [306.24, 747.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[317.61, 760.97], [311.15, 755.29], [320.55, 744.68], [327.01, 750.37], [317.61, 760.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[324.89, 765.65], [319.69, 760.82], [328.13, 751.76], [333.34, 756.58], [324.89, 765.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[270.45, 717.91], [271.24, 718.56], [267.22, 723.27], [262.21, 719.01], [269.68, 710.28], [273.91, 713.86], [270.45, 717.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[279.21, 712.42], [288.62, 701.92], [281.66, 695.74], [272.09, 706.44], [275.53, 709.48], [274.84, 710.25], [277.99, 713.05], [278.85, 712.1], [279.21, 712.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[312.41, 668.45], [321.78, 677.04], [321.26, 677.61], [323.12, 679.31], [317.71, 685.17], [318.48, 685.87], [311.15, 693.81], [297.0, 680.84], [309.6, 667.2], [311.74, 669.17], [312.41, 668.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[194.53, 790.01], [181.44, 778.21], [190.37, 768.26], [196.84, 774.05], [203.58, 780.06], [194.53, 790.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[222.52, 830.19], [216.31, 824.7], [217.99, 822.82], [206.53, 812.69], [204.63, 814.83], [198.32, 809.26], [205.76, 800.9], [203.73, 799.12], [209.75, 792.37], [211.41, 793.83], [212.47, 794.77], [215.64, 791.22], [238.63, 811.52], [234.42, 816.25], [235.68, 817.37], [236.81, 818.36], [231.92, 823.86], [229.82, 821.99], [222.52, 830.19]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.83, "pop": 415, "jobs": 0}}, {"shape": {"outer": [[198.93, 458.6], [204.95, 451.74], [217.69, 462.83], [211.67, 469.7], [198.93, 458.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[219.91, 460.65], [212.01, 453.71], [212.44, 453.22], [208.12, 449.42], [213.1, 443.78], [225.33, 454.54], [219.91, 460.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[214.79, 444.45], [219.11, 439.63], [222.72, 442.85], [223.93, 441.51], [233.47, 450.01], [227.94, 456.17], [214.79, 444.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[222.44, 433.78], [226.41, 429.59], [230.8, 433.71], [231.14, 433.35], [235.23, 437.19], [234.39, 438.08], [238.99, 442.38], [234.22, 447.43], [225.47, 439.22], [226.32, 438.33], [223.31, 435.5], [223.77, 435.02], [222.44, 433.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[227.98, 429.15], [228.21, 428.88], [226.77, 427.57], [230.51, 423.5], [231.95, 424.81], [232.37, 424.36], [238.86, 430.28], [234.47, 435.06], [227.98, 429.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[244.11, 430.53], [233.79, 420.98], [241.2, 413.02], [251.53, 422.57], [244.11, 430.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[247.74, 411.85], [243.89, 408.36], [252.17, 399.3], [256.01, 402.79], [247.74, 411.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[252.9, 416.81], [249.44, 413.71], [250.77, 412.25], [249.88, 411.45], [256.89, 403.71], [261.23, 407.59], [252.9, 416.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[256.98, 421.55], [253.84, 418.63], [255.59, 416.75], [254.99, 416.2], [262.41, 408.25], [266.66, 412.2], [259.47, 419.9], [258.96, 419.43], [256.98, 421.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[270.85, 437.48], [264.68, 431.83], [273.29, 422.47], [275.31, 424.31], [277.01, 422.46], [281.79, 426.83], [278.36, 430.54], [277.75, 429.99], [270.85, 437.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[245.81, 494.2], [232.75, 482.3], [262.27, 450.15], [266.22, 453.75], [256.87, 463.95], [258.21, 465.18], [254.53, 469.18], [262.29, 476.26], [245.81, 494.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.436, "pop": 218, "jobs": 0}}, {"shape": {"outer": [[232.34, 482.39], [225.42, 476.07], [235.95, 464.62], [236.77, 465.37], [245.82, 455.51], [250.83, 460.1], [241.94, 469.76], [243.04, 470.76], [232.34, 482.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[310.74, 473.54], [291.45, 455.56], [300.22, 446.21], [319.52, 464.18], [310.74, 473.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[291.06, 500.64], [283.39, 493.46], [284.34, 492.44], [278.8, 487.25], [277.84, 488.27], [269.62, 480.57], [271.27, 478.82], [270.93, 478.5], [273.96, 475.29], [274.3, 475.61], [278.25, 471.42], [277.68, 470.89], [281.14, 467.23], [281.7, 467.76], [283.84, 465.48], [291.83, 472.97], [290.33, 474.56], [295.97, 479.82], [297.08, 478.64], [304.9, 485.96], [303.33, 487.63], [303.83, 488.09], [300.58, 491.54], [300.08, 491.07], [296.21, 495.17], [296.83, 495.76], [293.5, 499.27], [292.89, 498.7], [291.06, 500.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.47, "pop": 235, "jobs": 0}}, {"shape": {"outer": [[319.7, 483.99], [315.0, 479.89], [326.26, 467.07], [328.55, 469.06], [329.01, 468.55], [332.83, 471.87], [332.57, 472.18], [333.14, 472.68], [325.13, 481.81], [324.56, 481.31], [322.57, 483.57], [321.16, 482.34], [319.7, 483.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[338.36, 524.83], [328.79, 516.06], [352.17, 490.72], [361.74, 499.49], [338.36, 524.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.358, "pop": 179, "jobs": 0}}, {"shape": {"outer": [[353.86, 554.59], [334.57, 537.21], [339.66, 531.6], [358.96, 548.98], [353.86, 554.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[359.73, 548.2], [350.34, 539.55], [354.92, 534.61], [357.29, 536.79], [358.16, 535.85], [362.42, 539.78], [361.58, 540.68], [364.35, 543.22], [359.73, 548.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[357.22, 530.27], [361.28, 525.72], [362.34, 526.65], [363.46, 525.4], [372.43, 533.35], [368.48, 537.78], [367.26, 536.7], [366.04, 538.07], [357.22, 530.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[375.96, 529.63], [373.91, 527.75], [372.27, 529.52], [368.36, 525.93], [378.03, 515.48], [383.98, 520.96], [375.96, 529.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[369.33, 524.34], [364.12, 519.63], [366.51, 517.02], [366.07, 516.62], [369.44, 512.91], [369.88, 513.31], [372.55, 510.38], [377.76, 515.09], [369.33, 524.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[363.19, 515.0], [357.59, 509.69], [365.28, 501.66], [370.87, 506.97], [363.19, 515.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[349.93, 592.74], [360.38, 581.13], [394.3, 611.38], [383.85, 623.01], [349.93, 592.74]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1193}}, {"shape": {"outer": [[328.86, 643.97], [334.16, 638.13], [330.29, 634.65], [330.55, 634.37], [326.67, 630.87], [326.41, 631.15], [321.68, 626.88], [318.59, 630.3], [319.76, 631.35], [317.55, 633.78], [328.86, 643.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[347.27, 651.45], [346.36, 650.62], [344.87, 652.27], [340.87, 648.66], [341.79, 647.64], [340.34, 646.34], [350.12, 635.57], [351.61, 636.91], [354.42, 633.82], [359.29, 638.21], [347.27, 651.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[359.43, 652.3], [353.61, 646.89], [360.76, 639.22], [361.21, 639.64], [362.58, 638.17], [367.54, 642.76], [366.28, 644.12], [366.7, 644.51], [359.43, 652.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[334.06, 772.23], [333.67, 771.89], [331.76, 774.05], [328.21, 770.95], [329.93, 769.0], [327.21, 766.64], [327.95, 765.8], [327.6, 765.5], [335.39, 756.64], [342.39, 762.76], [334.06, 772.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[342.58, 778.96], [341.17, 777.72], [338.33, 780.92], [332.96, 776.21], [338.32, 770.15], [337.69, 769.59], [342.91, 763.69], [350.32, 770.2], [342.58, 778.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[349.55, 783.55], [344.13, 777.86], [352.27, 770.18], [357.68, 775.88], [349.55, 783.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[355.17, 795.43], [349.16, 790.09], [358.65, 779.48], [359.07, 779.86], [360.78, 777.95], [365.92, 782.52], [364.11, 784.55], [364.56, 784.94], [355.17, 795.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[364.22, 800.48], [358.07, 794.76], [369.5, 782.57], [375.65, 788.29], [364.22, 800.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[391.75, 811.46], [379.47, 799.99], [384.17, 795.3], [385.32, 796.3], [385.65, 795.79], [397.1, 805.73], [391.75, 811.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[380.73, 822.83], [373.03, 815.92], [379.96, 808.25], [387.67, 815.17], [380.73, 822.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[359.79, 815.4], [353.34, 809.03], [361.3, 801.05], [367.74, 807.42], [359.79, 815.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[373.55, 833.11], [363.84, 823.85], [366.64, 820.94], [368.8, 823.01], [373.29, 818.33], [379.56, 824.32], [375.74, 828.31], [377.01, 829.51], [373.55, 833.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[364.93, 843.07], [356.23, 835.46], [357.18, 834.37], [354.56, 832.07], [359.95, 825.95], [369.17, 834.02], [366.4, 837.17], [368.5, 839.01], [364.93, 843.07]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[346.06, 856.93], [345.57, 856.49], [344.86, 857.29], [342.91, 855.54], [343.79, 854.56], [343.44, 854.25], [344.02, 853.61], [338.82, 848.93], [347.42, 839.43], [354.38, 845.68], [352.43, 847.83], [352.97, 848.32], [348.02, 853.79], [348.5, 854.23], [346.06, 856.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[334.1, 846.62], [322.1, 836.1], [331.68, 825.26], [343.68, 835.77], [334.1, 846.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[320.38, 832.95], [317.41, 830.24], [316.41, 831.34], [314.34, 829.45], [315.71, 827.96], [314.74, 827.07], [322.46, 818.66], [322.11, 818.35], [324.76, 815.46], [330.1, 820.33], [327.7, 822.93], [328.72, 823.87], [320.38, 832.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[313.0, 826.92], [307.58, 822.0], [317.64, 811.02], [323.05, 815.94], [313.0, 826.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[303.36, 819.68], [303.03, 819.37], [301.54, 820.98], [296.94, 816.79], [298.19, 815.43], [297.66, 814.93], [308.05, 803.63], [313.08, 808.23], [310.1, 811.47], [310.53, 811.88], [303.36, 819.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[296.23, 815.06], [290.96, 810.26], [296.71, 804.0], [296.37, 803.68], [299.99, 799.75], [305.03, 804.35], [299.28, 810.61], [299.85, 811.13], [296.23, 815.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[288.84, 810.28], [281.88, 803.92], [292.87, 792.0], [297.39, 796.13], [300.69, 792.56], [303.16, 794.83], [299.85, 798.42], [300.32, 798.85], [291.22, 808.74], [290.7, 808.26], [288.84, 810.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[280.63, 800.18], [274.26, 794.28], [283.87, 783.97], [284.52, 784.56], [286.25, 782.7], [291.98, 788.01], [280.63, 800.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[272.16, 790.19], [268.08, 786.51], [266.86, 787.85], [259.9, 781.61], [267.97, 772.7], [275.04, 779.06], [276.98, 776.93], [280.19, 779.82], [276.25, 784.18], [277.0, 784.85], [272.16, 790.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[258.12, 779.07], [250.41, 772.05], [259.39, 762.26], [261.01, 763.73], [260.34, 764.47], [261.21, 765.25], [259.87, 766.71], [261.96, 768.61], [260.52, 770.18], [263.65, 773.03], [258.12, 779.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[297.47, 779.89], [292.06, 775.04], [294.73, 772.08], [298.52, 767.92], [299.18, 767.19], [304.57, 772.03], [297.47, 779.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[282.35, 930.17], [270.88, 919.5], [271.36, 918.99], [268.53, 916.35], [275.22, 909.22], [277.79, 911.63], [279.85, 909.42], [291.57, 920.34], [282.35, 930.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[292.45, 916.56], [283.77, 908.71], [284.94, 907.42], [282.68, 905.38], [287.45, 900.13], [289.72, 902.17], [291.67, 900.04], [300.34, 907.89], [292.45, 916.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[272.16, 937.6], [264.44, 930.6], [265.84, 929.07], [262.59, 926.12], [262.82, 925.87], [261.96, 925.08], [265.14, 921.59], [266.07, 922.43], [268.19, 920.1], [279.1, 930.0], [272.16, 937.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[259.56, 954.89], [249.3, 945.61], [256.81, 937.38], [255.65, 936.32], [258.54, 933.15], [263.01, 937.19], [263.58, 936.56], [266.61, 939.31], [266.04, 939.93], [269.97, 943.47], [259.56, 954.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[300.82, 907.13], [306.6, 900.88], [300.54, 895.32], [294.76, 901.56], [300.82, 907.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[271.82, 901.84], [266.58, 897.02], [270.27, 893.02], [275.51, 897.85], [271.82, 901.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[295.39, 882.03], [287.29, 874.59], [297.83, 863.21], [298.34, 863.68], [300.09, 861.79], [307.67, 868.77], [295.39, 882.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[330.36, 940.79], [343.65, 925.8], [332.14, 915.68], [318.86, 930.67], [319.45, 931.2], [318.9, 931.82], [328.49, 940.25], [329.04, 939.64], [330.36, 940.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[316.98, 984.77], [305.41, 974.32], [313.0, 965.97], [315.47, 968.2], [314.02, 969.8], [323.12, 978.01], [316.98, 984.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[356.91, 965.93], [349.75, 959.56], [353.46, 955.43], [351.89, 954.04], [373.0, 930.53], [374.64, 932.01], [377.93, 928.35], [385.11, 934.75], [381.08, 939.24], [382.37, 940.39], [361.5, 963.64], [360.09, 962.39], [356.91, 965.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[345.98, 952.83], [341.94, 949.01], [339.68, 951.38], [336.47, 948.35], [338.06, 946.68], [335.05, 943.85], [340.52, 938.1], [341.3, 938.83], [346.96, 932.89], [347.3, 933.21], [349.49, 930.91], [355.23, 936.34], [352.97, 938.71], [356.77, 942.31], [348.5, 950.99], [348.1, 950.6], [345.98, 952.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[324.44, 949.54], [317.67, 943.24], [323.35, 937.16], [330.13, 943.46], [324.44, 949.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[291.46, 981.37], [284.02, 974.93], [292.5, 965.2], [299.95, 971.64], [291.46, 981.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[303.95, 1008.64], [299.16, 1004.34], [298.63, 1004.93], [290.48, 997.64], [293.57, 994.22], [292.76, 993.49], [296.81, 989.01], [297.62, 989.73], [299.01, 988.19], [303.56, 992.28], [303.17, 992.71], [306.67, 995.86], [303.73, 999.11], [308.61, 1003.48], [303.95, 1008.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[321.91, 1042.23], [338.26, 1024.34], [329.89, 1016.75], [320.07, 1027.51], [323.13, 1030.28], [318.41, 1035.45], [320.16, 1037.04], [318.36, 1039.02], [321.91, 1042.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[337.46, 1046.62], [336.47, 1045.75], [336.18, 1046.08], [331.79, 1042.17], [333.75, 1039.98], [330.82, 1037.38], [337.96, 1029.42], [346.59, 1037.1], [339.28, 1045.26], [338.95, 1044.97], [337.46, 1046.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[353.9, 1065.63], [346.03, 1058.4], [356.77, 1046.74], [359.22, 1048.99], [360.29, 1047.84], [362.63, 1049.99], [361.57, 1051.14], [364.65, 1053.96], [353.9, 1065.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[364.37, 1079.99], [355.75, 1072.19], [366.21, 1060.71], [367.28, 1061.68], [368.86, 1059.95], [371.77, 1062.59], [370.19, 1064.32], [373.93, 1067.69], [374.84, 1066.69], [377.7, 1069.28], [369.02, 1078.8], [367.07, 1077.04], [364.37, 1079.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[380.38, 1095.1], [368.74, 1084.77], [379.35, 1072.91], [382.16, 1075.4], [382.46, 1075.06], [383.28, 1075.8], [384.79, 1074.11], [388.8, 1077.67], [387.3, 1079.35], [388.42, 1080.36], [388.12, 1080.69], [390.99, 1083.24], [380.38, 1095.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[389.99, 1113.28], [383.62, 1107.17], [385.49, 1105.23], [382.83, 1102.67], [395.08, 1089.98], [404.96, 1099.45], [392.82, 1112.03], [391.99, 1111.23], [389.99, 1113.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[404.93, 1150.87], [396.27, 1142.87], [406.46, 1131.92], [406.64, 1132.1], [408.4, 1130.19], [416.59, 1137.75], [414.93, 1139.54], [415.22, 1139.8], [404.93, 1150.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[429.66, 1137.88], [419.26, 1128.23], [419.46, 1128.0], [417.71, 1126.38], [425.35, 1118.22], [437.05, 1129.08], [432.37, 1134.09], [432.81, 1134.5], [429.66, 1137.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[368.7, 1031.57], [362.95, 1026.27], [364.42, 1024.69], [363.87, 1024.2], [371.88, 1015.59], [372.88, 1016.51], [373.8, 1015.51], [378.43, 1019.78], [377.4, 1020.89], [378.45, 1021.86], [370.51, 1030.4], [370.12, 1030.04], [368.7, 1031.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[389.86, 1053.53], [379.92, 1044.28], [382.57, 1041.46], [381.73, 1040.67], [387.29, 1034.74], [398.08, 1044.76], [389.86, 1053.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[384.95, 1013.21], [373.69, 1002.87], [379.65, 996.43], [391.82, 1007.61], [390.96, 1008.54], [394.53, 1011.81], [391.32, 1015.28], [386.84, 1011.16], [384.95, 1013.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[387.07, 682.1], [382.06, 677.54], [391.6, 667.14], [396.61, 671.7], [387.07, 682.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[394.67, 691.86], [388.3, 685.87], [392.16, 681.8], [391.71, 681.38], [395.61, 677.27], [396.06, 677.69], [399.28, 674.3], [405.65, 680.29], [394.67, 691.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[410.38, 703.92], [408.89, 702.57], [406.09, 705.59], [403.21, 702.95], [406.01, 699.91], [404.34, 698.39], [411.19, 690.97], [411.56, 691.33], [414.33, 688.33], [419.99, 693.51], [410.38, 703.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[403.37, 695.11], [409.48, 688.69], [408.79, 688.03], [411.6, 685.08], [406.36, 680.12], [397.42, 689.49], [399.63, 691.58], [395.41, 696.0], [398.97, 699.37], [403.19, 694.95], [403.37, 695.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[386.4, 760.29], [379.38, 753.76], [389.69, 742.74], [396.72, 749.27], [386.4, 760.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[394.2, 766.96], [387.98, 761.02], [398.88, 749.69], [400.38, 751.11], [401.81, 749.62], [406.11, 753.72], [404.67, 755.21], [405.1, 755.62], [394.2, 766.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[410.79, 763.32], [404.69, 757.48], [401.68, 760.59], [401.39, 760.31], [397.69, 764.14], [397.99, 764.42], [394.05, 768.51], [396.62, 770.98], [397.3, 770.27], [400.81, 773.65], [410.79, 763.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[432.8, 764.14], [424.37, 756.45], [429.71, 750.63], [438.14, 758.32], [437.94, 758.54], [439.43, 759.89], [436.6, 762.98], [435.11, 761.63], [432.8, 764.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[426.82, 731.33], [411.67, 717.74], [419.54, 709.04], [434.68, 722.64], [426.82, 731.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[450.92, 813.04], [449.08, 811.33], [450.11, 810.23], [449.3, 809.49], [449.35, 808.84], [446.46, 806.18], [446.85, 805.74], [442.45, 801.69], [441.92, 802.04], [439.09, 799.55], [438.67, 799.82], [437.56, 798.78], [435.79, 800.66], [436.48, 801.31], [433.39, 804.59], [436.8, 807.78], [436.47, 808.13], [440.65, 812.03], [441.33, 811.31], [444.49, 814.27], [444.91, 813.81], [447.72, 816.44], [450.92, 813.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[451.56, 807.14], [447.94, 803.85], [447.37, 804.47], [442.89, 800.4], [443.37, 799.87], [440.01, 796.82], [445.86, 790.92], [457.16, 801.03], [451.56, 807.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[463.38, 794.58], [453.05, 785.46], [447.38, 791.83], [452.1, 795.99], [452.93, 796.08], [458.04, 800.59], [463.38, 794.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[463.81, 791.86], [456.09, 784.93], [456.37, 784.61], [454.1, 782.57], [458.5, 777.72], [468.49, 786.68], [463.81, 791.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[477.49, 776.01], [468.81, 768.33], [473.48, 763.1], [482.16, 770.78], [477.49, 776.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[488.44, 765.97], [485.42, 763.18], [486.35, 762.18], [482.38, 758.51], [481.38, 759.59], [477.86, 756.34], [475.15, 759.25], [475.58, 759.65], [473.72, 761.65], [480.72, 768.09], [481.03, 767.77], [484.12, 770.63], [488.44, 765.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[426.79, 747.35], [431.74, 741.87], [443.3, 752.24], [438.35, 757.72], [426.79, 747.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[406.83, 783.55], [407.76, 782.08], [419.53, 769.38], [419.92, 769.74], [421.89, 767.54], [425.46, 770.72], [423.44, 772.96], [426.75, 775.92], [415.17, 788.83], [411.93, 785.95], [410.86, 787.14], [406.83, 783.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[446.25, 751.24], [436.2, 742.73], [440.32, 737.88], [443.11, 740.25], [443.54, 739.75], [447.26, 742.91], [446.84, 743.4], [450.38, 746.4], [446.25, 751.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[454.3, 742.95], [453.43, 742.14], [453.14, 742.45], [450.4, 739.89], [450.09, 740.22], [444.58, 735.06], [446.02, 733.53], [442.97, 730.69], [451.45, 721.68], [461.16, 730.76], [456.45, 735.75], [458.91, 738.05], [454.3, 742.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[451.92, 824.09], [478.83, 794.63], [489.68, 804.47], [480.64, 814.38], [478.85, 812.76], [461.0, 832.32], [451.92, 824.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.416, "pop": 208, "jobs": 0}}, {"shape": {"outer": [[470.67, 840.88], [481.07, 829.69], [486.79, 834.96], [476.5, 846.38], [470.67, 840.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2921.87, -183.26], [-2932.33, -184.9], [-2932.0, -186.97], [-2937.75, -187.86], [-2935.16, -204.42], [-2929.01, -203.47], [-2929.61, -199.65], [-2926.95, -199.23], [-2926.71, -200.79], [-2919.3, -199.63], [-2921.87, -183.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-2890.52, -287.52], [-2892.62, -274.61], [-2875.55, -271.84], [-2874.36, -279.18], [-2871.86, -278.77], [-2873.96, -265.87], [-2862.25, -263.98], [-2860.57, -274.27], [-2859.07, -274.03], [-2857.73, -282.2], [-2890.52, -287.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.38, "pop": 190, "jobs": 0}}, {"shape": {"outer": [[-2982.24, -236.01], [-2993.73, -237.61], [-2991.13, -256.07], [-2979.63, -254.47], [-2982.24, -236.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2942.32, -148.55], [-2949.99, -149.73], [-2948.32, -160.52], [-2940.65, -159.34], [-2942.32, -148.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2895.28, -137.14], [-2887.07, -135.93], [-2884.81, -151.16], [-2893.03, -152.36], [-2895.28, -137.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2959.3, -179.86], [-2970.01, -181.54], [-2966.09, -206.28], [-2955.38, -204.58], [-2959.3, -179.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-2931.07, -142.67], [-2939.57, -143.9], [-2937.47, -158.4], [-2928.98, -157.17], [-2931.07, -142.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2908.81, -141.17], [-2917.38, -142.48], [-2915.21, -156.56], [-2906.64, -155.25], [-2908.81, -141.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2898.24, -137.95], [-2906.47, -139.18], [-2904.25, -153.81], [-2896.03, -152.58], [-2898.24, -137.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2911.43, -198.6], [-2912.83, -190.04], [-2908.33, -189.31], [-2908.76, -186.74], [-2904.83, -186.11], [-2903.01, -197.25], [-2911.43, -198.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2920.24, -143.04], [-2928.09, -144.54], [-2925.8, -156.48], [-2923.18, -155.98], [-2922.91, -157.4], [-2920.5, -156.94], [-2920.78, -155.52], [-2917.95, -154.98], [-2920.24, -143.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-320.67, -229.88], [-293.53, -259.96], [-278.06, -246.11], [-305.19, -216.02], [-320.67, -229.88]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2357}}, {"shape": {"outer": [[-2277.37, -1309.97], [-2274.48, -1294.46], [-2268.34, -1295.42], [-2268.92, -1298.33], [-2263.46, -1299.36], [-2263.79, -1300.72], [-2262.63, -1300.95], [-2263.8, -1307.64], [-2265.45, -1307.39], [-2266.47, -1312.14], [-2277.37, -1309.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2291.66, -1300.3], [-2291.64, -1292.6], [-2303.96, -1292.55], [-2303.92, -1301.13], [-2294.92, -1301.39], [-2294.89, -1300.21], [-2291.66, -1300.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2287.42, -1305.88], [-2287.3, -1301.51], [-2288.86, -1301.36], [-2288.74, -1293.95], [-2277.2, -1294.09], [-2277.65, -1306.26], [-2287.42, -1305.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2258.37, -1312.86], [-2250.65, -1312.99], [-2250.84, -1316.19], [-2249.28, -1316.24], [-2249.43, -1325.01], [-2247.19, -1325.18], [-2247.42, -1333.35], [-2261.0, -1332.86], [-2259.93, -1316.13], [-2258.56, -1316.07], [-2258.37, -1312.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[-2272.14, -1392.39], [-2271.86, -1390.02], [-2273.32, -1389.94], [-2272.71, -1378.6], [-2268.99, -1378.7], [-2268.94, -1376.86], [-2264.74, -1376.88], [-2264.75, -1379.0], [-2264.1, -1379.02], [-2264.48, -1390.19], [-2265.91, -1390.21], [-2266.09, -1392.69], [-2272.14, -1392.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2343.72, -1298.96], [-2333.74, -1298.96], [-2333.79, -1290.48], [-2343.56, -1290.3], [-2343.72, -1298.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2261.64, -1378.21], [-2261.35, -1363.91], [-2253.76, -1364.24], [-2253.82, -1366.13], [-2252.03, -1366.06], [-2252.42, -1375.4], [-2252.48, -1377.53], [-2250.16, -1379.73], [-2252.41, -1383.45], [-2256.15, -1381.22], [-2256.07, -1378.5], [-2261.64, -1378.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2245.47, -1377.68], [-2245.16, -1366.62], [-2232.63, -1366.98], [-2232.95, -1378.03], [-2245.47, -1377.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2437.03, -1326.23], [-2427.25, -1326.13], [-2426.77, -1309.57], [-2436.74, -1309.28], [-2437.03, -1326.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2408.46, -1326.08], [-2407.88, -1319.47], [-2404.36, -1319.57], [-2403.59, -1306.14], [-2393.24, -1307.02], [-2393.88, -1315.38], [-2390.75, -1315.67], [-2391.29, -1320.72], [-2387.77, -1320.83], [-2387.94, -1326.87], [-2408.46, -1326.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-2478.01, -1376.91], [-2477.8, -1362.87], [-2465.68, -1363.03], [-2466.21, -1377.48], [-2469.88, -1377.49], [-2469.87, -1379.67], [-2478.09, -1379.83], [-2478.01, -1376.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2357.13, -1299.75], [-2357.11, -1292.35], [-2365.91, -1292.1], [-2366.01, -1295.6], [-2368.94, -1295.51], [-2368.91, -1294.39], [-2375.21, -1294.46], [-2375.42, -1306.16], [-2363.9, -1306.14], [-2363.85, -1304.49], [-2361.36, -1304.56], [-2361.22, -1299.83], [-2357.13, -1299.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2410.64, -1328.66], [-2410.55, -1315.61], [-2420.99, -1315.24], [-2421.28, -1322.49], [-2423.08, -1322.5], [-2423.07, -1326.89], [-2421.4, -1326.94], [-2421.44, -1328.16], [-2410.64, -1328.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2414.17, -1298.48], [-2409.05, -1298.48], [-2408.83, -1291.15], [-2413.88, -1291.01], [-2414.17, -1298.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2427.37, -1301.11], [-2421.1, -1301.29], [-2421.1, -1291.09], [-2426.79, -1291.0], [-2427.37, -1301.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2290.51, -1392.42], [-2287.07, -1392.52], [-2287.25, -1394.64], [-2282.51, -1394.9], [-2283.03, -1404.94], [-2294.08, -1404.98], [-2293.42, -1394.23], [-2290.68, -1394.18], [-2290.51, -1392.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2247.88, -1409.26], [-2247.64, -1405.01], [-2240.04, -1405.23], [-2240.29, -1409.48], [-2247.88, -1409.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2408.42, -1378.85], [-2407.44, -1377.69], [-2407.39, -1367.76], [-2389.71, -1368.26], [-2389.89, -1378.8], [-2396.66, -1378.71], [-2397.39, -1379.64], [-2398.83, -1380.07], [-2400.49, -1379.79], [-2404.27, -1383.12], [-2408.42, -1378.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-2420.15, -1382.2], [-2420.32, -1375.92], [-2419.13, -1375.84], [-2419.1, -1366.25], [-2432.74, -1365.86], [-2433.1, -1374.14], [-2430.97, -1374.31], [-2431.01, -1375.86], [-2426.86, -1375.98], [-2427.03, -1382.12], [-2420.15, -1382.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2344.0, -1406.46], [-2333.67, -1406.63], [-2333.56, -1398.48], [-2343.64, -1398.19], [-2344.0, -1406.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2349.11, -1410.57], [-2348.84, -1396.85], [-2360.82, -1396.39], [-2361.22, -1410.34], [-2349.11, -1410.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2377.71, -1391.63], [-2377.82, -1399.67], [-2363.69, -1399.96], [-2363.69, -1391.8], [-2377.71, -1391.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2304.18, -1284.04], [-2304.1, -1272.79], [-2288.79, -1273.35], [-2289.3, -1282.69], [-2292.27, -1282.71], [-2292.32, -1284.26], [-2304.18, -1284.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2489.12, -1376.13], [-2493.4, -1379.81], [-2487.96, -1386.0], [-2483.59, -1382.04], [-2489.12, -1376.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2227.3, -1333.06], [-2218.2, -1333.32], [-2217.82, -1319.79], [-2226.91, -1319.53], [-2227.3, -1333.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2244.03, -1333.16], [-2232.98, -1333.49], [-2232.52, -1317.42], [-2243.56, -1317.1], [-2244.03, -1333.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2211.59, -1334.58], [-2211.18, -1320.27], [-2201.7, -1320.54], [-2202.11, -1334.85], [-2211.59, -1334.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2191.93, -1317.8], [-2192.79, -1333.95], [-2183.41, -1334.22], [-2182.36, -1318.07], [-2191.93, -1317.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2182.09, -1305.75], [-2181.49, -1295.07], [-2196.12, -1294.5], [-2196.56, -1305.05], [-2182.09, -1305.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2184.18, -1315.61], [-2183.73, -1307.51], [-2189.56, -1307.34], [-2190.01, -1315.37], [-2184.18, -1315.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2433.46, -1402.52], [-2433.05, -1388.09], [-2421.07, -1388.79], [-2421.62, -1399.79], [-2426.84, -1399.52], [-2426.82, -1402.83], [-2433.46, -1402.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2419.87, -1413.09], [-2420.36, -1429.88], [-2432.47, -1430.01], [-2431.74, -1412.75], [-2419.87, -1413.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2404.02, -1444.32], [-2404.09, -1446.8], [-2397.57, -1447.11], [-2397.47, -1435.4], [-2403.87, -1435.09], [-2403.91, -1436.39], [-2408.31, -1436.62], [-2406.76, -1444.71], [-2404.02, -1444.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2393.35, -1446.01], [-2393.16, -1437.53], [-2391.28, -1437.59], [-2391.17, -1432.81], [-2383.95, -1432.98], [-2384.27, -1446.22], [-2393.35, -1446.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2395.7, -1431.78], [-2395.67, -1426.46], [-2389.37, -1426.39], [-2389.52, -1431.83], [-2395.7, -1431.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2344.35, -1448.89], [-2344.38, -1437.65], [-2340.34, -1437.64], [-2340.2, -1432.67], [-2334.98, -1432.71], [-2334.96, -1448.81], [-2344.35, -1448.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2350.31, -1445.8], [-2349.86, -1433.51], [-2360.6, -1433.11], [-2361.05, -1445.4], [-2350.31, -1445.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2366.8, -1446.05], [-2366.64, -1442.43], [-2363.13, -1442.57], [-2362.73, -1433.53], [-2373.79, -1433.04], [-2374.34, -1445.72], [-2366.8, -1446.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2199.3, -1437.27], [-2191.7, -1437.49], [-2191.81, -1432.98], [-2199.28, -1432.53], [-2199.3, -1437.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2210.62, -1438.6], [-2210.27, -1430.33], [-2216.56, -1430.26], [-2216.79, -1438.54], [-2210.62, -1438.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2216.03, -1453.24], [-2204.16, -1453.58], [-2203.92, -1441.04], [-2215.32, -1440.71], [-2216.03, -1453.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2199.34, -1438.8], [-2199.81, -1455.0], [-2187.83, -1455.47], [-2187.47, -1439.03], [-2199.34, -1438.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2218.87, -1452.8], [-2218.08, -1438.03], [-2228.17, -1437.74], [-2228.25, -1452.53], [-2218.87, -1452.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2204.72, -1425.89], [-2190.13, -1426.26], [-2189.89, -1417.47], [-2201.27, -1417.16], [-2201.34, -1419.39], [-2204.55, -1419.31], [-2204.72, -1425.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2200.95, -1407.38], [-2193.12, -1407.4], [-2193.11, -1404.94], [-2190.37, -1404.94], [-2190.33, -1392.8], [-2203.81, -1392.75], [-2203.82, -1399.3], [-2200.92, -1399.32], [-2200.95, -1407.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2203.34, -1375.38], [-2190.53, -1375.86], [-2190.33, -1373.14], [-2187.83, -1372.98], [-2187.76, -1366.35], [-2202.95, -1366.15], [-2203.34, -1375.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2214.75, -1375.64], [-2214.43, -1364.59], [-2206.54, -1364.8], [-2206.86, -1375.86], [-2214.75, -1375.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2227.92, -1380.86], [-2227.6, -1366.25], [-2216.32, -1366.5], [-2216.63, -1381.11], [-2227.92, -1380.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2221.65, -1405.15], [-2221.73, -1399.47], [-2215.91, -1399.51], [-2216.19, -1405.06], [-2221.65, -1405.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2188.66, -1377.42], [-2188.89, -1385.26], [-2190.7, -1385.2], [-2190.73, -1385.89], [-2201.34, -1385.56], [-2201.06, -1376.41], [-2190.63, -1376.73], [-2190.64, -1377.36], [-2188.66, -1377.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2303.44, -1258.96], [-2302.9, -1245.18], [-2293.9, -1245.51], [-2294.66, -1259.36], [-2303.44, -1258.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2287.93, -1255.23], [-2287.69, -1246.08], [-2275.77, -1246.38], [-2276.0, -1255.53], [-2287.93, -1255.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2276.04, -1258.82], [-2276.4, -1266.5], [-2271.65, -1266.78], [-2271.5, -1258.95], [-2276.04, -1258.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2272.64, -1256.56], [-2272.45, -1246.24], [-2263.76, -1246.41], [-2263.78, -1248.08], [-2261.2, -1248.13], [-2261.34, -1255.17], [-2263.43, -1255.13], [-2263.46, -1256.72], [-2272.64, -1256.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2255.55, -1251.96], [-2255.9, -1262.02], [-2245.2, -1262.4], [-2244.78, -1250.18], [-2252.41, -1249.91], [-2252.49, -1252.07], [-2255.55, -1251.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2237.18, -1286.59], [-2236.47, -1279.49], [-2242.94, -1279.02], [-2243.43, -1285.84], [-2237.18, -1286.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2252.05, -1277.32], [-2251.76, -1269.72], [-2259.67, -1269.13], [-2260.12, -1277.02], [-2252.05, -1277.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2237.76, -1265.25], [-2237.63, -1259.02], [-2236.39, -1259.04], [-2236.26, -1252.33], [-2228.82, -1252.49], [-2229.05, -1264.07], [-2233.18, -1263.98], [-2233.21, -1265.34], [-2237.76, -1265.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2225.67, -1270.48], [-2225.24, -1257.28], [-2215.98, -1257.57], [-2216.42, -1270.79], [-2225.67, -1270.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2210.71, -1269.16], [-2210.62, -1266.05], [-2211.64, -1266.01], [-2211.28, -1254.02], [-2199.75, -1254.37], [-2200.09, -1265.46], [-2202.85, -1265.37], [-2202.98, -1269.4], [-2210.71, -1269.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2183.87, -1288.62], [-2183.8, -1280.86], [-2193.51, -1280.37], [-2193.96, -1288.26], [-2183.87, -1288.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2192.63, -1267.31], [-2182.62, -1267.54], [-2182.55, -1259.99], [-2192.41, -1259.71], [-2192.63, -1267.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-622.99, -90.06], [-622.36, -77.39], [-613.37, -87.19], [-612.63, -87.34], [-611.87, -88.14], [-611.65, -89.07], [-611.76, -89.66], [-612.07, -90.26], [-612.38, -90.57], [-612.82, -90.85], [-613.77, -91.01], [-614.68, -90.72], [-615.13, -90.44], [-622.99, -90.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-477.58, -97.45], [-477.01, -78.99], [-484.02, -78.81], [-485.21, -97.14], [-477.58, -97.45]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-477.58, -97.45], [-477.01, -78.99], [-476.95, -77.47], [-475.99, -76.52], [-477.25, -74.11], [-466.93, -65.41], [-463.08, -65.65], [-463.29, -68.29], [-464.39, -97.98], [-477.58, -97.45]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-464.39, -97.98], [-451.55, -98.5], [-450.33, -68.65], [-463.29, -68.29], [-464.39, -97.98]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.538, "pop": 269, "jobs": 0}}, {"shape": {"outer": [[-540.76, -94.35], [-539.69, -79.91], [-541.88, -77.36], [-547.82, -82.55], [-547.61, -84.66], [-556.05, -92.22], [-555.42, -93.58], [-543.03, -94.23], [-540.76, -94.35]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.086, "pop": 0, "jobs": 86}}, {"shape": {"outer": [[-513.26, -71.36], [-519.38, -76.93], [-520.55, -95.4], [-506.21, -96.16], [-504.94, -74.42], [-507.96, -74.28], [-507.64, -66.67], [-508.09, -66.65], [-513.26, -71.36]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.474, "pop": 237, "jobs": 0}}, {"shape": {"outer": [[-506.21, -96.16], [-504.94, -74.42], [-497.18, -74.76], [-494.22, -74.88], [-495.15, -96.74], [-506.21, -96.16]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.2, "pop": 0, "jobs": 200}}, {"shape": {"outer": [[-1306.88, -101.07], [-1312.6, -100.9], [-1312.65, -104.16], [-1313.5, -104.13], [-1313.88, -112.4], [-1313.03, -112.41], [-1313.13, -115.64], [-1290.37, -116.58], [-1290.19, -113.21], [-1289.03, -111.73], [-1288.82, -106.32], [-1289.66, -104.99], [-1288.65, -82.48], [-1288.6, -81.51], [-1300.58, -81.12], [-1301.34, -96.11], [-1306.65, -95.88], [-1306.88, -101.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.4, "pop": 0, "jobs": 400}}, {"shape": {"outer": [[-1260.26, -77.95], [-1262.23, -112.58], [-1262.52, -117.75], [-1268.45, -117.43], [-1268.4, -116.59], [-1274.31, -116.26], [-1274.34, -116.92], [-1279.66, -116.61], [-1279.6, -115.57], [-1288.02, -115.07], [-1287.57, -107.46], [-1286.66, -107.51], [-1285.79, -93.33], [-1287.21, -93.24], [-1286.55, -82.56], [-1286.36, -79.47], [-1279.11, -79.88], [-1278.65, -77.01], [-1274.72, -77.24], [-1274.75, -77.75], [-1264.48, -78.31], [-1264.45, -77.8], [-1260.26, -77.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.62, "pop": 0, "jobs": 620}}, {"shape": {"outer": [[-1636.71, -260.92], [-1637.87, -280.8], [-1658.31, -279.62], [-1659.39, -298.28], [-1648.29, -298.92], [-1648.42, -301.18], [-1619.6, -302.85], [-1617.23, -262.04], [-1636.71, -260.92]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1683, "jobs": 0}}, {"shape": {"outer": [[-2580.18, -895.7], [-2580.13, -889.13], [-2580.05, -878.39], [-2588.59, -880.59], [-2589.12, -895.69], [-2585.4, -895.7], [-2580.18, -895.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.09, "pop": 0, "jobs": 90}}, {"shape": {"outer": [[-2937.7, -821.08], [-2935.23, -821.14], [-2935.2, -819.75], [-2927.11, -819.95], [-2927.14, -821.34], [-2925.04, -821.39], [-2925.31, -832.34], [-2919.13, -832.49], [-2919.21, -835.81], [-2916.18, -835.88], [-2916.51, -849.68], [-2936.88, -849.18], [-2936.85, -847.94], [-2939.65, -847.87], [-2939.58, -844.9], [-2942.44, -844.83], [-2942.23, -836.0], [-2938.06, -836.1], [-2937.7, -821.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.354, "pop": 0, "jobs": 354}}, {"shape": {"outer": [[-2300.21, -1082.08], [-2296.94, -1079.3], [-2297.78, -1078.32], [-2295.31, -1076.21], [-2294.47, -1077.19], [-2283.67, -1068.0], [-2284.55, -1066.97], [-2282.05, -1064.85], [-2281.17, -1065.87], [-2279.62, -1064.56], [-2277.64, -1067.16], [-2276.52, -1066.3], [-2274.42, -1069.06], [-2275.55, -1069.91], [-2273.6, -1072.47], [-2289.63, -1086.28], [-2278.22, -1086.54], [-2278.09, -1080.61], [-2275.94, -1078.15], [-2269.86, -1078.37], [-2270.18, -1092.91], [-2279.14, -1092.7], [-2279.17, -1094.12], [-2282.79, -1094.03], [-2282.77, -1092.62], [-2294.73, -1092.35], [-2294.76, -1093.6], [-2298.19, -1093.52], [-2298.16, -1092.27], [-2300.44, -1092.22], [-2300.21, -1082.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.43, "pop": 215, "jobs": 0}}, {"shape": {"outer": [[-2910.73, -1053.01], [-2907.82, -1063.7], [-2895.78, -1060.45], [-2898.69, -1049.76], [-2910.73, -1053.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2938.34, -1049.98], [-2934.14, -1054.81], [-2929.29, -1050.61], [-2933.48, -1045.79], [-2938.34, -1049.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2588.59, -880.59], [-2580.05, -878.39], [-2571.41, -875.84], [-2571.1, -863.71], [-2591.62, -870.21], [-2588.59, -880.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-2929.9, -1060.35], [-2920.48, -1053.04], [-2913.88, -1061.47], [-2915.5, -1062.72], [-2914.01, -1064.62], [-2918.26, -1067.91], [-2919.74, -1066.01], [-2923.3, -1068.78], [-2929.9, -1060.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2556.11, -920.12], [-2551.96, -916.62], [-2550.19, -918.72], [-2547.97, -916.85], [-2536.85, -929.97], [-2541.17, -933.62], [-2542.76, -931.74], [-2544.79, -933.46], [-2556.11, -920.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2181.16, -1094.86], [-2202.15, -1094.12], [-2202.1, -1092.43], [-2213.67, -1092.02], [-2213.73, -1093.78], [-2230.49, -1093.19], [-2230.05, -1080.71], [-2224.68, -1080.9], [-2224.25, -1068.75], [-2204.6, -1069.45], [-2204.35, -1062.41], [-2200.07, -1062.57], [-2200.04, -1061.67], [-2180.01, -1062.36], [-2179.25, -1066.3], [-2178.67, -1070.24], [-2178.27, -1074.46], [-2178.22, -1078.6], [-2178.52, -1082.83], [-2179.17, -1086.87], [-2180.08, -1090.92], [-2181.16, -1094.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.875, "pop": 0, "jobs": 875}}, {"shape": {"outer": [[-3009.08, -1122.94], [-3015.59, -1128.71], [-3012.03, -1132.71], [-3013.93, -1134.4], [-3010.44, -1138.31], [-3008.54, -1136.62], [-3006.41, -1139.01], [-3002.15, -1135.24], [-3002.61, -1134.72], [-3000.36, -1132.72], [-3009.08, -1122.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3132.58, -906.32], [-3132.93, -915.78], [-3121.46, -916.2], [-3121.11, -906.74], [-3132.58, -906.32]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2822.08, -970.85], [-2816.48, -970.9], [-2816.53, -976.73], [-2812.02, -976.77], [-2812.11, -985.95], [-2822.24, -985.84], [-2822.08, -970.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2909.59, -980.61], [-2899.88, -979.29], [-2898.53, -989.06], [-2899.0, -989.12], [-2898.72, -991.11], [-2906.72, -992.2], [-2906.99, -990.21], [-2908.25, -990.39], [-2909.59, -980.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-3075.53, -1131.66], [-3069.89, -1138.58], [-3067.66, -1136.76], [-3066.87, -1137.72], [-3057.37, -1130.02], [-3063.07, -1123.02], [-3065.39, -1124.9], [-3066.1, -1124.02], [-3075.53, -1131.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2926.05, -1120.3], [-2924.53, -1119.08], [-2926.04, -1117.21], [-2922.49, -1114.37], [-2920.98, -1116.25], [-2919.59, -1115.14], [-2911.99, -1124.6], [-2918.46, -1129.75], [-2926.05, -1120.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2913.39, -991.51], [-2914.12, -982.8], [-2923.08, -983.56], [-2922.34, -992.26], [-2913.39, -991.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2940.25, -994.61], [-2939.78, -994.56], [-2939.72, -995.1], [-2938.61, -996.16], [-2931.11, -995.34], [-2932.55, -982.12], [-2932.7, -980.73], [-2933.63, -980.84], [-2941.66, -981.71], [-2940.25, -994.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2959.15, -984.75], [-2952.42, -984.0], [-2952.53, -982.99], [-2949.66, -982.67], [-2949.08, -987.85], [-2948.1, -996.62], [-2957.7, -997.67], [-2959.15, -984.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2932.55, -982.12], [-2926.92, -981.62], [-2927.39, -976.29], [-2933.97, -976.85], [-2933.63, -980.84], [-2932.7, -980.73], [-2932.55, -982.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2918.51, -978.49], [-2919.15, -972.63], [-2913.0, -971.97], [-2912.35, -977.82], [-2918.51, -978.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2912.34, -977.04], [-2905.27, -976.33], [-2905.89, -970.3], [-2912.95, -971.02], [-2912.34, -977.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2891.76, -990.25], [-2884.49, -989.14], [-2884.83, -986.87], [-2884.3, -986.79], [-2885.85, -976.74], [-2894.26, -978.03], [-2892.7, -988.08], [-2892.11, -988.0], [-2891.76, -990.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2875.09, -986.66], [-2865.25, -986.86], [-2864.99, -973.25], [-2869.84, -973.16], [-2869.75, -968.38], [-2875.22, -968.28], [-2875.3, -972.66], [-2877.84, -972.61], [-2877.95, -977.92], [-2874.92, -977.99], [-2875.09, -986.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2861.52, -987.11], [-2853.16, -987.42], [-2852.54, -970.42], [-2860.9, -970.12], [-2861.52, -987.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2849.78, -978.12], [-2849.98, -986.32], [-2840.25, -986.56], [-2839.92, -973.03], [-2846.69, -972.86], [-2846.82, -978.19], [-2849.78, -978.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2834.19, -985.23], [-2829.06, -985.4], [-2829.05, -985.01], [-2826.75, -985.09], [-2826.55, -979.57], [-2826.08, -979.58], [-2825.89, -973.88], [-2826.53, -973.86], [-2826.39, -969.98], [-2832.57, -969.77], [-2832.71, -974.1], [-2833.81, -974.06], [-2834.19, -985.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2900.17, -1152.19], [-2892.98, -1146.29], [-2895.14, -1143.18], [-2894.12, -1142.31], [-2897.24, -1138.01], [-2905.9, -1145.12], [-2900.17, -1152.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2912.18, -1138.11], [-2909.31, -1141.34], [-2904.8, -1137.79], [-2907.39, -1134.3], [-2912.18, -1138.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2931.05, -1138.91], [-2921.08, -1130.61], [-2928.11, -1122.23], [-2934.46, -1127.5], [-2932.65, -1129.65], [-2936.28, -1132.67], [-2931.05, -1138.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3011.84, -1211.02], [-3003.62, -1203.72], [-3012.24, -1194.01], [-3020.0, -1201.03], [-3011.84, -1211.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3004.1, -1188.33], [-2995.94, -1197.57], [-2993.79, -1195.68], [-2993.33, -1196.19], [-2989.02, -1192.43], [-2997.64, -1182.66], [-3004.1, -1188.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2984.2, -1196.72], [-2981.18, -1200.93], [-2977.13, -1197.83], [-2980.32, -1193.42], [-2984.2, -1196.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2984.85, -1190.47], [-2976.51, -1183.7], [-2985.28, -1172.96], [-2986.07, -1173.61], [-2987.71, -1171.59], [-2994.93, -1177.44], [-2993.12, -1179.65], [-2993.47, -1179.93], [-2984.85, -1190.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2977.57, -1167.85], [-2972.43, -1173.91], [-2960.72, -1164.04], [-2965.86, -1157.98], [-2977.57, -1167.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2679.95, -1533.01], [-2672.25, -1540.77], [-2662.72, -1532.08], [-2669.88, -1524.16], [-2679.95, -1533.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2665.26, -1523.31], [-2660.48, -1529.01], [-2656.7, -1526.06], [-2656.1, -1526.89], [-2648.34, -1520.12], [-2653.39, -1514.14], [-2657.17, -1517.44], [-2658.31, -1516.24], [-2662.93, -1520.41], [-2662.41, -1521.06], [-2665.26, -1523.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2652.13, -1511.13], [-2645.86, -1518.3], [-2643.56, -1516.58], [-2641.63, -1518.6], [-2637.77, -1515.76], [-2639.32, -1513.47], [-2636.93, -1511.74], [-2639.55, -1508.8], [-2636.33, -1506.38], [-2640.41, -1501.15], [-2652.13, -1511.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2639.22, -1499.1], [-2633.7, -1506.44], [-2621.45, -1497.27], [-2628.27, -1488.22], [-2633.12, -1491.84], [-2631.82, -1493.56], [-2639.22, -1499.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2624.44, -1486.03], [-2618.85, -1492.59], [-2617.65, -1491.59], [-2614.79, -1494.95], [-2608.82, -1489.91], [-2608.19, -1490.65], [-2605.12, -1488.05], [-2614.19, -1477.38], [-2624.44, -1486.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2611.21, -1475.15], [-2603.13, -1484.23], [-2595.45, -1477.44], [-2591.65, -1481.7], [-2586.7, -1477.33], [-2598.57, -1463.99], [-2611.21, -1475.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-2593.42, -1459.7], [-2591.03, -1462.47], [-2592.02, -1463.31], [-2583.27, -1473.48], [-2574.25, -1465.78], [-2585.37, -1452.84], [-2593.42, -1459.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2580.85, -1450.45], [-2573.5, -1458.7], [-2569.87, -1455.48], [-2567.99, -1457.59], [-2560.85, -1451.29], [-2570.07, -1440.93], [-2580.85, -1450.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2517.82, -1416.77], [-2507.79, -1428.73], [-2503.23, -1424.87], [-2505.23, -1422.45], [-2497.64, -1416.16], [-2504.94, -1407.1], [-2517.82, -1416.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-2523.85, -1415.27], [-2510.23, -1405.47], [-2516.21, -1396.87], [-2518.03, -1398.29], [-2518.89, -1397.24], [-2530.28, -1406.66], [-2523.85, -1415.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2565.17, -1436.08], [-2555.89, -1447.83], [-2547.43, -1441.19], [-2556.71, -1429.45], [-2565.17, -1436.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2553.55, -1424.8], [-2538.02, -1442.96], [-2532.73, -1438.46], [-2538.77, -1431.4], [-2534.11, -1427.45], [-2543.6, -1416.35], [-2553.55, -1424.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-2258.7, -1427.6], [-2251.38, -1427.64], [-2252.32, -1447.97], [-2262.04, -1447.87], [-2261.12, -1431.3], [-2259.13, -1431.27], [-2258.7, -1427.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2259.7, -843.35], [-2247.76, -843.92], [-2248.47, -858.74], [-2256.02, -858.26], [-2264.68, -865.68], [-2274.44, -854.05], [-2268.18, -848.64], [-2264.32, -847.42], [-2259.7, -843.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.231, "pop": 0, "jobs": 231}}, {"shape": {"outer": [[-2387.81, -905.57], [-2381.96, -912.37], [-2379.08, -909.91], [-2377.96, -911.2], [-2375.8, -909.37], [-2376.92, -908.06], [-2375.89, -907.17], [-2382.34, -899.69], [-2384.94, -901.92], [-2384.34, -902.62], [-2387.81, -905.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2334.23, -859.25], [-2331.75, -857.15], [-2333.19, -855.45], [-2327.73, -850.83], [-2319.09, -860.94], [-2322.19, -863.56], [-2321.47, -864.4], [-2322.38, -865.16], [-2322.12, -865.48], [-2326.06, -868.83], [-2334.23, -859.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2686.29, -928.64], [-2681.59, -935.53], [-2673.71, -930.2], [-2672.81, -931.52], [-2668.46, -928.57], [-2674.06, -920.35], [-2677.74, -922.85], [-2678.24, -922.11], [-2682.84, -925.23], [-2682.33, -925.96], [-2686.29, -928.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2424.26, -872.8], [-2412.98, -885.76], [-2409.02, -882.33], [-2410.43, -880.73], [-2395.83, -868.11], [-2392.7, -871.71], [-2387.65, -867.34], [-2399.73, -853.45], [-2418.97, -870.08], [-2419.89, -869.02], [-2424.26, -872.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.382, "pop": 191, "jobs": 0}}, {"shape": {"outer": [[-2332.97, -985.24], [-2335.31, -987.28], [-2334.12, -988.63], [-2338.19, -992.16], [-2329.05, -1002.61], [-2328.09, -1001.77], [-2326.37, -1003.73], [-2322.24, -1000.15], [-2323.96, -998.19], [-2322.41, -996.83], [-2331.63, -986.29], [-2331.86, -986.5], [-2332.97, -985.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2353.31, -876.43], [-2353.98, -876.98], [-2355.31, -875.34], [-2360.67, -879.67], [-2359.34, -881.31], [-2359.9, -881.76], [-2353.68, -889.41], [-2351.95, -888.0], [-2351.36, -888.72], [-2349.95, -887.57], [-2347.44, -890.65], [-2344.01, -887.87], [-2353.31, -876.43]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2376.81, -839.42], [-2384.15, -845.52], [-2379.71, -850.82], [-2380.69, -851.64], [-2378.47, -854.29], [-2377.49, -853.48], [-2375.23, -856.19], [-2369.83, -851.72], [-2371.6, -849.61], [-2369.64, -847.99], [-2372.62, -844.45], [-2372.05, -843.97], [-2373.61, -842.11], [-2374.18, -842.58], [-2376.81, -839.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2296.85, -982.37], [-2292.05, -987.83], [-2285.96, -982.53], [-2290.76, -977.07], [-2296.85, -982.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2212.52, -907.26], [-2216.73, -910.78], [-2212.42, -915.89], [-2208.22, -912.37], [-2212.52, -907.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2370.69, -918.42], [-2375.66, -922.55], [-2371.18, -927.89], [-2366.21, -923.75], [-2370.69, -918.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2330.87, -882.86], [-2334.3, -885.8], [-2328.93, -892.02], [-2325.51, -889.08], [-2330.87, -882.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2370.05, -890.4], [-2363.25, -884.64], [-2354.56, -894.83], [-2361.35, -900.59], [-2370.05, -890.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2736.46, -989.53], [-2736.69, -998.71], [-2721.63, -999.09], [-2721.41, -989.9], [-2736.46, -989.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2352.86, -904.89], [-2349.0, -909.46], [-2343.93, -905.2], [-2347.78, -900.64], [-2352.86, -904.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2220.97, -887.19], [-2214.02, -881.27], [-2204.12, -892.83], [-2211.07, -898.74], [-2220.97, -887.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2654.63, -888.8], [-2652.7, -895.17], [-2623.92, -886.52], [-2625.84, -880.15], [-2654.63, -888.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-2340.18, -915.5], [-2336.91, -912.76], [-2333.11, -917.27], [-2336.38, -920.01], [-2340.18, -915.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2181.55, -896.17], [-2187.16, -889.45], [-2177.05, -881.08], [-2171.45, -887.81], [-2181.55, -896.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2380.99, -926.11], [-2385.25, -929.89], [-2380.37, -935.37], [-2376.11, -931.59], [-2380.99, -926.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2321.91, -1006.96], [-2317.59, -1011.52], [-2312.61, -1006.85], [-2316.94, -1002.28], [-2321.91, -1006.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2455.82, -887.98], [-2461.55, -892.86], [-2455.49, -899.94], [-2449.75, -895.06], [-2455.82, -887.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2270.14, -960.55], [-2265.36, -965.69], [-2259.66, -960.44], [-2264.44, -955.29], [-2270.14, -960.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2326.82, -880.51], [-2322.64, -885.43], [-2317.29, -880.92], [-2321.47, -875.99], [-2326.82, -880.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2374.18, -893.62], [-2380.33, -898.84], [-2371.49, -909.19], [-2365.34, -903.96], [-2374.18, -893.62]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2344.08, -895.27], [-2348.06, -898.52], [-2343.91, -903.56], [-2339.94, -900.32], [-2344.08, -895.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2768.45, -987.35], [-2761.76, -987.38], [-2761.79, -994.34], [-2768.49, -994.3], [-2768.45, -987.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2336.43, -912.23], [-2332.13, -917.23], [-2326.16, -912.14], [-2330.46, -907.15], [-2336.43, -912.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2624.72, -879.93], [-2622.72, -886.67], [-2596.59, -878.96], [-2598.59, -872.23], [-2624.72, -879.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2564.61, -976.41], [-2559.78, -981.73], [-2554.71, -977.18], [-2559.53, -971.85], [-2564.61, -976.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2320.93, -874.24], [-2316.35, -879.83], [-2309.79, -874.49], [-2314.37, -868.9], [-2320.93, -874.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2424.05, -877.6], [-2430.13, -882.77], [-2423.97, -889.99], [-2423.4, -889.5], [-2419.49, -894.08], [-2413.98, -889.39], [-2424.05, -877.6]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2146.75, -887.66], [-2146.93, -896.15], [-2134.39, -896.41], [-2134.39, -895.96], [-2132.15, -896.01], [-2131.98, -887.98], [-2146.75, -887.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2476.83, -891.47], [-2480.83, -886.26], [-2478.09, -884.17], [-2479.35, -882.53], [-2474.89, -879.13], [-2469.64, -885.97], [-2476.83, -891.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2231.29, -909.9], [-2236.23, -903.91], [-2232.75, -901.06], [-2233.84, -899.73], [-2230.79, -897.24], [-2224.76, -904.56], [-2231.29, -909.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2251.28, -912.83], [-2257.25, -917.99], [-2249.05, -927.4], [-2246.3, -925.02], [-2245.44, -926.0], [-2242.24, -923.23], [-2251.28, -912.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2314.76, -968.82], [-2317.71, -971.41], [-2315.84, -973.52], [-2320.02, -977.19], [-2311.01, -987.38], [-2307.24, -984.06], [-2308.42, -982.73], [-2305.07, -979.78], [-2314.76, -968.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2309.21, -924.87], [-2314.36, -918.85], [-2308.2, -913.61], [-2307.65, -914.25], [-2305.93, -912.79], [-2301.57, -917.88], [-2303.23, -919.29], [-2302.97, -919.58], [-2309.21, -924.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2393.04, -856.11], [-2386.88, -863.31], [-2386.05, -862.6], [-2384.43, -864.48], [-2378.34, -859.31], [-2379.95, -857.42], [-2379.35, -856.91], [-2385.5, -849.71], [-2393.04, -856.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2619.73, -975.35], [-2612.95, -969.69], [-2603.1, -981.4], [-2604.72, -982.74], [-2603.56, -984.12], [-2607.17, -987.14], [-2608.33, -985.76], [-2609.89, -987.06], [-2619.73, -975.35]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2501.27, -933.19], [-2503.41, -930.68], [-2503.75, -930.96], [-2507.37, -926.71], [-2506.45, -925.94], [-2506.82, -925.51], [-2499.31, -919.16], [-2498.85, -919.7], [-2497.21, -918.3], [-2492.0, -924.41], [-2493.54, -925.71], [-2493.07, -926.25], [-2501.27, -933.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2144.22, -884.4], [-2143.9, -875.02], [-2134.96, -875.32], [-2135.14, -880.72], [-2133.02, -880.79], [-2133.14, -884.23], [-2135.26, -884.17], [-2135.27, -884.7], [-2144.22, -884.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2456.34, -982.8], [-2449.24, -976.7], [-2441.07, -986.14], [-2443.89, -988.57], [-2442.45, -990.23], [-2446.33, -993.55], [-2447.79, -991.86], [-2448.2, -992.2], [-2456.34, -982.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2779.24, -973.14], [-2768.51, -973.35], [-2768.59, -977.62], [-2764.46, -977.7], [-2764.59, -984.51], [-2768.7, -984.44], [-2768.71, -984.75], [-2779.46, -984.55], [-2779.24, -973.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2397.56, -913.45], [-2392.14, -919.88], [-2389.52, -917.69], [-2388.28, -919.14], [-2385.79, -917.07], [-2387.03, -915.6], [-2385.14, -914.02], [-2390.56, -907.59], [-2397.56, -913.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2183.48, -915.52], [-2183.18, -904.03], [-2181.39, -904.08], [-2181.33, -901.64], [-2175.41, -901.79], [-2175.47, -904.23], [-2174.19, -904.27], [-2174.49, -915.74], [-2183.48, -915.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2331.55, -922.3], [-2335.97, -926.12], [-2332.07, -930.62], [-2334.02, -932.31], [-2327.05, -940.33], [-2324.03, -937.73], [-2322.67, -939.3], [-2319.29, -936.39], [-2331.55, -922.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3026.17, -282.82], [-3025.24, -288.96], [-3022.65, -288.57], [-3022.19, -291.56], [-3011.0, -289.89], [-3011.06, -289.52], [-3009.29, -289.26], [-3010.56, -280.91], [-3012.37, -281.18], [-3012.43, -280.75], [-3026.17, -282.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3058.79, -200.02], [-3065.35, -201.05], [-3064.38, -207.2], [-3064.94, -207.28], [-3064.32, -211.17], [-3066.2, -211.47], [-3064.14, -224.43], [-3058.81, -223.6], [-3059.29, -220.58], [-3054.58, -219.83], [-3055.08, -216.68], [-3056.1, -216.84], [-3058.79, -200.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3088.35, -504.83], [-3089.31, -492.92], [-3072.13, -491.54], [-3072.23, -490.34], [-3065.77, -489.82], [-3065.25, -496.1], [-3063.49, -495.96], [-3063.43, -496.8], [-3060.94, -496.59], [-3060.46, -502.59], [-3069.99, -503.36], [-3069.76, -506.24], [-3081.31, -507.16], [-3081.54, -504.28], [-3088.35, -504.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-3027.25, -245.87], [-3018.1, -244.45], [-3015.48, -261.27], [-3024.64, -262.68], [-3027.25, -245.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3003.39, -168.36], [-3001.77, -178.76], [-2983.03, -175.88], [-2984.65, -165.47], [-3003.39, -168.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-3055.16, -488.09], [-3054.38, -496.68], [-3043.47, -495.7], [-3044.26, -487.1], [-3055.16, -488.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2989.0, -197.18], [-2978.57, -195.52], [-2976.36, -209.37], [-2986.79, -211.02], [-2989.0, -197.18]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-3070.92, -149.12], [-3055.82, -146.49], [-3052.8, -163.66], [-3067.91, -166.29], [-3070.92, -149.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-2824.48, -245.69], [-2819.03, -244.92], [-2818.12, -251.32], [-2823.57, -252.1], [-2824.48, -245.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-3044.64, -147.32], [-3042.89, -158.43], [-3028.8, -156.22], [-3030.56, -145.12], [-3044.64, -147.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2761.36, -260.71], [-2761.79, -270.68], [-2747.76, -271.28], [-2747.33, -261.32], [-2761.36, -260.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3099.15, -212.28], [-3100.53, -201.86], [-3085.88, -199.92], [-3084.49, -210.35], [-3099.15, -212.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3081.79, -256.25], [-3078.46, -276.56], [-3063.66, -274.14], [-3066.99, -253.85], [-3081.79, -256.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[-3090.28, -173.36], [-3091.48, -165.35], [-3102.33, -166.96], [-3101.14, -174.97], [-3090.28, -173.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-3095.39, -149.23], [-3093.96, -157.45], [-3109.34, -160.12], [-3110.77, -151.88], [-3095.39, -149.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2993.22, -185.6], [-3002.17, -187.01], [-2998.03, -212.99], [-2989.08, -211.58], [-2993.22, -185.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-3088.88, -179.61], [-3087.49, -188.92], [-3102.29, -191.1], [-3103.67, -181.79], [-3088.88, -179.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2827.98, -249.98], [-2840.51, -252.06], [-2836.51, -275.98], [-2823.99, -273.91], [-2827.98, -249.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[-3098.04, -218.94], [-3096.31, -230.18], [-3081.77, -227.98], [-3083.49, -216.73], [-3098.04, -218.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3041.86, -170.54], [-3042.57, -166.24], [-3040.95, -165.97], [-3041.62, -161.94], [-3027.25, -159.56], [-3025.86, -167.9], [-3041.86, -170.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3021.27, -175.6], [-3035.91, -177.91], [-3034.79, -184.91], [-3030.35, -184.21], [-3024.91, -218.42], [-3014.72, -216.81], [-3021.27, -175.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.37, "pop": 185, "jobs": 0}}, {"shape": {"outer": [[-3062.19, -254.46], [-3051.23, -252.58], [-3050.3, -257.96], [-3051.54, -258.18], [-3050.12, -266.37], [-3059.83, -268.05], [-3062.19, -254.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2616.87, -410.17], [-2617.28, -421.85], [-2601.66, -422.4], [-2601.56, -419.54], [-2599.4, -419.61], [-2599.2, -413.51], [-2601.34, -413.43], [-2601.25, -410.72], [-2616.87, -410.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2866.86, -225.01], [-2868.74, -225.3], [-2869.11, -222.86], [-2874.99, -223.76], [-2874.61, -226.2], [-2876.33, -226.46], [-2873.9, -242.23], [-2864.43, -240.78], [-2866.86, -225.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3150.45, -266.24], [-3148.83, -276.7], [-3150.38, -276.94], [-3148.79, -287.26], [-3126.74, -283.88], [-3128.98, -269.37], [-3127.28, -269.11], [-3128.25, -262.84], [-3150.45, -266.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.37, "pop": 185, "jobs": 0}}, {"shape": {"outer": [[-3118.75, -176.05], [-3139.7, -179.87], [-3130.48, -230.0], [-3125.57, -229.09], [-3125.25, -230.81], [-3113.86, -228.73], [-3114.18, -227.02], [-3109.53, -226.17], [-3118.75, -176.05]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 774, "jobs": 0}}, {"shape": {"outer": [[-2943.27, -271.68], [-2934.55, -270.33], [-2931.54, -289.69], [-2932.25, -289.79], [-2931.96, -291.57], [-2934.08, -291.89], [-2933.89, -293.09], [-2939.78, -294.01], [-2943.27, -271.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-3053.7, -206.24], [-3043.75, -204.66], [-3041.6, -218.11], [-3043.66, -218.43], [-3043.2, -221.28], [-3049.29, -222.25], [-3049.75, -219.4], [-3051.56, -219.68], [-3053.7, -206.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3057.68, -298.79], [-3049.74, -297.44], [-3048.19, -306.49], [-3049.5, -306.7], [-3048.92, -310.11], [-3052.74, -310.76], [-3052.63, -311.4], [-3055.44, -311.88], [-3057.68, -298.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2930.98, -279.86], [-2929.35, -290.5], [-2926.64, -290.09], [-2926.36, -291.93], [-2920.79, -291.08], [-2921.07, -289.24], [-2918.35, -288.82], [-2919.98, -278.18], [-2930.98, -279.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3030.81, -202.34], [-3040.87, -203.98], [-3038.63, -217.49], [-3036.42, -217.13], [-3035.93, -220.09], [-3030.34, -219.17], [-3030.82, -216.21], [-3028.57, -215.84], [-3030.81, -202.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3005.21, -155.06], [-3003.96, -163.99], [-2988.47, -161.83], [-2988.7, -160.19], [-2986.84, -159.93], [-2987.44, -155.69], [-2989.3, -155.94], [-2989.73, -152.91], [-3005.21, -155.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2976.93, -1680.87], [-2982.78, -1685.62], [-2971.98, -1698.82], [-2968.03, -1695.6], [-2966.49, -1697.48], [-2968.7, -1699.26], [-2968.08, -1701.19], [-2967.11, -1702.35], [-2965.31, -1703.41], [-2955.42, -1695.37], [-2958.22, -1691.95], [-2956.54, -1690.6], [-2958.82, -1687.81], [-2956.84, -1686.2], [-2961.1, -1680.99], [-2970.55, -1688.67], [-2976.93, -1680.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[-3101.71, -1652.1], [-3110.26, -1659.12], [-3093.87, -1678.92], [-3089.47, -1675.3], [-3087.77, -1677.37], [-3084.34, -1674.55], [-3080.09, -1679.69], [-3091.6, -1689.16], [-3085.34, -1696.72], [-3068.98, -1683.28], [-3083.56, -1665.67], [-3082.35, -1664.68], [-3086.56, -1659.59], [-3091.88, -1663.96], [-3095.18, -1659.99], [-3093.22, -1658.39], [-3095.81, -1655.27], [-3097.76, -1656.87], [-3101.71, -1652.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.51, "pop": 255, "jobs": 0}}, {"shape": {"outer": [[-3118.1, -1674.59], [-3126.81, -1681.8], [-3116.3, -1694.39], [-3107.59, -1687.19], [-3118.1, -1674.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-3115.67, -1699.97], [-3108.83, -1707.85], [-3097.76, -1698.31], [-3104.61, -1690.42], [-3115.67, -1699.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2886.84, -2899.42], [-2881.4, -2913.58], [-2875.66, -2911.38], [-2877.9, -2905.57], [-2868.04, -2901.81], [-2870.28, -2895.99], [-2875.86, -2898.12], [-2878.4, -2891.51], [-2884.29, -2893.75], [-2882.71, -2897.85], [-2886.84, -2899.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-3059.66, -2981.26], [-3063.13, -2983.13], [-3063.77, -2981.95], [-3069.78, -2985.19], [-3066.6, -2991.05], [-3068.95, -2992.32], [-3065.86, -2997.99], [-3056.72, -2993.07], [-3059.79, -2987.41], [-3057.11, -2985.97], [-3059.66, -2981.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2901.78, -3021.48], [-2894.07, -3014.93], [-2888.51, -3021.43], [-2889.35, -3022.14], [-2884.77, -3027.49], [-2885.9, -3028.45], [-2878.89, -3036.64], [-2885.79, -3042.51], [-2891.02, -3036.41], [-2889.85, -3035.42], [-2901.78, -3021.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-3031.86, -2989.0], [-3031.87, -2993.83], [-3028.76, -2993.99], [-3029.04, -2999.74], [-3022.57, -3000.07], [-3022.38, -2996.36], [-3009.45, -2997.01], [-3008.94, -2986.77], [-3015.91, -2986.42], [-3019.89, -2983.4], [-3031.86, -2989.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-3215.25, -2998.53], [-3207.64, -3005.98], [-3198.0, -2996.21], [-3195.85, -2998.33], [-3190.36, -2992.77], [-3194.42, -2988.79], [-3191.36, -2985.7], [-3197.06, -2980.11], [-3201.38, -2984.5], [-3202.56, -2983.34], [-3211.53, -2992.43], [-3210.35, -2993.59], [-3215.25, -2998.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[-2929.01, -2928.6], [-2921.86, -2921.38], [-2917.14, -2926.03], [-2909.99, -2918.82], [-2904.22, -2924.49], [-2909.61, -2929.92], [-2906.2, -2933.28], [-2910.03, -2937.15], [-2913.44, -2933.79], [-2915.48, -2935.85], [-2920.74, -2930.67], [-2923.78, -2933.74], [-2929.01, -2928.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2992.71, -2921.36], [-2999.56, -2924.79], [-3006.17, -2927.63], [-3009.01, -2933.47], [-3003.37, -2937.91], [-3000.47, -2937.67], [-2999.57, -2939.76], [-2995.82, -2940.59], [-2993.45, -2938.94], [-2982.56, -2948.36], [-2974.62, -2939.93], [-2987.25, -2928.4], [-2987.64, -2927.12], [-2992.71, -2921.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.346, "pop": 173, "jobs": 0}}, {"shape": {"outer": [[-3103.05, -2932.77], [-3089.08, -2928.45], [-3083.54, -2946.24], [-3097.51, -2950.56], [-3103.05, -2932.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-2877.1, -3050.64], [-2867.77, -3043.78], [-2855.41, -3060.43], [-2864.74, -3067.3], [-2877.1, -3050.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-2880.12, -2978.06], [-2887.43, -2970.38], [-2873.96, -2957.63], [-2866.64, -2965.3], [-2880.12, -2978.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-3148.46, -2955.22], [-3152.96, -2945.78], [-3141.07, -2940.15], [-3136.56, -2949.6], [-3148.46, -2955.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3195.2, -2966.08], [-3185.91, -2980.32], [-3171.16, -2970.75], [-3180.45, -2956.52], [-3195.2, -2966.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-3116.34, -3015.55], [-3108.24, -3010.04], [-3098.46, -3024.31], [-3106.56, -3029.82], [-3116.34, -3015.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2990.46, -2993.14], [-2988.97, -3004.07], [-2968.54, -3001.31], [-2970.4, -2987.64], [-2977.34, -2988.57], [-2976.96, -2991.31], [-2990.46, -2993.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-2862.93, -2996.99], [-2852.43, -2989.4], [-2840.6, -3005.65], [-2849.41, -3012.01], [-2853.05, -3007.0], [-2854.75, -3008.22], [-2862.93, -2996.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-2951.29, -3036.88], [-2944.07, -3046.21], [-2924.06, -3030.85], [-2934.78, -3016.99], [-2941.45, -3022.1], [-2937.94, -3026.64], [-2951.29, -3036.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-3125.08, -2982.31], [-3132.16, -2986.49], [-3123.41, -3001.17], [-3117.21, -2997.5], [-3121.26, -2990.68], [-3120.4, -2990.17], [-3125.08, -2982.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2950.11, -2993.28], [-2958.75, -2984.75], [-2949.62, -2975.56], [-2947.6, -2977.54], [-2936.36, -2966.24], [-2928.23, -2974.27], [-2941.1, -2987.22], [-2942.61, -2985.74], [-2950.11, -2993.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-311.56, -1960.15], [-300.09, -1960.76], [-300.14, -1962.67], [-290.33, -1962.95], [-290.09, -1945.04], [-306.99, -1944.42], [-307.37, -1953.34], [-311.35, -1953.16], [-311.56, -1960.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-301.29, -1981.83], [-290.6, -1982.35], [-290.14, -1966.46], [-300.52, -1966.06], [-301.29, -1981.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-302.94, -2001.6], [-292.57, -2002.01], [-292.01, -1986.02], [-302.29, -1985.6], [-302.94, -2001.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-326.16, -2002.75], [-314.34, -2003.41], [-313.96, -1995.56], [-325.7, -1994.82], [-326.16, -2002.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-308.1, -2013.3], [-299.25, -2013.8], [-298.7, -2005.62], [-307.3, -2004.98], [-308.1, -2013.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-306.08, -2017.18], [-301.3, -2017.33], [-301.04, -2014.15], [-295.66, -2014.4], [-295.77, -2015.59], [-293.38, -2015.81], [-293.55, -2018.34], [-290.13, -2018.53], [-290.63, -2024.02], [-306.37, -2023.32], [-306.08, -2017.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-172.1, -2021.33], [-163.55, -2021.75], [-162.88, -2008.28], [-171.43, -2007.86], [-172.1, -2021.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-150.42, -2112.53], [-145.27, -2112.76], [-145.16, -2105.7], [-150.3, -2105.55], [-150.42, -2112.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-177.21, -2103.77], [-177.43, -2112.04], [-162.98, -2112.42], [-162.74, -2103.2], [-175.65, -2102.85], [-175.68, -2103.82], [-177.21, -2103.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-152.8, -2099.79], [-145.8, -2100.14], [-145.51, -2092.85], [-152.59, -2092.57], [-152.8, -2099.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-142.55, -2096.22], [-135.94, -2096.25], [-135.63, -2088.15], [-142.07, -2087.97], [-142.55, -2096.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-140.8, -2114.26], [-131.95, -2114.51], [-131.64, -2101.03], [-140.5, -2100.94], [-140.8, -2114.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-125.26, -2114.62], [-116.89, -2114.78], [-116.7, -2102.41], [-125.08, -2102.42], [-125.26, -2114.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-177.37, -2093.95], [-162.08, -2094.62], [-161.84, -2086.28], [-177.06, -2085.93], [-177.37, -2093.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-174.74, -2082.01], [-163.57, -2082.41], [-163.46, -2079.47], [-160.71, -2079.56], [-160.56, -2075.46], [-163.44, -2075.36], [-163.34, -2072.45], [-172.93, -2072.12], [-173.02, -2074.83], [-174.49, -2074.77], [-174.74, -2082.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-159.2, -2068.75], [-151.1, -2069.04], [-150.92, -2063.92], [-159.02, -2063.64], [-159.2, -2068.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-159.24, -2070.01], [-159.45, -2074.54], [-152.32, -2074.74], [-152.35, -2070.2], [-159.24, -2070.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-172.93, -2064.74], [-161.74, -2065.03], [-161.5, -2056.04], [-175.2, -2055.67], [-175.37, -2062.26], [-172.86, -2062.32], [-172.93, -2064.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-172.6, -2050.59], [-164.62, -2050.97], [-164.5, -2048.53], [-160.99, -2048.69], [-160.65, -2041.86], [-173.38, -2041.24], [-173.72, -2048.13], [-172.49, -2048.2], [-172.6, -2050.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-172.22, -2035.48], [-162.58, -2035.83], [-162.33, -2026.94], [-172.04, -2026.58], [-172.22, -2035.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-161.09, -2038.77], [-154.99, -2039.1], [-154.9, -2035.97], [-160.86, -2035.81], [-161.09, -2038.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-153.48, -2046.56], [-146.86, -2046.71], [-146.71, -2039.81], [-153.32, -2039.65], [-153.48, -2046.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-124.63, -2100.19], [-117.58, -2100.23], [-117.54, -2092.36], [-124.58, -2092.32], [-124.63, -2100.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-474.78, -1948.41], [-473.21, -1936.86], [-459.0, -1938.77], [-459.58, -1943.04], [-458.74, -1943.15], [-460.69, -1957.52], [-471.52, -1956.06], [-470.56, -1948.98], [-474.78, -1948.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-471.27, -1960.06], [-461.34, -1961.17], [-462.45, -1971.05], [-472.38, -1969.95], [-471.27, -1960.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-485.3, -1970.85], [-477.73, -1971.78], [-477.13, -1967.03], [-484.72, -1966.1], [-485.3, -1970.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-438.48, -1970.4], [-431.88, -1971.08], [-430.61, -1958.97], [-435.31, -1958.48], [-435.54, -1960.73], [-437.9, -1960.48], [-438.16, -1962.95], [-439.17, -1962.85], [-439.51, -1966.12], [-438.05, -1966.27], [-438.48, -1970.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-428.44, -1970.14], [-424.51, -1970.41], [-424.14, -1964.93], [-418.7, -1965.3], [-418.01, -1955.13], [-421.68, -1954.89], [-421.52, -1952.37], [-425.65, -1952.09], [-426.47, -1964.17], [-428.03, -1964.07], [-428.44, -1970.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-403.41, -1961.82], [-397.07, -1962.12], [-396.77, -1955.72], [-403.11, -1955.43], [-403.41, -1961.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-394.33, -1956.24], [-384.3, -1956.61], [-384.05, -1947.7], [-393.85, -1947.5], [-394.33, -1956.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-395.09, -1969.45], [-384.76, -1969.87], [-384.59, -1961.04], [-388.76, -1960.96], [-388.81, -1961.61], [-394.66, -1961.37], [-395.09, -1969.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-403.81, -1959.57], [-403.6, -1955.91], [-405.64, -1955.8], [-405.6, -1955.15], [-406.3, -1955.11], [-406.13, -1952.07], [-413.43, -1951.66], [-414.28, -1966.7], [-406.15, -1967.15], [-405.72, -1959.46], [-403.81, -1959.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-414.63, -1967.65], [-406.28, -1968.26], [-407.28, -1981.77], [-414.35, -1981.25], [-414.07, -1977.42], [-415.36, -1977.33], [-414.63, -1967.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-360.21, -1972.77], [-352.27, -1973.13], [-351.37, -1953.66], [-361.33, -1953.2], [-362.03, -1968.63], [-360.03, -1968.72], [-360.21, -1972.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-332.43, -1970.57], [-326.11, -1970.97], [-326.65, -1979.72], [-332.13, -1979.37], [-331.93, -1976.12], [-332.77, -1976.08], [-332.43, -1970.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-332.56, -1969.84], [-326.5, -1970.12], [-325.92, -1957.56], [-331.98, -1957.27], [-332.56, -1969.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-360.58, -1984.1], [-349.18, -1984.56], [-348.87, -1976.79], [-360.28, -1976.33], [-360.58, -1984.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-389.92, -1974.43], [-384.49, -1974.73], [-385.14, -1986.62], [-393.81, -1986.16], [-393.22, -1975.41], [-389.98, -1975.59], [-389.92, -1974.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-394.26, -1994.59], [-383.94, -1995.04], [-383.63, -1987.87], [-393.95, -1987.42], [-394.26, -1994.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[417.42, 982.31], [410.19, 975.78], [421.23, 963.65], [428.46, 970.18], [417.42, 982.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[414.9, 987.24], [401.18, 974.91], [395.35, 981.36], [409.06, 993.68], [414.9, 987.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2270.17, 1778.91], [2284.29, 1764.57], [2279.18, 1759.58], [2265.07, 1773.93], [2270.17, 1778.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.092, "pop": 0, "jobs": 92}}, {"shape": {"outer": [[2277.6, 1758.33], [2271.45, 1752.41], [2258.02, 1766.29], [2264.17, 1772.21], [2277.6, 1758.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.106, "pop": 0, "jobs": 106}}, {"shape": {"outer": [[2251.66, 1761.69], [2257.27, 1767.08], [2258.02, 1766.29], [2271.45, 1752.41], [2265.85, 1747.04], [2251.66, 1761.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.101, "pop": 0, "jobs": 101}}, {"shape": {"outer": [[2241.23, 1751.17], [2249.85, 1759.49], [2264.05, 1744.89], [2255.41, 1736.56], [2241.23, 1751.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.156, "pop": 0, "jobs": 156}}, {"shape": {"outer": [[2339.4, 1776.16], [2321.2, 1746.41], [2322.9, 1745.05], [2364.05, 1756.68], [2362.24, 1761.8], [2339.4, 1776.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.401, "pop": 0, "jobs": 401}}, {"shape": {"outer": [[2132.19, 1642.95], [2123.7, 1651.51], [2126.28, 1654.06], [2129.16, 1651.17], [2131.81, 1653.79], [2131.2, 1654.4], [2137.32, 1660.44], [2138.02, 1659.74], [2142.68, 1664.34], [2142.0, 1665.04], [2145.12, 1668.12], [2139.59, 1673.68], [2140.4, 1674.5], [2142.47, 1672.41], [2145.05, 1674.95], [2142.99, 1677.03], [2143.79, 1677.82], [2141.7, 1679.93], [2137.24, 1684.42], [2133.01, 1680.25], [2132.51, 1680.75], [2129.58, 1677.88], [2128.93, 1678.53], [2126.24, 1675.88], [2126.7, 1675.41], [2122.21, 1670.98], [2121.73, 1671.45], [2118.91, 1668.66], [2119.33, 1668.24], [2116.33, 1665.29], [2122.07, 1659.5], [2118.93, 1656.4], [2115.51, 1659.85], [2111.65, 1656.04], [2112.1, 1655.6], [2105.22, 1648.82], [2104.72, 1649.32], [2100.84, 1645.5], [2104.73, 1641.58], [2105.03, 1641.88], [2112.05, 1634.81], [2111.12, 1633.91], [2118.16, 1626.82], [2119.11, 1627.75], [2125.82, 1620.98], [2124.78, 1619.96], [2129.48, 1615.23], [2134.09, 1619.78], [2133.41, 1620.46], [2140.07, 1627.03], [2140.61, 1626.49], [2144.62, 1630.43], [2141.99, 1633.07], [2144.05, 1635.09], [2145.68, 1633.45], [2151.08, 1638.77], [2151.47, 1638.38], [2153.45, 1640.33], [2153.06, 1640.72], [2158.13, 1645.72], [2158.7, 1645.16], [2161.34, 1647.77], [2154.19, 1654.96], [2152.05, 1652.85], [2152.41, 1652.5], [2151.3, 1651.39], [2145.4, 1657.34], [2142.79, 1654.77], [2143.48, 1654.07], [2135.96, 1646.66], [2134.91, 1647.71], [2132.25, 1645.09], [2133.3, 1644.03], [2132.19, 1642.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 691, "jobs": 0}}, {"shape": {"outer": [[2341.0, 1779.38], [2355.84, 1770.55], [2360.41, 1779.97], [2346.87, 1788.61], [2341.0, 1779.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.114, "pop": 0, "jobs": 114}}, {"shape": {"outer": [[2346.87, 1788.61], [2353.91, 1799.63], [2366.96, 1790.7], [2360.41, 1779.97], [2346.87, 1788.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.131, "pop": 0, "jobs": 131}}, {"shape": {"outer": [[-2394.24, -1765.89], [-2394.19, -1764.08], [-2394.1, -1760.93], [-2394.81, -1760.91], [-2394.58, -1752.64], [-2390.42, -1752.76], [-2390.28, -1747.7], [-2374.95, -1748.14], [-2374.99, -1749.57], [-2375.2, -1756.82], [-2369.97, -1756.97], [-2369.99, -1757.68], [-2370.25, -1766.58], [-2385.22, -1766.15], [-2389.52, -1766.02], [-2394.24, -1765.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.306, "pop": 153, "jobs": 0}}, {"shape": {"outer": [[-2104.12, -1850.74], [-2105.76, -1865.43], [-2075.92, -1868.74], [-2074.28, -1854.05], [-2085.26, -1852.84], [-2084.01, -1841.67], [-2093.04, -1840.66], [-2092.88, -1839.19], [-2100.0, -1838.4], [-2101.42, -1851.04], [-2104.12, -1850.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.408, "pop": 0, "jobs": 408}}, {"shape": {"outer": [[-2094.11, -1830.51], [-2096.16, -1818.92], [-2073.63, -1814.97], [-2071.58, -1826.55], [-2094.11, -1830.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-2257.06, -1838.62], [-2243.66, -1850.7], [-2231.75, -1837.58], [-2245.15, -1825.5], [-2257.06, -1838.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.205, "pop": 0, "jobs": 205}}, {"shape": {"outer": [[-2262.65, -1644.75], [-2275.65, -1633.54], [-2267.87, -1624.57], [-2262.74, -1629.0], [-2258.25, -1623.83], [-2263.38, -1619.41], [-2255.24, -1610.05], [-2242.25, -1621.26], [-2262.65, -1644.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[-2382.68, -1814.16], [-2377.71, -1807.79], [-2378.56, -1799.03], [-2382.82, -1796.12], [-2378.79, -1790.66], [-2383.92, -1786.55], [-2387.99, -1791.15], [-2393.09, -1791.6], [-2394.66, -1794.09], [-2396.8, -1792.49], [-2400.98, -1797.42], [-2400.08, -1798.22], [-2400.11, -1800.99], [-2400.77, -1801.08], [-2399.96, -1807.96], [-2391.31, -1815.21], [-2382.68, -1814.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[2303.57, 1719.6], [2293.84, 1703.35], [2308.31, 1694.43], [2309.76, 1696.57], [2303.57, 1719.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[2293.84, 1703.35], [2289.54, 1696.49], [2299.68, 1690.54], [2306.71, 1686.4], [2308.56, 1685.31], [2309.68, 1687.45], [2312.18, 1688.89], [2311.44, 1692.58], [2310.87, 1692.47], [2309.76, 1696.57], [2308.31, 1694.43], [2293.84, 1703.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.114, "pop": 0, "jobs": 114}}, {"shape": {"outer": [[2289.54, 1696.49], [2285.47, 1690.07], [2295.37, 1683.75], [2299.68, 1690.54], [2289.54, 1696.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.059, "pop": 0, "jobs": 59}}, {"shape": {"outer": [[1556.46, 791.78], [1562.84, 797.56], [1583.52, 774.88], [1577.13, 769.1], [1570.77, 776.08], [1556.46, 791.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.169, "pop": 0, "jobs": 169}}, {"shape": {"outer": [[1550.39, 786.28], [1556.46, 791.78], [1570.77, 776.08], [1564.7, 770.59], [1550.39, 786.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[1542.54, 777.21], [1542.6, 779.24], [1550.39, 786.28], [1564.7, 770.59], [1555.86, 762.59], [1542.54, 777.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.161, "pop": 0, "jobs": 161}}, {"shape": {"outer": [[1508.38, 607.41], [1513.58, 612.05], [1524.31, 600.11], [1519.12, 595.46], [1508.38, 607.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1553.88, 645.62], [1554.17, 645.88], [1553.05, 647.11], [1558.43, 651.92], [1559.54, 650.68], [1559.77, 650.88], [1568.24, 641.48], [1562.34, 636.22], [1553.88, 645.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1485.57, 586.71], [1496.09, 575.15], [1502.46, 580.92], [1491.94, 592.47], [1491.02, 591.64], [1489.67, 590.41], [1485.57, 586.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1539.1, 632.13], [1544.92, 637.14], [1554.25, 626.38], [1548.43, 621.37], [1545.38, 624.89], [1544.86, 624.45], [1541.56, 628.24], [1542.08, 628.69], [1539.1, 632.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1525.39, 619.93], [1526.1, 620.54], [1525.38, 621.38], [1527.11, 622.87], [1527.83, 622.04], [1530.45, 624.28], [1537.86, 615.75], [1532.8, 611.39], [1525.39, 619.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1621.1, 707.49], [1627.09, 712.75], [1637.18, 700.54], [1631.35, 695.35], [1621.1, 707.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1584.66, 673.13], [1584.82, 673.29], [1583.05, 675.12], [1586.94, 678.88], [1588.72, 677.04], [1588.84, 677.17], [1595.45, 670.36], [1594.27, 669.23], [1598.16, 665.22], [1598.66, 665.71], [1601.21, 663.08], [1596.47, 658.51], [1588.34, 666.89], [1589.56, 668.07], [1584.66, 673.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1458.73, 615.83], [1465.93, 607.7], [1472.67, 613.63], [1464.39, 622.97], [1463.32, 622.02], [1461.7, 623.86], [1457.88, 620.5], [1460.58, 617.45], [1458.73, 615.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1446.98, 612.6], [1457.88, 600.58], [1458.41, 601.05], [1459.4, 599.96], [1460.48, 600.93], [1461.45, 601.8], [1464.8, 604.82], [1463.81, 605.91], [1464.07, 606.15], [1453.17, 618.18], [1446.98, 612.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1370.16, 313.27], [1380.18, 321.95], [1386.18, 315.08], [1376.16, 306.4], [1370.16, 313.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1488.02, 541.06], [1489.61, 542.51], [1490.37, 541.69], [1500.0, 550.45], [1492.25, 558.92], [1481.01, 548.69], [1488.02, 541.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1570.21, 660.02], [1574.83, 664.31], [1577.57, 661.38], [1578.46, 662.2], [1581.57, 658.87], [1581.25, 658.56], [1582.47, 657.25], [1581.92, 656.73], [1583.11, 655.47], [1578.88, 651.55], [1576.56, 654.03], [1576.16, 653.66], [1570.21, 660.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1633.34, 714.18], [1642.33, 722.57], [1650.07, 714.1], [1640.78, 705.63], [1633.34, 714.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1299.86, 383.68], [1314.25, 396.21], [1319.87, 389.81], [1318.79, 388.87], [1319.09, 388.54], [1315.82, 385.69], [1316.32, 385.11], [1311.9, 381.26], [1311.4, 381.83], [1308.77, 379.54], [1308.47, 379.88], [1305.48, 377.28], [1299.86, 383.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1546.16, 638.55], [1546.51, 638.85], [1545.21, 640.31], [1550.23, 644.77], [1551.54, 643.32], [1551.78, 643.53], [1553.94, 641.13], [1554.45, 641.58], [1557.67, 637.99], [1557.16, 637.54], [1559.39, 635.05], [1553.77, 630.05], [1546.16, 638.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1486.44, 563.49], [1476.14, 554.31], [1464.15, 567.67], [1474.45, 576.85], [1486.44, 563.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[1365.84, 399.65], [1373.53, 406.5], [1381.03, 398.14], [1373.34, 391.29], [1365.84, 399.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1515.28, 614.33], [1521.86, 620.04], [1532.66, 607.67], [1526.09, 601.97], [1515.28, 614.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1349.68, 325.15], [1359.08, 314.59], [1360.38, 315.73], [1363.17, 312.6], [1369.53, 318.22], [1365.79, 322.43], [1364.99, 321.73], [1356.53, 331.21], [1352.62, 327.76], [1350.62, 325.99], [1349.68, 325.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1575.98, 668.87], [1580.66, 673.1], [1590.7, 662.09], [1586.02, 657.85], [1575.98, 668.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1619.6, 705.77], [1630.37, 693.09], [1624.08, 687.53], [1612.69, 699.93], [1617.6, 704.09], [1618.84, 705.13], [1619.6, 705.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1531.75, 625.65], [1532.07, 625.93], [1530.86, 627.35], [1535.94, 631.68], [1537.16, 630.25], [1537.73, 630.75], [1540.04, 628.06], [1540.3, 628.29], [1543.24, 624.87], [1542.98, 624.64], [1545.25, 621.99], [1539.26, 616.89], [1531.75, 625.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1562.65, 653.69], [1567.95, 658.49], [1576.54, 649.08], [1571.24, 644.27], [1562.65, 653.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1341.21, 318.24], [1348.18, 324.48], [1360.03, 311.33], [1353.06, 305.1], [1341.21, 318.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1464.5, 623.7], [1472.59, 614.72], [1477.88, 619.45], [1475.13, 622.51], [1475.34, 622.69], [1470.01, 628.62], [1464.5, 623.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1374.71, 303.74], [1387.18, 314.4], [1388.52, 312.84], [1391.49, 309.4], [1393.19, 307.42], [1380.73, 296.76], [1374.71, 303.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1500.93, 598.59], [1509.6, 589.04], [1516.67, 595.42], [1507.99, 604.97], [1507.47, 604.49], [1506.22, 605.86], [1500.25, 600.48], [1501.5, 599.1], [1500.93, 598.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1318.42, 357.87], [1321.56, 354.38], [1322.23, 354.99], [1329.73, 346.66], [1319.83, 337.79], [1314.37, 343.86], [1316.79, 346.03], [1314.14, 348.97], [1314.8, 349.55], [1312.26, 352.37], [1318.42, 357.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1371.66, 318.36], [1356.37, 335.27], [1364.56, 342.63], [1380.82, 324.65], [1377.99, 322.13], [1377.03, 323.19], [1371.66, 318.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[1332.33, 370.23], [1342.13, 359.78], [1337.71, 355.66], [1334.03, 352.22], [1332.8, 351.08], [1331.14, 352.85], [1330.25, 352.0], [1320.82, 362.04], [1327.08, 367.88], [1328.35, 366.52], [1332.33, 370.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[1394.62, 435.56], [1397.51, 438.14], [1398.67, 436.87], [1402.5, 440.3], [1404.42, 438.18], [1405.5, 439.14], [1412.6, 431.28], [1404.8, 424.29], [1394.62, 435.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1446.63, 587.22], [1451.08, 591.16], [1450.01, 592.35], [1452.6, 594.65], [1446.6, 601.35], [1443.64, 598.72], [1445.26, 596.92], [1441.18, 593.32], [1446.63, 587.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1494.25, 591.52], [1496.18, 593.25], [1495.17, 594.36], [1499.94, 598.65], [1504.82, 593.28], [1504.29, 592.8], [1506.07, 590.84], [1503.1, 588.17], [1500.39, 591.14], [1497.2, 588.27], [1494.25, 591.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1409.05, 440.58], [1414.51, 434.56], [1415.66, 435.61], [1418.51, 432.46], [1419.44, 433.3], [1420.89, 431.71], [1425.18, 435.59], [1423.73, 437.17], [1424.67, 438.02], [1416.35, 447.17], [1409.05, 440.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1368.52, 416.53], [1387.14, 433.57], [1397.86, 421.94], [1392.49, 417.02], [1393.47, 415.97], [1385.27, 408.48], [1384.21, 409.62], [1379.15, 405.0], [1368.52, 416.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.332, "pop": 166, "jobs": 0}}, {"shape": {"outer": [[1499.19, 531.7], [1512.8, 516.97], [1520.9, 524.4], [1512.79, 533.19], [1515.94, 536.08], [1512.69, 539.6], [1509.55, 536.73], [1506.66, 539.85], [1502.14, 535.7], [1502.79, 535.0], [1499.19, 531.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-1857.08, -1417.48], [-1838.89, -1418.11], [-1838.53, -1407.9], [-1836.6, -1407.97], [-1835.75, -1383.55], [-1836.95, -1383.5], [-1836.84, -1380.33], [-1841.0, -1380.19], [-1841.01, -1380.82], [-1849.65, -1380.52], [-1849.84, -1385.78], [-1852.31, -1385.7], [-1852.59, -1393.54], [-1854.7, -1393.45], [-1856.66, -1393.39], [-1856.82, -1398.09], [-1857.42, -1398.08], [-1857.52, -1400.97], [-1859.5, -1400.91], [-1859.65, -1405.25], [-1856.66, -1405.36], [-1857.08, -1417.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.439, "pop": 0, "jobs": 439}}, {"shape": {"outer": [[-1921.51, -826.23], [-1921.1, -815.13], [-1925.79, -814.95], [-1926.51, -814.91], [-1929.42, -814.79], [-1930.73, -814.73], [-1944.99, -814.13], [-1953.73, -813.77], [-1956.93, -813.63], [-1955.95, -790.63], [-1923.19, -792.06], [-1899.53, -793.13], [-1900.98, -827.01], [-1921.51, -826.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.976, "pop": 0, "jobs": 976}}, {"shape": {"outer": [[-1934.85, -837.91], [-1922.73, -838.55], [-1922.04, -825.75], [-1921.6, -817.3], [-1925.87, -817.08], [-1925.79, -814.95], [-1929.42, -814.79], [-1929.72, -817.25], [-1933.73, -817.03], [-1934.85, -837.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.169, "pop": 0, "jobs": 169}}, {"shape": {"outer": [[-1929.42, -814.79], [-1930.73, -814.73], [-1944.99, -814.13], [-1953.73, -813.77], [-1953.81, -815.98], [-1956.14, -815.94], [-1957.25, -836.56], [-1934.85, -837.91], [-1933.73, -817.03], [-1929.72, -817.25], [-1929.42, -814.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.335, "pop": 0, "jobs": 335}}, {"shape": {"outer": [[-2933.78, -477.31], [-2926.16, -475.54], [-2927.46, -469.97], [-2920.2, -468.29], [-2918.77, -474.4], [-2913.41, -473.15], [-2912.0, -479.18], [-2917.38, -480.44], [-2915.93, -486.59], [-2919.66, -487.47], [-2918.31, -493.19], [-2924.9, -494.72], [-2927.67, -482.92], [-2932.22, -483.98], [-2933.78, -477.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-2177.73, -461.2], [-2177.78, -462.95], [-2176.99, -462.97], [-2177.04, -464.74], [-2177.7, -464.72], [-2177.77, -466.88], [-2177.95, -469.55], [-2177.24, -469.57], [-2177.3, -471.45], [-2178.44, -471.41], [-2178.5, -473.2], [-2180.79, -473.14], [-2180.69, -469.51], [-2180.62, -466.86], [-2180.55, -464.48], [-2180.45, -461.12], [-2177.73, -461.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1358.57, 1237.96], [1362.87, 1241.78], [1363.1, 1244.09], [1353.37, 1254.62], [1347.96, 1249.73], [1358.57, 1237.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.074, "pop": 0, "jobs": 74}}, {"shape": {"outer": [[644.0, 268.69], [612.99, 302.97], [622.15, 311.1], [630.64, 301.6], [650.21, 318.95], [646.72, 322.86], [656.05, 331.15], [648.23, 339.9], [692.46, 379.13], [684.48, 388.06], [698.77, 400.75], [706.87, 391.67], [716.42, 400.14], [750.72, 361.75], [679.1, 298.23], [678.28, 299.15], [644.0, 268.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4384}}, {"shape": {"outer": [[751.42, 366.78], [757.48, 372.23], [765.27, 379.25], [744.42, 402.44], [755.67, 413.23], [743.35, 427.03], [718.25, 404.16], [751.42, 366.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.778, "pop": 0, "jobs": 778}}, {"shape": {"outer": [[697.2, 420.34], [704.03, 413.13], [721.3, 428.83], [720.27, 429.86], [731.61, 440.07], [725.98, 446.62], [697.2, 420.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.233, "pop": 0, "jobs": 233}}, {"shape": {"outer": [[1596.92, 610.46], [1606.8, 599.81], [1603.52, 596.79], [1604.12, 596.14], [1601.05, 593.31], [1600.41, 594.0], [1600.01, 593.64], [1593.02, 601.17], [1593.95, 602.03], [1591.11, 605.1], [1593.34, 607.15], [1590.79, 609.9], [1593.62, 612.51], [1596.17, 609.77], [1596.92, 610.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1507.68, 920.65], [1512.39, 915.42], [1593.78, 988.99], [1581.27, 1002.5], [1559.28, 982.85], [1565.01, 976.65], [1545.23, 958.01], [1543.72, 959.91], [1520.16, 939.38], [1513.32, 928.12], [1514.68, 926.69], [1507.68, 920.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.893, "pop": 0, "jobs": 893}}, {"shape": {"outer": [[1537.98, 981.89], [1546.73, 978.24], [1549.69, 984.2], [1548.16, 984.86], [1557.3, 1006.27], [1549.77, 1009.11], [1537.98, 981.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.161, "pop": 0, "jobs": 161}}, {"shape": {"outer": [[1563.36, 1006.09], [1569.84, 999.25], [1577.97, 1006.62], [1571.48, 1013.45], [1563.36, 1006.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1527.95, 793.56], [1542.33, 806.88], [1540.51, 808.83], [1525.81, 824.59], [1511.43, 811.27], [1527.95, 793.56]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.133, "pop": 0, "jobs": 133}}, {"shape": {"outer": [[1540.51, 808.83], [1545.21, 813.18], [1533.97, 825.24], [1537.12, 828.15], [1531.87, 833.77], [1524.03, 826.5], [1525.81, 824.59], [1540.51, 808.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.12, "pop": 0, "jobs": 120}}, {"shape": {"outer": [[1546.26, 821.12], [1546.82, 821.63], [1549.91, 818.17], [1554.92, 822.63], [1546.64, 831.89], [1542.02, 827.79], [1544.43, 825.1], [1543.47, 824.24], [1546.26, 821.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1547.11, 833.06], [1550.83, 828.98], [1550.32, 828.52], [1555.34, 823.01], [1556.09, 823.69], [1557.06, 822.62], [1561.0, 826.18], [1549.77, 838.51], [1546.56, 835.58], [1548.07, 833.93], [1547.11, 833.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1571.11, 806.22], [1582.73, 793.4], [1582.08, 792.8], [1585.77, 788.76], [1590.72, 793.26], [1589.7, 794.38], [1591.07, 795.62], [1576.98, 811.54], [1571.11, 806.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.115, "pop": 0, "jobs": 115}}, {"shape": {"outer": [[1565.08, 826.69], [1572.79, 833.69], [1558.36, 849.49], [1550.65, 842.5], [1565.08, 826.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1553.71, 857.92], [1557.59, 853.68], [1574.39, 835.28], [1582.36, 842.51], [1581.2, 843.78], [1561.68, 865.16], [1553.71, 857.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.211, "pop": 0, "jobs": 211}}, {"shape": {"outer": [[1581.2, 843.78], [1586.29, 848.39], [1564.63, 872.12], [1560.72, 876.4], [1555.63, 871.78], [1561.68, 865.16], [1581.2, 843.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.167, "pop": 0, "jobs": 167}}, {"shape": {"outer": [[1564.63, 872.12], [1568.7, 875.8], [1570.8, 873.5], [1573.4, 875.86], [1576.8, 872.14], [1593.53, 853.82], [1594.0, 853.3], [1587.33, 847.25], [1586.29, 848.39], [1564.63, 872.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.187, "pop": 0, "jobs": 187}}, {"shape": {"outer": [[1593.53, 853.82], [1598.62, 858.43], [1587.33, 870.8], [1581.89, 876.76], [1576.8, 872.14], [1593.53, 853.82]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.048, "pop": 0, "jobs": 48}}, {"shape": {"outer": [[1589.02, 894.2], [1603.66, 878.2], [1602.6, 877.28], [1610.55, 868.61], [1616.85, 874.27], [1593.65, 898.39], [1589.02, 894.2]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.134, "pop": 0, "jobs": 134}}, {"shape": {"outer": [[1590.71, 873.86], [1602.24, 861.24], [1608.31, 866.75], [1596.78, 879.37], [1590.71, 873.86]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.078, "pop": 0, "jobs": 78}}, {"shape": {"outer": [[1483.5, 786.35], [1500.06, 768.4], [1511.19, 778.8], [1511.46, 781.51], [1496.94, 798.27], [1483.5, 786.35]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[1477.4, 775.46], [1491.35, 760.55], [1497.68, 766.43], [1483.73, 781.35], [1477.4, 775.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.113, "pop": 0, "jobs": 113}}, {"shape": {"outer": [[1355.39, 741.25], [1370.64, 724.61], [1377.1, 730.5], [1376.12, 731.58], [1377.85, 733.16], [1378.83, 732.07], [1385.07, 737.75], [1384.03, 738.89], [1386.81, 741.42], [1387.85, 740.29], [1394.38, 746.23], [1393.32, 747.38], [1394.96, 748.87], [1393.27, 750.71], [1395.03, 752.32], [1397.24, 752.2], [1398.81, 750.48], [1397.47, 749.26], [1399.04, 747.55], [1397.82, 746.44], [1403.42, 740.32], [1420.07, 755.49], [1414.37, 761.71], [1413.21, 760.65], [1408.48, 765.81], [1409.63, 766.87], [1403.9, 773.11], [1403.22, 772.48], [1397.06, 779.2], [1374.71, 758.85], [1377.09, 756.26], [1371.8, 751.44], [1372.49, 750.68], [1370.2, 748.59], [1367.13, 751.94], [1355.39, 741.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 576, "jobs": 0}}, {"shape": {"outer": [[1351.57, 737.28], [1366.32, 721.04], [1362.42, 717.53], [1361.97, 718.03], [1359.56, 715.84], [1357.48, 718.13], [1355.9, 716.69], [1355.76, 714.28], [1357.19, 712.71], [1358.55, 713.93], [1360.13, 712.18], [1360.6, 712.6], [1362.76, 710.23], [1363.18, 710.62], [1366.29, 707.21], [1349.99, 692.48], [1344.84, 698.14], [1345.78, 698.98], [1344.53, 700.35], [1343.6, 699.51], [1334.34, 709.7], [1334.94, 710.24], [1332.6, 712.81], [1333.05, 713.22], [1332.36, 713.99], [1330.98, 714.01], [1329.48, 715.73], [1329.51, 717.9], [1331.12, 719.3], [1332.59, 719.27], [1335.2, 721.62], [1334.76, 722.1], [1340.83, 727.58], [1341.1, 727.28], [1345.91, 731.62], [1345.64, 731.92], [1351.57, 737.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.702, "pop": 351, "jobs": 0}}, {"shape": {"outer": [[1349.27, 659.92], [1362.81, 644.36], [1357.23, 639.26], [1342.91, 654.52], [1349.27, 659.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.106, "pop": 0, "jobs": 106}}, {"shape": {"outer": [[1363.99, 616.73], [1378.54, 600.84], [1385.15, 606.86], [1370.59, 622.74], [1363.99, 616.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.123, "pop": 0, "jobs": 123}}, {"shape": {"outer": [[1370.59, 622.74], [1377.35, 628.88], [1391.91, 613.0], [1385.15, 606.86], [1370.59, 622.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.126, "pop": 0, "jobs": 126}}, {"shape": {"outer": [[1392.42, 642.89], [1410.52, 622.79], [1416.22, 627.87], [1406.6, 638.57], [1404.72, 636.9], [1396.25, 646.31], [1392.42, 642.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.112, "pop": 0, "jobs": 112}}, {"shape": {"outer": [[1403.27, 651.22], [1411.07, 642.7], [1415.81, 646.94], [1407.98, 655.5], [1403.27, 651.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1407.98, 655.5], [1407.33, 656.21], [1413.98, 662.24], [1428.2, 646.68], [1421.55, 640.65], [1415.81, 646.94], [1407.98, 655.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.121, "pop": 0, "jobs": 121}}, {"shape": {"outer": [[1440.04, 651.69], [1447.11, 643.87], [1460.89, 656.27], [1453.82, 664.08], [1449.08, 659.81], [1440.04, 651.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[1422.94, 805.82], [1438.17, 789.69], [1459.06, 808.9], [1444.72, 825.25], [1422.94, 805.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.405, "pop": 0, "jobs": 405}}, {"shape": {"outer": [[1472.99, 853.84], [1486.22, 838.66], [1499.12, 849.98], [1485.87, 864.98], [1472.99, 853.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.22, "pop": 0, "jobs": 220}}, {"shape": {"outer": [[1502.47, 870.55], [1519.04, 851.85], [1528.7, 860.34], [1512.13, 879.05], [1502.47, 870.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[1526.76, 891.9], [1542.87, 873.71], [1552.34, 882.03], [1536.22, 900.23], [1526.76, 891.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[23.72, 122.8], [29.9, 116.36], [37.76, 123.85], [31.59, 130.28], [23.72, 122.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1039.76, 730.8], [1077.29, 688.82], [1087.3, 696.91], [1096.04, 687.7], [1086.41, 679.2], [1091.34, 673.99], [1124.87, 704.42], [1122.77, 706.44], [1133.01, 715.7], [1137.59, 711.67], [1167.51, 739.07], [1160.3, 746.88], [1163.11, 749.33], [1170.89, 741.12], [1222.34, 790.15], [1205.26, 808.56], [1208.07, 811.02], [1204.08, 815.22], [1201.67, 812.94], [1199.57, 814.76], [1189.34, 805.7], [1190.66, 804.09], [1166.98, 782.55], [1152.37, 798.75], [1133.31, 781.55], [1157.07, 755.23], [1159.67, 752.35], [1157.27, 750.48], [1154.61, 753.27], [1136.15, 736.65], [1095.37, 781.85], [1039.76, 730.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5812}}, {"shape": {"outer": [[1001.51, 631.8], [969.0, 667.33], [1025.16, 716.78], [1059.97, 678.8], [1059.99, 676.76], [1051.8, 669.35], [1059.06, 661.54], [1017.24, 623.61], [1015.01, 623.99], [1009.86, 624.77], [1007.88, 625.17], [1003.85, 629.3], [1001.51, 631.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2977}}, {"shape": {"outer": [[998.63, 779.2], [1027.08, 747.82], [1084.8, 800.12], [1079.65, 805.55], [1085.1, 810.68], [1090.79, 805.24], [1129.46, 840.62], [1103.14, 867.94], [1088.95, 856.7], [1030.27, 807.44], [1015.3, 794.32], [1008.84, 800.94], [1023.7, 814.75], [1020.46, 817.95], [1047.58, 843.1], [1019.1, 873.34], [996.81, 852.92], [1007.45, 841.91], [1020.49, 853.42], [1031.86, 840.83], [1014.19, 824.18], [1002.13, 837.3], [990.85, 849.58], [972.95, 833.69], [983.8, 821.52], [979.38, 817.56], [1007.07, 786.77], [998.63, 779.2]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5150}}, {"shape": {"outer": [[934.8, 794.47], [951.03, 776.04], [960.28, 784.11], [944.05, 802.55], [934.8, 794.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.193, "pop": 0, "jobs": 193}}, {"shape": {"outer": [[1117.84, 434.91], [1096.83, 458.17], [1107.73, 467.95], [1134.38, 438.42], [1123.48, 428.65], [1117.84, 434.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.372, "pop": 0, "jobs": 372}}, {"shape": {"outer": [[1096.83, 458.17], [1081.43, 444.36], [1097.57, 426.66], [1102.62, 421.12], [1117.84, 434.91], [1096.83, 458.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.414, "pop": 0, "jobs": 414}}, {"shape": {"outer": [[878.69, 309.1], [880.77, 306.83], [885.5, 301.69], [891.0, 295.69], [893.35, 293.13], [902.89, 301.82], [905.59, 304.28], [903.89, 306.12], [922.5, 323.08], [924.49, 320.91], [937.4, 332.66], [922.45, 348.96], [878.69, 309.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.785, "pop": 0, "jobs": 785}}, {"shape": {"outer": [[1078.05, 927.2], [1074.64, 924.42], [1073.4, 918.35], [1079.68, 911.55], [1071.38, 904.25], [1074.33, 900.58], [1075.99, 901.96], [1088.91, 887.79], [1091.85, 890.22], [1094.45, 886.56], [1106.17, 896.44], [1078.05, 927.2]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.408, "pop": 0, "jobs": 408}}, {"shape": {"outer": [[1106.61, 896.75], [1121.74, 910.53], [1092.61, 942.26], [1077.72, 928.7], [1106.61, 896.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.56, "pop": 0, "jobs": 560}}, {"shape": {"outer": [[1056.33, 578.36], [1070.91, 562.39], [1102.98, 591.44], [1088.41, 607.42], [1056.33, 578.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.599, "pop": 0, "jobs": 599}}, {"shape": {"outer": [[998.58, 502.16], [1011.0, 488.43], [1049.7, 523.18], [1045.15, 528.21], [1037.28, 536.91], [998.58, 502.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.616, "pop": 0, "jobs": 616}}, {"shape": {"outer": [[834.32, 272.19], [841.02, 278.27], [843.35, 280.37], [859.22, 294.74], [867.21, 286.08], [876.67, 275.81], [880.14, 272.05], [867.77, 260.77], [865.21, 263.57], [861.31, 267.85], [859.85, 266.52], [858.61, 267.87], [856.28, 265.77], [860.31, 261.34], [852.54, 254.32], [851.49, 253.36], [848.74, 256.38], [834.32, 272.19]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 806, "jobs": 0}}, {"shape": {"outer": [[1351.97, 687.45], [1355.96, 683.2], [1367.35, 693.87], [1363.35, 698.12], [1351.97, 687.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1360.54, 680.84], [1365.48, 675.36], [1370.77, 680.09], [1365.83, 685.57], [1360.54, 680.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1370.18, 668.01], [1373.67, 664.05], [1374.43, 664.73], [1377.7, 661.04], [1382.97, 665.67], [1379.62, 669.46], [1380.28, 670.03], [1373.59, 677.59], [1370.12, 674.54], [1369.67, 675.06], [1367.54, 673.18], [1368.38, 672.23], [1367.8, 671.72], [1370.68, 668.45], [1370.18, 668.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1374.41, 679.45], [1378.29, 675.08], [1379.27, 675.95], [1385.95, 668.45], [1388.13, 670.39], [1387.52, 671.09], [1390.44, 673.66], [1380.5, 684.83], [1374.41, 679.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1381.02, 685.16], [1391.02, 673.8], [1395.89, 678.06], [1384.87, 690.57], [1383.44, 689.31], [1384.45, 688.16], [1381.02, 685.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1389.27, 689.25], [1391.66, 686.56], [1390.94, 685.94], [1398.21, 677.78], [1405.28, 684.02], [1397.63, 692.62], [1396.74, 691.82], [1394.73, 694.08], [1389.27, 689.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1396.2, 699.27], [1407.34, 686.31], [1413.42, 691.51], [1402.28, 704.46], [1396.2, 699.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1408.32, 702.83], [1416.21, 694.02], [1421.9, 699.07], [1413.99, 707.88], [1408.32, 702.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1413.96, 708.73], [1423.07, 698.9], [1428.12, 703.55], [1419.01, 713.38], [1413.96, 708.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1427.78, 736.55], [1424.57, 740.16], [1423.53, 741.35], [1433.77, 750.35], [1438.02, 745.55], [1437.0, 744.66], [1427.78, 736.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.056, "pop": 0, "jobs": 56}}, {"shape": {"outer": [[1471.31, 765.42], [1483.19, 752.83], [1487.41, 756.79], [1480.61, 763.99], [1481.83, 765.13], [1476.74, 770.52], [1471.31, 765.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[1469.58, 765.89], [1463.92, 760.54], [1476.42, 747.4], [1482.08, 752.75], [1469.58, 765.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1456.54, 751.32], [1467.69, 738.92], [1473.97, 744.54], [1462.83, 756.93], [1456.54, 751.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1454.04, 825.82], [1459.3, 819.74], [1467.46, 826.76], [1462.19, 832.83], [1454.04, 825.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1449.68, 822.99], [1454.86, 827.64], [1450.8, 832.14], [1448.99, 830.51], [1445.61, 827.47], [1449.68, 822.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1469.66, 823.69], [1462.67, 817.07], [1468.1, 811.38], [1475.09, 818.0], [1469.66, 823.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1470.62, 808.47], [1472.52, 806.46], [1471.5, 805.51], [1476.13, 800.59], [1484.05, 807.99], [1479.43, 812.89], [1476.4, 810.07], [1474.49, 812.09], [1470.62, 808.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1490.1, 838.15], [1491.88, 836.15], [1492.55, 836.74], [1495.5, 833.41], [1504.81, 841.57], [1501.46, 845.37], [1501.22, 845.16], [1499.6, 847.0], [1490.58, 839.09], [1490.83, 838.8], [1490.1, 838.15]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1503.43, 824.87], [1502.79, 825.57], [1501.15, 824.06], [1497.73, 827.78], [1499.38, 829.29], [1498.53, 830.21], [1507.32, 838.22], [1512.22, 832.88], [1503.43, 824.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1501.36, 855.42], [1510.78, 845.11], [1516.05, 849.89], [1506.63, 860.21], [1501.36, 855.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1599.53, 896.38], [1601.81, 893.87], [1601.34, 893.45], [1605.52, 888.84], [1604.94, 888.32], [1608.61, 884.28], [1609.21, 884.82], [1612.01, 881.73], [1617.44, 886.62], [1614.75, 889.59], [1615.49, 890.26], [1611.71, 894.41], [1611.23, 893.98], [1607.11, 898.52], [1604.17, 895.87], [1601.83, 898.44], [1599.53, 896.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1610.69, 899.72], [1616.73, 905.19], [1623.68, 897.6], [1623.05, 897.02], [1626.64, 893.1], [1621.4, 888.35], [1617.48, 892.63], [1616.87, 892.09], [1613.88, 895.37], [1614.31, 895.75], [1610.69, 899.72]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1621.94, 901.4], [1627.02, 895.82], [1627.86, 896.59], [1630.56, 893.63], [1636.88, 899.35], [1627.64, 909.5], [1623.18, 905.48], [1624.66, 903.86], [1621.94, 901.4]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1655.3, 922.52], [1653.06, 920.53], [1651.94, 921.77], [1652.68, 922.43], [1646.1, 929.78], [1645.3, 929.07], [1641.25, 933.61], [1641.85, 934.14], [1635.17, 941.62], [1616.91, 925.43], [1623.77, 917.75], [1626.62, 920.27], [1632.58, 913.6], [1629.88, 911.2], [1633.74, 906.88], [1633.27, 906.46], [1638.4, 900.73], [1639.18, 901.41], [1641.96, 898.3], [1652.32, 907.5], [1652.77, 907.01], [1660.47, 913.85], [1660.64, 916.55], [1655.3, 922.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.712, "pop": 356, "jobs": 0}}, {"shape": {"outer": [[1663.4, 944.55], [1675.95, 930.41], [1676.58, 929.93], [1677.34, 929.69], [1678.07, 929.71], [1678.76, 929.95], [1685.4, 935.79], [1671.39, 951.58], [1663.4, 944.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.143, "pop": 0, "jobs": 143}}, {"shape": {"outer": [[1671.39, 951.58], [1678.01, 957.42], [1692.02, 941.63], [1685.4, 935.79], [1671.39, 951.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.119, "pop": 0, "jobs": 119}}, {"shape": {"outer": [[1666.39, 891.08], [1676.1, 899.79], [1688.49, 886.09], [1679.36, 877.9], [1670.19, 888.05], [1669.59, 887.52], [1666.39, 891.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.147, "pop": 0, "jobs": 147}}, {"shape": {"outer": [[1677.37, 872.53], [1682.57, 866.75], [1695.46, 878.24], [1690.26, 884.04], [1677.37, 872.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.086, "pop": 0, "jobs": 86}}, {"shape": {"outer": [[1716.99, 887.42], [1761.03, 926.96], [1752.04, 936.92], [1746.2, 931.7], [1730.93, 948.63], [1719.43, 938.34], [1718.91, 938.91], [1691.94, 914.87], [1716.99, 887.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1281}}, {"shape": {"outer": [[1714.06, 962.4], [1721.77, 969.26], [1709.59, 982.86], [1707.54, 985.15], [1699.82, 978.29], [1714.06, 962.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.141, "pop": 0, "jobs": 141}}, {"shape": {"outer": [[1717.12, 982.83], [1723.72, 975.52], [1730.24, 981.22], [1729.31, 982.29], [1732.27, 984.87], [1725.38, 992.73], [1720.54, 988.5], [1721.87, 986.98], [1717.12, 982.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1709.59, 982.86], [1713.73, 986.57], [1717.12, 982.83], [1723.72, 975.52], [1725.97, 973.04], [1721.77, 969.26], [1709.59, 982.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.065, "pop": 0, "jobs": 65}}, {"shape": {"outer": [[1420.99, 657.05], [1429.3, 647.79], [1432.87, 650.97], [1431.48, 652.52], [1434.45, 655.16], [1424.23, 666.56], [1419.08, 661.97], [1422.38, 658.29], [1420.99, 657.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1425.86, 670.77], [1429.97, 666.32], [1427.8, 664.34], [1431.63, 660.19], [1433.53, 661.94], [1435.25, 660.08], [1436.7, 661.42], [1441.1, 656.66], [1445.17, 660.39], [1442.64, 663.13], [1443.16, 663.6], [1431.63, 676.08], [1425.86, 670.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1440.65, 681.98], [1441.64, 682.9], [1440.59, 684.03], [1444.52, 687.67], [1456.51, 674.89], [1453.08, 671.69], [1448.29, 676.8], [1446.8, 675.41], [1440.65, 681.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1440.63, 622.09], [1446.27, 627.18], [1441.46, 632.47], [1435.83, 627.39], [1440.63, 622.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1459.24, 636.23], [1464.47, 630.85], [1467.6, 633.86], [1462.38, 639.24], [1459.24, 636.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1477.32, 646.1], [1480.67, 649.25], [1476.11, 654.07], [1472.76, 650.91], [1477.32, 646.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1478.42, 636.62], [1486.85, 627.58], [1486.7, 627.44], [1487.74, 626.33], [1483.93, 622.8], [1482.88, 623.91], [1482.55, 623.59], [1473.6, 633.17], [1476.2, 635.58], [1476.71, 635.04], [1478.42, 636.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1480.41, 636.38], [1487.52, 628.66], [1489.75, 630.7], [1491.24, 629.08], [1495.06, 632.57], [1488.59, 639.61], [1486.54, 637.74], [1484.42, 640.04], [1480.41, 636.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1486.21, 646.72], [1490.5, 641.91], [1491.62, 642.9], [1497.13, 636.73], [1501.93, 640.98], [1492.13, 651.96], [1486.21, 646.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1494.27, 650.27], [1503.6, 639.92], [1509.36, 645.09], [1506.15, 648.66], [1506.56, 649.02], [1502.76, 653.25], [1501.75, 652.35], [1499.46, 654.9], [1494.27, 650.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1447.71, 690.16], [1449.26, 688.45], [1448.87, 688.09], [1454.13, 682.32], [1459.38, 687.06], [1453.6, 693.43], [1451.33, 691.38], [1450.31, 692.51], [1447.71, 690.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1453.67, 695.73], [1460.22, 688.4], [1466.64, 694.08], [1460.09, 701.41], [1453.67, 695.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1464.72, 702.3], [1467.48, 699.24], [1467.16, 698.95], [1470.44, 695.33], [1470.75, 695.62], [1473.16, 692.98], [1474.22, 693.94], [1475.66, 692.34], [1479.03, 695.37], [1477.59, 696.96], [1478.16, 697.48], [1469.72, 706.8], [1464.72, 702.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1473.63, 703.33], [1470.15, 707.12], [1476.32, 712.74], [1479.84, 708.9], [1477.83, 707.08], [1483.81, 700.56], [1485.1, 701.72], [1488.51, 698.0], [1486.57, 696.23], [1483.6, 699.46], [1480.74, 696.86], [1474.27, 703.93], [1473.63, 703.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1484.17, 720.59], [1493.36, 710.85], [1486.97, 704.86], [1477.77, 714.6], [1484.17, 720.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1509.32, 663.78], [1512.88, 659.99], [1512.23, 659.39], [1517.57, 653.68], [1517.29, 653.42], [1518.66, 651.97], [1514.45, 648.05], [1506.86, 656.15], [1508.45, 657.63], [1505.77, 660.48], [1509.32, 663.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1508.33, 666.6], [1520.74, 652.93], [1521.61, 653.71], [1522.97, 654.94], [1523.91, 655.79], [1521.83, 658.09], [1524.24, 660.27], [1513.92, 671.63], [1508.33, 666.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1413.48, 623.29], [1418.72, 617.83], [1427.77, 626.45], [1424.38, 629.98], [1425.07, 630.63], [1423.2, 632.57], [1413.48, 623.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1426.68, 624.98], [1429.16, 622.4], [1433.8, 626.8], [1431.33, 629.39], [1426.68, 624.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1420.21, 613.56], [1425.32, 607.9], [1429.06, 611.26], [1429.56, 610.7], [1437.28, 617.62], [1431.67, 623.83], [1420.21, 613.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1416.93, 582.4], [1419.73, 579.35], [1420.67, 580.21], [1424.6, 575.91], [1423.84, 575.22], [1427.05, 571.72], [1421.45, 566.61], [1414.46, 574.23], [1415.79, 575.45], [1412.84, 578.67], [1416.93, 582.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1336.5, 587.87], [1359.48, 562.58], [1374.42, 576.06], [1371.7, 579.06], [1372.03, 579.36], [1370.42, 581.14], [1367.74, 584.08], [1367.47, 583.84], [1363.78, 587.87], [1363.92, 589.12], [1369.45, 594.09], [1368.2, 595.47], [1373.29, 600.07], [1362.81, 611.6], [1355.73, 605.21], [1354.5, 606.55], [1345.0, 597.96], [1345.9, 596.96], [1342.63, 594.01], [1342.07, 594.62], [1339.47, 592.27], [1340.34, 591.33], [1336.5, 587.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.78, "pop": 390, "jobs": 0}}, {"shape": {"outer": [[1401.87, 571.9], [1405.06, 568.48], [1404.54, 568.01], [1408.03, 564.29], [1408.55, 564.76], [1413.74, 559.21], [1420.89, 565.86], [1409.25, 578.3], [1407.07, 576.27], [1405.95, 577.46], [1402.18, 573.95], [1403.06, 573.01], [1401.87, 571.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[1400.63, 567.03], [1409.6, 557.4], [1403.76, 551.99], [1394.79, 561.63], [1400.63, 567.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1386.04, 553.31], [1389.95, 549.15], [1390.18, 549.36], [1395.93, 543.23], [1401.92, 548.81], [1392.25, 559.11], [1386.04, 553.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-275.69, -239.44], [-296.03, -216.68], [-293.99, -214.87], [-297.24, -211.24], [-291.7, -206.32], [-292.16, -205.81], [-278.56, -193.72], [-279.36, -192.83], [-261.78, -176.86], [-253.88, -185.71], [-253.07, -184.99], [-249.77, -188.69], [-254.43, -192.81], [-244.4, -204.04], [-240.43, -200.52], [-241.45, -199.37], [-240.49, -198.58], [-239.51, -199.67], [-238.32, -198.61], [-237.38, -199.65], [-238.48, -200.69], [-237.31, -202.01], [-235.81, -203.72], [-234.76, -202.83], [-233.81, -203.84], [-234.92, -204.85], [-234.09, -205.68], [-235.12, -206.57], [-235.88, -205.76], [-237.08, -206.85], [-238.69, -208.31], [-237.82, -209.29], [-238.92, -210.25], [-239.87, -209.14], [-241.41, -210.54], [-242.04, -209.83], [-250.61, -217.38], [-263.01, -203.39], [-263.81, -202.49], [-264.55, -203.1], [-265.49, -203.6], [-266.47, -203.89], [-267.57, -204.07], [-268.67, -204.08], [-268.89, -204.27], [-270.09, -205.32], [-271.09, -206.22], [-274.71, -209.44], [-275.74, -210.35], [-279.27, -213.49], [-278.65, -214.18], [-278.08, -214.82], [-268.85, -225.13], [-267.88, -226.22], [-266.82, -227.41], [-267.73, -228.17], [-264.03, -232.27], [-269.49, -237.22], [-271.07, -235.34], [-275.69, -239.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.934, "pop": 0, "jobs": 934}}, {"shape": {"outer": [[-269.02, -164.39], [-295.12, -188.13], [-285.6, -198.51], [-279.36, -192.83], [-261.78, -176.86], [-259.51, -174.86], [-269.02, -164.39]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1391}}, {"shape": {"outer": [[-388.5, 297.45], [-391.44, 300.68], [-391.8, 300.36], [-403.91, 313.69], [-396.2, 320.65], [-383.42, 306.6], [-386.94, 303.43], [-384.66, 300.92], [-388.5, 297.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-423.45, 246.33], [-417.51, 239.6], [-415.93, 240.99], [-415.28, 240.92], [-414.04, 241.99], [-413.92, 242.64], [-401.9, 253.17], [-407.89, 259.96], [-423.45, 246.33]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-411.74, 235.78], [-404.75, 227.86], [-395.23, 236.18], [-397.31, 238.54], [-394.57, 240.94], [-399.39, 246.4], [-402.15, 243.98], [-403.2, 245.17], [-409.88, 239.33], [-408.92, 238.25], [-411.74, 235.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-295.5, 408.53], [-281.97, 393.69], [-279.17, 396.24], [-278.85, 395.89], [-275.71, 398.74], [-280.14, 403.59], [-279.18, 404.46], [-285.47, 411.34], [-286.03, 412.98], [-287.31, 414.15], [-288.99, 414.58], [-290.68, 414.12], [-291.95, 412.93], [-292.48, 411.26], [-295.5, 408.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-257.35, 399.34], [-248.87, 389.93], [-242.23, 395.87], [-244.29, 398.17], [-239.98, 402.02], [-246.4, 409.14], [-257.35, 399.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-226.83, 426.07], [-221.73, 420.61], [-216.25, 425.69], [-221.34, 431.15], [-226.83, 426.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-196.57, 420.44], [-188.93, 412.32], [-179.71, 420.95], [-187.35, 429.06], [-196.57, 420.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-228.73, 400.65], [-223.32, 394.84], [-220.72, 397.23], [-214.77, 390.84], [-222.83, 383.38], [-234.19, 395.6], [-228.73, 400.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-498.95, 188.04], [-494.71, 183.47], [-498.72, 179.76], [-499.53, 179.2], [-503.19, 183.28], [-503.58, 183.76], [-498.95, 188.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-171.56, 340.01], [-167.0, 335.05], [-161.93, 339.66], [-166.48, 344.63], [-171.56, 340.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-211.19, 348.39], [-206.88, 343.65], [-206.03, 344.42], [-200.53, 338.38], [-195.84, 342.63], [-194.71, 341.38], [-193.08, 342.85], [-196.09, 346.17], [-195.57, 346.63], [-198.93, 350.32], [-197.67, 351.45], [-204.72, 359.18], [-207.29, 356.86], [-208.93, 358.66], [-213.9, 354.17], [-209.81, 349.64], [-211.19, 348.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[-194.87, 370.99], [-180.33, 355.14], [-187.89, 348.25], [-198.59, 359.9], [-198.04, 360.39], [-198.42, 361.41], [-198.55, 362.48], [-198.4, 363.58], [-197.98, 364.62], [-199.75, 366.53], [-194.87, 370.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-188.18, 373.91], [-176.75, 361.58], [-169.68, 368.1], [-183.37, 382.87], [-188.66, 378.0], [-187.28, 376.5], [-188.03, 375.8], [-188.18, 373.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-172.41, 387.79], [-164.88, 379.38], [-163.46, 380.64], [-162.67, 379.76], [-152.05, 389.22], [-160.37, 398.5], [-161.06, 397.89], [-162.67, 399.7], [-169.98, 393.2], [-168.36, 391.39], [-172.41, 387.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-164.66, 368.96], [-156.86, 360.47], [-139.84, 375.99], [-147.65, 384.48], [-164.66, 368.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-141.19, 283.44], [-130.92, 272.37], [-121.23, 281.3], [-131.5, 292.36], [-141.19, 283.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-122.21, 303.02], [-118.01, 298.52], [-117.51, 298.98], [-115.94, 297.3], [-116.69, 296.61], [-114.7, 294.47], [-113.94, 295.18], [-112.32, 293.45], [-112.48, 293.3], [-109.52, 290.12], [-105.12, 289.94], [-103.89, 316.7], [-106.03, 318.02], [-122.21, 303.02]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}, {"shape": {"outer": [[-124.59, 302.03], [-131.17, 295.77], [-129.83, 294.36], [-130.06, 294.14], [-114.74, 278.12], [-113.31, 278.15], [-112.01, 279.38], [-111.14, 278.46], [-108.85, 278.37], [-106.91, 280.21], [-106.67, 282.5], [-108.12, 284.02], [-107.06, 285.03], [-112.95, 291.17], [-113.22, 290.92], [-119.4, 297.36], [-119.77, 297.0], [-124.59, 302.03]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-153.85, 270.18], [-142.3, 257.99], [-148.1, 252.53], [-159.65, 264.72], [-159.39, 264.98], [-160.87, 266.54], [-155.61, 271.49], [-154.12, 269.93], [-153.85, 270.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-164.78, 258.18], [-165.56, 259.04], [-165.32, 259.26], [-165.24, 260.62], [-163.45, 262.26], [-162.58, 262.22], [-163.71, 263.44], [-161.22, 265.73], [-159.1, 263.42], [-159.33, 263.22], [-155.99, 259.59], [-154.76, 259.11], [-151.75, 255.83], [-151.69, 254.93], [-150.84, 254.01], [-150.61, 254.21], [-147.67, 251.03], [-153.1, 246.06], [-164.5, 258.43], [-164.78, 258.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-125.25, 259.44], [-108.15, 258.48], [-106.74, 258.4], [-105.93, 272.57], [-120.64, 273.39], [-124.46, 273.61], [-125.25, 259.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-225.8, 141.49], [-222.69, 138.02], [-224.01, 136.85], [-221.31, 133.85], [-219.88, 135.12], [-216.76, 131.64], [-215.25, 132.98], [-214.97, 132.67], [-205.71, 140.92], [-205.31, 140.46], [-200.25, 144.98], [-210.49, 156.38], [-215.6, 151.83], [-214.98, 151.13], [-225.8, 141.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[-217.49, 164.5], [-212.17, 158.69], [-226.03, 146.11], [-230.45, 150.94], [-227.19, 153.9], [-228.08, 154.88], [-217.49, 164.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-250.91, 168.52], [-242.81, 159.69], [-227.15, 173.97], [-227.63, 174.51], [-226.35, 175.67], [-229.08, 178.64], [-230.36, 177.48], [-232.28, 179.57], [-236.82, 175.43], [-237.89, 176.6], [-243.18, 171.79], [-245.07, 173.84], [-250.91, 168.52]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-238.8, 160.91], [-236.49, 158.27], [-237.32, 157.56], [-234.99, 154.9], [-234.17, 155.61], [-232.18, 153.32], [-219.72, 164.12], [-219.98, 164.41], [-218.23, 165.94], [-223.39, 171.86], [-224.54, 170.87], [-225.74, 172.23], [-230.23, 168.34], [-230.56, 168.71], [-235.0, 164.86], [-234.68, 164.5], [-238.8, 160.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-268.05, 170.27], [-259.24, 160.28], [-258.82, 160.64], [-256.69, 158.23], [-250.46, 163.69], [-253.63, 167.29], [-252.64, 168.15], [-258.65, 174.97], [-260.78, 173.11], [-262.53, 175.09], [-268.05, 170.27]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-255.85, 181.82], [-248.8, 173.66], [-240.29, 180.96], [-242.06, 183.0], [-237.98, 186.51], [-242.58, 191.84], [-244.47, 190.22], [-245.15, 191.0], [-255.85, 181.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-149.19, 360.29], [-141.77, 352.29], [-134.3, 359.16], [-132.66, 357.39], [-127.03, 362.58], [-136.08, 372.35], [-149.19, 360.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-149.5, 337.05], [-138.62, 324.86], [-131.07, 331.56], [-134.12, 334.98], [-132.06, 336.81], [-138.09, 343.57], [-140.53, 341.41], [-142.32, 343.4], [-149.5, 337.05]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-156.94, 328.79], [-154.26, 325.84], [-154.7, 325.45], [-144.9, 314.65], [-138.48, 320.42], [-150.96, 334.18], [-156.94, 328.79]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-129.86, 355.58], [-123.63, 348.69], [-126.94, 345.72], [-125.72, 344.37], [-126.16, 343.98], [-120.2, 337.37], [-110.42, 346.15], [-117.69, 354.21], [-118.3, 353.66], [-121.29, 356.98], [-121.6, 356.7], [-124.75, 360.17], [-129.86, 355.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-530.91, 64.86], [-524.63, 58.14], [-523.55, 59.14], [-519.87, 55.2], [-514.64, 60.06], [-524.6, 70.72], [-526.29, 69.15], [-527.92, 70.89], [-531.2, 67.85], [-529.57, 66.1], [-530.91, 64.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2301.4, 1312.43], [2306.06, 1316.19], [2310.28, 1310.99], [2305.61, 1307.24], [2301.4, 1312.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2330.81, 1279.72], [2335.8, 1284.14], [2339.51, 1279.99], [2334.53, 1275.57], [2330.81, 1279.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2390.65, 1193.38], [2397.08, 1199.61], [2407.1, 1189.35], [2400.67, 1183.12], [2390.65, 1193.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2349.82, 1279.54], [2359.12, 1288.56], [2364.62, 1282.92], [2355.32, 1273.92], [2349.82, 1279.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2293.78, 1277.93], [2302.0, 1285.92], [2307.83, 1279.94], [2299.6, 1271.97], [2293.78, 1277.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2378.74, 1191.77], [2382.93, 1195.56], [2386.5, 1191.66], [2382.3, 1187.87], [2378.74, 1191.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2379.7, 1241.11], [2386.1, 1247.32], [2392.52, 1240.75], [2386.11, 1234.54], [2379.7, 1241.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2290.56, 1316.91], [2293.33, 1319.68], [2296.41, 1316.63], [2293.64, 1313.85], [2290.56, 1316.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2356.87, 1270.04], [2366.91, 1279.77], [2372.83, 1273.7], [2362.79, 1263.97], [2356.87, 1270.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2286.05, 1288.0], [2293.73, 1295.44], [2299.78, 1289.24], [2292.1, 1281.8], [2286.05, 1288.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2300.58, 1330.9], [2310.09, 1340.12], [2315.53, 1334.54], [2306.03, 1325.33], [2300.58, 1330.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2383.94, 1228.75], [2389.76, 1234.39], [2395.9, 1228.11], [2389.8, 1222.84], [2383.94, 1228.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2325.29, 1242.25], [2335.47, 1252.12], [2342.32, 1245.11], [2332.14, 1235.23], [2325.29, 1242.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2311.38, 1284.76], [2315.38, 1288.37], [2318.09, 1285.4], [2314.08, 1281.79], [2311.38, 1284.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2365.74, 1259.33], [2376.73, 1269.98], [2382.6, 1263.97], [2371.61, 1253.32], [2365.74, 1259.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2310.25, 1327.08], [2316.33, 1332.97], [2323.13, 1326.01], [2317.04, 1320.12], [2310.25, 1327.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2345.79, 1249.34], [2351.81, 1254.52], [2356.26, 1249.38], [2350.25, 1244.21], [2345.79, 1249.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2391.7, 1214.12], [2394.5, 1216.84], [2397.69, 1219.93], [2402.61, 1214.89], [2396.61, 1209.08], [2391.7, 1214.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2333.77, 1258.65], [2338.29, 1262.82], [2342.45, 1258.36], [2337.93, 1254.19], [2333.77, 1258.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2354.38, 1214.86], [2361.0, 1221.26], [2366.99, 1215.13], [2360.38, 1208.71], [2354.38, 1214.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2381.46, 1259.59], [2387.92, 1252.97], [2380.93, 1246.2], [2374.47, 1252.82], [2381.46, 1259.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2326.89, 1284.05], [2332.1, 1288.36], [2335.41, 1284.4], [2330.2, 1280.08], [2326.89, 1284.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2381.25, 1182.79], [2387.73, 1189.07], [2397.25, 1179.32], [2390.77, 1173.04], [2381.25, 1182.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2354.66, 1252.35], [2359.17, 1256.48], [2363.98, 1251.27], [2359.48, 1247.14], [2354.66, 1252.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2393.77, 1204.26], [2398.9, 1209.05], [2404.57, 1203.03], [2400.89, 1199.58], [2399.44, 1198.23], [2393.77, 1204.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2344.56, 1224.97], [2353.95, 1234.09], [2360.79, 1227.07], [2351.39, 1217.97], [2344.56, 1224.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2306.15, 1306.92], [2310.18, 1310.58], [2314.15, 1306.25], [2310.1, 1302.58], [2306.15, 1306.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2368.44, 1197.57], [2377.22, 1206.07], [2383.29, 1199.86], [2374.5, 1191.35], [2368.44, 1197.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2329.03, 1306.4], [2334.74, 1311.93], [2340.46, 1306.08], [2334.75, 1300.55], [2329.03, 1306.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2342.42, 1266.75], [2347.26, 1271.31], [2351.19, 1267.17], [2346.36, 1262.62], [2342.42, 1266.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2408.03, 1192.27], [2400.89, 1199.58], [2404.57, 1203.03], [2407.4, 1205.69], [2414.45, 1198.48], [2408.03, 1192.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2301.78, 1269.55], [2311.2, 1278.68], [2317.27, 1272.47], [2309.05, 1264.51], [2308.36, 1265.22], [2307.16, 1264.04], [2301.78, 1269.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2335.26, 1231.67], [2346.12, 1242.19], [2352.78, 1235.36], [2343.35, 1226.22], [2340.59, 1229.05], [2339.16, 1227.67], [2335.26, 1231.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2320.05, 1252.32], [2325.57, 1257.67], [2327.4, 1255.78], [2329.92, 1258.22], [2333.3, 1254.77], [2325.26, 1246.99], [2320.05, 1252.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2318.44, 1269.81], [2325.3, 1262.78], [2317.08, 1254.81], [2316.35, 1255.56], [2314.83, 1254.07], [2308.69, 1260.35], [2318.44, 1269.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2278.0, 1296.65], [2288.28, 1306.61], [2294.43, 1300.32], [2286.11, 1292.26], [2284.11, 1294.31], [2282.14, 1292.41], [2278.0, 1296.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2324.51, 1308.69], [2318.62, 1314.74], [2324.93, 1320.85], [2327.42, 1318.29], [2328.93, 1319.76], [2332.33, 1316.27], [2324.51, 1308.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2334.32, 1297.96], [2339.13, 1302.62], [2340.5, 1301.22], [2342.1, 1302.77], [2345.94, 1298.84], [2339.52, 1292.62], [2334.32, 1297.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2343.46, 1288.48], [2351.36, 1296.13], [2353.47, 1293.98], [2354.3, 1294.8], [2357.63, 1291.37], [2356.8, 1290.57], [2357.95, 1289.39], [2350.05, 1281.72], [2343.46, 1288.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2370.79, 1214.71], [2372.9, 1212.55], [2374.58, 1214.18], [2377.0, 1211.71], [2375.31, 1210.07], [2377.1, 1208.24], [2367.71, 1199.13], [2361.4, 1205.6], [2370.79, 1214.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[203.13, -2163.3], [209.45, -2166.32], [213.24, -2158.44], [216.15, -2159.84], [226.42, -2138.5], [217.19, -2134.09], [203.13, -2163.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[215.25, -2181.07], [220.03, -2183.84], [220.49, -2183.04], [222.28, -2184.07], [225.63, -2178.32], [222.89, -2176.73], [222.53, -2177.35], [221.3, -2176.64], [223.71, -2172.52], [227.37, -2174.64], [234.34, -2162.7], [226.1, -2157.93], [216.69, -2174.1], [218.65, -2175.23], [215.25, -2181.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[222.5, -2190.89], [231.69, -2197.28], [236.57, -2190.3], [227.37, -2183.93], [222.5, -2190.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[228.75, -2181.94], [231.9, -2184.14], [232.32, -2183.53], [235.87, -2186.0], [238.08, -2182.86], [240.42, -2184.51], [247.55, -2174.36], [238.51, -2168.05], [228.75, -2181.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[241.08, -2190.7], [248.99, -2197.71], [258.18, -2187.45], [250.28, -2180.42], [241.08, -2190.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[262.95, -2211.17], [269.36, -2218.27], [277.62, -2210.86], [271.2, -2203.77], [262.95, -2211.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[257.81, -2194.64], [263.57, -2201.09], [254.91, -2208.78], [253.41, -2207.11], [251.1, -2209.16], [246.83, -2204.39], [257.81, -2194.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[252.41, -2222.16], [258.88, -2229.48], [249.85, -2237.4], [243.37, -2230.08], [252.41, -2222.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[267.01, -2225.48], [273.75, -2231.07], [275.21, -2229.33], [278.37, -2231.95], [281.28, -2228.48], [283.02, -2229.93], [292.07, -2219.1], [282.72, -2211.35], [276.78, -2218.46], [274.47, -2216.54], [267.01, -2225.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[295.01, -2221.59], [281.34, -2237.25], [288.27, -2243.26], [301.94, -2227.59], [295.01, -2221.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[294.83, -2237.7], [297.35, -2240.15], [292.72, -2244.9], [290.2, -2242.44], [294.83, -2237.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[275.94, -2284.58], [273.26, -2281.27], [274.03, -2280.66], [271.46, -2277.48], [281.51, -2269.4], [287.8, -2277.16], [278.19, -2284.89], [277.15, -2283.6], [275.94, -2284.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[269.75, -2266.13], [275.34, -2272.34], [289.5, -2259.69], [279.32, -2248.38], [273.39, -2253.68], [275.57, -2256.11], [274.29, -2257.25], [276.69, -2259.93], [269.75, -2266.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[294.99, -2266.48], [299.58, -2271.46], [307.23, -2264.46], [298.51, -2254.99], [292.61, -2260.37], [296.76, -2264.88], [294.99, -2266.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[308.3, -2248.75], [315.69, -2256.23], [321.13, -2250.9], [319.09, -2248.83], [324.02, -2243.99], [318.67, -2238.58], [308.3, -2248.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[296.32, -2236.59], [304.13, -2243.9], [313.27, -2234.21], [305.46, -2226.9], [296.32, -2236.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[320.19, -2226.72], [322.4, -2229.0], [326.45, -2225.12], [324.24, -2222.83], [320.19, -2226.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[324.98, -2230.41], [327.4, -2232.96], [331.66, -2228.93], [329.25, -2226.4], [324.98, -2230.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[126.38, -2076.04], [144.47, -2087.57], [140.71, -2093.43], [163.53, -2107.97], [157.53, -2117.33], [159.85, -2118.8], [163.9, -2121.39], [169.5, -2112.65], [174.53, -2115.86], [175.5, -2114.36], [177.97, -2110.51], [183.9, -2114.3], [187.57, -2108.6], [191.02, -2110.8], [191.89, -2109.43], [196.38, -2102.43], [153.71, -2075.22], [160.91, -2063.99], [141.65, -2051.71], [137.59, -2058.03], [136.8, -2057.53], [132.29, -2064.57], [133.32, -2065.22], [126.38, -2076.04]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1150}}, {"shape": {"outer": [[513.41, -3067.08], [522.18, -3075.13], [525.81, -3071.33], [530.97, -3075.77], [539.44, -3066.84], [549.39, -3074.53], [552.83, -3070.93], [557.81, -3074.77], [567.09, -3064.9], [545.15, -3044.97], [540.89, -3043.3], [537.57, -3043.2], [535.61, -3043.33], [532.03, -3045.19], [513.41, -3067.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.648, "pop": 0, "jobs": 648}}, {"shape": {"outer": [[-2053.6, -902.43], [-2053.98, -911.47], [-2035.99, -912.21], [-2035.62, -903.18], [-2053.6, -902.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2052.74, -890.02], [-2053.13, -898.75], [-2038.41, -899.43], [-2038.38, -898.67], [-2035.98, -898.78], [-2035.64, -891.41], [-2038.04, -891.3], [-2038.01, -890.7], [-2052.74, -890.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1828.01, -904.78], [-1828.26, -913.99], [-1827.66, -914.0], [-1827.71, -916.03], [-1820.63, -916.23], [-1820.58, -914.21], [-1819.48, -914.24], [-1819.22, -905.03], [-1819.91, -905.01], [-1819.84, -902.47], [-1826.97, -902.26], [-1827.05, -904.81], [-1828.01, -904.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1787.3, -881.17], [-1776.89, -881.47], [-1776.91, -882.32], [-1774.79, -882.38], [-1775.05, -891.44], [-1777.17, -891.38], [-1777.2, -892.32], [-1787.61, -892.02], [-1787.6, -891.67], [-1788.77, -891.63], [-1788.48, -881.73], [-1787.32, -881.76], [-1787.3, -881.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2206.98, -904.27], [-2203.16, -908.69], [-2195.98, -902.54], [-2199.79, -898.12], [-2206.98, -904.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1948.53, -891.14], [-1948.66, -897.38], [-1940.86, -897.55], [-1940.73, -891.3], [-1948.53, -891.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2187.27, -896.99], [-2190.44, -899.53], [-2194.92, -893.98], [-2191.74, -891.43], [-2187.27, -896.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2147.26, -899.07], [-2147.54, -908.27], [-2135.21, -908.64], [-2134.92, -899.46], [-2147.26, -899.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2284.99, -867.91], [-2281.98, -865.26], [-2276.81, -871.09], [-2279.82, -873.75], [-2284.99, -867.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1803.22, -878.88], [-1795.32, -879.09], [-1795.57, -888.63], [-1803.48, -888.42], [-1803.22, -878.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1917.81, -892.46], [-1917.6, -883.68], [-1903.08, -884.04], [-1903.3, -892.82], [-1917.81, -892.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1950.06, -902.2], [-1950.29, -913.2], [-1943.59, -913.33], [-1943.35, -902.34], [-1950.06, -902.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2281.43, -864.54], [-2276.1, -870.55], [-2271.06, -866.12], [-2276.39, -860.1], [-2281.43, -864.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2236.58, -852.19], [-2228.8, -849.69], [-2226.1, -847.35], [-2219.33, -854.91], [-2238.21, -871.01], [-2236.58, -852.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-1874.2, -898.52], [-1861.34, -898.84], [-1861.47, -903.99], [-1864.34, -903.92], [-1864.64, -915.93], [-1874.61, -915.69], [-1874.2, -898.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-1792.39, -906.58], [-1792.55, -917.19], [-1787.24, -917.27], [-1787.26, -918.14], [-1777.65, -918.28], [-1777.63, -917.42], [-1771.84, -917.51], [-1771.67, -906.9], [-1792.39, -906.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-2271.86, -892.34], [-2278.87, -884.12], [-2275.13, -880.96], [-2274.26, -881.99], [-2271.34, -879.51], [-2264.47, -887.56], [-2267.14, -889.82], [-2267.87, -888.96], [-2271.86, -892.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1940.2, -902.78], [-1940.36, -910.67], [-1936.96, -910.75], [-1936.98, -911.6], [-1934.44, -911.65], [-1934.43, -910.8], [-1931.59, -910.87], [-1931.41, -902.99], [-1940.2, -902.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2222.01, -903.73], [-2229.48, -895.22], [-2223.12, -889.67], [-2215.65, -898.18], [-2218.76, -900.89], [-2218.08, -901.66], [-2219.86, -903.22], [-2220.55, -902.45], [-2222.01, -903.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1917.85, -900.75], [-1918.16, -911.72], [-1906.07, -912.07], [-1905.97, -908.36], [-1904.47, -908.4], [-1904.36, -904.79], [-1905.86, -904.75], [-1905.76, -901.09], [-1917.85, -900.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2269.4, -876.35], [-2263.23, -883.41], [-2261.7, -882.1], [-2259.97, -884.09], [-2255.01, -879.79], [-2256.8, -877.74], [-2256.32, -877.33], [-2262.45, -870.31], [-2269.4, -876.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2210.6, -881.39], [-2204.77, -876.31], [-2199.15, -882.71], [-2199.71, -883.21], [-2197.35, -885.9], [-2202.13, -890.06], [-2204.5, -887.37], [-2204.98, -887.79], [-2210.6, -881.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1445.06, -1799.99], [-1440.53, -1807.87], [-1435.88, -1805.2], [-1433.86, -1808.71], [-1427.54, -1805.11], [-1426.56, -1806.8], [-1422.05, -1804.23], [-1425.92, -1797.51], [-1427.33, -1798.31], [-1428.44, -1796.37], [-1430.71, -1797.66], [-1431.45, -1796.36], [-1437.19, -1799.64], [-1438.99, -1796.53], [-1445.06, -1799.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1445.25, -1820.02], [-1441.7, -1826.55], [-1434.84, -1822.86], [-1438.4, -1816.31], [-1445.25, -1820.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1412.9, -1844.98], [-1408.53, -1852.67], [-1402.84, -1849.45], [-1403.99, -1847.43], [-1399.74, -1845.04], [-1402.96, -1839.38], [-1412.9, -1844.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1417.57, -1834.45], [-1410.2, -1830.45], [-1408.61, -1833.35], [-1407.34, -1832.66], [-1405.41, -1836.18], [-1406.67, -1836.87], [-1405.73, -1838.59], [-1413.11, -1842.6], [-1417.57, -1834.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1433.95, -1815.46], [-1429.79, -1823.47], [-1418.14, -1817.47], [-1418.37, -1817.04], [-1416.2, -1815.91], [-1418.05, -1812.33], [-1416.81, -1811.7], [-1418.88, -1807.71], [-1433.95, -1815.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1472.53, -1667.74], [-1479.6, -1667.52], [-1479.58, -1666.97], [-1485.72, -1666.78], [-1485.84, -1670.5], [-1492.42, -1670.3], [-1493.19, -1695.06], [-1473.41, -1695.68], [-1472.53, -1667.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.343, "pop": 0, "jobs": 343}}, {"shape": {"outer": [[72.6, 333.43], [83.08, 342.84], [85.78, 339.87], [84.61, 338.82], [87.2, 335.95], [77.89, 327.57], [72.6, 333.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1520.5, -1342.87], [-1535.55, -1333.69], [-1535.23, -1322.61], [-1520.1, -1331.88], [-1520.5, -1342.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.109, "pop": 0, "jobs": 109}}, {"shape": {"outer": [[436.62, 73.03], [423.53, 61.41], [461.95, 18.43], [475.05, 30.05], [436.62, 73.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.808, "pop": 404, "jobs": 0}}, {"shape": {"outer": [[269.85, 5.82], [256.34, 20.42], [266.56, 29.83], [273.01, 22.85], [275.49, 25.14], [282.55, 17.51], [269.85, 5.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[-417.13, -872.15], [-379.72, -913.6], [-377.45, -916.11], [-365.16, -905.1], [-404.83, -861.13], [-417.13, -872.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.782, "pop": 391, "jobs": 0}}, {"shape": {"outer": [[1612.75, 2430.4], [1673.58, 2423.72], [1705.79, 2724.18], [1676.93, 2727.59], [1677.38, 2735.39], [1684.02, 2735.21], [1685.74, 2762.36], [1678.86, 2762.78], [1679.35, 2771.76], [1692.87, 2771.15], [1691.92, 2762.66], [1709.93, 2761.67], [1722.86, 2883.37], [1702.93, 2883.93], [1701.47, 2857.24], [1633.93, 2861.51], [1633.31, 2847.8], [1634.2, 2847.28], [1633.11, 2827.08], [1621.06, 2827.85], [1618.67, 2773.96], [1643.74, 2772.73], [1642.06, 2737.0], [1669.85, 2735.8], [1669.49, 2728.34], [1644.93, 2731.04], [1639.68, 2682.93], [1627.18, 2684.29], [1625.44, 2668.83], [1622.57, 2668.91], [1621.99, 2663.9], [1625.08, 2663.7], [1623.25, 2647.35], [1635.61, 2646.0], [1612.75, 2430.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 18617}}, {"shape": {"outer": [[-1815.19, -1064.0], [-1791.49, -1064.42], [-1791.73, -1077.92], [-1799.95, -1077.77], [-1799.98, -1078.85], [-1807.02, -1078.73], [-1807.0, -1077.64], [-1815.43, -1077.49], [-1815.19, -1064.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-496.5, -2131.33], [-480.39, -2133.35], [-481.61, -2145.35], [-497.85, -2143.15], [-496.5, -2131.33]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-470.81, -2118.49], [-480.97, -2117.09], [-482.57, -2131.25], [-472.78, -2132.99], [-470.81, -2118.49]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2320.66, -179.04], [-2267.99, -181.09], [-2267.18, -160.52], [-2266.35, -139.29], [-2285.68, -138.53], [-2319.27, -137.23], [-2319.85, -152.31], [-2320.38, -152.29], [-2320.85, -164.26], [-2320.09, -164.3], [-2320.66, -179.04]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1419}}, {"shape": {"outer": [[-1708.53, -297.99], [-1732.62, -296.93], [-1731.92, -281.35], [-1722.89, -281.75], [-1722.33, -269.22], [-1723.84, -269.16], [-1723.71, -266.35], [-1728.08, -266.15], [-1727.69, -257.41], [-1723.59, -257.59], [-1723.35, -252.32], [-1706.53, -253.07], [-1708.53, -297.99]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.566, "pop": 0, "jobs": 566}}, {"shape": {"outer": [[-1705.95, -299.02], [-1677.47, -300.61], [-1677.18, -294.0], [-1676.67, -294.03], [-1676.65, -293.63], [-1665.8, -293.91], [-1664.09, -264.78], [-1673.48, -264.29], [-1670.56, -261.65], [-1674.49, -257.73], [-1674.41, -254.9], [-1681.87, -254.69], [-1681.8, -252.89], [-1696.66, -252.29], [-1696.69, -253.25], [-1699.31, -253.23], [-1700.27, -277.4], [-1705.17, -277.26], [-1705.95, -299.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1014}}, {"shape": {"outer": [[383.19, 54.04], [368.32, 70.0], [367.53, 69.26], [359.74, 77.62], [362.34, 80.02], [344.88, 98.77], [353.25, 106.51], [356.72, 102.79], [361.58, 97.57], [367.45, 91.26], [369.89, 88.65], [371.57, 86.84], [369.63, 85.04], [371.12, 83.44], [374.68, 79.63], [376.26, 77.93], [377.07, 78.68], [380.64, 74.85], [384.45, 70.76], [388.3, 66.62], [390.58, 64.17], [392.23, 62.4], [383.19, 54.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.564, "pop": 282, "jobs": 0}}, {"shape": {"outer": [[411.69, 75.16], [410.49, 76.27], [410.11, 77.92], [398.28, 90.41], [420.17, 109.89], [420.23, 112.26], [423.19, 112.25], [425.71, 114.77], [439.08, 100.38], [436.04, 97.52], [436.19, 95.15], [433.82, 95.36], [427.66, 89.35], [428.22, 88.69], [426.22, 86.8], [425.8, 87.25], [414.48, 77.09], [414.53, 76.22], [413.56, 75.1], [411.69, 75.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.606, "pop": 303, "jobs": 0}}, {"shape": {"outer": [[430.01, 134.48], [409.58, 157.03], [427.35, 173.01], [447.78, 150.46], [430.01, 134.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.465, "pop": 0, "jobs": 465}}, {"shape": {"outer": [[250.51, 14.58], [234.14, -0.24], [267.75, -37.14], [283.53, -22.87], [285.39, -21.19], [280.52, -15.85], [281.37, -15.09], [278.76, -12.22], [276.66, -14.12], [250.51, 14.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.72, "pop": 0, "jobs": 720}}, {"shape": {"outer": [[-1157.76, -62.83], [-1157.35, -54.39], [-1156.5, -36.74], [-1156.39, -34.95], [-1156.27, -32.47], [-1156.15, -30.0], [-1163.45, -29.65], [-1163.57, -32.1], [-1163.59, -32.59], [-1165.46, -32.5], [-1169.92, -32.29], [-1169.9, -31.79], [-1176.79, -31.45], [-1176.91, -33.97], [-1178.13, -58.8], [-1179.08, -58.75], [-1180.1, -58.71], [-1180.3, -62.75], [-1180.32, -63.28], [-1180.14, -63.58], [-1179.81, -63.72], [-1179.0, -63.76], [-1158.54, -64.76], [-1158.51, -63.98], [-1158.45, -62.8], [-1157.76, -62.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.55, "pop": 275, "jobs": 0}}, {"shape": {"outer": [[-1157.76, -62.83], [-1156.71, -62.89], [-1151.66, -63.13], [-1151.24, -54.53], [-1150.33, -35.53], [-1153.91, -35.36], [-1154.52, -35.33], [-1154.59, -36.83], [-1156.5, -36.74], [-1157.35, -54.39], [-1157.76, -62.83]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.046, "pop": 0, "jobs": 46}}, {"shape": {"outer": [[-1151.66, -63.13], [-1149.78, -63.21], [-1147.72, -63.3], [-1139.24, -63.71], [-1137.47, -63.79], [-1136.64, -46.5], [-1135.86, -30.32], [-1153.62, -29.46], [-1153.91, -35.36], [-1150.33, -35.53], [-1151.24, -54.53], [-1151.66, -63.13]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.278, "pop": 0, "jobs": 278}}, {"shape": {"outer": [[-1117.43, -64.75], [-1116.24, -64.81], [-1111.82, -65.01], [-1110.39, -65.08], [-1107.86, -65.19], [-1105.56, -65.29], [-1104.53, -65.35], [-1103.61, -65.38], [-1098.3, -65.62], [-1096.98, -65.68], [-1096.67, -59.01], [-1097.82, -58.97], [-1097.02, -41.3], [-1102.5, -41.05], [-1104.05, -40.97], [-1103.95, -37.9], [-1103.87, -36.2], [-1109.06, -35.95], [-1114.56, -35.69], [-1114.61, -36.69], [-1115.72, -36.65], [-1115.89, -40.33], [-1114.65, -40.39], [-1115.54, -59.88], [-1117.2, -59.81], [-1117.43, -64.75]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.526, "pop": 263, "jobs": 0}}, {"shape": {"outer": [[-1096.98, -65.68], [-1096.24, -65.66], [-1095.42, -65.69], [-1095.48, -67.14], [-1092.49, -67.29], [-1090.94, -67.37], [-1086.75, -67.57], [-1086.68, -66.14], [-1086.23, -66.17], [-1085.75, -57.11], [-1084.43, -31.84], [-1089.88, -31.56], [-1095.23, -31.28], [-1095.56, -38.13], [-1096.67, -59.01], [-1096.98, -65.68]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.402, "pop": 201, "jobs": 0}}, {"shape": {"outer": [[-1135.06, -46.58], [-1135.69, -60.43], [-1136.2, -60.42], [-1136.36, -63.89], [-1127.77, -64.29], [-1127.36, -64.3], [-1121.2, -64.58], [-1117.43, -64.75], [-1117.2, -59.81], [-1115.54, -59.88], [-1114.65, -40.39], [-1115.89, -40.33], [-1115.72, -36.65], [-1115.68, -35.64], [-1115.28, -26.97], [-1121.67, -26.69], [-1122.59, -26.64], [-1123.51, -26.6], [-1125.65, -26.51], [-1126.31, -26.48], [-1132.33, -26.2], [-1134.14, -26.12], [-1135.68, -26.05], [-1135.8, -28.86], [-1135.86, -30.32], [-1136.64, -46.5], [-1135.79, -46.55], [-1135.06, -46.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.616, "pop": 308, "jobs": 0}}, {"shape": {"outer": [[159.19, -368.15], [162.48, -371.79], [167.89, -377.76], [171.89, -382.17], [184.61, -396.28], [196.77, -384.59], [221.87, -361.83], [206.67, -344.28], [200.07, -337.59], [196.64, -333.77], [194.64, -335.53], [179.52, -348.75], [177.38, -346.34], [175.98, -347.09], [174.71, -348.05], [173.39, -349.55], [172.22, -351.53], [171.57, -353.04], [171.14, -354.68], [170.97, -355.78], [171.59, -356.53], [169.32, -358.58], [162.22, -365.37], [159.19, -368.15]], "holes": []}, "height": 45.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7155}}, {"shape": {"outer": [[177.38, -346.34], [170.72, -338.75], [174.92, -335.07], [171.65, -331.35], [178.05, -325.75], [180.72, -328.78], [185.22, -324.84], [194.64, -335.53], [179.52, -348.75], [177.38, -346.34]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.177, "pop": 0, "jobs": 177}}, {"shape": {"outer": [[162.22, -365.37], [156.24, -358.9], [153.19, -361.71], [146.29, -354.25], [133.93, -365.6], [154.01, -387.32], [151.66, -389.49], [156.63, -394.88], [157.16, -394.38], [173.11, -411.48], [186.42, -398.15], [184.61, -396.28], [171.89, -382.17], [167.89, -377.76], [162.48, -371.79], [159.19, -368.15], [162.22, -365.37]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.935, "pop": 0, "jobs": 935}}, {"shape": {"outer": [[-8.63, -532.58], [-28.59, -510.58], [-23.41, -505.89], [-9.26, -493.16], [-4.47, -488.86], [-3.22, -487.73], [17.73, -510.84], [15.66, -512.7], [14.73, -511.67], [9.47, -516.4], [10.86, -517.93], [-4.42, -531.69], [-5.87, -530.09], [-8.63, -532.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.681, "pop": 0, "jobs": 681}}, {"shape": {"outer": [[146.42, -106.02], [145.68, -105.19], [133.44, -91.25], [144.18, -81.7], [157.08, -95.85], [146.42, -106.02]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.158, "pop": 0, "jobs": 158}}, {"shape": {"outer": [[133.44, -91.25], [128.1, -95.92], [138.61, -107.87], [140.52, -110.05], [145.68, -105.19], [133.44, -91.25]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[105.14, -89.33], [81.37, -63.34], [106.77, -40.76], [124.98, -60.97], [124.86, -63.77], [127.74, -63.89], [127.55, -69.42], [124.81, -69.4], [124.59, -72.17], [108.45, -86.58], [105.14, -89.33]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.992, "pop": 0, "jobs": 992}}, {"shape": {"outer": [[105.14, -89.33], [70.57, -120.72], [56.76, -105.19], [60.98, -101.2], [59.25, -99.37], [59.88, -98.79], [63.73, -95.36], [65.92, -97.75], [75.35, -89.18], [72.25, -85.81], [71.21, -86.74], [68.6, -83.89], [77.63, -75.69], [75.79, -73.69], [79.63, -70.19], [76.96, -67.26], [81.37, -63.34], [105.14, -89.33]], "holes": []}, "height": 38.1, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3673}}, {"shape": {"outer": [[128.1, -95.92], [122.52, -101.1], [128.27, -107.88], [130.68, -110.62], [134.64, -111.33], [138.61, -107.87], [128.1, -95.92]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[122.52, -101.1], [118.14, -104.83], [120.64, -108.57], [120.52, -110.81], [122.06, -110.91], [121.24, -127.61], [127.28, -127.85], [128.11, -111.2], [128.27, -107.88], [122.52, -101.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[148.75, -128.7], [149.47, -108.41], [160.47, -98.75], [167.96, -107.33], [161.43, -112.84], [157.52, -112.81], [157.03, -129.04], [148.75, -128.7]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[148.75, -128.7], [140.63, -128.38], [141.46, -111.68], [143.92, -111.76], [143.96, -110.45], [149.47, -108.41], [148.75, -128.7]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[141.46, -111.68], [140.2, -111.61], [128.11, -111.2], [127.28, -127.85], [140.63, -128.38], [141.46, -111.68]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[118.14, -104.83], [114.04, -108.38], [115.12, -110.13], [114.15, -127.39], [121.24, -127.61], [122.06, -110.91], [120.52, -110.81], [120.64, -108.57], [118.14, -104.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[114.15, -127.39], [98.8, -126.76], [97.85, -126.38], [97.35, -125.6], [96.95, -124.64], [96.97, -123.81], [97.3, -123.0], [98.52, -121.73], [114.04, -108.38], [115.12, -110.13], [114.15, -127.39]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[155.55, -179.95], [143.29, -166.17], [144.1, -148.7], [150.1, -148.98], [156.3, -149.28], [155.68, -162.38], [164.38, -172.15], [155.55, -179.95]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.313, "pop": 0, "jobs": 313}}, {"shape": {"outer": [[144.1, -148.7], [118.77, -147.52], [117.65, -171.68], [126.23, -181.28], [143.29, -166.17], [144.1, -148.7]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.378, "pop": 0, "jobs": 378}}, {"shape": {"outer": [[126.23, -181.28], [138.5, -195.03], [155.55, -179.95], [143.29, -166.17], [126.23, -181.28]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 0.588, "pop": 0, "jobs": 588}}, {"shape": {"outer": [[117.65, -171.68], [99.12, -150.55], [100.54, -146.67], [118.77, -147.52], [117.65, -171.68]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.152, "pop": 0, "jobs": 152}}, {"shape": {"outer": [[156.3, -149.28], [164.72, -149.67], [164.2, -160.52], [170.07, -167.13], [164.38, -172.15], [155.68, -162.38], [156.3, -149.28]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.155, "pop": 0, "jobs": 155}}, {"shape": {"outer": [[164.72, -149.67], [184.84, -150.63], [185.65, -151.14], [185.82, -151.67], [185.84, -152.72], [185.59, -153.43], [170.07, -167.13], [164.2, -160.52], [164.72, -149.67]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[204.18, -162.21], [213.86, -173.08], [210.89, -175.64], [211.43, -176.37], [211.0, -177.01], [220.45, -187.79], [228.63, -180.5], [231.43, -177.99], [229.1, -175.23], [237.67, -165.4], [238.09, -152.88], [216.79, -151.81], [211.77, -155.6], [204.18, -162.21]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.629, "pop": 0, "jobs": 629}}, {"shape": {"outer": [[-219.77, -489.7], [-204.58, -506.78], [-147.35, -454.64], [-162.77, -437.71], [-219.77, -489.7]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1485}}, {"shape": {"outer": [[-146.31, -344.78], [-136.02, -355.72], [-134.76, -337.76], [-137.34, -336.39], [-146.31, -344.78]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.065, "pop": 0, "jobs": 65}}, {"shape": {"outer": [[-146.31, -344.78], [-156.51, -354.13], [-137.06, -374.99], [-136.02, -355.72], [-146.31, -344.78]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.254, "pop": 0, "jobs": 254}}, {"shape": {"outer": [[-156.51, -354.13], [-165.98, -362.86], [-144.48, -385.98], [-138.94, -380.86], [-141.01, -378.65], [-137.06, -374.99], [-156.51, -354.13]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.328, "pop": 0, "jobs": 328}}, {"shape": {"outer": [[-179.67, -375.53], [-158.91, -397.96], [-163.8, -402.45], [-184.56, -380.01], [-179.67, -375.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.13, "pop": 0, "jobs": 130}}, {"shape": {"outer": [[-179.67, -375.53], [-175.31, -371.49], [-155.78, -392.58], [-154.51, -393.95], [-158.91, -397.96], [-179.67, -375.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.116, "pop": 0, "jobs": 116}}, {"shape": {"outer": [[-175.31, -371.49], [-165.98, -362.86], [-144.48, -385.98], [-149.48, -390.59], [-151.39, -388.52], [-155.78, -392.58], [-175.31, -371.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.247, "pop": 0, "jobs": 247}}, {"shape": {"outer": [[-1611.48, -990.17], [-1534.32, -992.32], [-1533.27, -951.84], [-1610.79, -949.77], [-1611.48, -990.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2003}}, {"shape": {"outer": [[-833.22, -114.24], [-832.24, -98.8], [-847.0, -97.86], [-848.78, -99.54], [-834.93, -114.14], [-833.22, -114.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-820.42, -131.69], [-804.51, -149.93], [-791.93, -139.04], [-805.95, -122.95], [-807.56, -121.11], [-808.16, -121.07], [-820.42, -131.69]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[-797.91, -121.69], [-797.73, -118.69], [-796.69, -101.01], [-797.35, -100.99], [-798.12, -100.08], [-800.11, -99.96], [-800.94, -100.81], [-802.46, -100.71], [-803.24, -99.76], [-805.29, -99.63], [-806.11, -100.43], [-806.9, -100.39], [-808.1, -120.19], [-808.16, -121.07], [-807.56, -121.11], [-800.15, -121.55], [-797.91, -121.69]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.121, "pop": 0, "jobs": 121}}, {"shape": {"outer": [[-833.38, -116.8], [-825.73, -125.86], [-820.8, -117.15], [-820.07, -115.87], [-819.05, -99.63], [-832.24, -98.8], [-833.22, -114.24], [-833.38, -116.8]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-825.73, -125.86], [-825.03, -126.6], [-824.99, -127.17], [-824.02, -128.17], [-823.47, -128.3], [-822.76, -129.05], [-822.63, -129.63], [-821.77, -130.52], [-821.27, -130.66], [-820.42, -131.69], [-808.16, -121.07], [-808.1, -120.19], [-813.99, -119.82], [-815.93, -118.16], [-815.88, -117.45], [-820.8, -117.15], [-825.73, -125.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2587.19, -592.02], [-2587.51, -602.11], [-2579.45, -602.36], [-2579.47, -603.04], [-2574.24, -603.2], [-2574.21, -602.53], [-2568.56, -602.71], [-2568.27, -593.61], [-2582.25, -593.17], [-2582.22, -592.18], [-2587.19, -592.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2674.03, -832.35], [-2679.94, -832.16], [-2679.97, -833.32], [-2682.02, -833.26], [-2682.38, -844.06], [-2680.93, -844.1], [-2681.17, -851.45], [-2676.31, -851.61], [-2676.07, -844.26], [-2674.43, -844.32], [-2674.03, -832.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2612.93, -354.4], [-2603.03, -354.64], [-2603.12, -358.55], [-2602.08, -359.28], [-2602.14, -361.84], [-2603.23, -362.85], [-2603.34, -367.65], [-2612.25, -367.44], [-2612.03, -358.4], [-2613.03, -358.38], [-2612.93, -354.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2617.26, -693.04], [-2621.57, -692.89], [-2621.54, -691.95], [-2626.63, -691.77], [-2627.36, -713.17], [-2617.96, -713.49], [-2617.66, -705.06], [-2615.75, -705.13], [-2615.63, -701.53], [-2617.54, -701.46], [-2617.26, -693.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2603.35, -335.24], [-2611.91, -335.02], [-2612.35, -352.05], [-2603.78, -352.26], [-2603.77, -351.62], [-2600.59, -351.7], [-2600.43, -345.66], [-2601.91, -345.63], [-2601.77, -340.13], [-2603.47, -340.08], [-2603.35, -335.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2577.53, -501.91], [-2577.58, -503.48], [-2579.73, -503.43], [-2579.85, -508.05], [-2577.71, -508.11], [-2577.76, -510.0], [-2564.39, -510.39], [-2564.3, -507.24], [-2560.98, -507.34], [-2560.84, -502.38], [-2577.53, -501.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2611.94, -317.18], [-2612.12, -322.63], [-2611.47, -322.64], [-2611.71, -329.62], [-2599.42, -330.03], [-2599.28, -325.61], [-2592.17, -325.85], [-2591.95, -319.11], [-2599.05, -318.87], [-2599.02, -317.61], [-2611.94, -317.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2580.59, -440.25], [-2580.67, -444.02], [-2581.68, -444.0], [-2581.76, -447.42], [-2580.75, -447.45], [-2580.82, -449.85], [-2562.86, -450.28], [-2562.72, -444.64], [-2561.2, -444.68], [-2561.12, -441.69], [-2562.65, -441.66], [-2562.63, -440.68], [-2580.59, -440.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2578.97, -471.41], [-2566.03, -471.7], [-2566.16, -477.63], [-2563.49, -477.7], [-2563.68, -486.24], [-2566.36, -486.18], [-2566.48, -491.51], [-2579.42, -491.21], [-2579.34, -487.45], [-2582.08, -487.39], [-2581.79, -474.76], [-2579.04, -474.83], [-2578.97, -471.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[-2782.83, -829.45], [-2783.18, -839.45], [-2776.52, -839.68], [-2776.62, -842.46], [-2771.67, -842.63], [-2771.4, -834.62], [-2772.25, -834.59], [-2772.09, -829.8], [-2775.25, -829.7], [-2775.18, -827.77], [-2779.5, -827.62], [-2779.57, -829.55], [-2782.83, -829.45]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2575.31, -511.79], [-2563.55, -512.17], [-2563.57, -512.73], [-2560.91, -512.82], [-2561.04, -516.73], [-2563.7, -516.65], [-2564.13, -530.52], [-2561.43, -530.6], [-2561.55, -534.46], [-2564.25, -534.39], [-2564.27, -535.06], [-2576.03, -534.69], [-2575.31, -511.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-2580.81, -664.45], [-2571.97, -664.73], [-2572.21, -672.58], [-2570.24, -672.64], [-2570.34, -675.68], [-2572.31, -675.62], [-2572.33, -676.42], [-2581.17, -676.16], [-2581.13, -675.03], [-2583.47, -674.95], [-2583.28, -669.13], [-2580.95, -669.21], [-2580.81, -664.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2745.5, -782.5], [-2740.07, -782.69], [-2740.1, -783.21], [-2737.99, -783.28], [-2738.02, -784.0], [-2734.38, -784.13], [-2734.75, -794.33], [-2739.03, -794.19], [-2739.11, -796.64], [-2745.39, -796.41], [-2745.3, -793.96], [-2745.9, -793.94], [-2745.5, -782.5]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2751.43, -830.89], [-2751.67, -841.09], [-2750.75, -841.12], [-2750.78, -842.62], [-2744.93, -842.75], [-2744.9, -841.25], [-2741.57, -841.34], [-2741.32, -831.11], [-2742.26, -831.09], [-2742.2, -828.85], [-2750.67, -828.65], [-2750.72, -830.91], [-2751.43, -830.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2619.56, -600.95], [-2608.23, -601.24], [-2608.25, -602.12], [-2601.54, -602.29], [-2601.72, -609.03], [-2608.42, -608.86], [-2608.5, -611.86], [-2619.84, -611.57], [-2619.81, -610.53], [-2621.57, -610.48], [-2621.38, -602.98], [-2619.61, -603.02], [-2619.56, -600.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2586.41, -374.54], [-2586.63, -381.67], [-2582.79, -381.79], [-2582.73, -380.04], [-2580.66, -380.1], [-2580.93, -389.18], [-2571.78, -389.45], [-2571.71, -387.37], [-2567.1, -387.5], [-2566.99, -383.83], [-2566.12, -383.86], [-2565.99, -379.56], [-2566.86, -379.54], [-2566.73, -375.13], [-2586.41, -374.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-2575.1, -354.5], [-2564.94, -354.86], [-2565.11, -359.74], [-2563.29, -359.8], [-2563.41, -363.17], [-2565.23, -363.11], [-2565.4, -367.66], [-2568.27, -367.56], [-2568.41, -371.46], [-2575.7, -371.2], [-2575.44, -364.03], [-2576.92, -363.98], [-2576.61, -355.44], [-2575.14, -355.49], [-2575.1, -354.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2574.75, -340.1], [-2569.72, -340.24], [-2569.64, -337.52], [-2565.93, -337.63], [-2566.01, -340.35], [-2564.7, -340.39], [-2564.78, -343.21], [-2563.47, -343.24], [-2563.58, -346.94], [-2564.89, -346.9], [-2564.97, -349.79], [-2566.61, -349.74], [-2566.69, -352.58], [-2577.61, -352.26], [-2577.51, -349.0], [-2575.01, -349.07], [-2574.75, -340.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2602.4, -672.61], [-2596.62, -672.78], [-2596.96, -684.64], [-2602.74, -684.47], [-2602.4, -672.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2579.0, -411.94], [-2579.44, -422.28], [-2562.57, -422.99], [-2562.14, -412.65], [-2579.0, -411.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2622.73, -515.22], [-2614.33, -515.49], [-2614.8, -529.75], [-2623.2, -529.48], [-2622.73, -515.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2737.65, -772.0], [-2732.23, -772.19], [-2732.46, -778.87], [-2737.88, -778.69], [-2737.65, -772.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2613.16, -691.25], [-2613.32, -696.91], [-2607.37, -697.08], [-2607.21, -691.42], [-2613.16, -691.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2578.65, -743.53], [-2578.9, -752.18], [-2569.63, -752.45], [-2569.38, -743.8], [-2578.65, -743.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2690.66, -855.09], [-2690.87, -862.48], [-2685.03, -862.65], [-2684.82, -855.26], [-2690.66, -855.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2587.12, -557.14], [-2592.85, -556.97], [-2593.17, -568.23], [-2587.44, -568.4], [-2587.12, -557.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2655.83, -830.97], [-2651.32, -831.13], [-2651.28, -829.9], [-2648.46, -830.02], [-2648.5, -830.92], [-2647.56, -830.94], [-2648.21, -848.01], [-2656.46, -847.7], [-2655.83, -830.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2620.89, -487.18], [-2621.17, -495.89], [-2602.82, -496.47], [-2602.55, -487.77], [-2620.89, -487.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2765.32, -830.81], [-2765.64, -838.03], [-2765.4, -838.05], [-2765.49, -840.01], [-2761.25, -840.18], [-2761.17, -838.24], [-2754.93, -838.51], [-2754.61, -831.28], [-2765.32, -830.81]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2584.45, -265.39], [-2578.78, -265.56], [-2578.94, -271.32], [-2584.62, -271.16], [-2584.45, -265.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2705.23, -862.69], [-2709.95, -862.47], [-2710.24, -868.56], [-2705.51, -868.78], [-2705.23, -862.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2745.46, -846.93], [-2745.54, -853.45], [-2738.99, -853.53], [-2738.91, -847.01], [-2745.46, -846.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2628.02, -753.87], [-2628.11, -757.88], [-2621.18, -758.02], [-2621.09, -754.01], [-2628.02, -753.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2608.45, -512.36], [-2602.51, -512.58], [-2602.78, -519.76], [-2608.71, -519.55], [-2608.45, -512.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2584.9, -770.68], [-2584.66, -762.36], [-2573.14, -762.7], [-2573.38, -771.01], [-2584.9, -770.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2617.97, -450.89], [-2610.22, -451.05], [-2610.4, -460.34], [-2618.17, -460.19], [-2617.97, -450.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2584.91, -774.49], [-2585.18, -782.72], [-2573.71, -783.11], [-2573.44, -774.88], [-2584.91, -774.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2664.7, -791.15], [-2653.57, -791.41], [-2653.83, -802.18], [-2664.96, -801.9], [-2664.7, -791.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2773.55, -735.08], [-2764.98, -735.46], [-2765.41, -745.52], [-2773.99, -745.15], [-2773.55, -735.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2575.49, -288.18], [-2575.83, -297.5], [-2557.88, -298.13], [-2557.55, -288.82], [-2575.49, -288.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2771.06, -753.12], [-2771.3, -762.58], [-2760.6, -762.85], [-2760.35, -753.39], [-2771.06, -753.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2759.02, -735.5], [-2759.28, -742.92], [-2748.41, -743.29], [-2748.16, -735.87], [-2759.02, -735.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2587.85, -579.06], [-2593.42, -578.89], [-2593.58, -584.39], [-2588.01, -584.55], [-2587.85, -579.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2732.22, -854.16], [-2726.65, -854.28], [-2726.81, -861.24], [-2732.37, -861.1], [-2732.22, -854.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2671.45, -830.33], [-2662.75, -830.46], [-2662.93, -842.97], [-2664.24, -842.96], [-2664.26, -844.31], [-2665.11, -844.3], [-2665.17, -848.81], [-2671.14, -848.71], [-2671.05, -843.54], [-2670.53, -843.55], [-2670.51, -842.68], [-2671.64, -842.67], [-2671.45, -830.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2598.9, -476.76], [-2591.45, -476.88], [-2591.62, -486.19], [-2599.06, -486.07], [-2598.9, -476.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2667.72, -853.45], [-2667.84, -860.66], [-2660.54, -860.79], [-2660.41, -853.58], [-2667.72, -853.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2620.79, -475.97], [-2620.95, -484.6], [-2609.11, -484.83], [-2608.94, -476.2], [-2620.79, -475.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2709.31, -829.52], [-2698.78, -829.78], [-2699.18, -846.42], [-2709.71, -846.17], [-2709.31, -829.52]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2605.42, -767.7], [-2605.53, -771.67], [-2599.58, -771.84], [-2599.47, -767.87], [-2605.42, -767.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2606.73, -778.93], [-2606.87, -783.94], [-2599.93, -784.14], [-2599.79, -779.13], [-2606.73, -778.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2772.37, -766.32], [-2762.92, -766.43], [-2763.06, -778.94], [-2772.51, -778.84], [-2772.37, -766.32]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2619.05, -552.96], [-2619.43, -563.33], [-2601.42, -563.98], [-2601.04, -553.62], [-2619.05, -552.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2768.62, -874.05], [-2768.87, -885.26], [-2768.19, -885.28], [-2768.25, -888.16], [-2760.64, -888.34], [-2760.57, -885.44], [-2759.89, -885.46], [-2759.66, -875.73], [-2763.82, -875.63], [-2763.78, -874.16], [-2768.62, -874.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2599.23, -556.41], [-2599.46, -562.45], [-2593.83, -562.67], [-2593.6, -556.63], [-2599.23, -556.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2599.51, -784.53], [-2595.51, -784.6], [-2595.63, -790.44], [-2599.62, -790.35], [-2599.51, -784.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2617.9, -438.21], [-2618.2, -448.55], [-2605.69, -448.91], [-2605.39, -438.57], [-2617.9, -438.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2621.26, -615.88], [-2621.53, -624.97], [-2602.74, -625.51], [-2602.48, -616.42], [-2621.26, -615.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2599.05, -772.34], [-2599.18, -776.92], [-2592.19, -777.12], [-2592.06, -772.54], [-2599.05, -772.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2698.4, -785.71], [-2698.84, -798.56], [-2689.56, -798.88], [-2689.12, -786.03], [-2698.4, -785.71]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2618.28, -462.97], [-2606.96, -463.18], [-2607.14, -473.24], [-2618.46, -473.04], [-2618.28, -462.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2763.7, -787.86], [-2763.94, -796.02], [-2773.66, -795.74], [-2773.42, -787.58], [-2763.7, -787.86]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2576.96, -304.85], [-2577.24, -315.89], [-2564.67, -316.21], [-2564.4, -305.17], [-2576.96, -304.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2620.76, -590.47], [-2620.97, -597.79], [-2605.4, -598.23], [-2605.26, -593.31], [-2608.27, -593.23], [-2608.21, -590.83], [-2620.76, -590.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2727.87, -782.79], [-2721.92, -783.03], [-2722.03, -785.63], [-2718.76, -785.77], [-2719.23, -797.41], [-2728.45, -797.05], [-2727.87, -782.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2619.73, -627.14], [-2609.32, -627.55], [-2609.44, -630.48], [-2606.73, -630.6], [-2607.03, -638.05], [-2620.14, -637.52], [-2619.73, -627.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2619.58, -654.98], [-2619.68, -658.9], [-2622.54, -658.83], [-2622.66, -663.14], [-2610.41, -663.47], [-2610.19, -655.24], [-2619.58, -654.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2563.58, -319.2], [-2573.23, -318.99], [-2573.6, -334.73], [-2564.51, -334.93], [-2564.43, -331.6], [-2563.87, -331.61], [-2563.58, -319.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2620.84, -498.67], [-2621.13, -508.84], [-2609.45, -509.18], [-2609.2, -500.64], [-2610.84, -500.59], [-2610.79, -498.96], [-2620.84, -498.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2634.2, -829.51], [-2634.72, -844.4], [-2624.36, -844.76], [-2623.91, -832.27], [-2625.31, -832.22], [-2625.22, -829.82], [-2634.2, -829.51]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2606.0, -784.47], [-2599.68, -784.59], [-2599.8, -790.32], [-2603.74, -790.22], [-2603.7, -787.89], [-2606.07, -787.83], [-2606.0, -784.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2620.73, -788.82], [-2625.65, -788.64], [-2625.76, -791.5], [-2629.19, -791.38], [-2629.59, -802.11], [-2621.22, -802.41], [-2620.73, -788.82]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2623.96, -679.18], [-2624.18, -683.86], [-2621.29, -683.98], [-2621.49, -688.58], [-2608.12, -689.19], [-2607.7, -679.92], [-2623.96, -679.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2572.18, -790.37], [-2582.87, -790.1], [-2583.21, -803.74], [-2570.43, -804.05], [-2570.31, -799.5], [-2572.41, -799.45], [-2572.18, -790.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2616.72, -739.44], [-2617.17, -751.94], [-2593.72, -752.77], [-2593.35, -742.46], [-2607.63, -741.95], [-2607.56, -739.78], [-2616.72, -739.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-2622.38, -641.17], [-2622.62, -649.81], [-2605.15, -650.31], [-2605.04, -646.56], [-2606.09, -646.53], [-2605.94, -641.64], [-2622.38, -641.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2626.75, -758.92], [-2617.09, -759.2], [-2617.19, -762.89], [-2615.28, -762.95], [-2615.42, -767.79], [-2617.33, -767.74], [-2617.37, -769.1], [-2627.04, -768.82], [-2626.75, -758.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2712.47, -829.11], [-2717.53, -828.97], [-2717.6, -831.57], [-2719.61, -831.51], [-2719.59, -830.82], [-2722.24, -830.75], [-2722.54, -842.07], [-2717.5, -842.2], [-2717.58, -844.72], [-2712.9, -844.86], [-2712.47, -829.11]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2612.29, -795.65], [-2612.56, -803.33], [-2603.16, -803.66], [-2602.9, -795.97], [-2605.74, -795.88], [-2605.64, -793.03], [-2610.28, -792.87], [-2610.38, -795.71], [-2612.29, -795.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2582.08, -611.18], [-2582.43, -622.7], [-2571.02, -623.05], [-2570.97, -621.42], [-2567.72, -621.53], [-2567.45, -612.76], [-2570.7, -612.67], [-2570.66, -611.53], [-2582.08, -611.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2588.9, -515.09], [-2589.45, -533.33], [-2579.04, -533.65], [-2578.49, -515.4], [-2579.52, -515.37], [-2579.47, -513.75], [-2583.08, -513.64], [-2583.12, -515.27], [-2588.9, -515.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2618.91, -426.15], [-2619.17, -435.13], [-2601.43, -435.64], [-2601.37, -433.41], [-2598.58, -433.49], [-2598.45, -428.81], [-2601.23, -428.73], [-2601.17, -426.66], [-2618.91, -426.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2588.53, -676.78], [-2588.82, -683.67], [-2592.41, -683.53], [-2592.57, -687.44], [-2588.99, -687.59], [-2589.03, -688.6], [-2570.26, -689.39], [-2569.75, -677.56], [-2588.53, -676.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-2581.28, -451.78], [-2581.45, -456.72], [-2582.36, -456.68], [-2582.5, -460.92], [-2581.6, -460.96], [-2581.63, -461.82], [-2563.02, -462.48], [-2562.66, -452.44], [-2581.28, -451.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2759.45, -784.17], [-2749.74, -784.5], [-2749.8, -786.25], [-2746.97, -786.34], [-2747.2, -793.14], [-2750.03, -793.05], [-2750.12, -795.87], [-2759.82, -795.54], [-2759.45, -784.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2694.39, -830.64], [-2694.63, -846.03], [-2691.51, -846.07], [-2691.53, -847.35], [-2686.95, -847.43], [-2686.93, -846.15], [-2686.03, -846.16], [-2685.79, -830.78], [-2694.39, -830.64]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2606.49, -564.65], [-2618.95, -564.22], [-2619.06, -567.49], [-2617.91, -567.52], [-2618.2, -576.18], [-2607.98, -576.52], [-2607.75, -569.61], [-2606.66, -569.64], [-2606.49, -564.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2597.01, -792.77], [-2597.38, -805.5], [-2587.67, -805.78], [-2587.3, -793.05], [-2592.05, -792.92], [-2592.01, -791.55], [-2596.05, -791.44], [-2596.09, -792.8], [-2597.01, -792.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2609.34, -302.34], [-2600.98, -302.54], [-2601.11, -307.97], [-2598.03, -308.05], [-2598.16, -313.22], [-2611.7, -312.9], [-2611.55, -306.43], [-2609.44, -306.48], [-2609.34, -302.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2618.49, -741.34], [-2620.07, -741.3], [-2620.0, -738.51], [-2624.81, -738.4], [-2624.87, -741.2], [-2628.2, -741.11], [-2628.42, -750.87], [-2618.71, -751.09], [-2618.49, -741.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2620.72, -676.93], [-2620.47, -666.03], [-2609.33, -666.31], [-2609.41, -669.69], [-2607.09, -669.74], [-2607.2, -674.21], [-2609.51, -674.15], [-2609.58, -677.2], [-2620.72, -676.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2646.47, -828.95], [-2646.85, -839.21], [-2646.02, -839.25], [-2646.23, -844.96], [-2639.17, -845.22], [-2638.99, -840.35], [-2640.24, -840.3], [-2640.22, -839.6], [-2637.81, -839.69], [-2637.42, -829.29], [-2646.47, -828.95]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2712.75, -783.76], [-2709.03, -783.87], [-2708.97, -781.99], [-2702.72, -782.16], [-2703.11, -795.89], [-2708.77, -795.72], [-2708.74, -794.87], [-2713.06, -794.76], [-2712.75, -783.76]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2580.62, -625.76], [-2568.18, -626.11], [-2568.48, -636.73], [-2580.93, -636.37], [-2580.88, -634.57], [-2581.69, -634.55], [-2581.53, -628.84], [-2580.71, -628.87], [-2580.62, -625.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2583.55, -643.67], [-2571.32, -644.09], [-2571.87, -660.13], [-2584.1, -659.71], [-2583.88, -653.33], [-2586.22, -653.25], [-2586.11, -649.98], [-2583.77, -650.06], [-2583.55, -643.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2627.13, -772.55], [-2627.29, -781.77], [-2616.72, -781.95], [-2616.7, -781.09], [-2614.58, -781.13], [-2614.46, -773.68], [-2616.57, -773.64], [-2616.56, -772.74], [-2627.13, -772.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2738.51, -841.39], [-2738.24, -830.72], [-2727.62, -830.98], [-2727.88, -841.54], [-2729.72, -841.5], [-2729.79, -844.67], [-2736.19, -844.51], [-2736.11, -841.45], [-2738.51, -841.39]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2574.31, -427.54], [-2574.71, -437.56], [-2564.56, -437.97], [-2564.53, -437.13], [-2562.24, -437.22], [-2561.91, -428.74], [-2564.19, -428.65], [-2564.16, -427.94], [-2574.31, -427.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2620.81, -577.59], [-2621.06, -586.32], [-2607.78, -586.71], [-2607.66, -582.79], [-2606.65, -582.82], [-2606.53, -578.57], [-2607.54, -578.54], [-2607.53, -577.99], [-2620.81, -577.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2613.35, -372.12], [-2604.26, -372.41], [-2604.39, -376.39], [-2602.25, -376.46], [-2602.5, -384.06], [-2606.64, -383.93], [-2606.72, -386.56], [-2613.81, -386.33], [-2613.35, -372.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2617.49, -830.68], [-2609.31, -830.94], [-2609.74, -843.84], [-2617.92, -843.57], [-2617.79, -839.65], [-2620.87, -839.55], [-2620.61, -831.6], [-2617.52, -831.7], [-2617.49, -830.68]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2775.72, -854.44], [-2783.44, -854.29], [-2783.48, -855.92], [-2785.99, -855.86], [-2786.16, -864.79], [-2783.64, -864.84], [-2783.65, -865.51], [-2775.92, -865.66], [-2775.72, -854.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2575.05, -259.88], [-2575.15, -263.91], [-2576.44, -263.88], [-2576.53, -267.74], [-2575.26, -267.78], [-2575.28, -268.95], [-2558.7, -269.37], [-2558.47, -260.3], [-2575.05, -259.88]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2725.65, -848.14], [-2725.9, -854.78], [-2725.35, -854.81], [-2725.52, -859.45], [-2721.53, -859.6], [-2721.37, -854.95], [-2718.91, -855.04], [-2718.66, -848.4], [-2725.65, -848.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2604.18, -831.55], [-2604.4, -839.92], [-2602.06, -839.99], [-2602.12, -842.2], [-2598.03, -842.31], [-2597.97, -840.08], [-2597.13, -840.11], [-2596.91, -831.75], [-2604.18, -831.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2601.67, -516.26], [-2602.25, -532.76], [-2593.16, -533.08], [-2592.59, -516.58], [-2594.04, -516.52], [-2593.98, -514.99], [-2600.21, -514.78], [-2600.26, -516.31], [-2601.67, -516.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2666.03, -773.96], [-2666.09, -775.48], [-2667.91, -775.42], [-2668.06, -779.21], [-2666.24, -779.29], [-2666.4, -783.22], [-2655.48, -783.64], [-2655.12, -774.38], [-2666.03, -773.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2598.91, -697.55], [-2607.61, -697.36], [-2607.94, -711.34], [-2607.13, -711.36], [-2607.21, -714.73], [-2601.42, -714.87], [-2601.34, -711.49], [-2599.22, -711.54], [-2598.91, -697.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-900.4, -208.45], [-904.28, -212.01], [-910.85, -204.99], [-910.3, -204.57], [-915.55, -198.75], [-917.89, -201.01], [-919.06, -199.84], [-928.26, -208.04], [-927.36, -208.91], [-930.38, -211.38], [-924.56, -218.27], [-931.83, -224.87], [-950.02, -204.64], [-946.38, -201.21], [-948.28, -199.13], [-955.96, -190.71], [-962.09, -184.02], [-984.32, -204.29], [-971.38, -218.4], [-968.47, -221.69], [-957.54, -234.01], [-972.68, -248.14], [-978.69, -253.22], [-971.39, -253.46], [-971.51, -255.12], [-935.33, -256.65], [-935.27, -255.81], [-930.33, -255.13], [-925.61, -253.85], [-920.72, -251.73], [-916.92, -249.55], [-915.88, -250.9], [-885.87, -223.84], [-900.4, -208.45]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 7705, "jobs": 0}}, {"shape": {"outer": [[-693.77, -105.98], [-676.09, -106.85], [-676.54, -115.53], [-677.23, -128.93], [-677.36, -131.56], [-695.02, -130.65], [-693.77, -105.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.28, "pop": 0, "jobs": 280}}, {"shape": {"outer": [[-676.09, -106.85], [-666.29, -107.28], [-667.22, -123.78], [-675.37, -123.31], [-675.0, -116.95], [-676.54, -115.53], [-676.09, -106.85]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.096, "pop": 0, "jobs": 96}}, {"shape": {"outer": [[-666.29, -107.28], [-658.7, -107.65], [-659.76, -127.46], [-665.09, -132.33], [-667.7, -132.18], [-667.4, -126.86], [-667.22, -123.78], [-666.29, -107.28]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-658.7, -107.65], [-652.25, -107.99], [-641.94, -108.54], [-639.96, -108.65], [-640.56, -120.01], [-641.38, -135.45], [-639.38, -137.63], [-650.72, -147.97], [-665.09, -132.33], [-659.76, -127.46], [-658.7, -107.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.552, "pop": 276, "jobs": 0}}, {"shape": {"outer": [[-639.96, -108.65], [-628.08, -109.22], [-629.22, -128.52], [-633.14, -131.94], [-634.85, -129.81], [-634.33, -120.1], [-640.56, -120.01], [-639.96, -108.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-640.56, -120.01], [-641.38, -135.45], [-639.38, -137.63], [-633.14, -131.94], [-634.85, -129.81], [-634.33, -120.1], [-640.56, -120.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-628.08, -109.22], [-611.68, -109.93], [-610.82, -112.38], [-629.22, -128.52], [-628.08, -109.22]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-913.91, -76.08], [-913.62, -69.21], [-914.55, -69.17], [-913.56, -45.94], [-921.89, -45.59], [-922.04, -49.27], [-922.55, -49.25], [-923.67, -75.67], [-913.91, -76.08]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[-912.89, -51.94], [-897.32, -52.6], [-898.34, -76.75], [-913.91, -76.08], [-913.62, -69.21], [-912.89, -51.94]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.105, "pop": 0, "jobs": 105}}, {"shape": {"outer": [[-898.34, -76.75], [-888.16, -77.17], [-887.0, -49.52], [-897.17, -49.08], [-897.32, -52.6], [-898.34, -76.75]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.158, "pop": 0, "jobs": 158}}, {"shape": {"outer": [[-888.16, -77.17], [-878.77, -77.55], [-877.46, -46.07], [-877.35, -43.57], [-880.65, -39.72], [-885.53, -39.51], [-886.6, -40.27], [-887.0, -49.52], [-888.16, -77.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.244, "pop": 122, "jobs": 0}}, {"shape": {"outer": [[-637.7, -75.33], [-638.32, -89.34], [-622.99, -90.06], [-622.36, -77.39], [-630.36, -68.11], [-637.7, -75.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.172, "pop": 0, "jobs": 172}}, {"shape": {"outer": [[-681.66, -65.85], [-701.1, -83.59], [-700.32, -85.17], [-699.7, -86.43], [-676.73, -87.51], [-676.01, -72.08], [-681.66, -65.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.266, "pop": 133, "jobs": 0}}, {"shape": {"outer": [[-676.01, -72.08], [-671.64, -68.15], [-670.72, -69.16], [-669.85, -68.39], [-676.47, -61.11], [-681.66, -65.85], [-676.01, -72.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-676.73, -87.51], [-669.28, -87.83], [-668.57, -73.49], [-668.49, -71.83], [-670.72, -69.16], [-671.64, -68.15], [-676.01, -72.08], [-676.73, -87.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-668.57, -73.49], [-666.59, -73.58], [-666.51, -71.97], [-666.36, -68.72], [-659.63, -69.02], [-659.68, -70.16], [-659.85, -74.37], [-660.51, -88.3], [-669.28, -87.83], [-668.57, -73.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-660.51, -88.3], [-645.75, -89.01], [-645.07, -75.08], [-651.75, -74.76], [-659.85, -74.37], [-660.51, -88.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.132, "pop": 0, "jobs": 132}}, {"shape": {"outer": [[-676.47, -61.11], [-669.85, -68.39], [-666.51, -71.97], [-666.36, -68.72], [-659.63, -69.02], [-659.68, -70.16], [-651.49, -70.54], [-638.22, -58.65], [-653.05, -42.13], [-654.25, -40.82], [-655.17, -41.66], [-676.47, -61.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.51, "pop": 255, "jobs": 0}}, {"shape": {"outer": [[-645.07, -75.08], [-651.75, -74.76], [-636.8, -61.09], [-630.36, -68.11], [-637.7, -75.33], [-638.32, -89.34], [-645.75, -89.01], [-645.07, -75.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-584.58, -33.98], [-597.24, -45.27], [-598.61, -46.44], [-611.06, -57.5], [-612.22, -58.65], [-612.71, -59.07], [-631.06, -38.64], [-626.76, -34.79], [-608.35, -18.4], [-602.93, -13.55], [-584.58, -33.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.662, "pop": 0, "jobs": 662}}, {"shape": {"outer": [[-608.35, -18.4], [-610.77, -15.71], [-612.42, -17.17], [-614.16, -15.24], [-614.87, -15.89], [-617.58, -12.88], [-618.82, -13.0], [-621.31, -15.4], [-621.42, -16.44], [-619.33, -18.78], [-631.45, -29.57], [-626.76, -34.79], [-608.35, -18.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[-603.85, -67.82], [-588.93, -54.57], [-583.72, -60.18], [-582.09, -58.72], [-576.67, -64.71], [-578.25, -66.13], [-570.23, -75.0], [-584.3, -87.62], [-585.06, -87.76], [-585.76, -87.71], [-586.4, -87.4], [-603.85, -67.82]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.323, "pop": 0, "jobs": 323}}, {"shape": {"outer": [[-598.61, -46.44], [-593.83, -51.78], [-595.9, -53.62], [-595.6, -53.96], [-599.03, -57.02], [-598.39, -57.74], [-594.52, -54.29], [-594.1, -54.77], [-591.11, -52.12], [-588.93, -54.57], [-603.85, -67.82], [-607.36, -63.89], [-606.24, -62.9], [-608.03, -60.87], [-611.06, -57.5], [-598.61, -46.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-224.12, -250.61], [-266.49, -289.11], [-239.13, -319.0], [-238.6, -318.49], [-229.18, -309.94], [-215.66, -297.68], [-206.16, -289.05], [-208.64, -286.35], [-203.85, -282.01], [-209.87, -275.45], [-211.34, -273.84], [-206.71, -269.64], [-224.12, -250.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 881, "jobs": 0}}, {"shape": {"outer": [[-212.3, -258.24], [-221.56, -247.97], [-206.39, -234.43], [-197.16, -244.74], [-212.3, -258.24]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.157, "pop": 0, "jobs": 157}}, {"shape": {"outer": [[-197.16, -244.74], [-187.58, -255.46], [-202.65, -268.97], [-212.3, -258.24], [-197.16, -244.74]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-187.58, -255.46], [-179.15, -264.8], [-200.42, -283.86], [-206.16, -289.05], [-208.64, -286.35], [-203.85, -282.01], [-209.87, -275.45], [-202.65, -268.97], [-187.58, -255.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[-238.6, -318.49], [-226.67, -331.55], [-188.51, -296.96], [-198.86, -285.63], [-214.06, -299.43], [-215.66, -297.68], [-229.18, -309.94], [-238.6, -318.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.552, "pop": 0, "jobs": 552}}, {"shape": {"outer": [[-182.31, -349.68], [-206.36, -322.93], [-209.77, -319.14], [-186.97, -298.78], [-165.69, -279.77], [-158.29, -288.0], [-138.22, -310.31], [-182.31, -349.68]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 3823, "jobs": 0}}, {"shape": {"outer": [[-206.36, -322.93], [-222.72, -337.52], [-198.67, -364.27], [-182.31, -349.68], [-206.36, -322.93]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1545}}, {"shape": {"outer": [[-1494.17, -1708.14], [-1494.31, -1720.14], [-1471.53, -1720.41], [-1471.39, -1708.41], [-1494.17, -1708.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.175, "pop": 0, "jobs": 175}}, {"shape": {"outer": [[-1486.34, -1800.86], [-1486.52, -1807.0], [-1484.73, -1806.94], [-1477.45, -1826.55], [-1459.14, -1817.38], [-1466.13, -1804.63], [-1469.47, -1804.65], [-1469.72, -1801.33], [-1486.34, -1800.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.34, "pop": 170, "jobs": 0}}, {"shape": {"outer": [[-1503.13, -1906.9], [-1492.96, -1901.36], [-1493.23, -1900.86], [-1496.55, -1894.8], [-1490.32, -1891.4], [-1488.42, -1894.85], [-1484.09, -1892.49], [-1490.02, -1881.7], [-1500.21, -1887.26], [-1504.44, -1879.55], [-1515.0, -1885.31], [-1503.13, -1906.9]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.262, "pop": 0, "jobs": 262}}, {"shape": {"outer": [[-1493.83, -1999.14], [-1490.13, -2006.28], [-1479.03, -2000.6], [-1482.73, -1993.46], [-1493.83, -1999.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1538.71, -1999.28], [-1529.5, -2015.95], [-1513.64, -2007.24], [-1522.86, -1990.58], [-1538.71, -1999.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-1546.3, -1987.75], [-1554.95, -1971.26], [-1537.01, -1961.93], [-1528.36, -1978.41], [-1546.3, -1987.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[-1531.45, -1958.07], [-1523.76, -1972.49], [-1512.78, -1966.68], [-1520.47, -1952.26], [-1531.45, -1958.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1511.58, -1958.53], [-1516.28, -1949.49], [-1506.96, -1944.69], [-1502.27, -1953.74], [-1511.58, -1958.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1473.15, -2040.4], [-1463.99, -2035.37], [-1481.59, -2003.55], [-1490.75, -2008.58], [-1473.15, -2040.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[-1430.67, -1844.35], [-1425.43, -1841.33], [-1427.09, -1838.48], [-1432.34, -1841.52], [-1430.67, -1844.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1435.05, -1828.12], [-1432.1, -1833.45], [-1438.4, -1836.93], [-1441.36, -1831.6], [-1435.05, -1828.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1426.6, -1826.49], [-1422.49, -1833.85], [-1412.35, -1828.23], [-1415.49, -1822.6], [-1418.18, -1824.09], [-1419.15, -1822.37], [-1426.6, -1826.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1718.12, -1884.03], [-1703.5, -1869.71], [-1714.28, -1858.21], [-1719.2, -1858.13], [-1727.86, -1849.84], [-1724.38, -1845.61], [-1725.01, -1840.95], [-1730.19, -1840.88], [-1730.61, -1842.85], [-1733.39, -1846.71], [-1733.34, -1856.38], [-1730.28, -1856.31], [-1730.11, -1872.32], [-1724.25, -1872.39], [-1718.12, -1884.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.355, "pop": 0, "jobs": 355}}, {"shape": {"outer": [[-946.4, -73.36], [-945.88, -62.44], [-944.8, -39.92], [-934.25, -40.42], [-934.88, -53.75], [-935.84, -73.88], [-946.4, -73.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[-934.88, -53.75], [-926.03, -54.18], [-927.0, -74.31], [-935.84, -73.88], [-934.88, -53.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-944.8, -39.92], [-944.76, -39.08], [-952.74, -38.69], [-953.15, -47.32], [-953.59, -47.29], [-953.62, -47.79], [-954.5, -66.29], [-955.23, -66.25], [-955.54, -72.93], [-947.7, -73.3], [-946.4, -73.36], [-945.88, -62.44], [-944.8, -39.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-953.62, -47.79], [-961.4, -47.42], [-961.48, -49.26], [-962.78, -49.2], [-963.16, -57.1], [-963.64, -57.09], [-963.93, -63.07], [-963.59, -63.09], [-964.04, -72.53], [-955.54, -72.93], [-955.23, -66.25], [-954.5, -66.29], [-953.62, -47.79]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.19, "pop": 0, "jobs": 190}}, {"shape": {"outer": [[-3157.88, -1253.25], [-3151.49, -1261.01], [-3150.96, -1260.57], [-3149.11, -1262.81], [-3140.19, -1255.52], [-3142.03, -1253.28], [-3141.22, -1252.61], [-3146.61, -1246.07], [-3149.95, -1248.79], [-3150.94, -1247.59], [-3157.88, -1253.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3148.62, -1148.14], [-3144.26, -1144.49], [-3145.67, -1142.81], [-3143.59, -1141.07], [-3150.79, -1132.55], [-3152.22, -1133.74], [-3154.59, -1130.94], [-3157.65, -1133.51], [-3158.88, -1132.05], [-3162.65, -1135.21], [-3158.5, -1140.11], [-3156.68, -1138.59], [-3148.62, -1148.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3141.72, -1179.21], [-3134.02, -1187.82], [-3129.49, -1183.8], [-3131.51, -1181.56], [-3129.56, -1179.82], [-3131.5, -1177.64], [-3129.38, -1175.76], [-3132.48, -1172.29], [-3134.6, -1174.18], [-3135.25, -1173.46], [-3137.42, -1175.38], [-3137.99, -1174.75], [-3139.35, -1175.95], [-3138.77, -1176.59], [-3141.72, -1179.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-3129.54, -1115.8], [-3123.41, -1110.57], [-3115.59, -1119.66], [-3121.71, -1124.9], [-3129.54, -1115.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-3125.35, -1175.71], [-3122.07, -1172.92], [-3116.69, -1179.17], [-3119.97, -1181.98], [-3125.35, -1175.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-3131.59, -1192.46], [-3134.79, -1195.23], [-3131.14, -1199.42], [-3127.94, -1196.65], [-3131.59, -1192.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3126.9, -1183.02], [-3123.32, -1186.97], [-3119.55, -1183.59], [-3123.14, -1179.63], [-3126.9, -1183.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-3142.86, -1115.2], [-3145.83, -1117.69], [-3142.14, -1122.09], [-3139.16, -1119.59], [-3142.86, -1115.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3146.95, -1130.93], [-3140.98, -1138.0], [-3134.8, -1132.83], [-3140.77, -1125.76], [-3146.95, -1130.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-3156.2, -1210.15], [-3151.46, -1206.43], [-3147.98, -1210.84], [-3152.72, -1214.56], [-3156.2, -1210.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-3157.21, -1123.82], [-3152.38, -1119.95], [-3147.69, -1125.74], [-3152.51, -1129.62], [-3157.21, -1123.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3162.96, -1225.29], [-3157.96, -1231.22], [-3152.57, -1226.72], [-3157.57, -1220.79], [-3162.96, -1225.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-3161.05, -1141.62], [-3167.59, -1147.2], [-3160.35, -1155.63], [-3153.81, -1150.06], [-3161.05, -1141.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-3157.67, -1231.69], [-3152.34, -1227.39], [-3148.15, -1232.57], [-3153.47, -1236.86], [-3157.67, -1231.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3134.68, -1108.11], [-3131.11, -1112.32], [-3126.79, -1108.69], [-3130.37, -1104.48], [-3134.68, -1108.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-3161.39, -1272.68], [-3155.78, -1268.04], [-3162.89, -1259.49], [-3159.71, -1256.86], [-3164.89, -1250.64], [-3173.69, -1257.9], [-3161.39, -1272.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-3136.96, -1124.74], [-3131.73, -1131.07], [-3129.83, -1129.51], [-3128.84, -1130.69], [-3126.27, -1128.59], [-3127.25, -1127.39], [-3125.3, -1125.8], [-3130.53, -1119.46], [-3136.96, -1124.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-3163.81, -1196.61], [-3158.77, -1202.67], [-3156.01, -1200.39], [-3155.26, -1201.29], [-3153.77, -1200.05], [-3152.67, -1201.38], [-3149.06, -1198.39], [-3155.95, -1190.11], [-3163.81, -1196.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-3152.37, -1189.14], [-3144.47, -1198.46], [-3136.46, -1191.72], [-3144.36, -1182.4], [-3145.17, -1183.09], [-3146.37, -1181.67], [-3152.69, -1186.98], [-3151.49, -1188.39], [-3152.37, -1189.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1640.13, 789.19], [1652.32, 775.78], [1647.45, 771.36], [1646.93, 770.89], [1646.45, 770.48], [1641.59, 775.83], [1641.04, 775.32], [1633.71, 783.39], [1634.97, 784.52], [1633.44, 786.2], [1636.78, 789.2], [1638.3, 787.53], [1640.13, 789.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1633.68, 779.18], [1642.38, 769.71], [1635.83, 763.73], [1627.14, 773.2], [1633.68, 779.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1626.3, 773.21], [1635.42, 763.27], [1634.85, 762.75], [1634.19, 762.15], [1629.57, 757.94], [1620.45, 767.88], [1620.92, 768.3], [1619.92, 769.41], [1624.56, 773.63], [1625.56, 772.54], [1626.3, 773.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1615.47, 769.97], [1628.31, 756.02], [1621.99, 750.24], [1618.51, 754.03], [1618.23, 753.77], [1608.87, 763.94], [1615.47, 769.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1610.35, 761.6], [1620.59, 750.48], [1614.42, 744.83], [1611.24, 748.28], [1611.07, 748.13], [1607.64, 751.85], [1607.81, 752.0], [1604.18, 755.95], [1610.35, 761.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1600.84, 754.97], [1611.88, 742.85], [1605.99, 737.53], [1594.95, 749.66], [1600.84, 754.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1598.82, 744.5], [1608.4, 733.91], [1602.09, 728.24], [1592.51, 738.85], [1598.82, 744.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1590.14, 738.05], [1600.95, 726.48], [1600.05, 725.65], [1598.55, 724.26], [1594.43, 720.44], [1583.63, 732.0], [1590.14, 738.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1588.66, 752.24], [1595.01, 745.2], [1583.2, 734.6], [1578.53, 739.76], [1582.16, 743.02], [1580.47, 744.89], [1588.66, 752.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[552.98, 831.84], [546.01, 825.57], [556.12, 814.39], [556.67, 814.89], [557.84, 813.6], [563.63, 818.82], [562.3, 820.29], [562.94, 820.85], [552.98, 831.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[539.66, 819.19], [542.31, 816.14], [541.34, 815.3], [545.13, 810.94], [546.15, 811.81], [549.0, 808.52], [550.31, 809.63], [551.59, 808.15], [556.51, 812.39], [548.67, 821.42], [547.7, 820.58], [544.94, 823.76], [539.66, 819.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1727.67, 1892.0], [1736.42, 1900.37], [1723.66, 1913.61], [1732.79, 1922.35], [1729.71, 1925.55], [1734.38, 1930.02], [1737.46, 1926.81], [1743.98, 1933.05], [1756.74, 1919.81], [1763.58, 1926.35], [1780.74, 1908.55], [1779.11, 1907.0], [1789.23, 1896.5], [1795.01, 1902.04], [1808.61, 1887.93], [1768.54, 1849.6], [1727.67, 1892.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2274}}, {"shape": {"outer": [[1821.8, 1845.93], [1828.77, 1838.61], [1839.62, 1848.84], [1832.65, 1856.18], [1821.8, 1845.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1929.34, 1818.49], [1938.56, 1827.52], [1957.26, 1808.56], [1948.03, 1799.53], [1929.34, 1818.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.22, "pop": 0, "jobs": 220}}, {"shape": {"outer": [[1804.39, 1857.04], [1796.76, 1849.57], [1808.16, 1837.99], [1799.78, 1829.79], [1808.55, 1820.89], [1824.57, 1836.55], [1804.39, 1857.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.362, "pop": 181, "jobs": 0}}, {"shape": {"outer": [[-699.06, -2614.76], [-694.27, -2603.64], [-655.12, -2620.38], [-659.91, -2631.51], [-663.27, -2630.08], [-666.15, -2636.76], [-659.29, -2639.69], [-659.97, -2641.28], [-665.19, -2642.08], [-669.75, -2652.49], [-672.44, -2651.33], [-670.43, -2646.66], [-695.29, -2636.02], [-688.15, -2619.43], [-699.06, -2614.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.682, "pop": 0, "jobs": 682}}, {"shape": {"outer": [[-611.65, -2683.37], [-619.44, -2682.49], [-621.77, -2702.78], [-613.97, -2703.67], [-611.65, -2683.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-692.97, -2805.99], [-674.11, -2812.96], [-655.88, -2763.92], [-674.74, -2756.94], [-692.97, -2805.99]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.674, "pop": 0, "jobs": 674}}, {"shape": {"outer": [[-821.49, -2898.27], [-803.14, -2905.96], [-781.04, -2877.22], [-787.84, -2874.24], [-794.49, -2871.07], [-807.0, -2865.83], [-808.04, -2868.29], [-808.73, -2868.01], [-821.49, -2898.27]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.554, "pop": 0, "jobs": 554}}, {"shape": {"outer": [[-728.93, -2663.67], [-736.69, -2680.72], [-715.28, -2690.39], [-707.52, -2673.33], [-728.93, -2663.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[-656.13, -2748.36], [-658.78, -2755.75], [-650.3, -2758.79], [-647.65, -2751.39], [-656.13, -2748.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-877.78, -2884.74], [-852.36, -2882.61], [-851.63, -2891.36], [-849.2, -2891.15], [-848.02, -2905.19], [-840.7, -2904.57], [-838.78, -2927.34], [-873.94, -2930.27], [-877.78, -2884.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.911, "pop": 0, "jobs": 911}}, {"shape": {"outer": [[-1290.44, -2843.9], [-1290.6, -2847.43], [-1294.33, -2847.26], [-1294.89, -2859.86], [-1273.52, -2860.81], [-1273.26, -2854.95], [-1271.27, -2855.04], [-1271.1, -2851.07], [-1273.09, -2850.98], [-1272.81, -2844.67], [-1290.44, -2843.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[-974.46, -2859.42], [-966.42, -2859.07], [-966.33, -2861.13], [-956.29, -2860.7], [-955.64, -2875.15], [-973.74, -2875.95], [-974.11, -2867.54], [-977.12, -2867.67], [-977.35, -2862.54], [-974.34, -2862.4], [-974.46, -2859.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.236, "pop": 118, "jobs": 0}}, {"shape": {"outer": [[-1422.6, -2749.92], [-1427.45, -2757.76], [-1425.93, -2758.7], [-1427.81, -2761.73], [-1426.46, -2762.56], [-1428.89, -2766.51], [-1422.42, -2770.49], [-1420.38, -2767.19], [-1418.98, -2768.04], [-1416.81, -2764.54], [-1414.07, -2766.22], [-1409.12, -2758.21], [-1422.6, -2749.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-854.25, -2815.71], [-854.53, -2829.73], [-837.78, -2830.5], [-840.49, -2836.67], [-848.29, -2855.3], [-840.34, -2859.26], [-828.35, -2831.29], [-832.11, -2831.14], [-831.73, -2821.71], [-844.68, -2821.03], [-844.68, -2815.85], [-854.25, -2815.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.41, "pop": 205, "jobs": 0}}, {"shape": {"outer": [[-934.55, -2926.08], [-922.57, -2927.57], [-922.51, -2927.04], [-920.2, -2927.32], [-920.51, -2929.75], [-913.93, -2930.56], [-912.62, -2920.03], [-919.04, -2919.23], [-919.44, -2922.46], [-922.27, -2922.11], [-921.87, -2918.89], [-923.27, -2918.71], [-922.92, -2915.95], [-933.13, -2914.69], [-934.55, -2926.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1124.13, -2716.06], [-1125.0, -2745.25], [-1118.15, -2745.62], [-1118.36, -2751.54], [-1111.93, -2751.77], [-1111.72, -2745.85], [-1102.51, -2746.17], [-1102.1, -2734.55], [-1090.63, -2734.95], [-1070.87, -2735.47], [-1073.9, -2713.43], [-1082.08, -2713.36], [-1082.44, -2714.15], [-1101.77, -2714.12], [-1102.25, -2716.32], [-1124.13, -2716.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.85, "pop": 0, "jobs": 850}}, {"shape": {"outer": [[-1085.32, -2786.15], [-1082.21, -2785.61], [-1083.1, -2780.37], [-1068.8, -2777.94], [-1068.62, -2779.01], [-1066.48, -2778.65], [-1065.9, -2781.98], [-1068.05, -2782.34], [-1067.91, -2783.16], [-1066.46, -2782.93], [-1059.57, -2822.95], [-1061.01, -2823.2], [-1060.23, -2827.76], [-1058.79, -2827.53], [-1057.51, -2834.96], [-1059.08, -2835.23], [-1058.27, -2839.94], [-1074.16, -2842.65], [-1074.97, -2837.94], [-1076.38, -2838.17], [-1077.56, -2831.29], [-1074.34, -2830.75], [-1075.24, -2825.5], [-1078.46, -2826.06], [-1085.32, -2786.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.735, "pop": 0, "jobs": 735}}, {"shape": {"outer": [[-1433.66, -2808.24], [-1431.24, -2805.0], [-1434.45, -2802.61], [-1423.96, -2788.64], [-1420.75, -2791.02], [-1414.91, -2783.24], [-1397.11, -2796.5], [-1395.22, -2793.99], [-1388.76, -2798.79], [-1386.61, -2795.53], [-1386.52, -2791.72], [-1335.8, -2794.13], [-1339.3, -2807.2], [-1318.76, -2807.84], [-1323.11, -2825.57], [-1320.4, -2826.23], [-1323.61, -2839.32], [-1320.81, -2840.0], [-1323.58, -2851.32], [-1339.8, -2847.65], [-1340.24, -2849.71], [-1387.31, -2838.46], [-1386.83, -2837.05], [-1392.1, -2835.75], [-1392.97, -2838.16], [-1402.53, -2835.68], [-1409.97, -2830.02], [-1408.26, -2827.83], [-1433.66, -2808.24]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3078}}, {"shape": {"outer": [[-997.42, -2784.57], [-993.81, -2796.07], [-969.27, -2788.44], [-972.87, -2776.93], [-997.42, -2784.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.198, "pop": 0, "jobs": 198}}, {"shape": {"outer": [[-951.35, -3087.69], [-952.26, -3100.0], [-918.28, -3102.5], [-917.37, -3090.18], [-951.35, -3087.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[-920.27, -2889.13], [-920.99, -2898.66], [-901.14, -2900.15], [-900.42, -2890.62], [-920.27, -2889.13]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.122, "pop": 0, "jobs": 122}}, {"shape": {"outer": [[-1391.05, -2990.19], [-1383.46, -2991.31], [-1384.81, -3000.53], [-1392.4, -2999.41], [-1391.05, -2990.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1017.53, -2699.77], [-999.07, -2695.05], [-995.14, -2710.3], [-1013.59, -2715.02], [-1017.53, -2699.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-997.26, -2727.44], [-976.32, -2721.9], [-970.74, -2742.87], [-991.68, -2748.4], [-997.26, -2727.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.301, "pop": 0, "jobs": 301}}, {"shape": {"outer": [[-955.81, -2891.49], [-937.91, -2890.99], [-937.01, -2922.66], [-954.91, -2923.16], [-955.81, -2891.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.363, "pop": 0, "jobs": 363}}, {"shape": {"outer": [[-964.51, -2776.85], [-962.0, -2786.21], [-947.91, -2782.48], [-950.41, -2773.1], [-964.51, -2776.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-874.0, -2842.98], [-864.2, -2843.33], [-864.7, -2857.4], [-874.48, -2857.05], [-874.0, -2842.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-941.74, -2869.61], [-941.02, -2888.11], [-905.13, -2886.74], [-905.84, -2868.25], [-941.74, -2869.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.425, "pop": 0, "jobs": 425}}, {"shape": {"outer": [[-887.46, -3065.06], [-887.92, -3076.04], [-870.77, -3076.75], [-870.31, -3065.77], [-887.46, -3065.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-998.6, -2774.24], [-995.79, -2783.23], [-966.83, -2774.26], [-968.86, -2767.79], [-966.66, -2767.12], [-967.45, -2764.58], [-998.6, -2774.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-1412.15, -2751.42], [-1418.26, -2747.19], [-1416.74, -2745.0], [-1418.83, -2743.55], [-1410.78, -2732.01], [-1402.57, -2737.7], [-1412.15, -2751.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1004.44, -2752.94], [-1000.99, -2770.46], [-985.85, -2766.7], [-966.46, -2761.62], [-971.07, -2744.19], [-1004.44, -2752.94]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.404, "pop": 0, "jobs": 404}}, {"shape": {"outer": [[-1283.39, -2700.64], [-1266.18, -2701.4], [-1268.99, -2765.25], [-1286.2, -2764.49], [-1285.18, -2741.21], [-1287.46, -2741.11], [-1286.7, -2723.93], [-1284.43, -2724.03], [-1283.39, -2700.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.73, "pop": 0, "jobs": 730}}, {"shape": {"outer": [[-1281.33, -2628.48], [-1264.53, -2629.17], [-1267.11, -2692.7], [-1283.91, -2692.02], [-1282.97, -2668.63], [-1285.49, -2668.53], [-1284.82, -2652.0], [-1282.29, -2652.1], [-1281.33, -2628.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.711, "pop": 0, "jobs": 711}}, {"shape": {"outer": [[-1268.17, -2774.0], [-1285.06, -2773.32], [-1286.0, -2796.47], [-1288.88, -2796.36], [-1289.57, -2813.33], [-1286.69, -2813.45], [-1287.63, -2836.63], [-1270.74, -2837.32], [-1268.17, -2774.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.717, "pop": 0, "jobs": 717}}, {"shape": {"outer": [[-977.59, -2822.62], [-977.48, -2825.54], [-980.43, -2825.64], [-980.11, -2834.64], [-977.16, -2834.54], [-977.05, -2837.82], [-941.31, -2836.57], [-941.85, -2821.39], [-977.59, -2822.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.456, "pop": 228, "jobs": 0}}, {"shape": {"outer": [[-744.8, -2978.74], [-745.7, -2987.23], [-736.61, -2988.2], [-735.57, -2978.54], [-738.56, -2978.22], [-738.42, -2977.0], [-741.15, -2976.71], [-741.28, -2977.93], [-741.93, -2977.86], [-742.05, -2979.03], [-744.8, -2978.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-886.41, -3047.92], [-885.58, -3040.8], [-879.65, -3041.5], [-879.48, -3040.13], [-870.52, -3041.18], [-870.75, -3043.14], [-868.92, -3043.35], [-869.56, -3048.79], [-871.38, -3048.57], [-871.51, -3049.64], [-886.41, -3047.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-777.51, -3066.04], [-770.7, -3067.05], [-770.94, -3068.64], [-760.51, -3070.18], [-761.56, -3077.23], [-772.14, -3075.66], [-772.67, -3079.28], [-779.34, -3078.3], [-778.81, -3074.78], [-779.62, -3074.66], [-779.31, -3072.6], [-778.51, -3072.71], [-777.51, -3066.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-716.77, -3074.34], [-716.81, -3075.18], [-718.99, -3075.06], [-719.13, -3077.85], [-716.95, -3077.95], [-717.19, -3082.59], [-712.4, -3082.84], [-712.45, -3083.83], [-702.42, -3084.34], [-701.97, -3075.66], [-711.48, -3075.17], [-711.44, -3074.61], [-716.77, -3074.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-850.05, -3011.12], [-843.13, -3012.07], [-844.08, -3019.06], [-845.84, -3018.82], [-846.06, -3020.46], [-844.19, -3020.71], [-845.2, -3028.0], [-847.73, -3027.65], [-848.02, -3029.7], [-851.85, -3029.18], [-851.56, -3027.12], [-852.24, -3027.03], [-851.81, -3023.92], [-853.36, -3023.71], [-852.91, -3020.5], [-851.37, -3020.71], [-850.05, -3011.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-754.52, -3053.41], [-754.77, -3058.37], [-747.56, -3058.72], [-747.32, -3053.77], [-754.52, -3053.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-772.38, -3033.67], [-772.11, -3026.62], [-761.52, -3027.04], [-761.79, -3034.09], [-772.38, -3033.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-819.69, -3017.51], [-820.75, -3024.17], [-812.75, -3025.43], [-811.7, -3018.77], [-819.69, -3017.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-801.0, -2982.75], [-793.27, -2983.58], [-794.31, -2993.14], [-802.03, -2992.3], [-801.0, -2982.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-712.77, -3072.73], [-712.15, -3063.58], [-700.86, -3064.34], [-701.48, -3073.49], [-712.77, -3072.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-672.65, -3076.59], [-673.09, -3085.54], [-659.65, -3086.19], [-659.22, -3077.25], [-672.65, -3076.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-767.48, -3011.05], [-767.84, -3019.95], [-755.12, -3020.47], [-754.75, -3011.57], [-767.48, -3011.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-813.77, -3045.67], [-814.24, -3054.31], [-805.45, -3054.77], [-804.99, -3046.14], [-813.77, -3045.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-819.68, -3057.32], [-820.19, -3063.58], [-803.39, -3064.92], [-802.88, -3058.68], [-819.68, -3057.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-775.55, -3056.57], [-774.93, -3047.58], [-761.4, -3048.51], [-762.02, -3057.5], [-775.55, -3056.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-679.72, -3114.69], [-670.54, -3114.9], [-670.3, -3104.34], [-679.48, -3104.13], [-679.72, -3114.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-654.47, -3008.28], [-664.64, -3007.6], [-665.59, -3021.84], [-655.42, -3022.51], [-654.47, -3008.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-712.23, -3023.13], [-712.69, -3029.96], [-705.77, -3030.44], [-705.3, -3023.6], [-712.23, -3023.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-712.49, -3051.34], [-713.7, -3060.36], [-702.93, -3061.82], [-701.7, -3052.79], [-712.49, -3051.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-671.72, -3053.59], [-663.14, -3054.2], [-663.78, -3063.11], [-672.36, -3062.5], [-671.72, -3053.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-820.52, -3025.54], [-821.11, -3030.69], [-814.03, -3031.5], [-813.44, -3026.34], [-820.52, -3025.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-726.6, -3074.57], [-726.89, -3079.48], [-720.07, -3079.9], [-719.77, -3074.98], [-726.6, -3074.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-660.57, -2980.6], [-660.85, -2985.52], [-649.61, -2986.17], [-649.33, -2981.24], [-660.57, -2980.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-741.23, -3104.98], [-741.63, -3111.65], [-730.83, -3112.29], [-730.43, -3105.61], [-741.23, -3104.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-779.94, -3099.41], [-780.47, -3108.01], [-765.69, -3108.92], [-765.15, -3100.32], [-779.94, -3099.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-717.35, -3007.3], [-717.67, -3012.2], [-710.09, -3012.7], [-709.77, -3007.79], [-717.35, -3007.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-776.29, -3035.32], [-777.01, -3042.77], [-763.9, -3044.03], [-763.18, -3036.58], [-776.29, -3035.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-806.07, -3006.79], [-805.69, -2998.75], [-796.51, -2999.17], [-796.88, -3007.21], [-806.07, -3006.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-758.12, -3041.48], [-758.48, -3046.92], [-751.17, -3047.4], [-750.81, -3041.97], [-758.12, -3041.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-704.5, -3002.93], [-704.84, -3011.26], [-691.89, -3011.78], [-691.55, -3003.45], [-704.5, -3002.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-805.84, -3008.7], [-796.67, -3010.05], [-797.95, -3018.68], [-807.12, -3017.32], [-805.84, -3008.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-668.73, -3041.78], [-669.31, -3050.74], [-654.99, -3051.66], [-654.41, -3042.7], [-668.73, -3041.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-695.14, -2974.0], [-696.49, -2983.41], [-685.93, -2984.91], [-684.58, -2975.5], [-695.14, -2974.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-668.85, -3038.13], [-668.21, -3029.56], [-659.78, -3030.18], [-659.91, -3032.02], [-657.5, -3032.2], [-657.99, -3038.93], [-668.85, -3038.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-661.6, -2993.35], [-652.59, -2993.74], [-652.94, -3001.73], [-654.43, -3001.67], [-654.58, -3005.28], [-662.1, -3004.94], [-661.6, -2993.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-815.64, -3038.82], [-815.11, -3034.51], [-810.81, -3035.04], [-810.2, -3030.12], [-800.35, -3031.33], [-801.5, -3040.57], [-815.64, -3038.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-826.17, -3096.84], [-826.4, -3101.09], [-829.46, -3100.92], [-829.64, -3104.13], [-826.58, -3104.29], [-826.65, -3105.82], [-814.1, -3106.5], [-813.61, -3097.53], [-826.17, -3096.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-767.37, -2987.15], [-768.39, -2996.03], [-755.09, -2997.55], [-754.07, -2988.67], [-755.69, -2988.49], [-754.88, -2981.38], [-762.72, -2980.48], [-763.54, -2987.59], [-767.37, -2987.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-707.77, -3109.96], [-710.38, -3109.67], [-710.11, -3107.15], [-712.52, -3106.89], [-712.8, -3109.42], [-715.52, -3109.12], [-716.97, -3122.48], [-709.24, -3123.32], [-707.77, -3109.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-768.54, -2998.7], [-768.65, -3000.35], [-769.57, -3000.29], [-769.76, -3003.22], [-768.83, -3003.28], [-769.12, -3007.84], [-754.82, -3008.73], [-754.25, -2999.6], [-768.54, -2998.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-715.01, -3038.25], [-716.23, -3047.24], [-708.44, -3048.29], [-708.24, -3046.84], [-702.61, -3047.6], [-701.73, -3041.07], [-707.35, -3040.31], [-707.22, -3039.3], [-715.01, -3038.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-723.02, -2974.14], [-716.79, -2974.73], [-717.29, -2979.87], [-706.58, -2980.89], [-707.43, -2989.79], [-718.63, -2988.72], [-718.54, -2987.71], [-724.27, -2987.17], [-723.02, -2974.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-706.62, -3014.31], [-706.75, -3016.65], [-709.96, -3016.47], [-710.25, -3021.54], [-704.09, -3021.89], [-704.17, -3023.24], [-693.97, -3023.83], [-693.47, -3015.06], [-706.62, -3014.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1126.33, -2439.14], [-1118.43, -2439.42], [-1118.71, -2447.53], [-1126.61, -2447.25], [-1126.33, -2439.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1458.74, -2507.79], [-1466.21, -2507.42], [-1466.38, -2510.95], [-1470.11, -2510.76], [-1470.46, -2517.89], [-1465.97, -2518.12], [-1466.26, -2524.1], [-1461.24, -2524.34], [-1460.94, -2518.36], [-1459.26, -2518.44], [-1458.74, -2507.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1475.79, -2734.55], [-1469.99, -2724.47], [-1469.37, -2724.82], [-1467.92, -2722.29], [-1463.28, -2724.95], [-1464.73, -2727.48], [-1461.35, -2729.4], [-1463.12, -2732.47], [-1461.79, -2733.23], [-1465.82, -2740.24], [-1475.79, -2734.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1523.06, -2516.8], [-1522.74, -2520.81], [-1523.45, -2520.86], [-1523.03, -2526.05], [-1514.43, -2525.37], [-1514.17, -2528.62], [-1507.55, -2528.1], [-1507.85, -2524.29], [-1509.59, -2524.43], [-1510.28, -2515.78], [-1523.06, -2516.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1499.25, -2640.05], [-1506.49, -2640.62], [-1506.24, -2643.83], [-1511.36, -2644.23], [-1510.71, -2652.51], [-1503.97, -2651.99], [-1503.72, -2655.23], [-1495.46, -2654.58], [-1495.9, -2649.08], [-1498.52, -2649.28], [-1499.25, -2640.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1507.44, -2658.88], [-1499.92, -2658.38], [-1499.55, -2663.9], [-1496.04, -2663.67], [-1495.68, -2668.97], [-1499.19, -2669.2], [-1498.96, -2672.68], [-1508.64, -2673.33], [-1509.26, -2664.04], [-1507.1, -2663.89], [-1507.44, -2658.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1507.19, -2585.04], [-1515.75, -2585.72], [-1515.34, -2590.81], [-1517.11, -2590.94], [-1516.42, -2599.66], [-1506.09, -2598.84], [-1506.45, -2594.32], [-1501.98, -2593.97], [-1502.63, -2585.77], [-1507.1, -2586.12], [-1507.19, -2585.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1494.09, -2734.86], [-1493.62, -2739.4], [-1484.91, -2738.5], [-1485.37, -2733.97], [-1494.09, -2734.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1445.65, -2669.7], [-1436.59, -2672.16], [-1433.78, -2661.93], [-1442.84, -2659.47], [-1445.65, -2669.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1492.42, -2685.35], [-1491.75, -2691.93], [-1484.45, -2691.18], [-1485.12, -2684.61], [-1492.42, -2685.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1423.04, -2616.58], [-1431.61, -2615.12], [-1433.25, -2624.65], [-1424.67, -2626.12], [-1423.04, -2616.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1430.1, -2515.58], [-1430.3, -2520.41], [-1438.38, -2520.07], [-1438.18, -2515.23], [-1430.1, -2515.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1493.2, -2726.66], [-1492.52, -2733.51], [-1485.62, -2732.83], [-1486.29, -2725.98], [-1493.2, -2726.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1494.16, -2704.9], [-1493.65, -2710.34], [-1486.47, -2709.68], [-1486.98, -2704.23], [-1494.16, -2704.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1445.59, -2650.41], [-1443.7, -2642.66], [-1432.52, -2645.37], [-1434.41, -2653.13], [-1445.59, -2650.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1421.45, -2597.41], [-1429.93, -2596.48], [-1431.19, -2607.99], [-1422.71, -2608.92], [-1421.45, -2597.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1489.95, -2521.21], [-1482.22, -2521.55], [-1482.53, -2528.78], [-1490.26, -2528.45], [-1489.95, -2521.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1430.95, -2545.61], [-1430.61, -2536.6], [-1419.47, -2537.03], [-1419.82, -2546.04], [-1430.95, -2545.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1427.49, -2548.82], [-1418.94, -2549.25], [-1419.43, -2558.93], [-1427.99, -2558.49], [-1427.49, -2548.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1471.93, -2703.52], [-1475.71, -2711.01], [-1469.14, -2714.31], [-1465.36, -2706.82], [-1471.93, -2703.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1473.49, -2714.1], [-1476.27, -2719.6], [-1470.19, -2722.66], [-1467.4, -2717.15], [-1473.49, -2714.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1434.69, -2630.4], [-1426.11, -2632.29], [-1428.18, -2641.66], [-1436.76, -2639.77], [-1434.69, -2630.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1501.47, -2503.79], [-1492.07, -2502.81], [-1491.3, -2510.25], [-1500.7, -2511.21], [-1501.47, -2503.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1437.95, -2572.31], [-1438.21, -2577.35], [-1430.9, -2577.73], [-1430.64, -2572.69], [-1437.95, -2572.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1420.87, -2583.04], [-1421.18, -2591.67], [-1429.59, -2591.37], [-1429.29, -2582.74], [-1420.87, -2583.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1465.28, -2677.24], [-1466.79, -2681.06], [-1460.18, -2683.66], [-1458.67, -2679.85], [-1465.28, -2677.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1505.49, -2567.19], [-1505.15, -2571.58], [-1497.84, -2571.02], [-1498.18, -2566.63], [-1505.49, -2567.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1472.23, -2694.68], [-1465.47, -2698.15], [-1462.4, -2692.19], [-1469.15, -2688.74], [-1472.23, -2694.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1432.08, -2579.18], [-1432.16, -2582.95], [-1439.7, -2582.79], [-1439.62, -2579.02], [-1432.08, -2579.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1449.53, -2665.66], [-1450.82, -2670.0], [-1456.94, -2668.19], [-1455.65, -2663.85], [-1449.53, -2665.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1437.52, -2557.43], [-1437.68, -2561.61], [-1430.85, -2561.87], [-1430.7, -2557.68], [-1437.52, -2557.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1426.89, -2518.11], [-1427.19, -2525.71], [-1417.36, -2526.09], [-1417.06, -2518.51], [-1426.89, -2518.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1462.45, -2526.9], [-1454.71, -2527.16], [-1455.07, -2537.66], [-1462.8, -2537.4], [-1462.45, -2526.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1456.42, -2648.69], [-1457.6, -2653.27], [-1451.36, -2654.86], [-1450.19, -2650.28], [-1456.42, -2648.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1525.23, -2503.16], [-1524.3, -2513.54], [-1512.57, -2512.48], [-1511.17, -2510.19], [-1505.69, -2509.7], [-1506.43, -2501.49], [-1525.23, -2503.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1435.68, -2563.89], [-1435.94, -2571.25], [-1428.08, -2571.52], [-1428.19, -2574.37], [-1420.21, -2574.66], [-1419.85, -2564.44], [-1435.68, -2563.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1499.68, -2620.93], [-1514.11, -2622.23], [-1513.57, -2628.19], [-1511.94, -2628.04], [-1511.05, -2637.83], [-1498.25, -2636.68], [-1499.68, -2620.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1496.17, -2694.82], [-1506.1, -2695.87], [-1505.4, -2702.44], [-1506.03, -2702.5], [-1505.43, -2708.06], [-1494.88, -2706.95], [-1496.17, -2694.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1450.33, -2686.16], [-1440.55, -2689.46], [-1436.43, -2677.26], [-1447.13, -2673.67], [-1448.8, -2678.63], [-1447.89, -2678.93], [-1450.33, -2686.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1444.45, -2503.45], [-1444.73, -2510.49], [-1429.48, -2511.08], [-1429.56, -2513.44], [-1417.24, -2513.91], [-1416.88, -2504.52], [-1444.45, -2503.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-1486.75, -2505.19], [-1487.17, -2514.35], [-1484.78, -2514.46], [-1484.92, -2517.61], [-1474.16, -2518.09], [-1473.59, -2505.77], [-1486.75, -2505.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1508.37, -2677.86], [-1495.98, -2676.77], [-1495.55, -2681.59], [-1499.35, -2681.93], [-1498.78, -2688.18], [-1507.37, -2688.94], [-1508.37, -2677.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1519.01, -2564.72], [-1519.69, -2557.45], [-1518.02, -2557.3], [-1518.31, -2554.17], [-1501.13, -2552.57], [-1500.16, -2562.97], [-1519.01, -2564.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-1515.25, -2605.45], [-1505.6, -2604.59], [-1504.35, -2618.46], [-1509.92, -2618.96], [-1510.25, -2615.24], [-1514.35, -2615.6], [-1515.25, -2605.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1457.25, -2698.66], [-1446.85, -2703.18], [-1443.43, -2695.38], [-1444.62, -2694.86], [-1443.71, -2692.77], [-1452.92, -2688.76], [-1457.25, -2698.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1518.77, -2534.39], [-1505.16, -2533.47], [-1504.18, -2547.88], [-1520.3, -2548.96], [-1520.75, -2542.48], [-1518.23, -2542.31], [-1518.77, -2534.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1481.16, -2768.06], [-1488.11, -2764.34], [-1478.24, -2746.05], [-1471.28, -2749.77], [-1476.83, -2760.05], [-1475.91, -2760.54], [-1478.23, -2764.85], [-1479.15, -2764.35], [-1481.16, -2768.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1517.34, -2571.35], [-1507.48, -2570.64], [-1507.34, -2572.59], [-1503.39, -2572.31], [-1503.03, -2577.33], [-1506.97, -2577.61], [-1506.62, -2582.4], [-1516.49, -2583.1], [-1517.34, -2571.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1433.71, -2464.17], [-1434.12, -2471.14], [-1424.41, -2471.71], [-1424.62, -2475.31], [-1417.55, -2475.73], [-1417.33, -2471.9], [-1416.34, -2471.96], [-1415.94, -2465.22], [-1433.71, -2464.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1504.77, -2714.83], [-1494.56, -2714.09], [-1494.39, -2716.39], [-1490.51, -2716.1], [-1490.06, -2722.43], [-1493.93, -2722.71], [-1493.68, -2726.16], [-1503.89, -2726.9], [-1504.77, -2714.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1502.95, -2740.81], [-1494.38, -2740.1], [-1494.16, -2742.62], [-1489.19, -2742.2], [-1490.88, -2748.2], [-1493.68, -2748.43], [-1493.2, -2754.18], [-1501.77, -2754.89], [-1502.95, -2740.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1458.36, -2705.0], [-1450.31, -2709.03], [-1451.4, -2711.19], [-1450.61, -2711.57], [-1452.35, -2715.02], [-1453.13, -2714.63], [-1454.42, -2717.19], [-1462.48, -2713.16], [-1458.36, -2705.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-821.02, -2771.88], [-810.81, -2772.27], [-811.1, -2780.07], [-809.87, -2780.11], [-809.97, -2782.72], [-811.2, -2782.68], [-811.33, -2785.96], [-813.97, -2785.86], [-814.12, -2789.89], [-821.69, -2789.61], [-821.02, -2771.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-764.74, -2546.55], [-764.98, -2554.71], [-757.77, -2554.92], [-758.06, -2565.2], [-753.15, -2565.34], [-752.67, -2548.47], [-755.45, -2548.39], [-755.38, -2545.67], [-762.53, -2545.47], [-762.56, -2546.61], [-764.74, -2546.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-808.38, -2540.16], [-808.78, -2549.38], [-806.27, -2549.49], [-806.5, -2555.02], [-799.34, -2555.32], [-799.05, -2548.49], [-798.41, -2548.52], [-798.15, -2542.54], [-804.21, -2542.28], [-804.12, -2540.33], [-808.38, -2540.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-866.07, -2655.68], [-866.54, -2664.81], [-861.96, -2665.04], [-862.08, -2667.41], [-857.1, -2667.66], [-856.52, -2656.18], [-859.8, -2656.01], [-859.75, -2655.06], [-862.31, -2654.93], [-862.36, -2655.88], [-866.07, -2655.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-666.24, -2486.61], [-666.57, -2494.68], [-657.84, -2495.03], [-657.89, -2496.31], [-652.85, -2496.52], [-652.82, -2496.03], [-651.12, -2496.1], [-650.95, -2492.08], [-652.66, -2492.01], [-652.47, -2487.17], [-666.24, -2486.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-897.43, -2655.07], [-897.82, -2666.11], [-895.46, -2666.2], [-895.51, -2667.75], [-892.78, -2667.84], [-892.72, -2666.29], [-889.57, -2666.4], [-889.09, -2652.87], [-894.34, -2652.69], [-894.43, -2655.17], [-897.43, -2655.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-788.03, -2703.71], [-779.06, -2704.07], [-779.37, -2711.87], [-781.16, -2711.81], [-781.29, -2715.18], [-779.87, -2715.24], [-779.97, -2717.96], [-781.39, -2717.9], [-781.46, -2719.55], [-788.63, -2719.28], [-788.03, -2703.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-803.87, -2726.02], [-798.92, -2726.23], [-799.16, -2731.94], [-794.91, -2732.1], [-795.24, -2740.1], [-798.19, -2739.98], [-798.23, -2740.97], [-800.79, -2740.86], [-800.76, -2739.87], [-804.42, -2739.72], [-803.87, -2726.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-884.08, -2724.11], [-884.31, -2730.65], [-886.32, -2730.57], [-886.63, -2739.46], [-880.83, -2739.65], [-880.76, -2737.49], [-880.3, -2737.51], [-880.14, -2732.96], [-874.94, -2733.14], [-874.64, -2724.44], [-884.08, -2724.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-700.95, -2511.39], [-701.16, -2518.78], [-692.91, -2519.02], [-692.82, -2515.84], [-691.56, -2515.88], [-691.5, -2513.7], [-692.75, -2513.67], [-692.68, -2511.02], [-696.94, -2510.9], [-696.95, -2511.5], [-700.95, -2511.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-820.45, -2731.17], [-821.0, -2742.12], [-815.61, -2742.38], [-815.55, -2741.25], [-812.26, -2741.41], [-812.19, -2740.03], [-810.67, -2740.11], [-810.25, -2731.69], [-814.02, -2731.5], [-813.97, -2730.57], [-816.32, -2730.45], [-816.37, -2731.38], [-820.45, -2731.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-893.13, -2613.06], [-893.49, -2620.5], [-890.48, -2620.65], [-890.55, -2622.0], [-888.53, -2622.09], [-888.46, -2620.75], [-884.0, -2620.97], [-883.64, -2613.53], [-885.87, -2613.43], [-885.8, -2612.05], [-888.69, -2611.9], [-888.76, -2613.29], [-893.13, -2613.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-853.25, -2770.34], [-853.75, -2782.55], [-849.88, -2782.71], [-849.98, -2785.02], [-845.4, -2785.2], [-845.3, -2782.89], [-844.63, -2782.92], [-844.14, -2770.71], [-845.17, -2770.67], [-845.08, -2768.49], [-852.35, -2768.2], [-852.43, -2770.37], [-853.25, -2770.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-977.82, -2679.35], [-971.43, -2679.62], [-971.58, -2683.06], [-969.55, -2683.15], [-969.66, -2685.7], [-971.69, -2685.62], [-971.77, -2687.5], [-978.15, -2687.23], [-978.04, -2684.46], [-980.0, -2684.39], [-979.88, -2681.77], [-977.92, -2681.85], [-977.82, -2679.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-907.93, -2609.05], [-908.46, -2620.16], [-907.35, -2620.22], [-907.46, -2622.47], [-901.9, -2622.74], [-901.79, -2620.44], [-900.54, -2620.5], [-900.01, -2609.42], [-903.61, -2609.25], [-903.51, -2606.98], [-906.72, -2606.83], [-906.84, -2609.11], [-907.93, -2609.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-838.24, -2770.15], [-838.62, -2779.13], [-836.96, -2779.2], [-837.05, -2781.37], [-831.71, -2781.59], [-831.61, -2779.42], [-830.71, -2779.46], [-830.33, -2770.47], [-830.87, -2770.46], [-830.8, -2768.68], [-835.22, -2768.49], [-835.29, -2770.26], [-838.24, -2770.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-700.62, -2483.81], [-695.66, -2483.99], [-695.67, -2484.44], [-691.59, -2484.58], [-691.69, -2487.61], [-690.56, -2487.64], [-690.63, -2489.77], [-691.77, -2489.73], [-691.88, -2492.96], [-695.79, -2492.83], [-695.84, -2494.27], [-701.44, -2494.08], [-701.14, -2485.43], [-700.68, -2485.44], [-700.62, -2483.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1011.6, -2480.63], [-1006.5, -2480.83], [-1006.71, -2486.06], [-1011.81, -2485.86], [-1011.6, -2480.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1048.98, -2441.99], [-1041.79, -2442.31], [-1042.1, -2449.11], [-1049.28, -2448.79], [-1048.98, -2441.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-882.69, -2766.8], [-883.38, -2777.82], [-873.67, -2778.42], [-872.98, -2767.41], [-882.69, -2766.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-882.59, -2819.77], [-883.42, -2828.52], [-873.5, -2829.46], [-872.67, -2820.71], [-882.59, -2819.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-667.55, -2425.4], [-659.22, -2425.73], [-659.68, -2437.75], [-668.02, -2437.42], [-667.55, -2425.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-923.66, -2608.63], [-923.96, -2619.18], [-917.24, -2619.37], [-916.94, -2608.82], [-923.66, -2608.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-778.01, -2659.23], [-778.3, -2666.97], [-771.1, -2667.23], [-770.82, -2659.5], [-778.01, -2659.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-780.38, -2615.59], [-780.67, -2625.87], [-775.05, -2626.03], [-774.75, -2615.75], [-780.38, -2615.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-677.52, -2575.5], [-679.6, -2580.63], [-689.33, -2576.71], [-687.25, -2571.57], [-677.52, -2575.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-833.69, -2717.83], [-834.07, -2725.76], [-825.55, -2726.17], [-825.17, -2718.23], [-833.69, -2717.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-980.88, -2529.77], [-972.9, -2530.18], [-973.47, -2541.12], [-981.45, -2540.7], [-980.88, -2529.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-739.96, -2543.73], [-740.33, -2551.17], [-731.65, -2551.59], [-731.28, -2544.16], [-739.96, -2543.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1094.06, -2439.4], [-1094.19, -2445.78], [-1101.46, -2445.63], [-1101.32, -2439.25], [-1094.06, -2439.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-962.42, -2561.17], [-955.99, -2561.4], [-956.25, -2568.64], [-962.68, -2568.41], [-962.42, -2561.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-829.12, -2599.66], [-821.95, -2599.82], [-822.12, -2607.54], [-829.28, -2607.39], [-829.12, -2599.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-921.38, -2531.05], [-921.92, -2541.55], [-913.56, -2541.98], [-913.02, -2531.49], [-921.38, -2531.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-993.37, -2483.94], [-994.08, -2497.87], [-984.8, -2498.35], [-984.1, -2484.42], [-993.37, -2483.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-792.08, -2657.96], [-792.45, -2665.98], [-783.23, -2666.4], [-782.86, -2658.39], [-792.08, -2657.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1051.97, -2535.36], [-1045.31, -2535.62], [-1044.92, -2525.62], [-1051.58, -2525.35], [-1051.97, -2535.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-812.99, -2709.05], [-807.89, -2709.2], [-808.1, -2716.39], [-813.21, -2716.24], [-812.99, -2709.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-645.39, -2562.36], [-640.06, -2563.99], [-642.22, -2571.07], [-647.56, -2569.44], [-645.39, -2562.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1004.29, -2544.64], [-999.9, -2544.84], [-1000.37, -2555.18], [-1004.78, -2554.97], [-1004.29, -2544.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-628.37, -2433.13], [-628.69, -2444.12], [-620.55, -2444.36], [-620.24, -2433.36], [-628.37, -2433.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1017.01, -2432.28], [-1017.24, -2438.71], [-1010.36, -2438.96], [-1010.13, -2432.54], [-1017.01, -2432.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-898.95, -2725.34], [-899.45, -2737.12], [-889.24, -2737.54], [-888.74, -2725.77], [-898.95, -2725.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1054.4, -2537.96], [-1062.21, -2537.57], [-1061.56, -2524.52], [-1053.75, -2524.91], [-1054.4, -2537.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-963.74, -2594.02], [-963.94, -2598.31], [-957.49, -2598.59], [-957.29, -2594.32], [-963.74, -2594.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-803.93, -2707.99], [-797.16, -2708.31], [-797.51, -2715.77], [-804.28, -2715.44], [-803.93, -2707.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-792.93, -2683.85], [-787.81, -2684.1], [-788.12, -2690.78], [-793.24, -2690.54], [-792.93, -2683.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-968.0, -2546.08], [-961.52, -2546.4], [-962.06, -2557.6], [-968.54, -2557.3], [-968.0, -2546.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-917.05, -2726.06], [-908.43, -2726.46], [-908.86, -2735.65], [-917.49, -2735.25], [-917.05, -2726.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-993.58, -2528.81], [-983.59, -2529.26], [-984.18, -2542.26], [-994.17, -2541.8], [-993.58, -2528.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-955.77, -2705.41], [-955.66, -2710.89], [-948.02, -2710.73], [-948.13, -2705.26], [-955.77, -2705.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1106.93, -2438.81], [-1102.23, -2438.91], [-1102.35, -2445.05], [-1107.06, -2444.96], [-1106.93, -2438.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-853.91, -2790.12], [-845.17, -2790.57], [-845.99, -2806.34], [-854.72, -2805.89], [-853.91, -2790.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-870.01, -2588.48], [-870.2, -2594.32], [-856.71, -2594.76], [-856.52, -2588.91], [-870.01, -2588.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-682.15, -2598.03], [-677.85, -2599.82], [-680.2, -2605.41], [-684.5, -2603.62], [-682.15, -2598.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-995.87, -2442.47], [-1003.49, -2442.11], [-1003.9, -2450.43], [-996.27, -2450.79], [-995.87, -2442.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-648.66, -2477.7], [-641.26, -2478.14], [-641.67, -2484.89], [-649.07, -2484.43], [-648.66, -2477.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-718.34, -2542.48], [-718.72, -2550.93], [-709.0, -2551.36], [-708.62, -2542.92], [-718.34, -2542.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1042.7, -2535.28], [-1034.75, -2535.61], [-1034.44, -2528.11], [-1042.39, -2527.77], [-1042.7, -2535.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-981.22, -2649.64], [-974.74, -2649.78], [-974.95, -2659.83], [-981.44, -2659.69], [-981.22, -2649.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-767.56, -2612.69], [-759.09, -2612.89], [-759.29, -2621.65], [-767.76, -2621.45], [-767.56, -2612.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-960.24, -2706.08], [-965.31, -2699.7], [-957.44, -2693.5], [-952.37, -2699.87], [-960.24, -2706.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-826.38, -2704.8], [-820.97, -2704.98], [-821.28, -2713.8], [-826.68, -2713.61], [-826.38, -2704.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-766.43, -2668.87], [-761.11, -2669.07], [-761.36, -2675.76], [-766.68, -2675.57], [-766.43, -2668.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-949.14, -2536.55], [-949.86, -2549.89], [-941.02, -2550.37], [-940.3, -2537.02], [-949.14, -2536.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-669.15, -2586.79], [-663.15, -2589.06], [-665.28, -2594.66], [-671.28, -2592.4], [-669.15, -2586.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-732.58, -2578.07], [-729.31, -2571.12], [-718.25, -2576.28], [-721.52, -2583.24], [-732.58, -2578.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-691.43, -2470.29], [-699.4, -2469.9], [-699.82, -2478.72], [-691.85, -2479.1], [-691.43, -2470.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-726.1, -2546.18], [-722.56, -2546.37], [-722.9, -2552.79], [-726.44, -2552.6], [-726.1, -2546.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-882.89, -2486.1], [-877.43, -2486.38], [-877.8, -2493.77], [-883.26, -2493.5], [-882.89, -2486.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-976.86, -2468.43], [-977.12, -2474.59], [-970.73, -2474.86], [-970.47, -2468.7], [-976.86, -2468.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-766.54, -2658.55], [-767.01, -2666.48], [-757.64, -2667.02], [-757.17, -2659.1], [-766.54, -2658.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-901.0, -2797.45], [-901.39, -2805.19], [-893.29, -2805.6], [-892.9, -2797.85], [-901.0, -2797.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1126.04, -2317.37], [-1120.68, -2317.52], [-1120.86, -2323.83], [-1126.22, -2323.68], [-1126.04, -2317.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-805.03, -2614.1], [-805.58, -2626.52], [-812.41, -2626.21], [-811.86, -2613.79], [-805.03, -2614.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-944.71, -2700.29], [-944.85, -2706.53], [-938.96, -2706.66], [-938.81, -2700.43], [-944.71, -2700.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-782.41, -2692.66], [-775.83, -2692.9], [-775.62, -2686.97], [-782.19, -2686.73], [-782.41, -2692.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-886.48, -2802.16], [-891.69, -2801.91], [-891.39, -2795.62], [-886.17, -2795.86], [-886.48, -2802.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-978.47, -2557.07], [-973.45, -2557.31], [-973.77, -2563.78], [-978.79, -2563.54], [-978.47, -2557.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-695.12, -2584.91], [-698.25, -2592.31], [-685.17, -2597.81], [-682.05, -2590.41], [-695.12, -2584.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-870.66, -2726.41], [-861.72, -2726.84], [-862.39, -2740.7], [-871.33, -2740.28], [-870.66, -2726.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1004.72, -2601.41], [-1011.75, -2601.23], [-1012.1, -2615.0], [-1005.06, -2615.17], [-1004.72, -2601.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1157.0, -2292.14], [-1150.83, -2292.37], [-1151.13, -2300.38], [-1157.31, -2300.14], [-1157.0, -2292.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-833.95, -2730.83], [-834.39, -2739.33], [-825.06, -2739.81], [-824.61, -2731.32], [-833.95, -2730.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1135.96, -2361.67], [-1124.17, -2362.26], [-1124.86, -2376.06], [-1136.64, -2375.48], [-1135.96, -2361.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-887.63, -2667.4], [-884.18, -2667.53], [-884.35, -2672.58], [-887.8, -2672.47], [-887.63, -2667.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-964.4, -2643.95], [-971.71, -2643.8], [-971.98, -2656.92], [-964.66, -2657.07], [-964.4, -2643.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-918.55, -2489.12], [-925.41, -2488.78], [-925.03, -2481.11], [-918.17, -2481.45], [-918.55, -2489.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-940.42, -2429.49], [-945.14, -2429.28], [-945.38, -2434.66], [-940.66, -2434.87], [-940.42, -2429.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1120.37, -2358.32], [-1108.3, -2358.88], [-1109.14, -2376.72], [-1121.22, -2376.16], [-1120.37, -2358.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-1017.64, -2462.22], [-1017.94, -2468.28], [-1025.8, -2467.9], [-1025.5, -2461.83], [-1017.64, -2462.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-803.37, -2685.64], [-808.03, -2685.41], [-808.3, -2691.06], [-803.63, -2691.28], [-803.37, -2685.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1004.93, -2641.26], [-1005.31, -2648.76], [-992.7, -2649.39], [-992.32, -2641.9], [-1004.93, -2641.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1053.56, -2484.56], [-1062.19, -2484.18], [-1062.62, -2493.87], [-1054.0, -2494.26], [-1053.56, -2484.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-740.28, -2580.03], [-738.56, -2576.37], [-732.73, -2579.09], [-734.46, -2582.76], [-740.28, -2580.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1066.15, -2442.21], [-1060.29, -2442.51], [-1060.65, -2449.52], [-1066.52, -2449.22], [-1066.15, -2442.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-868.11, -2600.56], [-859.33, -2600.88], [-859.61, -2608.76], [-868.4, -2608.46], [-868.11, -2600.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-867.56, -2667.68], [-860.61, -2668.0], [-860.94, -2675.23], [-867.89, -2674.91], [-867.56, -2667.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-870.31, -2820.56], [-865.78, -2820.95], [-866.26, -2826.5], [-870.8, -2826.1], [-870.31, -2820.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-932.88, -2650.34], [-939.97, -2650.06], [-940.42, -2661.54], [-933.33, -2661.82], [-932.88, -2650.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-902.87, -2651.97], [-909.65, -2651.65], [-910.21, -2663.73], [-903.42, -2664.04], [-902.87, -2651.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-961.25, -2483.92], [-957.67, -2484.06], [-957.87, -2489.39], [-961.46, -2489.25], [-961.25, -2483.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1160.82, -2291.21], [-1166.36, -2290.99], [-1166.72, -2300.01], [-1161.19, -2300.24], [-1160.82, -2291.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-660.74, -2514.79], [-669.21, -2514.29], [-669.72, -2522.88], [-661.24, -2523.38], [-660.74, -2514.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-957.94, -2649.64], [-958.23, -2659.76], [-948.46, -2660.03], [-948.17, -2649.92], [-957.94, -2649.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-644.86, -2430.2], [-650.53, -2429.94], [-651.06, -2441.36], [-645.41, -2441.63], [-644.86, -2430.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-665.75, -2498.34], [-666.37, -2509.94], [-650.43, -2510.77], [-649.82, -2499.17], [-665.75, -2498.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-641.78, -2456.98], [-648.24, -2456.63], [-648.61, -2463.26], [-642.15, -2463.61], [-641.78, -2456.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-892.28, -2679.86], [-885.45, -2680.14], [-885.74, -2687.26], [-892.57, -2686.99], [-892.28, -2679.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-775.97, -2568.5], [-781.02, -2568.32], [-781.29, -2575.94], [-776.25, -2576.12], [-775.97, -2568.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-890.81, -2779.43], [-886.15, -2779.77], [-886.6, -2785.64], [-891.26, -2785.29], [-890.81, -2779.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-646.07, -2538.33], [-648.84, -2544.28], [-642.04, -2547.41], [-639.28, -2541.46], [-646.07, -2538.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-944.94, -2677.22], [-937.76, -2677.37], [-937.93, -2685.36], [-945.1, -2685.22], [-944.94, -2677.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1081.08, -2486.84], [-1081.44, -2495.72], [-1088.91, -2495.42], [-1088.55, -2486.54], [-1081.08, -2486.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-878.96, -2701.06], [-885.08, -2700.85], [-885.37, -2709.07], [-879.25, -2709.28], [-878.96, -2701.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-896.23, -2768.1], [-896.59, -2776.22], [-889.71, -2776.51], [-889.35, -2768.41], [-896.23, -2768.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-994.56, -2446.13], [-989.37, -2446.4], [-989.7, -2452.76], [-994.89, -2452.49], [-994.56, -2446.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-671.06, -2527.49], [-674.39, -2535.02], [-659.24, -2541.7], [-655.89, -2534.17], [-671.06, -2527.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-904.01, -2670.09], [-900.47, -2670.23], [-900.68, -2675.95], [-904.23, -2675.82], [-904.01, -2670.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-901.3, -2601.15], [-897.07, -2601.34], [-897.36, -2607.49], [-901.59, -2607.29], [-901.3, -2601.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-936.98, -2606.97], [-928.28, -2607.35], [-928.95, -2622.13], [-937.63, -2621.74], [-936.98, -2606.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-665.56, -2474.11], [-665.86, -2481.27], [-656.56, -2481.66], [-656.45, -2478.97], [-654.28, -2479.06], [-654.1, -2474.6], [-665.56, -2474.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-742.64, -2626.52], [-745.22, -2626.45], [-745.25, -2627.91], [-748.13, -2627.84], [-747.84, -2616.8], [-742.39, -2616.94], [-742.64, -2626.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-777.73, -2543.73], [-778.14, -2554.06], [-771.16, -2554.34], [-771.1, -2552.87], [-768.8, -2552.96], [-768.45, -2544.1], [-777.73, -2543.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-674.5, -2544.55], [-677.45, -2551.7], [-669.82, -2554.82], [-668.7, -2552.13], [-666.89, -2552.87], [-665.05, -2548.41], [-674.5, -2544.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1010.88, -2528.09], [-1011.32, -2537.94], [-1000.4, -2538.41], [-999.91, -2527.1], [-1006.08, -2526.84], [-1006.14, -2528.3], [-1010.88, -2528.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-640.22, -2431.13], [-640.75, -2445.99], [-636.36, -2446.15], [-636.27, -2443.8], [-633.63, -2443.89], [-633.17, -2431.38], [-640.22, -2431.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1027.32, -2531.49], [-1027.5, -2536.56], [-1018.98, -2536.86], [-1018.67, -2527.89], [-1025.12, -2527.66], [-1025.25, -2531.56], [-1027.32, -2531.49]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-730.19, -2563.33], [-728.06, -2558.36], [-725.09, -2559.63], [-724.15, -2557.43], [-714.26, -2561.65], [-717.34, -2568.82], [-730.19, -2563.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-796.8, -2614.69], [-797.17, -2627.44], [-787.29, -2627.73], [-786.83, -2612.09], [-792.02, -2611.94], [-792.11, -2614.82], [-796.8, -2614.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-920.21, -2767.53], [-920.43, -2775.09], [-917.64, -2775.17], [-917.75, -2778.93], [-911.9, -2779.09], [-911.58, -2767.78], [-920.21, -2767.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-829.38, -2654.77], [-822.81, -2655.05], [-823.27, -2666.02], [-824.55, -2665.97], [-824.78, -2671.48], [-830.07, -2671.26], [-829.38, -2654.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-983.57, -2601.25], [-975.66, -2601.58], [-976.26, -2615.88], [-980.1, -2615.73], [-980.21, -2618.33], [-984.28, -2618.15], [-983.57, -2601.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-999.8, -2598.42], [-990.23, -2598.68], [-990.54, -2610.47], [-992.84, -2610.42], [-992.96, -2615.29], [-1000.24, -2615.11], [-999.8, -2598.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-923.76, -2648.87], [-918.52, -2649.13], [-918.84, -2655.72], [-916.0, -2655.86], [-916.34, -2662.91], [-924.43, -2662.52], [-923.76, -2648.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1101.81, -2296.91], [-1094.49, -2297.21], [-1095.08, -2311.59], [-1101.81, -2311.32], [-1101.63, -2306.78], [-1102.21, -2306.76], [-1101.81, -2296.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-700.73, -2495.36], [-690.77, -2495.77], [-691.17, -2505.24], [-694.85, -2505.08], [-694.79, -2503.73], [-701.07, -2503.46], [-700.73, -2495.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-906.42, -2535.47], [-907.16, -2552.68], [-895.4, -2553.18], [-894.71, -2536.87], [-900.45, -2536.62], [-900.41, -2535.73], [-906.42, -2535.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-867.05, -2770.02], [-867.43, -2779.11], [-859.34, -2779.44], [-858.93, -2769.52], [-861.83, -2769.4], [-861.86, -2770.25], [-867.05, -2770.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-739.63, -2587.73], [-742.31, -2593.6], [-737.68, -2595.7], [-739.63, -2599.98], [-733.09, -2602.93], [-728.46, -2592.78], [-739.63, -2587.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-953.55, -2606.93], [-945.45, -2607.24], [-945.95, -2620.6], [-952.89, -2620.35], [-952.8, -2617.85], [-953.95, -2617.82], [-953.55, -2606.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-902.82, -2814.12], [-903.18, -2821.68], [-891.19, -2822.23], [-890.85, -2814.67], [-902.82, -2814.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-825.63, -2537.48], [-817.36, -2537.74], [-817.78, -2550.56], [-822.44, -2550.42], [-822.35, -2547.99], [-825.97, -2547.87], [-825.63, -2537.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1075.06, -2545.86], [-1066.29, -2546.18], [-1065.54, -2525.75], [-1074.18, -2525.44], [-1074.5, -2534.28], [-1077.07, -2534.19], [-1077.35, -2541.72], [-1075.06, -2545.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-967.63, -2616.75], [-967.19, -2602.98], [-959.93, -2603.21], [-960.37, -2616.98], [-962.75, -2616.9], [-962.82, -2619.17], [-965.88, -2619.07], [-965.81, -2616.8], [-967.63, -2616.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-939.78, -2715.67], [-931.97, -2715.91], [-932.51, -2732.81], [-932.94, -2732.8], [-933.0, -2734.83], [-939.88, -2734.62], [-939.82, -2732.66], [-940.32, -2732.64], [-939.78, -2715.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1115.94, -2299.13], [-1116.29, -2308.33], [-1106.36, -2308.7], [-1106.06, -2300.89], [-1105.2, -2300.92], [-1105.06, -2297.48], [-1113.47, -2297.18], [-1113.54, -2299.22], [-1115.94, -2299.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-936.49, -2535.6], [-936.92, -2544.04], [-926.93, -2544.53], [-926.5, -2536.11], [-930.06, -2535.93], [-929.94, -2533.59], [-932.94, -2533.44], [-933.05, -2535.78], [-936.49, -2535.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-730.29, -2553.52], [-730.38, -2554.16], [-733.14, -2553.77], [-733.86, -2559.03], [-730.46, -2559.51], [-730.17, -2557.44], [-724.83, -2558.17], [-724.31, -2554.35], [-730.29, -2553.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1101.85, -2364.24], [-1093.66, -2364.66], [-1094.26, -2376.08], [-1095.57, -2376.01], [-1095.69, -2378.33], [-1101.42, -2378.03], [-1101.3, -2375.71], [-1102.46, -2375.66], [-1101.85, -2364.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-681.35, -2557.15], [-681.78, -2558.15], [-683.87, -2557.27], [-685.93, -2562.11], [-683.82, -2562.99], [-684.29, -2564.09], [-672.74, -2568.93], [-669.81, -2562.0], [-681.35, -2557.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1140.45, -2356.51], [-1146.16, -2356.31], [-1146.44, -2363.91], [-1150.39, -2363.75], [-1150.84, -2376.06], [-1142.64, -2376.36], [-1142.2, -2364.44], [-1140.74, -2364.5], [-1140.45, -2356.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1130.34, -2297.48], [-1126.48, -2297.63], [-1126.4, -2295.55], [-1122.41, -2295.71], [-1122.49, -2297.78], [-1121.63, -2297.82], [-1122.06, -2309.08], [-1130.78, -2308.74], [-1130.34, -2297.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1143.81, -2296.6], [-1135.62, -2296.89], [-1135.93, -2305.54], [-1144.11, -2305.25], [-1144.02, -2302.75], [-1147.65, -2302.62], [-1147.46, -2297.07], [-1143.83, -2297.2], [-1143.81, -2296.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-818.08, -2656.24], [-818.51, -2667.88], [-810.06, -2668.19], [-809.63, -2656.55], [-812.57, -2656.44], [-812.53, -2655.48], [-814.61, -2655.39], [-814.64, -2656.36], [-818.08, -2656.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-794.79, -2544.2], [-795.16, -2555.52], [-785.76, -2555.83], [-785.4, -2544.51], [-788.39, -2544.41], [-788.36, -2543.16], [-791.57, -2543.06], [-791.62, -2544.3], [-794.79, -2544.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-709.22, -2503.34], [-703.24, -2503.54], [-703.43, -2509.19], [-709.4, -2509.0], [-709.37, -2508.29], [-711.6, -2508.22], [-711.46, -2504.03], [-709.24, -2504.1], [-709.22, -2503.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-906.59, -2767.72], [-906.93, -2778.79], [-898.2, -2779.07], [-897.85, -2767.99], [-899.29, -2767.95], [-899.23, -2766.06], [-901.91, -2765.97], [-901.96, -2767.86], [-906.59, -2767.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-863.61, -2610.99], [-864.03, -2621.33], [-863.42, -2621.36], [-863.5, -2623.2], [-856.52, -2623.49], [-856.44, -2621.64], [-855.62, -2621.67], [-855.21, -2611.33], [-863.61, -2610.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-804.89, -2656.73], [-805.2, -2664.04], [-804.23, -2664.08], [-804.36, -2667.16], [-799.76, -2667.35], [-799.64, -2664.28], [-796.96, -2664.39], [-796.65, -2657.06], [-804.89, -2656.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1120.69, -2079.63], [-1120.78, -2081.5], [-1122.0, -2081.44], [-1122.47, -2091.61], [-1112.56, -2092.07], [-1112.33, -2087.11], [-1111.33, -2087.16], [-1110.97, -2079.18], [-1117.3, -2078.89], [-1117.34, -2079.8], [-1120.69, -2079.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1134.56, -2081.57], [-1134.71, -2085.4], [-1138.09, -2085.27], [-1138.4, -2093.27], [-1135.02, -2093.4], [-1135.05, -2094.18], [-1131.42, -2094.32], [-1131.49, -2096.31], [-1125.77, -2096.53], [-1125.22, -2081.93], [-1134.56, -2081.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1275.23, -2120.73], [-1265.5, -2121.01], [-1265.61, -2124.54], [-1264.85, -2124.56], [-1265.06, -2131.96], [-1265.49, -2131.95], [-1265.69, -2138.98], [-1269.52, -2138.87], [-1269.34, -2132.55], [-1275.56, -2132.37], [-1275.23, -2120.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1102.42, -2103.74], [-1102.63, -2108.52], [-1098.27, -2108.72], [-1098.5, -2113.94], [-1085.75, -2114.5], [-1085.55, -2109.98], [-1087.7, -2109.88], [-1087.39, -2102.87], [-1092.39, -2102.65], [-1092.46, -2104.18], [-1102.42, -2103.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1245.96, -2125.19], [-1246.41, -2136.26], [-1244.19, -2136.35], [-1244.25, -2137.77], [-1239.66, -2137.95], [-1239.61, -2136.53], [-1237.41, -2136.62], [-1237.1, -2129.06], [-1239.01, -2128.98], [-1238.87, -2125.48], [-1245.96, -2125.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1109.62, -2136.81], [-1110.06, -2146.6], [-1103.44, -2146.9], [-1103.36, -2145.16], [-1100.05, -2145.31], [-1099.69, -2137.26], [-1102.04, -2137.15], [-1101.92, -2134.41], [-1108.24, -2134.13], [-1108.37, -2136.87], [-1109.62, -2136.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1125.59, -2136.58], [-1126.02, -2145.71], [-1114.4, -2146.26], [-1113.97, -2137.12], [-1115.15, -2137.07], [-1115.03, -2134.32], [-1118.74, -2134.15], [-1118.68, -2132.87], [-1124.03, -2132.63], [-1124.21, -2136.65], [-1125.59, -2136.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1266.38, -2086.73], [-1262.25, -2090.89], [-1260.18, -2088.85], [-1258.75, -2090.28], [-1260.89, -2092.4], [-1256.47, -2096.86], [-1250.5, -2090.97], [-1254.43, -2087.03], [-1252.07, -2084.7], [-1252.64, -2084.13], [-1250.99, -2082.5], [-1256.49, -2076.98], [-1266.38, -2086.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1216.0, -2130.69], [-1216.2, -2136.2], [-1213.58, -2136.31], [-1213.68, -2139.0], [-1208.37, -2139.2], [-1208.48, -2142.12], [-1204.75, -2142.26], [-1204.31, -2131.15], [-1205.51, -2131.1], [-1205.31, -2125.74], [-1209.57, -2125.58], [-1209.78, -2130.94], [-1216.0, -2130.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1167.9, -2083.9], [-1168.38, -2093.84], [-1165.65, -2093.97], [-1165.86, -2098.46], [-1159.91, -2098.74], [-1159.7, -2094.26], [-1158.57, -2094.31], [-1158.4, -2090.74], [-1157.01, -2090.8], [-1156.79, -2086.05], [-1161.76, -2085.81], [-1161.68, -2084.2], [-1167.9, -2083.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1230.16, -2093.98], [-1226.4, -2094.07], [-1226.59, -2101.47], [-1230.34, -2101.37], [-1230.16, -2093.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1276.6, -2105.88], [-1276.89, -2113.98], [-1269.14, -2114.26], [-1268.85, -2106.15], [-1276.6, -2105.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1199.64, -2100.87], [-1195.72, -2100.99], [-1195.93, -2108.49], [-1199.87, -2108.38], [-1199.64, -2100.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1299.82, -2073.02], [-1306.32, -2076.64], [-1302.01, -2084.34], [-1295.51, -2080.72], [-1299.82, -2073.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1195.25, -2085.38], [-1195.49, -2093.98], [-1187.02, -2094.22], [-1186.78, -2085.63], [-1195.25, -2085.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1246.63, -2093.5], [-1242.04, -2093.59], [-1242.2, -2100.89], [-1246.78, -2100.79], [-1246.63, -2093.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1293.37, -2080.51], [-1291.18, -2084.19], [-1285.12, -2080.6], [-1287.31, -2076.93], [-1293.37, -2080.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1209.51, -2085.31], [-1209.8, -2093.93], [-1202.09, -2094.19], [-1201.81, -2085.56], [-1209.51, -2085.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1237.56, -2120.27], [-1232.32, -2120.48], [-1232.55, -2126.19], [-1237.78, -2125.99], [-1237.56, -2120.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1188.39, -2129.5], [-1197.96, -2129.03], [-1198.61, -2142.08], [-1189.03, -2142.55], [-1188.39, -2129.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1211.07, -2101.7], [-1215.21, -2101.58], [-1215.45, -2109.69], [-1211.3, -2109.81], [-1211.07, -2101.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1100.83, -2093.0], [-1101.1, -2100.43], [-1093.72, -2100.69], [-1093.46, -2093.27], [-1100.83, -2093.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1230.45, -2123.91], [-1226.89, -2124.09], [-1227.14, -2129.42], [-1230.71, -2129.24], [-1230.45, -2123.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1282.57, -2092.86], [-1280.27, -2096.96], [-1275.71, -2094.42], [-1278.02, -2090.32], [-1282.57, -2092.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1117.66, -2121.5], [-1117.96, -2128.14], [-1111.13, -2128.44], [-1110.83, -2121.81], [-1117.66, -2121.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1163.23, -2104.82], [-1156.09, -2105.12], [-1156.41, -2112.62], [-1163.55, -2112.32], [-1163.23, -2104.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1109.1, -2093.86], [-1113.39, -2093.67], [-1113.68, -2099.81], [-1109.39, -2100.01], [-1109.1, -2093.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1154.21, -2100.8], [-1150.22, -2100.93], [-1150.47, -2108.34], [-1154.46, -2108.2], [-1154.21, -2100.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1106.07, -2075.7], [-1096.96, -2076.04], [-1097.45, -2089.0], [-1106.56, -2088.66], [-1106.07, -2075.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1262.28, -2118.87], [-1257.64, -2119.0], [-1257.85, -2126.29], [-1262.49, -2126.15], [-1262.28, -2118.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1091.98, -2117.35], [-1092.35, -2124.11], [-1085.8, -2124.47], [-1085.44, -2117.72], [-1091.98, -2117.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1107.88, -2111.45], [-1108.07, -2115.63], [-1101.3, -2115.94], [-1101.11, -2111.77], [-1107.88, -2111.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1185.51, -2102.01], [-1185.7, -2107.79], [-1179.58, -2107.98], [-1179.4, -2102.22], [-1185.51, -2102.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1185.72, -2112.64], [-1185.96, -2117.91], [-1179.85, -2118.2], [-1179.61, -2112.93], [-1185.72, -2112.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1168.72, -2123.91], [-1158.56, -2124.42], [-1159.56, -2144.11], [-1169.72, -2143.6], [-1168.72, -2123.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-1279.06, -2074.99], [-1273.76, -2084.67], [-1260.32, -2077.39], [-1266.13, -2066.76], [-1277.41, -2072.89], [-1276.91, -2073.81], [-1279.06, -2074.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1242.5, -2084.8], [-1242.72, -2092.36], [-1231.91, -2092.67], [-1231.63, -2083.2], [-1238.57, -2083.0], [-1238.63, -2084.91], [-1242.5, -2084.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1259.69, -2127.34], [-1260.2, -2136.77], [-1250.76, -2137.27], [-1250.07, -2124.33], [-1254.97, -2124.07], [-1255.15, -2127.59], [-1259.69, -2127.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1093.72, -2135.04], [-1094.31, -2146.04], [-1089.38, -2146.3], [-1089.23, -2143.6], [-1083.68, -2143.89], [-1083.24, -2135.6], [-1093.72, -2135.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1152.44, -2134.34], [-1152.82, -2144.08], [-1144.19, -2144.43], [-1143.65, -2130.55], [-1148.18, -2130.38], [-1148.34, -2134.51], [-1152.44, -2134.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1289.47, -2074.2], [-1294.08, -2065.83], [-1282.14, -2059.31], [-1282.88, -2057.96], [-1278.22, -2055.41], [-1272.87, -2065.14], [-1289.47, -2074.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1227.15, -2083.12], [-1227.37, -2091.0], [-1218.31, -2091.26], [-1218.11, -2084.41], [-1221.28, -2084.32], [-1221.25, -2083.28], [-1227.15, -2083.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1140.08, -2134.17], [-1140.53, -2143.68], [-1132.51, -2144.05], [-1132.39, -2141.62], [-1129.05, -2141.77], [-1128.72, -2134.71], [-1140.08, -2134.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1184.54, -2122.69], [-1185.66, -2142.96], [-1175.57, -2143.53], [-1174.44, -2123.26], [-1176.18, -2123.16], [-1175.98, -2119.62], [-1182.48, -2119.26], [-1182.68, -2122.8], [-1184.54, -2122.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-1287.44, -2044.55], [-1283.81, -2051.25], [-1280.77, -2049.62], [-1279.12, -2052.65], [-1284.98, -2055.8], [-1286.09, -2053.74], [-1294.88, -2058.46], [-1299.04, -2050.77], [-1287.44, -2044.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1227.01, -2131.64], [-1227.3, -2139.73], [-1224.62, -2139.83], [-1224.6, -2139.0], [-1220.12, -2139.16], [-1219.7, -2127.73], [-1226.0, -2127.51], [-1226.15, -2131.67], [-1227.01, -2131.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1151.92, -2082.32], [-1152.24, -2090.3], [-1142.36, -2090.68], [-1142.25, -2087.76], [-1140.24, -2087.84], [-1140.11, -2084.58], [-1142.11, -2084.5], [-1142.05, -2082.71], [-1151.92, -2082.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1090.9, -2076.3], [-1091.35, -2089.77], [-1085.41, -2089.98], [-1085.24, -2084.74], [-1080.58, -2084.89], [-1080.25, -2074.93], [-1085.11, -2074.77], [-1085.17, -2076.49], [-1090.9, -2076.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1307.58, -2095.84], [-1297.48, -2090.12], [-1285.77, -2110.63], [-1286.67, -2111.13], [-1283.53, -2116.66], [-1291.67, -2121.27], [-1292.47, -2119.87], [-1293.53, -2120.48], [-1307.58, -2095.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[-1181.57, -2085.7], [-1181.75, -2093.72], [-1171.37, -2093.93], [-1171.2, -2085.93], [-1173.83, -2085.87], [-1173.79, -2083.68], [-1178.59, -2083.58], [-1178.64, -2085.77], [-1181.57, -2085.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-836.87, -2100.13], [-837.22, -2107.14], [-834.9, -2107.26], [-835.25, -2114.16], [-833.28, -2114.26], [-833.39, -2116.47], [-829.65, -2116.65], [-829.53, -2114.44], [-827.11, -2114.57], [-826.42, -2100.65], [-836.87, -2100.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-700.88, -2106.32], [-701.37, -2118.31], [-699.25, -2118.39], [-699.35, -2120.78], [-701.08, -2120.7], [-701.38, -2127.79], [-694.8, -2128.06], [-694.4, -2118.59], [-692.21, -2118.69], [-691.7, -2106.7], [-700.88, -2106.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-982.52, -2137.32], [-983.11, -2151.75], [-973.97, -2152.12], [-973.31, -2136.05], [-976.55, -2135.92], [-976.62, -2137.55], [-978.09, -2137.49], [-978.04, -2136.12], [-981.43, -2135.99], [-981.49, -2137.36], [-982.52, -2137.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-684.75, -2105.33], [-685.02, -2112.79], [-684.7, -2112.81], [-684.98, -2120.56], [-683.17, -2120.63], [-683.29, -2124.0], [-679.85, -2124.12], [-679.73, -2120.75], [-676.55, -2120.86], [-676.01, -2105.64], [-684.75, -2105.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-809.18, -2159.3], [-801.39, -2159.62], [-801.1, -2152.62], [-799.51, -2152.69], [-799.32, -2148.28], [-800.92, -2148.21], [-800.7, -2142.98], [-809.64, -2142.61], [-810.06, -2152.45], [-808.9, -2152.51], [-809.18, -2159.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1027.83, -2140.58], [-1028.63, -2148.72], [-1026.68, -2148.91], [-1026.76, -2149.78], [-1019.88, -2150.46], [-1018.7, -2138.45], [-1020.54, -2138.27], [-1022.96, -2138.03], [-1023.05, -2139.02], [-1023.26, -2141.03], [-1027.83, -2140.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1043.56, -2139.4], [-1043.94, -2148.28], [-1042.94, -2148.32], [-1042.99, -2149.53], [-1034.49, -2149.88], [-1034.07, -2139.79], [-1035.01, -2139.75], [-1034.91, -2137.3], [-1040.41, -2137.07], [-1040.51, -2139.53], [-1043.56, -2139.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-821.56, -2100.9], [-821.97, -2109.08], [-819.26, -2109.22], [-819.5, -2113.8], [-818.54, -2113.85], [-818.61, -2115.12], [-816.31, -2115.24], [-816.24, -2113.96], [-811.76, -2114.19], [-811.11, -2101.43], [-821.56, -2100.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1053.83, -2115.94], [-1053.47, -2108.32], [-1047.01, -2108.61], [-1046.73, -2102.64], [-1036.01, -2103.14], [-1036.56, -2114.78], [-1038.4, -2114.69], [-1038.46, -2116.03], [-1041.46, -2115.9], [-1041.49, -2116.52], [-1053.83, -2115.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-715.91, -2104.62], [-716.5, -2117.23], [-711.46, -2117.46], [-711.63, -2120.94], [-707.17, -2121.14], [-706.71, -2111.25], [-704.71, -2111.34], [-704.46, -2106.01], [-706.46, -2105.92], [-706.42, -2105.06], [-715.91, -2104.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-749.54, -2150.2], [-749.96, -2163.12], [-742.06, -2163.38], [-741.97, -2160.81], [-737.95, -2160.93], [-737.79, -2155.98], [-736.39, -2156.02], [-736.08, -2146.57], [-743.29, -2146.33], [-743.42, -2150.4], [-749.54, -2150.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-941.37, -2112.9], [-941.81, -2121.8], [-940.97, -2121.84], [-941.0, -2122.58], [-933.83, -2122.92], [-933.35, -2113.28], [-937.55, -2113.08], [-937.52, -2112.32], [-939.37, -2112.23], [-939.41, -2112.98], [-941.37, -2112.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-993.74, -2082.8], [-994.09, -2090.66], [-991.84, -2090.76], [-991.98, -2093.99], [-983.37, -2094.37], [-982.88, -2083.28], [-986.82, -2083.11], [-986.77, -2082.0], [-990.05, -2081.85], [-990.1, -2082.96], [-993.74, -2082.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-645.62, -2111.79], [-645.95, -2121.44], [-637.11, -2121.75], [-636.77, -2112.05], [-637.32, -2112.03], [-637.18, -2107.91], [-641.55, -2107.75], [-641.64, -2110.43], [-644.58, -2110.32], [-644.63, -2111.83], [-645.62, -2111.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-647.08, -2154.59], [-647.33, -2163.45], [-644.49, -2163.53], [-644.52, -2164.67], [-639.56, -2164.82], [-639.27, -2154.81], [-641.01, -2154.76], [-640.95, -2152.53], [-645.87, -2152.39], [-645.93, -2154.62], [-647.08, -2154.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-658.31, -2106.92], [-653.72, -2107.14], [-653.67, -2106.14], [-650.61, -2106.28], [-651.22, -2119.08], [-654.48, -2118.92], [-654.4, -2117.16], [-656.92, -2117.04], [-656.9, -2116.58], [-658.76, -2116.5], [-658.31, -2106.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-761.45, -2101.14], [-755.44, -2101.29], [-755.46, -2102.14], [-753.0, -2102.2], [-753.14, -2108.13], [-750.24, -2108.2], [-750.34, -2112.23], [-753.24, -2112.16], [-753.31, -2115.39], [-763.14, -2115.15], [-762.94, -2107.09], [-761.6, -2107.13], [-761.45, -2101.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-747.21, -2101.82], [-747.52, -2110.33], [-746.41, -2110.38], [-746.54, -2114.02], [-742.77, -2114.16], [-742.64, -2110.52], [-740.13, -2110.61], [-740.2, -2112.46], [-736.17, -2112.61], [-736.06, -2109.6], [-735.09, -2109.64], [-734.81, -2102.28], [-747.21, -2101.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-946.89, -2140.28], [-947.43, -2154.08], [-936.75, -2154.5], [-936.2, -2140.54], [-936.65, -2140.53], [-936.56, -2138.12], [-938.92, -2138.02], [-938.88, -2136.94], [-943.73, -2136.76], [-943.84, -2139.51], [-945.46, -2139.44], [-945.5, -2140.34], [-946.89, -2140.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-869.86, -2096.71], [-870.28, -2105.52], [-869.24, -2105.56], [-869.58, -2112.93], [-867.43, -2113.03], [-867.57, -2115.96], [-861.8, -2116.22], [-861.74, -2114.72], [-859.39, -2114.82], [-858.98, -2106.04], [-857.31, -2106.12], [-856.89, -2097.31], [-869.86, -2096.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-930.0, -2091.64], [-930.43, -2102.74], [-927.22, -2102.86], [-927.15, -2101.04], [-924.09, -2101.16], [-924.22, -2104.33], [-917.5, -2104.58], [-917.28, -2098.84], [-919.72, -2098.75], [-919.5, -2092.87], [-923.91, -2092.7], [-923.85, -2091.19], [-927.15, -2091.06], [-927.17, -2091.75], [-930.0, -2091.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-761.33, -2146.53], [-761.48, -2151.05], [-765.0, -2150.93], [-765.23, -2157.57], [-761.71, -2157.69], [-761.81, -2160.61], [-757.75, -2160.75], [-757.81, -2162.32], [-754.91, -2162.42], [-754.85, -2160.84], [-753.07, -2160.9], [-752.59, -2146.83], [-753.48, -2146.8], [-753.34, -2142.69], [-757.6, -2142.55], [-757.74, -2146.65], [-761.33, -2146.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1056.07, -2128.34], [-1049.83, -2128.63], [-1050.22, -2136.72], [-1046.2, -2136.91], [-1046.53, -2144.03], [-1047.34, -2143.99], [-1047.7, -2151.75], [-1052.51, -2151.51], [-1052.42, -2149.7], [-1056.48, -2149.51], [-1056.24, -2144.55], [-1057.21, -2143.47], [-1057.11, -2141.35], [-1056.04, -2140.14], [-1055.85, -2136.12], [-1056.44, -2136.1], [-1056.07, -2128.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-703.08, -2153.75], [-703.43, -2162.52], [-694.43, -2162.89], [-694.07, -2154.11], [-703.08, -2153.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-717.18, -2153.89], [-717.52, -2162.08], [-708.95, -2162.44], [-708.61, -2154.25], [-717.18, -2153.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1036.61, -2090.97], [-1043.31, -2090.72], [-1043.56, -2097.6], [-1036.87, -2097.84], [-1036.61, -2090.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1027.32, -2087.19], [-1023.13, -2087.39], [-1023.38, -2092.72], [-1027.58, -2092.52], [-1027.32, -2087.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-696.58, -2135.04], [-696.9, -2141.17], [-689.64, -2141.54], [-689.33, -2135.41], [-696.58, -2135.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-632.85, -2128.06], [-633.11, -2134.77], [-627.38, -2134.99], [-627.12, -2128.28], [-632.85, -2128.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-996.65, -2098.25], [-989.73, -2098.54], [-990.04, -2105.67], [-996.96, -2105.37], [-996.65, -2098.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-824.83, -2117.59], [-818.83, -2117.88], [-819.19, -2125.17], [-825.19, -2124.89], [-824.83, -2117.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-687.74, -2124.72], [-688.04, -2132.92], [-681.17, -2133.18], [-680.86, -2124.97], [-687.74, -2124.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-732.84, -2153.25], [-733.16, -2161.33], [-724.28, -2161.69], [-723.95, -2153.62], [-732.84, -2153.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-856.2, -2129.32], [-856.6, -2137.68], [-848.2, -2138.08], [-847.8, -2129.73], [-856.2, -2129.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-863.8, -2119.84], [-856.56, -2120.21], [-856.94, -2127.82], [-864.18, -2127.46], [-863.8, -2119.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-840.7, -2122.4], [-841.04, -2128.6], [-834.76, -2128.93], [-834.43, -2122.75], [-840.7, -2122.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-852.27, -2098.99], [-852.66, -2108.7], [-843.38, -2109.08], [-842.99, -2099.36], [-852.27, -2098.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-986.13, -2110.01], [-986.46, -2119.24], [-970.9, -2119.8], [-970.57, -2110.56], [-986.13, -2110.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-816.33, -2139.17], [-811.79, -2139.33], [-812.02, -2145.16], [-816.55, -2144.99], [-816.33, -2139.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-775.84, -2131.58], [-776.02, -2137.84], [-769.63, -2138.02], [-769.45, -2131.76], [-775.84, -2131.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-674.03, -2124.88], [-674.38, -2133.36], [-661.99, -2133.88], [-661.63, -2125.39], [-674.03, -2124.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1038.05, -2122.31], [-1038.47, -2129.97], [-1030.01, -2130.43], [-1029.59, -2122.76], [-1038.05, -2122.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-769.41, -2145.6], [-779.33, -2145.39], [-779.63, -2160.03], [-769.72, -2160.24], [-769.41, -2145.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-719.07, -2133.74], [-713.65, -2133.86], [-713.85, -2142.51], [-719.26, -2142.39], [-719.07, -2133.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-841.21, -2143.85], [-837.94, -2143.98], [-838.17, -2150.01], [-841.43, -2149.89], [-841.21, -2143.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-642.2, -2126.27], [-642.49, -2134.18], [-635.39, -2134.44], [-635.1, -2126.53], [-642.2, -2126.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-726.97, -2133.19], [-727.25, -2139.31], [-720.64, -2139.61], [-720.37, -2133.49], [-726.97, -2133.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-979.85, -2085.98], [-971.05, -2086.37], [-971.51, -2096.65], [-980.3, -2096.26], [-979.85, -2085.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-942.3, -2124.41], [-933.63, -2124.72], [-933.93, -2133.06], [-942.6, -2132.76], [-942.3, -2124.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-918.39, -2125.31], [-926.32, -2124.86], [-926.75, -2132.47], [-918.83, -2132.92], [-918.39, -2125.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1029.9, -2112.57], [-1030.23, -2119.06], [-1022.36, -2119.44], [-1022.05, -2112.96], [-1029.9, -2112.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-641.18, -2145.12], [-636.7, -2145.37], [-637.02, -2151.13], [-641.51, -2150.88], [-641.18, -2145.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-883.11, -2097.24], [-883.45, -2104.86], [-873.85, -2105.29], [-873.5, -2097.67], [-883.11, -2097.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1022.64, -2120.79], [-1014.31, -2121.21], [-1014.85, -2131.89], [-1023.19, -2131.47], [-1022.64, -2120.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1004.1, -2131.6], [-999.67, -2131.85], [-1000.0, -2137.73], [-1004.43, -2137.48], [-1004.1, -2131.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-668.15, -2134.44], [-668.46, -2140.72], [-661.75, -2141.04], [-661.44, -2134.77], [-668.15, -2134.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-894.08, -2135.11], [-887.86, -2135.44], [-888.22, -2142.11], [-894.43, -2141.78], [-894.08, -2135.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-879.32, -2113.95], [-871.95, -2114.29], [-872.39, -2123.97], [-879.76, -2123.63], [-879.32, -2113.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-651.12, -2122.53], [-647.4, -2122.63], [-647.58, -2128.9], [-651.29, -2128.79], [-651.12, -2122.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-998.6, -2132.25], [-994.94, -2132.5], [-995.33, -2138.31], [-998.99, -2138.07], [-998.6, -2132.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1002.91, -2120.99], [-996.1, -2121.3], [-995.77, -2114.2], [-1002.58, -2113.89], [-1002.91, -2120.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-805.27, -2121.84], [-798.18, -2122.09], [-798.46, -2129.95], [-805.55, -2129.7], [-805.27, -2121.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-680.33, -2134.41], [-680.63, -2140.92], [-674.35, -2141.21], [-674.06, -2134.7], [-680.33, -2134.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-855.87, -2117.72], [-847.53, -2118.12], [-847.95, -2127.31], [-856.3, -2126.92], [-855.87, -2117.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-688.4, -2152.64], [-688.84, -2163.16], [-677.44, -2163.65], [-676.98, -2153.13], [-688.4, -2152.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-973.76, -2123.56], [-974.05, -2130.56], [-981.97, -2130.22], [-981.68, -2123.23], [-973.76, -2123.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1024.27, -2074.04], [-1024.55, -2083.78], [-1014.22, -2084.07], [-1013.94, -2074.33], [-1024.27, -2074.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-733.57, -2123.25], [-727.07, -2123.6], [-727.44, -2130.51], [-733.95, -2130.16], [-733.57, -2123.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-823.43, -2148.26], [-823.87, -2160.33], [-816.17, -2160.6], [-815.84, -2151.38], [-819.06, -2151.26], [-818.96, -2148.42], [-823.43, -2148.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-915.38, -2146.4], [-915.76, -2155.24], [-907.84, -2155.58], [-907.38, -2144.66], [-911.31, -2144.5], [-911.4, -2146.57], [-915.38, -2146.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-933.06, -2091.67], [-941.68, -2091.47], [-941.76, -2094.8], [-943.49, -2094.76], [-943.65, -2101.77], [-933.3, -2102.01], [-933.06, -2091.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-835.91, -2147.81], [-836.06, -2151.3], [-837.82, -2151.22], [-838.15, -2158.63], [-829.68, -2159.02], [-829.19, -2148.12], [-835.91, -2147.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-718.56, -2131.99], [-718.28, -2124.95], [-713.1, -2125.16], [-713.13, -2125.84], [-708.85, -2126.01], [-709.11, -2132.37], [-718.56, -2131.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-673.33, -2151.44], [-665.8, -2151.73], [-666.25, -2163.65], [-671.44, -2163.46], [-671.48, -2164.68], [-673.83, -2164.59], [-673.33, -2151.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-913.83, -2093.59], [-914.29, -2103.22], [-903.27, -2103.76], [-902.74, -2092.97], [-909.29, -2092.65], [-909.35, -2093.8], [-913.83, -2093.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-886.24, -2141.91], [-886.96, -2156.21], [-877.93, -2156.66], [-877.77, -2153.5], [-874.52, -2153.66], [-873.96, -2142.54], [-886.24, -2141.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1009.71, -2077.4], [-1010.32, -2093.14], [-1004.49, -2093.38], [-1004.25, -2087.12], [-999.5, -2087.3], [-999.13, -2077.8], [-1009.71, -2077.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-806.82, -2101.48], [-796.42, -2101.95], [-797.05, -2115.97], [-800.3, -2115.83], [-800.42, -2118.49], [-807.57, -2118.18], [-806.82, -2101.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-670.77, -2106.51], [-671.06, -2113.54], [-668.61, -2113.64], [-668.74, -2116.55], [-662.05, -2116.83], [-661.65, -2106.87], [-670.77, -2106.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-658.85, -2151.56], [-659.29, -2164.23], [-651.81, -2164.49], [-651.37, -2151.82], [-652.25, -2151.78], [-652.15, -2148.79], [-657.66, -2148.61], [-657.76, -2151.59], [-658.85, -2151.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-730.77, -2102.78], [-731.34, -2115.81], [-723.14, -2116.17], [-722.77, -2107.77], [-719.96, -2107.9], [-719.78, -2103.71], [-725.88, -2103.44], [-725.87, -2102.99], [-730.77, -2102.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-632.29, -2109.05], [-632.62, -2117.3], [-629.49, -2117.42], [-629.62, -2120.78], [-625.36, -2120.95], [-625.23, -2117.59], [-624.49, -2117.62], [-624.15, -2109.37], [-632.29, -2109.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1043.5, -2073.38], [-1052.39, -2073.03], [-1052.82, -2083.55], [-1049.18, -2083.7], [-1049.32, -2087.42], [-1045.88, -2087.55], [-1045.8, -2085.51], [-1043.99, -2085.58], [-1043.5, -2073.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-636.37, -2146.97], [-630.41, -2147.23], [-630.65, -2152.93], [-627.81, -2153.06], [-628.25, -2163.07], [-635.6, -2162.75], [-635.42, -2158.53], [-636.87, -2158.47], [-636.37, -2146.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-775.22, -2100.8], [-765.91, -2101.12], [-766.09, -2106.79], [-767.24, -2106.75], [-767.57, -2116.48], [-774.4, -2116.25], [-774.21, -2110.58], [-775.55, -2110.53], [-775.22, -2100.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-870.83, -2144.35], [-861.96, -2144.85], [-862.08, -2146.97], [-859.13, -2147.14], [-859.57, -2154.81], [-862.51, -2154.64], [-862.66, -2157.28], [-871.54, -2156.78], [-870.83, -2144.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-995.19, -2141.05], [-986.89, -2141.51], [-987.54, -2152.86], [-988.34, -2152.81], [-988.49, -2155.33], [-995.04, -2154.97], [-994.9, -2152.45], [-995.83, -2152.4], [-995.19, -2141.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-854.25, -2149.26], [-854.77, -2157.87], [-846.09, -2158.38], [-846.0, -2156.67], [-844.01, -2156.79], [-843.71, -2151.78], [-845.7, -2151.67], [-845.58, -2149.77], [-854.25, -2149.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1028.54, -2074.41], [-1036.8, -2074.12], [-1037.09, -2082.33], [-1036.13, -2082.36], [-1036.3, -2087.36], [-1035.18, -2087.4], [-1035.31, -2090.95], [-1029.13, -2091.16], [-1028.54, -2074.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-899.3, -2096.18], [-899.98, -2110.23], [-888.68, -2110.78], [-888.01, -2096.71], [-890.95, -2096.57], [-890.89, -2095.31], [-893.63, -2095.17], [-893.69, -2096.44], [-899.3, -2096.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1013.11, -2142.97], [-1013.42, -2151.45], [-1011.62, -2151.51], [-1011.72, -2154.18], [-1007.03, -2154.36], [-1006.99, -2153.38], [-1004.47, -2153.47], [-1004.1, -2143.3], [-1013.11, -2142.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-901.2, -2147.36], [-901.54, -2155.71], [-892.26, -2156.09], [-891.92, -2147.74], [-893.62, -2147.67], [-893.5, -2144.6], [-896.93, -2144.46], [-897.05, -2147.54], [-901.2, -2147.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-931.73, -2142.19], [-932.3, -2154.77], [-922.31, -2155.22], [-921.66, -2140.9], [-924.36, -2140.78], [-924.24, -2138.2], [-930.65, -2137.92], [-930.85, -2142.23], [-931.73, -2142.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-764.4, -2492.81], [-764.5, -2494.99], [-765.49, -2494.94], [-765.61, -2497.58], [-768.21, -2497.46], [-768.71, -2508.06], [-759.7, -2508.49], [-759.21, -2498.18], [-758.64, -2498.21], [-758.39, -2493.1], [-764.4, -2492.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-652.68, -2294.87], [-653.23, -2299.58], [-647.92, -2300.19], [-648.56, -2305.73], [-640.62, -2306.64], [-640.12, -2302.25], [-639.27, -2302.35], [-638.96, -2299.65], [-639.81, -2299.55], [-639.44, -2296.39], [-652.68, -2294.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-652.66, -2312.92], [-653.49, -2319.46], [-640.5, -2321.1], [-640.41, -2320.38], [-639.49, -2320.5], [-639.18, -2318.02], [-640.09, -2317.9], [-639.62, -2314.24], [-649.5, -2312.99], [-649.54, -2313.32], [-652.66, -2312.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-895.25, -2302.79], [-887.64, -2303.06], [-887.71, -2304.89], [-883.81, -2305.03], [-884.0, -2310.39], [-884.63, -2310.38], [-884.88, -2317.53], [-889.27, -2317.37], [-889.34, -2319.32], [-895.82, -2319.09], [-895.25, -2302.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1175.86, -2343.61], [-1172.91, -2348.57], [-1168.68, -2346.08], [-1166.61, -2349.59], [-1163.16, -2347.55], [-1159.63, -2353.51], [-1153.27, -2349.77], [-1157.16, -2343.21], [-1153.12, -2340.82], [-1157.79, -2332.97], [-1175.86, -2343.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.15, "pop": 0, "jobs": 150}}, {"shape": {"outer": [[-1186.14, -2176.38], [-1186.59, -2186.12], [-1180.41, -2186.4], [-1180.27, -2183.25], [-1177.49, -2183.38], [-1177.19, -2176.78], [-1180.54, -2176.63], [-1180.5, -2175.54], [-1183.22, -2175.43], [-1183.28, -2176.51], [-1186.14, -2176.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-609.66, -2260.81], [-609.52, -2255.61], [-605.56, -2255.71], [-605.49, -2253.16], [-596.15, -2253.42], [-596.19, -2254.67], [-592.09, -2254.78], [-592.19, -2258.59], [-592.75, -2258.59], [-592.81, -2261.27], [-609.66, -2260.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-827.82, -2194.47], [-828.23, -2202.41], [-826.69, -2202.48], [-826.71, -2203.01], [-819.09, -2203.39], [-819.01, -2201.9], [-818.25, -2201.94], [-817.75, -2192.08], [-823.16, -2191.8], [-823.31, -2194.7], [-827.82, -2194.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-999.47, -2185.55], [-1000.0, -2197.06], [-997.22, -2197.18], [-997.3, -2198.96], [-991.01, -2199.25], [-990.4, -2185.96], [-991.22, -2185.93], [-991.12, -2183.74], [-998.48, -2183.4], [-998.59, -2185.59], [-999.47, -2185.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1282.05, -2176.4], [-1268.2, -2168.76], [-1270.1, -2165.33], [-1273.19, -2163.93], [-1279.47, -2163.72], [-1280.02, -2163.86], [-1280.41, -2164.12], [-1280.74, -2164.53], [-1280.9, -2165.02], [-1282.67, -2171.15], [-1282.05, -2176.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.071, "pop": 0, "jobs": 71}}, {"shape": {"outer": [[-984.16, -2188.1], [-984.73, -2201.29], [-978.81, -2201.54], [-978.6, -2196.57], [-976.72, -2196.66], [-976.37, -2188.43], [-978.39, -2188.35], [-980.18, -2186.64], [-982.79, -2186.53], [-982.86, -2188.16], [-984.16, -2188.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1189.65, -2248.56], [-1190.06, -2258.83], [-1182.32, -2259.14], [-1182.24, -2257.21], [-1179.6, -2257.32], [-1179.28, -2248.97], [-1183.71, -2248.8], [-1183.54, -2244.65], [-1188.68, -2244.44], [-1188.83, -2248.6], [-1189.65, -2248.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-617.72, -2332.71], [-608.84, -2333.28], [-609.08, -2336.85], [-604.89, -2337.11], [-605.28, -2343.11], [-618.33, -2342.29], [-618.29, -2341.7], [-620.6, -2341.54], [-620.06, -2332.96], [-617.75, -2333.11], [-617.72, -2332.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-604.86, -2229.36], [-604.89, -2229.9], [-605.39, -2229.86], [-605.78, -2235.86], [-605.11, -2235.9], [-605.23, -2237.74], [-592.61, -2238.53], [-592.13, -2230.84], [-598.43, -2230.44], [-598.4, -2229.76], [-604.86, -2229.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1053.95, -2253.71], [-1054.07, -2258.59], [-1053.25, -2258.62], [-1053.37, -2262.97], [-1057.03, -2262.88], [-1057.05, -2263.51], [-1059.29, -2263.46], [-1059.27, -2262.82], [-1061.39, -2262.76], [-1061.15, -2253.52], [-1053.95, -2253.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1155.77, -2177.81], [-1156.25, -2188.07], [-1150.83, -2188.33], [-1150.65, -2184.59], [-1147.28, -2184.75], [-1146.98, -2178.23], [-1149.82, -2178.09], [-1149.77, -2176.92], [-1152.61, -2176.8], [-1152.66, -2177.96], [-1155.77, -2177.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-946.36, -2192.8], [-946.99, -2207.63], [-945.87, -2207.68], [-946.08, -2212.51], [-940.46, -2212.76], [-940.25, -2207.91], [-939.36, -2207.95], [-938.77, -2194.31], [-943.03, -2194.12], [-942.98, -2192.94], [-946.36, -2192.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-948.04, -2250.26], [-941.02, -2250.55], [-941.27, -2256.83], [-944.27, -2256.71], [-944.4, -2259.98], [-941.8, -2260.07], [-942.13, -2268.42], [-951.29, -2268.05], [-950.95, -2259.69], [-948.42, -2259.79], [-948.04, -2250.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1032.88, -2252.86], [-1033.41, -2263.63], [-1029.73, -2263.81], [-1029.78, -2264.77], [-1027.53, -2264.87], [-1027.49, -2263.92], [-1023.75, -2264.1], [-1023.22, -2253.34], [-1025.13, -2253.24], [-1025.03, -2251.17], [-1030.22, -2250.93], [-1030.32, -2252.99], [-1032.88, -2252.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1198.72, -2242.86], [-1203.44, -2242.69], [-1203.58, -2246.75], [-1205.55, -2246.69], [-1205.88, -2255.89], [-1205.2, -2255.91], [-1205.27, -2257.99], [-1199.93, -2258.18], [-1199.88, -2256.55], [-1195.76, -2256.69], [-1195.51, -2249.77], [-1198.96, -2249.65], [-1198.72, -2242.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-656.32, -2331.56], [-656.61, -2334.42], [-660.04, -2334.07], [-660.64, -2340.05], [-657.2, -2340.39], [-657.38, -2342.19], [-644.41, -2343.47], [-644.33, -2342.67], [-642.18, -2342.87], [-641.31, -2334.12], [-643.46, -2333.91], [-643.36, -2332.84], [-656.32, -2331.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-619.17, -2350.63], [-610.39, -2351.24], [-610.75, -2356.34], [-608.89, -2356.47], [-609.13, -2360.05], [-611.0, -2359.92], [-611.06, -2360.83], [-619.83, -2360.23], [-619.77, -2359.33], [-621.83, -2359.19], [-621.27, -2351.06], [-619.21, -2351.2], [-619.17, -2350.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1140.26, -2178.25], [-1140.45, -2184.84], [-1138.7, -2184.89], [-1138.78, -2187.88], [-1133.92, -2188.02], [-1133.84, -2185.02], [-1131.92, -2185.08], [-1131.73, -2178.49], [-1134.52, -2178.41], [-1134.48, -2177.17], [-1137.55, -2177.08], [-1137.58, -2178.33], [-1140.26, -2178.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-656.18, -2375.86], [-656.23, -2376.47], [-658.44, -2376.28], [-658.91, -2381.71], [-656.7, -2381.91], [-657.0, -2385.3], [-648.58, -2386.03], [-648.36, -2383.5], [-646.77, -2383.63], [-646.56, -2381.18], [-647.15, -2381.13], [-646.76, -2376.68], [-656.18, -2375.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-641.54, -2195.91], [-641.65, -2199.18], [-640.98, -2199.2], [-641.06, -2201.37], [-639.96, -2201.4], [-640.17, -2207.96], [-630.18, -2208.3], [-630.14, -2206.92], [-627.69, -2207.0], [-627.41, -2198.68], [-629.85, -2198.6], [-629.78, -2196.3], [-641.54, -2195.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-918.41, -2259.09], [-918.61, -2262.89], [-919.7, -2262.84], [-920.0, -2268.68], [-917.29, -2268.82], [-917.34, -2269.91], [-913.19, -2270.13], [-913.14, -2269.03], [-910.82, -2269.15], [-910.12, -2255.17], [-915.76, -2254.88], [-915.98, -2259.2], [-918.41, -2259.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1014.26, -2185.28], [-1005.99, -2185.61], [-1006.37, -2195.17], [-1008.11, -2195.1], [-1008.23, -2198.41], [-1007.14, -2198.46], [-1007.23, -2200.84], [-1004.91, -2200.93], [-1005.05, -2204.54], [-1010.74, -2204.32], [-1010.61, -2200.96], [-1014.87, -2200.79], [-1014.26, -2185.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1044.71, -2196.3], [-1044.16, -2185.36], [-1041.93, -2185.47], [-1041.87, -2184.36], [-1038.97, -2184.5], [-1039.03, -2185.61], [-1036.6, -2185.73], [-1036.67, -2187.31], [-1033.65, -2187.46], [-1033.96, -2193.6], [-1039.74, -2193.31], [-1039.89, -2196.53], [-1044.71, -2196.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-819.02, -2236.29], [-822.61, -2236.17], [-822.68, -2237.81], [-827.29, -2237.64], [-827.31, -2238.27], [-829.01, -2238.21], [-829.13, -2241.48], [-829.64, -2241.47], [-829.9, -2248.7], [-827.68, -2248.77], [-827.76, -2250.82], [-825.94, -2250.89], [-825.98, -2252.26], [-819.59, -2252.49], [-819.02, -2236.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-620.72, -2386.8], [-625.53, -2386.72], [-625.57, -2388.71], [-626.18, -2388.69], [-626.23, -2391.62], [-627.52, -2391.61], [-627.54, -2393.16], [-628.91, -2393.15], [-629.05, -2400.98], [-620.96, -2401.12], [-620.85, -2394.1], [-620.36, -2394.1], [-620.27, -2388.85], [-620.75, -2388.84], [-620.72, -2386.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-934.13, -2201.69], [-934.57, -2214.56], [-928.36, -2214.77], [-928.33, -2214.03], [-925.34, -2214.13], [-925.2, -2209.82], [-924.32, -2209.86], [-924.16, -2205.07], [-925.04, -2205.04], [-924.93, -2201.99], [-925.82, -2201.97], [-925.73, -2199.55], [-932.78, -2199.31], [-932.86, -2201.72], [-934.13, -2201.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-856.38, -2306.33], [-856.71, -2314.31], [-849.89, -2314.6], [-848.16, -2316.47], [-848.53, -2325.08], [-843.12, -2325.31], [-843.03, -2323.18], [-839.34, -2323.33], [-839.01, -2315.38], [-839.69, -2315.36], [-839.35, -2307.33], [-846.41, -2307.03], [-846.36, -2305.82], [-851.1, -2305.62], [-851.14, -2306.54], [-856.38, -2306.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-935.38, -2255.75], [-932.33, -2255.87], [-931.93, -2245.17], [-928.25, -2245.31], [-928.35, -2248.22], [-924.96, -2248.35], [-925.16, -2253.86], [-923.42, -2253.92], [-923.69, -2261.05], [-928.19, -2260.87], [-928.35, -2265.29], [-929.13, -2265.26], [-929.27, -2269.23], [-935.87, -2268.99], [-935.73, -2265.03], [-936.7, -2264.99], [-936.51, -2259.81], [-935.53, -2259.85], [-935.38, -2255.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-853.86, -2348.68], [-854.14, -2356.06], [-841.86, -2356.52], [-841.58, -2349.14], [-853.86, -2348.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-863.03, -2363.38], [-863.28, -2369.59], [-858.53, -2369.78], [-858.28, -2363.57], [-863.03, -2363.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-953.06, -2344.58], [-953.21, -2351.59], [-944.96, -2351.78], [-944.81, -2344.76], [-953.06, -2344.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-608.12, -2360.09], [-608.52, -2365.24], [-601.9, -2365.76], [-601.5, -2360.61], [-608.12, -2360.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1226.84, -2239.82], [-1229.81, -2234.45], [-1224.15, -2231.35], [-1221.18, -2236.72], [-1226.84, -2239.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-899.43, -2303.6], [-908.65, -2303.18], [-909.32, -2317.98], [-900.1, -2318.39], [-899.43, -2303.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1069.12, -2369.18], [-1069.47, -2378.19], [-1059.54, -2378.59], [-1059.19, -2369.57], [-1069.12, -2369.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-922.17, -2223.58], [-918.67, -2223.64], [-918.76, -2228.92], [-922.27, -2228.87], [-922.17, -2223.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-802.9, -2500.76], [-803.12, -2508.75], [-811.15, -2508.52], [-810.93, -2500.53], [-802.9, -2500.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1023.36, -2239.75], [-1019.82, -2239.89], [-1020.04, -2246.04], [-1023.59, -2245.9], [-1023.36, -2239.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-951.7, -2321.69], [-951.8, -2325.07], [-947.15, -2325.2], [-947.06, -2321.82], [-951.7, -2321.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[-800.89, -2460.95], [-801.1, -2465.06], [-794.61, -2465.41], [-794.39, -2461.3], [-800.89, -2460.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-590.95, -2251.39], [-591.12, -2255.09], [-584.96, -2255.37], [-584.78, -2251.68], [-590.95, -2251.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1019.71, -2247.93], [-1015.95, -2248.1], [-1016.25, -2254.73], [-1020.01, -2254.56], [-1019.71, -2247.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-671.66, -2389.15], [-667.53, -2389.22], [-667.64, -2394.89], [-671.76, -2394.8], [-671.66, -2389.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-742.69, -2501.82], [-733.45, -2502.24], [-733.95, -2513.23], [-743.19, -2512.81], [-742.69, -2501.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-937.1, -2229.74], [-937.32, -2233.4], [-931.86, -2233.73], [-931.65, -2230.07], [-937.1, -2229.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-608.7, -2241.25], [-609.29, -2249.96], [-597.99, -2250.72], [-597.41, -2242.01], [-608.7, -2241.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1131.61, -2235.14], [-1139.11, -2234.87], [-1138.86, -2227.58], [-1131.34, -2227.85], [-1131.61, -2235.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-986.86, -2239.82], [-980.91, -2240.09], [-981.21, -2246.82], [-987.15, -2246.57], [-986.86, -2239.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1129.08, -2206.08], [-1129.27, -2212.61], [-1118.67, -2212.91], [-1118.49, -2206.38], [-1129.08, -2206.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1148.32, -2189.66], [-1144.31, -2189.73], [-1144.4, -2194.85], [-1148.4, -2194.78], [-1148.32, -2189.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1167.43, -2230.3], [-1175.13, -2230.08], [-1174.86, -2220.45], [-1167.16, -2220.67], [-1167.43, -2230.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-859.56, -2199.61], [-860.03, -2207.35], [-847.81, -2208.08], [-847.34, -2200.34], [-859.56, -2199.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1100.6, -2238.62], [-1100.91, -2244.98], [-1094.2, -2245.32], [-1093.88, -2238.96], [-1100.6, -2238.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1060.48, -2366.68], [-1066.95, -2366.43], [-1066.73, -2360.5], [-1060.27, -2360.75], [-1060.48, -2366.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1128.08, -2249.57], [-1128.52, -2259.67], [-1120.71, -2260.0], [-1120.28, -2249.9], [-1128.08, -2249.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-993.63, -2202.58], [-988.06, -2202.77], [-988.31, -2209.68], [-993.88, -2209.48], [-993.63, -2202.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-864.67, -2206.85], [-873.41, -2206.54], [-873.08, -2197.29], [-864.34, -2197.6], [-864.67, -2206.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-655.9, -2271.06], [-649.12, -2271.5], [-649.41, -2276.01], [-656.19, -2275.58], [-655.9, -2271.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-585.37, -2263.79], [-586.34, -2275.13], [-580.35, -2275.64], [-579.39, -2264.29], [-585.37, -2263.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-656.95, -2220.26], [-657.07, -2226.97], [-662.48, -2226.86], [-662.36, -2220.15], [-656.95, -2220.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1098.52, -2224.76], [-1089.73, -2225.42], [-1090.44, -2234.76], [-1099.22, -2234.11], [-1098.52, -2224.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-611.38, -2281.69], [-612.46, -2291.04], [-601.08, -2292.34], [-599.99, -2282.99], [-611.38, -2281.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-601.55, -2314.42], [-601.83, -2319.77], [-595.91, -2320.09], [-595.63, -2314.74], [-601.55, -2314.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-748.48, -2486.01], [-744.48, -2486.09], [-744.6, -2492.36], [-748.6, -2492.28], [-748.48, -2486.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-609.15, -2264.92], [-610.29, -2275.37], [-591.11, -2277.44], [-589.98, -2266.99], [-609.15, -2264.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1050.22, -2246.29], [-1054.06, -2246.06], [-1054.47, -2252.68], [-1050.63, -2252.92], [-1050.22, -2246.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-659.55, -2201.99], [-663.87, -2201.8], [-664.17, -2208.87], [-659.85, -2209.06], [-659.55, -2201.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-796.81, -2507.84], [-788.15, -2508.17], [-787.71, -2496.48], [-796.37, -2496.14], [-796.81, -2507.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1050.89, -2334.87], [-1051.01, -2338.42], [-1042.0, -2338.73], [-1041.88, -2335.19], [-1050.89, -2334.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-669.88, -2367.25], [-661.89, -2367.91], [-662.56, -2375.95], [-670.55, -2375.29], [-669.88, -2367.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-651.05, -2254.89], [-651.39, -2259.74], [-644.9, -2260.19], [-644.56, -2255.35], [-651.05, -2254.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-992.9, -2246.78], [-989.59, -2246.93], [-989.89, -2253.89], [-993.2, -2253.74], [-992.9, -2246.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-832.17, -2269.88], [-832.59, -2275.98], [-827.13, -2276.35], [-826.71, -2270.25], [-832.17, -2269.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-888.82, -2324.24], [-882.41, -2324.43], [-882.7, -2333.47], [-889.11, -2333.27], [-888.82, -2324.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1034.33, -2298.64], [-1034.71, -2306.19], [-1024.89, -2306.7], [-1024.51, -2299.14], [-1034.33, -2298.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-586.01, -2246.9], [-585.75, -2243.0], [-577.51, -2243.56], [-577.78, -2247.47], [-586.01, -2246.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1024.36, -2353.29], [-1015.86, -2353.65], [-1015.51, -2345.09], [-1024.01, -2344.73], [-1024.36, -2353.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-849.87, -2329.29], [-850.16, -2333.32], [-843.89, -2333.78], [-843.6, -2329.73], [-849.87, -2329.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1057.68, -2199.64], [-1057.95, -2205.01], [-1049.65, -2205.42], [-1049.38, -2200.06], [-1057.68, -2199.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-716.85, -2509.84], [-717.17, -2515.38], [-724.43, -2514.96], [-724.11, -2509.43], [-716.85, -2509.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-643.09, -2245.81], [-633.04, -2246.14], [-633.45, -2258.71], [-643.49, -2258.38], [-643.09, -2245.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-611.9, -2296.04], [-612.68, -2303.76], [-604.34, -2304.6], [-603.56, -2296.88], [-611.9, -2296.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1016.95, -2298.28], [-1011.0, -2298.5], [-1011.51, -2311.67], [-1017.46, -2311.44], [-1016.95, -2298.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-833.84, -2234.98], [-834.12, -2244.51], [-844.77, -2244.2], [-844.5, -2234.67], [-833.84, -2234.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-842.3, -2194.22], [-842.59, -2202.73], [-832.05, -2203.09], [-831.76, -2194.58], [-842.3, -2194.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1229.4, -2252.87], [-1229.69, -2259.47], [-1218.83, -2259.93], [-1218.53, -2253.35], [-1229.4, -2252.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-620.11, -2372.09], [-620.82, -2379.14], [-614.83, -2379.74], [-614.12, -2372.69], [-620.11, -2372.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1026.61, -2204.31], [-1026.87, -2211.52], [-1019.44, -2211.79], [-1019.19, -2204.58], [-1026.61, -2204.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1048.01, -2361.85], [-1042.0, -2362.04], [-1042.26, -2370.48], [-1048.28, -2370.28], [-1048.01, -2361.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-986.83, -2204.53], [-987.07, -2210.86], [-981.34, -2211.06], [-981.09, -2204.75], [-986.83, -2204.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-916.61, -2302.38], [-923.87, -2302.09], [-924.41, -2315.41], [-917.15, -2315.71], [-916.61, -2302.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-769.82, -2485.03], [-770.12, -2491.6], [-763.84, -2491.89], [-763.53, -2485.32], [-769.82, -2485.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-644.85, -2234.65], [-645.08, -2242.97], [-631.37, -2243.36], [-631.13, -2235.04], [-644.85, -2234.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-659.62, -2304.21], [-660.28, -2309.82], [-653.64, -2310.59], [-652.97, -2305.0], [-659.62, -2304.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-867.43, -2348.77], [-860.99, -2348.95], [-861.2, -2356.35], [-867.64, -2356.16], [-867.43, -2348.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1001.72, -2211.02], [-1001.96, -2217.82], [-994.87, -2218.08], [-994.62, -2211.27], [-1001.72, -2211.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-770.67, -2491.87], [-774.78, -2491.71], [-775.0, -2497.7], [-770.89, -2497.86], [-770.67, -2491.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1062.2, -2334.87], [-1061.73, -2325.04], [-1053.27, -2325.45], [-1053.74, -2335.28], [-1062.2, -2334.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1135.2, -2244.18], [-1145.03, -2243.76], [-1145.69, -2258.85], [-1135.86, -2259.29], [-1135.2, -2244.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-927.23, -2218.92], [-922.82, -2219.09], [-923.21, -2228.83], [-927.62, -2228.66], [-927.23, -2218.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-903.93, -2190.85], [-904.44, -2201.61], [-892.15, -2202.18], [-891.64, -2191.43], [-903.93, -2190.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1118.81, -2190.96], [-1113.81, -2191.14], [-1114.03, -2197.24], [-1119.04, -2197.05], [-1118.81, -2190.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-901.12, -2323.77], [-897.01, -2323.92], [-897.29, -2331.62], [-901.4, -2331.47], [-901.12, -2323.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-949.46, -2218.23], [-949.66, -2225.36], [-943.0, -2225.55], [-942.79, -2218.42], [-949.46, -2218.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-892.37, -2246.0], [-887.83, -2246.2], [-888.13, -2253.0], [-892.67, -2252.8], [-892.37, -2246.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-787.27, -2426.31], [-787.88, -2439.42], [-775.49, -2439.99], [-774.88, -2426.89], [-787.27, -2426.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1023.72, -2315.5], [-1026.77, -2315.35], [-1027.13, -2322.4], [-1024.09, -2322.57], [-1023.72, -2315.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-921.12, -2240.34], [-916.35, -2240.54], [-916.8, -2250.77], [-921.57, -2250.56], [-921.12, -2240.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-808.88, -2469.82], [-817.77, -2469.42], [-818.15, -2477.91], [-809.27, -2478.31], [-808.88, -2469.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-599.78, -2216.28], [-590.72, -2217.08], [-591.48, -2225.52], [-600.53, -2224.7], [-599.78, -2216.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1112.75, -2191.13], [-1107.79, -2191.27], [-1107.96, -2197.2], [-1112.92, -2197.06], [-1112.75, -2191.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-660.56, -2318.23], [-661.07, -2321.45], [-654.7, -2322.46], [-654.19, -2319.23], [-660.56, -2318.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1216.95, -2250.24], [-1212.87, -2250.4], [-1213.15, -2257.15], [-1217.24, -2256.99], [-1216.95, -2250.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-871.05, -2255.59], [-877.4, -2255.24], [-877.06, -2248.94], [-870.71, -2249.29], [-871.05, -2255.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1124.33, -2227.03], [-1124.68, -2235.57], [-1114.42, -2235.98], [-1114.07, -2227.45], [-1124.33, -2227.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1017.49, -2210.24], [-1010.84, -2210.48], [-1011.23, -2221.49], [-1017.88, -2221.26], [-1017.49, -2210.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-879.44, -2306.21], [-870.88, -2306.55], [-871.31, -2317.86], [-879.87, -2317.54], [-879.44, -2306.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1040.38, -2362.99], [-1034.32, -2363.17], [-1034.5, -2369.65], [-1040.56, -2369.48], [-1040.38, -2362.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-954.04, -2330.09], [-947.64, -2330.15], [-947.75, -2341.21], [-954.15, -2341.15], [-954.04, -2330.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-664.93, -2327.72], [-665.48, -2332.62], [-658.14, -2333.46], [-657.57, -2328.55], [-664.93, -2327.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1099.78, -2247.86], [-1090.94, -2248.16], [-1091.32, -2259.42], [-1100.16, -2259.13], [-1099.78, -2247.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1255.16, -2231.53], [-1248.11, -2244.58], [-1231.65, -2235.76], [-1237.05, -2225.77], [-1234.79, -2224.55], [-1236.43, -2221.49], [-1255.16, -2231.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-891.02, -2260.15], [-891.42, -2269.35], [-886.86, -2269.54], [-886.89, -2270.2], [-880.81, -2270.46], [-880.37, -2260.6], [-891.02, -2260.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-784.52, -2500.24], [-784.82, -2505.0], [-782.29, -2505.16], [-782.54, -2509.13], [-773.94, -2509.66], [-773.39, -2500.94], [-784.52, -2500.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-657.27, -2389.56], [-665.18, -2389.33], [-665.32, -2394.31], [-666.11, -2394.29], [-666.28, -2400.4], [-657.58, -2400.63], [-657.27, -2389.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-888.86, -2226.61], [-878.54, -2226.99], [-878.17, -2217.12], [-879.77, -2217.06], [-879.69, -2214.97], [-888.41, -2214.64], [-888.86, -2226.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1203.0, -2175.44], [-1203.34, -2183.08], [-1198.44, -2183.3], [-1198.59, -2186.74], [-1194.54, -2186.93], [-1194.05, -2175.84], [-1203.0, -2175.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1174.68, -2242.34], [-1175.4, -2257.38], [-1164.32, -2257.91], [-1163.83, -2247.78], [-1169.07, -2247.53], [-1168.84, -2242.63], [-1174.68, -2242.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-714.38, -2432.91], [-714.81, -2440.48], [-718.54, -2440.27], [-718.74, -2444.06], [-726.92, -2443.6], [-726.28, -2432.25], [-714.38, -2432.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1111.96, -2249.69], [-1112.38, -2258.15], [-1109.2, -2258.31], [-1109.33, -2261.0], [-1104.38, -2261.25], [-1103.83, -2250.09], [-1111.96, -2249.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1017.6, -2256.25], [-1018.0, -2264.45], [-1009.87, -2264.84], [-1009.34, -2253.93], [-1013.7, -2253.72], [-1013.84, -2256.44], [-1017.6, -2256.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1064.08, -2298.09], [-1056.04, -2298.42], [-1056.12, -2300.19], [-1055.27, -2300.23], [-1055.73, -2311.41], [-1064.61, -2311.04], [-1064.08, -2298.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1159.86, -2246.75], [-1160.19, -2258.17], [-1150.58, -2258.45], [-1150.36, -2250.62], [-1155.6, -2250.47], [-1155.5, -2246.87], [-1159.86, -2246.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-616.59, -2324.83], [-615.85, -2315.26], [-602.83, -2316.27], [-603.35, -2322.89], [-607.21, -2322.59], [-607.43, -2325.53], [-616.59, -2324.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1051.09, -2298.16], [-1051.46, -2310.89], [-1040.1, -2311.22], [-1039.76, -2299.14], [-1042.27, -2299.06], [-1042.25, -2298.41], [-1051.09, -2298.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-651.48, -2279.39], [-652.06, -2285.16], [-647.21, -2285.65], [-647.45, -2288.0], [-637.09, -2289.04], [-636.27, -2280.91], [-651.48, -2279.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1170.42, -2177.69], [-1170.59, -2183.7], [-1167.37, -2183.79], [-1167.5, -2188.3], [-1161.54, -2188.47], [-1161.19, -2176.19], [-1167.36, -2176.01], [-1167.41, -2177.77], [-1170.42, -2177.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-872.0, -2256.86], [-873.07, -2273.57], [-867.64, -2273.92], [-867.49, -2271.56], [-864.75, -2271.73], [-863.83, -2257.38], [-872.0, -2256.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1037.5, -2371.2], [-1037.8, -2379.74], [-1027.38, -2380.1], [-1027.22, -2375.37], [-1029.88, -2375.28], [-1029.75, -2371.47], [-1037.5, -2371.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-658.61, -2285.04], [-651.57, -2285.69], [-652.29, -2293.56], [-655.52, -2293.26], [-655.44, -2292.31], [-659.24, -2291.96], [-658.61, -2285.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1058.22, -2207.08], [-1045.84, -2207.69], [-1046.19, -2214.75], [-1048.33, -2214.64], [-1048.66, -2221.4], [-1058.9, -2220.91], [-1058.22, -2207.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1102.64, -2207.7], [-1103.11, -2217.29], [-1089.36, -2217.96], [-1089.22, -2215.16], [-1086.58, -2215.3], [-1086.25, -2208.5], [-1102.64, -2207.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1057.21, -2224.36], [-1057.31, -2226.97], [-1059.65, -2226.88], [-1059.94, -2234.74], [-1048.05, -2235.19], [-1047.65, -2224.72], [-1057.21, -2224.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1003.2, -2299.85], [-1003.63, -2311.13], [-998.84, -2311.31], [-998.91, -2313.25], [-990.66, -2313.56], [-990.15, -2300.34], [-1003.2, -2299.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-603.12, -2374.53], [-608.29, -2374.08], [-608.49, -2376.4], [-611.45, -2376.14], [-612.3, -2386.0], [-604.18, -2386.7], [-603.12, -2374.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1022.51, -2372.72], [-1022.84, -2380.46], [-1012.66, -2380.89], [-1012.5, -2377.01], [-1014.81, -2376.91], [-1014.65, -2373.04], [-1022.51, -2372.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1262.25, -2218.61], [-1259.87, -2223.15], [-1247.56, -2216.72], [-1246.94, -2217.9], [-1240.66, -2214.63], [-1243.66, -2208.91], [-1262.25, -2218.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1229.96, -2173.35], [-1230.62, -2185.62], [-1221.73, -2186.09], [-1221.07, -2173.82], [-1223.37, -2173.7], [-1223.25, -2171.39], [-1227.89, -2171.15], [-1228.01, -2173.45], [-1229.96, -2173.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1180.73, -2360.04], [-1178.71, -2364.5], [-1177.16, -2365.25], [-1159.99, -2357.53], [-1159.13, -2356.16], [-1161.21, -2351.56], [-1162.87, -2350.77], [-1180.34, -2358.62], [-1180.73, -2360.04]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[-986.76, -2328.31], [-996.58, -2328.09], [-996.76, -2336.25], [-999.56, -2336.18], [-999.68, -2341.64], [-993.24, -2341.79], [-993.16, -2338.02], [-986.98, -2338.17], [-986.76, -2328.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1216.44, -2174.11], [-1216.8, -2183.13], [-1207.03, -2183.52], [-1206.66, -2174.5], [-1209.99, -2174.36], [-1209.95, -2173.29], [-1212.68, -2173.18], [-1212.73, -2174.26], [-1216.44, -2174.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1258.37, -2225.95], [-1255.54, -2231.23], [-1248.81, -2227.65], [-1249.14, -2227.03], [-1243.6, -2224.07], [-1245.93, -2219.72], [-1251.68, -2222.79], [-1251.85, -2222.48], [-1258.37, -2225.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-656.21, -2194.22], [-647.62, -2194.37], [-647.86, -2207.27], [-650.19, -2207.23], [-650.23, -2209.75], [-654.54, -2209.66], [-654.5, -2207.15], [-656.45, -2207.11], [-656.21, -2194.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-646.66, -2215.75], [-633.77, -2216.04], [-633.98, -2225.26], [-646.86, -2224.97], [-646.82, -2223.05], [-650.81, -2222.96], [-650.66, -2216.26], [-646.67, -2216.35], [-646.66, -2215.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-953.27, -2303.24], [-953.55, -2311.51], [-949.82, -2311.64], [-949.9, -2313.67], [-946.13, -2313.8], [-946.05, -2311.77], [-944.03, -2311.84], [-943.75, -2303.57], [-953.27, -2303.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-755.37, -2499.71], [-755.98, -2510.65], [-748.02, -2511.09], [-747.4, -2500.16], [-749.1, -2500.06], [-748.93, -2497.05], [-754.15, -2496.76], [-754.32, -2499.77], [-755.37, -2499.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-999.33, -2252.26], [-993.91, -2252.43], [-994.34, -2265.8], [-1004.05, -2265.49], [-1003.89, -2260.31], [-1001.44, -2260.4], [-1001.34, -2257.25], [-999.49, -2257.32], [-999.33, -2252.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1055.64, -2371.17], [-1055.92, -2379.07], [-1048.28, -2379.33], [-1047.99, -2371.45], [-1049.8, -2371.37], [-1049.66, -2367.39], [-1055.18, -2367.2], [-1055.33, -2371.18], [-1055.64, -2371.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1046.71, -2251.98], [-1047.07, -2263.02], [-1038.78, -2263.3], [-1038.4, -2252.25], [-1039.83, -2252.21], [-1039.74, -2249.49], [-1045.03, -2249.3], [-1045.12, -2252.02], [-1046.71, -2251.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-938.06, -2303.62], [-938.53, -2313.01], [-936.8, -2313.1], [-936.89, -2314.83], [-933.02, -2315.03], [-932.92, -2313.29], [-930.95, -2313.39], [-930.48, -2304.0], [-938.06, -2303.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-988.64, -2215.17], [-988.75, -2218.01], [-990.08, -2217.96], [-990.34, -2224.93], [-976.5, -2225.46], [-976.26, -2219.29], [-979.39, -2219.17], [-979.25, -2215.53], [-988.64, -2215.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1031.17, -2186.0], [-1031.54, -2195.49], [-1021.39, -2195.89], [-1021.01, -2186.4], [-1024.34, -2186.27], [-1024.28, -2184.63], [-1026.96, -2184.53], [-1027.02, -2186.16], [-1031.17, -2186.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-985.42, -2253.88], [-980.26, -2254.05], [-980.35, -2257.06], [-977.24, -2257.16], [-977.62, -2268.48], [-983.52, -2268.28], [-983.44, -2265.88], [-985.8, -2265.8], [-985.42, -2253.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-860.86, -2271.95], [-860.53, -2263.73], [-858.63, -2263.8], [-858.54, -2261.51], [-851.16, -2261.8], [-851.62, -2273.34], [-856.43, -2273.15], [-856.38, -2272.13], [-860.86, -2271.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-918.03, -2205.01], [-918.61, -2220.11], [-908.45, -2220.5], [-907.87, -2205.39], [-908.92, -2205.35], [-908.81, -2202.53], [-915.04, -2202.3], [-915.14, -2205.12], [-918.03, -2205.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-650.1, -2265.65], [-650.4, -2271.04], [-648.06, -2271.16], [-648.11, -2271.86], [-636.36, -2272.52], [-635.82, -2262.95], [-643.69, -2262.52], [-643.88, -2265.99], [-650.1, -2265.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1005.53, -2371.35], [-1005.94, -2379.98], [-1005.06, -2380.03], [-1005.17, -2382.26], [-998.84, -2382.56], [-998.73, -2380.32], [-997.26, -2380.4], [-996.85, -2371.76], [-1005.53, -2371.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1125.25, -2178.9], [-1125.51, -2185.4], [-1116.56, -2185.76], [-1116.29, -2179.27], [-1119.24, -2179.15], [-1119.2, -2177.9], [-1123.06, -2177.74], [-1123.12, -2178.98], [-1125.25, -2178.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-751.58, -2431.11], [-743.08, -2431.54], [-743.8, -2445.56], [-746.58, -2445.41], [-746.72, -2448.02], [-751.63, -2447.77], [-751.24, -2439.93], [-752.03, -2439.9], [-751.58, -2431.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-907.3, -2260.38], [-907.6, -2269.12], [-905.57, -2269.19], [-905.62, -2270.75], [-900.38, -2270.94], [-900.32, -2269.37], [-896.07, -2269.52], [-895.78, -2260.78], [-907.3, -2260.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1107.37, -2178.55], [-1107.62, -2185.96], [-1098.72, -2186.27], [-1098.47, -2178.86], [-1102.89, -2178.7], [-1102.85, -2177.71], [-1106.34, -2177.59], [-1106.38, -2178.57], [-1107.37, -2178.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1050.56, -2183.59], [-1058.25, -2183.22], [-1058.47, -2187.62], [-1059.0, -2187.6], [-1059.27, -2193.03], [-1058.74, -2193.06], [-1058.92, -2196.66], [-1051.23, -2197.04], [-1050.56, -2183.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1268.35, -2208.3], [-1264.57, -2215.34], [-1254.29, -2209.87], [-1254.66, -2209.19], [-1252.55, -2208.06], [-1255.74, -2202.11], [-1257.85, -2203.24], [-1258.08, -2202.83], [-1268.35, -2208.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1275.17, -2196.95], [-1271.22, -2204.11], [-1261.76, -2198.94], [-1262.47, -2197.63], [-1255.03, -2193.57], [-1257.61, -2188.86], [-1265.06, -2192.92], [-1265.69, -2191.77], [-1275.17, -2196.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-659.17, -2360.64], [-658.06, -2352.95], [-644.25, -2354.93], [-645.2, -2361.51], [-649.05, -2360.95], [-649.3, -2362.72], [-654.26, -2362.01], [-654.16, -2361.36], [-659.17, -2360.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1244.35, -2248.26], [-1239.01, -2257.46], [-1227.12, -2250.61], [-1227.7, -2249.61], [-1223.57, -2247.22], [-1227.66, -2240.16], [-1231.8, -2242.55], [-1232.46, -2241.4], [-1244.35, -2248.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-993.89, -2371.6], [-994.21, -2380.93], [-985.15, -2381.24], [-984.88, -2373.51], [-983.19, -2373.57], [-983.0, -2368.1], [-992.07, -2367.8], [-992.2, -2371.66], [-993.89, -2371.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1095.18, -2178.95], [-1088.64, -2179.28], [-1088.73, -2181.09], [-1086.1, -2181.23], [-1086.36, -2186.36], [-1087.5, -2186.29], [-1087.86, -2193.23], [-1095.91, -2192.81], [-1095.18, -2178.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1284.16, -2180.35], [-1277.78, -2191.9], [-1269.98, -2187.63], [-1268.03, -2191.16], [-1262.07, -2187.9], [-1264.02, -2184.36], [-1245.47, -2174.19], [-1250.02, -2165.96], [-1256.77, -2165.33], [-1284.16, -2180.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.402, "pop": 201, "jobs": 0}}, {"shape": {"outer": [[-1717.8, -2073.28], [-1724.17, -2079.31], [-1720.19, -2083.48], [-1720.96, -2084.21], [-1710.88, -2094.77], [-1703.04, -2087.34], [-1707.39, -2082.78], [-1706.85, -2082.27], [-1711.91, -2076.97], [-1713.16, -2078.14], [-1717.8, -2073.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1717.62, -1957.35], [-1716.08, -1960.27], [-1718.03, -1961.28], [-1716.15, -1964.86], [-1714.61, -1964.04], [-1712.89, -1967.3], [-1704.73, -1963.04], [-1709.51, -1953.95], [-1712.96, -1955.75], [-1713.31, -1955.1], [-1717.62, -1957.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1375.83, -1962.4], [-1389.21, -1969.72], [-1388.46, -1971.09], [-1388.96, -1971.35], [-1386.12, -1976.52], [-1384.51, -1977.13], [-1382.34, -1976.87], [-1377.32, -1974.11], [-1373.52, -1981.02], [-1367.42, -1977.68], [-1375.83, -1962.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1639.6, -2105.57], [-1628.51, -2099.81], [-1626.45, -2103.75], [-1625.15, -2103.06], [-1623.17, -2106.84], [-1624.47, -2107.53], [-1621.25, -2113.67], [-1635.23, -2120.93], [-1637.51, -2116.56], [-1634.64, -2115.06], [-1639.6, -2105.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-1461.49, -2378.48], [-1461.48, -2388.8], [-1451.94, -2388.8], [-1451.93, -2390.0], [-1445.91, -2389.99], [-1445.92, -2382.07], [-1449.21, -2382.08], [-1449.21, -2380.03], [-1452.35, -2380.03], [-1452.35, -2378.47], [-1461.49, -2378.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1568.61, -2250.22], [-1565.28, -2256.77], [-1560.84, -2254.53], [-1559.99, -2256.21], [-1556.0, -2254.2], [-1554.43, -2257.3], [-1547.22, -2253.66], [-1551.55, -2245.14], [-1559.53, -2249.17], [-1560.96, -2246.36], [-1568.61, -2250.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1519.88, -2210.31], [-1525.95, -2215.48], [-1521.07, -2221.18], [-1520.37, -2220.59], [-1518.09, -2223.24], [-1512.71, -2218.66], [-1514.26, -2216.86], [-1511.3, -2214.33], [-1515.57, -2209.37], [-1518.52, -2211.88], [-1519.88, -2210.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1357.94, -1952.74], [-1354.61, -1959.09], [-1345.97, -1954.59], [-1346.49, -1953.62], [-1344.33, -1952.5], [-1347.16, -1947.12], [-1350.52, -1948.87], [-1351.47, -1947.07], [-1355.74, -1949.31], [-1354.8, -1951.09], [-1357.94, -1952.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1572.18, -2310.57], [-1568.75, -2320.75], [-1560.25, -2317.91], [-1562.37, -2311.62], [-1561.14, -2311.21], [-1562.45, -2307.32], [-1566.98, -2308.84], [-1568.27, -2305.01], [-1572.53, -2306.43], [-1571.25, -2310.26], [-1572.18, -2310.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1393.33, -1886.28], [-1395.83, -1881.47], [-1393.49, -1880.26], [-1394.59, -1878.15], [-1385.53, -1873.49], [-1384.2, -1876.06], [-1385.49, -1876.73], [-1382.86, -1881.8], [-1390.46, -1885.73], [-1390.84, -1884.98], [-1393.33, -1886.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1201.12, -2447.5], [-1197.26, -2454.04], [-1187.75, -2448.48], [-1188.68, -2446.9], [-1180.56, -2442.38], [-1175.98, -2439.84], [-1184.15, -2425.32], [-1190.39, -2429.13], [-1186.34, -2436.44], [-1186.83, -2436.8], [-1187.77, -2435.19], [-1197.47, -2440.71], [-1195.45, -2444.18], [-1201.12, -2447.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-1478.37, -2384.84], [-1478.45, -2392.76], [-1473.86, -2392.81], [-1473.84, -2390.34], [-1464.44, -2390.43], [-1464.36, -2382.35], [-1463.91, -2382.35], [-1463.89, -2379.64], [-1469.91, -2379.58], [-1469.93, -2382.13], [-1474.9, -2382.08], [-1474.94, -2384.87], [-1478.37, -2384.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1463.16, -2231.49], [-1463.51, -2240.12], [-1459.86, -2240.27], [-1459.9, -2241.1], [-1456.73, -2241.23], [-1456.7, -2240.39], [-1453.4, -2240.52], [-1453.07, -2231.89], [-1454.76, -2231.82], [-1454.56, -2226.83], [-1461.94, -2226.54], [-1462.13, -2231.53], [-1463.16, -2231.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1549.36, -2174.35], [-1544.01, -2183.93], [-1533.74, -2178.24], [-1539.09, -2168.66], [-1542.25, -2170.41], [-1543.0, -2169.08], [-1540.72, -2167.82], [-1544.08, -2161.81], [-1550.28, -2165.26], [-1546.85, -2171.39], [-1546.27, -2171.07], [-1545.61, -2172.27], [-1549.36, -2174.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1332.54, -2000.24], [-1330.6, -2003.28], [-1332.13, -2004.25], [-1330.38, -2006.97], [-1327.26, -2004.99], [-1324.93, -2008.62], [-1319.01, -2004.85], [-1320.79, -2002.07], [-1319.85, -2001.47], [-1321.68, -1998.62], [-1320.56, -1997.91], [-1322.97, -1994.15], [-1332.54, -2000.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1531.21, -2458.75], [-1530.3, -2464.94], [-1528.29, -2464.64], [-1527.71, -2468.52], [-1520.9, -2467.53], [-1520.35, -2471.22], [-1513.08, -2470.15], [-1513.97, -2464.12], [-1515.19, -2464.29], [-1516.5, -2455.49], [-1525.1, -2456.75], [-1524.94, -2457.83], [-1531.21, -2458.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-1433.87, -2375.42], [-1434.27, -2383.9], [-1425.62, -2384.31], [-1425.52, -2382.08], [-1422.08, -2382.23], [-1422.19, -2384.46], [-1411.13, -2384.98], [-1410.68, -2375.52], [-1421.72, -2375.0], [-1421.82, -2376.9], [-1424.93, -2376.76], [-1424.88, -2375.84], [-1433.87, -2375.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1534.37, -2441.28], [-1522.02, -2439.04], [-1520.11, -2449.5], [-1524.64, -2450.32], [-1524.5, -2451.05], [-1526.04, -2451.32], [-1525.76, -2452.85], [-1532.06, -2454.0], [-1532.94, -2449.2], [-1534.16, -2449.42], [-1534.81, -2445.89], [-1533.58, -2445.67], [-1534.37, -2441.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1356.36, -1929.87], [-1364.7, -1934.18], [-1363.66, -1936.17], [-1366.81, -1937.79], [-1363.9, -1943.37], [-1358.53, -1940.59], [-1356.74, -1944.02], [-1350.62, -1940.86], [-1352.67, -1936.93], [-1353.63, -1937.42], [-1355.77, -1933.31], [-1354.82, -1932.82], [-1356.36, -1929.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1595.68, -2233.2], [-1607.03, -2239.38], [-1604.01, -2244.89], [-1602.08, -2243.85], [-1598.83, -2249.76], [-1593.99, -2247.12], [-1593.08, -2248.77], [-1588.5, -2246.28], [-1589.66, -2244.18], [-1585.77, -2242.06], [-1589.14, -2235.92], [-1593.03, -2238.04], [-1595.68, -2233.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1499.97, -2278.39], [-1499.78, -2289.75], [-1495.73, -2289.69], [-1495.68, -2292.77], [-1491.36, -2292.7], [-1491.41, -2289.62], [-1490.43, -2289.6], [-1490.61, -2278.24], [-1493.52, -2278.29], [-1493.54, -2276.92], [-1496.6, -2276.96], [-1496.58, -2278.33], [-1499.97, -2278.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1618.46, -2206.25], [-1612.14, -2218.32], [-1605.5, -2214.87], [-1607.67, -2210.74], [-1599.81, -2206.65], [-1601.67, -2203.1], [-1595.82, -2200.05], [-1600.51, -2191.11], [-1607.71, -2194.85], [-1606.13, -2197.87], [-1612.3, -2201.08], [-1611.49, -2202.63], [-1618.46, -2206.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-1469.51, -2277.15], [-1464.65, -2277.39], [-1464.6, -2276.48], [-1462.31, -2276.59], [-1462.36, -2277.51], [-1460.85, -2277.58], [-1461.61, -2292.81], [-1457.15, -2293.03], [-1457.47, -2299.55], [-1462.08, -2299.31], [-1461.83, -2294.45], [-1467.01, -2294.2], [-1466.93, -2292.6], [-1470.26, -2292.43], [-1469.51, -2277.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1590.79, -2269.83], [-1593.94, -2262.98], [-1592.78, -2262.45], [-1595.57, -2256.37], [-1586.86, -2252.39], [-1585.61, -2255.11], [-1583.13, -2253.97], [-1581.59, -2257.34], [-1575.89, -2254.73], [-1572.74, -2261.58], [-1584.84, -2267.11], [-1583.55, -2269.91], [-1588.12, -2272.0], [-1589.41, -2269.21], [-1590.79, -2269.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-1691.45, -2113.1], [-1684.14, -2107.33], [-1676.97, -2116.36], [-1678.93, -2117.9], [-1677.12, -2120.19], [-1675.47, -2118.89], [-1673.11, -2121.87], [-1678.78, -2126.36], [-1682.96, -2121.09], [-1684.28, -2122.13], [-1686.34, -2119.54], [-1687.42, -2120.4], [-1691.52, -2115.25], [-1690.42, -2114.4], [-1691.45, -2113.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1412.06, -2410.91], [-1421.31, -2410.52], [-1421.79, -2421.45], [-1412.54, -2421.85], [-1412.06, -2410.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1598.96, -2038.05], [-1593.1, -2034.85], [-1587.23, -2045.52], [-1593.09, -2048.72], [-1598.96, -2038.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1487.19, -2443.3], [-1482.01, -2443.55], [-1482.36, -2450.78], [-1487.55, -2450.52], [-1487.19, -2443.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1480.28, -2103.9], [-1470.58, -2111.18], [-1462.85, -2100.94], [-1472.56, -2093.67], [-1480.28, -2103.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1503.11, -2320.92], [-1495.22, -2319.59], [-1493.97, -2326.92], [-1501.86, -2328.25], [-1503.11, -2320.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1484.58, -2276.91], [-1484.68, -2284.61], [-1474.3, -2284.75], [-1474.2, -2277.05], [-1484.58, -2276.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1576.48, -2031.71], [-1571.06, -2041.61], [-1556.12, -2033.49], [-1561.55, -2023.59], [-1576.48, -2031.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-1578.06, -2124.55], [-1572.04, -2135.18], [-1556.8, -2126.6], [-1562.82, -2115.98], [-1578.06, -2124.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1579.12, -2293.43], [-1576.16, -2301.83], [-1566.94, -2298.6], [-1569.9, -2290.2], [-1579.12, -2293.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1269.75, -2319.65], [-1264.1, -2329.64], [-1244.72, -2318.76], [-1250.36, -2308.77], [-1269.75, -2319.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-1452.36, -2278.0], [-1453.12, -2292.32], [-1439.42, -2293.04], [-1438.67, -2278.72], [-1452.36, -2278.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1619.39, -2052.75], [-1614.04, -2062.33], [-1601.71, -2055.49], [-1607.05, -2045.93], [-1619.39, -2052.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1230.28, -2349.97], [-1240.15, -2355.43], [-1228.76, -2375.85], [-1218.89, -2370.39], [-1230.28, -2349.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-1470.29, -2121.5], [-1460.08, -2127.8], [-1453.43, -2117.1], [-1463.65, -2110.81], [-1470.29, -2121.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1529.74, -2182.13], [-1531.86, -2178.61], [-1526.54, -2175.44], [-1524.43, -2178.96], [-1529.74, -2182.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1480.75, -2458.19], [-1481.21, -2468.12], [-1468.93, -2468.68], [-1468.47, -2458.75], [-1480.75, -2458.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1665.8, -1967.34], [-1669.54, -1960.18], [-1660.28, -1955.39], [-1656.54, -1962.55], [-1665.8, -1967.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1487.39, -2291.26], [-1487.34, -2298.75], [-1479.85, -2298.69], [-1479.91, -2291.2], [-1487.39, -2291.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1553.54, -2118.89], [-1548.25, -2115.94], [-1542.49, -2126.19], [-1547.79, -2129.14], [-1553.54, -2118.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1549.16, -2287.7], [-1546.25, -2295.85], [-1534.6, -2291.71], [-1537.51, -2283.56], [-1549.16, -2287.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1418.88, -2326.59], [-1412.16, -2326.82], [-1412.36, -2332.9], [-1419.07, -2332.69], [-1418.88, -2326.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1587.92, -2244.32], [-1585.72, -2248.39], [-1577.56, -2243.99], [-1579.76, -2239.92], [-1587.92, -2244.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1454.68, -2301.67], [-1454.98, -2309.43], [-1443.79, -2309.86], [-1443.49, -2302.1], [-1454.68, -2301.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1601.05, -2061.34], [-1611.26, -2066.81], [-1603.1, -2081.91], [-1592.9, -2076.44], [-1601.05, -2061.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1457.28, -2134.91], [-1447.42, -2138.57], [-1441.76, -2123.44], [-1451.64, -2119.78], [-1457.28, -2134.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1483.92, -2173.82], [-1479.46, -2176.23], [-1485.65, -2187.56], [-1490.09, -2185.14], [-1483.92, -2173.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1650.58, -2109.48], [-1657.3, -2113.12], [-1651.96, -2122.89], [-1645.24, -2119.26], [-1650.58, -2109.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1550.35, -2132.88], [-1546.77, -2139.02], [-1538.27, -2134.08], [-1541.85, -2127.95], [-1550.35, -2132.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1641.72, -1969.89], [-1635.36, -1966.39], [-1631.61, -1973.15], [-1637.97, -1976.64], [-1641.72, -1969.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1255.9, -2370.36], [-1251.61, -2378.17], [-1235.34, -2369.28], [-1239.63, -2361.48], [-1255.9, -2370.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1713.79, -1969.35], [-1710.02, -1976.65], [-1699.05, -1971.02], [-1702.81, -1963.73], [-1713.79, -1969.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1472.61, -2208.14], [-1464.3, -2208.54], [-1464.69, -2216.38], [-1473.0, -2215.96], [-1472.61, -2208.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1419.08, -2276.11], [-1419.62, -2285.37], [-1405.06, -2286.22], [-1404.51, -2276.98], [-1419.08, -2276.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1585.36, -2080.25], [-1600.13, -2088.32], [-1594.11, -2099.27], [-1579.34, -2091.21], [-1585.36, -2080.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-1523.06, -2330.1], [-1521.63, -2337.66], [-1513.59, -2336.14], [-1515.02, -2328.6], [-1523.06, -2330.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1630.66, -2123.89], [-1618.53, -2117.4], [-1611.32, -2130.78], [-1623.44, -2137.27], [-1630.66, -2123.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-1552.13, -2135.72], [-1568.41, -2144.61], [-1559.06, -2161.59], [-1542.78, -2152.7], [-1552.13, -2135.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[-1648.41, -1961.2], [-1645.91, -1966.04], [-1639.97, -1962.99], [-1642.47, -1958.16], [-1648.41, -1961.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1673.62, -1934.39], [-1669.68, -1942.1], [-1678.76, -1946.7], [-1682.69, -1938.98], [-1673.62, -1934.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1236.05, -2373.99], [-1233.61, -2372.65], [-1232.06, -2375.47], [-1234.49, -2376.81], [-1236.05, -2373.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[-1744.94, -2000.73], [-1741.48, -2007.38], [-1733.94, -2003.47], [-1737.39, -1996.83], [-1744.94, -2000.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1671.36, -2062.05], [-1668.09, -2068.02], [-1676.75, -2072.73], [-1680.02, -2066.76], [-1671.36, -2062.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1453.31, -2219.47], [-1448.38, -2219.69], [-1448.68, -2226.33], [-1453.61, -2226.11], [-1453.31, -2219.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1422.73, -2289.3], [-1422.93, -2293.58], [-1416.27, -2293.87], [-1416.08, -2289.6], [-1422.73, -2289.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1575.75, -2080.25], [-1569.87, -2077.01], [-1563.74, -2088.1], [-1569.63, -2091.32], [-1575.75, -2080.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1527.01, -2195.52], [-1534.62, -2199.74], [-1529.92, -2208.17], [-1522.31, -2203.95], [-1527.01, -2195.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1528.39, -2344.65], [-1526.67, -2353.38], [-1513.75, -2350.86], [-1515.47, -2342.14], [-1528.39, -2344.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1700.35, -1992.28], [-1696.59, -1999.2], [-1685.26, -1993.1], [-1689.02, -1986.18], [-1700.35, -1992.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1421.89, -2311.38], [-1422.36, -2322.52], [-1406.51, -2323.19], [-1406.05, -2312.04], [-1421.89, -2311.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1662.56, -2073.41], [-1657.68, -2082.3], [-1643.52, -2074.59], [-1648.4, -2065.71], [-1662.56, -2073.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1619.17, -1920.4], [-1626.53, -1924.3], [-1622.8, -1931.28], [-1615.44, -1927.38], [-1619.17, -1920.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1771.71, -2003.41], [-1768.13, -2009.22], [-1761.28, -2005.04], [-1764.85, -1999.23], [-1771.71, -2003.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1406.13, -2295.27], [-1414.78, -2294.8], [-1415.36, -2305.45], [-1406.7, -2305.92], [-1406.13, -2295.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1563.37, -2104.19], [-1556.49, -2100.47], [-1552.75, -2107.34], [-1559.62, -2111.05], [-1563.37, -2104.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1447.08, -2186.63], [-1454.53, -2186.38], [-1454.77, -2193.88], [-1447.33, -2194.12], [-1447.08, -2186.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1556.05, -2354.65], [-1553.52, -2363.95], [-1537.99, -2359.76], [-1540.52, -2350.46], [-1556.05, -2354.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1708.34, -1994.56], [-1714.94, -1998.06], [-1711.78, -2003.98], [-1705.17, -2000.47], [-1708.34, -1994.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1635.69, -1925.51], [-1633.42, -1929.81], [-1627.6, -1926.77], [-1629.87, -1922.47], [-1635.69, -1925.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1436.68, -2279.13], [-1436.92, -2285.03], [-1425.01, -2285.5], [-1424.77, -2279.61], [-1436.68, -2279.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1568.95, -2211.53], [-1576.58, -2215.3], [-1571.87, -2224.75], [-1564.25, -2220.98], [-1568.95, -2211.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1444.64, -2175.93], [-1445.09, -2184.82], [-1430.68, -2185.55], [-1430.22, -2176.67], [-1444.64, -2175.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1512.52, -2459.38], [-1504.62, -2458.16], [-1503.43, -2465.72], [-1511.33, -2466.95], [-1512.52, -2459.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1723.27, -2061.7], [-1719.24, -2058.36], [-1714.63, -2063.86], [-1718.66, -2067.21], [-1723.27, -2061.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1709.0, -2009.07], [-1705.13, -2007.14], [-1702.83, -2011.67], [-1706.69, -2013.62], [-1709.0, -2009.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1654.72, -1948.76], [-1657.33, -1944.02], [-1651.99, -1941.12], [-1649.39, -1945.87], [-1654.72, -1948.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1402.84, -1867.86], [-1398.29, -1876.07], [-1387.09, -1869.91], [-1391.65, -1861.69], [-1402.84, -1867.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1437.55, -2191.31], [-1438.0, -2199.28], [-1430.86, -2199.69], [-1430.41, -2191.72], [-1437.55, -2191.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1703.28, -2052.75], [-1694.28, -2047.96], [-1686.87, -2061.79], [-1695.86, -2066.58], [-1703.28, -2052.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1707.66, -1991.86], [-1709.32, -1988.66], [-1713.85, -1990.98], [-1712.2, -1994.18], [-1707.66, -1991.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1525.01, -2123.28], [-1519.07, -2134.1], [-1505.03, -2126.45], [-1510.97, -2115.62], [-1525.01, -2123.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1411.46, -1872.09], [-1417.62, -1875.61], [-1414.08, -1881.76], [-1407.92, -1878.24], [-1411.46, -1872.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1332.86, -2018.92], [-1339.89, -2022.87], [-1334.58, -2032.23], [-1327.55, -2028.27], [-1332.86, -2018.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1519.28, -2448.53], [-1518.41, -2453.55], [-1511.05, -2452.3], [-1511.92, -2447.27], [-1519.28, -2448.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1687.63, -2044.6], [-1681.54, -2055.66], [-1671.22, -2050.03], [-1677.31, -2038.96], [-1687.63, -2044.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1510.1, -2141.22], [-1502.54, -2136.87], [-1495.58, -2148.84], [-1503.14, -2153.2], [-1510.1, -2141.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1366.94, -1953.19], [-1373.09, -1956.29], [-1370.14, -1962.1], [-1363.99, -1959.0], [-1366.94, -1953.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1360.05, -1962.7], [-1366.98, -1966.49], [-1363.25, -1973.29], [-1356.31, -1969.51], [-1360.05, -1962.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1444.65, -2323.73], [-1444.9, -2330.23], [-1430.24, -2330.8], [-1429.98, -2324.3], [-1444.65, -2323.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1602.39, -2014.58], [-1596.26, -2011.43], [-1592.85, -2018.0], [-1598.97, -2021.16], [-1602.39, -2014.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1372.44, -1933.59], [-1370.18, -1937.87], [-1379.66, -1942.88], [-1381.93, -1938.61], [-1372.44, -1933.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1492.08, -2382.93], [-1484.05, -2383.1], [-1484.22, -2390.88], [-1492.25, -2390.7], [-1492.08, -2382.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1517.19, -2140.91], [-1523.54, -2144.89], [-1519.47, -2151.34], [-1513.12, -2147.35], [-1517.19, -2140.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1612.42, -1955.83], [-1608.65, -1963.16], [-1596.92, -1957.16], [-1600.7, -1949.82], [-1612.42, -1955.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1620.53, -1945.93], [-1616.6, -1953.21], [-1602.65, -1945.73], [-1606.58, -1938.45], [-1620.53, -1945.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1608.54, -2021.21], [-1602.26, -2017.77], [-1598.68, -2024.24], [-1604.95, -2027.68], [-1608.54, -2021.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1498.17, -2393.47], [-1492.96, -2393.49], [-1492.99, -2400.52], [-1498.2, -2400.49], [-1498.17, -2393.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1586.71, -1911.94], [-1582.63, -1919.39], [-1573.42, -1914.37], [-1577.5, -1906.93], [-1586.71, -1911.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1573.16, -1934.87], [-1568.9, -1942.31], [-1561.06, -1937.85], [-1565.33, -1930.42], [-1573.16, -1934.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1543.17, -2305.52], [-1538.59, -2304.05], [-1536.58, -2310.25], [-1541.16, -2311.72], [-1543.17, -2305.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1647.59, -2152.26], [-1643.73, -2156.17], [-1638.55, -2151.09], [-1642.43, -2147.18], [-1647.59, -2152.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1500.96, -2402.66], [-1505.17, -2401.56], [-1506.89, -2408.16], [-1502.69, -2409.24], [-1500.96, -2402.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1471.05, -2333.3], [-1471.43, -2342.29], [-1459.58, -2342.8], [-1459.2, -2333.81], [-1471.05, -2333.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1563.45, -2336.48], [-1553.13, -2333.33], [-1556.0, -2324.02], [-1566.32, -2327.17], [-1563.45, -2336.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1595.3, -1898.74], [-1599.28, -1891.31], [-1586.07, -1884.29], [-1582.09, -1891.71], [-1595.3, -1898.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1582.2, -1986.18], [-1591.14, -1991.15], [-1578.59, -2013.54], [-1569.64, -2008.56], [-1582.2, -1986.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-1566.77, -2232.83], [-1562.78, -2240.18], [-1555.39, -2236.2], [-1559.39, -2228.85], [-1566.77, -2232.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1532.63, -2283.0], [-1530.77, -2291.07], [-1520.81, -2288.8], [-1522.68, -2280.72], [-1532.63, -2283.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1656.45, -2142.64], [-1664.8, -2149.06], [-1657.01, -2159.15], [-1648.65, -2152.73], [-1656.45, -2142.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1435.14, -2453.28], [-1428.16, -2453.63], [-1428.54, -2461.08], [-1435.51, -2460.73], [-1435.14, -2453.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1765.56, -2014.04], [-1761.97, -2020.57], [-1755.54, -2017.05], [-1759.13, -2010.53], [-1765.56, -2014.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1473.15, -2322.33], [-1468.17, -2322.85], [-1468.85, -2329.31], [-1473.82, -2328.8], [-1473.15, -2322.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1324.27, -2028.38], [-1331.23, -2032.36], [-1327.53, -2038.77], [-1320.57, -2034.79], [-1324.27, -2028.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1543.86, -2089.01], [-1538.08, -2099.86], [-1523.99, -2092.43], [-1529.76, -2081.57], [-1543.86, -2089.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1387.84, -1887.36], [-1380.3, -1883.24], [-1375.84, -1891.38], [-1383.37, -1895.49], [-1387.84, -1887.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1517.23, -2297.29], [-1512.7, -2296.71], [-1511.74, -2304.12], [-1516.26, -2304.7], [-1517.23, -2297.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1500.39, -2213.98], [-1496.1, -2214.36], [-1496.62, -2220.27], [-1500.91, -2219.89], [-1500.39, -2213.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1435.54, -2400.74], [-1443.18, -2400.43], [-1443.43, -2406.73], [-1435.8, -2407.04], [-1435.54, -2400.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1629.04, -2012.02], [-1639.04, -2017.3], [-1633.12, -2028.41], [-1623.13, -2023.14], [-1629.04, -2012.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1486.49, -2320.7], [-1486.09, -2328.64], [-1475.63, -2328.11], [-1476.03, -2320.18], [-1486.49, -2320.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1321.54, -2028.44], [-1318.46, -2026.8], [-1316.85, -2029.78], [-1319.93, -2031.44], [-1321.54, -2028.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-1659.66, -2051.71], [-1653.13, -2048.11], [-1648.24, -2056.92], [-1654.77, -2060.52], [-1659.66, -2051.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1552.76, -2073.87], [-1546.65, -2085.08], [-1532.48, -2077.42], [-1538.6, -2066.2], [-1552.76, -2073.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1521.04, -2436.57], [-1522.09, -2431.33], [-1515.3, -2429.98], [-1514.25, -2435.22], [-1521.04, -2436.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1570.35, -1917.0], [-1564.92, -1914.08], [-1562.17, -1919.15], [-1567.59, -1922.08], [-1570.35, -1917.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1626.75, -2181.02], [-1635.41, -2187.07], [-1627.73, -2197.97], [-1619.07, -2191.92], [-1626.75, -2181.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1435.72, -2408.6], [-1443.0, -2408.28], [-1443.34, -2416.02], [-1436.05, -2416.34], [-1435.72, -2408.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1626.39, -2032.81], [-1619.61, -2029.07], [-1615.71, -2036.11], [-1622.49, -2039.85], [-1626.39, -2032.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1499.56, -2070.93], [-1477.15, -2058.29], [-1467.11, -2075.94], [-1489.53, -2088.59], [-1499.56, -2070.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.418, "pop": 209, "jobs": 0}}, {"shape": {"outer": [[-1481.61, -2334.53], [-1490.85, -2335.71], [-1489.76, -2344.26], [-1480.51, -2343.09], [-1481.61, -2334.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1570.07, -2047.95], [-1553.48, -2038.83], [-1543.94, -2056.05], [-1560.53, -2065.17], [-1570.07, -2047.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.298, "pop": 149, "jobs": 0}}, {"shape": {"outer": [[-1580.33, -2099.34], [-1590.63, -2105.05], [-1582.11, -2120.33], [-1571.81, -2114.63], [-1580.33, -2099.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1536.04, -2424.91], [-1526.98, -2423.21], [-1524.9, -2434.23], [-1535.51, -2436.2], [-1536.97, -2428.45], [-1535.42, -2428.16], [-1536.04, -2424.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1666.89, -1970.97], [-1661.28, -1967.89], [-1659.36, -1971.39], [-1654.45, -1968.71], [-1650.92, -1975.1], [-1661.44, -1980.86], [-1666.89, -1970.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1438.34, -2334.22], [-1438.78, -2344.04], [-1433.35, -2344.28], [-1433.4, -2345.23], [-1422.94, -2345.7], [-1422.45, -2334.94], [-1438.34, -2334.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1661.09, -1981.98], [-1654.94, -1978.62], [-1652.86, -1982.42], [-1651.67, -1981.76], [-1648.18, -1988.12], [-1655.52, -1992.12], [-1661.09, -1981.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1433.57, -2236.15], [-1433.84, -2242.47], [-1444.98, -2242.0], [-1444.59, -2233.03], [-1436.95, -2233.36], [-1437.06, -2236.01], [-1433.57, -2236.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1725.12, -2004.88], [-1719.43, -2001.75], [-1716.76, -2006.58], [-1714.51, -2005.36], [-1709.07, -2015.2], [-1717.01, -2019.55], [-1725.12, -2004.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1650.56, -2087.81], [-1646.79, -2094.97], [-1634.5, -2088.56], [-1635.78, -2086.12], [-1636.7, -2086.6], [-1639.19, -2081.87], [-1650.56, -2087.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1411.73, -2391.54], [-1420.91, -2391.2], [-1421.23, -2399.76], [-1425.17, -2399.61], [-1425.36, -2404.6], [-1412.22, -2405.08], [-1411.73, -2391.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1636.99, -1917.53], [-1633.98, -1923.31], [-1621.33, -1916.75], [-1625.57, -1908.62], [-1632.74, -1912.34], [-1631.52, -1914.7], [-1636.99, -1917.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1580.75, -2186.58], [-1589.06, -2191.0], [-1580.23, -2207.45], [-1575.08, -2204.71], [-1575.6, -2203.73], [-1572.45, -2202.07], [-1580.75, -2186.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1513.43, -2228.46], [-1504.1, -2233.36], [-1499.97, -2225.55], [-1501.12, -2224.95], [-1499.46, -2221.81], [-1507.64, -2217.52], [-1513.43, -2228.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1672.75, -2036.15], [-1669.75, -2041.89], [-1668.76, -2041.37], [-1665.78, -2047.04], [-1656.33, -2042.1], [-1662.31, -2030.71], [-1672.75, -2036.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1769.6, -1998.36], [-1774.0, -1990.27], [-1760.68, -1983.06], [-1760.12, -1984.08], [-1756.9, -1982.35], [-1753.06, -1989.41], [-1769.6, -1998.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1604.17, -1998.54], [-1597.58, -2010.65], [-1589.47, -2006.27], [-1596.56, -1993.24], [-1604.02, -1997.27], [-1603.53, -1998.19], [-1604.17, -1998.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1624.88, -1934.84], [-1621.28, -1941.73], [-1610.41, -1936.12], [-1611.46, -1934.1], [-1610.12, -1933.4], [-1612.66, -1928.52], [-1624.88, -1934.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1741.98, -1976.6], [-1738.58, -1983.0], [-1733.39, -1980.26], [-1732.8, -1981.34], [-1729.78, -1979.75], [-1733.76, -1972.26], [-1741.98, -1976.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1379.02, -1909.55], [-1372.4, -1905.93], [-1371.08, -1908.32], [-1369.3, -1907.34], [-1365.58, -1914.08], [-1373.99, -1918.69], [-1379.02, -1909.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1453.64, -2444.96], [-1448.6, -2444.99], [-1448.65, -2452.35], [-1457.02, -2452.29], [-1457.0, -2447.66], [-1453.66, -2447.68], [-1453.64, -2444.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1517.79, -2279.67], [-1516.37, -2291.11], [-1514.1, -2290.83], [-1513.66, -2294.39], [-1505.31, -2293.36], [-1507.16, -2278.37], [-1517.79, -2279.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1650.43, -2167.04], [-1640.03, -2159.8], [-1634.48, -2167.7], [-1633.27, -2166.86], [-1628.06, -2174.29], [-1641.61, -2183.73], [-1646.96, -2176.13], [-1645.0, -2174.76], [-1650.43, -2167.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-1426.91, -2457.43], [-1419.4, -2457.82], [-1419.31, -2456.01], [-1415.17, -2456.22], [-1414.62, -2445.68], [-1427.99, -2444.99], [-1428.28, -2450.6], [-1426.56, -2450.69], [-1426.91, -2457.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1510.81, -2335.85], [-1508.78, -2347.3], [-1505.17, -2346.67], [-1505.03, -2347.5], [-1499.53, -2346.54], [-1499.68, -2345.71], [-1496.39, -2345.12], [-1498.42, -2333.67], [-1510.81, -2335.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1670.1, -1945.71], [-1677.57, -1949.64], [-1673.32, -1957.67], [-1665.84, -1953.74], [-1667.17, -1951.23], [-1664.37, -1949.76], [-1667.04, -1944.72], [-1669.84, -1946.2], [-1670.1, -1945.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1708.56, -1983.17], [-1706.59, -1986.66], [-1703.4, -1984.89], [-1701.78, -1987.77], [-1692.33, -1982.52], [-1696.61, -1974.87], [-1700.6, -1977.09], [-1699.89, -1978.35], [-1708.56, -1983.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1249.81, -2327.41], [-1241.7, -2322.62], [-1236.48, -2331.37], [-1244.59, -2336.17], [-1245.14, -2335.25], [-1248.7, -2337.35], [-1252.9, -2330.3], [-1249.34, -2328.19], [-1249.81, -2327.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1533.83, -2183.57], [-1542.46, -2188.32], [-1537.58, -2197.12], [-1528.94, -2192.37], [-1529.69, -2191.01], [-1525.88, -2188.92], [-1529.09, -2183.13], [-1532.9, -2185.23], [-1533.83, -2183.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1463.95, -2458.39], [-1464.33, -2468.85], [-1460.41, -2468.99], [-1460.45, -2469.96], [-1451.04, -2470.31], [-1450.54, -2456.69], [-1456.4, -2456.47], [-1456.48, -2458.67], [-1463.95, -2458.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1773.5, -2027.6], [-1766.16, -2040.41], [-1764.43, -2039.43], [-1762.58, -2042.65], [-1756.76, -2039.34], [-1758.6, -2036.12], [-1755.67, -2034.46], [-1762.99, -2021.63], [-1773.5, -2027.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1462.43, -2172.21], [-1464.3, -2180.8], [-1463.62, -2180.94], [-1464.43, -2184.67], [-1454.82, -2186.73], [-1453.9, -2182.5], [-1451.04, -2183.11], [-1449.28, -2175.04], [-1462.43, -2172.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1608.33, -2136.06], [-1618.63, -2141.61], [-1615.29, -2147.78], [-1615.77, -2148.04], [-1614.23, -2150.89], [-1613.74, -2150.63], [-1610.48, -2156.65], [-1600.18, -2151.11], [-1608.33, -2136.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1729.2, -2074.25], [-1735.35, -2066.96], [-1733.03, -2065.02], [-1733.34, -2064.64], [-1731.64, -2063.22], [-1731.33, -2063.59], [-1727.58, -2060.45], [-1721.44, -2067.75], [-1729.2, -2074.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1649.07, -1925.77], [-1645.19, -1932.92], [-1638.14, -1929.13], [-1642.02, -1921.97], [-1644.97, -1923.57], [-1645.75, -1922.12], [-1647.51, -1923.06], [-1646.73, -1924.51], [-1649.07, -1925.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1597.53, -2156.09], [-1606.49, -2160.9], [-1604.13, -2165.27], [-1607.18, -2166.9], [-1601.94, -2176.58], [-1596.89, -2173.87], [-1598.0, -2171.83], [-1591.05, -2168.09], [-1597.53, -2156.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1456.63, -2333.73], [-1456.98, -2342.87], [-1443.86, -2343.36], [-1443.52, -2334.21], [-1447.76, -2334.06], [-1447.61, -2330.17], [-1454.86, -2329.91], [-1455.0, -2333.78], [-1456.63, -2333.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1473.05, -2446.54], [-1473.15, -2454.0], [-1465.11, -2454.11], [-1465.01, -2446.64], [-1466.26, -2446.63], [-1466.23, -2443.99], [-1471.9, -2443.9], [-1471.94, -2446.55], [-1473.05, -2446.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1561.67, -2339.14], [-1557.88, -2352.22], [-1550.19, -2350.01], [-1551.32, -2346.1], [-1549.83, -2345.66], [-1550.05, -2344.9], [-1544.84, -2343.4], [-1547.27, -2335.01], [-1561.67, -2339.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1475.2, -2166.67], [-1479.44, -2174.61], [-1477.63, -2175.57], [-1479.27, -2178.65], [-1473.56, -2181.68], [-1471.92, -2178.62], [-1470.35, -2179.45], [-1466.09, -2171.51], [-1475.2, -2166.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1354.67, -1963.51], [-1350.59, -1971.25], [-1339.63, -1965.52], [-1341.59, -1961.82], [-1339.08, -1960.51], [-1341.52, -1955.88], [-1352.11, -1961.42], [-1351.79, -1962.01], [-1354.67, -1963.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1356.62, -2049.38], [-1352.04, -2057.53], [-1342.66, -2052.28], [-1341.5, -2054.34], [-1335.31, -2050.88], [-1339.43, -2043.55], [-1335.18, -2041.17], [-1336.8, -2038.3], [-1356.62, -2049.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-1325.94, -2015.74], [-1322.49, -2021.6], [-1317.54, -2018.71], [-1317.09, -2019.48], [-1309.41, -2015.0], [-1313.49, -2008.08], [-1321.11, -2012.53], [-1320.94, -2012.82], [-1325.94, -2015.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1480.59, -2227.46], [-1473.91, -2227.76], [-1473.98, -2229.12], [-1467.73, -2229.41], [-1468.31, -2241.65], [-1477.24, -2241.23], [-1477.16, -2239.72], [-1481.16, -2239.53], [-1480.59, -2227.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1372.62, -1919.77], [-1364.76, -1915.64], [-1362.99, -1918.98], [-1361.73, -1918.32], [-1360.16, -1921.25], [-1361.42, -1921.91], [-1360.07, -1924.47], [-1367.93, -1928.61], [-1372.62, -1919.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1314.4, -2023.15], [-1309.5, -2031.89], [-1308.49, -2031.33], [-1307.15, -2033.72], [-1301.87, -2030.79], [-1303.21, -2028.39], [-1302.05, -2027.75], [-1306.95, -2019.0], [-1314.4, -2023.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1496.64, -2152.01], [-1506.31, -2162.96], [-1499.28, -2169.13], [-1495.15, -2164.45], [-1488.05, -2170.67], [-1481.68, -2163.46], [-1492.89, -2153.64], [-1493.71, -2154.57], [-1496.64, -2152.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-1376.44, -1893.73], [-1384.79, -1898.34], [-1381.37, -1904.48], [-1383.23, -1905.5], [-1381.88, -1907.91], [-1380.03, -1906.9], [-1379.45, -1907.94], [-1371.1, -1903.32], [-1376.44, -1893.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1334.69, -1974.47], [-1338.5, -1976.61], [-1342.44, -1969.64], [-1349.38, -1973.53], [-1344.78, -1981.65], [-1342.92, -1980.6], [-1335.3, -1994.07], [-1326.43, -1989.09], [-1334.69, -1974.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-1624.71, -2009.59], [-1615.94, -2004.93], [-1608.38, -2019.07], [-1610.93, -2020.43], [-1609.98, -2022.21], [-1613.35, -2024.0], [-1614.3, -2022.21], [-1617.15, -2023.72], [-1624.71, -2009.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1698.97, -2003.43], [-1696.23, -2008.23], [-1693.98, -2006.95], [-1692.67, -2009.25], [-1680.99, -2002.64], [-1683.04, -1999.04], [-1681.44, -1998.14], [-1683.44, -1994.63], [-1698.97, -2003.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1580.0, -1923.84], [-1573.34, -1920.4], [-1569.13, -1928.46], [-1570.09, -1928.97], [-1569.11, -1930.85], [-1574.07, -1933.42], [-1575.05, -1931.53], [-1575.8, -1931.92], [-1580.0, -1923.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1515.85, -2390.0], [-1513.14, -2400.67], [-1506.09, -2398.9], [-1506.73, -2396.39], [-1502.05, -2395.21], [-1504.59, -2385.2], [-1511.14, -2386.86], [-1510.67, -2388.7], [-1515.85, -2390.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1678.38, -2131.61], [-1669.3, -2124.5], [-1666.55, -2128.0], [-1664.63, -2126.49], [-1657.87, -2135.07], [-1661.74, -2138.09], [-1660.0, -2140.29], [-1667.14, -2145.87], [-1678.38, -2131.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[-1193.25, -2452.47], [-1190.26, -2457.41], [-1187.89, -2456.09], [-1186.48, -2458.68], [-1176.44, -2452.84], [-1177.34, -2451.21], [-1175.68, -2450.44], [-1173.39, -2454.71], [-1168.83, -2451.96], [-1175.98, -2439.84], [-1180.56, -2442.38], [-1179.25, -2444.52], [-1193.25, -2452.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1543.6, -2395.06], [-1535.21, -2393.11], [-1531.23, -2410.04], [-1539.61, -2412.0], [-1542.06, -2401.6], [-1543.31, -2401.9], [-1543.95, -2399.17], [-1542.7, -2398.88], [-1543.6, -2395.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1746.31, -2012.22], [-1739.24, -2008.62], [-1730.85, -2024.96], [-1736.48, -2027.84], [-1737.88, -2025.1], [-1740.48, -2026.42], [-1744.63, -2018.33], [-1743.48, -2017.75], [-1746.31, -2012.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1499.67, -2455.84], [-1500.03, -2464.99], [-1496.31, -2465.14], [-1496.4, -2467.63], [-1487.67, -2467.98], [-1487.57, -2465.49], [-1485.71, -2465.57], [-1485.35, -2456.42], [-1499.67, -2455.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1497.32, -2229.33], [-1497.76, -2237.03], [-1484.22, -2237.78], [-1483.4, -2223.21], [-1493.69, -2222.63], [-1493.89, -2226.16], [-1496.15, -2226.03], [-1496.34, -2229.39], [-1497.32, -2229.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1593.59, -1901.82], [-1589.81, -1908.71], [-1575.56, -1900.96], [-1574.26, -1903.31], [-1569.13, -1900.52], [-1572.49, -1894.39], [-1579.99, -1898.48], [-1581.7, -1895.35], [-1593.59, -1901.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1697.12, -2091.54], [-1705.15, -2098.67], [-1702.81, -2101.28], [-1703.86, -2102.21], [-1700.35, -2106.12], [-1699.31, -2105.19], [-1695.14, -2109.85], [-1687.11, -2102.72], [-1697.12, -2091.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1416.28, -2338.56], [-1416.84, -2348.4], [-1400.02, -2349.37], [-1399.67, -2343.22], [-1400.39, -2343.18], [-1400.29, -2341.34], [-1401.19, -2340.24], [-1410.74, -2339.68], [-1410.7, -2338.89], [-1416.28, -2338.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-433.92, -2068.34], [-442.72, -2067.71], [-443.04, -2072.21], [-444.72, -2072.09], [-445.15, -2078.07], [-441.31, -2078.34], [-441.65, -2083.0], [-431.4, -2083.74], [-430.43, -2070.21], [-434.03, -2069.95], [-433.92, -2068.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-449.87, -2113.27], [-450.23, -2117.49], [-449.14, -2117.59], [-449.66, -2123.76], [-440.18, -2124.56], [-439.34, -2114.67], [-434.79, -2115.05], [-434.36, -2109.97], [-440.07, -2109.5], [-440.46, -2114.06], [-449.87, -2113.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-489.22, -2099.36], [-488.81, -2094.0], [-485.73, -2094.23], [-485.59, -2092.37], [-483.83, -2092.5], [-483.77, -2091.7], [-475.15, -2092.33], [-475.39, -2095.5], [-473.41, -2095.65], [-473.78, -2100.5], [-489.22, -2099.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-361.54, -2349.89], [-368.33, -2349.63], [-368.62, -2357.2], [-369.08, -2357.18], [-369.54, -2368.98], [-367.69, -2369.05], [-367.7, -2369.46], [-361.75, -2369.7], [-361.27, -2357.35], [-361.83, -2357.34], [-361.54, -2349.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-373.1, -2307.87], [-373.6, -2318.57], [-367.39, -2318.87], [-367.15, -2314.04], [-365.6, -2314.12], [-365.33, -2308.23], [-365.88, -2308.21], [-365.78, -2305.94], [-372.38, -2305.63], [-372.49, -2307.9], [-373.1, -2307.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-463.25, -2001.85], [-472.93, -2000.72], [-473.99, -2009.79], [-465.71, -2010.77], [-465.51, -2009.14], [-464.42, -2009.26], [-464.13, -2006.87], [-465.22, -2006.74], [-465.03, -2005.07], [-463.65, -2005.23], [-463.25, -2001.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-444.14, -2053.87], [-444.53, -2061.55], [-443.1, -2061.62], [-443.16, -2062.66], [-432.25, -2063.22], [-432.1, -2060.2], [-429.43, -2060.33], [-429.22, -2056.09], [-431.88, -2055.96], [-431.81, -2054.5], [-444.14, -2053.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-499.19, -2348.04], [-493.73, -2348.2], [-493.83, -2351.35], [-490.43, -2351.45], [-490.68, -2359.62], [-494.37, -2359.5], [-494.54, -2364.77], [-493.21, -2364.81], [-493.35, -2369.34], [-499.85, -2369.15], [-499.19, -2348.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-447.52, -2086.39], [-438.11, -2087.33], [-438.72, -2093.39], [-435.73, -2093.68], [-436.19, -2098.31], [-429.32, -2098.99], [-429.92, -2104.92], [-436.52, -2104.27], [-436.2, -2100.99], [-448.85, -2099.74], [-447.52, -2086.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-421.26, -2300.77], [-421.83, -2311.22], [-418.06, -2311.42], [-417.92, -2308.93], [-415.8, -2309.04], [-416.03, -2313.3], [-415.11, -2313.35], [-415.22, -2315.37], [-411.13, -2315.6], [-411.02, -2313.58], [-410.38, -2313.61], [-409.72, -2301.4], [-421.26, -2300.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-444.54, -2357.81], [-440.12, -2357.98], [-440.2, -2360.04], [-435.49, -2360.22], [-435.74, -2366.75], [-438.25, -2366.65], [-438.41, -2370.81], [-443.17, -2370.63], [-443.11, -2369.19], [-446.53, -2369.06], [-446.32, -2363.68], [-444.77, -2363.75], [-444.54, -2357.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-405.88, -2076.8], [-406.02, -2080.76], [-409.42, -2080.64], [-409.55, -2084.27], [-403.09, -2084.5], [-403.17, -2086.78], [-390.23, -2087.23], [-389.88, -2077.36], [-393.16, -2077.25], [-392.97, -2071.84], [-399.09, -2071.63], [-399.28, -2077.03], [-405.88, -2076.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-405.83, -2104.83], [-405.99, -2108.39], [-402.7, -2108.53], [-402.79, -2110.49], [-406.08, -2110.34], [-406.32, -2115.67], [-403.03, -2115.82], [-403.08, -2117.02], [-390.96, -2117.56], [-390.58, -2108.96], [-400.51, -2108.53], [-400.36, -2105.07], [-405.83, -2104.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-439.08, -2130.16], [-450.5, -2129.34], [-450.52, -2129.69], [-451.84, -2129.59], [-452.26, -2135.44], [-450.94, -2135.53], [-451.5, -2143.23], [-445.06, -2143.69], [-444.87, -2140.97], [-443.85, -2141.05], [-443.6, -2137.47], [-439.62, -2137.75], [-439.08, -2130.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-440.61, -2029.63], [-440.75, -2032.51], [-442.53, -2032.42], [-442.79, -2037.53], [-441.01, -2037.62], [-441.05, -2038.45], [-428.3, -2039.09], [-428.19, -2036.89], [-425.56, -2037.02], [-425.36, -2033.06], [-428.0, -2032.93], [-427.86, -2030.27], [-440.61, -2029.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-477.36, -2301.3], [-473.66, -2301.5], [-473.64, -2301.22], [-472.3, -2299.66], [-469.79, -2299.8], [-468.46, -2301.5], [-468.47, -2301.79], [-467.85, -2301.83], [-468.65, -2316.28], [-471.5, -2316.13], [-471.67, -2319.27], [-475.37, -2319.06], [-475.2, -2315.93], [-478.15, -2315.77], [-477.36, -2301.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-496.36, -2296.93], [-496.42, -2298.63], [-497.14, -2298.61], [-497.48, -2308.9], [-496.76, -2308.92], [-496.87, -2312.0], [-492.59, -2312.15], [-492.68, -2314.8], [-487.29, -2314.98], [-487.06, -2308.28], [-488.82, -2308.22], [-488.51, -2299.19], [-489.13, -2299.17], [-489.06, -2297.18], [-496.36, -2296.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-529.93, -2297.25], [-524.61, -2297.49], [-524.8, -2301.75], [-523.48, -2301.81], [-523.73, -2307.36], [-525.05, -2307.3], [-525.21, -2311.0], [-525.63, -2310.98], [-525.79, -2314.44], [-531.37, -2314.19], [-531.06, -2307.29], [-532.6, -2307.22], [-532.33, -2301.23], [-530.12, -2301.33], [-529.93, -2297.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-407.82, -2135.24], [-408.14, -2143.96], [-405.01, -2144.08], [-405.04, -2145.13], [-402.69, -2145.21], [-402.75, -2146.98], [-394.8, -2147.28], [-394.73, -2145.57], [-392.12, -2145.65], [-391.87, -2138.86], [-394.48, -2138.76], [-394.44, -2137.51], [-401.42, -2137.25], [-401.35, -2135.48], [-407.82, -2135.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-394.32, -2227.25], [-394.82, -2235.05], [-394.37, -2235.07], [-394.61, -2238.81], [-390.27, -2239.09], [-390.18, -2237.69], [-388.89, -2237.77], [-388.75, -2235.68], [-384.83, -2235.93], [-384.72, -2234.15], [-382.28, -2234.31], [-381.96, -2229.38], [-384.64, -2229.21], [-384.61, -2228.67], [-389.48, -2228.35], [-389.43, -2227.57], [-394.32, -2227.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-408.46, -2006.68], [-408.73, -2013.16], [-402.51, -2013.43], [-402.24, -2006.93], [-408.46, -2006.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-455.98, -2358.47], [-448.71, -2358.88], [-449.37, -2370.56], [-456.64, -2370.15], [-455.98, -2358.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-425.74, -2160.09], [-419.96, -2160.37], [-420.63, -2174.24], [-426.4, -2173.96], [-425.74, -2160.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-499.1, -2321.98], [-491.82, -2322.36], [-492.29, -2331.12], [-499.57, -2330.73], [-499.1, -2321.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-470.69, -2337.68], [-470.84, -2341.83], [-464.46, -2342.07], [-464.3, -2337.92], [-470.69, -2337.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-440.91, -2042.09], [-441.32, -2050.12], [-432.0, -2050.61], [-431.57, -2042.58], [-440.91, -2042.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-378.15, -2243.18], [-378.4, -2248.3], [-370.55, -2248.69], [-370.3, -2243.57], [-378.15, -2243.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-435.54, -2153.16], [-429.71, -2153.46], [-430.74, -2174.04], [-436.58, -2173.74], [-435.54, -2153.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.077, "pop": 0, "jobs": 77}}, {"shape": {"outer": [[-473.9, -2026.01], [-468.03, -2026.59], [-468.88, -2035.17], [-474.75, -2034.59], [-473.9, -2026.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-507.24, -2325.56], [-507.52, -2331.01], [-500.76, -2331.36], [-500.47, -2325.92], [-507.24, -2325.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-500.35, -2337.17], [-492.99, -2337.42], [-493.26, -2344.83], [-500.62, -2344.56], [-500.35, -2337.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-410.31, -2009.85], [-416.71, -2009.27], [-417.35, -2016.11], [-410.95, -2016.69], [-410.31, -2009.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-440.04, -2301.49], [-440.51, -2311.46], [-429.11, -2312.01], [-428.63, -2302.03], [-440.04, -2301.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-532.31, -2336.45], [-532.62, -2343.71], [-525.41, -2344.01], [-525.1, -2336.75], [-532.31, -2336.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-377.68, -2236.26], [-377.85, -2242.46], [-371.85, -2242.63], [-371.67, -2236.43], [-377.68, -2236.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-481.85, -2318.65], [-475.66, -2319.03], [-476.06, -2325.67], [-482.26, -2325.29], [-481.85, -2318.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-401.67, -2339.86], [-402.04, -2347.02], [-392.49, -2347.51], [-392.12, -2340.35], [-401.67, -2339.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-452.15, -2145.29], [-458.04, -2144.77], [-458.84, -2153.61], [-452.95, -2154.15], [-452.15, -2145.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-526.14, -2323.17], [-519.41, -2323.45], [-519.71, -2330.37], [-526.44, -2330.08], [-526.14, -2323.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-517.9, -2341.02], [-512.22, -2341.19], [-512.44, -2348.85], [-518.12, -2348.69], [-517.9, -2341.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-459.37, -2302.92], [-450.84, -2303.24], [-451.31, -2315.64], [-459.84, -2315.32], [-459.37, -2302.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-402.76, -2047.11], [-403.24, -2057.29], [-389.6, -2057.92], [-389.12, -2047.74], [-402.76, -2047.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-481.13, -2051.46], [-481.94, -2059.74], [-471.24, -2060.79], [-470.42, -2052.51], [-481.13, -2051.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-438.15, -2004.04], [-438.52, -2010.56], [-429.79, -2011.04], [-429.43, -2004.53], [-438.15, -2004.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-462.18, -2155.42], [-462.63, -2165.21], [-451.62, -2165.71], [-451.17, -2155.92], [-462.18, -2155.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-380.9, -2305.11], [-389.41, -2304.82], [-389.79, -2316.08], [-381.27, -2316.37], [-380.9, -2305.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-397.9, -2030.73], [-388.71, -2031.21], [-389.3, -2042.31], [-398.49, -2041.83], [-397.9, -2030.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-471.63, -1989.41], [-472.5, -1997.22], [-464.23, -1998.14], [-463.36, -1990.33], [-471.63, -1989.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-382.31, -2347.11], [-377.25, -2347.46], [-377.68, -2353.72], [-382.74, -2353.36], [-382.31, -2347.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-520.59, -2259.01], [-517.22, -2259.14], [-517.45, -2265.01], [-520.82, -2264.88], [-520.59, -2259.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-404.06, -2154.77], [-404.31, -2159.48], [-396.08, -2159.92], [-395.81, -2155.23], [-404.06, -2154.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-401.7, -2121.95], [-391.49, -2122.24], [-391.79, -2132.79], [-402.0, -2132.5], [-401.7, -2121.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-412.4, -2129.05], [-412.71, -2134.38], [-405.11, -2134.82], [-404.8, -2129.5], [-412.4, -2129.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-485.56, -1978.69], [-486.04, -1982.83], [-481.02, -1983.41], [-480.55, -1979.26], [-485.56, -1978.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-491.03, -2082.54], [-491.44, -2086.0], [-486.71, -2086.57], [-486.29, -2083.11], [-491.03, -2082.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-484.48, -1950.56], [-484.98, -1955.0], [-479.1, -1955.65], [-478.6, -1951.22], [-484.48, -1950.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-492.58, -2087.29], [-493.17, -2092.12], [-486.57, -2092.9], [-485.99, -2088.08], [-492.58, -2087.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-392.68, -2205.88], [-382.94, -2206.28], [-383.75, -2225.97], [-393.49, -2225.57], [-392.68, -2205.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-475.11, -2014.6], [-475.48, -2017.87], [-480.4, -2017.31], [-480.94, -2022.12], [-466.32, -2023.77], [-465.41, -2015.68], [-475.11, -2014.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-397.37, -2017.73], [-397.76, -2026.83], [-393.09, -2027.03], [-393.15, -2028.51], [-386.53, -2028.8], [-386.07, -2018.22], [-397.37, -2017.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-399.61, -2357.84], [-399.94, -2366.19], [-389.4, -2366.6], [-388.91, -2353.94], [-396.34, -2353.67], [-396.5, -2357.96], [-399.61, -2357.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-440.19, -2026.65], [-439.86, -2017.75], [-430.96, -2018.1], [-431.09, -2021.51], [-428.22, -2021.61], [-428.43, -2027.09], [-440.19, -2026.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-382.47, -2269.06], [-382.68, -2275.83], [-372.74, -2276.13], [-372.44, -2266.64], [-378.04, -2266.46], [-378.12, -2269.19], [-382.47, -2269.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-473.59, -1974.83], [-474.1, -1979.56], [-470.67, -1979.92], [-471.07, -1983.63], [-462.84, -1984.52], [-461.93, -1976.09], [-473.59, -1974.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-424.39, -2358.17], [-416.55, -2358.5], [-417.12, -2371.69], [-424.35, -2371.39], [-424.27, -2369.72], [-424.88, -2369.7], [-424.39, -2358.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-400.31, -2092.47], [-391.83, -2092.8], [-391.96, -2096.46], [-390.08, -2096.54], [-390.34, -2103.42], [-400.72, -2103.03], [-400.31, -2092.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-421.13, -2341.7], [-412.13, -2342.12], [-412.56, -2351.21], [-415.67, -2351.07], [-415.82, -2354.32], [-421.69, -2354.06], [-421.13, -2341.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-512.54, -2352.5], [-518.32, -2352.24], [-519.04, -2367.57], [-507.84, -2368.09], [-507.46, -2360.09], [-512.88, -2359.84], [-512.54, -2352.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-419.23, -2161.91], [-414.1, -2162.09], [-414.45, -2172.13], [-411.86, -2172.21], [-412.0, -2176.02], [-414.58, -2175.92], [-414.71, -2179.61], [-419.84, -2179.43], [-419.23, -2161.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.064, "pop": 0, "jobs": 64}}, {"shape": {"outer": [[-477.92, -2038.69], [-468.91, -2039.57], [-469.2, -2042.58], [-468.03, -2042.69], [-468.3, -2045.47], [-469.47, -2045.35], [-469.75, -2048.26], [-478.77, -2047.38], [-477.92, -2038.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-438.61, -1982.96], [-439.22, -1990.42], [-430.02, -1991.17], [-429.61, -1986.05], [-427.56, -1986.22], [-427.31, -1983.16], [-433.28, -1982.68], [-433.34, -1983.37], [-438.61, -1982.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-394.78, -1999.94], [-386.5, -2000.27], [-386.65, -2004.1], [-385.65, -2004.14], [-385.75, -2006.8], [-386.75, -2006.76], [-386.91, -2010.66], [-395.19, -2010.33], [-394.78, -1999.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-524.38, -2355.81], [-524.74, -2365.95], [-526.1, -2365.9], [-526.16, -2367.92], [-531.13, -2367.75], [-531.06, -2365.72], [-534.02, -2365.63], [-533.67, -2355.49], [-524.38, -2355.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-476.03, -2350.43], [-467.2, -2350.75], [-467.76, -2366.36], [-470.58, -2366.27], [-470.62, -2367.48], [-473.46, -2367.38], [-473.39, -2365.43], [-476.56, -2365.32], [-476.03, -2350.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-397.41, -2267.01], [-397.67, -2274.8], [-394.25, -2274.91], [-394.28, -2275.75], [-391.98, -2275.83], [-391.95, -2275.0], [-388.23, -2275.13], [-387.97, -2267.33], [-397.41, -2267.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-372.47, -2360.36], [-381.04, -2359.99], [-381.14, -2362.29], [-379.99, -2362.33], [-380.27, -2369.08], [-381.42, -2369.03], [-381.54, -2371.74], [-372.97, -2372.1], [-372.47, -2360.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-480.71, -2065.84], [-480.79, -2066.66], [-485.31, -2066.27], [-485.82, -2072.02], [-481.3, -2072.43], [-481.41, -2073.61], [-472.3, -2074.42], [-471.61, -2066.64], [-480.71, -2065.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-534.36, -2262.7], [-530.6, -2262.85], [-530.58, -2262.41], [-522.23, -2262.74], [-522.58, -2271.19], [-525.94, -2271.05], [-525.99, -2272.19], [-534.73, -2271.85], [-534.36, -2262.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-512.31, -2295.76], [-504.47, -2295.97], [-504.84, -2309.61], [-505.97, -2309.58], [-506.12, -2315.3], [-511.86, -2315.13], [-511.65, -2307.54], [-512.62, -2307.51], [-512.31, -2295.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-402.19, -2162.34], [-402.68, -2172.53], [-398.7, -2172.72], [-398.78, -2174.37], [-394.19, -2174.59], [-394.06, -2172.0], [-393.42, -2172.02], [-392.98, -2162.78], [-402.19, -2162.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-484.06, -2077.06], [-484.52, -2082.04], [-481.37, -2082.33], [-481.76, -2086.38], [-472.32, -2087.28], [-471.67, -2080.42], [-480.67, -2079.58], [-480.46, -2077.4], [-484.06, -2077.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-395.44, -2245.33], [-388.18, -2245.66], [-388.53, -2253.39], [-395.79, -2253.06], [-395.75, -2251.98], [-397.75, -2251.89], [-397.52, -2246.83], [-395.51, -2246.92], [-395.44, -2245.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-145.39, -2336.75], [-145.7, -2342.94], [-144.43, -2343.01], [-144.64, -2347.06], [-134.42, -2347.56], [-134.07, -2340.31], [-134.95, -2340.26], [-134.76, -2336.46], [-139.29, -2336.23], [-139.33, -2337.04], [-145.39, -2336.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-142.45, -2176.17], [-142.72, -2184.48], [-132.42, -2184.83], [-132.22, -2178.81], [-135.05, -2178.71], [-134.97, -2176.43], [-138.54, -2176.31], [-138.46, -2174.18], [-141.47, -2174.08], [-141.54, -2176.21], [-142.45, -2176.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-86.82, -2309.52], [-55.85, -2310.9], [-56.69, -2329.9], [-53.46, -2330.05], [-52.96, -2319.08], [-29.81, -2320.12], [-30.07, -2325.86], [-15.67, -2326.5], [-15.93, -2332.29], [-14.46, -2332.36], [-14.79, -2339.64], [-16.29, -2339.57], [-16.57, -2345.72], [-54.24, -2344.03], [-54.0, -2338.86], [-57.09, -2338.73], [-59.11, -2383.77], [-90.09, -2382.39], [-86.82, -2309.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2021}}, {"shape": {"outer": [[-71.65, -2162.37], [-73.5, -2163.52], [-75.26, -2161.27], [-77.77, -2159.56], [-80.04, -2158.57], [-82.16, -2158.01], [-82.0, -2156.12], [-110.26, -2154.77], [-110.89, -2168.97], [-101.72, -2169.23], [-101.83, -2173.3], [-91.35, -2173.75], [-88.52, -2176.03], [-85.78, -2177.63], [-82.45, -2178.88], [-76.83, -2187.82], [-73.56, -2185.77], [-68.6, -2193.65], [-66.95, -2192.61], [-66.15, -2193.89], [-57.69, -2188.61], [-58.49, -2187.34], [-56.67, -2186.2], [-71.65, -2162.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.652, "pop": 0, "jobs": 652}}, {"shape": {"outer": [[-147.54, -2319.34], [-147.9, -2329.51], [-137.02, -2329.89], [-136.66, -2319.71], [-147.54, -2319.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-129.22, -2316.02], [-121.42, -2316.3], [-121.69, -2324.03], [-129.5, -2323.75], [-129.22, -2316.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-127.39, -2172.69], [-127.81, -2184.82], [-118.97, -2185.13], [-118.54, -2172.99], [-127.39, -2172.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-144.41, -2298.43], [-145.01, -2310.1], [-135.74, -2310.57], [-135.13, -2298.92], [-144.41, -2298.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-129.69, -2272.66], [-123.82, -2272.89], [-124.04, -2278.59], [-129.9, -2278.37], [-129.69, -2272.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-129.05, -2219.53], [-121.93, -2219.84], [-122.25, -2227.45], [-129.37, -2227.15], [-129.05, -2219.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-24.06, -2361.87], [-25.2, -2388.19], [11.59, -2389.78], [12.73, -2363.46], [-24.06, -2361.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.621, "pop": 0, "jobs": 621}}, {"shape": {"outer": [[-149.42, -2370.65], [-149.71, -2378.52], [-136.11, -2379.02], [-135.83, -2371.13], [-149.42, -2370.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-39.55, -2552.09], [-51.42, -2536.4], [-1.83, -2499.14], [10.05, -2514.83], [-39.55, -2552.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.781, "pop": 0, "jobs": 781}}, {"shape": {"outer": [[-141.08, -2133.83], [-141.58, -2144.74], [-130.61, -2145.24], [-130.2, -2136.35], [-135.23, -2136.12], [-135.13, -2134.1], [-141.08, -2133.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-134.07, -2249.87], [-138.46, -2249.68], [-138.54, -2251.63], [-142.33, -2251.47], [-142.71, -2260.35], [-134.54, -2260.7], [-134.07, -2249.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-130.27, -2153.33], [-126.4, -2153.51], [-126.53, -2156.29], [-125.32, -2156.34], [-125.58, -2161.88], [-130.65, -2161.66], [-130.27, -2153.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-102.38, -2214.39], [-108.52, -2214.14], [-108.94, -2224.13], [-109.44, -2224.11], [-110.13, -2240.41], [-103.49, -2240.69], [-102.38, -2214.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.109, "pop": 0, "jobs": 109}}, {"shape": {"outer": [[-8.08, -2421.74], [-8.5, -2432.13], [-14.35, -2432.72], [-12.89, -2445.67], [23.51, -2442.26], [22.33, -2432.6], [28.11, -2432.84], [28.49, -2423.21], [-8.08, -2421.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.506, "pop": 0, "jobs": 506}}, {"shape": {"outer": [[-149.24, -2358.54], [-149.44, -2367.12], [-135.81, -2367.45], [-135.73, -2364.41], [-134.59, -2364.44], [-134.5, -2360.91], [-135.65, -2360.88], [-135.6, -2358.87], [-149.24, -2358.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-146.0, -2281.29], [-146.35, -2289.54], [-134.4, -2290.04], [-134.35, -2289.08], [-131.56, -2289.21], [-131.34, -2283.92], [-134.13, -2283.81], [-134.05, -2281.8], [-146.0, -2281.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-142.89, -2264.12], [-143.18, -2271.76], [-131.0, -2272.22], [-130.71, -2264.58], [-133.99, -2264.45], [-133.96, -2263.7], [-139.09, -2263.51], [-139.12, -2264.26], [-142.89, -2264.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-126.93, -2133.76], [-117.97, -2134.02], [-118.37, -2147.57], [-120.61, -2147.51], [-120.66, -2149.08], [-124.43, -2148.98], [-124.38, -2147.4], [-127.33, -2147.3], [-126.93, -2133.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-142.5, -2223.72], [-132.68, -2224.11], [-133.34, -2240.91], [-138.48, -2240.71], [-138.59, -2243.65], [-144.0, -2243.44], [-143.72, -2236.25], [-143.0, -2236.29], [-142.5, -2223.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-280.11, -2318.33], [-280.21, -2321.32], [-279.11, -2321.37], [-279.31, -2327.06], [-274.26, -2327.23], [-274.19, -2325.06], [-269.87, -2325.21], [-269.94, -2327.37], [-263.57, -2327.59], [-263.29, -2318.88], [-280.11, -2318.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-287.16, -2406.33], [-287.69, -2421.44], [-282.31, -2421.63], [-282.22, -2418.9], [-279.08, -2419.01], [-278.64, -2406.63], [-281.93, -2406.52], [-281.86, -2404.49], [-286.78, -2404.32], [-286.84, -2406.35], [-287.16, -2406.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-361.99, -2401.21], [-362.26, -2406.3], [-362.62, -2406.27], [-362.89, -2411.62], [-357.76, -2411.88], [-357.72, -2411.13], [-353.0, -2411.36], [-352.47, -2401.06], [-355.91, -2400.89], [-355.95, -2401.52], [-361.99, -2401.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-186.13, -2320.78], [-186.46, -2328.82], [-180.17, -2329.08], [-180.24, -2330.81], [-172.18, -2331.14], [-172.01, -2326.91], [-173.56, -2326.85], [-173.35, -2321.76], [-180.94, -2321.46], [-180.92, -2320.99], [-186.13, -2320.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-376.25, -2402.53], [-376.67, -2411.69], [-376.08, -2411.72], [-376.21, -2414.43], [-371.79, -2414.64], [-371.71, -2413.04], [-367.39, -2413.24], [-366.89, -2402.34], [-369.9, -2402.21], [-369.92, -2402.82], [-376.25, -2402.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-310.15, -2402.78], [-310.65, -2412.9], [-303.19, -2413.27], [-303.01, -2409.5], [-302.19, -2409.54], [-301.88, -2403.19], [-303.91, -2403.09], [-303.83, -2401.49], [-307.22, -2401.31], [-307.29, -2402.92], [-310.15, -2402.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-345.19, -2356.6], [-345.44, -2362.74], [-344.13, -2362.8], [-344.47, -2371.6], [-336.61, -2371.91], [-336.41, -2366.96], [-335.97, -2366.98], [-335.75, -2361.32], [-338.38, -2361.22], [-338.2, -2356.86], [-345.19, -2356.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-205.97, -2370.47], [-206.58, -2382.81], [-177.76, -2384.23], [-177.72, -2383.4], [-176.08, -2383.48], [-175.94, -2380.67], [-174.06, -2380.77], [-173.83, -2376.09], [-175.71, -2376.0], [-175.51, -2371.98], [-205.97, -2370.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.308, "pop": 154, "jobs": 0}}, {"shape": {"outer": [[-280.92, -2305.82], [-281.18, -2312.29], [-279.19, -2312.37], [-279.24, -2313.41], [-275.67, -2313.55], [-275.72, -2314.71], [-268.67, -2315.0], [-268.54, -2311.89], [-266.9, -2311.96], [-266.78, -2309.24], [-268.42, -2309.17], [-268.31, -2306.35], [-280.92, -2305.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-309.69, -2360.5], [-310.16, -2371.83], [-308.1, -2371.93], [-308.16, -2373.36], [-299.83, -2373.69], [-299.63, -2368.64], [-301.39, -2368.57], [-301.07, -2360.9], [-301.47, -2360.89], [-301.34, -2357.75], [-308.91, -2357.44], [-309.04, -2360.52], [-309.69, -2360.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-279.34, -2329.23], [-279.37, -2329.88], [-281.68, -2329.79], [-281.99, -2336.91], [-279.67, -2337.01], [-279.71, -2337.68], [-268.19, -2338.17], [-268.16, -2337.49], [-266.48, -2337.56], [-266.33, -2334.03], [-268.0, -2333.95], [-267.82, -2329.72], [-279.34, -2329.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-238.37, -2410.39], [-238.7, -2417.51], [-236.0, -2417.63], [-236.13, -2420.5], [-231.98, -2420.69], [-231.85, -2417.83], [-229.16, -2417.96], [-229.06, -2416.17], [-224.04, -2416.41], [-223.76, -2410.38], [-228.97, -2410.13], [-229.01, -2410.82], [-238.37, -2410.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-279.78, -2341.4], [-279.8, -2341.88], [-282.19, -2341.77], [-282.5, -2349.15], [-280.11, -2349.25], [-280.14, -2350.0], [-269.09, -2350.46], [-269.06, -2349.58], [-267.02, -2349.66], [-266.75, -2343.08], [-268.78, -2343.0], [-268.73, -2341.86], [-279.78, -2341.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-201.49, -2484.1], [-201.86, -2491.76], [-197.34, -2491.98], [-197.31, -2491.21], [-195.5, -2491.31], [-195.59, -2492.99], [-184.33, -2493.54], [-184.19, -2490.72], [-182.88, -2490.78], [-182.6, -2484.95], [-195.16, -2484.35], [-195.26, -2486.47], [-197.28, -2486.38], [-197.18, -2484.31], [-201.49, -2484.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-334.73, -2361.16], [-334.92, -2365.95], [-334.37, -2365.97], [-334.53, -2370.16], [-332.51, -2370.23], [-332.57, -2371.65], [-327.44, -2371.84], [-327.27, -2367.49], [-326.39, -2367.53], [-326.12, -2360.3], [-326.53, -2360.29], [-326.44, -2357.85], [-333.62, -2357.57], [-333.76, -2361.19], [-334.73, -2361.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-281.39, -2362.93], [-281.35, -2362.17], [-283.63, -2362.07], [-283.37, -2356.33], [-282.78, -2356.36], [-282.72, -2354.97], [-281.02, -2355.05], [-280.94, -2353.3], [-267.66, -2353.9], [-267.8, -2357.05], [-264.91, -2357.19], [-265.19, -2363.31], [-268.08, -2363.18], [-268.09, -2363.54], [-281.39, -2362.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-397.36, -2400.02], [-405.0, -2399.69], [-405.11, -2401.95], [-405.7, -2401.93], [-406.25, -2414.59], [-403.41, -2414.72], [-403.51, -2417.06], [-399.25, -2417.24], [-399.15, -2414.89], [-397.26, -2414.98], [-397.14, -2412.14], [-396.2, -2412.18], [-395.97, -2406.9], [-396.91, -2406.87], [-396.72, -2402.47], [-397.46, -2402.44], [-397.36, -2400.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-321.6, -2344.85], [-321.84, -2351.53], [-329.15, -2351.26], [-328.91, -2344.59], [-321.6, -2344.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-218.04, -2411.89], [-218.27, -2421.26], [-211.27, -2421.43], [-211.05, -2412.05], [-218.04, -2411.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-267.62, -2296.56], [-267.91, -2302.96], [-281.67, -2302.35], [-281.38, -2295.95], [-267.62, -2296.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-397.61, -2420.29], [-397.9, -2425.11], [-391.14, -2425.51], [-390.85, -2420.71], [-397.61, -2420.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-208.71, -2447.67], [-208.91, -2453.08], [-201.81, -2453.34], [-201.61, -2447.92], [-208.71, -2447.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-333.3, -2327.91], [-333.58, -2334.14], [-326.42, -2334.46], [-326.15, -2328.22], [-333.3, -2327.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-190.7, -2443.9], [-191.11, -2451.56], [-181.83, -2452.06], [-181.42, -2444.39], [-190.7, -2443.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-312.66, -2328.45], [-312.97, -2335.52], [-321.23, -2335.15], [-320.91, -2328.09], [-312.66, -2328.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-262.26, -2333.79], [-262.5, -2340.71], [-254.92, -2340.98], [-254.67, -2334.07], [-262.26, -2333.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-384.64, -2425.45], [-388.9, -2425.33], [-388.77, -2420.71], [-384.51, -2420.83], [-384.64, -2425.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-217.76, -2354.67], [-222.38, -2354.46], [-222.66, -2360.55], [-218.04, -2360.76], [-217.76, -2354.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-197.38, -2422.07], [-197.68, -2428.53], [-191.9, -2428.8], [-191.59, -2422.34], [-197.38, -2422.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-266.89, -2431.36], [-267.31, -2438.26], [-260.43, -2438.68], [-260.02, -2431.78], [-266.89, -2431.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-338.98, -2429.0], [-344.31, -2428.87], [-344.5, -2435.94], [-339.16, -2436.07], [-338.98, -2429.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-285.63, -2440.85], [-278.45, -2441.21], [-278.83, -2448.88], [-286.01, -2448.52], [-285.63, -2440.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-321.67, -2360.8], [-314.65, -2361.38], [-315.74, -2374.69], [-322.76, -2374.12], [-321.67, -2360.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-309.73, -2342.85], [-309.97, -2347.84], [-303.58, -2348.14], [-303.35, -2343.14], [-309.73, -2342.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-309.26, -2430.5], [-309.44, -2435.02], [-302.72, -2435.29], [-302.53, -2430.77], [-309.26, -2430.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-215.24, -2360.24], [-207.6, -2360.57], [-208.39, -2378.79], [-216.03, -2378.47], [-215.24, -2360.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-279.85, -2282.71], [-280.2, -2291.55], [-268.89, -2291.98], [-268.55, -2283.13], [-279.85, -2282.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-235.9, -2456.48], [-236.12, -2462.54], [-229.02, -2462.79], [-228.81, -2456.74], [-235.9, -2456.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-206.13, -2458.8], [-206.33, -2464.47], [-199.07, -2464.73], [-198.86, -2459.06], [-206.13, -2458.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-337.23, -2428.44], [-331.73, -2428.68], [-332.03, -2435.53], [-337.53, -2435.3], [-337.23, -2428.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-264.88, -2366.62], [-265.21, -2374.17], [-257.51, -2374.5], [-257.19, -2366.95], [-264.88, -2366.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-352.79, -2349.0], [-352.51, -2344.19], [-347.05, -2344.51], [-347.33, -2349.32], [-352.79, -2349.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-271.82, -2439.56], [-272.02, -2443.38], [-264.92, -2443.75], [-264.73, -2439.92], [-271.82, -2439.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-226.54, -2455.45], [-226.89, -2462.81], [-219.62, -2463.16], [-219.28, -2455.8], [-226.54, -2455.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-257.81, -2305.29], [-257.99, -2309.47], [-251.88, -2309.74], [-251.69, -2305.55], [-257.81, -2305.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-191.5, -2456.0], [-191.92, -2463.9], [-182.3, -2464.39], [-181.9, -2456.49], [-191.5, -2456.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-315.02, -2402.77], [-321.74, -2402.55], [-322.11, -2413.64], [-315.39, -2413.86], [-315.02, -2402.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-284.05, -2367.67], [-284.44, -2376.92], [-269.97, -2377.54], [-269.57, -2368.31], [-284.05, -2367.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-182.45, -2334.62], [-182.68, -2341.04], [-174.41, -2341.34], [-174.17, -2334.92], [-182.45, -2334.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-225.59, -2466.52], [-226.04, -2477.57], [-213.76, -2478.07], [-213.3, -2467.03], [-225.59, -2466.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-379.54, -2403.69], [-387.67, -2403.51], [-387.93, -2414.25], [-379.79, -2414.43], [-379.54, -2403.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-192.1, -2314.23], [-192.24, -2318.86], [-197.04, -2318.72], [-196.91, -2314.09], [-192.1, -2314.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-262.63, -2358.67], [-262.88, -2365.5], [-255.62, -2365.76], [-255.38, -2358.93], [-262.63, -2358.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-231.55, -2360.98], [-239.44, -2360.68], [-239.94, -2374.77], [-232.06, -2375.07], [-231.55, -2360.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-371.06, -2423.13], [-366.14, -2423.32], [-366.39, -2429.85], [-371.32, -2429.66], [-371.06, -2423.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-320.35, -2345.38], [-315.82, -2345.51], [-316.0, -2351.66], [-320.53, -2351.53], [-320.35, -2345.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-189.0, -2434.89], [-189.25, -2441.59], [-182.91, -2441.83], [-182.66, -2435.12], [-189.0, -2434.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-227.92, -2370.06], [-228.25, -2377.5], [-220.87, -2377.82], [-220.56, -2370.38], [-227.92, -2370.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-193.77, -2470.21], [-194.05, -2478.71], [-182.58, -2479.09], [-182.3, -2470.59], [-193.77, -2470.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-308.77, -2328.34], [-300.81, -2328.61], [-301.14, -2338.18], [-309.1, -2337.91], [-308.77, -2328.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-344.65, -2307.88], [-334.56, -2308.24], [-335.0, -2320.31], [-338.7, -2320.17], [-338.75, -2321.7], [-345.14, -2321.48], [-344.65, -2307.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-305.6, -2307.0], [-299.48, -2307.26], [-300.11, -2321.83], [-306.69, -2321.55], [-306.17, -2309.64], [-305.72, -2309.65], [-305.6, -2307.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-357.62, -2360.22], [-347.18, -2360.74], [-347.62, -2369.37], [-349.47, -2369.28], [-349.67, -2373.05], [-358.24, -2372.62], [-357.62, -2360.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-285.79, -2451.92], [-286.28, -2459.46], [-279.64, -2459.89], [-279.72, -2461.06], [-259.57, -2462.37], [-259.01, -2453.65], [-285.79, -2451.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-230.69, -2285.75], [-230.78, -2288.73], [-232.15, -2288.69], [-232.23, -2291.73], [-220.39, -2292.09], [-220.21, -2286.07], [-230.69, -2285.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-336.21, -2401.31], [-336.63, -2412.86], [-326.35, -2413.24], [-325.94, -2402.12], [-330.85, -2401.93], [-330.83, -2401.51], [-336.21, -2401.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-240.86, -2463.69], [-241.2, -2471.6], [-237.76, -2471.74], [-237.82, -2473.12], [-229.49, -2473.47], [-229.09, -2464.19], [-240.86, -2463.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-231.93, -2319.64], [-231.97, -2320.52], [-233.95, -2320.43], [-234.16, -2325.16], [-232.18, -2325.25], [-232.31, -2328.12], [-222.48, -2328.56], [-222.1, -2320.08], [-231.93, -2319.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-345.49, -2399.83], [-337.31, -2400.13], [-337.39, -2402.23], [-337.02, -2402.26], [-337.45, -2414.23], [-346.35, -2413.91], [-345.92, -2401.94], [-345.57, -2401.95], [-345.49, -2399.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-319.91, -2307.36], [-320.62, -2323.04], [-311.68, -2323.44], [-311.51, -2319.53], [-310.78, -2319.57], [-310.31, -2309.18], [-314.24, -2309.0], [-314.18, -2307.62], [-319.91, -2307.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-271.27, -2406.78], [-271.76, -2418.43], [-268.6, -2418.56], [-268.66, -2419.91], [-263.36, -2420.13], [-262.74, -2405.05], [-270.6, -2404.71], [-270.69, -2406.81], [-271.27, -2406.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-235.65, -2331.34], [-235.98, -2340.2], [-224.57, -2340.62], [-224.51, -2338.95], [-220.29, -2339.1], [-220.07, -2333.34], [-224.29, -2333.18], [-224.24, -2331.76], [-235.65, -2331.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-187.56, -2413.42], [-187.86, -2420.26], [-174.3, -2420.84], [-174.15, -2417.26], [-176.3, -2417.16], [-176.12, -2412.98], [-184.53, -2412.62], [-184.57, -2413.55], [-187.56, -2413.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-179.96, -2289.09], [-171.95, -2289.37], [-171.98, -2289.97], [-169.47, -2290.05], [-169.71, -2297.18], [-172.22, -2297.09], [-172.25, -2297.87], [-180.26, -2297.59], [-179.96, -2289.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-356.49, -2306.51], [-357.1, -2322.25], [-353.24, -2322.39], [-353.14, -2319.94], [-350.75, -2320.03], [-350.71, -2318.82], [-348.66, -2318.9], [-348.19, -2306.82], [-356.49, -2306.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-207.94, -2428.36], [-206.69, -2428.41], [-206.6, -2426.57], [-203.76, -2426.71], [-203.85, -2428.55], [-198.34, -2428.81], [-198.9, -2440.61], [-208.5, -2440.16], [-207.94, -2428.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-182.34, -2301.71], [-182.57, -2309.54], [-180.6, -2309.6], [-180.69, -2312.81], [-174.85, -2312.97], [-174.76, -2309.76], [-172.74, -2309.82], [-172.51, -2301.99], [-182.34, -2301.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-329.84, -2309.77], [-330.19, -2318.11], [-322.38, -2318.45], [-322.03, -2310.1], [-323.24, -2310.04], [-323.14, -2307.91], [-328.89, -2307.66], [-328.97, -2309.8], [-329.84, -2309.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-198.85, -2010.4], [-209.51, -2009.98], [-209.74, -2015.55], [-206.56, -2015.68], [-206.73, -2019.84], [-199.24, -2020.14], [-199.11, -2017.03], [-197.64, -2017.09], [-197.5, -2013.72], [-198.98, -2013.67], [-198.85, -2010.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-319.67, -2165.66], [-319.83, -2169.57], [-320.53, -2169.54], [-320.88, -2178.11], [-310.54, -2178.54], [-310.32, -2173.44], [-309.33, -2173.48], [-309.07, -2167.42], [-312.79, -2167.26], [-312.74, -2165.96], [-319.67, -2165.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-262.03, -2214.23], [-262.65, -2229.92], [-257.62, -2230.13], [-257.42, -2225.13], [-252.63, -2225.32], [-252.2, -2214.62], [-255.1, -2214.5], [-255.05, -2213.31], [-258.32, -2213.18], [-258.37, -2214.38], [-262.03, -2214.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-165.87, -2172.81], [-160.08, -2172.97], [-160.14, -2175.09], [-159.31, -2175.11], [-159.56, -2183.77], [-169.61, -2183.48], [-169.42, -2177.01], [-166.53, -2177.09], [-166.48, -2175.07], [-165.93, -2175.08], [-165.87, -2172.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-247.46, -2172.99], [-247.79, -2181.41], [-244.86, -2181.53], [-244.89, -2182.52], [-241.84, -2182.65], [-241.79, -2181.66], [-239.07, -2181.77], [-238.62, -2171.03], [-242.61, -2170.87], [-242.71, -2173.18], [-247.46, -2172.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-347.89, -2160.6], [-348.05, -2164.19], [-349.37, -2164.13], [-349.89, -2175.61], [-347.35, -2175.73], [-347.39, -2176.78], [-341.18, -2177.06], [-340.94, -2171.56], [-334.89, -2171.83], [-334.41, -2161.2], [-347.89, -2160.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-352.7, -2212.25], [-353.34, -2228.2], [-348.21, -2228.41], [-348.12, -2226.05], [-343.91, -2226.22], [-343.37, -2212.63], [-344.08, -2212.6], [-343.97, -2210.12], [-351.84, -2209.81], [-351.94, -2212.28], [-352.7, -2212.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-230.92, -2215.55], [-231.63, -2231.7], [-225.09, -2231.99], [-224.94, -2228.74], [-220.33, -2228.95], [-219.76, -2216.04], [-223.17, -2215.89], [-223.1, -2214.35], [-226.97, -2214.17], [-227.04, -2215.73], [-230.92, -2215.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-180.2, -2174.63], [-180.5, -2183.33], [-177.16, -2183.44], [-177.21, -2185.0], [-174.04, -2185.1], [-173.99, -2183.56], [-173.24, -2183.58], [-172.93, -2174.88], [-175.21, -2174.81], [-175.11, -2171.73], [-179.48, -2171.59], [-179.58, -2174.65], [-180.2, -2174.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-293.9, -2212.57], [-302.52, -2212.26], [-302.7, -2217.22], [-305.18, -2217.13], [-305.14, -2216.06], [-310.69, -2215.86], [-310.98, -2223.92], [-305.44, -2224.12], [-305.39, -2222.57], [-302.9, -2222.66], [-303.03, -2226.07], [-294.4, -2226.38], [-293.9, -2212.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-264.99, -2080.4], [-265.01, -2081.0], [-266.66, -2080.93], [-266.83, -2085.34], [-265.19, -2085.41], [-265.21, -2086.07], [-257.45, -2086.38], [-257.5, -2087.53], [-250.15, -2087.83], [-250.03, -2084.73], [-247.23, -2084.84], [-247.08, -2081.12], [-264.99, -2080.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-210.92, -2023.51], [-211.29, -2032.4], [-207.68, -2032.56], [-207.7, -2033.27], [-203.34, -2033.46], [-203.31, -2032.74], [-199.5, -2032.91], [-199.46, -2031.95], [-196.8, -2032.06], [-196.49, -2024.88], [-199.16, -2024.77], [-199.13, -2024.0], [-210.92, -2023.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-200.53, -2069.66], [-209.83, -2069.17], [-209.89, -2070.43], [-213.69, -2070.23], [-213.99, -2075.83], [-210.19, -2076.03], [-210.3, -2078.02], [-201.0, -2078.52], [-200.88, -2076.28], [-199.45, -2076.37], [-199.26, -2072.71], [-200.69, -2072.64], [-200.53, -2069.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-265.38, -2067.24], [-254.53, -2067.61], [-254.61, -2069.7], [-252.89, -2069.76], [-253.07, -2074.81], [-254.78, -2074.75], [-254.85, -2077.14], [-265.7, -2076.77], [-265.65, -2075.16], [-267.96, -2075.07], [-267.73, -2068.01], [-265.41, -2068.09], [-265.38, -2067.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-361.36, -2017.05], [-361.38, -2017.81], [-362.89, -2017.77], [-363.11, -2024.32], [-360.36, -2024.41], [-360.39, -2025.3], [-350.79, -2025.61], [-350.7, -2023.07], [-347.78, -2023.17], [-347.6, -2017.78], [-350.49, -2017.69], [-350.45, -2016.12], [-356.35, -2015.92], [-356.39, -2017.21], [-361.36, -2017.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-170.94, -2260.82], [-178.63, -2260.6], [-178.66, -2261.64], [-181.12, -2261.57], [-181.18, -2263.63], [-183.31, -2263.57], [-183.45, -2268.26], [-178.85, -2268.39], [-178.88, -2269.42], [-171.19, -2269.64], [-171.11, -2266.98], [-168.81, -2267.04], [-168.72, -2263.66], [-171.01, -2263.6], [-170.94, -2260.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-311.37, -2069.6], [-311.74, -2079.35], [-304.27, -2079.64], [-304.39, -2082.63], [-299.92, -2082.81], [-299.8, -2079.81], [-294.6, -2080.01], [-294.29, -2072.2], [-297.95, -2072.05], [-297.88, -2070.13], [-303.35, -2069.92], [-303.21, -2066.67], [-310.05, -2066.41], [-310.17, -2069.65], [-311.37, -2069.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-308.79, -2123.05], [-309.23, -2130.97], [-299.25, -2131.53], [-298.8, -2123.6], [-308.79, -2123.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-325.35, -2232.78], [-325.5, -2240.51], [-317.93, -2240.66], [-317.76, -2232.93], [-325.35, -2232.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-344.37, -2062.24], [-344.56, -2066.48], [-337.84, -2066.77], [-337.65, -2062.54], [-344.37, -2062.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-313.2, -2134.08], [-313.64, -2142.76], [-301.03, -2143.39], [-300.59, -2134.72], [-313.2, -2134.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-348.26, -2041.0], [-348.36, -2045.94], [-340.77, -2046.1], [-340.67, -2041.16], [-348.26, -2041.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-321.17, -2141.48], [-321.43, -2146.39], [-314.53, -2146.76], [-314.27, -2141.86], [-321.17, -2141.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-267.35, -2042.59], [-267.61, -2051.69], [-252.76, -2052.11], [-252.5, -2043.01], [-267.35, -2042.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-233.74, -2175.22], [-234.04, -2183.36], [-225.58, -2183.67], [-225.28, -2175.53], [-233.74, -2175.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-329.99, -2084.66], [-330.17, -2088.49], [-323.95, -2088.76], [-323.78, -2084.93], [-329.99, -2084.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-195.18, -2215.92], [-195.52, -2224.38], [-181.33, -2224.94], [-180.99, -2216.48], [-195.18, -2215.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-269.93, -2142.56], [-270.19, -2149.06], [-261.4, -2149.42], [-261.13, -2142.92], [-269.93, -2142.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-218.33, -2086.31], [-218.18, -2082.25], [-224.18, -2082.02], [-224.34, -2086.07], [-218.33, -2086.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-250.21, -2040.87], [-250.42, -2046.0], [-243.48, -2046.27], [-243.28, -2041.14], [-250.21, -2040.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-233.07, -2246.14], [-233.34, -2253.17], [-220.84, -2253.66], [-220.56, -2246.63], [-233.07, -2246.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-177.66, -2249.42], [-170.46, -2249.67], [-170.74, -2257.39], [-177.94, -2257.14], [-177.66, -2249.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-213.93, -2168.55], [-210.27, -2168.65], [-210.43, -2174.15], [-214.09, -2174.05], [-213.93, -2168.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-259.55, -2169.55], [-251.0, -2169.93], [-251.5, -2181.13], [-260.05, -2180.75], [-259.55, -2169.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-221.55, -2175.14], [-221.8, -2183.95], [-213.83, -2184.18], [-213.58, -2175.36], [-221.55, -2175.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-265.14, -2181.66], [-271.93, -2181.34], [-271.48, -2171.71], [-264.69, -2172.03], [-265.14, -2181.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-227.19, -2097.82], [-227.39, -2104.95], [-219.2, -2105.18], [-218.99, -2098.05], [-227.19, -2097.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-179.26, -2130.87], [-179.49, -2137.74], [-166.38, -2138.17], [-166.16, -2131.3], [-179.26, -2130.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-226.49, -2166.39], [-221.88, -2166.57], [-222.1, -2172.55], [-226.72, -2172.38], [-226.49, -2166.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-237.27, -2141.53], [-243.62, -2141.16], [-244.05, -2148.55], [-237.69, -2148.92], [-237.27, -2141.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-180.08, -2145.98], [-180.37, -2156.38], [-169.73, -2156.68], [-169.43, -2146.29], [-180.08, -2145.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-193.42, -2255.45], [-193.8, -2262.18], [-186.22, -2262.62], [-185.83, -2255.88], [-193.42, -2255.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-218.68, -1996.77], [-219.0, -2005.55], [-226.15, -2005.3], [-225.84, -1996.51], [-218.68, -1996.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-269.59, -2132.77], [-269.7, -2139.86], [-257.19, -2140.04], [-257.08, -2132.96], [-269.59, -2132.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-257.69, -2263.42], [-258.0, -2267.68], [-251.52, -2268.16], [-251.21, -2263.9], [-257.69, -2263.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-240.11, -2085.58], [-233.0, -2085.92], [-233.41, -2094.51], [-240.51, -2094.17], [-240.11, -2085.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-219.73, -2006.81], [-219.95, -2011.44], [-214.11, -2011.72], [-213.9, -2007.09], [-219.73, -2006.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-152.56, -2132.64], [-145.9, -2132.88], [-146.13, -2139.24], [-152.8, -2139.0], [-152.56, -2132.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-366.7, -2122.49], [-367.15, -2133.03], [-351.49, -2133.69], [-351.03, -2123.16], [-366.7, -2122.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-232.23, -2129.04], [-224.3, -2129.26], [-224.51, -2136.93], [-232.44, -2136.71], [-232.23, -2129.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-269.92, -2117.3], [-270.28, -2126.1], [-257.73, -2126.62], [-257.36, -2117.81], [-269.92, -2117.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-359.89, -1992.56], [-360.02, -1999.29], [-350.82, -1999.46], [-350.68, -1992.73], [-359.89, -1992.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-343.57, -2130.95], [-343.88, -2137.4], [-337.1, -2137.72], [-336.81, -2131.27], [-343.57, -2130.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-351.29, -2056.93], [-351.53, -2061.27], [-345.64, -2061.6], [-345.39, -2057.25], [-351.29, -2056.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-361.09, -2253.29], [-356.37, -2253.52], [-356.75, -2261.71], [-361.47, -2261.5], [-361.09, -2253.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-279.22, -2269.66], [-279.6, -2278.35], [-270.04, -2278.77], [-269.67, -2270.06], [-279.22, -2269.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-231.84, -2119.36], [-226.49, -2119.51], [-226.7, -2127.02], [-232.05, -2126.87], [-231.84, -2119.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-166.85, -2217.16], [-174.31, -2216.84], [-174.63, -2224.23], [-167.17, -2224.55], [-166.85, -2217.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-353.1, -2257.14], [-356.33, -2257.01], [-356.69, -2265.52], [-353.45, -2265.66], [-353.1, -2257.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-155.45, -2175.6], [-148.46, -2175.8], [-148.7, -2184.34], [-155.69, -2184.14], [-155.45, -2175.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-348.79, -2232.05], [-348.98, -2238.2], [-341.77, -2238.41], [-341.58, -2232.26], [-348.79, -2232.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-342.14, -2092.69], [-342.34, -2096.47], [-333.0, -2096.94], [-332.8, -2093.18], [-342.14, -2092.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-324.69, -2248.76], [-324.87, -2253.04], [-318.98, -2253.3], [-318.79, -2249.02], [-324.69, -2248.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-255.39, -2003.39], [-264.55, -2002.78], [-265.33, -2014.68], [-256.17, -2015.29], [-255.39, -2003.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-257.74, -2246.11], [-257.93, -2250.3], [-250.5, -2250.62], [-250.32, -2246.43], [-257.74, -2246.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-149.27, -2168.04], [-145.07, -2168.16], [-145.24, -2174.04], [-149.44, -2173.92], [-149.27, -2168.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-310.89, -2106.87], [-311.28, -2116.0], [-299.5, -2116.5], [-299.11, -2107.36], [-310.89, -2106.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-269.14, -2231.1], [-269.28, -2234.56], [-277.47, -2234.23], [-277.33, -2230.77], [-269.14, -2231.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-214.33, -2132.16], [-214.6, -2139.41], [-200.89, -2139.91], [-200.63, -2132.66], [-214.33, -2132.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-181.18, -2273.17], [-181.56, -2280.79], [-169.17, -2281.41], [-168.79, -2273.79], [-181.18, -2273.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-319.97, -2024.32], [-320.09, -2028.58], [-314.03, -2028.75], [-313.91, -2024.5], [-319.97, -2024.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-345.59, -2010.92], [-345.72, -2015.89], [-337.58, -2016.1], [-337.45, -2011.13], [-345.59, -2010.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-256.87, -2251.38], [-257.09, -2255.41], [-250.1, -2255.77], [-249.88, -2251.75], [-256.87, -2251.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-366.4, -2138.67], [-366.7, -2147.87], [-355.13, -2148.25], [-354.83, -2139.06], [-366.4, -2138.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-217.84, -2230.47], [-211.38, -2230.75], [-211.68, -2237.5], [-218.14, -2237.21], [-217.84, -2230.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-232.47, -2149.24], [-225.01, -2149.5], [-225.29, -2157.71], [-232.76, -2157.44], [-232.47, -2149.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-209.59, -2159.96], [-209.73, -2163.51], [-204.0, -2163.73], [-203.85, -2160.18], [-209.59, -2159.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-232.29, -2261.75], [-232.65, -2269.17], [-222.34, -2269.69], [-221.97, -2262.26], [-232.29, -2261.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-203.74, -2215.29], [-212.22, -2214.88], [-212.75, -2225.98], [-204.28, -2226.39], [-203.74, -2215.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-372.04, -2259.89], [-372.23, -2264.32], [-375.62, -2264.17], [-375.42, -2259.74], [-372.04, -2259.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[-337.7, -2251.52], [-331.47, -2251.73], [-331.73, -2259.52], [-337.96, -2259.31], [-337.7, -2251.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-349.59, -2147.0], [-349.8, -2152.78], [-343.3, -2153.02], [-343.09, -2147.24], [-349.59, -2147.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-218.43, -2032.11], [-218.44, -2035.47], [-224.34, -2035.46], [-224.33, -2032.11], [-218.43, -2032.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-219.29, -2077.97], [-219.45, -2081.61], [-213.71, -2081.87], [-213.54, -2078.24], [-219.29, -2077.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-213.18, -2250.96], [-206.7, -2251.26], [-206.99, -2257.73], [-213.47, -2257.44], [-213.18, -2250.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-256.75, -2231.19], [-250.59, -2231.41], [-250.79, -2237.18], [-256.96, -2236.96], [-256.75, -2231.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-209.16, -2175.54], [-201.78, -2175.95], [-202.23, -2184.16], [-209.61, -2183.75], [-209.16, -2175.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-362.61, -2071.74], [-362.33, -2063.85], [-351.27, -2064.25], [-351.29, -2064.69], [-346.67, -2064.85], [-346.94, -2072.3], [-362.61, -2071.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-369.06, -2262.92], [-360.77, -2263.24], [-361.29, -2276.63], [-366.51, -2276.43], [-366.42, -2274.14], [-369.48, -2274.03], [-369.06, -2262.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-200.49, -2056.86], [-200.71, -2061.15], [-199.78, -2061.2], [-199.91, -2063.75], [-212.96, -2063.08], [-212.61, -2056.24], [-200.49, -2056.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-215.58, -1983.79], [-216.04, -1994.61], [-210.38, -1994.84], [-210.46, -1996.95], [-203.73, -1997.23], [-203.19, -1984.3], [-215.58, -1983.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-215.18, -2101.69], [-215.36, -2106.97], [-219.23, -2106.85], [-219.38, -2111.49], [-202.33, -2112.05], [-202.0, -2102.12], [-215.18, -2101.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-267.69, -2021.9], [-268.2, -2031.63], [-261.74, -2031.97], [-261.65, -2030.26], [-256.49, -2030.53], [-256.07, -2022.49], [-267.69, -2021.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-365.37, -2093.96], [-365.86, -2104.31], [-360.33, -2104.57], [-360.21, -2101.86], [-356.29, -2102.04], [-355.93, -2094.4], [-365.37, -2093.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-277.18, -2245.44], [-264.42, -2245.96], [-264.62, -2250.73], [-267.13, -2250.63], [-267.3, -2254.84], [-277.55, -2254.41], [-277.18, -2245.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-268.7, -2214.32], [-276.2, -2213.98], [-276.65, -2223.82], [-267.05, -2224.26], [-266.73, -2217.29], [-268.83, -2217.19], [-268.7, -2214.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-306.07, -2029.68], [-306.49, -2040.67], [-294.59, -2041.12], [-294.1, -2028.14], [-299.46, -2027.94], [-299.53, -2029.93], [-306.07, -2029.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-265.12, -2104.25], [-265.16, -2105.34], [-268.46, -2105.2], [-268.75, -2112.64], [-256.02, -2113.15], [-255.68, -2104.63], [-265.12, -2104.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-329.04, -2210.77], [-329.83, -2226.55], [-321.07, -2226.98], [-320.91, -2223.74], [-321.86, -2223.69], [-321.25, -2211.16], [-329.04, -2210.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-353.54, -2266.8], [-353.95, -2276.68], [-351.96, -2276.76], [-351.99, -2277.66], [-345.41, -2277.93], [-344.83, -2263.9], [-349.15, -2263.72], [-349.28, -2266.98], [-353.54, -2266.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-339.78, -2213.05], [-340.17, -2222.27], [-331.65, -2222.61], [-331.27, -2213.41], [-331.87, -2213.38], [-331.77, -2211.01], [-338.85, -2210.73], [-338.94, -2213.09], [-339.78, -2213.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-211.59, -2039.44], [-211.95, -2048.88], [-199.99, -2049.33], [-199.92, -2047.51], [-197.52, -2047.6], [-197.29, -2041.24], [-199.68, -2041.15], [-199.64, -2039.89], [-211.59, -2039.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-263.26, -1977.04], [-258.33, -1977.18], [-258.41, -1979.9], [-253.16, -1980.05], [-253.38, -1987.52], [-262.62, -1987.24], [-262.55, -1985.07], [-263.5, -1985.04], [-263.26, -1977.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-296.47, -2262.64], [-305.0, -2262.28], [-305.64, -2277.3], [-304.71, -2277.34], [-304.83, -2280.1], [-298.44, -2280.37], [-298.32, -2277.61], [-297.12, -2277.66], [-296.47, -2262.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-361.49, -2031.37], [-361.64, -2034.96], [-363.32, -2034.89], [-363.5, -2039.4], [-349.9, -2039.98], [-349.73, -2036.06], [-353.47, -2035.9], [-353.3, -2031.71], [-361.49, -2031.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-341.63, -2266.92], [-342.01, -2278.05], [-339.65, -2278.13], [-339.68, -2278.94], [-336.74, -2279.05], [-336.67, -2277.36], [-332.38, -2277.5], [-332.03, -2267.24], [-341.63, -2266.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-368.1, -2161.66], [-368.85, -2175.99], [-360.41, -2176.43], [-359.65, -2162.1], [-360.78, -2162.05], [-360.6, -2158.52], [-366.77, -2158.19], [-366.95, -2161.72], [-368.1, -2161.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-210.36, -2084.62], [-210.7, -2093.43], [-200.55, -2093.82], [-200.52, -2093.13], [-198.45, -2093.21], [-198.2, -2086.68], [-200.26, -2086.6], [-200.2, -2085.02], [-210.36, -2084.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-212.82, -2115.32], [-201.74, -2115.7], [-202.07, -2125.44], [-213.15, -2125.06], [-213.11, -2123.81], [-217.06, -2123.68], [-216.8, -2116.06], [-212.85, -2116.2], [-212.82, -2115.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-316.29, -2148.59], [-316.43, -2151.26], [-320.21, -2151.08], [-320.48, -2156.63], [-316.69, -2156.81], [-316.77, -2158.53], [-302.42, -2159.22], [-301.94, -2149.28], [-316.29, -2148.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-369.95, -2211.07], [-370.41, -2221.05], [-365.22, -2221.3], [-365.37, -2224.54], [-360.02, -2224.79], [-359.87, -2221.54], [-358.99, -2221.59], [-358.53, -2211.61], [-369.95, -2211.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-211.76, -2147.55], [-212.0, -2155.31], [-203.32, -2155.57], [-203.31, -2155.26], [-201.27, -2155.33], [-201.05, -2148.2], [-203.09, -2148.13], [-203.08, -2147.81], [-211.76, -2147.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-230.7, -2273.34], [-230.97, -2280.64], [-213.63, -2281.29], [-213.43, -2275.95], [-207.56, -2276.18], [-207.39, -2271.58], [-218.75, -2271.16], [-218.85, -2273.78], [-230.7, -2273.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-353.98, -2109.38], [-354.2, -2114.4], [-352.69, -2114.47], [-352.84, -2118.27], [-354.36, -2118.21], [-354.44, -2120.15], [-366.79, -2119.63], [-366.32, -2108.85], [-353.98, -2109.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-329.78, -2270.45], [-330.13, -2278.69], [-328.34, -2278.76], [-328.41, -2280.63], [-323.62, -2280.83], [-323.54, -2278.97], [-321.33, -2279.05], [-320.99, -2270.83], [-329.78, -2270.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-361.89, -2047.37], [-362.2, -2055.0], [-353.01, -2055.37], [-352.97, -2054.32], [-350.51, -2054.42], [-350.4, -2051.49], [-352.85, -2051.39], [-352.7, -2047.74], [-361.89, -2047.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-358.96, -2002.08], [-349.68, -2002.35], [-349.96, -2012.42], [-359.25, -2012.16], [-359.17, -2009.65], [-360.27, -2009.62], [-360.17, -2006.25], [-359.08, -2006.28], [-358.96, -2002.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-363.4, -2078.3], [-363.82, -2088.53], [-350.91, -2089.06], [-350.85, -2087.54], [-348.96, -2087.62], [-348.73, -2082.08], [-350.62, -2082.0], [-350.49, -2078.84], [-363.4, -2078.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-278.03, -2257.67], [-278.32, -2265.86], [-265.93, -2266.32], [-265.86, -2264.55], [-260.69, -2264.74], [-260.52, -2260.4], [-265.71, -2260.2], [-265.63, -2258.13], [-278.03, -2257.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-307.12, -2090.45], [-307.22, -2093.25], [-308.36, -2093.21], [-308.49, -2096.69], [-307.35, -2096.74], [-307.47, -2099.96], [-294.96, -2100.41], [-294.61, -2090.91], [-307.12, -2090.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-309.12, -2053.25], [-309.24, -2056.27], [-315.4, -2056.04], [-315.65, -2062.59], [-305.07, -2063.0], [-305.02, -2061.56], [-294.15, -2061.98], [-293.83, -2053.84], [-309.12, -2053.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-307.31, -2269.09], [-314.57, -2268.89], [-314.81, -2277.1], [-314.04, -2277.13], [-314.11, -2279.68], [-308.54, -2279.84], [-308.47, -2277.28], [-307.54, -2277.31], [-307.31, -2269.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-245.78, -1976.2], [-246.31, -1987.63], [-236.59, -1988.08], [-236.11, -1977.84], [-238.79, -1977.72], [-238.77, -1977.09], [-241.94, -1976.95], [-241.92, -1976.37], [-245.78, -1976.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1449.64, -1553.68], [-1449.91, -1562.3], [-1436.58, -1562.73], [-1436.48, -1559.88], [-1434.32, -1559.96], [-1434.13, -1554.18], [-1439.81, -1554.01], [-1439.78, -1553.17], [-1445.14, -1553.0], [-1445.16, -1553.83], [-1449.64, -1553.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1451.11, -1748.16], [-1451.17, -1752.07], [-1453.91, -1752.03], [-1453.97, -1755.6], [-1441.29, -1755.83], [-1441.28, -1755.2], [-1438.44, -1755.26], [-1438.34, -1749.41], [-1441.18, -1749.37], [-1441.16, -1748.33], [-1451.11, -1748.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1448.53, -1449.94], [-1448.57, -1451.46], [-1450.99, -1451.4], [-1451.09, -1455.59], [-1448.67, -1455.65], [-1448.7, -1457.0], [-1447.76, -1457.03], [-1447.85, -1460.88], [-1436.18, -1461.16], [-1435.92, -1450.24], [-1448.53, -1449.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1534.16, -1275.31], [-1534.32, -1282.54], [-1532.43, -1282.58], [-1532.46, -1284.15], [-1526.3, -1284.28], [-1526.27, -1282.78], [-1520.95, -1282.9], [-1520.83, -1277.12], [-1526.14, -1277.02], [-1526.11, -1275.48], [-1534.16, -1275.31]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1446.68, -1780.65], [-1446.77, -1782.94], [-1450.9, -1782.79], [-1451.11, -1788.48], [-1446.98, -1788.64], [-1447.02, -1789.69], [-1442.28, -1789.87], [-1442.24, -1788.8], [-1434.37, -1789.1], [-1434.19, -1784.1], [-1435.0, -1784.07], [-1434.89, -1781.09], [-1446.68, -1780.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1445.45, -1384.52], [-1445.51, -1386.58], [-1448.35, -1386.5], [-1448.51, -1391.89], [-1445.67, -1391.97], [-1445.71, -1393.23], [-1434.46, -1393.55], [-1434.44, -1393.0], [-1432.03, -1393.07], [-1431.8, -1385.45], [-1434.55, -1385.37], [-1434.53, -1384.83], [-1445.45, -1384.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1455.58, -1465.0], [-1455.87, -1473.12], [-1444.68, -1473.52], [-1444.7, -1474.28], [-1440.63, -1474.42], [-1440.54, -1471.84], [-1438.17, -1471.93], [-1438.15, -1471.26], [-1434.96, -1471.38], [-1434.79, -1466.54], [-1437.98, -1466.42], [-1437.95, -1465.6], [-1440.62, -1465.51], [-1440.57, -1463.85], [-1442.86, -1463.77], [-1442.92, -1465.44], [-1455.58, -1465.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1464.0, -1853.16], [-1467.98, -1846.1], [-1453.59, -1838.06], [-1449.62, -1845.13], [-1464.0, -1853.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.085, "pop": 0, "jobs": 85}}, {"shape": {"outer": [[-1564.26, -1262.63], [-1554.83, -1262.92], [-1555.61, -1288.16], [-1565.04, -1287.87], [-1564.26, -1262.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-1455.92, -1780.63], [-1460.37, -1780.55], [-1460.48, -1786.05], [-1456.02, -1786.13], [-1455.92, -1780.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1456.96, -1708.29], [-1464.67, -1707.94], [-1465.09, -1717.02], [-1457.38, -1717.37], [-1456.96, -1708.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1533.27, -1292.65], [-1522.25, -1292.54], [-1522.19, -1299.57], [-1533.19, -1299.68], [-1533.27, -1292.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1453.4, -1688.95], [-1453.58, -1698.3], [-1441.78, -1698.52], [-1441.6, -1689.18], [-1453.4, -1688.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1546.33, -1292.77], [-1550.26, -1292.62], [-1550.52, -1299.58], [-1546.58, -1299.73], [-1546.33, -1292.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1439.32, -1626.55], [-1439.48, -1635.19], [-1454.5, -1634.92], [-1454.35, -1626.27], [-1439.32, -1626.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1448.65, -1528.56], [-1448.9, -1536.29], [-1436.45, -1536.7], [-1436.2, -1528.97], [-1448.65, -1528.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1464.18, -1779.1], [-1471.01, -1778.85], [-1471.25, -1785.44], [-1464.42, -1785.69], [-1464.18, -1779.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1494.42, -1642.21], [-1494.37, -1648.35], [-1483.94, -1648.27], [-1483.98, -1642.13], [-1494.42, -1642.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.041, "pop": 0, "jobs": 41}}, {"shape": {"outer": [[-1458.87, -1582.7], [-1467.66, -1582.42], [-1468.19, -1599.38], [-1459.39, -1599.65], [-1458.87, -1582.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1463.19, -1661.86], [-1463.49, -1667.82], [-1469.6, -1667.53], [-1469.31, -1661.56], [-1463.19, -1661.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1459.47, -1454.16], [-1466.34, -1454.05], [-1466.57, -1462.71], [-1459.59, -1462.81], [-1459.47, -1454.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1450.01, -1708.11], [-1450.49, -1719.0], [-1443.18, -1719.32], [-1442.7, -1708.43], [-1450.01, -1708.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1463.46, -1673.79], [-1463.58, -1677.88], [-1469.42, -1677.71], [-1469.3, -1673.63], [-1463.46, -1673.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1455.99, -1649.73], [-1456.38, -1658.25], [-1440.11, -1658.98], [-1439.73, -1650.47], [-1455.99, -1649.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1454.32, -1438.17], [-1463.13, -1438.0], [-1463.03, -1432.56], [-1454.21, -1432.72], [-1454.32, -1438.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1466.57, -1462.71], [-1459.59, -1462.81], [-1458.09, -1462.92], [-1458.36, -1473.91], [-1466.86, -1473.69], [-1466.57, -1462.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1464.38, -1386.29], [-1457.55, -1386.47], [-1457.77, -1394.58], [-1464.59, -1394.39], [-1464.38, -1386.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1436.99, -1577.52], [-1445.45, -1577.31], [-1445.74, -1589.4], [-1437.28, -1589.6], [-1436.99, -1577.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1480.11, -1570.03], [-1471.15, -1570.28], [-1471.6, -1585.84], [-1480.56, -1585.59], [-1480.11, -1570.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1462.96, -1857.0], [-1459.0, -1864.71], [-1451.13, -1860.69], [-1455.09, -1852.98], [-1462.96, -1857.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1482.11, -1750.7], [-1472.7, -1750.93], [-1473.01, -1763.94], [-1482.43, -1763.7], [-1482.11, -1750.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1554.39, -1673.27], [-1554.63, -1682.51], [-1527.7, -1683.24], [-1527.46, -1673.98], [-1554.39, -1673.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[-1459.08, -1505.03], [-1466.06, -1504.92], [-1466.17, -1511.57], [-1459.19, -1511.7], [-1459.08, -1505.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1456.63, -1868.94], [-1452.1, -1877.11], [-1442.44, -1871.77], [-1446.98, -1863.62], [-1456.63, -1868.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1484.95, -1750.46], [-1492.54, -1750.24], [-1492.84, -1760.96], [-1485.25, -1761.18], [-1484.95, -1750.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1462.94, -1653.67], [-1469.89, -1653.41], [-1470.15, -1660.56], [-1463.2, -1660.82], [-1462.94, -1653.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1451.68, -1516.11], [-1452.01, -1524.62], [-1436.46, -1525.23], [-1436.12, -1516.73], [-1451.68, -1516.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1447.11, -1415.61], [-1447.17, -1420.19], [-1443.58, -1420.25], [-1443.68, -1426.91], [-1435.47, -1427.04], [-1435.31, -1415.79], [-1447.11, -1415.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1453.18, -1760.64], [-1453.6, -1777.58], [-1438.42, -1777.96], [-1438.21, -1769.11], [-1444.54, -1768.95], [-1444.34, -1760.86], [-1453.18, -1760.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1473.48, -1384.1], [-1468.12, -1384.19], [-1468.45, -1403.9], [-1476.75, -1403.75], [-1476.52, -1390.63], [-1473.59, -1390.68], [-1473.48, -1384.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1453.13, -1664.24], [-1453.46, -1673.12], [-1441.26, -1673.57], [-1441.05, -1668.01], [-1439.1, -1668.09], [-1438.98, -1664.76], [-1453.13, -1664.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1451.25, -1402.86], [-1451.33, -1411.34], [-1435.22, -1411.51], [-1435.1, -1399.87], [-1444.15, -1399.79], [-1444.17, -1402.92], [-1451.25, -1402.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1453.02, -1675.63], [-1453.4, -1684.56], [-1441.45, -1685.06], [-1441.22, -1679.61], [-1439.49, -1679.68], [-1439.34, -1676.2], [-1453.02, -1675.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1450.22, -1541.42], [-1450.53, -1549.65], [-1436.94, -1550.17], [-1436.77, -1545.75], [-1438.79, -1545.67], [-1438.64, -1541.86], [-1450.22, -1541.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1449.36, -1638.24], [-1441.12, -1638.52], [-1441.24, -1642.09], [-1436.3, -1642.25], [-1436.48, -1647.55], [-1449.65, -1647.11], [-1449.36, -1638.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1489.64, -1443.88], [-1470.29, -1444.32], [-1470.5, -1452.62], [-1472.0, -1452.58], [-1472.3, -1463.97], [-1490.21, -1463.5], [-1489.64, -1443.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.233, "pop": 0, "jobs": 233}}, {"shape": {"outer": [[-1450.22, -1504.52], [-1450.58, -1513.79], [-1433.77, -1514.43], [-1433.45, -1506.2], [-1435.47, -1506.12], [-1435.43, -1505.09], [-1450.22, -1504.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1450.63, -1433.52], [-1437.95, -1433.69], [-1438.13, -1445.99], [-1446.43, -1445.87], [-1446.41, -1444.07], [-1450.77, -1444.02], [-1450.63, -1433.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1462.58, -1750.11], [-1466.3, -1750.0], [-1466.32, -1750.77], [-1469.6, -1750.68], [-1470.05, -1766.29], [-1463.05, -1766.49], [-1462.58, -1750.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1536.15, -1260.05], [-1536.36, -1268.85], [-1519.93, -1269.25], [-1519.72, -1260.45], [-1526.0, -1260.29], [-1525.98, -1259.46], [-1531.77, -1259.33], [-1531.78, -1260.16], [-1536.15, -1260.05]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1554.27, -1692.45], [-1554.44, -1701.94], [-1549.24, -1702.04], [-1549.18, -1698.39], [-1542.79, -1698.5], [-1542.86, -1702.14], [-1530.46, -1702.35], [-1530.29, -1692.85], [-1554.27, -1692.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1491.94, -1542.47], [-1492.29, -1562.32], [-1481.59, -1562.51], [-1481.61, -1563.46], [-1471.33, -1563.64], [-1470.93, -1540.53], [-1485.57, -1540.26], [-1485.61, -1542.58], [-1491.94, -1542.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.294, "pop": 0, "jobs": 294}}, {"shape": {"outer": [[-1452.05, -1566.43], [-1452.15, -1571.38], [-1450.6, -1571.42], [-1450.7, -1576.54], [-1434.98, -1576.87], [-1434.85, -1570.81], [-1436.65, -1570.77], [-1436.57, -1566.75], [-1452.05, -1566.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1127.27, 1294.16], [1136.39, 1284.1], [1142.78, 1289.62], [1133.3, 1299.66], [1127.27, 1294.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1167.05, 1195.2], [1178.73, 1182.37], [1187.48, 1189.99], [1175.93, 1202.83], [1167.05, 1195.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-989.86, -673.24], [-955.88, -617.87], [-914.74, -659.96], [-953.1, -696.68], [-989.86, -673.24]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 5734, "jobs": 0}}, {"shape": {"outer": [[-2711.57, -736.11], [-2711.95, -751.95], [-2711.09, -751.98], [-2711.12, -753.43], [-2709.33, -753.47], [-2709.36, -754.72], [-2701.71, -754.89], [-2701.64, -752.2], [-2701.25, -752.22], [-2700.88, -736.38], [-2711.57, -736.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2666.13, -733.94], [-2666.17, -735.74], [-2666.98, -735.73], [-2667.08, -740.35], [-2666.28, -740.37], [-2666.35, -743.45], [-2656.43, -743.69], [-2656.42, -742.95], [-2653.7, -743.0], [-2653.51, -734.9], [-2656.23, -734.84], [-2656.21, -734.18], [-2666.13, -733.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2733.65, -737.54], [-2733.85, -749.96], [-2736.12, -749.92], [-2736.14, -751.13], [-2740.73, -751.06], [-2740.71, -749.86], [-2743.46, -749.81], [-2743.27, -737.39], [-2738.1, -737.47], [-2738.06, -734.95], [-2735.11, -734.99], [-2735.15, -737.51], [-2733.65, -737.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2726.53, -737.6], [-2726.78, -748.26], [-2724.37, -748.31], [-2724.44, -751.17], [-2720.02, -751.27], [-2719.95, -748.42], [-2716.34, -748.5], [-2716.09, -737.85], [-2717.19, -737.82], [-2717.14, -735.52], [-2721.44, -735.42], [-2721.42, -734.86], [-2725.36, -734.77], [-2725.43, -737.62], [-2726.53, -737.6]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2667.37, -759.92], [-2667.39, -760.63], [-2668.11, -760.61], [-2668.18, -762.99], [-2667.46, -763.01], [-2667.5, -764.21], [-2669.22, -764.16], [-2669.34, -768.28], [-2657.51, -768.64], [-2657.48, -767.73], [-2655.05, -767.8], [-2654.86, -761.15], [-2657.29, -761.08], [-2657.27, -760.21], [-2667.37, -759.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2752.59, -686.38], [-2752.72, -692.67], [-2746.06, -692.8], [-2745.92, -686.52], [-2752.59, -686.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2738.0, -641.0], [-2747.33, -640.72], [-2747.77, -655.3], [-2738.43, -655.58], [-2738.0, -641.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2704.27, -768.33], [-2700.04, -768.42], [-2700.16, -774.57], [-2704.39, -774.49], [-2704.27, -768.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2753.33, -654.94], [-2748.08, -655.12], [-2748.31, -661.48], [-2753.56, -661.3], [-2753.33, -654.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2670.39, -678.85], [-2670.57, -688.08], [-2652.07, -688.43], [-2651.89, -679.21], [-2670.39, -678.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2762.12, -744.15], [-2765.13, -744.03], [-2765.36, -750.23], [-2762.36, -750.34], [-2762.12, -744.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2719.69, -761.11], [-2719.84, -769.4], [-2713.83, -769.5], [-2713.68, -761.22], [-2719.69, -761.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2759.66, -698.48], [-2759.98, -707.7], [-2769.37, -707.37], [-2769.04, -698.16], [-2759.66, -698.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2669.0, -755.49], [-2668.87, -747.67], [-2665.38, -747.72], [-2665.37, -746.64], [-2653.56, -746.85], [-2653.72, -755.76], [-2669.0, -755.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2690.66, -645.87], [-2691.32, -664.17], [-2698.51, -663.91], [-2698.45, -662.28], [-2705.74, -662.01], [-2705.14, -645.36], [-2690.66, -645.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-2696.44, -691.73], [-2696.88, -704.54], [-2686.92, -704.88], [-2686.62, -696.34], [-2692.05, -696.15], [-2691.9, -691.89], [-2696.44, -691.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2742.86, -688.52], [-2743.21, -701.29], [-2726.01, -701.77], [-2725.74, -692.05], [-2734.0, -691.82], [-2733.92, -688.76], [-2742.86, -688.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2663.03, -661.93], [-2654.03, -662.12], [-2654.23, -671.26], [-2656.2, -671.22], [-2656.27, -674.48], [-2660.48, -674.4], [-2660.41, -671.13], [-2663.22, -671.07], [-2663.03, -661.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2769.72, -661.96], [-2760.87, -662.12], [-2761.05, -671.71], [-2772.04, -671.49], [-2771.96, -667.19], [-2770.88, -667.21], [-2770.85, -665.55], [-2769.78, -665.57], [-2769.72, -661.96]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2663.57, -645.03], [-2663.58, -645.88], [-2665.4, -645.83], [-2665.56, -653.29], [-2663.76, -653.33], [-2663.81, -655.86], [-2653.44, -656.1], [-2653.19, -645.27], [-2663.57, -645.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2768.74, -686.85], [-2760.06, -687.2], [-2760.45, -696.88], [-2769.14, -696.53], [-2769.09, -695.16], [-2771.65, -695.06], [-2771.47, -690.6], [-2768.9, -690.71], [-2768.74, -686.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2722.98, -645.03], [-2723.66, -664.46], [-2714.61, -664.78], [-2713.93, -645.35], [-2714.96, -645.32], [-2714.86, -642.42], [-2722.23, -642.15], [-2722.33, -645.06], [-2722.98, -645.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2694.44, -739.03], [-2694.73, -749.8], [-2693.82, -749.82], [-2693.91, -753.3], [-2688.56, -753.45], [-2688.47, -749.96], [-2683.21, -750.11], [-2682.92, -739.34], [-2694.44, -739.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2761.74, -641.44], [-2772.13, -641.15], [-2772.52, -655.21], [-2767.48, -655.34], [-2767.62, -660.14], [-2759.98, -660.36], [-2759.85, -655.57], [-2762.13, -655.51], [-2761.74, -641.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2770.48, -674.47], [-2770.75, -684.52], [-2757.52, -684.88], [-2757.49, -683.95], [-2754.37, -684.04], [-2754.19, -677.64], [-2755.92, -677.59], [-2755.84, -674.87], [-2770.48, -674.47]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2670.66, -691.24], [-2670.74, -694.13], [-2672.26, -694.09], [-2672.42, -699.47], [-2670.9, -699.52], [-2670.94, -700.93], [-2652.75, -701.45], [-2652.48, -691.77], [-2670.66, -691.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2736.36, -641.91], [-2727.87, -642.17], [-2728.43, -661.21], [-2731.09, -661.14], [-2731.05, -659.73], [-2735.92, -659.57], [-2735.74, -653.37], [-2736.7, -653.34], [-2736.36, -641.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2709.5, -696.75], [-2709.62, -701.07], [-2711.72, -701.01], [-2711.88, -706.8], [-2699.25, -707.16], [-2698.92, -695.54], [-2703.07, -695.43], [-2703.12, -696.92], [-2709.5, -696.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2671.19, -704.13], [-2671.31, -707.13], [-2672.48, -707.07], [-2672.7, -712.25], [-2671.52, -712.29], [-2671.58, -713.69], [-2653.07, -714.45], [-2652.69, -704.89], [-2671.19, -704.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2689.85, -603.22], [-2681.53, -603.44], [-2681.8, -613.33], [-2682.4, -613.31], [-2682.49, -616.62], [-2682.85, -616.61], [-2682.91, -618.58], [-2689.71, -618.39], [-2689.65, -616.43], [-2690.22, -616.41], [-2689.85, -603.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2705.39, -601.36], [-2705.81, -614.48], [-2705.17, -614.5], [-2705.2, -615.57], [-2702.79, -615.64], [-2700.73, -616.78], [-2698.06, -616.87], [-2696.19, -615.69], [-2696.11, -613.36], [-2696.89, -613.33], [-2696.76, -609.39], [-2696.31, -609.4], [-2696.17, -604.95], [-2696.62, -604.93], [-2696.52, -601.63], [-2705.39, -601.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2662.98, -607.25], [-2663.02, -609.08], [-2664.29, -609.05], [-2664.33, -610.92], [-2667.85, -610.85], [-2667.89, -612.64], [-2669.04, -612.62], [-2669.15, -618.28], [-2667.06, -618.32], [-2667.08, -619.33], [-2663.47, -619.4], [-2663.45, -618.39], [-2651.85, -618.64], [-2651.83, -617.54], [-2649.3, -617.59], [-2649.24, -614.32], [-2647.73, -614.35], [-2647.68, -612.23], [-2649.19, -612.2], [-2649.11, -608.45], [-2651.65, -608.4], [-2651.63, -607.47], [-2662.98, -607.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2679.55, -604.52], [-2679.7, -610.63], [-2673.43, -610.79], [-2673.27, -604.67], [-2679.55, -604.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2693.03, -585.11], [-2699.2, -584.97], [-2699.34, -591.78], [-2693.18, -591.9], [-2693.03, -585.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2725.19, -334.47], [-2713.69, -334.9], [-2713.86, -339.42], [-2712.33, -339.48], [-2712.46, -343.19], [-2714.0, -343.12], [-2714.14, -346.71], [-2727.93, -346.19], [-2727.72, -340.7], [-2725.43, -340.79], [-2725.19, -334.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2755.88, -404.95], [-2746.94, -405.17], [-2747.17, -414.58], [-2750.2, -414.5], [-2750.29, -418.23], [-2758.14, -418.04], [-2758.06, -414.72], [-2760.57, -414.66], [-2760.44, -409.33], [-2755.99, -409.43], [-2755.88, -404.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2744.69, -471.19], [-2744.87, -477.98], [-2747.65, -477.91], [-2747.85, -485.4], [-2734.42, -485.76], [-2734.04, -471.48], [-2738.06, -471.37], [-2738.04, -470.34], [-2741.15, -470.25], [-2741.17, -471.29], [-2744.69, -471.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2738.29, -389.1], [-2747.62, -377.3], [-2742.68, -373.43], [-2744.42, -371.22], [-2741.13, -368.64], [-2739.39, -370.84], [-2733.78, -366.44], [-2727.05, -374.94], [-2736.67, -382.49], [-2734.07, -385.79], [-2738.29, -389.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2706.68, -259.4], [-2706.9, -268.42], [-2691.87, -268.8], [-2691.69, -261.59], [-2694.82, -261.51], [-2694.77, -259.7], [-2697.89, -259.62], [-2697.75, -254.13], [-2704.6, -253.95], [-2704.73, -259.46], [-2706.68, -259.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2709.15, -397.21], [-2706.07, -401.47], [-2709.91, -404.24], [-2704.29, -412.0], [-2699.41, -408.5], [-2701.13, -406.12], [-2692.91, -400.21], [-2697.73, -393.56], [-2698.29, -393.96], [-2700.46, -390.96], [-2709.15, -397.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2725.98, -300.25], [-2726.53, -314.15], [-2721.11, -314.36], [-2721.27, -318.51], [-2715.52, -318.74], [-2715.31, -313.56], [-2714.51, -313.59], [-2714.41, -310.83], [-2713.02, -310.88], [-2712.62, -300.77], [-2725.98, -300.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2733.79, -599.57], [-2724.07, -599.81], [-2724.41, -613.69], [-2725.55, -613.66], [-2725.59, -615.08], [-2727.14, -615.86], [-2729.5, -615.8], [-2730.78, -614.95], [-2733.56, -614.88], [-2733.53, -613.46], [-2734.12, -613.45], [-2733.79, -599.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2710.81, -455.32], [-2711.29, -466.26], [-2709.29, -466.35], [-2709.41, -469.06], [-2705.29, -469.25], [-2705.17, -466.54], [-2698.9, -466.81], [-2698.76, -463.69], [-2696.02, -463.8], [-2695.75, -457.55], [-2698.48, -457.43], [-2698.41, -455.86], [-2710.81, -455.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2754.72, -505.19], [-2766.24, -504.78], [-2766.38, -508.78], [-2769.16, -508.68], [-2769.46, -517.16], [-2766.68, -517.26], [-2766.82, -521.1], [-2755.3, -521.51], [-2755.16, -517.59], [-2754.32, -517.62], [-2754.0, -508.48], [-2754.84, -508.46], [-2754.72, -505.19]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-2648.42, -352.55], [-2658.63, -352.21], [-2658.84, -358.94], [-2662.62, -358.82], [-2662.83, -365.18], [-2659.05, -365.3], [-2659.15, -368.25], [-2648.94, -368.59], [-2648.75, -362.82], [-2646.43, -362.9], [-2646.23, -356.59], [-2648.55, -356.51], [-2648.42, -352.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2718.09, -601.97], [-2708.5, -602.23], [-2708.62, -606.86], [-2707.11, -606.91], [-2707.21, -610.38], [-2708.72, -610.34], [-2708.85, -614.64], [-2710.17, -614.6], [-2710.25, -617.32], [-2717.46, -617.13], [-2717.38, -614.4], [-2718.44, -614.37], [-2718.09, -601.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2757.62, -387.72], [-2750.8, -387.92], [-2750.9, -391.51], [-2748.72, -391.57], [-2748.84, -395.71], [-2749.98, -395.68], [-2750.07, -398.78], [-2751.11, -398.75], [-2751.15, -400.05], [-2760.7, -399.77], [-2760.4, -389.6], [-2757.68, -389.68], [-2757.62, -387.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2661.01, -571.3], [-2661.17, -575.32], [-2668.17, -575.03], [-2668.4, -580.61], [-2662.41, -580.86], [-2662.46, -582.13], [-2661.46, -582.17], [-2661.5, -583.13], [-2650.8, -583.57], [-2650.74, -582.12], [-2648.34, -582.23], [-2647.97, -573.14], [-2650.36, -573.04], [-2650.31, -571.74], [-2661.01, -571.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2731.78, -468.43], [-2732.1, -477.54], [-2727.32, -477.71], [-2727.44, -481.08], [-2721.41, -481.3], [-2721.23, -476.24], [-2717.07, -476.38], [-2716.96, -473.08], [-2713.65, -473.2], [-2713.38, -465.57], [-2716.62, -465.45], [-2716.59, -464.74], [-2728.19, -464.33], [-2728.34, -468.55], [-2731.78, -468.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2700.56, -304.23], [-2701.07, -319.27], [-2696.16, -319.44], [-2696.22, -321.16], [-2690.92, -321.33], [-2690.86, -319.61], [-2684.29, -319.84], [-2684.19, -316.83], [-2681.0, -316.94], [-2680.77, -309.87], [-2686.08, -309.68], [-2685.92, -304.73], [-2689.87, -304.59], [-2689.78, -301.72], [-2695.84, -301.51], [-2695.94, -304.39], [-2700.56, -304.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-2720.07, -256.83], [-2716.31, -256.91], [-2716.27, -255.29], [-2715.91, -255.3], [-2715.8, -250.35], [-2709.14, -250.5], [-2709.27, -256.28], [-2711.06, -256.24], [-2711.17, -261.61], [-2710.02, -261.63], [-2710.08, -264.63], [-2711.24, -264.6], [-2711.31, -267.93], [-2718.69, -267.77], [-2718.65, -265.63], [-2722.01, -265.55], [-2721.92, -261.2], [-2720.17, -261.24], [-2720.07, -256.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2749.38, -399.45], [-2749.44, -404.2], [-2742.13, -404.31], [-2742.06, -399.55], [-2749.38, -399.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2713.58, -584.44], [-2713.82, -591.68], [-2720.38, -591.45], [-2720.14, -584.23], [-2713.58, -584.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2758.56, -420.2], [-2758.62, -427.41], [-2750.37, -427.48], [-2750.3, -420.28], [-2758.56, -420.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2738.78, -395.46], [-2735.61, -390.78], [-2729.01, -395.22], [-2732.18, -399.89], [-2738.78, -395.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2705.36, -331.95], [-2697.26, -332.12], [-2697.4, -339.14], [-2705.51, -338.98], [-2705.36, -331.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2698.26, -576.83], [-2698.39, -583.41], [-2691.9, -583.54], [-2691.76, -576.97], [-2698.26, -576.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2748.98, -565.02], [-2749.13, -569.91], [-2742.04, -570.13], [-2741.89, -565.25], [-2748.98, -565.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2711.47, -354.15], [-2704.1, -357.1], [-2709.1, -369.54], [-2716.46, -366.59], [-2711.47, -354.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2671.5, -349.7], [-2671.71, -354.38], [-2677.99, -354.1], [-2677.78, -349.42], [-2671.5, -349.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2726.63, -584.52], [-2726.79, -590.22], [-2720.62, -590.4], [-2720.46, -584.69], [-2726.63, -584.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2662.34, -481.29], [-2662.73, -490.31], [-2647.34, -490.98], [-2646.95, -481.94], [-2662.34, -481.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2749.15, -512.87], [-2749.49, -524.5], [-2739.6, -524.79], [-2739.27, -513.15], [-2749.15, -512.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2693.87, -376.77], [-2697.37, -371.99], [-2706.08, -378.32], [-2702.57, -383.11], [-2693.87, -376.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2673.42, -586.97], [-2673.69, -593.0], [-2680.89, -592.69], [-2680.63, -586.65], [-2673.42, -586.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2751.47, -497.26], [-2751.68, -503.25], [-2744.69, -503.48], [-2744.49, -497.51], [-2751.47, -497.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2720.28, -575.95], [-2720.49, -583.17], [-2730.97, -582.87], [-2730.76, -575.65], [-2720.28, -575.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2673.07, -426.85], [-2669.07, -435.59], [-2656.89, -430.06], [-2660.89, -421.32], [-2673.07, -426.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2770.59, -583.68], [-2771.02, -593.73], [-2755.85, -594.39], [-2755.41, -584.33], [-2770.59, -583.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2679.56, -558.65], [-2672.2, -558.83], [-2672.39, -567.11], [-2679.76, -566.93], [-2679.56, -558.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2764.74, -475.7], [-2765.06, -485.77], [-2751.77, -486.18], [-2751.46, -476.12], [-2764.74, -475.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2671.45, -271.96], [-2666.84, -272.04], [-2666.73, -266.49], [-2671.34, -266.4], [-2671.45, -271.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2710.08, -554.66], [-2710.48, -568.48], [-2704.15, -568.66], [-2704.08, -566.48], [-2699.06, -566.63], [-2698.73, -554.99], [-2710.08, -554.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2695.48, -515.17], [-2695.69, -521.25], [-2693.17, -521.34], [-2693.28, -524.41], [-2681.76, -524.82], [-2681.44, -515.67], [-2695.48, -515.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2768.24, -572.31], [-2768.49, -581.02], [-2758.28, -581.31], [-2758.19, -578.27], [-2756.17, -578.33], [-2756.01, -572.67], [-2768.24, -572.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2691.83, -440.53], [-2690.98, -449.21], [-2684.77, -448.61], [-2684.37, -452.71], [-2678.82, -452.18], [-2680.05, -439.4], [-2691.83, -440.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2687.57, -259.02], [-2688.06, -269.49], [-2680.34, -269.83], [-2680.2, -266.8], [-2678.1, -266.9], [-2677.75, -259.47], [-2687.57, -259.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2727.7, -415.27], [-2726.33, -429.61], [-2715.07, -428.54], [-2716.35, -415.18], [-2722.23, -415.73], [-2722.33, -414.76], [-2727.7, -415.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2694.6, -555.05], [-2694.89, -563.7], [-2693.73, -563.75], [-2693.81, -566.3], [-2683.11, -566.65], [-2682.73, -555.45], [-2694.6, -555.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2689.17, -386.75], [-2681.36, -396.83], [-2677.29, -393.71], [-2676.04, -395.32], [-2669.99, -390.66], [-2679.05, -378.97], [-2689.17, -386.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2731.59, -436.5], [-2730.99, -443.0], [-2725.55, -442.51], [-2725.68, -441.13], [-2722.44, -440.84], [-2722.91, -435.72], [-2731.59, -436.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2747.7, -598.98], [-2738.38, -599.24], [-2738.9, -617.64], [-2744.46, -617.48], [-2744.37, -614.27], [-2748.13, -614.16], [-2747.7, -598.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2758.61, -598.4], [-2748.45, -598.69], [-2748.82, -611.42], [-2749.86, -611.39], [-2750.01, -616.51], [-2759.12, -616.25], [-2758.61, -598.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2656.82, -441.97], [-2647.64, -442.25], [-2648.02, -454.03], [-2649.26, -453.99], [-2649.35, -456.68], [-2656.17, -456.46], [-2656.08, -453.77], [-2657.2, -453.74], [-2656.82, -441.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2661.66, -464.18], [-2661.95, -474.33], [-2646.33, -474.77], [-2646.05, -464.62], [-2647.08, -464.59], [-2647.01, -462.27], [-2651.71, -462.14], [-2651.77, -464.47], [-2661.66, -464.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2721.64, -511.08], [-2721.81, -517.01], [-2718.98, -517.09], [-2719.11, -521.88], [-2721.95, -521.8], [-2721.97, -522.69], [-2731.91, -522.41], [-2731.58, -510.79], [-2721.64, -511.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2761.75, -598.25], [-2765.71, -598.14], [-2765.67, -596.89], [-2770.2, -596.75], [-2770.24, -598.01], [-2771.74, -597.97], [-2772.25, -615.71], [-2762.26, -616.0], [-2761.75, -598.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2661.53, -516.39], [-2661.88, -526.18], [-2650.0, -526.6], [-2649.96, -525.63], [-2647.73, -525.71], [-2647.46, -517.99], [-2649.69, -517.91], [-2649.65, -516.8], [-2661.53, -516.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2759.35, -559.72], [-2767.44, -559.49], [-2767.73, -569.77], [-2759.65, -570.0], [-2759.6, -568.26], [-2756.76, -568.34], [-2756.63, -563.88], [-2759.47, -563.8], [-2759.35, -559.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2761.62, -431.77], [-2758.06, -431.77], [-2758.05, -429.95], [-2753.56, -429.94], [-2753.58, -442.6], [-2756.14, -442.6], [-2756.13, -445.54], [-2761.63, -445.54], [-2761.62, -431.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2741.11, -554.46], [-2741.44, -564.75], [-2740.05, -564.8], [-2740.18, -568.8], [-2730.68, -569.11], [-2730.54, -565.1], [-2729.59, -565.14], [-2729.26, -554.84], [-2741.11, -554.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2712.56, -511.63], [-2712.91, -523.81], [-2711.71, -523.85], [-2711.79, -526.47], [-2703.98, -526.69], [-2703.91, -524.07], [-2702.76, -524.11], [-2702.41, -511.92], [-2712.56, -511.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2646.35, -500.16], [-2646.63, -509.85], [-2665.5, -509.3], [-2665.46, -508.14], [-2666.39, -508.11], [-2666.3, -504.96], [-2665.37, -504.99], [-2665.22, -499.6], [-2646.35, -500.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2645.44, -334.55], [-2657.33, -334.12], [-2657.37, -335.29], [-2659.51, -335.22], [-2659.79, -342.78], [-2657.65, -342.85], [-2657.87, -348.97], [-2645.98, -349.4], [-2645.44, -334.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2767.37, -547.84], [-2767.61, -557.52], [-2753.8, -557.86], [-2753.56, -548.18], [-2759.72, -548.03], [-2759.66, -545.32], [-2766.0, -545.17], [-2766.06, -547.87], [-2767.37, -547.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2748.17, -429.97], [-2748.25, -437.92], [-2735.55, -438.04], [-2735.47, -430.09], [-2740.59, -430.04], [-2740.58, -428.91], [-2743.58, -428.88], [-2743.59, -430.01], [-2748.17, -429.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2668.59, -366.23], [-2670.18, -370.06], [-2673.96, -368.5], [-2676.32, -374.23], [-2664.02, -386.29], [-2657.14, -380.98], [-2652.92, -382.72], [-2649.37, -374.13], [-2668.59, -366.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-2724.37, -553.76], [-2724.94, -567.16], [-2718.69, -567.42], [-2718.55, -564.13], [-2712.3, -564.4], [-2711.76, -551.42], [-2719.67, -551.09], [-2719.79, -553.95], [-2724.37, -553.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2663.45, -553.88], [-2663.69, -561.34], [-2659.63, -561.47], [-2659.67, -562.8], [-2654.43, -562.98], [-2654.38, -561.64], [-2647.86, -561.85], [-2647.62, -554.39], [-2663.45, -553.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2660.62, -303.08], [-2661.05, -313.74], [-2660.57, -313.76], [-2660.79, -319.19], [-2661.26, -319.18], [-2661.59, -327.55], [-2660.98, -327.58], [-2661.04, -329.2], [-2651.83, -329.56], [-2651.72, -326.96], [-2651.25, -326.98], [-2650.94, -319.2], [-2651.42, -319.18], [-2651.3, -316.42], [-2645.7, -316.63], [-2645.12, -302.12], [-2649.75, -301.95], [-2649.81, -303.5], [-2660.62, -303.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[-2827.98, -320.75], [-2826.07, -332.76], [-2813.96, -330.84], [-2814.37, -328.26], [-2809.62, -327.52], [-2810.31, -323.24], [-2814.64, -323.93], [-2815.0, -321.68], [-2819.43, -322.39], [-2819.9, -319.47], [-2827.98, -320.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2807.69, -350.69], [-2805.53, -364.24], [-2793.48, -362.34], [-2794.21, -357.74], [-2790.51, -357.15], [-2791.67, -349.87], [-2795.6, -350.49], [-2795.18, -353.13], [-2801.22, -354.09], [-2801.91, -349.78], [-2807.69, -350.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2797.8, -251.84], [-2794.94, -270.0], [-2794.38, -269.91], [-2793.97, -272.5], [-2788.51, -271.65], [-2788.92, -269.06], [-2785.34, -268.51], [-2788.58, -248.02], [-2794.51, -248.95], [-2794.14, -251.28], [-2797.8, -251.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[-2790.3, -347.22], [-2786.92, -354.52], [-2784.67, -353.49], [-2781.43, -360.51], [-2777.44, -358.68], [-2776.77, -360.11], [-2772.44, -358.12], [-2773.11, -356.68], [-2769.16, -354.86], [-2774.43, -343.47], [-2780.66, -346.32], [-2782.01, -343.41], [-2790.3, -347.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2763.95, -302.28], [-2763.97, -303.1], [-2765.72, -303.05], [-2765.95, -310.99], [-2764.2, -311.04], [-2764.37, -316.75], [-2755.25, -317.01], [-2754.87, -303.8], [-2752.03, -303.88], [-2751.91, -299.58], [-2758.79, -299.38], [-2758.88, -302.43], [-2763.95, -302.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2806.29, -314.44], [-2801.91, -313.76], [-2802.14, -312.33], [-2797.94, -311.66], [-2799.54, -301.63], [-2801.45, -301.93], [-2801.8, -299.73], [-2809.09, -300.88], [-2810.16, -302.15], [-2809.65, -305.36], [-2808.22, -306.34], [-2807.72, -309.49], [-2807.09, -309.38], [-2806.29, -314.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2798.34, -298.41], [-2792.64, -297.65], [-2791.88, -303.32], [-2786.35, -302.59], [-2785.59, -308.28], [-2784.14, -308.09], [-2783.46, -313.14], [-2788.63, -313.83], [-2788.03, -318.28], [-2793.91, -319.05], [-2795.42, -307.81], [-2796.34, -307.94], [-2796.71, -305.2], [-2797.42, -305.29], [-2798.34, -298.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2781.25, -252.49], [-2781.76, -268.54], [-2780.12, -268.59], [-2780.19, -270.53], [-2775.27, -270.69], [-2775.21, -268.75], [-2771.67, -268.87], [-2771.73, -270.83], [-2767.0, -270.98], [-2766.94, -269.02], [-2765.03, -269.08], [-2764.51, -253.02], [-2772.81, -252.75], [-2772.96, -257.53], [-2773.47, -257.51], [-2773.32, -252.74], [-2781.25, -252.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-2764.66, -222.72], [-2764.99, -231.99], [-2746.97, -232.62], [-2746.65, -223.35], [-2764.66, -222.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2818.76, -308.21], [-2814.35, -307.52], [-2813.38, -313.65], [-2817.79, -314.34], [-2818.76, -308.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2776.42, -321.47], [-2781.47, -321.41], [-2781.54, -327.61], [-2776.49, -327.67], [-2776.42, -321.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2818.17, -257.95], [-2816.36, -270.2], [-2815.75, -270.11], [-2815.47, -272.0], [-2805.98, -270.6], [-2806.26, -268.72], [-2805.68, -268.63], [-2807.49, -256.38], [-2818.17, -257.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2820.43, -303.65], [-2823.76, -304.09], [-2823.86, -303.36], [-2826.58, -303.73], [-2825.93, -308.46], [-2827.69, -308.7], [-2827.02, -313.67], [-2819.22, -312.61], [-2820.43, -303.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2822.91, -346.9], [-2820.84, -346.53], [-2821.27, -344.07], [-2815.43, -343.05], [-2814.99, -345.51], [-2811.87, -344.97], [-2809.32, -359.48], [-2820.35, -361.42], [-2822.91, -346.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2761.22, -237.74], [-2761.44, -244.75], [-2762.12, -244.73], [-2762.28, -249.58], [-2761.61, -249.6], [-2761.63, -250.33], [-2747.93, -250.78], [-2747.52, -238.19], [-2761.22, -237.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2773.72, -343.7], [-2766.32, -354.27], [-2755.95, -347.06], [-2763.35, -336.49], [-2764.19, -337.07], [-2766.27, -334.12], [-2772.02, -338.13], [-2769.95, -341.08], [-2773.72, -343.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2919.67, -228.85], [-2912.11, -227.66], [-2911.0, -234.7], [-2910.13, -234.55], [-2909.21, -240.39], [-2910.07, -240.54], [-2908.95, -247.66], [-2914.5, -248.53], [-2914.89, -246.04], [-2916.9, -246.35], [-2919.67, -228.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3072.22, -292.71], [-3068.66, -292.12], [-3068.74, -291.65], [-3063.28, -290.76], [-3060.13, -309.61], [-3062.96, -310.07], [-3062.59, -312.27], [-3068.27, -313.22], [-3068.64, -311.02], [-3069.15, -311.1], [-3072.22, -292.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-3086.6, -295.41], [-3084.25, -295.03], [-3084.66, -292.52], [-3077.67, -291.4], [-3074.39, -311.69], [-3077.64, -312.22], [-3077.17, -315.14], [-3082.4, -315.98], [-3082.88, -313.05], [-3083.73, -313.18], [-3086.6, -295.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-3117.32, -263.49], [-3114.91, -278.91], [-3112.06, -278.47], [-3111.65, -281.11], [-3106.84, -280.36], [-3107.26, -277.73], [-3105.74, -277.48], [-3108.57, -259.35], [-3114.2, -260.23], [-3113.78, -262.94], [-3117.32, -263.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2982.42, -288.29], [-2975.29, -287.17], [-2973.24, -299.99], [-2973.8, -300.08], [-2973.5, -301.94], [-2979.32, -302.85], [-2979.62, -301.01], [-2980.37, -301.12], [-2980.89, -297.88], [-2981.88, -298.03], [-2982.8, -292.29], [-2981.81, -292.13], [-2982.42, -288.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-3038.93, -296.46], [-3037.42, -305.8], [-3027.09, -304.13], [-3028.61, -294.8], [-3038.93, -296.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3127.78, -298.95], [-3123.88, -323.87], [-3109.92, -321.71], [-3113.82, -296.79], [-3127.78, -298.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.286, "pop": 143, "jobs": 0}}, {"shape": {"outer": [[-3105.46, -261.61], [-3096.55, -260.02], [-3094.06, -273.92], [-3102.97, -275.51], [-3105.46, -261.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2918.28, -277.64], [-2908.85, -275.91], [-2906.69, -287.58], [-2916.11, -289.32], [-2918.28, -277.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2966.0, -237.27], [-2974.09, -238.46], [-2971.69, -254.63], [-2963.61, -253.44], [-2966.0, -237.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3036.89, -278.61], [-3036.18, -282.82], [-3030.08, -281.8], [-3030.79, -277.59], [-3036.89, -278.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-3019.35, -269.1], [-3025.28, -270.03], [-3024.27, -276.41], [-3018.35, -275.48], [-3019.35, -269.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-3031.99, -271.07], [-3025.78, -270.0], [-3024.71, -276.07], [-3030.93, -277.15], [-3031.99, -271.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2886.46, -225.76], [-2901.17, -228.11], [-2898.16, -246.77], [-2883.45, -244.42], [-2886.46, -225.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-3041.6, -251.17], [-3032.06, -249.61], [-3029.8, -263.35], [-3035.27, -264.24], [-3034.88, -266.62], [-3038.96, -267.29], [-3041.6, -251.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2964.47, -281.78], [-2957.6, -280.66], [-2955.23, -294.93], [-2963.04, -296.22], [-2964.29, -288.72], [-2963.35, -288.57], [-2964.47, -281.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-3091.81, -305.44], [-3102.24, -307.19], [-3100.09, -319.86], [-3092.57, -318.59], [-3092.94, -316.39], [-3090.03, -315.89], [-3091.81, -305.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2931.73, -232.98], [-2929.28, -232.6], [-2929.48, -231.26], [-2925.31, -230.62], [-2925.1, -231.95], [-2922.71, -231.58], [-2919.74, -250.64], [-2928.76, -252.03], [-2931.73, -232.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2906.35, -276.44], [-2904.68, -286.8], [-2903.01, -286.53], [-2902.63, -288.92], [-2894.98, -287.71], [-2895.37, -285.31], [-2893.98, -285.09], [-2895.64, -274.73], [-2906.35, -276.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2947.22, -234.33], [-2956.53, -235.87], [-2954.04, -250.83], [-2952.2, -250.52], [-2951.87, -252.52], [-2947.98, -251.88], [-2948.31, -249.88], [-2944.73, -249.29], [-2947.22, -234.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3022.08, -297.38], [-3020.75, -305.93], [-3019.02, -305.67], [-3018.67, -307.89], [-3012.16, -306.89], [-3012.51, -304.67], [-3005.87, -303.64], [-3007.2, -295.09], [-3022.08, -297.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-3094.8, -257.56], [-3085.95, -255.93], [-3083.87, -267.21], [-3084.76, -267.37], [-3084.49, -268.82], [-3089.6, -269.76], [-3089.87, -268.3], [-3092.72, -268.83], [-3094.8, -257.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1034.3, 2102.47], [1042.14, 2095.44], [1046.49, 2091.63], [1051.65, 2097.71], [1055.71, 2094.13], [1062.22, 2101.57], [1054.91, 2107.54], [1046.15, 2115.28], [1045.5, 2114.67], [1037.01, 2105.33], [1034.3, 2102.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.266, "pop": 133, "jobs": 0}}, {"shape": {"outer": [[1145.91, 1082.72], [1151.31, 1087.73], [1158.42, 1080.11], [1153.02, 1075.11], [1145.91, 1082.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[2122.95, 1883.87], [2128.49, 1889.15], [2135.79, 1881.53], [2134.34, 1880.15], [2137.22, 1877.15], [2133.13, 1873.24], [2130.35, 1876.14], [2130.01, 1875.8], [2126.62, 1879.33], [2126.97, 1879.67], [2122.95, 1883.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2025.37, 1784.41], [2020.05, 1779.08], [2023.47, 1775.69], [2022.98, 1775.19], [2026.65, 1771.57], [2027.15, 1772.06], [2030.77, 1768.48], [2034.92, 1772.64], [2033.6, 1773.94], [2034.78, 1775.12], [2025.37, 1784.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2108.56, 1863.34], [2111.29, 1860.56], [2110.76, 1860.04], [2114.87, 1855.83], [2116.65, 1857.56], [2118.35, 1855.83], [2121.41, 1858.82], [2119.72, 1860.54], [2120.68, 1861.48], [2113.85, 1868.47], [2108.56, 1863.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2040.17, 1718.19], [2040.8, 1718.83], [2037.67, 1721.95], [2041.48, 1725.74], [2044.61, 1722.6], [2046.09, 1724.07], [2050.31, 1719.85], [2049.48, 1719.03], [2053.55, 1714.96], [2048.46, 1709.91], [2040.17, 1718.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2189.86, 1864.0], [2194.9, 1868.89], [2196.89, 1866.85], [2197.5, 1867.45], [2202.9, 1861.93], [2200.14, 1859.25], [2201.23, 1858.13], [2198.83, 1855.81], [2197.74, 1856.93], [2197.24, 1856.44], [2189.86, 1864.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1944.98, 1710.61], [1950.45, 1704.71], [1951.5, 1705.67], [1956.8, 1699.94], [1958.27, 1701.3], [1957.06, 1702.62], [1960.72, 1705.98], [1953.89, 1713.36], [1952.98, 1712.53], [1950.27, 1715.47], [1944.98, 1710.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2042.41, 1801.68], [2037.04, 1796.43], [2041.13, 1792.27], [2040.5, 1791.66], [2043.88, 1788.22], [2044.5, 1788.83], [2046.83, 1786.47], [2048.11, 1787.72], [2049.05, 1786.78], [2053.14, 1790.76], [2042.41, 1801.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2172.45, 1845.27], [2178.69, 1838.63], [2181.37, 1841.14], [2182.67, 1839.76], [2186.74, 1843.57], [2179.2, 1851.58], [2176.34, 1848.9], [2173.95, 1851.44], [2170.57, 1848.28], [2172.96, 1845.74], [2172.45, 1845.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2087.45, 1769.71], [2082.32, 1764.91], [2085.43, 1761.62], [2084.68, 1760.92], [2085.35, 1760.22], [2084.76, 1759.67], [2087.78, 1756.48], [2088.36, 1757.03], [2091.23, 1753.99], [2097.47, 1759.84], [2090.96, 1766.75], [2090.58, 1766.39], [2087.45, 1769.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2081.98, 1836.66], [2085.07, 1833.55], [2084.41, 1832.88], [2087.35, 1829.93], [2088.02, 1830.59], [2089.73, 1828.88], [2095.35, 1834.43], [2087.6, 1842.22], [2086.97, 1841.59], [2085.22, 1843.35], [2080.86, 1839.05], [2082.61, 1837.28], [2081.98, 1836.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2061.73, 1816.94], [2055.87, 1811.37], [2058.67, 1808.46], [2058.21, 1808.01], [2061.38, 1804.7], [2061.84, 1805.14], [2063.84, 1803.06], [2066.12, 1805.22], [2067.77, 1803.51], [2070.8, 1806.4], [2069.16, 1808.13], [2069.69, 1808.63], [2061.73, 1816.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2106.44, 1788.4], [2100.01, 1782.09], [2107.13, 1774.87], [2107.75, 1775.48], [2110.6, 1772.6], [2110.99, 1772.98], [2112.5, 1771.45], [2117.35, 1776.21], [2115.83, 1777.74], [2116.41, 1778.3], [2112.58, 1782.19], [2112.91, 1782.51], [2109.29, 1786.19], [2108.94, 1785.86], [2106.44, 1788.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2144.44, 1596.66], [2147.68, 1593.49], [2148.83, 1594.66], [2154.97, 1588.66], [2155.58, 1589.28], [2171.79, 1573.43], [2169.77, 1571.38], [2174.54, 1566.71], [2177.47, 1569.68], [2178.82, 1568.36], [2183.94, 1573.56], [2188.43, 1578.13], [2187.07, 1579.44], [2190.16, 1582.59], [2189.55, 1583.19], [2202.06, 1595.89], [2170.83, 1621.68], [2158.76, 1609.42], [2162.07, 1606.19], [2156.31, 1600.34], [2152.1, 1604.45], [2144.44, 1596.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.951, "pop": 0, "jobs": 951}}, {"shape": {"outer": [[2113.41, 1786.95], [2120.81, 1779.67], [2126.43, 1785.33], [2119.03, 1792.62], [2113.41, 1786.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2070.05, 1764.52], [2066.26, 1761.15], [2071.3, 1755.53], [2075.09, 1758.89], [2070.05, 1764.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2140.94, 1832.64], [2144.9, 1836.44], [2148.82, 1832.39], [2144.86, 1828.59], [2140.94, 1832.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2083.35, 1759.68], [2077.17, 1753.67], [2084.05, 1746.66], [2090.23, 1752.66], [2083.35, 1759.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2035.58, 1758.94], [2040.66, 1753.71], [2045.89, 1758.78], [2040.81, 1764.0], [2035.58, 1758.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2192.66, 1889.77], [2187.91, 1894.77], [2180.0, 1887.32], [2184.75, 1882.31], [2192.66, 1889.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1971.37, 1702.31], [1974.11, 1699.22], [1978.64, 1703.24], [1975.9, 1706.32], [1971.37, 1702.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2172.56, 1800.26], [2165.77, 1794.03], [2173.77, 1785.37], [2180.56, 1791.6], [2172.56, 1800.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2128.5, 1800.19], [2134.02, 1794.65], [2127.49, 1788.16], [2121.95, 1793.69], [2128.5, 1800.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2109.96, 1838.98], [2114.98, 1834.14], [2119.82, 1839.11], [2114.8, 1843.95], [2109.96, 1838.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2009.04, 1609.57], [2002.22, 1603.1], [2010.49, 1594.44], [2017.31, 1600.9], [2009.04, 1609.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2010.55, 1697.23], [2016.09, 1691.65], [2007.6, 1683.29], [2002.06, 1688.87], [2010.55, 1697.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2170.54, 1845.38], [2164.2, 1839.26], [2173.49, 1829.7], [2179.84, 1835.81], [2170.54, 1845.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2144.01, 1772.0], [2138.78, 1766.75], [2143.19, 1762.38], [2148.42, 1767.63], [2144.01, 1772.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2211.61, 1870.39], [2205.36, 1864.49], [2198.21, 1872.02], [2204.46, 1877.91], [2211.61, 1870.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2129.49, 1813.15], [2123.91, 1807.97], [2135.18, 1795.92], [2140.76, 1801.11], [2129.49, 1813.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2000.18, 1599.48], [1992.72, 1592.5], [2003.7, 1580.87], [2011.15, 1587.85], [2000.18, 1599.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2000.59, 1572.43], [1996.81, 1568.9], [2001.45, 1563.99], [2005.22, 1567.52], [2000.59, 1572.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2155.09, 1845.54], [2158.93, 1849.03], [2163.12, 1844.44], [2159.28, 1840.96], [2155.09, 1845.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2133.99, 1757.37], [2139.4, 1762.47], [2145.87, 1755.64], [2140.46, 1750.55], [2133.99, 1757.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2147.17, 1904.02], [2142.24, 1899.2], [2150.08, 1891.24], [2155.02, 1896.06], [2147.17, 1904.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1946.4, 1688.13], [1942.52, 1684.24], [1945.29, 1681.5], [1949.17, 1685.39], [1946.4, 1688.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2169.61, 1901.62], [2172.51, 1898.72], [2176.85, 1903.01], [2173.94, 1905.91], [2169.61, 1901.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1926.15, 1692.97], [1932.7, 1685.8], [1938.69, 1691.23], [1932.15, 1698.4], [1926.15, 1692.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2081.29, 1780.56], [2076.62, 1785.41], [2081.17, 1789.75], [2085.84, 1784.9], [2081.29, 1780.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1955.03, 1719.53], [1960.13, 1713.96], [1966.68, 1719.92], [1961.58, 1725.48], [1955.03, 1719.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2052.99, 1734.56], [2047.2, 1728.9], [2057.37, 1718.58], [2063.16, 1724.23], [2052.99, 1734.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2069.92, 1800.2], [2065.91, 1796.47], [2070.57, 1791.49], [2074.59, 1795.24], [2069.92, 1800.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2054.61, 1738.42], [2050.65, 1734.69], [2048.0, 1737.49], [2051.96, 1741.21], [2054.61, 1738.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2082.23, 1808.16], [2077.15, 1803.12], [2082.24, 1798.01], [2087.33, 1803.05], [2082.23, 1808.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1976.06, 1698.42], [1978.26, 1695.93], [1982.96, 1700.04], [1980.76, 1702.54], [1976.06, 1698.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2173.67, 1803.17], [2179.14, 1808.32], [2186.62, 1800.43], [2181.16, 1795.29], [2173.67, 1803.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2103.29, 1797.91], [2100.98, 1795.71], [2105.07, 1791.46], [2107.37, 1793.66], [2103.29, 1797.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1991.2, 1685.32], [1988.93, 1689.24], [1984.87, 1686.91], [1987.15, 1682.97], [1991.2, 1685.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2191.04, 1818.15], [2198.41, 1810.52], [2189.49, 1801.95], [2182.11, 1809.59], [2191.04, 1818.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2070.64, 1781.3], [2075.49, 1785.74], [2079.72, 1781.17], [2074.89, 1776.72], [2070.64, 1781.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2154.77, 1913.74], [2148.11, 1907.24], [2158.77, 1896.38], [2165.45, 1902.88], [2154.77, 1913.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2029.07, 1625.71], [2035.83, 1632.05], [2044.48, 1622.88], [2037.73, 1616.55], [2029.07, 1625.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2208.11, 1825.27], [2202.47, 1830.83], [2210.56, 1838.98], [2216.2, 1833.42], [2208.11, 1825.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2028.46, 1785.52], [2034.76, 1779.33], [2041.06, 1785.68], [2034.76, 1791.88], [2028.46, 1785.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2026.06, 1624.71], [2019.44, 1618.38], [2027.29, 1610.21], [2033.92, 1616.54], [2026.06, 1624.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2136.75, 1811.46], [2142.55, 1817.13], [2150.83, 1808.72], [2145.02, 1803.04], [2136.75, 1811.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2057.72, 1779.99], [2053.89, 1776.36], [2058.56, 1771.45], [2062.4, 1775.07], [2057.72, 1779.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2115.85, 1743.51], [2110.52, 1738.59], [2115.87, 1732.84], [2121.2, 1737.75], [2115.85, 1743.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2139.2, 1824.38], [2135.71, 1821.0], [2131.25, 1825.6], [2134.75, 1828.97], [2139.2, 1824.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1924.23, 1642.42], [1927.93, 1637.18], [1935.71, 1642.63], [1932.01, 1647.87], [1924.23, 1642.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2186.16, 1860.61], [2179.34, 1854.2], [2186.87, 1846.25], [2193.69, 1852.67], [2186.16, 1860.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1959.26, 1699.16], [1956.21, 1696.19], [1959.55, 1692.78], [1962.6, 1695.75], [1959.26, 1699.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2053.75, 1636.12], [2050.84, 1633.29], [2054.28, 1629.76], [2057.21, 1632.6], [2053.75, 1636.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1976.38, 1628.07], [1985.17, 1618.39], [2007.54, 1638.57], [1998.76, 1648.24], [1976.38, 1628.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.252, "pop": 0, "jobs": 252}}, {"shape": {"outer": [[2050.4, 1751.65], [2047.5, 1748.96], [2051.81, 1744.39], [2054.69, 1747.07], [2050.4, 1751.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2051.49, 1807.96], [2045.71, 1802.75], [2052.15, 1795.66], [2052.48, 1795.95], [2054.59, 1793.61], [2060.04, 1798.53], [2051.49, 1807.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2159.11, 1838.72], [2153.12, 1832.87], [2159.85, 1826.03], [2160.33, 1826.49], [2164.27, 1822.49], [2169.78, 1827.87], [2159.11, 1838.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2096.43, 1854.92], [2102.42, 1860.93], [2104.08, 1859.31], [2104.5, 1859.74], [2110.77, 1853.53], [2104.34, 1847.08], [2096.43, 1854.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2068.71, 1826.8], [2063.09, 1821.38], [2070.88, 1813.36], [2073.59, 1815.97], [2075.33, 1814.17], [2078.25, 1816.97], [2068.71, 1826.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1942.09, 1708.52], [1936.53, 1703.63], [1944.11, 1695.08], [1947.08, 1697.68], [1945.48, 1699.49], [1948.08, 1701.77], [1942.09, 1708.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1964.16, 1727.98], [1969.86, 1722.24], [1975.86, 1728.15], [1973.85, 1730.17], [1975.08, 1731.37], [1971.39, 1735.09], [1964.16, 1727.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2095.08, 1853.25], [2087.73, 1846.07], [2099.12, 1834.47], [2102.05, 1837.33], [2100.77, 1838.64], [2105.19, 1842.95], [2095.08, 1853.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1872.37, 1632.83], [1880.82, 1623.55], [1899.25, 1640.19], [1891.65, 1648.54], [1882.66, 1640.41], [1881.81, 1641.36], [1872.37, 1632.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[2007.71, 1768.06], [2002.23, 1762.87], [2006.27, 1758.64], [2005.67, 1758.08], [2009.7, 1753.85], [2015.77, 1759.59], [2007.71, 1768.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1986.51, 1706.57], [1993.95, 1713.77], [1997.18, 1710.46], [1995.83, 1709.16], [1998.5, 1706.43], [1992.4, 1700.52], [1986.51, 1706.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2016.04, 1616.01], [2011.01, 1611.29], [2021.73, 1599.94], [2027.59, 1605.44], [2020.92, 1612.5], [2020.09, 1611.73], [2016.04, 1616.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1975.88, 1723.58], [1971.32, 1719.46], [1971.76, 1718.98], [1968.44, 1715.98], [1972.51, 1711.51], [1980.39, 1718.62], [1975.88, 1723.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1915.5, 1683.47], [1918.69, 1680.03], [1921.11, 1682.27], [1923.83, 1679.33], [1929.27, 1684.34], [1923.36, 1690.71], [1915.5, 1683.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2134.86, 1889.33], [2140.38, 1894.6], [2148.23, 1886.43], [2146.84, 1885.1], [2148.19, 1883.68], [2144.76, 1880.41], [2143.41, 1881.82], [2142.71, 1881.16], [2134.86, 1889.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2065.01, 1747.87], [2073.82, 1738.26], [2081.15, 1744.93], [2072.33, 1754.54], [2071.92, 1754.17], [2070.64, 1755.55], [2064.2, 1749.68], [2065.47, 1748.3], [2065.01, 1747.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1992.39, 1589.88], [1986.92, 1584.72], [1989.37, 1582.15], [1988.83, 1581.64], [1992.12, 1578.18], [1992.66, 1578.68], [1995.44, 1575.74], [2000.91, 1580.9], [1992.39, 1589.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2180.81, 1900.65], [2174.14, 1894.4], [2179.75, 1888.45], [2186.42, 1894.7], [2185.92, 1895.23], [2187.74, 1896.94], [2183.07, 1901.9], [2181.25, 1900.19], [2180.81, 1900.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2097.3, 1780.57], [2090.2, 1773.61], [2100.9, 1762.75], [2101.58, 1763.41], [2102.3, 1762.69], [2104.26, 1764.61], [2103.54, 1765.33], [2108.01, 1769.7], [2097.3, 1780.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1977.88, 1714.76], [1983.56, 1708.83], [1990.07, 1715.01], [1989.19, 1715.93], [1990.8, 1717.45], [1986.78, 1721.65], [1985.17, 1720.13], [1984.39, 1720.94], [1977.88, 1714.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2149.82, 1826.97], [2144.34, 1821.72], [2146.83, 1819.14], [2146.47, 1818.78], [2149.66, 1815.48], [2150.02, 1815.83], [2153.68, 1812.04], [2159.16, 1817.29], [2149.82, 1826.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2018.04, 1774.51], [2012.23, 1768.84], [2021.16, 1759.76], [2022.94, 1761.51], [2023.95, 1760.5], [2026.84, 1763.32], [2025.84, 1764.33], [2026.96, 1765.43], [2018.04, 1774.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2116.46, 1870.25], [2122.0, 1864.67], [2128.03, 1870.63], [2122.5, 1876.2], [2121.84, 1875.55], [2119.93, 1877.48], [2115.38, 1872.98], [2117.28, 1871.06], [2116.46, 1870.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1991.88, 1695.75], [1998.26, 1689.52], [2006.58, 1698.0], [2005.68, 1698.88], [2007.49, 1700.73], [2002.66, 1705.44], [2000.84, 1703.6], [2000.2, 1704.21], [1991.88, 1695.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2162.03, 1921.16], [2155.27, 1914.42], [2166.59, 1903.16], [2167.58, 1904.16], [2168.65, 1903.09], [2173.28, 1907.73], [2172.23, 1908.78], [2173.34, 1909.91], [2162.03, 1921.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2056.42, 1739.39], [2063.15, 1745.46], [2072.23, 1735.45], [2068.89, 1732.45], [2069.49, 1731.8], [2067.25, 1729.78], [2066.65, 1730.43], [2065.49, 1729.38], [2056.42, 1739.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2117.14, 1744.14], [2121.0, 1747.94], [2121.74, 1747.19], [2123.12, 1748.55], [2126.13, 1745.52], [2132.54, 1751.84], [2136.7, 1747.65], [2125.04, 1736.17], [2117.14, 1744.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2077.75, 1835.35], [2072.44, 1830.22], [2076.33, 1826.21], [2075.87, 1825.77], [2079.27, 1822.28], [2079.72, 1822.72], [2083.04, 1819.32], [2088.35, 1824.45], [2077.75, 1835.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2043.14, 1627.28], [2038.61, 1632.38], [2040.71, 1634.23], [2040.02, 1635.02], [2041.96, 1636.73], [2042.66, 1635.95], [2044.53, 1637.61], [2049.07, 1632.51], [2043.14, 1627.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2043.92, 1645.71], [2048.0, 1641.16], [2052.79, 1645.43], [2053.63, 1644.48], [2054.76, 1645.48], [2055.42, 1644.74], [2060.04, 1648.87], [2054.45, 1655.1], [2043.92, 1645.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2014.32, 1870.38], [2012.47, 1868.6], [2010.31, 1870.81], [2007.37, 1867.98], [2009.52, 1865.76], [2007.69, 1864.01], [2017.3, 1854.07], [2020.38, 1857.03], [2022.03, 1855.33], [2025.58, 1858.74], [2014.32, 1870.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1943.06, 1894.16], [1951.03, 1886.03], [1953.95, 1888.87], [1953.04, 1889.8], [1956.47, 1893.15], [1949.41, 1900.35], [1948.77, 1899.72], [1947.33, 1901.19], [1942.55, 1896.54], [1944.0, 1895.06], [1943.06, 1894.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1960.56, 1894.81], [1965.02, 1890.15], [1969.83, 1894.7], [1968.44, 1896.15], [1968.97, 1896.66], [1967.21, 1898.5], [1967.94, 1899.19], [1957.27, 1910.36], [1952.4, 1905.73], [1961.76, 1895.94], [1960.56, 1894.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1918.79, 1832.47], [1928.78, 1842.71], [1934.12, 1837.54], [1924.13, 1827.29], [1923.88, 1827.54], [1922.74, 1826.37], [1919.71, 1829.32], [1918.78, 1828.34], [1917.36, 1829.72], [1918.3, 1830.68], [1917.94, 1831.03], [1919.07, 1832.2], [1918.79, 1832.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1970.48, 1828.12], [1968.47, 1826.15], [1967.18, 1827.46], [1963.41, 1823.76], [1964.7, 1822.45], [1964.26, 1822.03], [1973.93, 1812.22], [1976.54, 1814.78], [1978.03, 1813.27], [1981.12, 1816.3], [1979.63, 1817.8], [1980.15, 1818.31], [1970.48, 1828.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1975.46, 1826.98], [1982.23, 1819.97], [1982.63, 1820.34], [1983.99, 1818.94], [1990.41, 1825.09], [1988.91, 1826.65], [1989.46, 1827.17], [1982.85, 1834.04], [1981.61, 1832.86], [1980.19, 1834.34], [1977.2, 1831.48], [1978.63, 1830.0], [1975.46, 1826.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2020.32, 1866.17], [2025.86, 1860.52], [2027.68, 1862.29], [2028.26, 1861.7], [2030.33, 1863.71], [2029.75, 1864.31], [2031.64, 1866.13], [2026.1, 1871.79], [2025.25, 1870.96], [2024.19, 1872.02], [2019.7, 1867.66], [2020.76, 1866.6], [2020.32, 1866.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2074.89, 1984.3], [2082.99, 1991.98], [2096.33, 1978.03], [2098.43, 1980.02], [2103.2, 1975.04], [2099.73, 1971.74], [2103.57, 1967.73], [2091.52, 1956.3], [2096.17, 1951.44], [2085.29, 1941.11], [2080.64, 1945.98], [2069.85, 1935.74], [2059.97, 1946.07], [2086.95, 1971.68], [2074.89, 1984.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.638, "pop": 0, "jobs": 638}}, {"shape": {"outer": [[2062.77, 1985.78], [2053.26, 1976.54], [2052.63, 1977.19], [2050.2, 1974.82], [2050.84, 1974.17], [2045.98, 1969.44], [2055.18, 1960.04], [2071.99, 1976.4], [2062.77, 1985.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[2020.49, 1925.89], [2030.03, 1916.02], [2033.88, 1919.7], [2034.77, 1918.77], [2038.11, 1921.98], [2037.0, 1923.12], [2041.66, 1927.59], [2040.74, 1928.54], [2044.72, 1932.36], [2045.45, 1931.59], [2049.63, 1935.59], [2048.64, 1936.61], [2053.66, 1941.43], [2052.32, 1942.82], [2054.68, 1945.09], [2045.1, 1954.99], [2041.42, 1951.47], [2042.83, 1950.02], [2040.2, 1947.49], [2042.53, 1945.07], [2041.42, 1944.02], [2040.86, 1944.6], [2037.94, 1941.79], [2036.76, 1943.02], [2030.61, 1937.13], [2031.95, 1935.75], [2029.27, 1933.18], [2030.95, 1931.44], [2029.84, 1930.38], [2028.89, 1931.37], [2026.13, 1928.73], [2024.84, 1930.07], [2020.49, 1925.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.402, "pop": 201, "jobs": 0}}, {"shape": {"outer": [[1986.09, 1936.7], [1979.84, 1930.6], [1988.27, 1922.0], [1994.53, 1928.1], [1986.09, 1936.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1958.08, 1884.75], [1960.97, 1881.96], [1964.8, 1885.88], [1961.91, 1888.67], [1958.08, 1884.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2039.1, 1886.4], [2033.64, 1881.2], [2039.77, 1874.81], [2045.23, 1880.0], [2039.1, 1886.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1989.74, 1916.78], [1994.25, 1921.03], [2000.25, 1914.72], [1995.73, 1910.47], [1989.74, 1916.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1939.82, 1878.02], [1942.48, 1880.54], [1946.2, 1876.62], [1943.53, 1874.11], [1939.82, 1878.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2025.76, 1886.6], [2020.47, 1881.69], [2032.45, 1868.89], [2037.74, 1873.8], [2025.76, 1886.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1914.96, 1855.9], [1918.54, 1852.27], [1923.09, 1856.71], [1919.51, 1860.35], [1914.96, 1855.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2022.33, 1902.58], [2017.74, 1898.07], [2013.07, 1902.77], [2017.66, 1907.29], [2022.33, 1902.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1986.17, 1910.05], [1983.36, 1907.4], [1987.0, 1903.57], [1989.81, 1906.22], [1986.17, 1910.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2008.51, 1858.99], [2002.58, 1853.18], [2010.76, 1844.89], [2016.69, 1850.7], [2008.51, 1858.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1972.63, 1897.23], [1975.45, 1899.98], [1979.49, 1895.85], [1976.67, 1893.1], [1972.63, 1897.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1908.1, 1840.0], [1913.77, 1834.38], [1922.15, 1842.78], [1916.48, 1848.4], [1908.1, 1840.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1999.83, 1879.17], [1994.55, 1874.4], [2000.69, 1867.64], [2005.97, 1872.41], [1999.83, 1879.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2011.31, 1879.5], [2014.95, 1883.33], [2019.58, 1878.95], [2015.93, 1875.12], [2011.31, 1879.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1969.32, 1893.39], [1972.5, 1896.45], [1977.58, 1891.21], [1974.41, 1888.15], [1969.32, 1893.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1935.81, 1887.41], [1940.98, 1892.44], [1949.57, 1883.66], [1944.81, 1879.02], [1942.11, 1881.79], [1941.71, 1881.39], [1935.81, 1887.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1988.57, 1843.13], [1982.03, 1836.93], [1990.72, 1827.82], [1993.72, 1830.67], [1995.55, 1828.75], [1999.09, 1832.09], [1988.57, 1843.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1932.88, 1883.88], [1930.93, 1882.02], [1929.54, 1883.46], [1925.27, 1879.36], [1935.47, 1868.8], [1941.69, 1874.77], [1932.88, 1883.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1961.91, 1819.18], [1958.76, 1816.24], [1957.21, 1817.87], [1954.14, 1815.0], [1966.09, 1802.35], [1972.3, 1808.17], [1961.91, 1819.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1932.51, 1867.28], [1929.31, 1864.38], [1930.75, 1862.8], [1929.14, 1861.35], [1932.0, 1858.22], [1936.8, 1862.59], [1932.51, 1867.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1969.61, 1923.24], [1981.3, 1911.32], [1982.67, 1912.66], [1984.9, 1910.38], [1988.6, 1913.99], [1984.28, 1918.39], [1985.31, 1919.39], [1975.71, 1929.18], [1969.61, 1923.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1907.83, 1856.65], [1901.42, 1850.56], [1902.96, 1848.95], [1901.14, 1847.22], [1904.51, 1843.72], [1906.31, 1845.44], [1906.99, 1844.73], [1913.4, 1850.83], [1907.83, 1856.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2044.35, 1897.84], [2038.52, 1892.44], [2042.1, 1888.6], [2041.67, 1888.2], [2045.07, 1884.57], [2045.49, 1884.96], [2049.52, 1880.66], [2055.35, 1886.07], [2044.35, 1897.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1992.69, 1844.78], [2002.75, 1834.3], [2009.26, 1840.52], [1999.2, 1851.0], [1997.92, 1849.77], [1996.79, 1850.94], [1993.32, 1847.63], [1994.44, 1846.45], [1992.69, 1844.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1961.75, 1912.27], [1969.88, 1903.97], [1975.86, 1909.79], [1967.73, 1918.09], [1967.32, 1917.69], [1965.83, 1919.21], [1960.79, 1914.31], [1962.28, 1912.79], [1961.75, 1912.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2345.49, 1873.5], [2342.89, 1869.29], [2343.43, 1868.96], [2341.92, 1866.5], [2333.87, 1871.44], [2330.03, 1865.21], [2338.42, 1860.06], [2339.82, 1862.33], [2359.76, 1850.1], [2366.32, 1860.73], [2345.49, 1873.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.237, "pop": 0, "jobs": 237}}, {"shape": {"outer": [[2389.08, 1839.61], [2400.13, 1832.83], [2395.9, 1826.0], [2390.64, 1829.22], [2387.94, 1824.84], [2395.2, 1820.38], [2390.86, 1813.37], [2377.84, 1821.35], [2380.26, 1825.26], [2378.97, 1826.05], [2384.04, 1834.25], [2385.3, 1833.47], [2389.08, 1839.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.224, "pop": 112, "jobs": 0}}, {"shape": {"outer": [[2425.99, 1840.59], [2429.64, 1846.95], [2438.76, 1841.75], [2435.1, 1835.4], [2425.99, 1840.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2369.89, 1736.87], [2375.49, 1738.28], [2380.85, 1717.29], [2375.26, 1715.86], [2369.89, 1736.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.08, "pop": 0, "jobs": 80}}, {"shape": {"outer": [[2335.8, 1854.27], [2331.6, 1847.35], [2335.09, 1845.25], [2334.55, 1844.37], [2344.69, 1838.26], [2349.43, 1846.05], [2335.8, 1854.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2436.32, 1834.26], [2440.55, 1840.87], [2448.16, 1836.01], [2447.84, 1835.52], [2454.63, 1831.18], [2450.7, 1825.08], [2436.32, 1834.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2404.01, 1883.65], [2409.41, 1892.3], [2440.72, 1872.9], [2419.43, 1838.82], [2417.35, 1840.1], [2410.6, 1829.28], [2397.37, 1837.49], [2398.2, 1838.83], [2382.57, 1848.52], [2388.41, 1857.87], [2407.18, 1846.22], [2423.16, 1871.78], [2404.01, 1883.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.771, "pop": 0, "jobs": 771}}, {"shape": {"outer": [[2458.42, 1971.33], [2450.06, 1957.63], [2468.86, 1946.24], [2477.22, 1959.94], [2458.42, 1971.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[2453.36, 1950.6], [2449.51, 1944.25], [2459.01, 1938.55], [2462.86, 1944.91], [2453.36, 1950.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2422.81, 1900.97], [2426.97, 1907.66], [2440.65, 1899.19], [2436.49, 1892.51], [2422.81, 1900.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2449.67, 1940.72], [2445.18, 1933.39], [2457.32, 1925.99], [2461.81, 1933.32], [2449.67, 1940.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2406.49, 1877.99], [2401.76, 1870.28], [2414.04, 1862.49], [2418.89, 1870.31], [2406.49, 1877.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2432.34, 1917.26], [2427.38, 1909.81], [2436.2, 1903.97], [2441.17, 1911.42], [2432.34, 1917.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2423.57, 1893.37], [2419.69, 1887.35], [2431.09, 1880.08], [2434.95, 1886.09], [2423.57, 1893.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2440.78, 1926.23], [2444.88, 1932.8], [2453.54, 1927.42], [2449.05, 1920.24], [2445.38, 1922.54], [2445.75, 1923.14], [2440.78, 1926.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2439.54, 1924.26], [2439.4, 1924.01], [2437.61, 1925.13], [2434.3, 1919.85], [2436.08, 1918.74], [2435.82, 1918.32], [2444.41, 1912.96], [2448.13, 1918.9], [2439.54, 1924.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2237.92, 1613.01], [2233.79, 1606.47], [2249.02, 1596.9], [2249.83, 1598.17], [2252.1, 1596.74], [2255.42, 1602.02], [2248.16, 1606.58], [2247.15, 1604.99], [2245.76, 1605.86], [2246.77, 1607.45], [2237.92, 1613.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[2301.65, 1628.54], [2300.04, 1635.66], [2303.12, 1636.36], [2302.73, 1638.07], [2314.15, 1640.63], [2315.28, 1635.61], [2313.14, 1635.14], [2314.09, 1630.96], [2304.75, 1628.86], [2304.67, 1629.21], [2301.65, 1628.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2365.5, 1688.93], [2365.61, 1688.51], [2363.07, 1687.88], [2364.08, 1683.78], [2366.63, 1684.41], [2367.37, 1681.43], [2384.04, 1685.54], [2382.42, 1692.09], [2375.72, 1690.44], [2375.49, 1691.4], [2365.5, 1688.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2450.39, 1850.62], [2446.67, 1844.59], [2449.13, 1843.07], [2448.65, 1842.29], [2456.51, 1837.46], [2456.91, 1838.11], [2459.22, 1836.69], [2462.61, 1842.17], [2460.29, 1843.59], [2460.72, 1844.29], [2450.39, 1850.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2418.32, 1656.08], [2439.22, 1661.02], [2438.35, 1664.69], [2442.93, 1665.77], [2441.72, 1670.84], [2437.15, 1669.76], [2434.29, 1681.74], [2439.78, 1683.04], [2438.41, 1688.78], [2432.85, 1687.47], [2432.78, 1687.76], [2411.94, 1682.84], [2418.32, 1656.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.415, "pop": 0, "jobs": 415}}, {"shape": {"outer": [[2361.5, 1700.29], [2361.61, 1699.83], [2359.12, 1699.22], [2360.18, 1694.87], [2362.68, 1695.48], [2363.24, 1693.17], [2381.17, 1697.52], [2379.43, 1704.63], [2373.62, 1703.23], [2373.45, 1703.92], [2368.28, 1702.67], [2368.46, 1701.97], [2361.5, 1700.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2479.1, 1827.69], [2479.3, 1826.83], [2477.56, 1826.43], [2479.03, 1820.15], [2480.77, 1820.56], [2480.9, 1820.02], [2493.65, 1823.0], [2491.85, 1830.66], [2488.09, 1829.79], [2487.97, 1830.29], [2483.39, 1829.23], [2483.52, 1828.73], [2479.1, 1827.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2343.5, 1611.43], [2341.46, 1618.27], [2346.19, 1619.66], [2345.98, 1620.39], [2349.49, 1621.42], [2349.24, 1622.25], [2353.92, 1623.63], [2354.45, 1621.85], [2357.25, 1622.68], [2359.08, 1616.51], [2356.03, 1615.62], [2356.3, 1614.68], [2350.57, 1612.98], [2350.43, 1613.46], [2343.5, 1611.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2382.08, 1675.35], [2387.44, 1676.71], [2387.57, 1676.2], [2389.79, 1676.77], [2389.66, 1677.27], [2395.12, 1678.66], [2396.55, 1673.09], [2397.61, 1673.36], [2398.84, 1668.57], [2397.78, 1668.3], [2398.48, 1665.54], [2385.45, 1662.24], [2383.11, 1671.34], [2382.77, 1671.25], [2382.02, 1674.17], [2382.36, 1674.26], [2382.08, 1675.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2361.19, 1669.98], [2362.34, 1665.49], [2361.24, 1665.21], [2363.04, 1658.11], [2363.97, 1658.34], [2364.36, 1656.8], [2382.04, 1661.26], [2381.33, 1664.06], [2382.85, 1664.45], [2381.61, 1669.28], [2380.0, 1668.88], [2379.52, 1670.78], [2380.05, 1670.92], [2379.13, 1674.51], [2373.43, 1673.07], [2373.51, 1672.7], [2371.21, 1672.12], [2371.11, 1672.49], [2361.19, 1669.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[2387.44, 1644.78], [2388.79, 1639.28], [2387.79, 1639.05], [2388.89, 1634.58], [2389.89, 1634.83], [2390.74, 1631.36], [2396.31, 1632.72], [2396.11, 1633.52], [2398.36, 1634.07], [2398.55, 1633.26], [2403.75, 1634.53], [2402.77, 1638.54], [2403.97, 1638.82], [2402.98, 1642.89], [2401.76, 1642.59], [2400.45, 1647.95], [2395.14, 1646.66], [2395.22, 1646.34], [2392.85, 1645.76], [2392.77, 1646.09], [2387.44, 1644.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2369.76, 1640.33], [2371.11, 1634.83], [2370.12, 1634.58], [2371.22, 1630.13], [2372.21, 1630.37], [2373.07, 1626.9], [2378.63, 1628.26], [2378.43, 1629.06], [2380.69, 1629.61], [2380.88, 1628.8], [2386.07, 1630.07], [2385.09, 1634.08], [2386.29, 1634.38], [2385.3, 1638.43], [2384.09, 1638.14], [2382.77, 1643.5], [2377.46, 1642.2], [2377.54, 1641.89], [2375.17, 1641.31], [2375.1, 1641.62], [2369.76, 1640.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2511.47, 1848.65], [2508.33, 1843.39], [2517.65, 1837.85], [2520.8, 1843.1], [2511.47, 1848.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2457.1, 1862.24], [2453.22, 1855.85], [2465.89, 1848.2], [2469.78, 1854.59], [2457.1, 1862.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2291.22, 1605.31], [2292.6, 1599.85], [2300.65, 1601.88], [2299.26, 1607.34], [2291.22, 1605.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2501.51, 1862.49], [2495.97, 1853.62], [2506.81, 1846.89], [2512.35, 1855.76], [2501.51, 1862.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2542.12, 1781.58], [2534.85, 1779.65], [2527.59, 1777.72], [2527.76, 1775.25], [2528.72, 1761.46], [2530.13, 1761.55], [2530.36, 1758.45], [2529.0, 1758.35], [2529.36, 1753.01], [2530.74, 1753.17], [2531.31, 1746.52], [2529.8, 1746.44], [2530.64, 1734.62], [2540.91, 1735.67], [2542.87, 1736.97], [2549.31, 1741.22], [2548.82, 1747.09], [2548.19, 1747.08], [2548.01, 1749.35], [2547.3, 1758.26], [2548.41, 1758.38], [2547.08, 1762.62], [2542.12, 1781.58]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 532, "jobs": 0}}, {"shape": {"outer": [[2464.23, 1867.27], [2460.76, 1861.35], [2469.31, 1856.38], [2472.78, 1862.29], [2464.23, 1867.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2265.55, 1657.54], [2262.34, 1652.35], [2271.99, 1646.42], [2275.2, 1651.61], [2265.55, 1657.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2486.76, 1839.47], [2483.44, 1834.5], [2489.43, 1830.52], [2492.76, 1835.49], [2486.76, 1839.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2303.08, 1582.41], [2304.17, 1578.48], [2313.23, 1580.99], [2312.13, 1584.92], [2303.08, 1582.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2496.36, 1822.09], [2497.18, 1818.16], [2501.22, 1819.0], [2500.4, 1822.93], [2496.36, 1822.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2455.5, 1877.84], [2452.44, 1872.99], [2458.42, 1869.24], [2461.47, 1874.09], [2455.5, 1877.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2248.37, 1630.43], [2252.43, 1636.98], [2266.79, 1628.15], [2262.73, 1621.59], [2248.37, 1630.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[2226.19, 1589.04], [2220.21, 1579.38], [2241.48, 1566.32], [2245.21, 1572.35], [2247.45, 1575.98], [2226.19, 1589.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[2278.81, 1638.23], [2287.21, 1633.08], [2281.83, 1624.36], [2273.43, 1629.51], [2278.81, 1638.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2247.79, 1628.41], [2238.92, 1614.12], [2266.43, 1597.16], [2275.3, 1611.46], [2247.79, 1628.41]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.348, "pop": 0, "jobs": 348}}, {"shape": {"outer": [[2519.44, 1861.21], [2517.19, 1857.38], [2522.25, 1854.44], [2524.5, 1858.25], [2519.44, 1861.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2451.56, 1856.35], [2449.11, 1852.53], [2443.82, 1855.88], [2446.27, 1859.71], [2451.56, 1856.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2295.31, 1599.32], [2296.51, 1594.63], [2303.03, 1596.29], [2301.82, 1600.98], [2295.31, 1599.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2302.87, 1645.75], [2295.49, 1649.8], [2300.09, 1658.14], [2307.47, 1654.09], [2302.87, 1645.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2416.4, 1789.79], [2420.3, 1774.11], [2464.41, 1784.99], [2460.52, 1800.67], [2416.4, 1789.79]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.514, "pop": 257, "jobs": 0}}, {"shape": {"outer": [[2504.1, 1867.27], [2513.58, 1862.16], [2518.14, 1870.56], [2508.67, 1875.68], [2504.1, 1867.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2433.1, 1853.72], [2438.54, 1850.35], [2435.12, 1844.87], [2429.69, 1848.24], [2433.1, 1853.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2247.63, 1565.68], [2261.82, 1557.36], [2256.78, 1548.81], [2260.78, 1546.46], [2257.74, 1541.3], [2255.39, 1539.59], [2251.81, 1534.77], [2249.68, 1532.97], [2250.91, 1531.64], [2249.23, 1529.99], [2246.53, 1528.52], [2244.33, 1527.76], [2242.23, 1528.99], [2241.58, 1527.89], [2242.03, 1527.62], [2239.61, 1523.52], [2236.6, 1525.28], [2232.47, 1518.31], [2228.13, 1520.85], [2226.61, 1518.27], [2223.64, 1520.01], [2220.8, 1515.21], [2218.07, 1516.8], [2216.88, 1514.82], [2213.46, 1517.88], [2211.71, 1520.7], [2210.51, 1522.86], [2208.99, 1526.96], [2208.14, 1529.84], [2202.83, 1532.99], [2203.46, 1534.05], [2196.79, 1538.0], [2198.98, 1541.72], [2204.71, 1551.45], [2211.38, 1547.54], [2211.83, 1548.28], [2216.1, 1545.77], [2214.68, 1543.38], [2216.89, 1542.08], [2217.7, 1543.44], [2229.16, 1536.72], [2233.49, 1544.05], [2235.17, 1543.07], [2236.71, 1545.69], [2235.04, 1546.68], [2238.39, 1552.36], [2240.34, 1551.23], [2241.71, 1553.55], [2239.77, 1554.69], [2241.72, 1558.0], [2242.75, 1557.41], [2247.63, 1565.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 578, "jobs": 0}}, {"shape": {"outer": [[2216.75, 1569.01], [2228.98, 1561.87], [2231.05, 1565.4], [2228.18, 1567.09], [2230.14, 1570.43], [2220.78, 1575.88], [2216.75, 1569.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2302.89, 1626.31], [2305.11, 1617.83], [2318.77, 1621.37], [2316.78, 1629.0], [2315.01, 1628.54], [2314.78, 1629.39], [2302.89, 1626.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2335.07, 1645.32], [2336.09, 1641.26], [2337.12, 1641.52], [2338.18, 1637.25], [2350.93, 1640.4], [2348.84, 1648.74], [2335.07, 1645.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2359.9, 1810.66], [2353.57, 1800.42], [2378.54, 1785.06], [2381.69, 1790.16], [2380.83, 1790.69], [2384.01, 1795.83], [2359.9, 1810.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[2307.53, 1614.65], [2309.44, 1607.38], [2311.05, 1607.8], [2316.15, 1606.6], [2321.39, 1607.96], [2318.86, 1617.6], [2307.53, 1614.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2264.4, 1646.47], [2259.12, 1637.99], [2271.86, 1630.11], [2274.13, 1633.75], [2273.13, 1634.36], [2276.15, 1639.21], [2264.4, 1646.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2455.9, 1701.57], [2448.85, 1699.99], [2451.88, 1686.56], [2443.68, 1684.72], [2447.28, 1668.78], [2462.54, 1672.2], [2455.9, 1701.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[2368.33, 1822.88], [2362.42, 1813.39], [2382.78, 1800.8], [2385.44, 1805.09], [2398.21, 1797.2], [2401.46, 1802.41], [2368.33, 1822.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.23, "pop": 0, "jobs": 230}}, {"shape": {"outer": [[2266.87, 1660.39], [2275.67, 1654.9], [2283.42, 1667.25], [2288.87, 1663.85], [2291.52, 1668.09], [2277.28, 1676.97], [2266.87, 1660.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[2232.35, 1603.89], [2227.61, 1596.38], [2235.38, 1591.5], [2236.14, 1592.72], [2247.11, 1585.85], [2251.08, 1592.15], [2232.35, 1603.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2420.3, 1774.11], [2421.23, 1770.38], [2409.06, 1767.38], [2401.69, 1797.02], [2413.86, 1800.03], [2416.4, 1789.79], [2420.3, 1774.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.245, "pop": 0, "jobs": 245}}, {"shape": {"outer": [[2309.51, 1594.06], [2307.88, 1599.96], [2309.17, 1600.31], [2308.82, 1601.57], [2321.99, 1605.19], [2322.19, 1604.51], [2323.96, 1604.99], [2325.76, 1598.53], [2309.51, 1594.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2515.23, 1816.09], [2508.05, 1814.42], [2511.37, 1800.24], [2518.55, 1801.9], [2517.17, 1807.79], [2518.31, 1808.05], [2517.18, 1812.87], [2516.05, 1812.61], [2515.23, 1816.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2313.87, 1590.74], [2316.0, 1582.76], [2327.14, 1585.71], [2327.04, 1586.1], [2329.18, 1586.66], [2327.3, 1593.7], [2325.18, 1593.13], [2325.04, 1593.69], [2313.87, 1590.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2530.26, 1819.49], [2520.36, 1816.9], [2522.48, 1808.83], [2523.43, 1809.08], [2525.63, 1800.71], [2524.69, 1800.46], [2525.43, 1797.66], [2535.33, 1800.25], [2530.26, 1819.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[2492.28, 1848.41], [2487.21, 1839.85], [2499.86, 1832.41], [2504.93, 1840.97], [2504.5, 1841.22], [2506.39, 1844.41], [2496.9, 1850.0], [2495.0, 1846.81], [2492.28, 1848.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2338.56, 1628.94], [2336.96, 1634.37], [2338.68, 1634.88], [2338.49, 1635.5], [2346.84, 1637.95], [2348.77, 1631.46], [2340.69, 1629.09], [2340.56, 1629.52], [2338.56, 1628.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2215.8, 1567.12], [2214.19, 1564.58], [2213.26, 1565.16], [2211.76, 1562.78], [2212.69, 1562.2], [2210.69, 1559.02], [2222.98, 1551.32], [2228.09, 1559.43], [2215.8, 1567.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2326.3, 1673.03], [2328.46, 1664.69], [2345.49, 1669.05], [2345.0, 1670.95], [2346.4, 1671.31], [2345.41, 1675.15], [2344.0, 1674.79], [2343.33, 1677.39], [2326.3, 1673.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2270.57, 1844.87], [2273.27, 1848.19], [2270.71, 1850.24], [2290.97, 1876.12], [2294.3, 1873.05], [2295.82, 1874.95], [2314.94, 1859.83], [2304.89, 1847.24], [2293.28, 1832.69], [2292.39, 1833.54], [2289.16, 1829.61], [2270.57, 1844.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.706, "pop": 0, "jobs": 706}}, {"shape": {"outer": [[2223.05, 1781.04], [2240.13, 1767.94], [2246.17, 1775.78], [2242.69, 1778.43], [2248.5, 1785.96], [2245.76, 1788.07], [2248.21, 1791.24], [2248.71, 1790.51], [2252.47, 1793.54], [2251.12, 1795.01], [2251.67, 1795.74], [2258.34, 1788.99], [2269.5, 1798.64], [2267.91, 1800.37], [2273.86, 1805.82], [2254.25, 1826.32], [2236.93, 1803.87], [2239.27, 1802.07], [2223.05, 1781.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.946, "pop": 473, "jobs": 0}}, {"shape": {"outer": [[2165.36, 1719.07], [2160.24, 1714.07], [2159.13, 1714.56], [2155.68, 1711.07], [2152.59, 1707.94], [2153.89, 1706.66], [2150.6, 1703.35], [2164.08, 1690.05], [2165.21, 1691.18], [2168.49, 1687.92], [2162.12, 1681.58], [2161.4, 1680.86], [2176.1, 1666.22], [2178.31, 1668.42], [2179.61, 1667.11], [2196.34, 1683.59], [2192.49, 1687.48], [2194.54, 1689.49], [2165.36, 1719.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.934, "pop": 467, "jobs": 0}}, {"shape": {"outer": [[-1419.94, -2172.04], [-1394.92, -2173.03], [-1395.32, -2183.89], [-1396.44, -2183.84], [-1396.54, -2186.52], [-1399.38, -2186.48], [-1399.75, -2196.52], [-1396.3, -2196.71], [-1396.47, -2200.73], [-1395.62, -2200.76], [-1395.76, -2204.41], [-1396.97, -2204.37], [-1397.52, -2218.51], [-1397.16, -2218.52], [-1397.47, -2226.4], [-1401.39, -2226.46], [-1401.73, -2236.36], [-1398.95, -2236.49], [-1399.08, -2239.16], [-1397.88, -2239.24], [-1398.23, -2247.4], [-1400.3, -2247.3], [-1400.43, -2249.95], [-1408.12, -2249.55], [-1407.97, -2242.33], [-1411.68, -2242.11], [-1411.59, -2239.07], [-1417.16, -2238.97], [-1417.15, -2236.47], [-1421.84, -2236.28], [-1421.71, -2233.5], [-1423.18, -2233.43], [-1423.01, -2230.33], [-1423.48, -2230.35], [-1422.02, -2197.22], [-1421.67, -2189.43], [-1421.14, -2189.46], [-1420.83, -2182.64], [-1422.53, -2182.51], [-1422.18, -2174.68], [-1419.97, -2174.73], [-1419.94, -2172.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 691, "jobs": 0}}, {"shape": {"outer": [[-1293.88, -2236.59], [-1327.39, -2254.7], [-1307.17, -2291.84], [-1305.69, -2294.57], [-1303.1, -2299.33], [-1272.77, -2282.95], [-1274.88, -2279.09], [-1271.69, -2277.36], [-1293.88, -2236.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1228}}, {"shape": {"outer": [[2094.32, 1593.39], [2088.43, 1599.17], [2096.77, 1607.58], [2097.65, 1606.71], [2098.95, 1608.02], [2103.54, 1603.5], [2102.24, 1602.19], [2102.65, 1601.8], [2094.32, 1593.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2097.87, 1592.51], [2102.45, 1588.07], [2109.66, 1595.45], [2107.77, 1597.28], [2109.17, 1598.71], [2106.48, 1601.32], [2097.87, 1592.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2115.35, 1572.9], [2110.09, 1577.94], [2118.53, 1586.68], [2123.79, 1581.65], [2115.35, 1572.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2119.42, 1566.26], [2120.04, 1565.65], [2118.8, 1564.4], [2122.3, 1560.96], [2123.54, 1562.21], [2124.95, 1560.82], [2127.51, 1563.41], [2127.82, 1563.1], [2131.22, 1566.53], [2130.9, 1566.83], [2133.68, 1569.63], [2133.41, 1569.88], [2134.84, 1571.32], [2129.78, 1576.29], [2128.44, 1574.94], [2128.23, 1575.14], [2125.52, 1572.41], [2124.96, 1572.95], [2121.49, 1569.45], [2122.05, 1568.9], [2119.42, 1566.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2126.4, 1558.03], [2132.36, 1551.96], [2143.82, 1563.12], [2137.86, 1569.19], [2126.4, 1558.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2138.64, 1552.3], [2144.16, 1546.36], [2152.4, 1553.97], [2146.88, 1559.9], [2138.64, 1552.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2111.02, 1594.82], [2114.23, 1591.67], [2111.56, 1588.97], [2112.28, 1588.26], [2108.02, 1583.96], [2104.1, 1587.82], [2111.02, 1594.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2381.77, 2445.22], [2385.79, 2441.31], [2384.14, 2439.64], [2384.66, 2439.15], [2375.44, 2429.77], [2369.4, 2435.68], [2378.55, 2444.97], [2379.21, 2444.34], [2380.14, 2445.28], [2381.0, 2444.44], [2381.77, 2445.22]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1895.02, 1853.63], [1891.16, 1857.68], [1892.86, 1859.29], [1892.36, 1859.8], [1901.91, 1868.84], [1907.73, 1862.72], [1898.26, 1853.77], [1897.62, 1854.42], [1896.65, 1853.52], [1895.82, 1854.37], [1895.02, 1853.63]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2018.76, 1260.33], [2028.25, 1271.68], [2050.95, 1252.84], [2041.45, 1241.48], [2018.76, 1260.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.279, "pop": 0, "jobs": 279}}, {"shape": {"outer": [[2775.51, 2610.59], [2776.92, 2611.91], [2782.56, 2605.82], [2792.47, 2594.67], [2787.78, 2589.97], [2784.7, 2593.78], [2782.7, 2591.36], [2780.68, 2593.21], [2778.41, 2591.06], [2774.12, 2591.18], [2771.98, 2593.31], [2770.04, 2593.5], [2767.7, 2589.97], [2766.24, 2587.02], [2764.29, 2586.07], [2761.13, 2586.51], [2757.77, 2589.36], [2749.09, 2598.13], [2759.58, 2608.45], [2756.98, 2611.06], [2763.26, 2617.24], [2766.34, 2614.11], [2769.56, 2617.29], [2772.25, 2614.57], [2773.04, 2615.35], [2775.43, 2612.93], [2774.3, 2611.82], [2775.51, 2610.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.468, "pop": 0, "jobs": 468}}, {"shape": {"outer": [[-2032.46, -1786.56], [-2040.27, -1786.37], [-2040.46, -1794.15], [-2032.65, -1794.35], [-2032.46, -1786.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2047.52, -1778.75], [-2058.25, -1778.31], [-2058.47, -1783.84], [-2061.14, -1783.73], [-2061.78, -1799.45], [-2052.34, -1799.83], [-2052.08, -1793.27], [-2049.44, -1793.38], [-2049.3, -1790.07], [-2047.99, -1790.12], [-2047.52, -1778.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-2044.34, -1766.16], [-2044.54, -1776.58], [-2034.41, -1776.76], [-2034.32, -1771.98], [-2035.27, -1771.97], [-2035.16, -1766.33], [-2044.34, -1766.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2029.88, -1754.25], [-2041.39, -1753.94], [-2041.53, -1759.19], [-2044.45, -1759.11], [-2044.59, -1764.16], [-2030.15, -1764.54], [-2029.88, -1754.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2038.7, -1741.77], [-2038.72, -1743.02], [-2043.37, -1742.97], [-2043.44, -1748.83], [-2038.71, -1748.89], [-2038.75, -1752.03], [-2028.9, -1752.14], [-2028.78, -1741.89], [-2038.7, -1741.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2034.29, -1729.55], [-2034.44, -1738.93], [-2028.59, -1739.04], [-2028.62, -1740.9], [-2022.53, -1741.0], [-2022.34, -1729.74], [-2034.29, -1729.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2060.24, -1728.61], [-2060.34, -1736.53], [-2051.74, -1736.64], [-2051.64, -1728.73], [-2060.24, -1728.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1990.71, -1833.92], [-1995.5, -1833.8], [-1995.53, -1835.2], [-1997.01, -1835.17], [-1997.06, -1836.97], [-2003.15, -1836.82], [-2003.38, -1846.0], [-2001.18, -1846.06], [-2001.64, -1864.35], [-1997.41, -1864.46], [-1997.47, -1866.25], [-1989.62, -1866.45], [-1989.59, -1864.9], [-1984.07, -1865.03], [-1983.37, -1837.21], [-1990.79, -1837.02], [-1990.71, -1833.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.344, "pop": 0, "jobs": 344}}, {"shape": {"outer": [[-1675.62, -1549.79], [-1675.83, -1555.65], [-1681.27, -1555.45], [-1681.07, -1549.6], [-1675.62, -1549.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1684.64, -1535.77], [-1684.94, -1542.0], [-1679.63, -1542.26], [-1679.33, -1536.04], [-1684.64, -1535.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1678.26, -1535.84], [-1678.32, -1542.11], [-1674.0, -1542.15], [-1673.94, -1535.89], [-1678.26, -1535.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1698.89, -1530.85], [-1699.0, -1538.32], [-1692.1, -1538.42], [-1692.0, -1530.96], [-1698.89, -1530.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1698.3, -1503.25], [-1698.69, -1517.48], [-1693.79, -1517.61], [-1693.71, -1514.91], [-1691.0, -1514.98], [-1690.69, -1503.47], [-1698.3, -1503.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1659.38, -1533.15], [-1672.04, -1532.82], [-1672.21, -1539.43], [-1659.55, -1539.76], [-1659.38, -1533.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1689.72, -1551.87], [-1690.11, -1560.7], [-1682.96, -1561.02], [-1682.56, -1552.18], [-1689.72, -1551.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1666.66, -1550.41], [-1666.84, -1557.8], [-1658.04, -1558.01], [-1657.87, -1550.62], [-1666.66, -1550.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1632.77, -1537.23], [-1632.87, -1544.95], [-1619.13, -1545.13], [-1619.02, -1537.42], [-1632.77, -1537.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1617.23, -1521.8], [-1617.7, -1529.93], [-1609.32, -1530.41], [-1608.85, -1522.28], [-1617.23, -1521.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1622.34, -1524.6], [-1633.11, -1524.43], [-1633.22, -1531.98], [-1622.45, -1532.14], [-1622.34, -1524.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1628.24, -1512.9], [-1628.24, -1519.24], [-1618.58, -1519.23], [-1618.59, -1512.89], [-1628.24, -1512.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1618.01, -1502.37], [-1617.94, -1513.06], [-1609.71, -1513.01], [-1609.77, -1502.32], [-1618.01, -1502.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1621.04, -1502.78], [-1621.02, -1508.1], [-1626.92, -1508.11], [-1626.92, -1509.65], [-1633.14, -1509.66], [-1633.16, -1501.24], [-1627.4, -1501.22], [-1627.4, -1502.79], [-1621.04, -1502.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1668.63, -1520.73], [-1668.74, -1527.86], [-1657.19, -1528.03], [-1657.09, -1520.89], [-1663.16, -1520.81], [-1663.15, -1519.33], [-1667.2, -1519.28], [-1667.22, -1520.74], [-1668.63, -1520.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1664.39, -1503.12], [-1664.69, -1513.78], [-1655.51, -1514.03], [-1655.22, -1503.38], [-1664.39, -1503.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1685.32, -1505.5], [-1685.62, -1515.93], [-1676.28, -1516.2], [-1675.98, -1505.77], [-1685.32, -1505.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1843.32, -1499.39], [-1843.55, -1516.87], [-1842.3, -1516.88], [-1842.33, -1519.69], [-1837.1, -1519.75], [-1837.07, -1517.25], [-1835.35, -1517.28], [-1835.17, -1502.43], [-1838.34, -1502.39], [-1838.3, -1499.46], [-1843.32, -1499.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1848.93, -1523.32], [-1849.02, -1528.55], [-1844.57, -1528.62], [-1844.48, -1523.39], [-1848.93, -1523.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1833.26, -1526.22], [-1833.53, -1532.53], [-1827.51, -1532.78], [-1827.24, -1526.47], [-1833.26, -1526.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1803.81, -1527.33], [-1803.95, -1535.52], [-1785.34, -1535.87], [-1785.27, -1532.08], [-1787.64, -1532.03], [-1787.56, -1527.63], [-1803.81, -1527.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1817.8, -1535.77], [-1817.94, -1539.27], [-1824.22, -1539.03], [-1824.09, -1535.53], [-1817.8, -1535.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1836.27, -1532.98], [-1843.75, -1532.84], [-1843.88, -1539.01], [-1836.39, -1539.17], [-1836.27, -1532.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1833.19, -1499.76], [-1833.48, -1510.43], [-1824.13, -1510.69], [-1823.84, -1500.02], [-1833.19, -1499.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1851.62, -1499.19], [-1851.6, -1504.43], [-1852.91, -1504.44], [-1852.89, -1511.42], [-1851.65, -1511.41], [-1851.65, -1513.09], [-1847.8, -1513.08], [-1847.81, -1511.65], [-1845.01, -1511.64], [-1845.05, -1499.16], [-1851.62, -1499.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1720.55, -1533.15], [-1720.68, -1539.08], [-1711.34, -1539.29], [-1711.21, -1533.37], [-1720.55, -1533.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1747.88, -1534.29], [-1747.97, -1540.46], [-1742.42, -1540.54], [-1742.33, -1534.38], [-1747.88, -1534.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1750.03, -1530.3], [-1760.98, -1530.12], [-1761.11, -1538.03], [-1757.9, -1538.08], [-1757.93, -1539.9], [-1750.18, -1540.02], [-1750.03, -1530.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1556.76, -1701.68], [-1556.9, -1713.87], [-1564.7, -1713.78], [-1564.55, -1701.58], [-1556.76, -1701.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1573.57, -1704.98], [-1573.65, -1712.98], [-1566.51, -1713.06], [-1566.43, -1705.05], [-1573.57, -1704.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1576.06, -1715.59], [-1575.34, -1696.42], [-1579.99, -1696.26], [-1580.15, -1700.37], [-1581.63, -1700.32], [-1582.19, -1715.35], [-1576.06, -1715.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1593.65, -1697.55], [-1593.72, -1700.81], [-1597.65, -1700.74], [-1597.89, -1713.96], [-1585.89, -1714.18], [-1585.65, -1700.96], [-1589.17, -1700.89], [-1589.11, -1697.64], [-1593.65, -1697.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1600.93, -1702.82], [-1609.24, -1702.69], [-1609.41, -1713.56], [-1605.57, -1713.63], [-1605.6, -1715.88], [-1601.13, -1715.96], [-1600.93, -1702.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1619.56, -1715.55], [-1619.29, -1700.63], [-1611.77, -1700.77], [-1611.94, -1709.91], [-1612.8, -1709.9], [-1612.9, -1715.67], [-1619.56, -1715.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1634.52, -1701.58], [-1634.61, -1713.95], [-1622.64, -1714.04], [-1622.56, -1701.67], [-1634.52, -1701.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1956.16, 799.33], [1965.97, 788.36], [1959.63, 782.73], [1949.83, 793.69], [1956.16, 799.33]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1951.88, 789.0], [1960.61, 779.01], [1954.23, 773.47], [1945.5, 783.47], [1951.88, 789.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1638.23, 700.74], [1644.66, 693.95], [1640.37, 689.92], [1633.94, 696.7], [1638.23, 700.74]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1958.5, 801.55], [1968.76, 790.21], [1975.9, 796.63], [1965.64, 807.96], [1958.5, 801.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2054.59, 1390.85], [2061.69, 1397.06], [2067.65, 1391.28], [2060.7, 1384.73], [2054.59, 1390.85]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2048.5, 1374.65], [2053.14, 1379.48], [2059.41, 1373.37], [2054.75, 1368.21], [2048.5, 1374.65]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2086.81, 1350.93], [2088.19, 1334.02], [2096.31, 1327.36], [2113.96, 1329.59], [2112.76, 1345.2], [2114.36, 1347.17], [2111.52, 1349.93], [2115.89, 1355.39], [2118.4, 1353.76], [2130.07, 1368.42], [2123.01, 1373.25], [2115.21, 1363.62], [2111.78, 1366.14], [2102.67, 1354.29], [2086.81, 1350.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.549, "pop": 0, "jobs": 549}}, {"shape": {"outer": [[2829.37, 1854.3], [2833.68, 1835.5], [2846.76, 1838.48], [2842.45, 1857.27], [2829.37, 1854.3]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.217, "pop": 0, "jobs": 217}}, {"shape": {"outer": [[2829.37, 1854.3], [2820.46, 1852.27], [2824.76, 1833.47], [2833.68, 1835.5], [2829.37, 1854.3]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[2803.52, 1848.31], [2811.57, 1850.22], [2815.51, 1833.84], [2814.99, 1833.71], [2815.48, 1831.69], [2809.66, 1830.3], [2809.13, 1832.53], [2807.41, 1832.12], [2805.39, 1840.55], [2803.52, 1848.31]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.085, "pop": 0, "jobs": 85}}, {"shape": {"outer": [[2803.52, 1848.31], [2805.39, 1840.55], [2802.63, 1839.89], [2801.88, 1843.03], [2796.49, 1841.74], [2795.37, 1846.38], [2803.52, 1848.31]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2764.64, -492.26], [-2758.53, -492.43], [-2758.65, -496.79], [-2764.99, -496.6], [-2764.64, -492.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1974.25, 816.6], [1985.07, 804.81], [1978.21, 798.57], [1967.52, 810.23], [1969.24, 811.8], [1967.46, 813.74], [1970.24, 816.27], [1971.9, 814.47], [1974.25, 816.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1982.46, 827.15], [1993.57, 814.7], [1985.58, 807.62], [1974.82, 819.69], [1977.19, 821.8], [1975.47, 823.72], [1979.51, 827.3], [1980.88, 825.75], [1982.46, 827.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2001.83, 836.62], [2009.07, 828.4], [2007.81, 827.29], [2010.11, 824.68], [2006.15, 821.22], [2003.94, 823.72], [2002.18, 822.18], [1994.85, 830.5], [2001.83, 836.62]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1941.48, 785.89], [1951.53, 775.06], [1949.7, 773.37], [1951.89, 771.02], [1947.84, 767.28], [1945.61, 769.69], [1943.93, 768.14], [1933.92, 778.92], [1941.48, 785.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[1934.55, 776.32], [1943.12, 766.81], [1937.31, 761.61], [1928.74, 771.12], [1934.55, 776.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1926.68, 772.79], [1936.96, 761.12], [1930.02, 755.06], [1919.74, 766.72], [1926.68, 772.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1918.95, 765.65], [1929.42, 754.12], [1928.29, 753.1], [1926.8, 751.75], [1922.49, 747.87], [1912.02, 759.4], [1918.95, 765.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1912.29, 754.1], [1915.25, 750.9], [1917.16, 752.65], [1920.09, 749.48], [1917.68, 747.27], [1918.92, 745.92], [1915.36, 742.65], [1908.22, 750.36], [1912.29, 754.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1903.75, 753.37], [1916.05, 740.18], [1914.84, 739.06], [1913.29, 737.63], [1908.31, 733.01], [1896.0, 746.19], [1903.75, 753.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[1894.52, 739.23], [1903.43, 729.52], [1896.03, 722.76], [1887.11, 732.47], [1894.52, 739.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1878.73, 730.14], [1889.52, 718.12], [1880.56, 710.14], [1869.78, 722.16], [1878.73, 730.14]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2922.66, 1920.13], [2927.25, 1901.45], [2919.05, 1899.32], [2914.53, 1917.93], [2922.66, 1920.13]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[2916.79, 1900.33], [2912.91, 1915.61], [2904.85, 1913.57], [2908.73, 1898.3], [2916.79, 1900.33]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2905.79, 1895.95], [2902.75, 1909.26], [2896.02, 1907.74], [2899.06, 1894.43], [2905.79, 1895.95]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2888.81, 1890.64], [2886.43, 1900.32], [2880.07, 1898.77], [2882.52, 1889.04], [2888.81, 1890.64]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2882.52, 1889.04], [2880.07, 1898.77], [2879.43, 1901.28], [2873.57, 1899.81], [2873.91, 1898.47], [2870.78, 1897.68], [2871.84, 1893.45], [2866.48, 1892.11], [2868.16, 1885.45], [2882.52, 1889.04]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2888.43, -639.95], [-2888.73, -650.12], [-2886.54, -650.19], [-2886.59, -651.82], [-2881.35, -651.97], [-2881.3, -650.34], [-2878.57, -650.42], [-2878.45, -646.33], [-2876.0, -646.4], [-2875.82, -640.31], [-2888.43, -639.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2843.23, -639.56], [-2843.74, -654.03], [-2838.43, -654.22], [-2838.36, -652.41], [-2834.95, -652.53], [-2834.49, -639.87], [-2835.21, -639.85], [-2835.13, -637.75], [-2842.01, -637.51], [-2842.09, -639.6], [-2843.23, -639.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2863.95, -683.56], [-2864.49, -699.04], [-2859.66, -699.21], [-2859.58, -696.86], [-2855.19, -697.01], [-2854.73, -683.88], [-2855.43, -683.85], [-2855.32, -680.61], [-2859.8, -680.45], [-2859.91, -683.7], [-2863.95, -683.56]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2935.79, -682.66], [-2928.65, -682.85], [-2928.83, -688.97], [-2924.59, -689.09], [-2924.81, -696.85], [-2928.95, -696.75], [-2928.98, -697.57], [-2935.6, -697.39], [-2935.48, -693.03], [-2937.01, -692.99], [-2936.86, -687.99], [-2935.94, -688.01], [-2935.79, -682.66]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2919.23, -639.01], [-2915.41, -639.15], [-2915.33, -637.13], [-2911.45, -637.29], [-2911.53, -639.31], [-2910.13, -639.37], [-2910.72, -654.16], [-2913.21, -654.06], [-2913.3, -656.41], [-2917.23, -656.25], [-2917.14, -653.91], [-2919.82, -653.8], [-2919.23, -639.01]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-2843.62, -685.06], [-2843.97, -693.94], [-2846.64, -693.83], [-2846.87, -699.68], [-2840.55, -699.93], [-2840.61, -701.47], [-2837.16, -701.6], [-2837.1, -700.06], [-2833.44, -700.2], [-2833.06, -690.27], [-2836.16, -690.15], [-2835.98, -685.36], [-2843.62, -685.06]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2901.04, -683.64], [-2901.28, -693.84], [-2895.62, -693.98], [-2895.65, -695.06], [-2888.33, -695.24], [-2888.27, -693.12], [-2885.6, -693.18], [-2885.4, -684.75], [-2887.92, -684.69], [-2887.9, -683.95], [-2894.51, -683.79], [-2894.47, -682.66], [-2899.99, -682.53], [-2900.02, -683.65], [-2901.04, -683.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2948.67, -633.56], [-2940.1, -633.95], [-2940.56, -644.04], [-2942.89, -643.93], [-2942.96, -645.34], [-2940.9, -646.68], [-2941.02, -649.4], [-2943.2, -650.51], [-2943.29, -652.42], [-2944.76, -652.35], [-2944.82, -653.71], [-2949.19, -653.5], [-2949.07, -650.94], [-2951.42, -650.84], [-2951.16, -645.02], [-2949.2, -645.11], [-2948.67, -633.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2914.57, -683.65], [-2915.08, -695.2], [-2904.05, -695.69], [-2903.55, -684.13], [-2914.57, -683.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2889.55, -659.79], [-2882.84, -659.99], [-2883.03, -666.73], [-2889.75, -666.53], [-2889.55, -659.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2818.03, -685.68], [-2818.14, -689.46], [-2810.23, -689.71], [-2810.1, -685.93], [-2818.03, -685.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2897.12, -660.51], [-2897.29, -667.32], [-2891.12, -667.47], [-2890.95, -660.66], [-2897.12, -660.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2883.92, -669.26], [-2884.09, -677.08], [-2875.85, -677.26], [-2875.68, -669.44], [-2883.92, -669.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2865.36, -660.32], [-2860.55, -660.46], [-2860.79, -668.78], [-2865.6, -668.64], [-2865.36, -660.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2865.52, -673.48], [-2862.1, -673.59], [-2862.32, -681.1], [-2865.74, -681.0], [-2865.52, -673.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2837.01, -677.63], [-2836.75, -672.35], [-2831.02, -672.62], [-2831.28, -677.91], [-2837.01, -677.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2810.67, -658.0], [-2801.33, -658.33], [-2801.69, -668.39], [-2811.03, -668.05], [-2810.67, -658.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2828.72, -651.8], [-2822.9, -652.05], [-2823.37, -662.66], [-2829.19, -662.4], [-2828.72, -651.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2855.46, -660.95], [-2859.32, -660.82], [-2859.6, -669.01], [-2855.75, -669.15], [-2855.46, -660.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2934.66, -634.15], [-2925.42, -634.52], [-2926.19, -653.67], [-2935.42, -653.29], [-2934.66, -634.15]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2832.68, -653.14], [-2828.91, -653.27], [-2829.11, -659.03], [-2832.88, -658.9], [-2832.68, -653.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2813.64, -692.28], [-2813.85, -697.73], [-2814.55, -697.7], [-2814.74, -702.63], [-2802.57, -703.09], [-2802.18, -692.72], [-2813.64, -692.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2939.71, -676.28], [-2939.49, -669.52], [-2935.88, -669.65], [-2935.77, -666.38], [-2924.57, -666.77], [-2924.92, -676.79], [-2939.71, -676.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2873.47, -640.54], [-2873.72, -649.19], [-2867.18, -649.38], [-2867.26, -652.15], [-2862.34, -652.3], [-2862.01, -640.87], [-2873.47, -640.54]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2817.79, -640.91], [-2818.0, -648.49], [-2812.31, -648.66], [-2812.34, -649.67], [-2802.79, -649.93], [-2802.48, -638.88], [-2810.64, -638.66], [-2810.7, -641.1], [-2817.79, -640.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2882.26, -684.6], [-2882.49, -694.22], [-2868.5, -694.58], [-2868.25, -684.96], [-2875.08, -684.78], [-2875.05, -683.55], [-2879.63, -683.44], [-2879.67, -684.67], [-2882.26, -684.6]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2970.01, -629.09], [-2970.3, -639.41], [-2956.95, -639.8], [-2956.92, -638.9], [-2953.05, -639.01], [-2952.81, -631.01], [-2956.69, -630.9], [-2956.65, -629.48], [-2970.01, -629.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2857.39, -638.97], [-2858.17, -656.26], [-2849.04, -656.67], [-2848.26, -639.38], [-2849.56, -639.33], [-2849.45, -636.8], [-2856.06, -636.49], [-2856.17, -639.02], [-2857.39, -638.97]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2903.49, -639.35], [-2903.85, -649.82], [-2897.64, -650.03], [-2897.55, -647.62], [-2893.51, -647.76], [-2893.2, -638.64], [-2900.3, -638.4], [-2900.33, -639.45], [-2903.49, -639.35]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2828.12, -692.95], [-2828.38, -700.99], [-2825.61, -701.08], [-2825.64, -702.29], [-2818.48, -702.52], [-2818.11, -691.07], [-2822.29, -690.93], [-2822.36, -693.14], [-2828.12, -692.95]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2809.27, -672.31], [-2801.37, -672.56], [-2801.7, -683.43], [-2803.44, -683.38], [-2803.5, -685.41], [-2808.74, -685.25], [-2808.68, -683.22], [-2809.61, -683.19], [-2809.27, -672.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-3011.43, -642.39], [-3015.42, -649.9], [-3010.65, -652.42], [-3012.61, -656.12], [-3006.45, -659.38], [-3005.37, -657.35], [-2998.78, -660.83], [-2994.63, -653.03], [-3000.46, -649.96], [-2999.73, -648.57], [-3011.43, -642.39]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-3028.38, -679.63], [-3028.21, -674.92], [-3016.91, -675.32], [-3017.05, -679.09], [-3015.17, -679.16], [-3015.41, -685.64], [-3017.27, -685.56], [-3017.35, -687.64], [-3025.87, -687.34], [-3025.6, -679.73], [-3028.38, -679.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2992.2, -671.24], [-2985.42, -671.48], [-2985.67, -678.32], [-2981.23, -678.48], [-2981.37, -682.21], [-2979.16, -682.28], [-2979.2, -683.52], [-2975.48, -683.66], [-2975.69, -689.36], [-2979.41, -689.22], [-2979.45, -690.38], [-2991.05, -689.95], [-2990.73, -681.06], [-2992.99, -680.98], [-2992.89, -678.14], [-2992.46, -678.15], [-2992.2, -671.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-3029.32, -656.66], [-3035.37, -656.23], [-3035.77, -661.71], [-3029.72, -662.15], [-3029.32, -656.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3033.45, -632.73], [-3033.92, -645.39], [-3032.31, -645.45], [-3032.41, -648.29], [-3021.4, -648.71], [-3021.19, -643.17], [-3020.39, -643.19], [-3020.02, -633.23], [-3033.45, -632.73]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2898.33, -487.37], [-2898.43, -489.8], [-2901.08, -489.69], [-2901.37, -496.37], [-2896.64, -496.58], [-2896.77, -499.6], [-2886.35, -500.04], [-2885.83, -487.91], [-2887.56, -487.84], [-2887.44, -485.09], [-2893.55, -484.83], [-2893.66, -487.57], [-2898.33, -487.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-3025.52, -541.11], [-3015.43, -546.73], [-3013.49, -543.29], [-3012.81, -543.68], [-3012.43, -543.0], [-3009.15, -544.83], [-3006.14, -539.46], [-3009.42, -537.63], [-3008.69, -536.33], [-3020.53, -529.73], [-3024.38, -536.58], [-3023.32, -537.18], [-3025.52, -541.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-3017.35, -523.6], [-3010.11, -530.88], [-3009.43, -530.2], [-3006.12, -533.53], [-3003.1, -530.55], [-2998.81, -534.85], [-2993.99, -530.08], [-2998.28, -525.78], [-2997.11, -524.63], [-3007.67, -514.04], [-3011.91, -518.23], [-3011.41, -518.73], [-3012.88, -520.19], [-3013.39, -519.68], [-3017.35, -523.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-2982.69, -493.36], [-2973.1, -484.28], [-2966.16, -491.57], [-2968.36, -493.65], [-2965.43, -496.74], [-2963.64, -495.06], [-2959.01, -499.91], [-2963.45, -504.12], [-2964.51, -503.01], [-2969.22, -507.48], [-2972.57, -503.97], [-2973.44, -504.79], [-2980.09, -497.8], [-2979.77, -497.49], [-2981.81, -495.35], [-2981.27, -494.84], [-2982.69, -493.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-2984.08, -584.31], [-2978.41, -594.03], [-2974.38, -591.69], [-2973.85, -592.59], [-2970.81, -590.84], [-2971.33, -589.93], [-2966.85, -587.34], [-2971.1, -580.04], [-2972.45, -580.81], [-2973.64, -578.75], [-2975.56, -579.86], [-2975.77, -579.5], [-2977.65, -580.58], [-2978.5, -579.11], [-2981.82, -581.04], [-2980.96, -582.5], [-2984.08, -584.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3017.19, -593.07], [-3012.16, -586.26], [-3010.64, -587.38], [-3009.07, -585.25], [-3008.43, -585.73], [-3007.96, -585.11], [-3002.66, -583.49], [-3001.25, -588.15], [-3004.48, -588.81], [-3006.37, -591.37], [-3002.9, -593.92], [-3003.23, -594.37], [-3000.48, -596.39], [-3004.19, -601.41], [-3006.94, -599.4], [-3007.51, -600.17], [-3011.02, -597.59], [-3011.49, -598.23], [-3013.77, -596.56], [-3013.29, -595.91], [-3017.19, -593.07]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2944.48, -521.63], [-2940.68, -517.74], [-2935.91, -522.35], [-2939.7, -526.24], [-2944.48, -521.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2966.27, -584.1], [-2971.24, -576.83], [-2961.95, -570.51], [-2956.98, -577.79], [-2966.27, -584.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2937.64, -494.12], [-2949.5, -498.26], [-2946.33, -507.27], [-2934.46, -503.11], [-2937.64, -494.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2969.2, -482.2], [-2963.25, -491.05], [-2951.42, -483.16], [-2957.36, -474.31], [-2969.2, -482.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2961.27, -516.52], [-2955.97, -522.27], [-2947.72, -514.73], [-2953.03, -508.97], [-2961.27, -516.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2975.85, -523.72], [-2971.63, -519.37], [-2966.79, -524.03], [-2971.02, -528.38], [-2975.85, -523.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2959.42, -565.23], [-2951.14, -557.5], [-2941.77, -567.47], [-2950.03, -575.2], [-2959.42, -565.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2996.02, -590.22], [-2994.53, -595.15], [-2996.41, -595.72], [-2994.8, -601.04], [-2987.44, -598.84], [-2987.86, -597.44], [-2982.96, -595.97], [-2985.62, -587.12], [-2996.02, -590.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2944.99, -545.08], [-2951.2, -550.66], [-2943.36, -559.32], [-2941.97, -558.07], [-2939.65, -560.65], [-2936.42, -557.76], [-2938.75, -555.18], [-2937.16, -553.75], [-2944.99, -545.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2938.17, -535.64], [-2931.4, -529.56], [-2920.22, -541.91], [-2926.99, -548.0], [-2932.72, -541.65], [-2933.81, -542.62], [-2936.24, -539.93], [-2935.17, -538.96], [-2938.17, -535.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2993.13, -505.25], [-2983.55, -514.64], [-2974.54, -505.52], [-2984.12, -496.13], [-2986.81, -498.84], [-2987.65, -498.02], [-2990.8, -501.21], [-2989.96, -502.03], [-2993.13, -505.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-3028.21, -570.49], [-3020.32, -568.78], [-3017.88, -579.92], [-3020.47, -580.48], [-3019.81, -583.53], [-3023.93, -584.44], [-3024.56, -581.54], [-3025.74, -581.79], [-3028.21, -570.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2874.11, -419.26], [-2866.27, -436.6], [-2860.81, -434.15], [-2862.98, -429.34], [-2859.85, -427.92], [-2859.23, -429.3], [-2854.15, -427.01], [-2858.85, -416.62], [-2864.27, -419.05], [-2865.85, -415.55], [-2874.11, -419.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-2947.09, -408.68], [-2946.64, -419.96], [-2934.43, -419.48], [-2934.48, -418.31], [-2929.94, -418.13], [-2930.35, -408.02], [-2932.95, -408.12], [-2933.07, -405.22], [-2943.08, -405.62], [-2942.97, -408.52], [-2947.09, -408.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-3007.81, -462.69], [-3006.7, -463.77], [-3008.99, -466.13], [-3004.73, -470.25], [-2994.39, -459.65], [-3000.0, -454.23], [-3003.16, -457.48], [-3004.56, -456.13], [-3007.98, -459.65], [-3006.37, -461.22], [-3007.81, -462.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2849.07, -413.2], [-2840.18, -410.15], [-2839.42, -412.31], [-2837.52, -413.13], [-2836.87, -415.01], [-2834.76, -415.91], [-2833.32, -420.09], [-2834.42, -422.1], [-2833.87, -423.67], [-2834.96, -425.22], [-2843.87, -428.27], [-2849.07, -413.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-3024.45, -474.92], [-3018.23, -481.16], [-3013.38, -476.38], [-3013.95, -475.81], [-3012.52, -474.39], [-3010.21, -476.72], [-3005.96, -472.52], [-3013.92, -464.52], [-3017.27, -467.83], [-3019.93, -465.17], [-3025.63, -470.8], [-3022.98, -473.47], [-3024.45, -474.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2916.93, -434.88], [-2918.44, -441.84], [-2901.97, -445.39], [-2901.18, -441.78], [-2897.86, -442.5], [-2895.95, -433.7], [-2898.49, -433.15], [-2899.73, -431.91], [-2903.3, -431.14], [-2904.46, -431.86], [-2909.96, -430.67], [-2911.14, -436.14], [-2916.93, -434.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-3040.21, -484.83], [-3039.83, -485.44], [-3041.09, -486.2], [-3038.95, -489.73], [-3037.69, -488.96], [-3034.66, -493.93], [-3025.53, -488.4], [-3031.07, -479.3], [-3032.82, -480.37], [-3038.05, -471.81], [-3042.82, -474.7], [-3037.61, -483.25], [-3040.21, -484.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-3065.92, -441.94], [-3064.7, -444.32], [-3065.64, -444.81], [-3065.0, -446.06], [-3069.79, -448.49], [-3066.36, -455.2], [-3061.57, -452.76], [-3061.1, -453.66], [-3047.57, -446.77], [-3051.9, -438.32], [-3055.11, -439.96], [-3056.54, -437.18], [-3065.92, -441.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2817.83, -398.3], [-2817.53, -400.07], [-2819.76, -400.44], [-2818.24, -409.36], [-2816.23, -409.02], [-2815.83, -411.39], [-2809.78, -410.37], [-2810.56, -405.78], [-2807.01, -405.18], [-2807.23, -403.9], [-2804.99, -403.52], [-2805.95, -397.8], [-2808.2, -398.18], [-2808.44, -396.73], [-2817.83, -398.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2993.81, -406.84], [-2992.94, -419.18], [-2992.39, -419.14], [-2992.11, -423.1], [-2982.33, -422.41], [-2982.56, -419.02], [-2980.19, -418.85], [-2977.96, -416.85], [-2978.16, -414.05], [-2980.7, -411.7], [-2981.1, -405.95], [-2982.95, -406.09], [-2983.16, -403.18], [-2992.9, -403.87], [-2992.69, -406.77], [-2993.81, -406.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-2822.31, -449.36], [-2822.44, -458.18], [-2810.76, -458.36], [-2810.62, -449.53], [-2822.31, -449.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2803.23, -395.9], [-2801.84, -404.46], [-2789.16, -402.43], [-2790.55, -393.87], [-2803.23, -395.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2799.41, -426.22], [-2791.6, -426.45], [-2791.88, -436.13], [-2799.69, -435.91], [-2799.41, -426.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2790.84, -441.99], [-2800.4, -441.71], [-2800.68, -451.5], [-2791.12, -451.78], [-2790.84, -441.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2849.94, -450.63], [-2847.54, -457.3], [-2841.47, -455.13], [-2843.87, -448.46], [-2849.94, -450.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2821.39, -417.47], [-2815.33, -417.62], [-2815.5, -425.56], [-2821.57, -425.42], [-2821.39, -417.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2829.19, -422.53], [-2822.98, -422.62], [-2823.06, -429.42], [-2829.27, -429.34], [-2829.19, -422.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2973.14, -444.46], [-2977.7, -438.65], [-2969.2, -432.04], [-2964.65, -437.85], [-2973.14, -444.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2871.61, -451.64], [-2869.22, -458.52], [-2867.55, -457.95], [-2865.9, -462.7], [-2857.37, -459.75], [-2861.4, -448.12], [-2871.61, -451.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2862.23, -468.37], [-2856.52, -466.41], [-2855.52, -469.32], [-2851.57, -467.97], [-2847.04, -481.1], [-2856.71, -484.41], [-2862.23, -468.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2998.19, -448.51], [-2992.06, -455.21], [-2984.56, -448.39], [-2987.5, -445.17], [-2985.1, -443.0], [-2988.29, -439.51], [-2998.19, -448.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2974.74, -406.91], [-2975.21, -414.14], [-2958.36, -415.22], [-2957.73, -405.54], [-2970.66, -404.71], [-2970.82, -407.15], [-2974.74, -406.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3033.6, -424.64], [-3027.33, -435.18], [-3029.18, -436.26], [-3026.23, -441.22], [-3019.21, -437.08], [-3021.11, -433.87], [-3014.68, -430.07], [-3021.97, -417.79], [-3033.6, -424.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-3067.3, -541.15], [-3067.72, -549.5], [-3066.06, -549.59], [-3066.27, -553.88], [-3065.21, -553.93], [-3065.37, -557.02], [-3057.34, -557.42], [-3057.18, -554.17], [-3056.43, -554.2], [-3055.82, -541.7], [-3067.3, -541.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3116.63, -580.52], [-3116.94, -589.82], [-3104.88, -590.22], [-3104.81, -588.33], [-3101.98, -588.42], [-3101.78, -582.33], [-3104.61, -582.23], [-3104.56, -580.93], [-3110.76, -580.72], [-3110.72, -579.56], [-3115.7, -579.4], [-3115.73, -580.55], [-3116.63, -580.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3119.71, -576.8], [-3122.34, -576.66], [-3122.1, -572.15], [-3127.38, -571.87], [-3127.63, -576.36], [-3132.13, -576.12], [-3132.42, -581.42], [-3128.32, -581.64], [-3128.73, -589.06], [-3129.82, -588.99], [-3130.01, -592.68], [-3123.77, -593.01], [-3123.6, -589.94], [-3120.45, -590.11], [-3119.71, -576.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-3078.33, -560.5], [-3070.37, -560.79], [-3070.66, -568.84], [-3078.61, -568.55], [-3078.33, -560.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-3100.16, -588.1], [-3100.54, -596.3], [-3087.76, -596.88], [-3087.39, -588.68], [-3100.16, -588.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-3077.08, -589.47], [-3077.5, -597.14], [-3066.64, -597.74], [-3066.14, -588.83], [-3073.41, -588.42], [-3073.48, -589.67], [-3077.08, -589.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-3087.59, -551.22], [-3087.27, -545.11], [-3084.39, -545.26], [-3084.12, -540.16], [-3072.91, -540.75], [-3073.5, -551.96], [-3087.59, -551.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3121.19, -544.46], [-3111.48, -544.74], [-3111.75, -554.26], [-3117.71, -563.83], [-3123.01, -560.04], [-3118.8, -554.32], [-3121.47, -553.98], [-3121.19, -544.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3102.04, -539.71], [-3102.52, -548.09], [-3098.93, -548.3], [-3099.06, -550.59], [-3095.09, -550.83], [-3094.95, -548.53], [-3091.51, -548.73], [-3091.03, -540.34], [-3102.04, -539.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3063.54, -578.41], [-3054.88, -576.91], [-3052.63, -589.76], [-3053.38, -589.9], [-3052.73, -593.63], [-3059.29, -594.77], [-3059.95, -591.03], [-3061.29, -591.27], [-3063.54, -578.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3046.84, -631.88], [-3047.3, -642.66], [-3046.91, -642.67], [-3047.03, -645.46], [-3041.59, -645.69], [-3041.47, -642.91], [-3037.0, -643.09], [-3036.53, -632.33], [-3037.32, -632.3], [-3037.18, -629.18], [-3043.27, -628.93], [-3043.41, -632.02], [-3046.84, -631.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3061.92, -669.9], [-3062.44, -682.2], [-3050.2, -682.72], [-3049.68, -670.42], [-3050.61, -670.38], [-3050.5, -668.03], [-3055.69, -667.8], [-3055.79, -670.17], [-3061.92, -669.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2809.97, -544.85], [-2797.31, -545.31], [-2797.46, -549.34], [-2795.7, -549.4], [-2795.89, -554.63], [-2797.65, -554.56], [-2797.8, -558.58], [-2810.45, -558.11], [-2810.25, -552.52], [-2811.78, -552.45], [-2811.55, -545.99], [-2810.01, -546.05], [-2809.97, -544.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2929.94, -590.2], [-2922.29, -596.95], [-2929.69, -605.28], [-2931.27, -603.89], [-2931.65, -604.31], [-2938.01, -606.38], [-2939.7, -600.56], [-2937.1, -599.51], [-2938.12, -598.63], [-2936.31, -596.59], [-2935.13, -597.62], [-2932.39, -594.55], [-2933.18, -593.86], [-2929.94, -590.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2812.85, -601.23], [-2812.87, -601.82], [-2814.54, -601.76], [-2814.67, -605.41], [-2814.21, -605.43], [-2814.36, -609.34], [-2813.15, -609.38], [-2813.17, -610.18], [-2799.57, -610.67], [-2799.54, -609.66], [-2798.23, -609.71], [-2797.95, -601.76], [-2799.64, -601.7], [-2799.58, -600.21], [-2810.12, -599.83], [-2810.18, -601.32], [-2812.85, -601.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2825.83, -501.86], [-2821.04, -508.55], [-2810.66, -501.18], [-2815.46, -494.48], [-2825.83, -501.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2809.91, -563.95], [-2810.33, -576.27], [-2798.26, -576.67], [-2797.85, -564.36], [-2809.91, -563.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2802.49, -505.0], [-2793.42, -505.24], [-2793.72, -516.59], [-2802.8, -516.35], [-2802.49, -505.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2793.03, -482.55], [-2801.61, -482.29], [-2801.95, -493.72], [-2793.37, -493.97], [-2793.03, -482.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2846.56, -517.49], [-2841.59, -524.23], [-2830.24, -515.92], [-2835.2, -509.19], [-2846.56, -517.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2863.44, -578.36], [-2870.39, -578.06], [-2870.72, -585.63], [-2863.78, -585.93], [-2863.44, -578.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2898.39, -596.68], [-2898.92, -607.53], [-2888.01, -608.06], [-2887.48, -597.22], [-2898.39, -596.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2855.66, -518.0], [-2848.9, -525.98], [-2860.59, -535.82], [-2867.36, -527.83], [-2855.66, -518.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2907.78, -567.85], [-2900.17, -575.68], [-2892.15, -567.94], [-2899.76, -560.12], [-2907.78, -567.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2896.64, -554.55], [-2889.06, -562.6], [-2885.58, -559.35], [-2883.71, -561.33], [-2879.09, -557.01], [-2880.97, -555.03], [-2879.01, -553.2], [-2886.58, -545.15], [-2896.64, -554.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2862.05, -590.66], [-2862.36, -606.08], [-2851.49, -606.29], [-2851.16, -589.61], [-2858.37, -589.47], [-2858.4, -590.73], [-2862.05, -590.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2915.06, -593.1], [-2906.54, -593.45], [-2907.02, -605.47], [-2913.54, -605.2], [-2913.37, -600.94], [-2915.37, -600.86], [-2915.06, -593.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2844.02, -595.26], [-2844.4, -606.61], [-2829.71, -607.09], [-2829.29, -594.18], [-2836.02, -593.97], [-2835.97, -592.56], [-2840.12, -592.43], [-2840.22, -595.38], [-2844.02, -595.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2811.08, -593.5], [-2810.58, -582.45], [-2798.74, -582.99], [-2798.92, -586.81], [-2796.85, -586.91], [-2797.11, -592.46], [-2799.18, -592.36], [-2799.25, -594.04], [-2811.08, -593.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2881.32, -594.02], [-2874.36, -594.33], [-2874.55, -598.63], [-2871.95, -598.75], [-2872.24, -605.32], [-2874.84, -605.21], [-2874.98, -608.25], [-2881.95, -607.94], [-2881.32, -594.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2809.84, -537.98], [-2809.6, -529.99], [-2790.76, -530.54], [-2791.0, -538.54], [-2801.19, -538.23], [-2801.22, -539.22], [-2806.63, -539.06], [-2806.6, -538.07], [-2809.84, -537.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2869.77, -366.61], [-2868.02, -376.94], [-2851.99, -374.24], [-2853.74, -363.91], [-2858.55, -364.72], [-2858.78, -363.37], [-2863.1, -364.09], [-2863.31, -362.8], [-2868.78, -363.72], [-2868.34, -366.37], [-2869.77, -366.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2917.23, -368.62], [-2914.51, -384.91], [-2912.43, -384.57], [-2912.0, -387.16], [-2905.6, -386.11], [-2906.03, -383.51], [-2903.85, -383.15], [-2906.58, -366.86], [-2908.26, -367.13], [-2908.76, -364.19], [-2916.08, -365.4], [-2915.59, -368.34], [-2917.23, -368.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2911.3, -317.52], [-2903.29, -316.25], [-2901.18, -329.37], [-2909.19, -330.64], [-2911.3, -317.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2873.96, -319.71], [-2872.35, -329.81], [-2859.24, -327.73], [-2860.84, -317.65], [-2873.96, -319.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2886.56, -328.4], [-2879.71, -327.43], [-2878.35, -336.99], [-2885.19, -337.96], [-2886.56, -328.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2856.86, -344.38], [-2867.06, -345.8], [-2865.43, -357.45], [-2855.23, -356.03], [-2856.86, -344.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3054.01, -359.88], [-3049.05, -359.11], [-3049.84, -354.08], [-3054.8, -354.84], [-3054.01, -359.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2946.87, -358.58], [-2955.88, -359.21], [-2954.97, -372.05], [-2945.96, -371.42], [-2946.87, -358.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2940.29, -324.28], [-2938.93, -333.18], [-2928.47, -331.6], [-2929.83, -322.69], [-2940.29, -324.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2928.68, -343.08], [-2924.92, -342.48], [-2924.04, -347.88], [-2927.79, -348.49], [-2928.68, -343.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3005.97, -361.21], [-3004.77, -371.5], [-2991.56, -369.99], [-2992.75, -359.68], [-3005.97, -361.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2901.22, -336.57], [-2899.85, -343.77], [-2891.88, -342.25], [-2893.26, -335.06], [-2901.22, -336.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2924.5, -340.25], [-2918.76, -339.26], [-2917.4, -347.03], [-2923.14, -348.03], [-2924.5, -340.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2898.95, -315.55], [-2890.29, -314.23], [-2888.01, -329.15], [-2892.36, -329.8], [-2892.91, -326.16], [-2897.23, -326.81], [-2898.95, -315.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-3049.45, -340.58], [-3047.68, -353.28], [-3042.82, -352.62], [-3043.11, -350.51], [-3034.11, -349.27], [-3035.58, -338.67], [-3049.45, -340.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2972.42, -332.92], [-2972.14, -334.96], [-2975.52, -335.4], [-2974.59, -342.31], [-2961.61, -340.56], [-2962.82, -331.63], [-2972.42, -332.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-3029.23, -334.76], [-3025.36, -342.78], [-3014.54, -337.59], [-3014.93, -336.8], [-3012.28, -335.53], [-3015.3, -329.29], [-3017.94, -330.56], [-3018.42, -329.57], [-3029.23, -334.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2978.37, -368.75], [-2979.07, -358.19], [-2968.95, -357.53], [-2968.7, -361.3], [-2964.98, -361.06], [-2964.43, -369.26], [-2973.83, -369.86], [-2973.92, -368.46], [-2978.37, -368.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2897.26, -372.94], [-2895.6, -382.19], [-2883.21, -379.99], [-2883.91, -376.1], [-2881.11, -375.61], [-2882.9, -365.62], [-2893.31, -367.47], [-2892.49, -372.09], [-2897.26, -372.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2923.94, -322.24], [-2921.52, -336.87], [-2912.7, -335.43], [-2915.11, -320.8], [-2915.97, -320.93], [-2916.35, -318.64], [-2923.43, -319.8], [-2923.05, -322.09], [-2923.94, -322.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2955.8, -330.43], [-2954.21, -340.25], [-2942.96, -338.44], [-2944.54, -328.63], [-2949.57, -329.43], [-2950.19, -325.61], [-2954.69, -326.32], [-2954.07, -330.15], [-2955.8, -330.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3063.34, -367.9], [-3061.2, -382.29], [-3059.98, -382.12], [-3059.73, -383.86], [-3056.15, -383.34], [-3056.42, -381.58], [-3048.63, -380.44], [-3050.37, -368.74], [-3051.1, -368.86], [-3051.62, -365.37], [-3060.3, -366.65], [-3060.18, -367.44], [-3063.34, -367.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-3139.5, -350.11], [-3138.28, -357.1], [-3135.59, -356.64], [-3135.03, -359.91], [-3121.91, -357.63], [-3122.2, -356.01], [-3120.85, -355.78], [-3120.2, -359.55], [-3114.7, -358.59], [-3115.71, -352.85], [-3122.54, -354.03], [-3123.71, -347.36], [-3139.5, -350.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-3129.97, -401.09], [-3128.23, -410.81], [-3117.68, -408.94], [-3119.42, -399.22], [-3129.97, -401.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-3094.91, -350.71], [-3104.28, -352.42], [-3101.68, -366.58], [-3092.31, -364.89], [-3094.91, -350.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3112.79, -391.98], [-3111.47, -400.85], [-3098.81, -398.98], [-3100.49, -387.67], [-3109.51, -389.0], [-3109.14, -391.46], [-3112.79, -391.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3094.63, -390.16], [-3093.12, -400.14], [-3084.24, -398.81], [-3084.39, -397.78], [-3081.08, -397.29], [-3082.11, -390.56], [-3085.41, -391.05], [-3085.76, -388.82], [-3094.63, -390.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-3078.41, -387.06], [-3076.84, -397.5], [-3065.26, -395.77], [-3065.52, -394.04], [-3062.38, -393.57], [-3063.4, -386.83], [-3066.54, -387.31], [-3066.83, -385.33], [-3078.41, -387.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-3132.64, -716.17], [-3132.7, -717.46], [-3134.93, -717.37], [-3135.39, -727.37], [-3133.17, -727.48], [-3133.21, -728.26], [-3120.83, -728.83], [-3120.62, -724.67], [-3119.53, -724.72], [-3119.17, -716.79], [-3132.64, -716.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3098.14, -675.67], [-3098.49, -685.2], [-3085.97, -685.65], [-3086.05, -687.81], [-3079.03, -688.07], [-3078.61, -676.38], [-3087.94, -676.04], [-3087.85, -673.77], [-3094.07, -673.54], [-3094.16, -675.82], [-3098.14, -675.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-3031.35, -725.64], [-3031.63, -732.98], [-3030.35, -733.02], [-3030.51, -737.16], [-3024.02, -737.42], [-3023.86, -733.28], [-3016.12, -733.58], [-3015.7, -722.54], [-3028.31, -722.06], [-3028.46, -725.74], [-3031.35, -725.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-3098.71, -768.52], [-3099.16, -776.83], [-3085.77, -777.54], [-3085.72, -776.64], [-3083.56, -776.76], [-3083.22, -770.51], [-3085.39, -770.4], [-3085.33, -769.23], [-3087.62, -769.11], [-3087.31, -763.4], [-3095.12, -762.99], [-3095.43, -768.69], [-3098.71, -768.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-3134.63, -734.41], [-3134.69, -735.57], [-3137.11, -735.45], [-3137.68, -747.41], [-3135.26, -747.53], [-3135.32, -748.86], [-3121.14, -749.53], [-3120.87, -743.89], [-3118.43, -744.01], [-3118.18, -738.89], [-3120.62, -738.78], [-3120.45, -735.09], [-3134.63, -734.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-2983.8, -778.17], [-2984.09, -785.7], [-2976.09, -786.01], [-2976.12, -786.98], [-2971.6, -787.16], [-2971.55, -786.18], [-2968.17, -786.31], [-2967.81, -777.11], [-2975.31, -776.81], [-2975.38, -778.5], [-2977.83, -778.41], [-2977.76, -776.55], [-2980.11, -776.46], [-2980.18, -778.32], [-2983.8, -778.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3104.48, -724.21], [-3104.89, -732.79], [-3099.38, -733.06], [-3099.59, -737.32], [-3093.75, -737.6], [-3093.54, -733.36], [-3091.48, -733.46], [-3091.06, -724.88], [-3095.48, -724.65], [-3095.45, -723.9], [-3097.71, -723.79], [-3097.65, -722.63], [-3103.24, -722.36], [-3103.34, -724.27], [-3104.48, -724.21]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3115.74, -732.55], [-3116.04, -741.1], [-3106.54, -741.43], [-3106.24, -732.88], [-3115.74, -732.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-3119.34, -770.88], [-3119.89, -779.52], [-3104.95, -780.46], [-3104.41, -771.81], [-3119.34, -770.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2989.49, -726.01], [-2989.85, -734.04], [-2982.87, -734.34], [-2982.5, -726.32], [-2989.49, -726.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3026.22, -761.62], [-3016.42, -762.13], [-3016.9, -771.21], [-3026.71, -770.7], [-3026.22, -761.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-3083.62, -653.27], [-3078.54, -653.42], [-3078.72, -659.78], [-3083.8, -659.63], [-3083.62, -653.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2996.12, -771.88], [-2990.15, -772.13], [-2990.51, -780.78], [-2996.48, -780.53], [-2996.12, -771.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-3121.0, -756.55], [-3124.96, -756.36], [-3125.33, -763.58], [-3121.37, -763.79], [-3121.0, -756.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2987.81, -771.95], [-2982.95, -772.09], [-2983.1, -777.05], [-2987.96, -776.91], [-2987.81, -771.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-3126.75, -763.87], [-3136.53, -763.41], [-3137.11, -775.38], [-3127.32, -775.84], [-3126.75, -763.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3085.16, -724.53], [-3085.99, -739.48], [-3072.87, -740.21], [-3072.42, -732.28], [-3069.57, -732.44], [-3069.17, -725.42], [-3085.16, -724.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2981.26, -739.86], [-2981.72, -749.44], [-2969.95, -750.02], [-2969.78, -746.69], [-2967.48, -746.8], [-2967.18, -740.54], [-2981.26, -739.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3081.1, -631.64], [-3068.97, -632.3], [-3069.67, -645.29], [-3077.7, -644.85], [-3077.4, -639.36], [-3081.51, -639.14], [-3081.1, -631.64]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-3016.24, -764.57], [-3006.13, -765.07], [-3006.36, -769.67], [-3003.06, -769.83], [-3003.72, -783.12], [-3017.12, -782.45], [-3016.24, -764.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-3113.57, -751.94], [-3113.84, -758.28], [-3102.6, -758.77], [-3102.29, -751.45], [-3107.91, -751.2], [-3107.95, -752.18], [-3113.57, -751.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3132.47, -625.02], [-3132.93, -638.92], [-3124.91, -639.18], [-3124.82, -636.39], [-3119.35, -636.57], [-3118.99, -625.46], [-3132.47, -625.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3066.35, -738.61], [-3065.79, -726.45], [-3058.8, -726.78], [-3058.92, -729.43], [-3056.12, -729.57], [-3056.14, -730.03], [-3047.71, -730.41], [-3048.12, -739.42], [-3066.35, -738.61]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-3064.72, -769.03], [-3065.25, -778.88], [-3054.28, -779.47], [-3053.54, -765.62], [-3059.2, -765.31], [-3059.33, -767.61], [-3061.74, -767.49], [-3061.83, -769.18], [-3064.72, -769.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3046.02, -771.98], [-3046.47, -781.1], [-3035.06, -781.66], [-3034.61, -772.55], [-3036.95, -772.44], [-3036.5, -763.4], [-3043.38, -763.07], [-3043.83, -772.09], [-3046.02, -771.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3098.53, -630.19], [-3098.89, -639.83], [-3096.02, -639.93], [-3096.13, -643.04], [-3088.28, -643.33], [-3088.16, -640.22], [-3085.95, -640.31], [-3085.59, -630.67], [-3098.53, -630.19]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3132.84, -677.6], [-3133.44, -690.02], [-3120.0, -690.66], [-3119.94, -689.5], [-3117.0, -689.64], [-3116.52, -679.53], [-3118.28, -679.45], [-3118.22, -678.3], [-3132.84, -677.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2973.7, -724.34], [-2974.27, -735.4], [-2964.23, -735.9], [-2963.66, -724.84], [-2967.65, -724.65], [-2967.61, -723.75], [-2972.25, -723.52], [-2972.29, -724.42], [-2973.7, -724.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-3009.47, -727.42], [-3009.97, -738.07], [-3005.75, -738.27], [-3006.0, -743.48], [-2999.14, -743.8], [-2998.89, -738.54], [-2998.02, -738.59], [-2997.51, -727.99], [-3009.47, -727.42]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3005.77, -820.81], [-2995.88, -821.17], [-2995.93, -822.37], [-2994.67, -822.42], [-2995.1, -833.83], [-3006.24, -833.42], [-3006.11, -830.02], [-3009.69, -829.9], [-3009.47, -823.91], [-3005.89, -824.05], [-3005.77, -820.81]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2959.1, -913.01], [-2959.67, -923.47], [-2954.21, -923.76], [-2954.36, -926.55], [-2947.49, -926.92], [-2946.77, -913.67], [-2953.4, -913.31], [-2953.3, -911.27], [-2958.36, -911.0], [-2958.48, -913.03], [-2959.1, -913.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2864.04, -915.24], [-2862.92, -922.76], [-2858.46, -922.1], [-2858.59, -921.22], [-2849.49, -919.88], [-2851.32, -907.62], [-2859.08, -908.78], [-2858.67, -911.58], [-2861.35, -911.98], [-2860.94, -914.78], [-2864.04, -915.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2897.43, -913.41], [-2897.35, -922.57], [-2895.45, -922.56], [-2895.41, -927.46], [-2888.56, -927.4], [-2888.63, -919.21], [-2885.88, -919.19], [-2885.92, -914.66], [-2888.67, -914.68], [-2888.68, -913.34], [-2897.43, -913.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-3015.11, -927.97], [-3009.99, -927.78], [-3009.93, -929.11], [-3005.71, -928.95], [-3005.57, -932.38], [-3008.02, -932.48], [-3007.95, -934.17], [-3007.57, -934.15], [-3007.07, -946.64], [-3014.35, -946.94], [-3015.11, -927.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3089.24, -815.26], [-3097.46, -814.88], [-3097.67, -819.28], [-3100.07, -819.16], [-3100.42, -826.51], [-3090.29, -826.99], [-3090.49, -831.28], [-3087.24, -831.43], [-3086.92, -824.76], [-3089.68, -824.62], [-3089.24, -815.26]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2911.5, -914.58], [-2911.79, -923.02], [-2911.04, -923.05], [-2911.19, -927.33], [-2903.05, -927.59], [-2902.91, -923.32], [-2900.82, -923.39], [-2900.47, -913.02], [-2906.75, -912.8], [-2906.81, -914.74], [-2911.5, -914.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3072.54, -857.36], [-3072.89, -868.26], [-3071.59, -868.31], [-3071.64, -869.63], [-3070.42, -869.68], [-3070.46, -870.79], [-3062.39, -871.06], [-3062.3, -868.44], [-3060.17, -868.51], [-3059.81, -857.78], [-3072.54, -857.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3101.46, -973.8], [-3098.45, -981.44], [-3095.11, -980.14], [-3094.8, -980.94], [-3094.15, -980.69], [-3092.46, -985.01], [-3087.96, -983.25], [-3089.65, -978.93], [-3088.64, -978.54], [-3092.75, -968.08], [-3097.33, -969.87], [-3096.54, -971.87], [-3101.46, -973.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3039.75, -916.05], [-3039.15, -917.28], [-3041.54, -918.44], [-3039.75, -922.09], [-3037.36, -920.93], [-3036.04, -923.62], [-3033.59, -922.44], [-3031.72, -926.28], [-3022.34, -921.73], [-3024.64, -917.02], [-3026.36, -917.86], [-3029.64, -911.15], [-3039.75, -916.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2911.57, -824.62], [-2911.65, -826.53], [-2913.22, -826.48], [-2913.38, -830.61], [-2911.82, -830.67], [-2911.9, -832.69], [-2908.27, -832.84], [-2908.33, -834.34], [-2905.11, -834.48], [-2905.05, -832.97], [-2902.15, -833.09], [-2901.82, -825.02], [-2911.57, -824.62]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-3134.0, -940.39], [-3134.21, -949.02], [-3130.53, -949.11], [-3130.56, -950.03], [-3127.01, -950.11], [-3126.98, -949.2], [-3122.8, -949.3], [-3122.77, -948.4], [-3120.07, -948.46], [-3119.94, -943.29], [-3122.65, -943.22], [-3122.59, -940.67], [-3134.0, -940.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-3009.2, -868.25], [-3009.6, -877.32], [-3000.81, -877.69], [-3000.76, -876.47], [-2997.61, -876.61], [-2997.41, -871.93], [-3000.55, -871.8], [-3000.41, -868.62], [-3003.68, -868.48], [-3003.64, -867.55], [-3007.35, -867.39], [-3007.39, -868.33], [-3009.2, -868.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2820.21, -828.02], [-2816.78, -828.15], [-2816.69, -825.77], [-2812.16, -825.92], [-2812.24, -828.31], [-2811.74, -828.32], [-2811.92, -833.39], [-2811.12, -833.41], [-2811.25, -836.93], [-2817.51, -836.72], [-2817.61, -839.45], [-2820.61, -839.34], [-2820.21, -828.02]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2845.38, -908.56], [-2844.12, -911.91], [-2846.44, -912.78], [-2844.67, -917.52], [-2842.34, -916.65], [-2842.15, -917.17], [-2831.97, -913.38], [-2832.98, -910.69], [-2831.04, -909.96], [-2832.9, -905.01], [-2834.83, -905.73], [-2835.19, -904.77], [-2845.38, -908.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3056.39, -946.07], [-3049.16, -945.01], [-3048.37, -950.38], [-3046.1, -950.04], [-3045.84, -951.83], [-3040.3, -951.02], [-3039.83, -954.25], [-3039.17, -954.16], [-3037.82, -963.31], [-3052.17, -965.41], [-3053.87, -953.89], [-3055.21, -954.08], [-3056.39, -946.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-3128.52, -856.32], [-3126.77, -856.38], [-3126.67, -853.74], [-3121.59, -853.92], [-3121.69, -856.56], [-3120.68, -856.6], [-3120.82, -860.72], [-3116.36, -860.89], [-3116.56, -866.46], [-3112.84, -866.59], [-3113.04, -872.23], [-3129.06, -871.66], [-3128.52, -856.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2914.1, -867.71], [-2909.12, -867.86], [-2909.16, -869.19], [-2907.73, -869.23], [-2907.81, -871.74], [-2904.21, -871.84], [-2904.52, -882.48], [-2905.34, -882.46], [-2905.41, -884.99], [-2913.5, -884.74], [-2913.41, -882.21], [-2914.55, -882.18], [-2914.1, -867.71]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3076.2, -959.87], [-3072.07, -966.01], [-3071.69, -965.75], [-3067.03, -972.69], [-3062.04, -969.37], [-3065.42, -964.32], [-3062.27, -962.22], [-3062.87, -961.33], [-3060.35, -959.65], [-3064.35, -953.71], [-3066.87, -955.39], [-3067.68, -954.18], [-3076.2, -959.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3144.38, -905.86], [-3144.69, -917.83], [-3143.27, -917.87], [-3143.33, -920.23], [-3137.98, -920.36], [-3137.92, -918.0], [-3136.0, -918.06], [-3135.7, -906.09], [-3136.5, -906.06], [-3136.45, -903.78], [-3140.7, -903.66], [-3140.76, -905.95], [-3144.38, -905.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3038.94, -867.13], [-3039.11, -872.54], [-3040.12, -872.5], [-3040.25, -876.69], [-3035.78, -876.83], [-3035.7, -874.39], [-3028.2, -874.63], [-3027.92, -865.84], [-3028.9, -865.81], [-3028.83, -863.63], [-3036.14, -863.4], [-3036.24, -866.47], [-3037.76, -866.41], [-3037.79, -867.18], [-3038.94, -867.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2987.16, -866.29], [-2988.63, -867.88], [-2988.71, -870.72], [-2987.76, -871.88], [-2987.97, -879.12], [-2985.02, -879.2], [-2985.03, -879.47], [-2973.23, -879.81], [-2973.17, -877.74], [-2970.28, -877.83], [-2970.07, -870.54], [-2972.96, -870.46], [-2972.9, -868.17], [-2981.69, -867.92], [-2981.65, -866.45], [-2987.16, -866.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2920.19, -933.66], [-2913.34, -933.98], [-2913.66, -940.7], [-2920.5, -940.39], [-2920.19, -933.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2837.73, -847.95], [-2837.54, -844.0], [-2829.67, -844.39], [-2829.87, -848.33], [-2837.73, -847.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2862.24, -837.55], [-2858.74, -837.67], [-2858.97, -843.5], [-2862.46, -843.37], [-2862.24, -837.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3044.9, -856.32], [-3055.16, -855.76], [-3056.24, -875.38], [-3045.98, -875.94], [-3044.9, -856.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2887.35, -853.98], [-2892.21, -853.84], [-2892.39, -859.82], [-2887.53, -859.96], [-2887.35, -853.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2850.97, -861.94], [-2854.14, -861.8], [-2853.97, -857.94], [-2850.81, -858.08], [-2850.97, -861.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-3046.91, -840.7], [-3041.21, -840.94], [-3041.45, -846.86], [-3047.15, -846.64], [-3046.91, -840.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2829.6, -903.98], [-2826.04, -903.91], [-2825.88, -910.65], [-2829.44, -910.73], [-2829.6, -903.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-3117.14, -936.74], [-3117.31, -944.13], [-3106.92, -944.37], [-3106.74, -936.99], [-3117.14, -936.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3018.89, -840.92], [-3024.95, -840.75], [-3025.12, -846.9], [-3019.07, -847.08], [-3018.89, -840.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2886.49, -837.17], [-2882.95, -837.31], [-2883.16, -842.8], [-2886.7, -842.67], [-2886.49, -837.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3040.7, -839.37], [-3041.05, -846.88], [-3031.17, -847.33], [-3030.83, -839.82], [-3040.7, -839.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-3082.92, -985.18], [-3080.17, -991.31], [-3074.07, -988.59], [-3076.83, -982.47], [-3082.92, -985.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3130.18, -934.83], [-3130.28, -938.21], [-3125.2, -938.36], [-3125.1, -934.98], [-3130.18, -934.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-3057.53, -816.56], [-3065.63, -816.17], [-3066.17, -827.21], [-3058.07, -827.6], [-3057.53, -816.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-3101.09, -983.0], [-3097.53, -981.61], [-3095.37, -987.13], [-3098.93, -988.52], [-3101.09, -983.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2967.83, -942.81], [-2961.07, -943.06], [-2961.33, -949.78], [-2968.08, -949.51], [-2967.83, -942.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3147.79, -945.41], [-3148.02, -953.14], [-3138.52, -953.42], [-3138.29, -945.69], [-3147.79, -945.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2879.09, -913.48], [-2878.63, -922.24], [-2869.24, -921.76], [-2869.69, -912.99], [-2879.09, -913.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-3037.85, -816.42], [-3028.15, -816.85], [-3028.78, -830.82], [-3038.48, -830.4], [-3037.85, -816.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2979.47, -851.49], [-2979.71, -859.92], [-2970.7, -860.18], [-2970.46, -851.75], [-2979.47, -851.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2895.2, -929.09], [-2899.13, -929.01], [-2899.24, -934.89], [-2895.32, -934.97], [-2895.2, -929.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2989.12, -865.36], [-2994.41, -865.14], [-2994.68, -871.6], [-2989.39, -871.83], [-2989.12, -865.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2847.17, -826.81], [-2847.58, -835.28], [-2839.21, -835.68], [-2838.8, -827.22], [-2847.17, -826.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2933.34, -936.33], [-2927.99, -936.49], [-2928.21, -944.1], [-2933.55, -943.94], [-2933.34, -936.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2843.21, -856.23], [-2838.4, -856.48], [-2838.76, -863.44], [-2843.57, -863.19], [-2843.21, -856.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3082.18, -848.6], [-3089.35, -853.97], [-3084.16, -860.85], [-3077.0, -855.47], [-3082.18, -848.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2895.19, -836.44], [-2898.52, -836.33], [-2898.72, -842.03], [-2895.39, -842.15], [-2895.19, -836.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2849.88, -838.71], [-2846.62, -838.81], [-2846.8, -844.2], [-2850.06, -844.09], [-2849.88, -838.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2914.84, -853.88], [-2919.48, -853.75], [-2919.63, -859.04], [-2914.99, -859.17], [-2914.84, -853.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2903.07, -835.98], [-2898.69, -836.19], [-2898.97, -842.17], [-2903.35, -841.97], [-2903.07, -835.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2991.65, -942.17], [-2984.28, -942.49], [-2984.61, -949.87], [-2991.97, -949.55], [-2991.65, -942.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2874.49, -837.3], [-2870.84, -837.45], [-2871.08, -843.26], [-2874.73, -843.11], [-2874.49, -837.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3145.52, -847.23], [-3145.66, -851.9], [-3138.5, -852.11], [-3138.36, -847.43], [-3145.52, -847.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2834.43, -837.81], [-2838.1, -837.66], [-2838.31, -843.32], [-2834.65, -843.46], [-2834.43, -837.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3147.95, -990.47], [-3145.83, -997.26], [-3136.67, -994.41], [-3138.81, -987.61], [-3147.95, -990.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-3146.04, -856.03], [-3134.82, -856.41], [-3135.21, -868.15], [-3146.44, -867.77], [-3146.04, -856.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2826.31, -899.82], [-2817.42, -894.93], [-2812.3, -904.16], [-2821.2, -909.05], [-2826.31, -899.82]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-3147.43, -940.19], [-3147.3, -935.61], [-3141.02, -935.79], [-3141.15, -940.37], [-3147.43, -940.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2981.82, -909.72], [-2982.29, -920.97], [-2979.65, -921.09], [-2980.07, -931.1], [-2969.7, -931.53], [-2968.81, -910.26], [-2981.82, -909.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[-2886.88, -867.93], [-2877.74, -868.25], [-2878.27, -883.33], [-2880.43, -883.25], [-2880.49, -884.97], [-2887.47, -884.73], [-2886.88, -867.93]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3052.13, -821.05], [-3052.31, -830.77], [-3043.08, -830.94], [-3042.83, -817.66], [-3049.87, -817.53], [-3049.94, -821.09], [-3052.13, -821.05]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3131.98, -984.94], [-3128.99, -993.65], [-3120.54, -990.78], [-3124.29, -979.84], [-3132.08, -982.5], [-3131.31, -984.72], [-3131.98, -984.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3117.3, -814.08], [-3117.5, -822.12], [-3102.7, -822.49], [-3102.48, -813.84], [-3108.76, -813.68], [-3108.78, -814.29], [-3117.3, -814.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3086.84, -968.71], [-3083.8, -974.69], [-3080.85, -973.19], [-3078.65, -977.52], [-3072.62, -974.47], [-3077.85, -964.18], [-3086.84, -968.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3100.83, -907.94], [-3101.31, -920.87], [-3092.63, -921.19], [-3092.05, -905.6], [-3098.44, -905.36], [-3098.54, -908.03], [-3100.83, -907.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3013.81, -912.83], [-3005.74, -912.45], [-3005.0, -927.84], [-3009.66, -928.06], [-3009.82, -924.77], [-3013.23, -924.93], [-3013.81, -912.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-3083.65, -816.57], [-3084.02, -825.07], [-3073.27, -825.55], [-3072.84, -815.65], [-3079.11, -815.37], [-3079.17, -816.77], [-3083.65, -816.57]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2925.75, -915.05], [-2915.97, -915.44], [-2916.3, -923.59], [-2919.4, -923.47], [-2919.63, -929.18], [-2926.31, -928.91], [-2925.75, -915.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2871.64, -826.05], [-2872.03, -834.22], [-2863.85, -834.63], [-2863.32, -823.8], [-2867.69, -823.59], [-2867.81, -826.24], [-2871.64, -826.05]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2850.49, -866.62], [-2851.01, -878.79], [-2842.34, -879.16], [-2841.89, -868.77], [-2844.94, -868.64], [-2844.86, -866.86], [-2850.49, -866.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2895.4, -824.85], [-2895.77, -833.24], [-2892.93, -833.35], [-2893.11, -837.34], [-2888.19, -837.56], [-2887.65, -825.19], [-2895.4, -824.85]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-3025.13, -867.71], [-3025.38, -876.53], [-3016.53, -876.78], [-3016.51, -875.86], [-3013.23, -875.95], [-3013.01, -868.06], [-3025.13, -867.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-3116.1, -906.04], [-3116.31, -915.68], [-3111.29, -915.79], [-3111.39, -920.37], [-3106.21, -920.49], [-3105.85, -904.86], [-3113.36, -904.69], [-3113.39, -906.1], [-3116.1, -906.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2883.62, -825.37], [-2875.3, -825.71], [-2875.65, -834.32], [-2876.73, -834.28], [-2876.9, -838.49], [-2881.92, -838.29], [-2881.75, -834.08], [-2883.97, -833.99], [-2883.62, -825.37]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-3116.4, -979.94], [-3115.05, -979.42], [-3116.2, -976.46], [-3109.93, -974.04], [-3108.77, -977.01], [-3107.65, -976.58], [-3103.28, -987.86], [-3112.02, -991.23], [-3116.4, -979.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3001.58, -913.13], [-3002.01, -926.3], [-3000.91, -926.34], [-3000.95, -927.4], [-2989.5, -927.78], [-2989.4, -924.8], [-2988.74, -924.82], [-2988.36, -913.56], [-3001.58, -913.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2820.05, -845.14], [-2811.91, -845.37], [-2812.16, -853.8], [-2812.92, -853.78], [-2812.99, -856.06], [-2816.92, -855.95], [-2816.85, -853.66], [-2820.29, -853.56], [-2820.05, -845.14]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2943.31, -870.98], [-2943.82, -880.92], [-2939.88, -881.13], [-2940.02, -883.79], [-2934.19, -884.09], [-2933.45, -869.66], [-2938.8, -869.4], [-2938.9, -871.21], [-2943.31, -870.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2899.27, -872.34], [-2899.75, -884.66], [-2891.52, -884.99], [-2891.02, -872.67], [-2891.84, -872.63], [-2891.72, -869.51], [-2897.88, -869.27], [-2898.01, -872.39], [-2899.27, -872.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3020.44, -818.47], [-3012.69, -818.75], [-3012.85, -823.19], [-3011.08, -823.25], [-3011.33, -830.1], [-3014.58, -829.99], [-3014.63, -831.3], [-3020.89, -831.07], [-3020.44, -818.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2982.79, -826.56], [-2971.94, -827.0], [-2972.08, -830.49], [-2970.65, -830.56], [-2970.98, -838.95], [-2972.41, -838.9], [-2972.57, -842.83], [-2983.42, -842.39], [-2982.79, -826.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2927.4, -869.87], [-2917.59, -870.24], [-2918.04, -882.28], [-2918.93, -882.24], [-2919.03, -884.76], [-2927.38, -884.46], [-2927.28, -881.93], [-2927.85, -881.92], [-2927.4, -869.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3088.2, -908.78], [-3080.29, -909.03], [-3080.45, -913.73], [-3077.98, -913.81], [-3078.1, -917.89], [-3079.3, -917.85], [-3079.55, -925.56], [-3088.72, -925.26], [-3088.2, -908.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2835.37, -827.0], [-2835.68, -834.8], [-2824.77, -835.22], [-2824.46, -827.41], [-2828.01, -827.28], [-2827.93, -825.38], [-2831.92, -825.23], [-2831.99, -827.13], [-2835.37, -827.0]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-3030.82, -927.54], [-3029.64, -933.75], [-3026.25, -933.11], [-3026.75, -930.46], [-3023.57, -929.85], [-3024.56, -924.71], [-3028.46, -925.45], [-3028.15, -927.04], [-3030.82, -927.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2835.57, -863.91], [-2833.94, -866.15], [-2836.42, -867.95], [-2833.29, -872.26], [-2819.77, -862.52], [-2822.89, -858.21], [-2825.6, -860.17], [-2827.24, -857.91], [-2835.57, -863.91]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2859.49, -826.55], [-2859.95, -835.1], [-2851.5, -835.56], [-2851.04, -827.0], [-2851.77, -826.96], [-2851.65, -824.63], [-2855.41, -824.42], [-2855.54, -826.76], [-2859.49, -826.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2875.09, -871.97], [-2866.86, -872.3], [-2866.99, -875.53], [-2865.0, -875.61], [-2865.16, -879.47], [-2867.14, -879.38], [-2867.25, -882.07], [-2875.48, -881.73], [-2875.09, -871.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2939.51, -912.65], [-2930.32, -912.98], [-2930.76, -925.33], [-2932.26, -927.01], [-2935.37, -926.89], [-2936.73, -925.12], [-2938.6, -925.05], [-2938.5, -922.03], [-2939.84, -921.98], [-2939.51, -912.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2862.57, -870.81], [-2863.05, -881.28], [-2861.63, -882.29], [-2858.46, -882.44], [-2857.38, -881.53], [-2854.45, -881.67], [-2853.92, -870.02], [-2858.83, -869.8], [-2858.89, -870.98], [-2862.57, -870.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2753.23, -931.46], [-2753.46, -941.18], [-2748.11, -941.3], [-2748.19, -944.85], [-2743.63, -944.95], [-2743.68, -947.04], [-2732.58, -947.29], [-2732.46, -942.02], [-2726.03, -942.18], [-2725.8, -932.08], [-2753.23, -931.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[-2784.64, -989.3], [-2775.71, -989.61], [-2776.06, -999.73], [-2784.99, -999.42], [-2784.95, -998.44], [-2785.68, -998.42], [-2785.6, -996.25], [-2786.92, -996.2], [-2786.72, -990.21], [-2784.67, -990.28], [-2784.64, -989.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2721.94, -921.44], [-2718.49, -928.82], [-2708.5, -924.19], [-2708.88, -923.36], [-2706.66, -922.33], [-2709.58, -916.06], [-2712.75, -917.53], [-2713.25, -916.46], [-2721.0, -920.06], [-2720.63, -920.85], [-2721.94, -921.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2782.29, -934.89], [-2778.31, -935.0], [-2778.46, -940.33], [-2782.44, -940.22], [-2782.29, -934.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2763.04, -1009.39], [-2755.61, -1009.56], [-2755.85, -1020.8], [-2763.29, -1020.64], [-2763.04, -1009.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2764.29, -947.8], [-2757.58, -947.89], [-2757.73, -958.88], [-2764.44, -958.79], [-2764.29, -947.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2784.81, -1002.41], [-2773.09, -1002.79], [-2773.28, -1008.89], [-2774.71, -1008.85], [-2774.81, -1012.07], [-2785.11, -1011.74], [-2784.81, -1002.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2787.91, -1015.3], [-2788.21, -1025.9], [-2769.43, -1026.44], [-2769.23, -1019.75], [-2770.76, -1019.7], [-2770.65, -1015.79], [-2787.91, -1015.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2777.42, -946.28], [-2769.0, -946.51], [-2769.25, -955.8], [-2772.11, -955.72], [-2772.16, -958.03], [-2776.96, -957.9], [-2776.9, -955.6], [-2777.67, -955.59], [-2777.42, -946.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2733.94, -974.99], [-2733.96, -975.97], [-2736.14, -975.92], [-2736.23, -980.02], [-2737.25, -979.99], [-2737.4, -986.63], [-2721.65, -987.0], [-2721.39, -975.29], [-2733.94, -974.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2789.43, -941.31], [-2782.31, -941.47], [-2782.42, -946.91], [-2781.27, -946.94], [-2781.46, -955.35], [-2784.96, -955.27], [-2785.03, -958.13], [-2789.8, -958.02], [-2789.43, -941.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2703.08, -1046.73], [-2695.79, -1040.79], [-2689.03, -1049.01], [-2689.63, -1049.51], [-2687.16, -1052.51], [-2687.88, -1053.1], [-2686.37, -1054.92], [-2691.15, -1058.82], [-2695.11, -1053.99], [-2696.3, -1054.97], [-2703.08, -1046.73]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2620.9, -996.29], [-2631.12, -984.49], [-2624.41, -978.71], [-2614.19, -990.5], [-2620.9, -996.29]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2685.44, -1054.92], [-2680.94, -1051.27], [-2677.0, -1056.09], [-2681.51, -1059.74], [-2685.44, -1054.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2618.31, -1015.21], [-2624.15, -1008.62], [-2612.4, -998.28], [-2606.56, -1004.87], [-2618.31, -1015.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2638.38, -985.15], [-2643.34, -989.42], [-2631.56, -1003.0], [-2626.6, -998.74], [-2637.02, -986.71], [-2638.38, -985.15]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.066, "pop": 0, "jobs": 66}}, {"shape": {"outer": [[-2683.11, -1023.54], [-2694.7, -1033.35], [-2680.04, -1050.55], [-2676.79, -1047.8], [-2671.36, -1054.16], [-2663.03, -1047.09], [-2683.11, -1023.54]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.122, "pop": 0, "jobs": 122}}, {"shape": {"outer": [[-2637.02, -986.71], [-2626.6, -998.74], [-2624.61, -1001.04], [-2620.13, -997.18], [-2620.9, -996.29], [-2631.12, -984.49], [-2632.54, -982.86], [-2637.02, -986.71]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.031, "pop": 0, "jobs": 31}}, {"shape": {"outer": [[-2459.7, -965.22], [-2467.37, -971.88], [-2465.14, -974.44], [-2466.09, -975.26], [-2460.33, -981.85], [-2451.7, -974.36], [-2453.9, -971.85], [-2451.99, -970.2], [-2455.77, -965.86], [-2457.69, -967.52], [-2459.7, -965.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2401.05, -914.36], [-2403.03, -916.05], [-2403.74, -915.23], [-2407.71, -918.62], [-2407.0, -919.44], [-2409.04, -921.18], [-2398.42, -933.56], [-2397.32, -932.61], [-2395.87, -934.3], [-2390.24, -929.51], [-2391.69, -927.81], [-2390.42, -926.74], [-2401.05, -914.36]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2416.33, -929.7], [-2410.68, -936.36], [-2404.81, -931.42], [-2410.46, -924.75], [-2416.33, -929.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2463.56, -894.48], [-2468.73, -899.13], [-2463.59, -904.82], [-2458.42, -900.18], [-2463.56, -894.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2452.96, -906.33], [-2458.6, -911.25], [-2450.78, -920.14], [-2445.15, -915.22], [-2452.96, -906.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2427.44, -950.15], [-2421.56, -956.8], [-2413.15, -949.42], [-2419.04, -942.76], [-2427.44, -950.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2492.78, -945.64], [-2490.42, -948.34], [-2491.34, -949.13], [-2488.9, -951.92], [-2488.0, -951.14], [-2486.17, -953.23], [-2474.07, -942.75], [-2480.69, -935.16], [-2492.78, -945.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2444.84, -901.12], [-2451.68, -907.12], [-2445.34, -914.3], [-2438.5, -908.31], [-2444.84, -901.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2425.37, -932.44], [-2419.13, -939.76], [-2428.62, -947.79], [-2434.87, -940.47], [-2425.37, -932.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2496.76, -934.52], [-2490.88, -941.22], [-2483.97, -935.21], [-2489.85, -928.5], [-2496.76, -934.52]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2462.96, -993.15], [-2457.78, -998.94], [-2451.05, -992.96], [-2456.23, -987.17], [-2462.96, -993.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2402.22, -956.43], [-2406.12, -951.9], [-2401.23, -947.73], [-2397.34, -952.26], [-2402.22, -956.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2419.02, -956.69], [-2412.39, -950.76], [-2406.4, -957.39], [-2409.28, -959.98], [-2407.58, -961.86], [-2411.33, -965.22], [-2419.02, -956.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.059, "pop": 0, "jobs": 59}}, {"shape": {"outer": [[-2443.56, -898.92], [-2437.39, -906.25], [-2436.49, -905.5], [-2434.96, -907.32], [-2430.07, -903.23], [-2431.62, -901.4], [-2430.49, -900.46], [-2436.67, -893.14], [-2443.56, -898.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2286.16, -946.74], [-2292.45, -952.01], [-2286.51, -959.04], [-2285.8, -958.44], [-2284.87, -959.55], [-2282.81, -957.82], [-2281.84, -958.97], [-2278.81, -956.44], [-2280.46, -954.49], [-2279.97, -954.08], [-2286.16, -946.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2362.39, -955.11], [-2355.63, -949.5], [-2349.66, -956.64], [-2351.22, -957.93], [-2350.54, -958.75], [-2351.82, -959.82], [-2350.8, -961.05], [-2354.13, -963.81], [-2355.84, -961.77], [-2356.43, -962.25], [-2362.39, -955.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2353.63, -946.72], [-2350.77, -944.25], [-2351.57, -943.33], [-2348.12, -940.35], [-2340.89, -948.67], [-2343.5, -950.92], [-2341.59, -953.11], [-2344.62, -955.72], [-2346.52, -953.53], [-2347.2, -954.11], [-2353.63, -946.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2302.84, -960.45], [-2297.3, -966.94], [-2290.97, -961.59], [-2292.24, -960.11], [-2290.54, -958.66], [-2294.31, -954.22], [-2296.02, -955.67], [-2296.52, -955.09], [-2297.72, -956.1], [-2299.21, -954.35], [-2303.67, -958.13], [-2302.18, -959.89], [-2302.84, -960.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2268.37, -929.07], [-2274.94, -935.08], [-2265.56, -945.26], [-2258.99, -939.24], [-2268.37, -929.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2324.38, -927.16], [-2319.21, -932.88], [-2313.02, -927.33], [-2318.19, -921.61], [-2324.38, -927.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2306.67, -993.53], [-2302.26, -989.74], [-2298.82, -993.72], [-2303.23, -997.5], [-2306.67, -993.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2350.75, -873.72], [-2344.07, -868.22], [-2337.19, -876.52], [-2343.88, -882.02], [-2350.75, -873.72]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2277.27, -937.3], [-2284.05, -943.25], [-2274.19, -954.39], [-2267.41, -948.44], [-2277.27, -937.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2248.05, -910.44], [-2241.8, -905.12], [-2233.04, -915.34], [-2239.29, -920.66], [-2248.05, -910.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2359.88, -932.26], [-2355.53, -928.65], [-2351.94, -932.95], [-2356.28, -936.56], [-2359.88, -932.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2225.62, -920.99], [-2229.4, -924.26], [-2225.64, -928.57], [-2221.87, -925.28], [-2225.62, -920.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2304.9, -909.7], [-2299.01, -916.54], [-2292.82, -911.26], [-2298.71, -904.41], [-2304.9, -909.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2309.53, -1005.2], [-2313.57, -1000.73], [-2306.7, -994.56], [-2302.66, -999.03], [-2309.53, -1005.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2303.52, -884.28], [-2298.69, -889.96], [-2309.51, -899.08], [-2314.34, -893.39], [-2303.52, -884.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2355.18, -928.44], [-2350.48, -924.45], [-2346.75, -928.83], [-2351.45, -932.81], [-2355.18, -928.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2341.47, -867.31], [-2332.21, -878.11], [-2328.29, -874.78], [-2330.6, -872.09], [-2327.88, -869.76], [-2334.83, -861.66], [-2341.47, -867.31]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2285.62, -894.51], [-2280.84, -900.09], [-2277.38, -897.14], [-2275.14, -899.74], [-2272.63, -897.62], [-2279.64, -889.43], [-2285.62, -894.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2330.1, -985.72], [-2324.61, -991.82], [-2318.11, -986.01], [-2320.53, -983.32], [-2318.89, -981.86], [-2321.97, -978.44], [-2330.1, -985.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2339.12, -930.36], [-2346.21, -936.6], [-2337.11, -946.88], [-2336.7, -946.52], [-2335.25, -948.16], [-2328.96, -942.63], [-2330.42, -940.99], [-2330.01, -940.64], [-2339.12, -930.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2310.76, -967.78], [-2305.22, -974.03], [-2298.35, -967.99], [-2303.83, -961.81], [-2304.1, -962.04], [-2305.04, -960.98], [-2307.55, -963.19], [-2306.68, -964.18], [-2310.76, -967.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2267.44, -926.96], [-2260.17, -935.18], [-2254.03, -929.79], [-2254.68, -929.06], [-2252.71, -927.34], [-2257.03, -922.45], [-2258.99, -924.17], [-2261.3, -921.57], [-2267.44, -926.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2298.95, -898.14], [-2294.25, -894.18], [-2291.21, -897.77], [-2289.34, -896.2], [-2282.91, -903.8], [-2285.29, -905.8], [-2286.26, -904.66], [-2290.45, -908.17], [-2298.95, -898.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2260.17, -953.83], [-2256.49, -958.01], [-2252.2, -954.26], [-2251.22, -955.37], [-2247.21, -951.86], [-2250.66, -947.96], [-2254.65, -951.46], [-2255.88, -950.07], [-2260.17, -953.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2371.15, -965.07], [-2365.48, -971.64], [-2364.97, -971.21], [-2364.04, -972.29], [-2362.13, -970.66], [-2363.07, -969.57], [-2358.48, -965.64], [-2364.15, -959.06], [-2367.53, -961.97], [-2368.82, -960.46], [-2371.69, -962.92], [-2370.39, -964.42], [-2371.15, -965.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2347.28, -1012.99], [-2343.06, -1009.32], [-2338.77, -1014.21], [-2342.98, -1017.88], [-2347.28, -1012.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2326.43, -1019.07], [-2329.98, -1014.93], [-2325.0, -1010.67], [-2321.44, -1014.8], [-2326.43, -1019.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2349.77, -1038.43], [-2355.42, -1031.97], [-2344.54, -1022.54], [-2338.9, -1029.0], [-2349.77, -1038.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2395.64, -986.93], [-2401.13, -980.54], [-2392.43, -973.13], [-2386.94, -979.52], [-2395.64, -986.93]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2389.89, -955.6], [-2384.54, -950.98], [-2380.1, -956.09], [-2385.45, -960.71], [-2389.89, -955.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2372.51, -966.96], [-2367.34, -972.45], [-2374.04, -978.71], [-2379.21, -973.21], [-2372.51, -966.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2384.19, -950.82], [-2379.09, -946.35], [-2374.7, -951.32], [-2379.79, -955.79], [-2384.19, -950.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2392.7, -988.25], [-2389.79, -991.66], [-2391.97, -993.51], [-2389.53, -996.37], [-2378.74, -987.24], [-2384.1, -980.97], [-2392.7, -988.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2347.91, -998.88], [-2338.97, -1009.29], [-2331.95, -1003.29], [-2340.89, -992.89], [-2341.54, -993.45], [-2342.99, -991.76], [-2349.04, -996.91], [-2347.59, -998.6], [-2347.91, -998.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2367.54, -1020.76], [-2362.03, -1027.23], [-2355.87, -1022.03], [-2361.38, -1015.56], [-2363.53, -1017.37], [-2365.68, -1014.86], [-2369.04, -1017.71], [-2366.9, -1020.23], [-2367.54, -1020.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2408.99, -969.7], [-2402.38, -977.32], [-2393.14, -969.38], [-2395.63, -966.49], [-2394.47, -965.49], [-2396.72, -962.9], [-2397.88, -963.9], [-2399.75, -961.75], [-2408.99, -969.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2358.74, -1008.39], [-2353.19, -1014.68], [-2349.6, -1011.53], [-2348.35, -1012.94], [-2346.15, -1011.02], [-2347.4, -1009.6], [-2346.51, -1008.83], [-2352.07, -1002.53], [-2358.74, -1008.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2194.09, -912.67], [-2187.98, -912.83], [-2188.15, -919.25], [-2194.26, -919.1], [-2194.09, -912.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2173.53, -939.0], [-2179.33, -944.23], [-2188.16, -934.5], [-2182.37, -929.27], [-2173.53, -939.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2147.27, -922.98], [-2136.14, -923.3], [-2136.38, -931.95], [-2147.52, -931.63], [-2147.27, -922.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2187.09, -918.41], [-2187.64, -925.78], [-2183.2, -926.03], [-2173.09, -931.69], [-2172.84, -919.11], [-2187.09, -918.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2149.1, -957.68], [-2149.3, -966.58], [-2136.3, -966.87], [-2136.19, -961.95], [-2134.05, -961.98], [-2133.96, -958.02], [-2149.1, -957.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2204.48, -951.24], [-2198.05, -958.85], [-2194.01, -955.45], [-2195.9, -953.21], [-2193.32, -951.05], [-2197.85, -945.68], [-2204.48, -951.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2196.26, -942.31], [-2188.59, -935.87], [-2181.86, -943.82], [-2184.24, -945.82], [-2183.61, -946.58], [-2186.29, -948.84], [-2186.93, -948.07], [-2189.54, -950.27], [-2196.26, -942.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2144.8, -933.94], [-2144.97, -939.76], [-2136.94, -939.99], [-2136.92, -939.29], [-2131.35, -939.45], [-2131.22, -934.99], [-2136.79, -934.83], [-2136.77, -934.18], [-2144.8, -933.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2145.56, -945.03], [-2134.41, -945.27], [-2134.58, -953.11], [-2145.73, -952.87], [-2145.71, -952.26], [-2148.16, -952.21], [-2148.02, -945.74], [-2145.57, -945.79], [-2145.56, -945.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1838.9, -905.73], [-1839.05, -914.67], [-1832.93, -914.76], [-1832.92, -914.2], [-1830.79, -914.24], [-1830.65, -905.87], [-1832.95, -905.84], [-1832.9, -902.99], [-1837.32, -902.92], [-1837.37, -905.76], [-1838.9, -905.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1804.29, -904.49], [-1804.59, -916.62], [-1796.46, -916.82], [-1796.16, -904.69], [-1804.29, -904.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2004.89, -902.12], [-2005.02, -910.86], [-1993.79, -911.03], [-1993.66, -902.28], [-2004.89, -902.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1982.67, -898.45], [-1974.26, -898.71], [-1974.69, -912.36], [-1983.1, -912.1], [-1982.67, -898.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2005.56, -898.16], [-2005.53, -894.82], [-2006.15, -894.81], [-2006.12, -888.74], [-1995.96, -888.8], [-1996.01, -898.23], [-2005.56, -898.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1961.2, -901.86], [-1961.5, -912.09], [-1955.16, -912.27], [-1955.1, -910.2], [-1953.63, -910.25], [-1953.39, -902.08], [-1961.2, -901.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1850.5, -902.2], [-1850.89, -915.96], [-1842.05, -916.21], [-1841.65, -902.45], [-1844.44, -902.37], [-1844.4, -901.01], [-1848.0, -900.91], [-1848.04, -902.27], [-1850.5, -902.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1972.17, -899.14], [-1963.53, -899.47], [-1963.96, -910.66], [-1964.68, -910.64], [-1964.74, -912.32], [-1971.67, -912.06], [-1971.61, -910.37], [-1972.59, -910.34], [-1972.17, -899.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1815.05, -904.22], [-1807.18, -904.47], [-1807.52, -915.02], [-1809.22, -914.97], [-1809.28, -916.62], [-1813.75, -916.48], [-1813.7, -914.82], [-1815.38, -914.77], [-1815.05, -904.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1925.13, -858.97], [-1930.82, -858.78], [-1931.11, -867.43], [-1925.41, -867.62], [-1925.13, -858.97]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.014, "pop": 0, "jobs": 14}}, {"shape": {"outer": [[-1955.78, -858.17], [-1956.2, -868.88], [-1936.43, -869.63], [-1936.3, -866.16], [-1931.61, -866.33], [-1931.34, -859.09], [-1955.78, -858.17]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[-1748.89, -1137.82], [-1749.08, -1144.33], [-1752.03, -1144.25], [-1752.3, -1153.92], [-1734.73, -1154.42], [-1734.9, -1160.44], [-1720.72, -1160.84], [-1720.09, -1138.21], [-1732.59, -1137.86], [-1732.61, -1138.28], [-1748.89, -1137.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.468, "pop": 234, "jobs": 0}}, {"shape": {"outer": [[-1826.92, -1011.24], [-1835.71, -1010.97], [-1835.79, -1013.83], [-1837.87, -1013.76], [-1838.01, -1018.44], [-1835.94, -1018.5], [-1836.03, -1021.66], [-1834.94, -1021.69], [-1835.13, -1028.15], [-1827.43, -1028.38], [-1826.92, -1011.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1657.61, -1039.63], [-1657.36, -1031.86], [-1644.82, -1032.25], [-1644.42, -1019.85], [-1673.04, -1018.94], [-1673.43, -1031.33], [-1660.53, -1031.74], [-1660.77, -1039.55], [-1672.75, -1039.16], [-1673.16, -1051.87], [-1645.37, -1052.74], [-1644.97, -1040.04], [-1657.61, -1039.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.469, "pop": 0, "jobs": 469}}, {"shape": {"outer": [[-1840.61, -1036.96], [-1839.13, -1037.02], [-1838.86, -1030.48], [-1832.14, -1030.75], [-1832.36, -1036.17], [-1835.21, -1036.05], [-1835.26, -1037.17], [-1831.82, -1037.31], [-1832.43, -1052.07], [-1836.53, -1051.9], [-1836.45, -1050.14], [-1841.13, -1049.95], [-1840.61, -1036.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1789.71, -1041.78], [-1779.24, -1042.09], [-1779.37, -1046.41], [-1777.78, -1046.46], [-1777.87, -1049.5], [-1779.45, -1049.45], [-1779.58, -1053.73], [-1783.92, -1053.59], [-1783.93, -1054.15], [-1790.07, -1053.97], [-1789.97, -1050.47], [-1791.23, -1050.44], [-1791.04, -1044.02], [-1789.78, -1044.05], [-1789.71, -1041.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1748.52, -1186.4], [-1748.54, -1187.08], [-1750.24, -1187.01], [-1750.44, -1192.45], [-1748.75, -1192.52], [-1748.78, -1193.45], [-1744.52, -1193.6], [-1744.55, -1194.52], [-1737.51, -1194.79], [-1737.48, -1193.88], [-1735.94, -1193.94], [-1735.73, -1188.63], [-1736.66, -1188.6], [-1736.6, -1187.15], [-1739.36, -1187.04], [-1739.35, -1186.75], [-1748.52, -1186.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1830.3, -1073.86], [-1824.29, -1073.99], [-1824.28, -1073.46], [-1817.56, -1073.6], [-1817.65, -1077.52], [-1816.56, -1077.54], [-1816.58, -1078.65], [-1813.17, -1078.73], [-1813.26, -1082.88], [-1815.42, -1082.83], [-1815.45, -1084.4], [-1816.7, -1084.37], [-1816.75, -1086.44], [-1813.49, -1086.51], [-1813.54, -1089.33], [-1812.62, -1089.35], [-1812.72, -1093.7], [-1815.11, -1093.66], [-1815.16, -1095.87], [-1813.88, -1095.89], [-1813.94, -1098.94], [-1815.22, -1098.91], [-1815.26, -1100.83], [-1813.0, -1100.89], [-1813.1, -1105.22], [-1816.09, -1105.15], [-1816.12, -1105.95], [-1822.83, -1105.81], [-1822.81, -1105.03], [-1829.76, -1104.88], [-1829.44, -1090.16], [-1830.65, -1090.13], [-1830.3, -1073.86]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.346, "pop": 173, "jobs": 0}}, {"shape": {"outer": [[-1711.2, -1017.66], [-1700.92, -1018.08], [-1702.29, -1051.59], [-1712.56, -1051.17], [-1711.2, -1017.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-1691.89, -1018.35], [-1681.29, -1018.71], [-1682.41, -1052.3], [-1693.01, -1051.95], [-1691.89, -1018.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.286, "pop": 143, "jobs": 0}}, {"shape": {"outer": [[-1821.42, -1026.86], [-1821.73, -1037.8], [-1806.07, -1038.25], [-1805.75, -1027.31], [-1821.42, -1026.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1725.55, -1187.22], [-1719.79, -1187.39], [-1719.95, -1193.22], [-1725.73, -1193.04], [-1725.55, -1187.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1804.75, -1009.33], [-1797.97, -1009.52], [-1798.15, -1015.66], [-1804.92, -1015.47], [-1804.75, -1009.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1790.61, -1080.77], [-1790.91, -1090.49], [-1777.99, -1090.89], [-1777.7, -1081.17], [-1790.61, -1080.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1807.9, -1041.25], [-1808.06, -1048.25], [-1798.83, -1048.46], [-1798.67, -1041.45], [-1807.9, -1041.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1748.35, -1166.6], [-1740.65, -1166.86], [-1740.72, -1169.09], [-1735.36, -1169.27], [-1735.67, -1178.73], [-1748.73, -1178.31], [-1748.35, -1166.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1795.25, -1095.28], [-1795.68, -1105.78], [-1779.81, -1106.43], [-1779.38, -1095.94], [-1789.59, -1095.51], [-1789.53, -1093.93], [-1794.72, -1093.72], [-1794.78, -1095.31], [-1795.25, -1095.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-1870.65, -1027.52], [-1871.05, -1045.37], [-1858.46, -1045.64], [-1858.06, -1027.79], [-1859.18, -1027.77], [-1858.98, -1018.22], [-1867.38, -1018.03], [-1867.59, -1027.59], [-1870.65, -1027.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.244, "pop": 122, "jobs": 0}}, {"shape": {"outer": [[-1786.98, -1024.65], [-1776.81, -1025.06], [-1777.14, -1033.28], [-1778.54, -1033.23], [-1778.62, -1035.14], [-1780.07, -1035.09], [-1780.24, -1039.19], [-1787.55, -1038.91], [-1786.98, -1024.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1822.55, -1010.99], [-1813.83, -1011.28], [-1813.86, -1012.11], [-1811.48, -1012.19], [-1811.64, -1017.14], [-1814.02, -1017.06], [-1814.28, -1025.31], [-1823.01, -1025.03], [-1822.55, -1010.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1790.71, -1009.11], [-1790.77, -1011.96], [-1793.36, -1011.9], [-1793.44, -1015.32], [-1790.86, -1015.38], [-1790.91, -1017.78], [-1776.76, -1018.11], [-1776.56, -1009.43], [-1790.71, -1009.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1788.89, -1065.18], [-1776.23, -1065.37], [-1776.41, -1077.63], [-1779.8, -1077.57], [-1779.81, -1079.02], [-1785.49, -1078.93], [-1785.47, -1077.49], [-1789.07, -1077.43], [-1788.89, -1065.18]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2884.02, -1577.95], [-2888.93, -1582.07], [-2884.76, -1586.99], [-2880.45, -1583.37], [-2871.8, -1593.6], [-2864.05, -1587.1], [-2873.91, -1575.43], [-2881.08, -1581.45], [-2884.02, -1577.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2897.44, -1593.14], [-2889.04, -1586.2], [-2881.02, -1595.81], [-2883.81, -1598.12], [-2881.39, -1601.01], [-2887.0, -1605.65], [-2897.44, -1593.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2872.75, -1603.46], [-2878.94, -1608.94], [-2874.17, -1614.29], [-2867.98, -1608.81], [-2872.75, -1603.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2901.14, -1595.23], [-2913.25, -1605.55], [-2907.11, -1612.7], [-2895.01, -1602.38], [-2901.14, -1595.23]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2929.06, -1616.81], [-2919.24, -1608.92], [-2914.08, -1615.31], [-2916.5, -1617.24], [-2914.53, -1619.67], [-2918.75, -1623.06], [-2920.47, -1620.95], [-2923.66, -1623.5], [-2929.06, -1616.81]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-2899.6, -1549.13], [-2901.4, -1550.57], [-2899.78, -1552.57], [-2903.71, -1555.74], [-2905.6, -1553.4], [-2907.42, -1554.86], [-2915.72, -1544.65], [-2908.18, -1538.56], [-2899.6, -1549.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2921.56, -1567.28], [-2910.41, -1557.06], [-2916.26, -1550.72], [-2927.4, -1560.94], [-2921.56, -1567.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2932.95, -1575.8], [-2926.81, -1570.74], [-2931.76, -1564.77], [-2933.76, -1566.41], [-2934.89, -1565.05], [-2939.3, -1568.68], [-2937.84, -1570.44], [-2939.62, -1571.9], [-2932.95, -1575.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2949.26, -1574.04], [-2940.28, -1584.31], [-2947.58, -1590.65], [-2956.56, -1580.38], [-2949.26, -1574.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2962.7, -1570.09], [-2970.58, -1576.5], [-2966.15, -1581.91], [-2958.26, -1575.5], [-2962.7, -1570.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2968.61, -1592.43], [-2960.59, -1601.7], [-2951.62, -1593.99], [-2959.65, -1584.72], [-2968.61, -1592.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2974.98, -1593.01], [-2983.75, -1600.49], [-2976.98, -1608.38], [-2968.21, -1600.91], [-2974.98, -1593.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2839.35, -1628.18], [-2834.01, -1622.86], [-2844.37, -1612.5], [-2849.72, -1617.82], [-2839.35, -1628.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2846.93, -1548.14], [-2853.78, -1554.99], [-2842.61, -1566.1], [-2835.76, -1559.25], [-2846.93, -1548.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2812.76, -1585.08], [-2821.34, -1592.96], [-2811.55, -1603.55], [-2802.98, -1595.67], [-2812.76, -1585.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2799.16, -1584.04], [-2794.11, -1589.95], [-2784.33, -1581.65], [-2793.54, -1570.87], [-2798.32, -1574.91], [-2794.15, -1579.8], [-2799.16, -1584.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2818.62, -1576.06], [-2814.39, -1580.97], [-2819.32, -1585.18], [-2823.55, -1580.27], [-2818.62, -1576.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2812.11, -1570.14], [-2817.28, -1574.78], [-2812.62, -1579.92], [-2807.46, -1575.28], [-2812.11, -1570.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2875.58, -1511.93], [-2882.09, -1517.59], [-2873.63, -1527.23], [-2872.29, -1526.06], [-2870.81, -1527.75], [-2867.14, -1524.55], [-2869.31, -1522.09], [-2867.82, -1520.79], [-2875.58, -1511.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[564.37, 1145.04], [553.65, 1135.35], [556.0, 1132.77], [550.17, 1127.5], [547.74, 1130.18], [544.69, 1127.41], [519.81, 1154.74], [523.01, 1157.63], [520.93, 1159.92], [526.58, 1165.03], [528.44, 1163.0], [531.68, 1165.93], [530.64, 1167.07], [533.73, 1169.87], [534.77, 1168.72], [562.87, 1194.13], [574.15, 1181.75], [567.53, 1175.78], [565.95, 1177.52], [558.13, 1170.45], [562.84, 1165.27], [559.92, 1162.62], [559.52, 1163.06], [558.09, 1161.76], [557.57, 1162.32], [556.16, 1161.03], [554.56, 1162.79], [551.08, 1159.63], [564.37, 1145.04]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1016}}, {"shape": {"outer": [[604.75, 1046.84], [617.66, 1058.78], [613.26, 1063.5], [600.36, 1051.56], [604.75, 1046.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[609.41, 1041.67], [622.2, 1053.62], [626.65, 1048.9], [613.85, 1036.94], [609.41, 1041.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[606.62, 1066.08], [603.56, 1063.26], [607.74, 1058.77], [610.8, 1061.61], [606.62, 1066.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[591.82, 1079.42], [601.2, 1069.33], [597.27, 1065.71], [597.05, 1065.95], [595.4, 1064.42], [592.34, 1067.71], [591.37, 1066.83], [588.81, 1069.58], [587.94, 1068.78], [584.4, 1072.58], [589.8, 1077.55], [588.91, 1078.51], [590.71, 1080.17], [591.6, 1079.21], [591.82, 1079.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[600.64, 1087.34], [612.28, 1074.88], [606.24, 1069.27], [594.59, 1081.73], [600.64, 1087.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[604.9, 1095.3], [600.43, 1091.15], [616.19, 1074.29], [624.02, 1081.57], [610.27, 1096.28], [606.9, 1093.15], [604.9, 1095.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[631.92, 1091.75], [624.69, 1085.17], [611.76, 1099.24], [618.57, 1105.46], [620.47, 1103.39], [620.88, 1103.77], [631.92, 1091.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[629.08, 1113.45], [626.26, 1110.86], [626.6, 1110.5], [623.88, 1108.0], [625.69, 1106.06], [624.97, 1105.4], [629.8, 1100.19], [630.04, 1100.42], [633.06, 1097.17], [636.27, 1100.13], [638.42, 1097.83], [641.5, 1100.66], [639.36, 1102.98], [639.6, 1103.21], [630.38, 1113.14], [629.84, 1112.64], [629.08, 1113.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[417.96, 1052.72], [409.64, 1061.64], [408.8, 1061.87], [407.53, 1063.08], [407.57, 1065.03], [408.54, 1065.93], [407.06, 1067.52], [412.07, 1072.17], [413.96, 1070.14], [414.25, 1070.41], [424.82, 1059.06], [417.96, 1052.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[423.57, 1078.39], [422.51, 1077.41], [420.4, 1079.68], [415.05, 1074.73], [416.73, 1072.93], [415.95, 1072.19], [425.2, 1062.27], [432.39, 1068.92], [423.57, 1078.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[436.43, 1118.63], [444.18, 1109.38], [437.0, 1103.39], [432.45, 1108.8], [431.96, 1108.4], [428.75, 1112.23], [436.43, 1118.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[452.09, 1114.08], [459.63, 1106.22], [446.16, 1093.41], [438.62, 1101.28], [452.09, 1114.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[462.58, 1095.03], [460.61, 1097.17], [460.92, 1097.45], [457.64, 1100.97], [454.58, 1098.16], [454.23, 1098.54], [447.61, 1092.44], [447.9, 1092.13], [446.36, 1090.71], [448.19, 1088.74], [448.9, 1089.4], [451.81, 1086.26], [454.74, 1088.95], [455.31, 1088.35], [462.58, 1095.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[437.22, 1062.35], [431.76, 1057.46], [428.83, 1060.71], [434.29, 1065.6], [437.22, 1062.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[443.12, 1053.52], [431.37, 1043.06], [425.2, 1049.94], [436.82, 1060.28], [437.15, 1059.92], [439.32, 1061.86], [444.72, 1055.84], [442.67, 1054.01], [443.12, 1053.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[445.56, 1055.12], [450.81, 1049.24], [446.6, 1045.51], [447.02, 1045.04], [443.04, 1041.5], [442.65, 1041.95], [439.47, 1039.13], [434.18, 1045.04], [445.56, 1055.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[377.17, 1039.86], [370.28, 1033.39], [379.05, 1024.13], [380.83, 1025.82], [381.72, 1024.88], [386.82, 1029.68], [377.17, 1039.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[396.74, 954.41], [388.16, 946.55], [394.59, 939.6], [403.15, 947.46], [396.74, 954.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[407.45, 977.4], [415.41, 968.71], [412.54, 966.1], [414.46, 964.01], [410.24, 960.18], [400.37, 970.98], [407.45, 977.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[393.54, 958.26], [387.23, 965.12], [375.18, 954.1], [378.25, 950.76], [377.51, 950.08], [380.74, 946.56], [386.34, 951.67], [386.6, 951.39], [390.7, 955.13], [390.44, 955.42], [393.54, 958.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2043.8, -1026.43], [-2034.83, -1026.6], [-2034.84, -1027.15], [-2032.45, -1027.2], [-2032.58, -1034.17], [-2034.94, -1034.12], [-2034.96, -1034.88], [-2043.96, -1034.71], [-2043.89, -1030.96], [-2045.76, -1030.93], [-2045.7, -1028.04], [-2043.83, -1028.09], [-2043.8, -1026.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2008.34, -1040.32], [-2008.59, -1047.84], [-1997.07, -1048.22], [-1996.82, -1040.71], [-2008.34, -1040.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1996.31, -1016.3], [-2004.35, -1016.07], [-2004.6, -1024.5], [-1996.55, -1024.74], [-1996.31, -1016.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1970.29, -1034.12], [-1977.34, -1033.92], [-1977.72, -1047.3], [-1970.68, -1047.5], [-1970.29, -1034.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1967.84, -1027.87], [-1964.23, -1028.0], [-1964.41, -1032.77], [-1968.03, -1032.63], [-1967.84, -1027.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1971.56, -1021.28], [-1968.18, -1021.38], [-1968.33, -1026.76], [-1971.72, -1026.67], [-1971.56, -1021.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1977.97, -1017.76], [-1970.12, -1017.95], [-1969.87, -1007.72], [-1977.72, -1007.53], [-1977.97, -1017.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2043.87, -1037.54], [-2043.95, -1046.3], [-2034.6, -1046.39], [-2034.52, -1037.62], [-2043.87, -1037.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2003.36, -1004.85], [-2003.63, -1014.11], [-1987.64, -1014.58], [-1987.36, -1005.31], [-2003.36, -1004.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1966.21, -1010.11], [-1966.46, -1020.43], [-1956.39, -1020.66], [-1956.25, -1014.65], [-1955.56, -1014.66], [-1955.46, -1010.36], [-1966.21, -1010.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1966.34, -1035.99], [-1966.62, -1048.19], [-1959.24, -1048.35], [-1958.97, -1036.16], [-1960.35, -1036.13], [-1960.32, -1034.55], [-1964.84, -1034.44], [-1964.88, -1036.02], [-1966.34, -1035.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2046.21, -1004.22], [-2046.25, -1005.91], [-2047.69, -1005.87], [-2047.82, -1011.15], [-2046.38, -1011.18], [-2046.43, -1013.31], [-2033.43, -1013.62], [-2033.21, -1004.54], [-2046.21, -1004.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2004.87, -1028.06], [-2004.91, -1029.47], [-2006.58, -1029.43], [-2006.74, -1036.12], [-2005.07, -1036.17], [-2005.09, -1036.91], [-1992.52, -1037.22], [-1992.31, -1028.36], [-2004.87, -1028.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2044.89, -1015.26], [-2044.93, -1016.99], [-2047.57, -1016.93], [-2047.68, -1021.18], [-2045.03, -1021.24], [-2045.09, -1023.51], [-2033.56, -1023.79], [-2033.37, -1015.54], [-2044.89, -1015.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[638.83, 1051.49], [641.59, 1048.47], [642.06, 1048.9], [649.0, 1041.33], [648.75, 1041.11], [650.35, 1039.36], [643.08, 1032.74], [631.78, 1045.09], [638.83, 1051.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[643.4, 1067.22], [636.91, 1061.24], [645.29, 1052.2], [653.41, 1059.68], [647.45, 1066.11], [645.83, 1064.61], [643.4, 1067.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[658.82, 1082.42], [650.58, 1075.0], [655.86, 1069.18], [655.03, 1068.44], [656.45, 1066.86], [657.29, 1067.62], [659.34, 1065.36], [667.57, 1072.78], [658.82, 1082.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[678.67, 1079.15], [674.6, 1075.35], [679.63, 1070.01], [679.04, 1069.47], [683.31, 1064.92], [689.39, 1070.6], [685.44, 1074.8], [684.02, 1073.47], [678.67, 1079.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[689.23, 1086.85], [684.46, 1082.52], [685.6, 1081.25], [683.49, 1079.33], [690.22, 1071.96], [697.12, 1078.23], [689.23, 1086.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[674.59, 1079.79], [668.3, 1086.72], [679.22, 1096.55], [685.5, 1089.61], [674.59, 1079.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[672.56, 1104.73], [678.87, 1097.9], [667.26, 1087.24], [660.96, 1094.07], [672.56, 1104.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[663.51, 1113.1], [668.89, 1106.61], [659.48, 1098.85], [654.09, 1105.33], [663.51, 1113.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[642.96, 1107.98], [645.54, 1110.27], [645.86, 1109.92], [649.68, 1113.3], [641.49, 1122.46], [638.25, 1119.58], [637.62, 1120.28], [634.47, 1117.47], [642.96, 1107.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[641.88, 1123.87], [648.01, 1117.31], [654.8, 1123.6], [648.56, 1130.29], [644.88, 1126.89], [644.99, 1126.76], [641.88, 1123.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[684.8, 1168.97], [696.66, 1156.01], [703.29, 1162.04], [691.96, 1174.41], [691.08, 1173.6], [690.54, 1174.19], [684.8, 1168.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[677.88, 1161.81], [682.81, 1166.41], [692.35, 1156.28], [687.42, 1151.68], [677.88, 1161.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[708.66, 1185.33], [716.93, 1176.27], [710.78, 1170.7], [708.21, 1173.52], [708.01, 1173.34], [704.7, 1176.97], [704.89, 1177.15], [702.51, 1179.76], [708.66, 1185.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[710.5, 1170.19], [704.27, 1176.8], [696.89, 1169.88], [703.12, 1163.27], [710.5, 1170.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[717.89, 1190.82], [713.55, 1186.93], [723.62, 1175.77], [724.5, 1176.58], [725.29, 1175.71], [728.73, 1178.81], [717.89, 1190.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[724.9, 1196.43], [719.78, 1191.62], [721.09, 1190.25], [720.64, 1189.83], [729.78, 1180.18], [735.35, 1185.42], [730.54, 1190.48], [730.9, 1190.81], [726.56, 1195.38], [726.21, 1195.05], [724.9, 1196.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[733.15, 1204.17], [745.17, 1190.72], [740.81, 1186.86], [728.79, 1200.3], [733.15, 1204.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[736.21, 1212.02], [731.65, 1207.97], [740.07, 1198.56], [741.09, 1199.46], [742.35, 1198.05], [744.95, 1200.35], [743.68, 1201.77], [744.63, 1202.61], [736.21, 1212.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[670.75, 1143.17], [678.43, 1149.92], [674.22, 1154.69], [666.52, 1147.94], [670.75, 1143.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[676.39, 1136.57], [680.96, 1131.67], [684.85, 1135.26], [685.53, 1134.53], [690.86, 1139.44], [685.61, 1145.08], [676.39, 1136.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[684.35, 1130.38], [690.78, 1123.31], [700.69, 1132.27], [694.26, 1139.34], [684.35, 1130.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[690.66, 1121.27], [694.45, 1117.08], [695.05, 1117.62], [696.28, 1116.26], [705.96, 1124.99], [700.94, 1130.53], [690.66, 1121.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[698.23, 1113.08], [703.31, 1107.54], [711.33, 1114.85], [706.24, 1120.38], [698.23, 1113.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[715.17, 1093.67], [721.23, 1099.38], [714.34, 1106.66], [708.27, 1100.95], [715.17, 1093.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[721.72, 1123.87], [723.34, 1122.02], [724.24, 1122.8], [732.98, 1112.89], [730.33, 1110.57], [731.19, 1109.59], [728.86, 1107.55], [727.99, 1108.53], [726.95, 1107.61], [716.59, 1119.39], [721.72, 1123.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[723.77, 1126.63], [729.69, 1120.19], [730.15, 1120.61], [733.66, 1116.79], [739.29, 1121.93], [736.54, 1124.92], [737.03, 1125.38], [733.04, 1129.72], [732.55, 1129.26], [729.57, 1132.5], [724.66, 1128.02], [724.95, 1127.7], [723.77, 1126.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[732.02, 1144.11], [746.27, 1128.48], [740.44, 1123.21], [726.19, 1138.84], [732.02, 1144.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[750.57, 1154.44], [744.05, 1148.31], [751.85, 1140.08], [752.15, 1140.35], [755.14, 1137.19], [761.35, 1143.05], [750.57, 1154.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[849.25, 1176.27], [841.53, 1169.41], [854.04, 1155.41], [861.77, 1162.26], [849.25, 1176.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[837.93, 1168.21], [848.57, 1156.24], [841.9, 1150.36], [831.26, 1162.34], [837.93, 1168.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[830.21, 1157.93], [838.28, 1148.73], [837.78, 1148.29], [839.37, 1146.48], [836.18, 1143.7], [835.64, 1144.32], [832.76, 1141.82], [831.66, 1143.07], [831.33, 1142.78], [823.31, 1151.93], [824.79, 1153.23], [823.73, 1154.45], [825.6, 1156.08], [826.68, 1154.86], [830.21, 1157.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[821.86, 1151.29], [821.55, 1151.01], [821.02, 1151.61], [819.6, 1150.38], [820.13, 1149.77], [814.91, 1145.22], [821.27, 1137.97], [821.78, 1138.43], [829.11, 1130.08], [835.56, 1135.69], [821.86, 1151.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-1669.32, -1672.92], [-1659.77, -1673.23], [-1660.23, -1687.97], [-1669.78, -1687.67], [-1669.32, -1672.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1760.4, -1560.27], [-1754.66, -1560.39], [-1754.86, -1569.85], [-1761.83, -1569.71], [-1761.69, -1562.86], [-1760.46, -1562.89], [-1760.4, -1560.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1745.58, -1550.95], [-1745.77, -1556.14], [-1739.6, -1556.37], [-1739.41, -1551.19], [-1745.58, -1550.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1761.66, -1547.77], [-1751.84, -1548.0], [-1752.06, -1557.63], [-1761.89, -1557.4], [-1761.66, -1547.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1710.83, -1581.68], [-1711.19, -1590.96], [-1721.4, -1590.57], [-1721.04, -1581.29], [-1710.83, -1581.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1724.1, -1564.87], [-1724.44, -1577.99], [-1715.53, -1578.21], [-1715.2, -1565.1], [-1724.1, -1564.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2005.83, -1729.83], [-1996.12, -1730.12], [-1996.36, -1738.34], [-2006.08, -1738.05], [-2005.83, -1729.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1987.42, -1732.56], [-1983.75, -1732.64], [-1983.95, -1741.31], [-1987.61, -1741.23], [-1987.42, -1732.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1981.18, -1730.69], [-1981.45, -1737.68], [-1978.79, -1737.77], [-1978.8, -1737.99], [-1969.35, -1738.35], [-1969.03, -1730.07], [-1978.49, -1729.71], [-1978.53, -1730.79], [-1981.18, -1730.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2005.5, -1741.91], [-2005.7, -1750.28], [-1992.22, -1750.62], [-1992.02, -1742.24], [-2005.5, -1741.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2002.67, -1797.21], [-2002.91, -1805.59], [-1979.7, -1806.26], [-1979.46, -1797.88], [-2002.67, -1797.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2004.52, -1754.21], [-1996.55, -1754.53], [-1996.51, -1753.54], [-1987.72, -1753.88], [-1987.76, -1754.87], [-1979.97, -1755.17], [-1980.35, -1764.69], [-1982.4, -1764.61], [-1982.63, -1770.71], [-1980.58, -1770.79], [-1980.98, -1780.87], [-1983.08, -1780.79], [-1983.2, -1783.61], [-1981.09, -1783.69], [-1981.31, -1789.33], [-1984.34, -1789.21], [-1984.61, -1796.02], [-2001.97, -1795.34], [-2001.7, -1788.53], [-2005.86, -1788.37], [-2005.63, -1782.53], [-2003.79, -1782.61], [-2003.68, -1780.05], [-2005.53, -1779.98], [-2005.31, -1774.26], [-2003.44, -1774.34], [-2003.36, -1772.38], [-2005.23, -1772.31], [-2004.83, -1762.08], [-2003.09, -1762.15], [-2003.01, -1760.3], [-2004.75, -1760.23], [-2004.52, -1754.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.6, "pop": 0, "jobs": 600}}, {"shape": {"outer": [[-1965.38, -1733.6], [-1965.64, -1739.22], [-1966.26, -1739.19], [-1966.7, -1748.77], [-1966.08, -1748.8], [-1966.4, -1755.74], [-1956.26, -1756.2], [-1956.19, -1754.48], [-1951.49, -1754.7], [-1951.58, -1756.42], [-1945.14, -1756.71], [-1945.04, -1754.59], [-1935.98, -1755.01], [-1936.08, -1757.13], [-1926.01, -1757.59], [-1924.99, -1735.45], [-1929.54, -1735.24], [-1929.46, -1733.41], [-1939.28, -1732.96], [-1939.37, -1734.79], [-1942.96, -1734.62], [-1942.88, -1732.83], [-1949.0, -1732.54], [-1949.08, -1734.35], [-1951.05, -1734.26], [-1950.97, -1732.37], [-1961.0, -1731.91], [-1961.09, -1733.8], [-1965.38, -1733.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.738, "pop": 369, "jobs": 0}}, {"shape": {"outer": [[-1630.98, -1460.59], [-1631.12, -1471.91], [-1621.34, -1472.02], [-1621.21, -1460.7], [-1623.11, -1460.68], [-1623.09, -1458.37], [-1628.2, -1458.3], [-1628.21, -1459.51], [-1630.15, -1459.49], [-1630.16, -1460.6], [-1630.98, -1460.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2562.26, 2181.35], [2555.97, 2171.31], [2548.79, 2176.29], [2552.22, 2181.75], [2556.37, 2185.44], [2562.26, 2181.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.063, "pop": 0, "jobs": 63}}, {"shape": {"outer": [[2064.6, 757.21], [2070.2, 762.27], [2072.9, 759.46], [2074.79, 757.5], [2078.48, 753.66], [2072.88, 748.6], [2064.6, 757.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2060.21, 760.49], [2053.75, 754.85], [2065.94, 741.71], [2069.87, 745.52], [2068.43, 747.03], [2069.15, 747.69], [2070.07, 748.53], [2070.63, 749.04], [2060.21, 760.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2056.76, 767.01], [2060.79, 762.54], [2065.16, 766.61], [2061.14, 771.13], [2056.76, 767.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2049.17, 743.82], [2053.94, 748.15], [2053.3, 748.81], [2055.26, 750.61], [2063.27, 742.22], [2056.27, 736.05], [2049.17, 743.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2040.78, 740.73], [2042.86, 742.47], [2044.98, 740.23], [2047.99, 742.65], [2056.63, 733.1], [2050.18, 727.24], [2048.62, 728.89], [2041.38, 736.58], [2043.11, 738.27], [2040.78, 740.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2033.79, 730.91], [2040.68, 737.14], [2048.62, 728.89], [2047.86, 728.23], [2049.03, 727.06], [2043.13, 721.4], [2041.75, 722.8], [2041.31, 722.43], [2033.79, 730.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2046.43, 759.48], [2058.43, 769.92], [2054.57, 773.86], [2053.28, 775.19], [2052.53, 775.94], [2041.15, 765.36], [2046.43, 759.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2033.06, 776.75], [2038.4, 770.79], [2049.5, 780.88], [2044.1, 786.77], [2033.06, 776.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2024.3, 802.18], [2031.01, 808.33], [2038.03, 800.72], [2035.78, 798.66], [2036.48, 797.91], [2032.01, 793.82], [2024.3, 802.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2016.22, 794.37], [2023.23, 800.6], [2030.28, 792.58], [2028.26, 790.82], [2029.13, 789.9], [2025.23, 786.36], [2024.25, 787.46], [2023.27, 786.6], [2016.22, 794.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2016.01, 791.35], [2020.98, 785.98], [2019.22, 784.14], [2021.0, 782.06], [2018.79, 780.24], [2020.56, 778.04], [2016.88, 775.06], [2007.86, 785.02], [2016.01, 791.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2007.98, 712.02], [2009.14, 710.73], [2009.75, 711.15], [2018.77, 701.48], [2011.32, 694.94], [2002.47, 704.72], [2002.98, 705.14], [2001.65, 706.54], [2007.98, 712.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1994.69, 697.97], [2002.03, 704.35], [2012.35, 692.9], [2005.18, 686.25], [1994.69, 697.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1953.24, 659.46], [1960.82, 651.45], [1958.01, 648.54], [1958.43, 647.98], [1953.27, 643.17], [1945.21, 651.95], [1953.24, 659.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1960.39, 673.03], [1967.97, 664.98], [1959.01, 656.95], [1951.26, 665.22], [1960.39, 673.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1914.42, 687.81], [1920.36, 693.04], [1919.2, 694.38], [1920.73, 696.24], [1916.22, 701.1], [1908.53, 693.86], [1914.42, 687.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1924.63, 681.64], [1929.08, 676.68], [1926.95, 674.78], [1927.96, 673.77], [1919.12, 666.07], [1914.5, 671.27], [1916.69, 673.17], [1916.11, 673.89], [1924.63, 681.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1920.46, 706.16], [1920.77, 705.65], [1919.82, 704.81], [1920.57, 704.03], [1919.39, 703.08], [1922.52, 699.73], [1923.52, 700.52], [1927.36, 696.93], [1934.09, 703.11], [1926.76, 710.82], [1924.46, 708.81], [1923.93, 709.32], [1920.46, 706.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1942.28, 726.49], [1948.67, 732.08], [1961.63, 717.35], [1960.85, 716.34], [1961.95, 715.1], [1958.31, 711.56], [1956.87, 713.13], [1955.48, 711.86], [1942.28, 726.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2048.26, -1370.3], [-2048.58, -1384.24], [-2042.12, -1384.52], [-2042.09, -1381.75], [-2038.28, -1381.77], [-2037.88, -1370.57], [-2048.26, -1370.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2357.0, -3143.59], [2350.96, -3139.5], [2356.05, -3132.06], [2362.09, -3136.16], [2357.0, -3143.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.042, "pop": 0, "jobs": 42}}, {"shape": {"outer": [[-2428.81, -1012.62], [-2427.76, -1011.73], [-2428.36, -1011.03], [-2424.83, -1008.04], [-2424.23, -1008.74], [-2421.68, -1006.58], [-2418.41, -1010.42], [-2416.37, -1008.69], [-2412.52, -1013.19], [-2414.53, -1014.9], [-2413.9, -1015.63], [-2420.22, -1020.98], [-2421.34, -1019.68], [-2422.17, -1020.39], [-2428.81, -1012.62]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2435.73, -992.58], [-2442.21, -998.16], [-2439.63, -1001.14], [-2440.99, -1002.3], [-2441.49, -1001.72], [-2442.65, -1002.71], [-2441.21, -1004.36], [-2440.45, -1003.71], [-2436.61, -1008.15], [-2428.38, -1001.07], [-2430.23, -998.93], [-2429.05, -997.92], [-2432.53, -993.9], [-2433.71, -994.91], [-2435.73, -992.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2146.53, -970.81], [-2146.55, -971.52], [-2148.73, -971.46], [-2148.92, -977.87], [-2146.73, -977.94], [-2146.75, -978.54], [-2137.19, -978.81], [-2136.93, -969.56], [-2145.34, -969.32], [-2145.38, -970.84], [-2146.53, -970.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2123.85, -1084.06], [-2132.69, -1083.81], [-2133.01, -1094.68], [-2124.16, -1094.93], [-2123.85, -1084.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2155.04, -1080.01], [-2151.22, -1080.1], [-2151.19, -1078.73], [-2146.81, -1078.85], [-2146.93, -1083.56], [-2133.33, -1083.9], [-2133.73, -1099.57], [-2155.52, -1099.01], [-2155.04, -1080.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-2151.79, -1069.32], [-2151.86, -1077.1], [-2140.5, -1077.22], [-2140.42, -1069.43], [-2151.79, -1069.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2150.71, -1060.58], [-2150.73, -1061.56], [-2152.68, -1061.54], [-2152.75, -1067.25], [-2150.79, -1067.27], [-2150.81, -1068.09], [-2147.6, -1068.13], [-2147.61, -1068.78], [-2141.25, -1068.85], [-2141.16, -1060.69], [-2150.71, -1060.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2148.36, -1034.55], [-2148.51, -1042.17], [-2144.84, -1042.26], [-2144.86, -1043.12], [-2139.12, -1043.24], [-2139.1, -1042.37], [-2137.8, -1042.39], [-2137.76, -1040.37], [-2136.61, -1040.39], [-2136.54, -1036.43], [-2137.68, -1036.39], [-2137.65, -1034.77], [-2148.36, -1034.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2150.58, -1023.65], [-2150.75, -1031.08], [-2137.11, -1031.4], [-2136.92, -1023.97], [-2150.58, -1023.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2147.81, -1013.13], [-2138.15, -1013.43], [-2138.41, -1021.76], [-2148.07, -1021.45], [-2148.05, -1020.75], [-2150.02, -1020.68], [-2149.8, -1013.66], [-2147.83, -1013.73], [-2147.81, -1013.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2147.44, -1003.69], [-2147.48, -1010.66], [-2136.44, -1010.72], [-2136.4, -1003.74], [-2147.44, -1003.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2188.47, -1023.18], [-2179.36, -1023.5], [-2179.65, -1031.71], [-2183.19, -1031.59], [-2183.24, -1033.08], [-2186.96, -1032.96], [-2186.9, -1031.46], [-2188.76, -1031.39], [-2188.47, -1023.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2187.89, -1012.97], [-2178.77, -1013.26], [-2178.87, -1016.43], [-2176.46, -1016.5], [-2176.6, -1020.58], [-2179.01, -1020.5], [-2179.02, -1021.04], [-2188.15, -1020.74], [-2188.1, -1019.35], [-2188.98, -1019.33], [-2188.78, -1013.31], [-2187.9, -1013.34], [-2187.89, -1012.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2187.31, -1002.39], [-2187.38, -1009.99], [-2178.86, -1010.07], [-2178.79, -1002.47], [-2187.31, -1002.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2186.97, -988.36], [-2182.43, -988.5], [-2182.38, -986.94], [-2178.5, -987.06], [-2178.55, -988.63], [-2177.72, -988.66], [-2178.01, -997.8], [-2187.26, -997.5], [-2186.97, -988.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2206.74, -1005.31], [-2201.02, -1012.22], [-2196.41, -1008.43], [-2197.74, -1006.83], [-2195.63, -1005.09], [-2197.07, -1003.36], [-2196.62, -1002.99], [-2199.57, -999.42], [-2206.74, -1005.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2202.85, -1018.06], [-2197.34, -1025.07], [-2194.87, -1023.14], [-2194.91, -1017.92], [-2197.87, -1014.17], [-2202.85, -1018.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2209.6, -1007.73], [-2216.11, -1013.5], [-2210.18, -1020.15], [-2203.67, -1014.38], [-2209.6, -1007.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2224.59, -1021.02], [-2218.68, -1027.87], [-2215.62, -1025.24], [-2214.46, -1026.6], [-2210.93, -1023.56], [-2218.0, -1015.37], [-2224.59, -1021.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2210.64, -1030.63], [-2214.41, -1033.83], [-2208.22, -1041.09], [-2207.16, -1040.19], [-2206.6, -1035.36], [-2210.64, -1030.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2216.71, -1044.07], [-2212.01, -1049.55], [-2206.74, -1045.07], [-2211.44, -1039.59], [-2216.71, -1044.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2239.52, -1033.67], [-2233.52, -1028.69], [-2226.87, -1036.68], [-2227.74, -1037.4], [-2226.42, -1038.99], [-2229.27, -1041.34], [-2230.59, -1039.75], [-2232.87, -1041.64], [-2239.52, -1033.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2244.4, -1033.25], [-2250.8, -1038.77], [-2241.95, -1048.97], [-2235.55, -1043.45], [-2244.4, -1033.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2259.87, -1050.07], [-2254.15, -1045.62], [-2248.52, -1052.79], [-2254.24, -1057.25], [-2259.87, -1050.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2272.26, -1060.98], [-2266.39, -1055.9], [-2258.15, -1065.34], [-2264.02, -1070.43], [-2272.26, -1060.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2251.44, -1074.6], [-2247.66, -1074.69], [-2247.64, -1073.57], [-2243.76, -1073.67], [-2243.79, -1074.79], [-2240.39, -1074.88], [-2240.91, -1094.42], [-2244.14, -1094.33], [-2244.17, -1095.71], [-2248.37, -1095.6], [-2248.34, -1094.22], [-2251.94, -1094.13], [-2251.44, -1074.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2253.82, -1077.91], [-2266.57, -1077.54], [-2267.04, -1093.66], [-2263.08, -1093.78], [-2263.12, -1095.22], [-2258.7, -1095.35], [-2258.66, -1093.91], [-2254.29, -1094.03], [-2253.82, -1077.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-2221.79, -942.07], [-2227.03, -946.63], [-2221.87, -952.51], [-2216.63, -947.96], [-2221.79, -942.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2214.39, -959.4], [-2208.74, -965.71], [-2201.72, -959.47], [-2207.36, -953.15], [-2214.39, -959.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2227.61, -962.98], [-2217.88, -974.46], [-2210.82, -968.53], [-2220.55, -957.03], [-2227.61, -962.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2231.5, -973.83], [-2229.27, -976.53], [-2231.38, -978.27], [-2228.37, -981.9], [-2220.25, -975.24], [-2225.49, -968.91], [-2231.5, -973.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2239.11, -951.09], [-2236.91, -953.59], [-2231.67, -949.02], [-2233.88, -946.52], [-2239.11, -951.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2243.83, -959.52], [-2237.31, -953.99], [-2232.45, -959.68], [-2238.96, -965.21], [-2243.83, -959.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2252.64, -967.7], [-2248.22, -972.75], [-2242.28, -967.59], [-2246.7, -962.54], [-2252.64, -967.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2243.07, -982.43], [-2235.92, -991.0], [-2228.12, -984.56], [-2235.29, -975.97], [-2243.07, -982.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2250.31, -989.45], [-2244.57, -996.09], [-2238.48, -990.86], [-2244.22, -984.23], [-2250.31, -989.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2259.23, -985.86], [-2266.57, -992.36], [-2254.92, -1005.43], [-2247.58, -998.94], [-2259.23, -985.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2279.95, -989.49], [-2275.17, -985.31], [-2270.57, -990.52], [-2275.34, -994.7], [-2279.95, -989.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2270.79, -1006.35], [-2263.85, -1000.2], [-2256.38, -1008.6], [-2262.65, -1014.14], [-2263.62, -1013.06], [-2264.29, -1013.65], [-2270.79, -1006.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2279.26, -1014.98], [-2273.71, -1021.53], [-2272.94, -1020.87], [-2271.4, -1022.67], [-2265.97, -1018.1], [-2267.5, -1016.29], [-2266.72, -1015.64], [-2272.26, -1009.09], [-2279.26, -1014.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2288.57, -1020.53], [-2281.59, -1028.58], [-2274.78, -1022.72], [-2281.76, -1014.67], [-2288.57, -1020.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2307.3, -1014.1], [-2302.63, -1010.14], [-2297.82, -1015.78], [-2302.5, -1019.74], [-2307.3, -1014.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2298.96, -1029.64], [-2292.44, -1023.91], [-2285.61, -1031.62], [-2286.24, -1032.18], [-2284.74, -1033.88], [-2290.15, -1038.65], [-2291.66, -1036.94], [-2292.13, -1037.35], [-2298.96, -1029.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2303.4, -1030.16], [-2309.83, -1035.59], [-2301.89, -1044.94], [-2299.95, -1043.3], [-2298.59, -1044.91], [-2294.1, -1041.1], [-2303.4, -1030.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2317.42, -1021.87], [-2312.07, -1017.2], [-2307.3, -1022.62], [-2312.66, -1027.29], [-2317.42, -1021.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2333.95, -1034.76], [-2330.95, -1032.15], [-2327.24, -1036.38], [-2330.24, -1039.0], [-2333.95, -1034.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2318.8, -1043.06], [-2311.97, -1037.37], [-2303.93, -1046.92], [-2306.16, -1048.78], [-2306.4, -1050.29], [-2309.07, -1052.52], [-2310.75, -1052.62], [-2318.8, -1043.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2330.01, -1032.07], [-2326.29, -1036.3], [-2321.58, -1032.19], [-2325.31, -1027.96], [-2330.01, -1032.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2345.62, -1042.83], [-2338.24, -1036.57], [-2336.42, -1038.69], [-2334.48, -1037.03], [-2331.84, -1040.12], [-2333.78, -1041.76], [-2333.35, -1042.26], [-2340.73, -1048.54], [-2345.62, -1042.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2328.84, -1061.67], [-2323.86, -1067.36], [-2316.47, -1060.92], [-2321.44, -1055.24], [-2328.84, -1061.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2331.08, -1046.57], [-2337.69, -1052.13], [-2331.8, -1059.08], [-2325.19, -1053.54], [-2327.09, -1051.29], [-2325.71, -1050.13], [-2328.28, -1047.09], [-2329.66, -1048.25], [-2331.08, -1046.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2433.17, -1074.55], [-2425.05, -1084.02], [-2418.35, -1078.32], [-2426.47, -1068.84], [-2426.97, -1069.27], [-2428.17, -1067.88], [-2433.8, -1072.67], [-2432.61, -1074.08], [-2433.17, -1074.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2424.39, -1064.8], [-2417.88, -1059.23], [-2409.94, -1068.45], [-2416.46, -1074.02], [-2424.39, -1064.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2415.31, -1055.96], [-2408.32, -1064.28], [-2400.4, -1057.69], [-2400.89, -1057.1], [-2398.25, -1054.91], [-2403.09, -1049.15], [-2410.92, -1055.68], [-2412.59, -1053.7], [-2415.31, -1055.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2386.32, -1100.36], [-2379.46, -1108.19], [-2388.43, -1115.99], [-2395.93, -1107.43], [-2392.57, -1104.5], [-2391.92, -1105.23], [-2386.32, -1100.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2384.23, -1079.65], [-2380.5, -1076.63], [-2376.7, -1081.3], [-2380.43, -1084.31], [-2384.23, -1079.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2387.68, -1092.65], [-2380.44, -1086.45], [-2366.91, -1102.13], [-2374.14, -1108.34], [-2387.68, -1092.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2358.08, -1135.7], [-2351.94, -1143.1], [-2341.92, -1134.84], [-2343.08, -1133.44], [-2342.47, -1132.93], [-2345.77, -1128.95], [-2343.48, -1127.06], [-2347.43, -1122.3], [-2350.53, -1124.84], [-2349.04, -1126.64], [-2355.09, -1131.62], [-2354.3, -1132.58], [-2358.08, -1135.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2339.33, -1125.42], [-2335.56, -1125.54], [-2335.49, -1123.54], [-2331.89, -1123.65], [-2331.95, -1125.65], [-2328.47, -1125.75], [-2328.78, -1135.93], [-2339.65, -1135.59], [-2339.33, -1125.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2368.74, -1078.89], [-2368.48, -1079.2], [-2370.01, -1080.5], [-2366.96, -1084.07], [-2366.59, -1083.76], [-2364.34, -1086.39], [-2356.87, -1080.07], [-2357.45, -1079.39], [-2355.85, -1078.04], [-2358.57, -1074.84], [-2360.18, -1076.2], [-2362.43, -1073.55], [-2368.74, -1078.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2371.17, -1077.88], [-2375.78, -1072.41], [-2368.62, -1066.4], [-2364.01, -1071.87], [-2371.17, -1077.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2397.23, -1047.04], [-2394.44, -1050.3], [-2394.95, -1050.74], [-2390.81, -1055.57], [-2390.29, -1055.13], [-2388.25, -1057.5], [-2382.01, -1052.19], [-2384.02, -1049.85], [-2383.25, -1049.19], [-2387.8, -1043.88], [-2388.19, -1044.2], [-2390.59, -1041.4], [-2390.84, -1041.6], [-2392.27, -1039.94], [-2398.51, -1045.25], [-2397.08, -1046.91], [-2397.23, -1047.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2118.86, -928.54], [-2119.18, -942.28], [-2107.5, -942.57], [-2107.17, -928.82], [-2118.86, -928.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2069.06, -927.39], [-2062.86, -927.59], [-2063.13, -935.87], [-2069.33, -935.66], [-2069.06, -927.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2077.78, -928.0], [-2085.59, -927.82], [-2085.61, -928.82], [-2086.51, -928.81], [-2086.72, -937.39], [-2084.32, -937.45], [-2084.44, -942.35], [-2077.57, -942.51], [-2077.38, -934.36], [-2077.93, -934.35], [-2077.78, -928.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2100.68, -927.38], [-2093.14, -927.56], [-2093.49, -941.83], [-2101.03, -941.65], [-2100.86, -934.83], [-2101.77, -934.8], [-2101.66, -930.67], [-2100.77, -930.7], [-2100.68, -927.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2125.57, -970.01], [-2121.82, -970.17], [-2122.11, -976.49], [-2125.86, -976.32], [-2125.57, -970.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2120.65, -973.87], [-2117.32, -973.97], [-2117.35, -975.25], [-2112.35, -975.39], [-2112.01, -963.4], [-2120.35, -963.16], [-2120.65, -973.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2108.6, -961.28], [-2101.16, -961.53], [-2101.3, -965.79], [-2100.47, -965.83], [-2100.81, -976.49], [-2105.15, -976.35], [-2105.13, -975.61], [-2109.06, -975.48], [-2108.6, -961.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2097.31, -966.55], [-2097.55, -976.28], [-2095.48, -976.33], [-2095.53, -978.33], [-2091.05, -978.45], [-2091.0, -976.45], [-2089.08, -976.49], [-2088.85, -966.76], [-2091.37, -966.7], [-2091.27, -962.65], [-2095.59, -962.53], [-2095.69, -966.6], [-2097.31, -966.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2089.93, -956.65], [-2086.62, -956.81], [-2086.9, -962.46], [-2090.21, -962.3], [-2089.93, -956.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2086.39, -964.43], [-2085.84, -964.44], [-2085.81, -961.97], [-2079.82, -962.06], [-2079.93, -969.35], [-2076.94, -969.39], [-2077.06, -977.28], [-2082.1, -977.21], [-2082.08, -976.0], [-2083.88, -975.99], [-2083.89, -976.67], [-2086.57, -976.64], [-2086.39, -964.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2074.25, -969.48], [-2074.41, -977.21], [-2070.85, -977.28], [-2070.85, -977.85], [-2068.89, -977.89], [-2068.88, -977.33], [-2065.92, -977.39], [-2065.75, -969.67], [-2070.67, -969.56], [-2070.62, -967.41], [-2073.83, -967.34], [-2073.87, -969.49], [-2074.25, -969.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2062.56, -967.96], [-2055.5, -968.04], [-2055.62, -978.98], [-2062.68, -978.91], [-2062.56, -967.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2046.35, -972.03], [-2046.47, -981.18], [-2033.31, -981.36], [-2033.19, -972.19], [-2046.35, -972.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2034.41, -960.29], [-2034.49, -967.91], [-2046.08, -967.78], [-2046.0, -960.17], [-2034.41, -960.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2062.93, -952.66], [-2063.05, -958.58], [-2055.62, -958.74], [-2055.5, -952.81], [-2062.93, -952.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2045.78, -947.96], [-2045.82, -949.34], [-2047.32, -949.31], [-2047.38, -952.3], [-2045.87, -952.34], [-2045.95, -956.46], [-2034.04, -956.68], [-2033.88, -948.18], [-2045.78, -947.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2051.54, -937.1], [-2051.77, -944.7], [-2037.08, -945.14], [-2036.86, -937.54], [-2041.55, -937.41], [-2041.54, -937.05], [-2047.16, -936.88], [-2047.17, -937.24], [-2051.54, -937.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2051.59, -926.24], [-2051.62, -927.12], [-2053.01, -927.08], [-2053.12, -931.05], [-2051.74, -931.09], [-2051.82, -933.97], [-2037.57, -934.4], [-2037.42, -929.21], [-2036.28, -928.41], [-2038.14, -925.8], [-2039.28, -926.62], [-2042.83, -926.5], [-2042.81, -925.85], [-2046.3, -925.75], [-2046.32, -926.4], [-2051.59, -926.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1267.5, -175.63], [-1267.81, -181.02], [-1268.11, -186.23], [-1268.3, -189.73], [-1269.38, -210.67], [-1270.18, -210.44], [-1270.79, -210.26], [-1271.82, -210.6], [-1272.85, -210.35], [-1272.51, -211.16], [-1272.92, -212.2], [-1272.6, -213.29], [-1273.03, -214.63], [-1272.71, -215.93], [-1273.15, -217.46], [-1272.82, -218.61], [-1273.27, -220.33], [-1272.94, -221.4], [-1273.39, -223.23], [-1273.07, -224.38], [-1273.51, -226.06], [-1273.19, -227.08], [-1273.62, -228.74], [-1273.3, -229.95], [-1273.75, -231.62], [-1273.41, -232.53], [-1273.83, -233.44], [-1272.93, -233.09], [-1271.87, -233.61], [-1270.87, -233.19], [-1269.14, -233.83], [-1268.06, -233.31], [-1266.43, -234.05], [-1265.14, -233.44], [-1263.87, -234.27], [-1263.9, -235.31], [-1263.94, -236.62], [-1260.52, -236.8], [-1260.54, -237.23], [-1245.43, -238.09], [-1227.97, -239.08], [-1227.57, -239.11], [-1227.5, -237.14], [-1214.68, -237.56], [-1213.37, -237.61], [-1213.45, -226.08], [-1213.71, -212.02], [-1213.7, -210.03], [-1217.15, -209.9], [-1217.13, -209.36], [-1217.12, -208.77], [-1216.77, -202.23], [-1216.5, -197.27], [-1215.78, -180.0], [-1215.7, -178.19], [-1226.25, -177.67], [-1257.95, -176.07], [-1258.96, -176.02], [-1267.5, -175.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2141}}, {"shape": {"outer": [[2804.99, -3162.44], [2828.17, -3161.63], [2828.73, -3177.5], [2805.55, -3178.32], [2804.99, -3162.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.236, "pop": 0, "jobs": 236}}, {"shape": {"outer": [[-2345.12, -1585.77], [-2331.96, -1571.56], [-2333.93, -1569.9], [-2331.38, -1567.23], [-2329.69, -1568.71], [-2327.55, -1566.25], [-2322.27, -1570.79], [-2318.63, -1566.42], [-2309.26, -1574.19], [-2313.54, -1579.31], [-2313.35, -1584.35], [-2310.0, -1587.18], [-2312.03, -1589.56], [-2320.16, -1599.08], [-2322.11, -1601.37], [-2325.76, -1598.28], [-2330.9, -1598.54], [-2334.3, -1602.59], [-2343.73, -1594.74], [-2339.82, -1590.49], [-2345.12, -1585.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.521, "pop": 0, "jobs": 521}}, {"shape": {"outer": [[-2228.96, -1758.43], [-2206.12, -1733.26], [-2217.35, -1723.28], [-2218.45, -1724.24], [-2225.56, -1718.09], [-2229.02, -1721.79], [-2232.57, -1725.56], [-2233.53, -1724.63], [-2239.01, -1725.12], [-2242.62, -1729.4], [-2242.2, -1735.1], [-2237.92, -1739.03], [-2244.32, -1745.44], [-2231.92, -1755.93], [-2228.96, -1758.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.538, "pop": 0, "jobs": 538}}, {"shape": {"outer": [[-2285.55, -1123.2], [-2285.75, -1135.6], [-2282.5, -1135.65], [-2282.53, -1137.62], [-2279.51, -1137.66], [-2279.54, -1139.24], [-2275.23, -1139.31], [-2275.18, -1136.21], [-2274.31, -1136.23], [-2274.1, -1123.39], [-2285.55, -1123.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2271.09, -1127.78], [-2271.26, -1137.06], [-2264.77, -1137.18], [-2264.74, -1135.84], [-2261.13, -1135.9], [-2261.15, -1137.1], [-2257.08, -1137.18], [-2256.93, -1128.52], [-2260.26, -1128.46], [-2260.25, -1127.98], [-2271.09, -1127.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2253.49, -1127.99], [-2253.6, -1136.74], [-2243.91, -1136.87], [-2243.88, -1134.37], [-2241.61, -1134.4], [-2241.55, -1129.22], [-2244.37, -1129.19], [-2244.36, -1128.11], [-2253.49, -1127.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2238.67, -1128.77], [-2238.9, -1137.94], [-2228.86, -1138.19], [-2228.8, -1135.98], [-2226.58, -1136.03], [-2226.44, -1130.15], [-2232.61, -1130.0], [-2232.58, -1128.91], [-2238.67, -1128.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2221.39, -1163.24], [-2224.78, -1163.11], [-2224.99, -1168.39], [-2221.59, -1168.52], [-2221.39, -1163.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2233.41, -1157.34], [-2233.45, -1162.6], [-2225.31, -1162.67], [-2225.27, -1157.42], [-2233.41, -1157.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2218.06, -1153.87], [-2212.11, -1154.04], [-2212.3, -1160.61], [-2218.25, -1160.44], [-2218.06, -1153.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2218.53, -1130.74], [-2211.41, -1130.95], [-2211.53, -1134.67], [-2210.57, -1134.7], [-2210.81, -1142.47], [-2211.77, -1142.45], [-2211.81, -1143.63], [-2218.92, -1143.42], [-2218.83, -1140.29], [-2219.64, -1140.26], [-2219.45, -1134.33], [-2218.64, -1134.36], [-2218.53, -1130.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2195.71, -1127.5], [-2195.75, -1128.59], [-2196.67, -1128.56], [-2196.82, -1133.78], [-2195.9, -1133.81], [-2195.92, -1134.79], [-2190.31, -1134.95], [-2190.42, -1138.92], [-2184.25, -1139.1], [-2184.14, -1135.4], [-2182.45, -1135.45], [-2182.29, -1130.01], [-2183.98, -1129.96], [-2183.92, -1127.84], [-2188.83, -1127.7], [-2188.82, -1127.16], [-2192.26, -1127.06], [-2192.28, -1127.6], [-2195.71, -1127.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2197.61, -1142.11], [-2197.94, -1152.85], [-2193.97, -1152.97], [-2194.0, -1154.1], [-2189.31, -1154.25], [-2189.27, -1153.12], [-2183.31, -1153.31], [-2182.97, -1142.56], [-2197.61, -1142.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2191.11, -1159.27], [-2191.27, -1166.82], [-2189.14, -1166.87], [-2189.2, -1169.57], [-2183.68, -1169.69], [-2183.46, -1159.43], [-2191.11, -1159.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2193.37, -1175.35], [-2193.58, -1183.29], [-2183.76, -1183.55], [-2183.54, -1175.62], [-2185.18, -1175.58], [-2185.14, -1173.7], [-2188.69, -1173.61], [-2188.73, -1175.47], [-2193.37, -1175.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2208.24, -1177.45], [-2200.79, -1177.83], [-2201.17, -1185.28], [-2208.63, -1184.89], [-2208.24, -1177.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2199.97, -1186.12], [-2200.11, -1189.56], [-2194.64, -1189.79], [-2194.51, -1186.35], [-2199.97, -1186.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2192.14, -1188.48], [-2184.01, -1188.66], [-2184.18, -1196.62], [-2192.32, -1196.46], [-2192.26, -1193.59], [-2193.17, -1193.57], [-2193.07, -1189.22], [-2192.17, -1189.24], [-2192.14, -1188.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2193.54, -1205.76], [-2193.71, -1213.53], [-2184.32, -1213.75], [-2184.15, -1205.97], [-2193.54, -1205.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2208.45, -1205.13], [-2208.57, -1210.3], [-2205.36, -1210.39], [-2205.42, -1212.56], [-2198.46, -1212.73], [-2198.35, -1207.82], [-2196.35, -1207.87], [-2196.3, -1205.41], [-2208.45, -1205.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2218.28, -1201.45], [-2210.74, -1201.62], [-2210.96, -1211.45], [-2215.39, -1211.34], [-2215.42, -1212.58], [-2217.61, -1212.52], [-2217.57, -1211.29], [-2218.5, -1211.26], [-2218.28, -1201.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2230.18, -1201.1], [-2230.33, -1210.78], [-2222.09, -1210.91], [-2221.93, -1201.23], [-2222.65, -1201.22], [-2222.62, -1199.71], [-2226.5, -1199.65], [-2226.53, -1201.16], [-2230.18, -1201.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2241.89, -1200.52], [-2233.99, -1200.74], [-2234.31, -1212.52], [-2242.22, -1212.32], [-2241.89, -1200.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2249.26, -1189.33], [-2257.36, -1189.16], [-2257.21, -1181.92], [-2249.11, -1182.08], [-2249.26, -1189.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2244.2, -1200.27], [-2246.11, -1200.21], [-2246.05, -1197.87], [-2251.4, -1197.71], [-2251.56, -1203.59], [-2254.02, -1203.52], [-2254.29, -1212.94], [-2244.57, -1213.22], [-2244.2, -1200.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2272.57, -1194.27], [-2268.52, -1194.4], [-2268.63, -1197.8], [-2264.64, -1197.92], [-2264.67, -1199.03], [-2262.98, -1199.09], [-2263.03, -1200.57], [-2261.12, -1200.64], [-2261.42, -1209.8], [-2267.53, -1209.6], [-2267.49, -1208.1], [-2271.54, -1207.97], [-2271.4, -1203.68], [-2272.87, -1203.62], [-2272.57, -1194.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2278.05, -1190.8], [-2273.91, -1190.89], [-2274.03, -1196.23], [-2278.16, -1196.15], [-2278.05, -1190.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2302.88, -1194.9], [-2297.07, -1195.01], [-2297.1, -1196.91], [-2295.15, -1196.95], [-2295.18, -1198.42], [-2294.31, -1198.45], [-2294.34, -1199.98], [-2292.15, -1200.02], [-2292.36, -1210.51], [-2302.15, -1210.32], [-2302.01, -1203.3], [-2300.58, -1203.33], [-2300.52, -1200.34], [-2302.98, -1200.29], [-2302.88, -1194.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2289.72, -1198.01], [-2287.48, -1198.07], [-2287.41, -1195.34], [-2281.29, -1195.48], [-2281.37, -1198.77], [-2280.24, -1198.79], [-2280.37, -1204.45], [-2281.51, -1204.42], [-2281.61, -1208.58], [-2282.32, -1208.57], [-2282.36, -1210.29], [-2290.01, -1210.1], [-2289.72, -1198.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2295.0, -1168.42], [-2293.67, -1168.45], [-2293.63, -1166.57], [-2288.33, -1166.68], [-2288.37, -1168.55], [-2287.4, -1168.57], [-2287.57, -1177.16], [-2299.16, -1176.94], [-2299.03, -1169.84], [-2295.04, -1169.92], [-2295.0, -1168.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2299.36, -1156.08], [-2290.78, -1156.16], [-2290.85, -1163.99], [-2299.43, -1163.91], [-2299.36, -1156.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2068.54, -1033.73], [-2068.82, -1043.42], [-2068.16, -1043.44], [-2068.2, -1045.02], [-2061.0, -1045.23], [-2060.95, -1043.64], [-2060.08, -1043.67], [-2059.8, -1033.98], [-2061.88, -1033.92], [-2061.84, -1032.74], [-2064.57, -1032.66], [-2064.61, -1033.85], [-2068.54, -1033.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1317.75, -2311.61], [-1317.97, -2317.54], [-1359.21, -2315.54], [-1369.52, -2315.04], [-1370.99, -2346.91], [-1364.38, -2347.0], [-1364.54, -2352.7], [-1324.42, -2354.39], [-1292.65, -2355.73], [-1291.73, -2338.99], [-1306.8, -2311.9], [-1314.55, -2311.69], [-1317.31, -2311.62], [-1317.75, -2311.61]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2388}}, {"shape": {"outer": [[-410.24, -504.13], [-416.45, -497.65], [-418.09, -499.22], [-411.92, -505.66], [-410.24, -504.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-411.92, -505.66], [-410.24, -504.13], [-392.86, -488.25], [-380.4, -476.8], [-383.53, -472.7], [-377.7, -467.37], [-368.23, -478.06], [-356.27, -491.57], [-352.27, -496.08], [-412.95, -551.85], [-435.7, -527.17], [-411.92, -505.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1791}}, {"shape": {"outer": [[1116.58, 387.86], [1111.38, 382.97], [1112.59, 381.7], [1112.3, 381.42], [1119.28, 374.07], [1119.62, 374.4], [1123.42, 370.39], [1127.7, 374.43], [1123.91, 378.43], [1125.49, 379.92], [1121.84, 383.77], [1121.11, 383.09], [1116.58, 387.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1133.68, 407.47], [1140.23, 400.37], [1144.9, 404.65], [1138.36, 411.75], [1133.68, 407.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.039, "pop": 0, "jobs": 39}}, {"shape": {"outer": [[1151.2, 413.38], [1156.75, 418.4], [1162.21, 412.41], [1163.58, 413.66], [1169.59, 407.07], [1161.55, 399.79], [1156.99, 404.79], [1158.11, 405.8], [1151.2, 413.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.099, "pop": 0, "jobs": 99}}, {"shape": {"outer": [[-628.67, -1160.56], [-632.51, -1163.13], [-631.83, -1164.26], [-635.67, -1166.4], [-638.64, -1168.05], [-638.28, -1168.69], [-645.87, -1173.07], [-682.7, -1113.95], [-665.24, -1103.08], [-663.05, -1101.41], [-659.37, -1098.15], [-661.4, -1096.52], [-665.76, -1091.74], [-650.23, -1077.36], [-635.61, -1093.88], [-637.98, -1096.15], [-650.41, -1107.68], [-651.72, -1106.2], [-659.51, -1111.25], [-628.67, -1160.56]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1757, "jobs": 0}}, {"shape": {"outer": [[-2951.1, 136.88], [-2952.07, 117.19], [-2937.01, 116.62], [-2937.76, 96.31], [-2932.29, 96.11], [-2933.06, 75.58], [-2925.72, 75.31], [-2925.93, 69.45], [-2916.8, 69.11], [-2916.98, 64.42], [-2909.7, 64.15], [-2909.82, 60.73], [-2901.91, 60.39], [-2898.97, 134.65], [-2951.1, 136.88]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1498}}, {"shape": {"outer": [[129.7, 228.24], [138.89, 218.16], [120.89, 201.85], [111.69, 211.92], [129.7, 228.24]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.464, "pop": 232, "jobs": 0}}, {"shape": {"outer": [[151.3, 201.76], [145.91, 207.66], [144.38, 206.27], [141.01, 209.97], [132.29, 202.07], [141.06, 192.47], [151.3, 201.76]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2254.31, -1654.97], [-2253.2, -1655.38], [-2253.95, -1657.39], [-2244.05, -1661.09], [-2244.66, -1662.72], [-2240.23, -1664.37], [-2239.56, -1662.58], [-2232.68, -1665.14], [-2231.78, -1662.72], [-2226.15, -1664.82], [-2222.58, -1655.34], [-2229.93, -1652.59], [-2230.57, -1654.3], [-2244.59, -1649.06], [-2244.07, -1647.67], [-2249.86, -1645.51], [-2250.85, -1648.17], [-2251.64, -1647.88], [-2254.31, -1654.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[-2313.19, -1615.47], [-2315.13, -1617.52], [-2316.63, -1619.1], [-2311.26, -1624.15], [-2310.22, -1623.04], [-2307.83, -1620.51], [-2313.19, -1615.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2349.27, -1606.34], [-2346.14, -1609.03], [-2344.14, -1606.71], [-2340.02, -1610.25], [-2342.26, -1612.84], [-2336.63, -1617.69], [-2337.56, -1618.77], [-2339.77, -1621.33], [-2352.65, -1610.24], [-2349.27, -1606.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2381.41, -1614.66], [-2371.72, -1614.9], [-2371.9, -1621.96], [-2381.58, -1621.73], [-2381.41, -1614.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2397.43, -1615.3], [-2394.0, -1621.02], [-2389.05, -1629.28], [-2385.17, -1629.73], [-2381.66, -1632.85], [-2379.44, -1633.4], [-2378.85, -1637.65], [-2382.08, -1640.33], [-2386.63, -1638.86], [-2388.63, -1640.82], [-2392.79, -1636.89], [-2401.24, -1644.91], [-2403.12, -1646.67], [-2411.55, -1637.95], [-2409.45, -1635.22], [-2414.53, -1630.76], [-2397.43, -1615.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[-2354.93, -1661.63], [-2343.39, -1667.01], [-2345.53, -1670.88], [-2357.11, -1665.68], [-2355.56, -1662.8], [-2354.93, -1661.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2306.85, -1646.53], [-2308.61, -1654.29], [-2307.07, -1654.64], [-2305.48, -1655.0], [-2303.09, -1655.54], [-2301.32, -1647.77], [-2305.06, -1646.93], [-2306.85, -1646.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2325.5, -1785.88], [-2322.57, -1795.67], [-2308.85, -1791.58], [-2311.78, -1781.81], [-2325.5, -1785.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2345.24, -1832.91], [-2347.64, -1835.85], [-2343.43, -1837.45], [-2341.29, -1840.67], [-2338.56, -1837.72], [-2341.22, -1834.59], [-2345.24, -1832.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2220.01, -1753.9], [-2212.67, -1760.21], [-2214.84, -1762.71], [-2210.68, -1766.28], [-2208.53, -1763.82], [-2205.7, -1766.27], [-2195.22, -1754.17], [-2206.85, -1744.16], [-2210.4, -1748.27], [-2213.12, -1745.94], [-2220.01, -1753.9]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.193, "pop": 0, "jobs": 193}}, {"shape": {"outer": [[-2147.7, -1810.04], [-2144.11, -1802.39], [-2173.51, -1789.5], [-2174.94, -1789.96], [-2175.64, -1792.88], [-2175.82, -1793.64], [-2175.43, -1794.65], [-2173.64, -1795.58], [-2174.73, -1798.25], [-2158.38, -1805.39], [-2147.7, -1810.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-2128.8, -1819.14], [-2130.06, -1822.26], [-2134.57, -1833.15], [-2135.1, -1834.42], [-2123.71, -1839.11], [-2120.37, -1840.45], [-2115.16, -1827.47], [-2117.56, -1823.67], [-2128.8, -1819.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[-27.82, 67.6], [-25.14, 69.74], [-19.23, 69.33], [-10.15, 68.82], [-9.41, 75.61], [-19.09, 76.42], [-25.58, 76.97], [-31.53, 71.58], [-27.82, 67.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1787.55, -942.34], [-1787.71, -951.02], [-1772.47, -951.3], [-1772.31, -942.62], [-1787.55, -942.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1787.08, -931.62], [-1787.34, -940.36], [-1774.49, -940.73], [-1774.46, -939.95], [-1771.86, -940.02], [-1771.63, -932.06], [-1787.08, -931.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2238.74, -1798.88], [-2225.26, -1797.18], [-2223.09, -1796.9], [-2223.05, -1793.69], [-2222.0, -1789.6], [-2219.65, -1786.41], [-2220.73, -1785.51], [-2215.83, -1780.2], [-2219.18, -1777.17], [-2219.77, -1776.63], [-2220.9, -1777.86], [-2228.37, -1771.29], [-2233.28, -1776.19], [-2234.14, -1775.47], [-2236.35, -1777.78], [-2238.8, -1777.2], [-2240.94, -1783.78], [-2242.55, -1788.12], [-2237.46, -1789.4], [-2238.74, -1798.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.277, "pop": 0, "jobs": 277}}, {"shape": {"outer": [[242.1, -153.45], [248.36, -153.77], [247.68, -177.6], [241.76, -177.44], [242.1, -153.45]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[245.89, -189.08], [241.23, -184.07], [236.5, -188.45], [225.47, -198.62], [230.14, -203.64], [241.42, -193.21], [245.89, -189.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-531.24, -68.07], [-526.09, -73.42], [-527.1, -95.06], [-540.76, -94.35], [-539.69, -79.91], [-541.88, -77.36], [-531.24, -68.07]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[-528.93, -66.06], [-519.38, -76.93], [-520.55, -95.4], [-527.1, -95.06], [-526.09, -73.42], [-531.24, -68.07], [-528.93, -66.06]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-528.93, -66.06], [-522.94, -60.81], [-513.26, -71.36], [-519.38, -76.93], [-528.93, -66.06]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-510.93, -50.75], [-494.0, -69.72], [-494.22, -74.88], [-497.18, -74.76], [-497.16, -72.9], [-499.44, -70.88], [-500.74, -71.86], [-515.39, -54.7], [-510.93, -50.75]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.046, "pop": 0, "jobs": 46}}, {"shape": {"outer": [[-480.5, -23.79], [-455.76, -50.79], [-445.14, -62.7], [-427.38, -82.1], [-383.49, -42.93], [-382.98, -42.45], [-402.4, -20.9], [-416.72, -5.02], [-436.54, 16.97], [-480.5, -23.79]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7971}}, {"shape": {"outer": [[35.71, -261.85], [47.18, -251.36], [49.27, -253.95], [52.71, -250.78], [50.26, -248.19], [65.76, -234.55], [64.06, -232.74], [47.31, -213.6], [35.94, -200.97], [35.0, -201.71], [24.18, -189.5], [23.37, -188.66], [20.21, -191.96], [17.02, -196.01], [15.21, -198.51], [-5.86, -216.97], [35.71, -261.85]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2818}}, {"shape": {"outer": [[35.71, -261.85], [49.18, -276.38], [79.08, -249.03], [67.89, -236.81], [52.71, -250.78], [49.27, -253.95], [47.18, -251.36], [35.71, -261.85]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1413}}, {"shape": {"outer": [[67.89, -236.81], [65.76, -234.55], [64.06, -232.74], [99.95, -201.58], [100.63, -202.3], [103.01, -200.14], [108.47, -205.75], [107.76, -206.29], [109.74, -208.31], [110.45, -207.76], [113.7, -209.0], [115.02, -209.78], [115.77, -210.45], [116.3, -211.35], [116.66, -212.6], [116.69, -214.25], [116.43, -215.78], [99.13, -231.18], [79.08, -249.03], [67.89, -236.81]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3130}}, {"shape": {"outer": [[47.62, -168.42], [48.35, -169.26], [69.29, -148.56], [99.92, -182.04], [73.48, -205.06], [65.79, -196.56], [47.31, -213.6], [35.94, -200.97], [35.0, -201.71], [24.18, -189.5], [47.62, -168.42]], "holes": []}, "height": 31.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6061}}, {"shape": {"outer": [[99.92, -182.04], [107.28, -190.04], [122.49, -206.56], [124.23, -208.55], [116.43, -215.78], [116.69, -214.25], [116.66, -212.6], [116.3, -211.35], [115.77, -210.45], [115.02, -209.78], [113.7, -209.0], [110.45, -207.76], [109.74, -208.31], [107.76, -206.29], [108.47, -205.75], [103.01, -200.14], [100.63, -202.3], [99.95, -201.58], [64.06, -232.74], [47.31, -213.6], [65.79, -196.56], [73.48, -205.06], [99.92, -182.04]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1540}}, {"shape": {"outer": [[1786.85, 700.6], [1780.5, 694.91], [1770.87, 705.58], [1777.22, 711.27], [1786.85, 700.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1676.7, -1664.13], [-1676.58, -1659.67], [-1671.98, -1659.79], [-1671.91, -1657.25], [-1668.64, -1657.35], [-1668.59, -1655.72], [-1661.01, -1655.92], [-1661.24, -1664.55], [-1676.7, -1664.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1672.79, -1643.27], [-1672.89, -1648.27], [-1660.43, -1648.5], [-1660.34, -1643.5], [-1672.79, -1643.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1674.16, -1632.58], [-1666.65, -1632.66], [-1666.72, -1639.09], [-1674.23, -1639.0], [-1674.16, -1632.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1670.69, -1624.18], [-1670.79, -1628.42], [-1659.66, -1628.69], [-1659.45, -1619.42], [-1665.81, -1619.27], [-1665.93, -1624.29], [-1670.69, -1624.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1691.72, -1622.08], [-1691.96, -1631.96], [-1679.02, -1632.29], [-1678.78, -1622.39], [-1691.72, -1622.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1703.28, -1621.6], [-1710.46, -1621.42], [-1710.88, -1637.69], [-1703.71, -1637.87], [-1703.28, -1621.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1721.64, -1622.92], [-1728.64, -1622.69], [-1729.05, -1635.09], [-1722.05, -1635.32], [-1721.64, -1622.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1731.9, -1654.82], [-1731.95, -1661.7], [-1738.02, -1661.65], [-1737.96, -1654.77], [-1731.9, -1654.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1764.76, -1656.33], [-1764.92, -1662.55], [-1754.16, -1662.83], [-1754.0, -1656.6], [-1764.76, -1656.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1764.46, -1643.2], [-1764.51, -1649.26], [-1753.45, -1649.34], [-1753.41, -1643.27], [-1764.46, -1643.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1764.61, -1621.9], [-1764.66, -1624.78], [-1762.73, -1624.81], [-1762.82, -1630.29], [-1757.68, -1630.38], [-1757.65, -1628.62], [-1754.32, -1628.68], [-1754.3, -1626.87], [-1749.78, -1626.95], [-1749.69, -1622.15], [-1764.61, -1621.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1737.8, -1623.0], [-1738.03, -1631.15], [-1734.8, -1631.24], [-1734.97, -1637.18], [-1730.44, -1637.31], [-1730.27, -1631.43], [-1729.48, -1631.45], [-1729.25, -1623.25], [-1737.8, -1623.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1747.24, -1622.55], [-1747.31, -1628.57], [-1745.32, -1628.59], [-1745.37, -1633.08], [-1745.04, -1633.07], [-1745.07, -1635.52], [-1739.28, -1635.58], [-1739.14, -1622.65], [-1742.43, -1622.61], [-1742.41, -1621.08], [-1746.07, -1621.04], [-1746.08, -1622.56], [-1747.24, -1622.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[402.5, -66.65], [410.91, -75.77], [404.19, -79.85], [383.19, -99.06], [375.82, -91.06], [402.5, -66.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.32, "pop": 160, "jobs": 0}}, {"shape": {"outer": [[385.87, -54.17], [388.78, -57.25], [391.48, -60.09], [394.52, -63.3], [382.15, -74.94], [373.5, -65.83], [385.87, -54.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[361.8, -102.08], [369.81, -111.12], [349.39, -129.13], [341.35, -120.19], [361.8, -102.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.21, "pop": 0, "jobs": 210}}, {"shape": {"outer": [[341.35, -120.19], [361.8, -102.08], [360.01, -99.93], [356.84, -96.37], [352.03, -100.62], [351.13, -99.59], [335.49, -113.37], [341.35, -120.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[322.92, -95.96], [323.42, -96.53], [321.54, -98.19], [326.43, -103.67], [328.32, -102.0], [328.38, -102.27], [344.11, -88.36], [342.33, -86.36], [338.55, -82.13], [322.92, -95.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1188.39, 1417.19], [1193.08, 1421.21], [1195.06, 1418.92], [1197.36, 1420.9], [1202.69, 1414.73], [1201.06, 1413.34], [1204.03, 1409.91], [1198.65, 1405.3], [1188.39, 1417.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1761.36, -1500.61], [-1761.54, -1506.76], [-1759.84, -1506.81], [-1759.97, -1511.11], [-1760.68, -1511.09], [-1760.79, -1515.11], [-1759.59, -1515.14], [-1759.66, -1517.65], [-1755.4, -1517.77], [-1755.33, -1515.26], [-1752.76, -1515.34], [-1752.35, -1500.87], [-1761.36, -1500.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1748.22, -1498.05], [-1748.58, -1511.49], [-1740.38, -1511.71], [-1740.03, -1498.27], [-1748.22, -1498.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1737.57, -1502.63], [-1737.61, -1509.2], [-1733.35, -1509.25], [-1733.38, -1512.65], [-1728.72, -1512.69], [-1728.62, -1500.66], [-1735.46, -1500.61], [-1736.36, -1499.68], [-1738.47, -1501.71], [-1737.57, -1502.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1721.34, -1501.17], [-1721.66, -1510.6], [-1719.32, -1510.68], [-1719.41, -1513.59], [-1714.42, -1513.76], [-1714.37, -1512.18], [-1711.71, -1512.28], [-1711.3, -1500.09], [-1716.65, -1499.9], [-1716.7, -1501.32], [-1721.34, -1501.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1587.57, -1573.11], [-1581.68, -1573.28], [-1581.86, -1579.54], [-1587.75, -1579.37], [-1587.57, -1573.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1575.94, -1554.28], [-1571.06, -1554.39], [-1571.22, -1561.84], [-1576.1, -1561.73], [-1575.94, -1554.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1568.7, -1580.14], [-1562.91, -1580.3], [-1563.25, -1593.36], [-1569.04, -1593.2], [-1568.7, -1580.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1580.17, -1577.79], [-1572.97, -1578.02], [-1573.45, -1592.71], [-1580.65, -1592.48], [-1580.17, -1577.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1596.87, -1577.64], [-1596.94, -1582.1], [-1595.78, -1582.12], [-1595.95, -1592.2], [-1587.94, -1592.34], [-1587.75, -1581.42], [-1590.1, -1581.38], [-1590.04, -1577.76], [-1596.87, -1577.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1607.02, -1580.29], [-1607.24, -1590.4], [-1599.21, -1590.57], [-1598.99, -1580.46], [-1601.34, -1580.42], [-1601.3, -1578.81], [-1605.45, -1578.72], [-1605.49, -1580.32], [-1607.02, -1580.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1631.8, -1573.77], [-1629.39, -1573.83], [-1629.33, -1571.59], [-1624.36, -1571.74], [-1624.43, -1573.98], [-1622.25, -1574.04], [-1622.78, -1591.72], [-1626.95, -1591.59], [-1627.04, -1594.6], [-1632.41, -1594.44], [-1631.8, -1573.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1634.47, -1550.43], [-1634.6, -1557.59], [-1618.38, -1557.9], [-1618.25, -1550.72], [-1634.47, -1550.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1617.19, -1579.94], [-1617.38, -1592.38], [-1608.85, -1592.52], [-1608.65, -1580.07], [-1610.94, -1580.04], [-1610.83, -1573.12], [-1616.13, -1573.04], [-1616.24, -1579.96], [-1617.19, -1579.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1605.64, -1553.15], [-1601.34, -1553.18], [-1601.36, -1559.77], [-1605.67, -1559.74], [-1605.64, -1553.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1738.25, -1574.73], [-1746.03, -1574.57], [-1746.38, -1591.22], [-1738.59, -1591.39], [-1738.25, -1574.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1763.92, -1578.52], [-1756.16, -1578.67], [-1756.42, -1591.35], [-1764.17, -1591.19], [-1763.92, -1578.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1691.37, -1579.23], [-1683.11, -1579.42], [-1683.3, -1588.28], [-1687.64, -1588.19], [-1687.66, -1589.56], [-1690.5, -1589.5], [-1690.47, -1588.12], [-1691.56, -1588.1], [-1691.37, -1579.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1682.49, -1576.66], [-1673.97, -1576.9], [-1674.32, -1589.09], [-1682.84, -1588.84], [-1682.49, -1576.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1669.61, -1579.15], [-1659.03, -1579.35], [-1659.27, -1591.44], [-1669.85, -1591.23], [-1669.61, -1579.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1668.11, -1561.75], [-1668.13, -1562.48], [-1670.93, -1562.39], [-1671.05, -1566.08], [-1668.25, -1566.17], [-1668.39, -1570.98], [-1660.31, -1571.23], [-1660.03, -1562.01], [-1668.11, -1561.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1681.82, -1564.44], [-1675.81, -1564.64], [-1676.05, -1571.93], [-1682.06, -1571.74], [-1681.82, -1564.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1703.46, -1559.03], [-1710.33, -1558.89], [-1710.16, -1551.14], [-1703.3, -1551.29], [-1703.46, -1559.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1699.02, -1550.81], [-1692.14, -1551.01], [-1692.47, -1562.7], [-1699.35, -1562.5], [-1699.02, -1550.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1763.31, -1669.96], [-1763.46, -1678.05], [-1751.29, -1678.27], [-1751.18, -1672.47], [-1753.14, -1672.43], [-1753.1, -1670.14], [-1763.31, -1669.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1763.33, -1680.52], [-1753.19, -1680.77], [-1753.4, -1689.32], [-1763.54, -1689.06], [-1763.54, -1688.47], [-1765.31, -1688.42], [-1765.14, -1681.19], [-1763.35, -1681.23], [-1763.33, -1680.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1766.09, -1701.53], [-1758.02, -1701.66], [-1758.06, -1704.15], [-1756.02, -1704.18], [-1756.1, -1708.7], [-1758.13, -1708.67], [-1758.18, -1711.03], [-1759.25, -1711.03], [-1759.29, -1713.15], [-1765.13, -1713.05], [-1765.09, -1710.93], [-1766.25, -1710.9], [-1766.09, -1701.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1765.29, -1692.45], [-1765.38, -1700.46], [-1755.49, -1700.58], [-1755.4, -1692.56], [-1765.29, -1692.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1747.23, -1709.36], [-1746.73, -1694.48], [-1735.7, -1694.85], [-1736.2, -1709.73], [-1747.23, -1709.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1689.03, -1682.82], [-1683.29, -1683.07], [-1683.6, -1689.76], [-1689.33, -1689.51], [-1689.03, -1682.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1731.59, -1701.06], [-1731.73, -1706.31], [-1730.92, -1706.34], [-1731.05, -1711.35], [-1724.44, -1711.53], [-1724.29, -1705.89], [-1723.55, -1705.91], [-1723.42, -1701.28], [-1724.59, -1701.25], [-1724.52, -1698.73], [-1730.58, -1698.57], [-1730.65, -1701.09], [-1731.59, -1701.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1721.24, -1698.33], [-1721.66, -1712.37], [-1714.49, -1712.58], [-1714.07, -1698.55], [-1721.24, -1698.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1710.43, -1695.33], [-1705.46, -1695.47], [-1705.52, -1697.43], [-1703.56, -1697.48], [-1703.71, -1702.81], [-1704.64, -1702.79], [-1704.75, -1706.71], [-1705.78, -1706.68], [-1705.91, -1710.98], [-1706.51, -1710.96], [-1706.57, -1713.03], [-1711.64, -1712.88], [-1711.59, -1711.08], [-1712.03, -1711.07], [-1711.77, -1701.83], [-1710.62, -1701.86], [-1710.43, -1695.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1694.16, -1695.93], [-1694.37, -1708.16], [-1692.88, -1708.19], [-1692.89, -1709.19], [-1689.61, -1709.25], [-1689.6, -1708.25], [-1684.46, -1708.33], [-1684.3, -1698.75], [-1689.16, -1698.66], [-1689.11, -1696.02], [-1694.16, -1695.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1678.62, -1709.99], [-1672.7, -1710.25], [-1672.47, -1704.97], [-1678.4, -1704.71], [-1678.62, -1709.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1661.18, -1704.37], [-1661.26, -1712.51], [-1670.0, -1712.43], [-1669.92, -1704.27], [-1661.18, -1704.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1672.0, -1690.06], [-1672.24, -1698.57], [-1663.42, -1698.82], [-1663.41, -1698.31], [-1660.49, -1698.4], [-1660.33, -1692.92], [-1661.07, -1692.9], [-1661.02, -1691.06], [-1663.21, -1690.99], [-1663.19, -1690.3], [-1672.0, -1690.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1636.26, -1657.55], [-1636.39, -1665.41], [-1624.1, -1665.63], [-1623.97, -1657.76], [-1629.77, -1657.66], [-1629.73, -1655.14], [-1634.92, -1655.05], [-1634.97, -1657.58], [-1636.26, -1657.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1636.02, -1640.94], [-1636.25, -1648.88], [-1635.05, -1648.92], [-1635.11, -1651.2], [-1629.82, -1651.35], [-1629.76, -1649.06], [-1622.32, -1649.27], [-1622.2, -1644.86], [-1624.26, -1644.8], [-1624.16, -1641.28], [-1636.02, -1640.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1630.41, -1624.58], [-1630.82, -1639.03], [-1622.82, -1639.26], [-1622.4, -1624.81], [-1624.43, -1624.75], [-1624.37, -1622.81], [-1628.63, -1622.68], [-1628.69, -1624.63], [-1630.41, -1624.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1618.05, -1626.83], [-1609.87, -1627.01], [-1610.06, -1636.04], [-1618.25, -1635.86], [-1618.05, -1626.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1608.23, -1626.54], [-1608.47, -1637.51], [-1600.17, -1637.69], [-1599.93, -1626.72], [-1608.23, -1626.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1589.57, -1624.75], [-1589.76, -1634.23], [-1581.9, -1634.41], [-1581.75, -1627.19], [-1585.67, -1627.1], [-1585.62, -1624.83], [-1589.57, -1624.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1580.57, -1625.96], [-1580.72, -1635.76], [-1572.42, -1635.89], [-1572.26, -1626.09], [-1573.47, -1626.07], [-1573.44, -1624.16], [-1579.17, -1624.08], [-1579.19, -1625.99], [-1580.57, -1625.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1566.3, -1626.04], [-1558.49, -1626.17], [-1558.66, -1636.4], [-1562.0, -1636.35], [-1562.02, -1637.73], [-1565.41, -1637.66], [-1565.39, -1636.29], [-1566.48, -1636.27], [-1566.3, -1626.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1567.68, -1657.22], [-1559.93, -1657.44], [-1560.15, -1665.16], [-1567.9, -1664.94], [-1567.68, -1657.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1577.61, -1653.84], [-1577.78, -1661.3], [-1570.36, -1661.46], [-1570.18, -1654.02], [-1577.61, -1653.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1588.66, -1655.15], [-1582.83, -1655.24], [-1582.95, -1662.54], [-1588.78, -1662.44], [-1588.66, -1655.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1617.96, -1653.05], [-1610.09, -1653.28], [-1610.33, -1661.54], [-1618.19, -1661.32], [-1617.96, -1653.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1594.89, -1683.45], [-1595.0, -1687.14], [-1592.05, -1687.23], [-1591.94, -1683.53], [-1594.89, -1683.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[-1573.96, -1681.65], [-1564.89, -1681.9], [-1565.1, -1689.2], [-1574.17, -1688.94], [-1573.96, -1681.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1609.29, -1674.98], [-1609.66, -1682.12], [-1599.84, -1682.62], [-1599.47, -1675.47], [-1609.29, -1674.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1635.99, -1672.03], [-1636.22, -1680.08], [-1623.77, -1680.44], [-1623.54, -1672.39], [-1635.99, -1672.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1636.42, -1683.56], [-1636.67, -1692.15], [-1620.07, -1692.63], [-1619.83, -1684.03], [-1636.42, -1683.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1568.39, -1435.3], [-1576.8, -1435.06], [-1577.08, -1445.08], [-1568.67, -1445.32], [-1568.39, -1435.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1576.75, -1456.3], [-1569.22, -1456.57], [-1569.39, -1461.42], [-1568.12, -1461.46], [-1568.49, -1471.96], [-1577.3, -1471.64], [-1576.75, -1456.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1567.64, -1458.92], [-1559.78, -1459.21], [-1560.24, -1471.71], [-1563.63, -1471.58], [-1563.65, -1472.18], [-1568.13, -1472.01], [-1567.64, -1458.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1726.34, -1215.55], [-1720.82, -1215.68], [-1720.99, -1223.32], [-1726.52, -1223.19], [-1726.34, -1215.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1750.14, -1215.29], [-1750.61, -1227.38], [-1739.24, -1227.82], [-1739.15, -1225.62], [-1737.53, -1225.68], [-1737.28, -1219.01], [-1739.73, -1218.9], [-1739.6, -1215.69], [-1750.14, -1215.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1750.17, -1204.12], [-1750.45, -1211.45], [-1745.36, -1211.64], [-1745.41, -1212.95], [-1737.94, -1213.23], [-1737.78, -1209.17], [-1736.56, -1209.21], [-1736.44, -1206.05], [-1737.67, -1206.0], [-1737.62, -1204.59], [-1744.06, -1204.35], [-1743.99, -1202.57], [-1749.29, -1202.38], [-1749.35, -1204.16], [-1750.17, -1204.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1026.64, 112.23], [-1061.52, 113.97], [-1060.99, 124.36], [-1082.91, 125.45], [-1083.26, 118.58], [-1084.0, 118.63], [-1084.09, 116.57], [-1084.51, 107.99], [-1060.96, 106.85], [-1054.37, 102.98], [-1054.96, 91.29], [-1049.79, 91.03], [-1031.92, 90.14], [-1027.76, 89.93], [-1026.64, 112.23]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.597, "pop": 0, "jobs": 597}}, {"shape": {"outer": [[-2001.51, -1086.23], [-2008.94, -1086.02], [-2009.3, -1098.74], [-2001.88, -1098.96], [-2001.51, -1086.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1998.23, -1089.74], [-1998.49, -1099.23], [-1988.99, -1099.49], [-1988.81, -1092.74], [-1991.42, -1092.68], [-1991.35, -1089.92], [-1998.23, -1089.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1986.4, -1082.94], [-1977.34, -1083.24], [-1977.89, -1099.5], [-1986.95, -1099.19], [-1986.4, -1082.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1974.31, -1088.14], [-1966.87, -1088.37], [-1966.94, -1090.49], [-1966.48, -1090.5], [-1966.69, -1096.98], [-1967.13, -1096.96], [-1967.2, -1098.93], [-1968.0, -1098.91], [-1968.06, -1101.25], [-1973.97, -1101.07], [-1973.89, -1098.72], [-1974.64, -1098.69], [-1974.31, -1088.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1964.92, -1088.86], [-1965.03, -1092.56], [-1965.9, -1092.53], [-1966.06, -1098.2], [-1963.11, -1098.28], [-1963.16, -1099.75], [-1959.34, -1099.86], [-1959.3, -1098.39], [-1957.06, -1098.45], [-1956.79, -1089.09], [-1957.82, -1089.06], [-1957.78, -1087.6], [-1961.77, -1087.48], [-1961.81, -1088.95], [-1964.92, -1088.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1962.65, -1061.1], [-1956.25, -1061.23], [-1956.39, -1067.87], [-1962.78, -1067.75], [-1962.65, -1061.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1844.32, -1066.52], [-1838.75, -1066.66], [-1838.88, -1072.31], [-1844.45, -1072.19], [-1844.32, -1066.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1871.88, -1086.72], [-1881.3, -1086.41], [-1881.74, -1100.07], [-1872.32, -1100.37], [-1871.88, -1086.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1844.39, -1086.84], [-1844.68, -1099.88], [-1835.73, -1100.08], [-1835.51, -1090.73], [-1837.65, -1090.68], [-1837.57, -1086.99], [-1844.39, -1086.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1857.38, -1090.31], [-1848.41, -1090.69], [-1848.85, -1101.07], [-1849.86, -1101.03], [-1849.94, -1102.98], [-1856.98, -1102.68], [-1856.9, -1100.74], [-1857.81, -1100.7], [-1857.38, -1090.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1868.8, -1067.1], [-1869.12, -1078.91], [-1860.0, -1079.16], [-1859.68, -1067.35], [-1860.33, -1067.33], [-1860.29, -1065.6], [-1867.71, -1065.39], [-1867.75, -1067.13], [-1868.8, -1067.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1857.02, -1064.95], [-1848.66, -1065.16], [-1849.05, -1080.83], [-1857.42, -1080.62], [-1857.02, -1064.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2114.24, -1004.9], [-2114.61, -1016.45], [-2122.03, -1016.21], [-2121.66, -1004.65], [-2121.14, -1004.68], [-2121.07, -1002.58], [-2114.82, -1002.78], [-2114.89, -1004.88], [-2114.24, -1004.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2068.1, -1006.43], [-2068.45, -1015.87], [-2060.1, -1016.18], [-2059.75, -1006.73], [-2068.1, -1006.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2079.5, -1017.91], [-2073.66, -1018.08], [-2073.63, -1017.18], [-2072.52, -1017.21], [-2072.47, -1015.53], [-2071.29, -1015.56], [-2071.01, -1005.35], [-2079.15, -1005.13], [-2079.5, -1017.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2089.28, -1015.47], [-2088.89, -1004.63], [-2081.0, -1004.91], [-2081.39, -1015.74], [-2083.82, -1015.66], [-2083.87, -1017.18], [-2088.19, -1017.03], [-2088.13, -1015.5], [-2089.28, -1015.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2100.83, -1002.72], [-2092.1, -1003.09], [-2092.64, -1015.55], [-2101.37, -1015.17], [-2100.83, -1002.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2110.92, -1002.67], [-2104.43, -1002.94], [-2104.95, -1015.28], [-2111.44, -1015.02], [-2110.92, -1002.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2111.69, -1031.89], [-2102.67, -1032.16], [-2102.99, -1042.48], [-2103.48, -1042.47], [-2103.54, -1044.38], [-2111.61, -1044.13], [-2111.54, -1042.07], [-2111.99, -1042.06], [-2111.69, -1031.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2100.84, -1032.36], [-2092.42, -1032.71], [-2092.93, -1044.85], [-2101.36, -1044.48], [-2100.84, -1032.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2089.64, -1032.81], [-2090.19, -1044.79], [-2082.22, -1045.16], [-2081.68, -1033.17], [-2085.18, -1033.01], [-2085.11, -1031.41], [-2087.56, -1031.31], [-2087.63, -1032.9], [-2089.64, -1032.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2079.39, -1033.47], [-2071.21, -1033.79], [-2071.58, -1042.93], [-2072.35, -1042.89], [-2072.43, -1044.79], [-2079.25, -1044.52], [-2079.17, -1042.62], [-2079.76, -1042.59], [-2079.39, -1033.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2120.49, -1083.9], [-2112.17, -1084.22], [-2112.68, -1097.49], [-2121.0, -1097.17], [-2120.49, -1083.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2110.46, -1084.48], [-2107.17, -1084.55], [-2107.18, -1085.26], [-2105.13, -1085.32], [-2105.15, -1086.14], [-2103.25, -1086.19], [-2103.53, -1097.65], [-2110.77, -1097.46], [-2110.46, -1084.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2101.72, -1081.17], [-2091.92, -1081.58], [-2092.25, -1089.45], [-2089.42, -1089.56], [-2089.63, -1094.48], [-2102.25, -1093.95], [-2101.72, -1081.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2076.58, -1086.85], [-2076.86, -1096.54], [-2069.49, -1096.75], [-2069.21, -1087.07], [-2076.58, -1086.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2065.73, -1081.89], [-2057.17, -1082.19], [-2057.75, -1098.66], [-2066.31, -1098.36], [-2065.73, -1081.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2047.89, -1086.13], [-2048.33, -1102.13], [-2030.26, -1102.62], [-2029.82, -1086.63], [-2047.89, -1086.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-2042.75, -1071.43], [-2033.75, -1071.69], [-2033.84, -1074.85], [-2031.9, -1074.91], [-2032.06, -1080.3], [-2033.99, -1080.24], [-2034.02, -1081.05], [-2043.02, -1080.79], [-2042.75, -1071.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2051.32, -1061.28], [-2047.77, -1061.41], [-2048.05, -1069.02], [-2051.59, -1068.9], [-2051.32, -1061.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2047.26, -1059.96], [-2043.81, -1060.06], [-2044.0, -1066.97], [-2047.46, -1066.88], [-2047.26, -1059.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2042.17, -1058.88], [-2033.61, -1059.18], [-2033.65, -1060.31], [-2032.42, -1060.36], [-2032.62, -1066.18], [-2033.86, -1066.14], [-2033.92, -1067.93], [-2042.48, -1067.64], [-2042.17, -1058.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2074.88, -1059.84], [-2075.28, -1069.29], [-2067.31, -1069.63], [-2066.91, -1060.18], [-2067.73, -1060.14], [-2067.65, -1058.22], [-2074.03, -1057.95], [-2074.12, -1059.87], [-2074.88, -1059.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2120.73, -1056.37], [-2121.2, -1068.54], [-2129.77, -1068.21], [-2129.29, -1056.03], [-2120.73, -1056.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2115.06, -1056.67], [-2107.2, -1056.9], [-2107.51, -1067.67], [-2110.4, -1067.59], [-2110.45, -1069.0], [-2115.41, -1068.86], [-2115.06, -1056.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2098.13, -1057.87], [-2098.36, -1065.82], [-2082.33, -1066.28], [-2082.1, -1058.32], [-2098.13, -1057.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2168.21, -1693.38], [-2168.5, -1697.15], [-2170.34, -1697.01], [-2170.72, -1702.02], [-2158.6, -1702.94], [-2157.94, -1694.15], [-2168.21, -1693.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2152.61, -1690.45], [-2152.7, -1693.5], [-2146.86, -1693.67], [-2146.77, -1690.62], [-2152.61, -1690.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2145.11, -1693.12], [-2145.39, -1702.52], [-2131.73, -1702.92], [-2131.46, -1693.52], [-2145.11, -1693.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2131.08, -1679.04], [-2131.23, -1683.49], [-2132.79, -1683.45], [-2132.89, -1686.5], [-2134.13, -1686.46], [-2134.22, -1689.17], [-2142.96, -1688.87], [-2142.62, -1678.65], [-2131.08, -1679.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2171.35, -1678.92], [-2171.67, -1688.35], [-2160.26, -1688.73], [-2160.01, -1681.16], [-2162.51, -1681.07], [-2162.45, -1679.22], [-2171.35, -1678.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2140.61, -1664.96], [-2131.2, -1665.21], [-2131.42, -1673.42], [-2133.6, -1673.36], [-2133.69, -1676.78], [-2138.49, -1676.65], [-2138.4, -1673.2], [-2140.82, -1673.13], [-2140.61, -1664.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2173.33, -1667.35], [-2173.66, -1675.76], [-2162.14, -1676.2], [-2161.81, -1667.78], [-2173.33, -1667.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2171.32, -1653.21], [-2171.6, -1661.23], [-2161.66, -1661.57], [-2161.39, -1653.55], [-2171.32, -1653.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2146.58, -1651.48], [-2146.65, -1654.31], [-2143.96, -1654.38], [-2144.19, -1662.63], [-2129.66, -1663.03], [-2129.42, -1654.4], [-2136.16, -1654.22], [-2136.14, -1653.62], [-2140.24, -1653.5], [-2140.19, -1651.66], [-2146.58, -1651.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2140.89, -1638.08], [-2141.16, -1649.54], [-2130.4, -1649.79], [-2130.13, -1638.33], [-2140.89, -1638.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2170.19, -1638.33], [-2170.21, -1639.08], [-2172.06, -1639.03], [-2172.29, -1646.98], [-2170.44, -1647.03], [-2170.46, -1647.9], [-2157.85, -1648.26], [-2157.57, -1638.69], [-2170.19, -1638.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2172.72, -1627.49], [-2172.96, -1635.75], [-2160.62, -1636.11], [-2160.37, -1627.86], [-2172.72, -1627.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2169.24, -1611.23], [-2169.39, -1619.38], [-2159.78, -1619.54], [-2159.63, -1611.4], [-2169.24, -1611.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2142.38, -1615.74], [-2142.52, -1620.34], [-2145.84, -1620.23], [-2146.06, -1627.35], [-2138.96, -1627.58], [-2138.76, -1621.01], [-2130.53, -1621.27], [-2130.25, -1612.1], [-2140.08, -1611.79], [-2140.2, -1615.81], [-2142.38, -1615.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2140.16, -1597.59], [-2140.54, -1607.25], [-2136.08, -1607.42], [-2136.0, -1605.42], [-2134.08, -1605.5], [-2134.17, -1607.5], [-2130.06, -1607.66], [-2129.57, -1595.07], [-2135.52, -1594.84], [-2135.64, -1597.76], [-2140.16, -1597.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2168.71, -1599.16], [-2168.96, -1606.6], [-2157.7, -1606.96], [-2157.48, -1600.06], [-2160.43, -1599.96], [-2160.25, -1594.52], [-2166.12, -1594.33], [-2166.28, -1599.24], [-2168.71, -1599.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2168.74, -1580.0], [-2168.94, -1589.74], [-2156.87, -1589.99], [-2156.67, -1580.26], [-2168.74, -1580.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2148.99, -1587.1], [-2149.2, -1592.73], [-2142.87, -1592.96], [-2142.66, -1587.33], [-2148.99, -1587.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2138.03, -1580.83], [-2138.31, -1589.6], [-2126.69, -1589.98], [-2126.41, -1581.21], [-2138.03, -1580.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2141.09, -1564.4], [-2141.23, -1567.46], [-2137.18, -1567.64], [-2137.6, -1577.11], [-2126.48, -1577.61], [-2126.04, -1567.88], [-2133.18, -1567.57], [-2133.05, -1564.77], [-2141.09, -1564.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2167.55, -1565.55], [-2159.92, -1565.66], [-2160.06, -1574.1], [-2162.55, -1574.06], [-2162.58, -1575.41], [-2165.47, -1575.36], [-2165.45, -1574.01], [-2167.69, -1573.98], [-2167.55, -1565.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2155.13, -1572.76], [-2150.32, -1572.78], [-2150.34, -1576.91], [-2155.14, -1576.89], [-2155.13, -1572.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2158.68, -1562.8], [-2158.76, -1565.8], [-2153.03, -1565.96], [-2152.94, -1562.96], [-2158.68, -1562.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2169.95, -1550.06], [-2170.13, -1558.89], [-2155.04, -1559.2], [-2154.89, -1552.27], [-2156.82, -1552.24], [-2156.79, -1550.33], [-2169.95, -1550.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2167.48, -1534.61], [-2167.52, -1535.87], [-2169.21, -1535.82], [-2169.41, -1542.73], [-2167.72, -1542.78], [-2167.75, -1543.75], [-2155.02, -1544.12], [-2154.76, -1534.98], [-2167.48, -1534.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2154.59, -1543.32], [-2154.75, -1547.13], [-2148.76, -1547.4], [-2148.58, -1543.59], [-2154.59, -1543.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2136.57, -1540.92], [-2126.76, -1541.31], [-2126.84, -1543.14], [-2125.17, -1543.2], [-2125.39, -1548.69], [-2127.06, -1548.62], [-2127.13, -1550.36], [-2130.84, -1550.2], [-2131.05, -1555.33], [-2138.66, -1555.03], [-2138.44, -1549.59], [-2136.92, -1549.65], [-2136.57, -1540.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2135.46, -1529.99], [-2127.53, -1530.28], [-2127.85, -1539.03], [-2135.78, -1538.75], [-2135.46, -1529.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2135.14, -1518.03], [-2127.14, -1518.27], [-2127.42, -1527.41], [-2135.42, -1527.17], [-2135.36, -1525.16], [-2137.1, -1525.09], [-2136.99, -1521.77], [-2135.26, -1521.84], [-2135.14, -1518.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2168.6, -1520.04], [-2168.99, -1529.04], [-2157.96, -1529.52], [-2157.57, -1520.53], [-2168.6, -1520.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2166.74, -1508.72], [-2166.94, -1513.85], [-2161.31, -1514.06], [-2161.11, -1508.93], [-2166.74, -1508.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2133.62, -1508.89], [-2128.12, -1509.01], [-2128.25, -1514.3], [-2133.73, -1514.17], [-2133.62, -1508.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2134.01, -1492.65], [-2124.93, -1492.96], [-2125.29, -1503.18], [-2127.34, -1503.11], [-2127.43, -1505.93], [-2131.97, -1505.78], [-2131.87, -1502.96], [-2134.36, -1502.88], [-2134.01, -1492.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2145.26, -1491.64], [-2145.76, -1503.98], [-2146.74, -1503.94], [-2146.95, -1508.98], [-2136.74, -1509.4], [-2136.04, -1492.0], [-2137.07, -1491.96], [-2137.0, -1490.09], [-2144.21, -1489.8], [-2144.29, -1491.68], [-2145.26, -1491.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2142.35, -1510.17], [-2147.81, -1510.02], [-2147.93, -1514.1], [-2142.47, -1514.26], [-2142.35, -1510.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2151.92, -1504.27], [-2147.99, -1504.42], [-2148.22, -1510.4], [-2152.13, -1510.26], [-2151.92, -1504.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2157.44, -1489.38], [-2148.94, -1489.74], [-2149.45, -1501.49], [-2154.45, -1501.28], [-2154.51, -1502.78], [-2158.01, -1502.62], [-2157.44, -1489.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2169.33, -1488.95], [-2169.7, -1503.47], [-2160.04, -1503.73], [-2159.67, -1489.2], [-2169.33, -1488.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1869.33, -1761.54], [-1869.47, -1765.32], [-1864.24, -1765.51], [-1864.11, -1761.73], [-1869.33, -1761.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1861.04, -1766.99], [-1853.2, -1767.22], [-1853.43, -1775.06], [-1861.25, -1774.83], [-1861.04, -1766.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1836.62, -1775.21], [-1836.36, -1767.9], [-1843.78, -1767.63], [-1844.04, -1774.95], [-1836.62, -1775.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1835.29, -1768.88], [-1828.27, -1769.15], [-1828.51, -1775.56], [-1835.53, -1775.29], [-1835.29, -1768.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1920.41, -1734.57], [-1920.69, -1742.8], [-1909.56, -1743.19], [-1909.35, -1736.71], [-1912.23, -1736.61], [-1912.17, -1734.86], [-1912.36, -1734.86], [-1912.26, -1731.98], [-1915.12, -1731.89], [-1915.22, -1734.75], [-1920.41, -1734.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1895.17, -1734.87], [-1903.69, -1734.56], [-1903.83, -1738.16], [-1904.9, -1738.12], [-1905.15, -1745.06], [-1904.08, -1745.1], [-1904.21, -1748.71], [-1895.69, -1749.02], [-1895.17, -1734.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1890.86, -1739.35], [-1891.35, -1751.71], [-1882.23, -1752.06], [-1881.75, -1739.71], [-1882.74, -1739.67], [-1882.64, -1737.05], [-1889.57, -1736.79], [-1889.68, -1739.41], [-1890.86, -1739.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1872.82, -1736.94], [-1872.86, -1738.8], [-1874.96, -1738.75], [-1875.03, -1742.1], [-1872.94, -1742.14], [-1873.03, -1746.07], [-1863.86, -1746.26], [-1863.65, -1737.13], [-1872.82, -1736.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1860.08, -1738.43], [-1860.47, -1749.56], [-1852.12, -1749.86], [-1851.73, -1738.73], [-1852.38, -1738.71], [-1852.29, -1736.28], [-1859.23, -1736.04], [-1859.31, -1738.47], [-1860.08, -1738.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1845.72, -1738.23], [-1846.18, -1752.36], [-1838.92, -1752.6], [-1838.46, -1738.48], [-1840.95, -1738.39], [-1840.89, -1736.76], [-1844.77, -1736.64], [-1844.83, -1738.26], [-1845.72, -1738.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1833.55, -1737.56], [-1824.32, -1737.83], [-1824.65, -1749.36], [-1825.57, -1749.34], [-1825.68, -1752.98], [-1833.16, -1752.77], [-1833.06, -1749.12], [-1833.88, -1749.1], [-1833.55, -1737.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1821.72, -1738.99], [-1812.52, -1739.31], [-1812.84, -1749.05], [-1822.06, -1748.73], [-1821.72, -1738.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1810.85, -1740.94], [-1802.27, -1741.14], [-1802.52, -1751.81], [-1811.11, -1751.6], [-1810.85, -1740.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1800.0, -1741.52], [-1791.36, -1741.77], [-1791.68, -1752.81], [-1800.31, -1752.56], [-1800.0, -1741.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1811.77, -1754.09], [-1812.03, -1763.06], [-1803.9, -1763.3], [-1803.64, -1754.32], [-1811.77, -1754.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1805.54, -1767.22], [-1805.83, -1775.02], [-1797.66, -1775.32], [-1797.37, -1767.53], [-1805.54, -1767.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2096.33, -1494.57], [-2086.37, -1494.79], [-2086.52, -1501.68], [-2089.97, -1501.61], [-2090.05, -1505.48], [-2096.2, -1505.35], [-2096.11, -1501.65], [-2096.48, -1501.64], [-2096.33, -1494.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2081.44, -1496.43], [-2071.63, -1496.62], [-2071.86, -1509.13], [-2081.68, -1508.95], [-2081.44, -1496.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2065.48, -1499.82], [-2058.7, -1500.0], [-2058.73, -1501.04], [-2056.29, -1501.1], [-2056.72, -1516.08], [-2065.93, -1515.81], [-2065.48, -1499.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2052.86, -1493.22], [-2053.02, -1502.86], [-2043.68, -1503.01], [-2043.53, -1494.39], [-2049.86, -1494.29], [-2049.85, -1493.28], [-2052.86, -1493.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2040.72, -1493.88], [-2040.95, -1502.7], [-2032.1, -1502.93], [-2031.96, -1497.84], [-2030.46, -1497.87], [-2030.33, -1492.75], [-2035.78, -1492.6], [-2035.81, -1494.02], [-2040.72, -1493.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2027.16, -1493.18], [-2018.22, -1493.47], [-2018.63, -1505.99], [-2027.58, -1505.69], [-2027.16, -1493.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2022.74, -1515.52], [-2030.22, -1515.29], [-2030.38, -1520.68], [-2033.76, -1520.58], [-2033.91, -1525.97], [-2021.59, -1526.33], [-2021.43, -1520.85], [-2022.9, -1520.8], [-2022.74, -1515.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2037.8, -1530.67], [-2038.02, -1538.61], [-2023.06, -1539.04], [-2022.84, -1531.1], [-2037.8, -1530.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2039.38, -1542.89], [-2039.56, -1551.39], [-2033.65, -1551.52], [-2033.69, -1553.21], [-2025.25, -1553.39], [-2025.24, -1552.53], [-2022.99, -1552.58], [-2022.82, -1545.07], [-2025.08, -1545.02], [-2025.06, -1544.24], [-2031.16, -1544.11], [-2031.14, -1543.08], [-2039.38, -1542.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2067.72, -1542.0], [-2067.97, -1548.39], [-2058.42, -1548.76], [-2058.09, -1540.27], [-2066.22, -1539.95], [-2066.3, -1542.05], [-2067.72, -1542.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2067.26, -1529.79], [-2073.78, -1529.55], [-2074.02, -1535.92], [-2067.5, -1536.16], [-2067.26, -1529.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2081.19, -1537.74], [-2081.64, -1549.35], [-2072.52, -1549.7], [-2072.07, -1538.09], [-2074.03, -1538.01], [-2073.97, -1536.44], [-2078.55, -1536.27], [-2078.61, -1537.83], [-2081.19, -1537.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2092.9, -1538.72], [-2085.39, -1539.01], [-2085.82, -1550.16], [-2093.33, -1549.87], [-2092.9, -1538.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2097.26, -1537.09], [-2106.94, -1536.73], [-2107.46, -1550.53], [-2102.78, -1550.7], [-2102.65, -1547.4], [-2097.65, -1547.59], [-2097.26, -1537.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2088.72, -1528.27], [-2082.85, -1528.33], [-2082.9, -1534.0], [-2088.77, -1533.94], [-2088.72, -1528.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2103.97, -1516.9], [-2104.03, -1520.38], [-2106.32, -1520.33], [-2106.42, -1525.29], [-2096.77, -1525.46], [-2096.77, -1524.9], [-2090.08, -1525.02], [-2089.97, -1519.06], [-2093.68, -1518.98], [-2093.64, -1517.08], [-2103.97, -1516.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2105.88, -1509.32], [-2105.91, -1515.23], [-2099.08, -1515.26], [-2099.05, -1509.36], [-2105.88, -1509.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2105.74, -1494.73], [-2097.43, -1494.93], [-2097.73, -1507.45], [-2100.79, -1507.38], [-2100.82, -1508.38], [-2103.88, -1508.3], [-2103.86, -1507.3], [-2106.04, -1507.25], [-2105.74, -1494.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2036.3, -1557.52], [-2036.42, -1561.74], [-2034.77, -1561.79], [-2034.91, -1566.4], [-2023.72, -1566.72], [-2023.46, -1557.9], [-2036.3, -1557.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2035.51, -1577.71], [-2035.33, -1571.32], [-2025.77, -1571.58], [-2025.78, -1572.15], [-2024.1, -1572.2], [-2024.25, -1577.37], [-2025.93, -1577.32], [-2025.95, -1577.98], [-2035.51, -1577.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2052.88, -1567.18], [-2052.95, -1571.45], [-2046.78, -1571.56], [-2046.7, -1567.29], [-2052.88, -1567.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2067.38, -1570.62], [-2067.72, -1579.95], [-2059.15, -1580.26], [-2058.8, -1570.94], [-2060.06, -1570.89], [-2060.0, -1569.11], [-2066.11, -1568.89], [-2066.17, -1570.67], [-2067.38, -1570.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2079.33, -1568.68], [-2072.11, -1568.8], [-2072.26, -1578.21], [-2079.48, -1578.09], [-2079.47, -1577.51], [-2083.47, -1577.44], [-2083.36, -1570.84], [-2079.37, -1570.9], [-2079.33, -1568.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2104.78, -1566.57], [-2104.8, -1567.28], [-2107.12, -1567.22], [-2107.28, -1574.08], [-2104.96, -1574.13], [-2104.97, -1574.56], [-2093.98, -1574.82], [-2093.99, -1575.44], [-2084.75, -1575.66], [-2084.59, -1568.77], [-2090.55, -1568.63], [-2090.63, -1571.92], [-2094.1, -1571.83], [-2093.98, -1566.82], [-2104.78, -1566.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2107.26, -1576.79], [-2107.27, -1577.34], [-2109.0, -1577.32], [-2109.02, -1580.75], [-2107.3, -1580.77], [-2107.33, -1583.32], [-2106.99, -1583.32], [-2107.05, -1588.67], [-2098.79, -1588.74], [-2098.72, -1581.07], [-2092.65, -1581.12], [-2092.61, -1577.48], [-2098.69, -1577.41], [-2098.68, -1576.88], [-2107.26, -1576.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2098.04, -1597.56], [-2098.12, -1601.76], [-2092.37, -1601.87], [-2092.29, -1597.67], [-2098.04, -1597.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2106.61, -1590.27], [-2106.63, -1590.91], [-2108.7, -1590.85], [-2108.82, -1595.05], [-2106.74, -1595.1], [-2106.86, -1599.3], [-2098.56, -1599.53], [-2098.31, -1590.5], [-2106.61, -1590.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2106.63, -1602.43], [-2106.89, -1612.87], [-2102.06, -1612.99], [-2102.01, -1610.6], [-2098.11, -1610.7], [-2098.06, -1608.6], [-2094.0, -1608.69], [-2093.84, -1602.44], [-2098.87, -1602.32], [-2098.87, -1602.62], [-2106.63, -1602.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2090.66, -1601.99], [-2084.91, -1602.05], [-2084.98, -1610.71], [-2090.74, -1610.64], [-2090.66, -1601.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2084.27, -1590.8], [-2079.53, -1590.94], [-2079.69, -1596.59], [-2084.44, -1596.45], [-2084.27, -1590.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2080.19, -1599.74], [-2080.51, -1609.86], [-2078.39, -1609.92], [-2078.47, -1612.3], [-2073.22, -1612.47], [-2073.15, -1610.09], [-2072.37, -1610.11], [-2072.05, -1600.0], [-2080.19, -1599.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2070.33, -1602.25], [-2070.69, -1610.41], [-2069.86, -1610.44], [-2069.91, -1611.67], [-2063.85, -1611.94], [-2063.8, -1610.69], [-2062.56, -1610.75], [-2062.2, -1602.59], [-2063.19, -1602.55], [-2063.06, -1599.48], [-2069.22, -1599.21], [-2069.36, -1602.29], [-2070.33, -1602.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2034.44, -1579.96], [-2025.09, -1580.31], [-2025.14, -1581.98], [-2023.71, -1582.03], [-2023.94, -1588.4], [-2025.38, -1588.34], [-2025.43, -1589.72], [-2034.79, -1589.37], [-2034.61, -1584.71], [-2035.42, -1584.68], [-2035.27, -1580.65], [-2034.46, -1580.68], [-2034.44, -1579.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2038.6, -1600.9], [-2038.56, -1599.29], [-2040.46, -1599.25], [-2040.4, -1596.58], [-2038.5, -1596.63], [-2038.41, -1593.14], [-2026.04, -1593.43], [-2026.07, -1594.26], [-2024.01, -1594.31], [-2024.16, -1600.46], [-2026.21, -1600.41], [-2026.23, -1601.19], [-2038.6, -1600.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2053.42, -1597.56], [-2047.91, -1597.93], [-2048.29, -1603.64], [-2053.81, -1603.27], [-2053.42, -1597.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2038.18, -1605.03], [-2038.2, -1605.78], [-2041.5, -1605.68], [-2041.71, -1611.99], [-2038.4, -1612.1], [-2038.46, -1613.8], [-2023.88, -1614.27], [-2023.59, -1605.5], [-2038.18, -1605.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2045.5, -1612.55], [-2045.76, -1617.18], [-2040.25, -1617.48], [-2039.99, -1612.86], [-2045.5, -1612.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2039.1, -1618.83], [-2039.33, -1628.03], [-2026.93, -1628.34], [-2026.7, -1619.13], [-2039.1, -1618.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2038.95, -1631.9], [-2039.24, -1642.08], [-2027.12, -1642.42], [-2027.01, -1638.89], [-2025.43, -1638.94], [-2025.33, -1635.56], [-2026.92, -1635.52], [-2026.82, -1632.25], [-2038.95, -1631.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2034.91, -1643.46], [-2035.11, -1651.03], [-2026.69, -1651.26], [-2026.68, -1650.88], [-2024.74, -1650.93], [-2024.57, -1644.79], [-2026.51, -1644.73], [-2026.48, -1643.69], [-2034.91, -1643.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2036.21, -1657.2], [-2036.25, -1658.56], [-2038.77, -1658.47], [-2038.94, -1663.86], [-2036.42, -1663.94], [-2036.46, -1664.97], [-2024.94, -1665.34], [-2024.69, -1657.56], [-2036.21, -1657.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2069.39, -1631.24], [-2065.18, -1631.34], [-2065.2, -1631.97], [-2064.0, -1631.99], [-2063.99, -1631.46], [-2059.94, -1631.56], [-2060.16, -1641.32], [-2069.62, -1641.09], [-2069.39, -1631.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2082.86, -1630.3], [-2083.31, -1643.86], [-2082.05, -1643.89], [-2082.1, -1645.47], [-2078.99, -1645.57], [-2078.94, -1644.0], [-2074.44, -1644.14], [-2073.99, -1630.59], [-2082.86, -1630.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2086.16, -1645.95], [-2082.19, -1646.11], [-2082.42, -1652.14], [-2086.39, -1651.99], [-2086.16, -1645.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2094.14, -1646.0], [-2094.41, -1651.07], [-2087.42, -1651.44], [-2087.16, -1646.37], [-2094.14, -1646.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2099.31, -1641.92], [-2099.45, -1644.82], [-2097.58, -1644.9], [-2097.71, -1647.71], [-2099.58, -1647.62], [-2099.6, -1647.93], [-2107.73, -1647.56], [-2107.44, -1641.54], [-2099.31, -1641.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2092.45, -1631.08], [-2086.55, -1631.25], [-2086.74, -1637.93], [-2092.65, -1637.76], [-2092.45, -1631.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2107.51, -1628.3], [-2107.75, -1636.79], [-2095.9, -1637.13], [-2095.66, -1628.64], [-2107.51, -1628.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2041.19, -1669.5], [-2041.42, -1678.77], [-2023.92, -1679.2], [-2023.77, -1673.01], [-2024.99, -1672.98], [-2024.91, -1669.9], [-2041.19, -1669.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2039.71, -1680.83], [-2032.58, -1681.0], [-2032.74, -1687.44], [-2039.86, -1687.27], [-2039.71, -1680.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2033.43, -1689.18], [-2033.84, -1703.35], [-2024.5, -1703.62], [-2024.09, -1689.46], [-2028.76, -1689.31], [-2028.69, -1686.65], [-2032.45, -1686.54], [-2032.53, -1689.21], [-2033.43, -1689.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2065.27, -1653.09], [-2073.46, -1652.94], [-2073.51, -1655.52], [-2074.37, -1655.51], [-2074.52, -1663.48], [-2065.46, -1663.65], [-2065.27, -1653.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2059.92, -1691.48], [-2060.14, -1700.51], [-2056.31, -1700.59], [-2056.38, -1703.52], [-2050.14, -1703.66], [-2050.08, -1700.74], [-2048.89, -1700.77], [-2048.67, -1691.74], [-2059.92, -1691.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2059.46, -1679.12], [-2050.44, -1679.38], [-2050.68, -1687.54], [-2059.69, -1687.28], [-2059.46, -1679.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2074.28, -1677.82], [-2062.51, -1678.08], [-2062.86, -1693.63], [-2062.02, -1693.64], [-2062.16, -1699.93], [-2068.79, -1699.78], [-2068.77, -1698.82], [-2074.74, -1698.7], [-2074.28, -1677.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[-2092.66, -1686.66], [-2092.98, -1698.53], [-2080.91, -1698.85], [-2080.6, -1686.97], [-2082.36, -1686.92], [-2082.28, -1683.74], [-2089.92, -1683.53], [-2090.0, -1686.72], [-2092.66, -1686.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2104.89, -1654.43], [-2105.05, -1663.96], [-2087.29, -1664.26], [-2087.14, -1654.73], [-2104.89, -1654.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2082.81, -1660.76], [-2075.41, -1660.99], [-2075.7, -1671.01], [-2077.73, -1670.95], [-2077.92, -1677.41], [-2086.7, -1677.16], [-2086.5, -1670.15], [-2083.09, -1670.25], [-2082.81, -1660.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1878.16, -1575.9], [-1878.48, -1586.71], [-1876.98, -1586.76], [-1877.05, -1589.03], [-1871.15, -1589.2], [-1871.09, -1586.92], [-1869.64, -1586.98], [-1869.28, -1574.88], [-1873.69, -1574.76], [-1873.73, -1576.03], [-1878.16, -1575.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1865.66, -1577.32], [-1866.0, -1589.49], [-1855.23, -1589.79], [-1854.9, -1577.62], [-1855.56, -1577.6], [-1855.52, -1576.13], [-1861.92, -1575.95], [-1861.95, -1577.43], [-1865.66, -1577.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1847.77, -1562.25], [-1847.92, -1566.69], [-1842.29, -1566.88], [-1842.15, -1562.45], [-1847.77, -1562.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1852.7, -1573.74], [-1847.24, -1573.95], [-1847.32, -1575.99], [-1843.23, -1576.14], [-1843.78, -1590.14], [-1853.33, -1589.77], [-1852.7, -1573.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1829.79, -1573.42], [-1836.78, -1573.2], [-1836.94, -1578.59], [-1838.9, -1578.53], [-1839.16, -1587.23], [-1836.32, -1587.32], [-1836.34, -1588.31], [-1830.23, -1588.49], [-1829.79, -1573.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1825.44, -1576.95], [-1817.2, -1577.19], [-1817.32, -1581.22], [-1816.11, -1581.25], [-1816.24, -1585.93], [-1817.55, -1585.89], [-1817.68, -1590.36], [-1821.34, -1590.25], [-1821.37, -1591.23], [-1825.19, -1591.12], [-1825.04, -1585.68], [-1825.69, -1585.66], [-1825.44, -1576.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1813.78, -1571.02], [-1813.98, -1576.04], [-1807.65, -1576.3], [-1807.45, -1571.28], [-1813.78, -1571.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1810.2, -1564.0], [-1810.38, -1570.09], [-1803.23, -1570.3], [-1803.05, -1564.2], [-1810.2, -1564.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1801.9, -1585.09], [-1793.43, -1585.28], [-1793.52, -1589.25], [-1791.82, -1589.29], [-1791.93, -1594.35], [-1802.11, -1594.13], [-1802.04, -1591.02], [-1803.05, -1591.0], [-1802.98, -1587.9], [-1801.97, -1587.92], [-1801.9, -1585.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1803.18, -1574.17], [-1803.36, -1582.58], [-1785.73, -1582.97], [-1785.54, -1574.56], [-1803.18, -1574.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1798.32, -1562.76], [-1798.43, -1565.64], [-1802.46, -1565.48], [-1802.64, -1570.01], [-1798.61, -1570.17], [-1798.62, -1570.59], [-1789.46, -1570.95], [-1789.14, -1563.12], [-1789.69, -1563.11], [-1789.57, -1560.25], [-1795.31, -1560.02], [-1795.42, -1562.87], [-1798.32, -1562.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1797.36, -1550.56], [-1794.96, -1550.65], [-1794.87, -1548.13], [-1789.68, -1548.31], [-1789.78, -1550.83], [-1788.81, -1550.87], [-1789.09, -1558.68], [-1797.64, -1558.37], [-1797.36, -1550.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1803.84, -1537.6], [-1804.08, -1545.84], [-1791.08, -1546.22], [-1791.06, -1545.54], [-1788.58, -1545.61], [-1788.38, -1538.54], [-1790.86, -1538.46], [-1790.84, -1537.99], [-1803.84, -1537.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1841.08, -1546.94], [-1841.43, -1555.18], [-1832.7, -1555.55], [-1832.35, -1547.3], [-1841.08, -1546.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1864.86, -1545.41], [-1864.97, -1553.02], [-1856.33, -1553.14], [-1856.23, -1545.53], [-1864.86, -1545.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1862.75, -1524.75], [-1862.99, -1533.02], [-1855.51, -1533.24], [-1855.26, -1524.97], [-1862.75, -1524.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1872.41, -1498.39], [-1872.83, -1510.22], [-1872.22, -1510.23], [-1872.26, -1511.34], [-1868.33, -1511.49], [-1868.29, -1510.38], [-1864.44, -1510.51], [-1864.02, -1498.69], [-1872.41, -1498.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1862.32, -1498.57], [-1853.69, -1498.78], [-1853.98, -1510.81], [-1854.64, -1510.79], [-1854.66, -1511.8], [-1857.29, -1511.74], [-1857.27, -1510.73], [-1862.62, -1510.6], [-1862.32, -1498.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1798.96, -1497.74], [-1799.21, -1504.74], [-1795.86, -1504.85], [-1795.88, -1505.43], [-1785.36, -1505.79], [-1785.1, -1498.22], [-1798.96, -1497.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1799.35, -1506.77], [-1799.65, -1514.44], [-1796.38, -1514.56], [-1796.41, -1515.35], [-1785.94, -1515.78], [-1785.6, -1507.32], [-1799.35, -1506.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1796.58, -1515.93], [-1796.78, -1521.89], [-1792.27, -1522.05], [-1792.28, -1522.47], [-1788.17, -1522.62], [-1788.16, -1522.21], [-1786.14, -1522.28], [-1785.94, -1516.59], [-1787.95, -1516.52], [-1787.95, -1516.23], [-1796.58, -1515.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[86.63, 658.26], [76.39, 669.39], [75.99, 671.78], [74.89, 672.87], [74.15, 675.2], [72.85, 676.35], [70.22, 676.04], [63.79, 665.78], [62.79, 661.35], [62.9, 655.53], [64.53, 649.71], [67.55, 644.45], [71.43, 642.38], [73.31, 643.3], [86.63, 658.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.304, "pop": 0, "jobs": 304}}, {"shape": {"outer": [[-1626.15, -1402.92], [-1614.85, -1403.24], [-1615.1, -1411.84], [-1626.4, -1411.51], [-1626.38, -1410.91], [-1628.46, -1410.85], [-1628.26, -1403.83], [-1626.18, -1403.89], [-1626.15, -1402.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1625.11, -1381.65], [-1625.17, -1391.52], [-1615.28, -1391.59], [-1615.22, -1381.71], [-1625.11, -1381.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1607.8, -1383.37], [-1599.0, -1383.48], [-1599.22, -1401.99], [-1601.54, -1401.95], [-1601.57, -1404.18], [-1605.82, -1404.12], [-1605.8, -1401.91], [-1608.01, -1401.88], [-1607.8, -1383.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1592.02, -1386.34], [-1589.72, -1386.42], [-1589.7, -1385.7], [-1584.35, -1385.86], [-1584.37, -1386.58], [-1582.61, -1386.65], [-1583.13, -1403.24], [-1592.54, -1402.94], [-1592.02, -1386.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1578.17, -1382.59], [-1569.75, -1382.75], [-1570.0, -1397.34], [-1578.42, -1397.19], [-1578.17, -1382.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1566.28, -1386.38], [-1566.65, -1403.23], [-1558.18, -1403.42], [-1557.81, -1386.57], [-1559.01, -1386.53], [-1558.96, -1383.79], [-1564.63, -1383.67], [-1564.69, -1386.41], [-1566.28, -1386.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1577.43, -1423.15], [-1577.24, -1416.2], [-1568.06, -1416.45], [-1568.25, -1423.4], [-1577.43, -1423.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1566.09, -1413.99], [-1558.97, -1414.3], [-1559.3, -1422.29], [-1566.42, -1421.99], [-1566.09, -1413.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1593.8, -1416.09], [-1585.71, -1416.27], [-1585.88, -1423.99], [-1593.97, -1423.82], [-1593.8, -1416.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1626.56, -1415.26], [-1626.81, -1423.69], [-1616.11, -1424.0], [-1615.93, -1417.96], [-1617.51, -1417.91], [-1617.44, -1415.52], [-1626.56, -1415.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1611.97, -1456.81], [-1606.7, -1456.98], [-1606.5, -1450.99], [-1611.78, -1450.83], [-1611.97, -1456.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1601.26, -1433.14], [-1597.4, -1433.16], [-1597.42, -1437.84], [-1601.28, -1437.82], [-1601.26, -1433.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1627.69, -1430.8], [-1627.91, -1439.82], [-1615.84, -1440.11], [-1615.62, -1431.09], [-1627.69, -1430.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1626.32, -1441.95], [-1620.53, -1442.08], [-1620.7, -1450.02], [-1626.49, -1449.9], [-1626.32, -1441.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1628.24, -1451.17], [-1628.33, -1457.42], [-1621.51, -1457.52], [-1621.41, -1451.28], [-1628.24, -1451.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1618.81, -1456.52], [-1619.12, -1472.41], [-1611.42, -1472.55], [-1611.15, -1458.39], [-1614.57, -1458.32], [-1614.54, -1456.6], [-1618.81, -1456.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1607.23, -1470.16], [-1605.92, -1470.18], [-1605.96, -1472.04], [-1599.09, -1472.17], [-1598.87, -1459.8], [-1607.04, -1459.65], [-1607.23, -1470.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1586.61, -1458.25], [-1595.24, -1458.09], [-1595.5, -1470.53], [-1594.73, -1470.54], [-1594.76, -1472.16], [-1592.8, -1472.19], [-1592.78, -1471.34], [-1590.37, -1471.38], [-1590.36, -1470.63], [-1589.05, -1470.66], [-1588.96, -1466.27], [-1586.78, -1466.32], [-1586.61, -1458.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1950.13, -1574.73], [-1950.34, -1585.28], [-1946.08, -1585.37], [-1946.04, -1583.25], [-1941.89, -1583.34], [-1941.69, -1573.6], [-1945.13, -1573.53], [-1945.16, -1574.83], [-1950.13, -1574.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1938.12, -1574.22], [-1929.93, -1574.5], [-1930.27, -1584.84], [-1933.6, -1584.72], [-1933.63, -1585.79], [-1935.65, -1585.73], [-1935.62, -1584.65], [-1938.45, -1584.56], [-1938.12, -1574.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1927.35, -1546.22], [-1927.35, -1550.66], [-1920.3, -1550.63], [-1920.3, -1546.2], [-1927.35, -1546.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1927.72, -1570.5], [-1927.94, -1588.22], [-1921.55, -1588.3], [-1921.55, -1587.21], [-1918.09, -1587.25], [-1917.89, -1570.61], [-1920.73, -1570.57], [-1920.64, -1563.71], [-1926.81, -1563.63], [-1926.88, -1570.5], [-1927.72, -1570.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1895.42, -1543.65], [-1902.28, -1543.6], [-1902.32, -1550.63], [-1895.46, -1550.67], [-1895.42, -1543.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1912.05, -1551.77], [-1911.72, -1545.52], [-1902.82, -1546.0], [-1903.16, -1552.25], [-1912.05, -1551.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1913.25, -1573.97], [-1913.48, -1585.18], [-1912.94, -1585.18], [-1913.0, -1588.33], [-1905.63, -1588.48], [-1905.57, -1585.32], [-1904.84, -1585.35], [-1904.62, -1574.14], [-1905.44, -1574.12], [-1905.41, -1572.65], [-1909.78, -1572.55], [-1909.81, -1574.03], [-1913.25, -1573.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1900.93, -1569.63], [-1894.59, -1569.83], [-1894.75, -1574.92], [-1893.2, -1574.98], [-1893.36, -1579.97], [-1894.43, -1579.94], [-1894.62, -1586.01], [-1901.44, -1585.79], [-1900.93, -1569.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1885.98, -1560.38], [-1879.31, -1560.54], [-1879.51, -1568.59], [-1886.17, -1568.43], [-1885.98, -1560.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1889.64, -1571.53], [-1884.44, -1571.73], [-1884.68, -1577.89], [-1881.55, -1578.0], [-1881.85, -1586.3], [-1890.17, -1586.0], [-1889.64, -1571.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1963.34, -1573.46], [-1963.61, -1583.33], [-1962.9, -1583.35], [-1962.97, -1585.82], [-1955.38, -1586.04], [-1955.31, -1583.55], [-1954.33, -1583.58], [-1954.05, -1573.72], [-1954.98, -1573.69], [-1954.89, -1570.48], [-1962.48, -1570.27], [-1962.57, -1573.49], [-1963.34, -1573.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1978.99, -1583.78], [-1978.81, -1578.57], [-1976.43, -1578.65], [-1976.35, -1575.86], [-1965.8, -1576.21], [-1966.07, -1584.21], [-1978.99, -1583.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2001.22, -1575.54], [-2001.43, -1586.3], [-1981.87, -1586.67], [-1981.67, -1575.93], [-1986.96, -1575.82], [-1986.9, -1572.89], [-1995.69, -1572.72], [-1995.75, -1575.66], [-2001.22, -1575.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-1997.39, -1557.01], [-1997.59, -1566.52], [-1984.48, -1566.79], [-1984.29, -1557.28], [-1997.39, -1557.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1998.25, -1542.37], [-1998.51, -1552.01], [-1984.09, -1552.42], [-1984.07, -1551.73], [-1982.0, -1551.79], [-1981.87, -1547.17], [-1983.61, -1547.12], [-1983.56, -1545.21], [-1984.28, -1545.19], [-1984.21, -1542.77], [-1998.25, -1542.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1970.29, -1549.29], [-1970.36, -1554.1], [-1963.83, -1554.19], [-1963.75, -1549.39], [-1970.29, -1549.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1981.28, -1538.19], [-1981.36, -1542.16], [-1975.73, -1542.26], [-1975.66, -1538.31], [-1981.28, -1538.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1995.47, -1530.35], [-1995.5, -1531.2], [-1997.19, -1531.15], [-1997.36, -1536.1], [-1995.68, -1536.15], [-1995.72, -1537.23], [-1984.14, -1537.64], [-1983.9, -1530.75], [-1995.47, -1530.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1995.89, -1518.04], [-1996.17, -1526.35], [-1985.79, -1526.7], [-1985.76, -1525.74], [-1982.6, -1525.85], [-1982.39, -1519.6], [-1985.55, -1519.49], [-1985.51, -1518.4], [-1995.89, -1518.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1997.46, -1492.48], [-1991.0, -1492.63], [-1991.06, -1494.9], [-1988.16, -1494.97], [-1988.52, -1510.65], [-1997.87, -1510.44], [-1997.46, -1492.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1984.22, -1493.68], [-1976.13, -1493.79], [-1976.28, -1504.68], [-1984.37, -1504.57], [-1984.22, -1493.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1972.94, -1494.93], [-1964.58, -1495.12], [-1964.93, -1510.17], [-1971.77, -1510.01], [-1971.67, -1505.96], [-1973.2, -1505.93], [-1972.94, -1494.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1962.02, -1497.41], [-1954.42, -1497.48], [-1954.54, -1511.37], [-1962.15, -1511.3], [-1962.02, -1497.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1950.32, -1494.72], [-1950.67, -1506.3], [-1942.93, -1506.55], [-1942.57, -1494.97], [-1950.32, -1494.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1940.53, -1495.15], [-1932.66, -1495.22], [-1932.74, -1506.0], [-1940.62, -1505.93], [-1940.53, -1495.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1927.63, -1511.35], [-1934.76, -1511.13], [-1934.99, -1519.08], [-1927.87, -1519.29], [-1927.63, -1511.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1914.02, -1502.48], [-1914.08, -1507.18], [-1912.28, -1507.21], [-1912.27, -1506.37], [-1907.44, -1506.44], [-1907.39, -1503.28], [-1903.7, -1503.33], [-1903.58, -1494.53], [-1912.49, -1494.41], [-1912.6, -1502.5], [-1914.02, -1502.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1900.86, -1498.03], [-1897.9, -1498.07], [-1897.87, -1495.35], [-1893.49, -1495.41], [-1893.53, -1498.14], [-1891.85, -1498.17], [-1891.89, -1500.18], [-1889.69, -1500.21], [-1889.8, -1507.23], [-1891.98, -1507.2], [-1892.07, -1513.89], [-1897.39, -1513.81], [-1897.37, -1512.07], [-1900.37, -1512.03], [-1900.31, -1508.22], [-1901.01, -1508.21], [-1900.86, -1498.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1880.31, -1531.21], [-1880.15, -1525.61], [-1873.65, -1525.8], [-1873.81, -1531.4], [-1880.31, -1531.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1883.57, -1500.44], [-1883.85, -1511.97], [-1882.93, -1511.98], [-1882.97, -1513.63], [-1875.09, -1513.81], [-1875.05, -1512.18], [-1874.12, -1512.2], [-1873.85, -1500.67], [-1874.52, -1500.65], [-1874.46, -1498.51], [-1882.54, -1498.32], [-1882.59, -1500.47], [-1883.57, -1500.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1920.06, -1509.42], [-1914.46, -1509.54], [-1914.63, -1517.05], [-1920.24, -1516.93], [-1920.06, -1509.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1932.63, -1530.62], [-1932.6, -1538.53], [-1925.11, -1538.52], [-1925.14, -1530.6], [-1925.97, -1530.6], [-1925.97, -1529.05], [-1931.83, -1529.08], [-1931.82, -1530.61], [-1932.63, -1530.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1889.33, -1535.36], [-1889.47, -1542.81], [-1900.62, -1542.6], [-1900.48, -1535.15], [-1889.33, -1535.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1553.91, -1271.15], [-1548.17, -1271.32], [-1547.96, -1263.81], [-1553.69, -1263.64], [-1553.91, -1271.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1578.38, -1263.05], [-1578.58, -1276.04], [-1569.68, -1276.18], [-1569.47, -1263.19], [-1570.29, -1263.18], [-1570.26, -1261.57], [-1577.53, -1261.45], [-1577.55, -1263.06], [-1578.38, -1263.05]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1590.33, -1262.65], [-1590.59, -1272.51], [-1589.9, -1272.53], [-1589.98, -1275.19], [-1586.48, -1275.28], [-1586.41, -1272.62], [-1581.82, -1272.75], [-1581.67, -1267.15], [-1582.65, -1267.12], [-1582.53, -1262.86], [-1583.06, -1262.85], [-1583.02, -1261.12], [-1589.85, -1260.93], [-1589.9, -1262.66], [-1590.33, -1262.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1614.55, -1260.55], [-1614.79, -1273.79], [-1609.78, -1273.88], [-1609.81, -1275.58], [-1602.02, -1275.71], [-1602.02, -1276.1], [-1595.32, -1276.22], [-1595.05, -1260.82], [-1601.88, -1260.7], [-1601.9, -1262.23], [-1607.74, -1262.13], [-1607.72, -1260.67], [-1614.55, -1260.55]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1618.31, -1260.82], [-1624.42, -1260.64], [-1624.7, -1270.37], [-1623.95, -1270.39], [-1623.99, -1271.92], [-1618.63, -1272.08], [-1618.31, -1260.82]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1625.37, -1278.36], [-1616.35, -1278.5], [-1616.41, -1282.48], [-1614.76, -1282.51], [-1614.83, -1287.18], [-1625.51, -1287.02], [-1625.37, -1278.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1574.17, -1343.26], [-1562.43, -1343.6], [-1562.71, -1353.34], [-1570.84, -1353.11], [-1570.7, -1348.04], [-1574.3, -1347.94], [-1574.17, -1343.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1624.52, -1295.83], [-1615.4, -1295.88], [-1615.45, -1303.33], [-1620.54, -1303.3], [-1620.53, -1302.53], [-1624.56, -1302.51], [-1624.56, -1302.05], [-1626.51, -1302.03], [-1626.48, -1296.26], [-1624.52, -1296.27], [-1624.52, -1295.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1625.02, -1307.88], [-1625.17, -1318.17], [-1613.21, -1318.36], [-1613.18, -1316.71], [-1610.8, -1316.76], [-1610.73, -1311.75], [-1613.11, -1311.72], [-1613.05, -1308.06], [-1625.02, -1307.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1565.93, -1314.11], [-1560.91, -1314.34], [-1561.23, -1320.98], [-1566.24, -1320.75], [-1565.93, -1314.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1585.2, -1339.29], [-1576.54, -1339.65], [-1576.92, -1348.43], [-1578.12, -1348.37], [-1578.23, -1350.92], [-1584.67, -1350.64], [-1584.56, -1348.1], [-1585.57, -1348.06], [-1585.2, -1339.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1584.27, -1331.33], [-1589.02, -1331.27], [-1589.08, -1337.48], [-1584.33, -1337.53], [-1584.27, -1331.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1601.94, -1339.0], [-1594.12, -1339.12], [-1594.3, -1350.61], [-1602.11, -1350.49], [-1601.94, -1339.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1615.2, -1338.53], [-1615.42, -1350.26], [-1607.06, -1350.42], [-1606.84, -1338.69], [-1607.66, -1338.68], [-1607.62, -1336.78], [-1614.12, -1336.65], [-1614.16, -1338.55], [-1615.2, -1338.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1627.29, -1337.5], [-1625.32, -1337.53], [-1625.26, -1334.31], [-1618.45, -1334.44], [-1618.74, -1349.63], [-1627.52, -1349.47], [-1627.29, -1337.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1575.29, -1503.5], [-1600.89, -1502.95], [-1601.27, -1520.28], [-1601.69, -1520.27], [-1601.81, -1525.7], [-1601.26, -1525.71], [-1601.32, -1528.11], [-1601.87, -1528.1], [-1601.99, -1533.37], [-1601.54, -1533.39], [-1601.58, -1535.56], [-1602.05, -1535.55], [-1602.17, -1540.84], [-1601.77, -1540.84], [-1601.85, -1544.44], [-1579.21, -1544.94], [-1579.1, -1539.6], [-1577.22, -1539.64], [-1577.13, -1536.05], [-1576.54, -1536.07], [-1576.44, -1531.11], [-1577.09, -1531.1], [-1577.02, -1528.22], [-1567.41, -1528.44], [-1567.44, -1529.66], [-1559.22, -1529.84], [-1559.18, -1528.32], [-1555.97, -1528.39], [-1555.87, -1523.93], [-1536.02, -1524.37], [-1536.04, -1525.21], [-1536.09, -1527.61], [-1527.68, -1527.8], [-1527.65, -1526.34], [-1525.12, -1526.4], [-1524.63, -1504.03], [-1540.94, -1503.67], [-1540.9, -1501.88], [-1552.15, -1501.62], [-1552.19, -1503.39], [-1564.7, -1503.12], [-1564.72, -1504.05], [-1567.88, -1503.98], [-1568.12, -1514.81], [-1575.54, -1514.65], [-1575.29, -1503.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 861, "jobs": 0}}, {"shape": {"outer": [[-1878.96, -955.52], [-1879.16, -962.89], [-1868.64, -963.19], [-1868.57, -960.8], [-1861.57, -961.0], [-1861.34, -953.07], [-1868.28, -952.87], [-1868.37, -955.83], [-1878.96, -955.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1806.05, -970.8], [-1806.2, -976.58], [-1800.74, -976.73], [-1800.59, -970.94], [-1806.05, -970.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1810.55, -970.82], [-1818.01, -970.65], [-1818.31, -982.95], [-1810.85, -983.13], [-1810.55, -970.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1821.76, -974.88], [-1829.73, -974.71], [-1829.93, -983.63], [-1821.96, -983.81], [-1821.76, -974.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1840.49, -970.44], [-1831.71, -970.54], [-1831.85, -983.01], [-1840.62, -982.91], [-1840.49, -970.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1842.15, -973.14], [-1849.21, -973.11], [-1849.24, -977.06], [-1852.44, -977.04], [-1852.47, -983.37], [-1849.27, -983.4], [-1849.27, -984.27], [-1842.22, -984.31], [-1842.15, -973.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1863.32, -972.06], [-1855.13, -972.11], [-1855.2, -983.49], [-1859.96, -983.46], [-1859.96, -984.38], [-1866.35, -984.34], [-1866.31, -978.46], [-1863.36, -978.48], [-1863.32, -972.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1877.53, -972.04], [-1877.86, -983.62], [-1869.5, -983.86], [-1869.12, -970.42], [-1872.56, -970.32], [-1872.61, -972.18], [-1877.53, -972.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1874.7, -964.75], [-1874.8, -968.46], [-1869.34, -968.6], [-1869.24, -964.88], [-1874.7, -964.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1789.28, -979.34], [-1789.53, -990.59], [-1780.14, -990.79], [-1780.11, -989.65], [-1778.07, -989.69], [-1777.88, -980.91], [-1779.92, -980.86], [-1779.89, -979.55], [-1789.28, -979.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1786.18, -968.83], [-1786.27, -972.85], [-1787.18, -972.84], [-1787.27, -976.69], [-1776.26, -976.95], [-1776.19, -973.91], [-1774.84, -973.94], [-1774.79, -971.33], [-1776.13, -971.3], [-1776.07, -969.07], [-1786.18, -968.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1786.8, -956.34], [-1786.99, -965.79], [-1775.16, -966.01], [-1775.1, -962.99], [-1773.92, -963.02], [-1773.85, -959.43], [-1775.03, -959.41], [-1774.97, -956.57], [-1779.7, -956.48], [-1779.69, -955.83], [-1782.09, -955.78], [-1782.1, -956.44], [-1786.8, -956.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1794.1, -931.98], [-1794.22, -937.58], [-1788.76, -937.7], [-1788.68, -933.73], [-1789.45, -933.71], [-1789.41, -932.08], [-1794.1, -931.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1805.34, -933.76], [-1805.66, -945.08], [-1798.34, -945.29], [-1797.94, -931.31], [-1802.25, -931.18], [-1802.33, -933.85], [-1805.34, -933.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1817.22, -932.9], [-1817.48, -942.22], [-1808.18, -942.48], [-1807.92, -933.17], [-1808.81, -933.14], [-1808.75, -930.89], [-1816.61, -930.66], [-1816.68, -932.91], [-1817.22, -932.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1828.15, -932.67], [-1827.54, -932.69], [-1827.48, -930.57], [-1820.44, -930.77], [-1820.5, -932.89], [-1819.95, -932.91], [-1820.24, -942.97], [-1823.69, -942.87], [-1823.77, -945.65], [-1827.31, -945.55], [-1827.23, -942.77], [-1828.43, -942.74], [-1828.15, -932.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1839.38, -932.13], [-1839.82, -947.37], [-1835.24, -947.5], [-1835.18, -945.42], [-1831.52, -945.53], [-1831.14, -932.37], [-1832.07, -932.34], [-1832.02, -930.48], [-1838.46, -930.3], [-1838.51, -932.15], [-1839.38, -932.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1851.14, -931.87], [-1842.52, -932.1], [-1842.93, -947.18], [-1851.54, -946.94], [-1851.14, -931.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1861.28, -931.61], [-1861.53, -942.81], [-1853.72, -942.98], [-1853.47, -931.78], [-1854.46, -931.76], [-1854.41, -929.56], [-1860.14, -929.44], [-1860.19, -931.63], [-1861.28, -931.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1872.82, -931.2], [-1872.2, -931.22], [-1872.15, -929.36], [-1865.22, -929.51], [-1865.27, -931.38], [-1864.46, -931.4], [-1864.72, -942.48], [-1873.07, -942.29], [-1872.82, -931.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1881.98, -929.38], [-1873.53, -929.65], [-1874.06, -946.08], [-1882.51, -945.81], [-1881.98, -929.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1748.76, -1016.89], [-1748.87, -1025.75], [-1746.96, -1025.79], [-1746.97, -1026.79], [-1741.88, -1026.86], [-1741.86, -1025.91], [-1728.86, -1026.07], [-1728.87, -1026.52], [-1727.47, -1026.53], [-1727.35, -1017.17], [-1748.76, -1016.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1829.33, -1692.36], [-1829.88, -1707.43], [-1823.92, -1707.65], [-1823.83, -1705.3], [-1821.65, -1705.38], [-1821.73, -1707.73], [-1816.68, -1707.91], [-1816.11, -1692.85], [-1829.33, -1692.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1801.35, -1706.26], [-1801.51, -1713.18], [-1792.51, -1713.4], [-1792.51, -1713.12], [-1790.94, -1713.15], [-1790.79, -1706.8], [-1792.36, -1706.75], [-1792.36, -1706.48], [-1801.35, -1706.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1805.55, -1694.04], [-1805.72, -1700.02], [-1790.7, -1700.45], [-1790.53, -1694.47], [-1805.55, -1694.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1814.36, -1690.91], [-1811.09, -1691.0], [-1811.19, -1694.42], [-1814.46, -1694.33], [-1814.36, -1690.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[-1804.8, -1673.59], [-1789.6, -1673.87], [-1789.89, -1689.49], [-1805.08, -1689.21], [-1804.96, -1682.33], [-1803.6, -1682.36], [-1803.6, -1682.01], [-1800.09, -1682.07], [-1800.08, -1681.08], [-1803.53, -1681.01], [-1803.53, -1680.61], [-1804.92, -1680.59], [-1804.8, -1673.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-1803.86, -1665.83], [-1791.36, -1666.19], [-1791.51, -1671.41], [-1802.05, -1671.11], [-1802.02, -1670.02], [-1803.98, -1669.96], [-1803.86, -1665.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1821.61, -1616.95], [-1819.79, -1617.0], [-1819.74, -1615.28], [-1813.9, -1615.44], [-1813.94, -1617.16], [-1811.79, -1617.22], [-1812.19, -1632.29], [-1822.01, -1632.04], [-1821.61, -1616.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1811.18, -1642.75], [-1818.0, -1642.6], [-1818.21, -1651.84], [-1811.39, -1652.0], [-1811.18, -1642.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1805.49, -1661.03], [-1805.29, -1656.07], [-1790.93, -1656.65], [-1790.95, -1657.27], [-1789.61, -1657.33], [-1789.77, -1661.31], [-1791.12, -1661.25], [-1791.14, -1661.61], [-1805.49, -1661.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1801.01, -1636.81], [-1801.15, -1640.86], [-1805.87, -1640.7], [-1806.07, -1646.62], [-1793.48, -1647.05], [-1793.15, -1637.08], [-1801.01, -1636.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1792.02, -1619.34], [-1792.41, -1632.83], [-1801.75, -1632.56], [-1801.35, -1619.07], [-1799.83, -1619.11], [-1799.74, -1616.1], [-1793.57, -1616.28], [-1793.66, -1619.29], [-1792.02, -1619.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1911.34, -1688.07], [-1901.43, -1688.43], [-1901.94, -1702.41], [-1911.86, -1702.05], [-1911.34, -1688.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1917.12, -1672.06], [-1917.61, -1685.59], [-1903.99, -1686.08], [-1903.5, -1672.55], [-1917.12, -1672.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2159.77, -1415.7], [-2159.86, -1419.94], [-2161.1, -1419.9], [-2161.18, -1423.28], [-2159.94, -1423.32], [-2160.05, -1427.71], [-2149.1, -1427.97], [-2149.0, -1423.9], [-2146.77, -1423.95], [-2146.61, -1417.31], [-2148.84, -1417.26], [-2148.81, -1415.96], [-2159.77, -1415.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2156.63, -1401.74], [-2156.64, -1402.66], [-2159.44, -1402.62], [-2159.54, -1410.57], [-2156.73, -1410.6], [-2156.75, -1411.86], [-2146.15, -1411.99], [-2146.03, -1401.86], [-2156.63, -1401.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2145.42, -1390.02], [-2145.61, -1399.18], [-2158.71, -1398.91], [-2158.52, -1389.76], [-2145.42, -1390.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2160.37, -1368.8], [-2156.38, -1368.91], [-2156.45, -1371.1], [-2152.53, -1371.21], [-2152.55, -1372.06], [-2143.76, -1372.31], [-2143.93, -1378.31], [-2152.73, -1378.04], [-2152.87, -1382.73], [-2160.77, -1382.5], [-2160.37, -1368.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2135.3, -1369.17], [-2128.87, -1369.36], [-2128.93, -1371.69], [-2128.06, -1371.71], [-2128.35, -1381.68], [-2136.21, -1381.45], [-2135.92, -1371.29], [-2135.36, -1371.3], [-2135.3, -1369.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2126.2, -1369.5], [-2118.36, -1369.64], [-2118.61, -1383.79], [-2126.43, -1383.65], [-2126.2, -1369.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2137.01, -1448.97], [-2148.92, -1448.57], [-2149.11, -1454.33], [-2145.36, -1454.46], [-2145.48, -1457.92], [-2142.59, -1458.01], [-2142.56, -1457.04], [-2137.27, -1457.21], [-2137.01, -1448.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2124.98, -1441.87], [-2133.72, -1441.72], [-2133.96, -1455.0], [-2131.56, -1455.04], [-2131.58, -1456.33], [-2127.59, -1456.4], [-2127.57, -1455.11], [-2125.22, -1455.16], [-2124.98, -1441.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2131.38, -1415.86], [-2131.32, -1422.98], [-2122.47, -1422.91], [-2122.52, -1415.79], [-2131.38, -1415.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2120.89, -1443.32], [-2112.33, -1443.5], [-2112.61, -1457.54], [-2121.17, -1457.36], [-2120.89, -1443.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2109.55, -1449.48], [-2109.7, -1457.56], [-2105.91, -1457.63], [-2105.95, -1459.96], [-2100.18, -1460.06], [-2100.0, -1449.65], [-2101.03, -1449.63], [-2100.95, -1444.63], [-2106.46, -1444.54], [-2106.55, -1449.54], [-2109.55, -1449.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2114.94, -1372.15], [-2115.08, -1382.06], [-2107.12, -1382.17], [-2106.97, -1372.26], [-2107.72, -1372.25], [-2107.68, -1370.07], [-2111.01, -1370.01], [-2111.05, -1372.2], [-2114.94, -1372.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2102.97, -1371.98], [-2103.2, -1381.58], [-2099.28, -1381.68], [-2099.39, -1386.03], [-2096.92, -1386.1], [-2096.87, -1383.98], [-2095.0, -1384.02], [-2094.96, -1382.19], [-2092.77, -1382.24], [-2092.52, -1372.25], [-2102.97, -1371.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2095.43, -1387.13], [-2089.68, -1387.23], [-2089.79, -1392.73], [-2095.53, -1392.62], [-2095.43, -1387.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2085.02, -1446.21], [-2093.26, -1446.07], [-2093.49, -1460.06], [-2085.26, -1460.19], [-2085.02, -1446.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2083.26, -1448.1], [-2075.43, -1448.31], [-2075.67, -1457.84], [-2076.1, -1457.82], [-2076.15, -1459.83], [-2083.25, -1459.65], [-2083.2, -1457.64], [-2083.51, -1457.63], [-2083.26, -1448.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2087.48, -1371.94], [-2078.52, -1372.19], [-2079.14, -1394.84], [-2080.89, -1394.8], [-2080.97, -1398.04], [-2087.81, -1397.85], [-2087.71, -1394.31], [-2088.09, -1394.3], [-2087.48, -1371.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2063.4, -1380.28], [-2070.46, -1380.19], [-2070.34, -1370.07], [-2063.28, -1370.16], [-2063.4, -1380.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2051.03, -1369.86], [-2059.43, -1369.76], [-2059.57, -1382.01], [-2051.16, -1382.1], [-2051.03, -1369.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2073.29, -1447.98], [-2065.37, -1448.06], [-2065.46, -1456.96], [-2066.15, -1456.95], [-2066.16, -1457.78], [-2069.32, -1457.75], [-2069.31, -1456.93], [-2073.38, -1456.89], [-2073.29, -1447.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2066.24, -1440.88], [-2062.78, -1440.94], [-2062.9, -1447.2], [-2066.36, -1447.12], [-2066.24, -1440.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2061.66, -1458.29], [-2061.63, -1455.16], [-2062.08, -1455.16], [-2062.01, -1447.65], [-2054.88, -1447.72], [-2054.98, -1458.36], [-2055.83, -1458.35], [-2055.85, -1460.51], [-2061.3, -1460.46], [-2061.28, -1458.3], [-2061.66, -1458.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2042.09, -1446.73], [-2050.39, -1446.58], [-2050.58, -1456.87], [-2042.27, -1457.02], [-2042.09, -1446.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2050.52, -1429.64], [-2050.86, -1436.69], [-2042.56, -1437.08], [-2042.22, -1430.03], [-2050.52, -1429.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2065.11, -1422.17], [-2065.34, -1427.5], [-2058.41, -1427.8], [-2058.18, -1422.47], [-2065.11, -1422.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2053.43, -1417.55], [-2053.99, -1424.64], [-2052.16, -1424.78], [-2052.27, -1426.12], [-2042.05, -1426.92], [-2041.38, -1418.5], [-2053.43, -1417.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2065.9, -1406.62], [-2066.01, -1411.81], [-2072.62, -1411.67], [-2072.51, -1406.49], [-2065.9, -1406.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2052.88, -1406.72], [-2052.91, -1409.28], [-2053.72, -1409.27], [-2053.8, -1414.76], [-2052.99, -1414.77], [-2053.01, -1415.52], [-2038.86, -1415.73], [-2038.73, -1406.93], [-2052.88, -1406.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2072.38, -1400.12], [-2072.41, -1404.67], [-2065.42, -1404.7], [-2065.39, -1400.16], [-2072.38, -1400.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2052.73, -1396.28], [-2052.78, -1398.4], [-2053.88, -1398.38], [-2053.99, -1403.0], [-2052.9, -1403.03], [-2052.95, -1405.13], [-2038.58, -1405.48], [-2038.36, -1396.63], [-2052.73, -1396.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2052.25, -1386.0], [-2052.51, -1395.09], [-2038.8, -1395.48], [-2038.54, -1386.39], [-2052.25, -1386.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[764.52, 644.12], [794.39, 611.53], [779.77, 598.24], [749.91, 630.84], [764.52, 644.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.559, "pop": 0, "jobs": 559}}, {"shape": {"outer": [[829.11, 536.52], [799.72, 509.91], [816.88, 490.49], [846.48, 517.51], [829.11, 536.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.659, "pop": 0, "jobs": 659}}, {"shape": {"outer": [[-1866.79, -1695.41], [-1874.87, -1695.11], [-1875.33, -1707.66], [-1867.27, -1707.97], [-1866.79, -1695.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1890.31, -1694.24], [-1881.79, -1694.49], [-1882.12, -1706.01], [-1883.17, -1705.98], [-1883.26, -1709.15], [-1889.81, -1708.96], [-1889.71, -1705.8], [-1890.64, -1705.77], [-1890.31, -1694.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1940.4, -1691.17], [-1941.97, -1691.14], [-1941.94, -1689.57], [-1944.94, -1689.51], [-1944.97, -1691.08], [-1948.03, -1691.02], [-1948.28, -1703.75], [-1940.66, -1703.9], [-1940.4, -1691.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1926.79, -1677.55], [-1921.82, -1677.68], [-1922.03, -1685.2], [-1926.99, -1685.06], [-1926.79, -1677.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1934.46, -1686.22], [-1925.16, -1686.43], [-1925.6, -1705.48], [-1934.9, -1705.27], [-1934.46, -1686.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1864.6, -1619.87], [-1865.15, -1634.12], [-1859.42, -1634.34], [-1858.87, -1620.09], [-1859.45, -1620.06], [-1859.38, -1618.19], [-1863.85, -1618.03], [-1863.93, -1619.89], [-1864.6, -1619.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1845.85, -1700.83], [-1848.73, -1700.77], [-1848.62, -1695.08], [-1845.73, -1695.14], [-1845.85, -1700.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1859.3, -1697.9], [-1859.37, -1708.13], [-1850.3, -1708.2], [-1850.26, -1701.4], [-1849.22, -1701.41], [-1849.2, -1698.3], [-1850.28, -1698.29], [-1850.28, -1697.97], [-1859.3, -1697.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1857.26, -1617.55], [-1849.63, -1617.75], [-1849.94, -1630.45], [-1857.59, -1630.26], [-1857.26, -1617.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1847.4, -1619.88], [-1847.68, -1630.58], [-1840.03, -1630.77], [-1839.89, -1625.31], [-1838.06, -1625.35], [-1837.87, -1618.32], [-1846.37, -1618.1], [-1846.42, -1619.91], [-1847.4, -1619.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1847.58, -1659.8], [-1847.4, -1653.38], [-1840.78, -1653.57], [-1840.97, -1659.99], [-1847.58, -1659.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1838.56, -1665.39], [-1844.51, -1665.26], [-1844.78, -1676.58], [-1838.83, -1676.72], [-1838.56, -1665.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1844.28, -1694.45], [-1844.67, -1706.28], [-1833.21, -1706.66], [-1832.81, -1694.83], [-1835.33, -1694.75], [-1835.21, -1690.98], [-1841.97, -1690.76], [-1842.1, -1694.52], [-1844.28, -1694.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1915.81, -1618.7], [-1916.2, -1632.05], [-1906.81, -1632.33], [-1906.42, -1618.97], [-1907.19, -1618.94], [-1907.12, -1616.63], [-1914.82, -1616.41], [-1914.89, -1618.72], [-1915.81, -1618.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1904.11, -1618.42], [-1904.28, -1634.32], [-1894.95, -1634.42], [-1894.77, -1618.53], [-1895.86, -1618.51], [-1895.84, -1616.92], [-1903.05, -1616.85], [-1903.07, -1618.44], [-1904.11, -1618.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1891.78, -1630.07], [-1885.08, -1630.2], [-1884.85, -1619.02], [-1887.67, -1618.96], [-1887.64, -1617.3], [-1891.51, -1617.23], [-1891.78, -1630.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1884.3, -1619.29], [-1876.92, -1619.47], [-1877.16, -1629.72], [-1884.54, -1629.55], [-1884.3, -1619.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1876.74, -1619.53], [-1875.89, -1619.55], [-1875.83, -1617.57], [-1868.95, -1617.74], [-1869.16, -1625.83], [-1870.44, -1625.79], [-1870.59, -1631.85], [-1875.78, -1631.72], [-1875.62, -1625.65], [-1876.9, -1625.63], [-1876.74, -1619.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[887.06, 1302.92], [882.78, 1307.66], [889.73, 1313.88], [894.0, 1309.15], [887.06, 1302.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2342.95, 1146.6], [2336.99, 1141.0], [2343.26, 1134.06], [2349.21, 1139.83], [2342.95, 1146.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2350.84, 1141.35], [2356.53, 1146.39], [2350.59, 1153.07], [2344.9, 1147.78], [2350.84, 1141.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2360.66, 1149.9], [2367.89, 1156.38], [2362.07, 1162.94], [2354.71, 1156.33], [2360.66, 1149.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2346.69, 1161.99], [2353.96, 1169.61], [2348.12, 1175.17], [2340.75, 1168.44], [2346.69, 1161.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2272.77, 946.89], [2263.25, 956.16], [2267.89, 960.79], [2278.05, 951.49], [2272.77, 946.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2284.22, 967.7], [2280.0, 973.82], [2285.91, 978.79], [2290.66, 973.78], [2284.22, 967.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2291.04, 978.27], [2285.8, 984.04], [2292.62, 989.85], [2298.58, 982.93], [2291.04, 978.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2299.48, 986.28], [2289.24, 996.94], [2294.88, 1002.34], [2304.89, 991.73], [2299.48, 986.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2278.65, 1003.38], [2286.2, 1009.76], [2280.35, 1016.69], [2272.69, 1009.65], [2278.65, 1003.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2325.89, 1111.67], [2319.35, 1118.96], [2328.64, 1126.49], [2335.36, 1120.04], [2325.89, 1111.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2316.81, 1118.7], [2312.16, 1125.46], [2318.84, 1131.63], [2323.68, 1125.8], [2316.81, 1118.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2309.12, 1127.91], [2303.8, 1134.41], [2312.74, 1142.89], [2318.15, 1137.05], [2309.12, 1127.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2300.53, 1136.78], [2295.11, 1143.09], [2301.69, 1148.98], [2307.56, 1142.85], [2300.53, 1136.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2292.61, 1146.09], [2286.61, 1152.52], [2293.9, 1159.63], [2299.77, 1153.3], [2292.61, 1146.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2282.9, 1154.68], [2277.9, 1160.62], [2286.38, 1168.98], [2291.54, 1162.73], [2282.9, 1154.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2265.0, 1172.56], [2259.78, 1179.53], [2268.45, 1188.3], [2274.59, 1181.87], [2265.0, 1172.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2258.43, 1181.36], [2251.79, 1188.65], [2261.09, 1197.34], [2268.02, 1190.68], [2258.43, 1181.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2251.64, 1190.39], [2245.01, 1197.69], [2254.31, 1206.38], [2261.24, 1199.7], [2251.64, 1190.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2243.72, 1199.39], [2237.08, 1206.68], [2251.44, 1218.85], [2256.98, 1211.91], [2243.72, 1199.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2234.66, 1209.26], [2228.02, 1216.55], [2239.67, 1225.97], [2245.45, 1219.67], [2234.66, 1209.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2226.28, 1218.2], [2219.64, 1225.5], [2231.3, 1234.91], [2237.07, 1228.62], [2226.28, 1218.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2218.23, 1228.1], [2211.59, 1235.4], [2220.71, 1242.99], [2226.3, 1236.61], [2218.23, 1228.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2210.74, 1235.8], [2204.1, 1243.09], [2213.8, 1250.66], [2219.59, 1244.94], [2210.74, 1235.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2229.15, 1248.26], [2222.52, 1255.55], [2228.41, 1259.63], [2234.59, 1253.99], [2229.15, 1248.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2249.47, 1270.7], [2242.84, 1277.99], [2250.38, 1284.21], [2256.54, 1277.9], [2249.47, 1270.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2254.79, 1260.95], [2248.45, 1267.55], [2258.12, 1275.89], [2264.28, 1269.72], [2254.79, 1260.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2263.93, 1253.47], [2257.59, 1260.07], [2266.6, 1267.18], [2271.92, 1262.28], [2263.93, 1253.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2272.55, 1247.58], [2267.5, 1252.82], [2275.19, 1260.31], [2280.16, 1254.92], [2272.55, 1247.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2279.32, 1235.02], [2272.96, 1241.29], [2282.02, 1249.88], [2288.43, 1242.47], [2279.32, 1235.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2291.28, 1227.67], [2286.57, 1233.23], [2292.59, 1239.77], [2298.2, 1233.86], [2291.28, 1227.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2297.11, 1219.83], [2292.39, 1225.39], [2298.41, 1231.93], [2304.03, 1226.03], [2297.11, 1219.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2305.46, 1210.52], [2300.74, 1216.09], [2306.76, 1222.62], [2312.38, 1216.72], [2305.46, 1210.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2315.62, 1201.0], [2309.26, 1207.1], [2315.64, 1214.46], [2322.88, 1207.68], [2315.62, 1201.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2323.66, 1192.36], [2318.29, 1198.27], [2324.27, 1203.82], [2330.07, 1198.08], [2323.66, 1192.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2324.64, 1190.59], [2330.92, 1195.86], [2337.37, 1189.73], [2331.44, 1184.95], [2324.64, 1190.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2336.31, 1178.8], [2342.59, 1184.07], [2349.04, 1177.94], [2343.11, 1173.16], [2336.31, 1178.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2351.55, 1162.87], [2354.9, 1166.71], [2358.54, 1163.29], [2355.27, 1159.44], [2351.55, 1162.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[591.77, 1248.77], [598.92, 1241.02], [588.1, 1231.09], [580.94, 1238.84], [591.77, 1248.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[599.83, 1263.63], [609.24, 1258.54], [602.12, 1245.46], [592.7, 1250.55], [593.87, 1252.69], [592.01, 1253.7], [596.84, 1262.57], [598.71, 1261.56], [599.83, 1263.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[571.13, 1263.14], [576.81, 1269.3], [584.37, 1262.38], [578.69, 1256.22], [571.13, 1263.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[554.81, 1285.58], [559.96, 1290.81], [566.66, 1284.25], [561.51, 1279.02], [554.81, 1285.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[601.91, 1280.5], [607.57, 1277.71], [607.85, 1278.27], [616.56, 1273.98], [610.82, 1262.42], [596.45, 1269.49], [601.91, 1280.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[613.39, 1289.55], [612.94, 1287.94], [620.25, 1285.88], [618.02, 1278.04], [604.71, 1281.8], [607.39, 1291.24], [613.39, 1289.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[625.06, 1301.16], [621.48, 1290.43], [609.65, 1294.37], [607.08, 1297.31], [609.61, 1304.87], [611.9, 1304.12], [612.33, 1305.4], [625.06, 1301.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[616.88, 1318.61], [613.69, 1308.93], [630.29, 1303.51], [633.47, 1313.19], [616.88, 1318.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[634.91, 1329.53], [632.17, 1320.65], [615.85, 1325.67], [618.59, 1334.55], [634.91, 1329.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[621.77, 1348.13], [618.75, 1338.83], [633.18, 1334.32], [636.15, 1343.49], [621.77, 1348.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[641.61, 1359.24], [638.09, 1347.87], [627.46, 1351.15], [629.28, 1357.02], [628.12, 1359.08], [628.78, 1361.8], [630.79, 1362.57], [641.61, 1359.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[631.18, 1380.03], [628.44, 1370.84], [643.69, 1366.33], [647.73, 1379.88], [639.65, 1382.27], [640.62, 1385.53], [633.88, 1387.52], [632.74, 1383.68], [635.07, 1382.99], [633.95, 1379.22], [631.18, 1380.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[644.34, 1404.5], [655.05, 1401.24], [651.66, 1390.14], [640.95, 1393.4], [644.34, 1404.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[648.16, 1417.12], [645.21, 1407.41], [657.28, 1403.77], [657.77, 1405.35], [660.01, 1404.68], [661.86, 1410.77], [659.84, 1411.38], [660.46, 1413.41], [648.16, 1417.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[645.43, 1425.3], [664.39, 1419.12], [667.39, 1428.27], [648.42, 1434.44], [645.43, 1425.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[659.44, 1449.01], [670.33, 1445.81], [665.68, 1432.06], [654.47, 1435.61], [659.44, 1449.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[665.08, 1476.77], [678.72, 1472.55], [677.78, 1469.53], [679.13, 1469.11], [677.89, 1465.1], [676.52, 1465.52], [673.65, 1456.32], [665.76, 1458.77], [667.74, 1465.12], [662.0, 1466.9], [665.08, 1476.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[672.16, 1491.71], [683.48, 1488.08], [680.15, 1477.7], [668.82, 1481.32], [672.16, 1491.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[678.47, 1505.38], [674.95, 1494.45], [685.0, 1491.23], [688.52, 1502.15], [678.47, 1505.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[679.56, 1508.98], [679.1, 1507.46], [688.92, 1504.46], [692.85, 1517.23], [675.24, 1522.61], [671.78, 1511.37], [679.56, 1508.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[687.11, 1535.75], [697.07, 1532.68], [693.26, 1520.42], [683.3, 1523.49], [687.11, 1535.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[674.14, 1575.56], [672.56, 1570.51], [688.11, 1565.65], [689.69, 1570.71], [674.14, 1575.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[690.59, 1562.26], [687.87, 1553.37], [706.09, 1547.85], [707.84, 1553.61], [705.42, 1554.35], [706.37, 1557.48], [690.59, 1562.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[687.56, 1549.62], [687.04, 1547.85], [685.62, 1547.21], [683.59, 1547.8], [681.48, 1540.6], [698.09, 1535.8], [699.41, 1540.33], [701.37, 1539.75], [702.95, 1545.16], [687.56, 1549.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[694.07, 1574.67], [709.33, 1569.92], [706.91, 1562.21], [691.65, 1566.95], [694.07, 1574.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[694.98, 1576.42], [712.34, 1571.18], [715.23, 1580.69], [708.12, 1582.84], [708.67, 1584.63], [698.41, 1587.72], [694.98, 1576.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[714.94, 1584.07], [719.0, 1595.96], [709.73, 1599.11], [705.67, 1587.21], [714.94, 1584.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[720.68, 1613.56], [717.05, 1601.99], [707.95, 1604.84], [711.58, 1616.39], [720.68, 1613.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[722.13, 1634.21], [722.82, 1636.4], [732.22, 1633.46], [728.15, 1620.57], [719.83, 1623.17], [719.53, 1624.44], [718.24, 1625.1], [718.02, 1625.64], [718.09, 1626.46], [717.04, 1627.11], [719.54, 1635.02], [722.13, 1634.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[717.24, 1649.53], [714.89, 1642.49], [717.78, 1641.53], [717.6, 1640.96], [731.39, 1636.41], [735.04, 1647.38], [721.4, 1651.89], [721.1, 1650.97], [719.99, 1651.33], [719.18, 1648.89], [717.24, 1649.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[732.45, 1683.5], [744.09, 1673.29], [739.38, 1667.96], [736.42, 1668.42], [734.81, 1657.77], [730.79, 1658.36], [729.42, 1657.98], [728.3, 1653.98], [723.02, 1655.45], [723.54, 1657.31], [719.34, 1658.49], [721.74, 1666.96], [721.31, 1668.51], [721.72, 1671.35], [732.45, 1683.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[736.82, 1687.57], [738.86, 1685.85], [738.27, 1685.15], [747.02, 1677.78], [747.52, 1678.36], [748.96, 1677.14], [751.06, 1679.62], [751.79, 1679.6], [752.57, 1680.53], [754.15, 1679.22], [756.88, 1682.47], [744.64, 1692.68], [744.29, 1692.28], [742.26, 1693.99], [736.82, 1687.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[751.41, 1707.75], [754.23, 1705.39], [754.96, 1706.26], [764.49, 1698.3], [755.66, 1687.82], [746.86, 1695.19], [747.74, 1696.23], [744.2, 1699.18], [751.41, 1707.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[762.06, 1719.87], [753.85, 1710.42], [765.46, 1700.43], [773.66, 1709.89], [762.06, 1719.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[772.72, 1730.9], [774.36, 1731.31], [782.69, 1723.44], [772.8, 1713.06], [763.81, 1721.55], [772.72, 1730.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[788.56, 1755.5], [801.43, 1745.05], [792.74, 1734.42], [793.83, 1733.55], [790.93, 1730.0], [784.85, 1734.95], [787.63, 1738.33], [779.75, 1744.73], [788.56, 1755.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[785.73, 1781.31], [781.05, 1775.91], [786.54, 1771.21], [791.21, 1776.61], [785.73, 1781.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[798.85, 1765.54], [810.15, 1755.69], [803.62, 1748.25], [792.33, 1758.1], [798.85, 1765.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[801.7, 1769.92], [814.94, 1758.25], [822.32, 1766.55], [809.08, 1778.24], [801.7, 1769.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[819.3, 1818.77], [814.33, 1812.68], [822.23, 1806.29], [827.2, 1812.38], [819.3, 1818.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[793.46, 1830.02], [800.74, 1823.07], [806.12, 1828.66], [798.83, 1835.61], [793.46, 1830.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[826.58, 1789.21], [834.3, 1782.66], [842.7, 1792.47], [836.04, 1798.13], [836.66, 1800.58], [834.39, 1803.35], [831.86, 1803.6], [829.66, 1802.4], [828.76, 1799.36], [832.53, 1796.16], [826.58, 1789.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[846.15, 1828.85], [852.96, 1823.32], [851.01, 1820.94], [861.0, 1812.81], [857.93, 1809.07], [859.2, 1808.03], [855.59, 1803.62], [854.42, 1804.59], [851.27, 1800.74], [842.51, 1807.87], [845.89, 1811.97], [843.74, 1813.71], [846.87, 1817.53], [840.87, 1822.41], [846.15, 1828.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.224, "pop": 112, "jobs": 0}}, {"shape": {"outer": [[839.53, 1837.64], [844.9, 1833.52], [848.5, 1838.21], [852.47, 1835.16], [856.72, 1840.68], [847.37, 1847.82], [839.53, 1837.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1426.72, 1973.95], [1442.27, 1960.91], [1434.85, 1952.11], [1435.76, 1951.35], [1433.57, 1948.75], [1434.0, 1948.4], [1425.77, 1938.64], [1425.34, 1938.99], [1412.94, 1924.28], [1413.6, 1923.73], [1405.39, 1913.98], [1404.72, 1914.55], [1402.33, 1911.71], [1401.68, 1912.25], [1394.18, 1903.36], [1378.35, 1916.62], [1388.04, 1928.11], [1388.9, 1927.4], [1392.89, 1932.13], [1392.17, 1932.73], [1395.39, 1936.54], [1396.03, 1936.01], [1398.4, 1938.82], [1397.76, 1939.35], [1407.53, 1950.92], [1408.21, 1950.36], [1410.63, 1953.23], [1409.96, 1953.81], [1412.98, 1957.39], [1413.7, 1956.79], [1417.87, 1961.73], [1417.02, 1962.46], [1426.72, 1973.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 632, "jobs": 0}}, {"shape": {"outer": [[1394.72, 2000.4], [1392.29, 1998.31], [1391.74, 1998.94], [1388.07, 1995.76], [1388.62, 1995.14], [1385.93, 1992.81], [1384.93, 1993.95], [1345.87, 1960.21], [1346.86, 1959.06], [1337.77, 1951.2], [1351.16, 1935.82], [1362.44, 1945.56], [1361.63, 1946.48], [1372.84, 1956.16], [1373.25, 1955.68], [1385.1, 1965.91], [1384.69, 1966.39], [1395.79, 1975.99], [1396.6, 1975.07], [1408.11, 1985.02], [1394.72, 2000.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 629, "jobs": 0}}, {"shape": {"outer": [[1421.19, 2039.7], [1436.84, 2039.52], [1436.83, 2038.42], [1440.23, 2038.38], [1440.23, 2038.98], [1453.53, 2038.83], [1453.53, 2038.18], [1460.27, 2038.12], [1460.27, 2038.75], [1473.63, 2038.59], [1473.61, 2037.87], [1477.07, 2037.83], [1477.08, 2039.06], [1492.21, 2038.89], [1491.98, 2018.03], [1479.88, 2018.16], [1479.86, 2016.82], [1433.01, 2017.33], [1433.02, 2018.7], [1420.97, 2018.83], [1421.19, 2039.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 606, "jobs": 0}}, {"shape": {"outer": [[1488.93, 2130.74], [1509.7, 2126.51], [1495.59, 2057.48], [1474.81, 2061.7], [1488.93, 2130.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 598, "jobs": 0}}, {"shape": {"outer": [[1455.9, 2147.34], [1476.71, 2139.31], [1442.58, 2051.51], [1421.77, 2059.54], [1455.9, 2147.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 840, "jobs": 0}}, {"shape": {"outer": [[1244.8, 2178.89], [1234.29, 2182.92], [1223.57, 2187.03], [1226.1, 2193.57], [1247.33, 2185.44], [1244.8, 2178.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1254.49, 2182.29], [1275.81, 2174.5], [1282.5, 2192.65], [1261.01, 2200.5], [1263.95, 2208.51], [1294.04, 2197.5], [1281.95, 2164.67], [1252.03, 2175.61], [1254.49, 2182.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.542, "pop": 271, "jobs": 0}}, {"shape": {"outer": [[1258.63, 2210.37], [1256.04, 2203.34], [1234.47, 2211.25], [1237.07, 2218.28], [1258.63, 2210.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1249.08, 2250.45], [1256.64, 2247.55], [1248.26, 2225.85], [1240.69, 2228.75], [1249.08, 2250.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1267.07, 2275.62], [1264.73, 2276.5], [1259.78, 2278.14], [1252.26, 2256.49], [1259.55, 2253.97], [1267.07, 2275.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1267.44, 2283.72], [1289.58, 2275.45], [1286.86, 2268.23], [1267.07, 2275.62], [1264.73, 2276.5], [1267.44, 2283.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1286.82, 2239.43], [1294.82, 2236.58], [1290.96, 2225.82], [1287.14, 2215.18], [1295.64, 2212.15], [1308.14, 2207.7], [1311.73, 2217.71], [1315.4, 2227.92], [1321.63, 2225.7], [1313.89, 2204.12], [1307.5, 2206.4], [1305.89, 2201.9], [1284.11, 2209.66], [1285.81, 2214.39], [1278.74, 2216.92], [1286.82, 2239.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.398, "pop": 199, "jobs": 0}}, {"shape": {"outer": [[1293.74, 2268.03], [1300.62, 2265.47], [1296.69, 2255.01], [1292.61, 2244.13], [1285.74, 2246.71], [1293.74, 2268.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1328.66, 2254.62], [1335.82, 2251.94], [1327.69, 2230.42], [1320.53, 2233.1], [1324.74, 2244.23], [1328.66, 2254.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1343.22, 2241.83], [1350.18, 2245.34], [1360.84, 2224.41], [1353.88, 2220.9], [1343.22, 2241.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1333.61, 2177.91], [1332.13, 2184.78], [1321.35, 2182.47], [1309.53, 2179.94], [1310.7, 2174.51], [1304.77, 2173.24], [1309.56, 2151.0], [1316.46, 2152.48], [1317.64, 2147.0], [1328.03, 2149.22], [1339.23, 2151.62], [1337.71, 2158.65], [1326.56, 2156.25], [1315.58, 2153.89], [1311.42, 2173.15], [1333.61, 2177.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.376, "pop": 188, "jobs": 0}}, {"shape": {"outer": [[1345.79, 2153.9], [1347.5, 2146.1], [1367.98, 2150.53], [1372.84, 2128.3], [1380.73, 2130.02], [1375.85, 2152.32], [1369.86, 2151.02], [1368.17, 2158.76], [1356.59, 2156.24], [1345.79, 2153.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[1354.32, 2218.42], [1361.6, 2220.01], [1366.72, 2196.73], [1360.11, 2195.28], [1361.3, 2189.88], [1349.42, 2187.28], [1337.56, 2184.69], [1335.83, 2192.54], [1358.91, 2197.58], [1354.32, 2218.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[1401.21, 2206.92], [1422.02, 2211.49], [1423.65, 2204.16], [1401.05, 2199.19], [1399.48, 2206.31], [1394.76, 2205.26], [1389.79, 2227.68], [1396.29, 2229.11], [1401.21, 2206.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[1340.23, 2304.83], [1345.59, 2302.48], [1348.08, 2308.11], [1369.13, 2298.88], [1366.43, 2292.75], [1371.07, 2290.71], [1361.65, 2269.36], [1354.94, 2272.3], [1359.61, 2282.9], [1364.06, 2292.95], [1355.09, 2296.89], [1346.69, 2300.57], [1342.28, 2290.6], [1337.47, 2279.71], [1330.49, 2282.76], [1340.23, 2304.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.418, "pop": 209, "jobs": 0}}, {"shape": {"outer": [[1305.86, 2300.35], [1303.17, 2293.6], [1324.59, 2285.12], [1327.28, 2291.88], [1305.86, 2300.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1279.09, 2316.29], [1274.0, 2316.44], [1271.31, 2309.6], [1272.52, 2306.43], [1297.07, 2296.91], [1303.2, 2312.59], [1294.16, 2316.1], [1293.07, 2313.3], [1286.59, 2315.81], [1285.77, 2313.7], [1279.09, 2316.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[1318.94, 2328.64], [1318.74, 2320.89], [1355.79, 2319.96], [1355.98, 2327.71], [1318.94, 2328.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[1369.15, 2426.11], [1405.87, 2406.41], [1400.56, 2396.57], [1363.84, 2416.26], [1369.15, 2426.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[1360.81, 2408.35], [1370.74, 2403.1], [1356.03, 2375.46], [1346.1, 2380.71], [1360.81, 2408.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[1370.87, 2342.51], [1376.15, 2352.16], [1335.54, 2374.25], [1330.26, 2364.6], [1370.87, 2342.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}, {"shape": {"outer": [[1311.04, 2378.5], [1323.13, 2372.07], [1356.13, 2433.82], [1344.05, 2440.23], [1338.46, 2429.78], [1327.6, 2409.46], [1311.04, 2378.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.766, "pop": 383, "jobs": 0}}, {"shape": {"outer": [[1406.64, 2396.47], [1416.52, 2391.26], [1383.58, 2329.34], [1373.7, 2334.55], [1406.64, 2396.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.626, "pop": 313, "jobs": 0}}, {"shape": {"outer": [[1399.14, 2333.71], [1408.56, 2328.89], [1435.64, 2381.38], [1426.21, 2386.22], [1399.14, 2333.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.5, "pop": 250, "jobs": 0}}, {"shape": {"outer": [[1478.62, 2380.86], [1473.45, 2371.28], [1412.99, 2403.65], [1418.15, 2413.24], [1478.62, 2380.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.598, "pop": 299, "jobs": 0}}, {"shape": {"outer": [[1421.64, 2419.4], [1430.81, 2414.52], [1458.66, 2466.5], [1449.1, 2471.51], [1421.64, 2419.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.5, "pop": 250, "jobs": 0}}, {"shape": {"outer": [[1415.09, 2491.3], [1426.64, 2485.43], [1405.71, 2445.74], [1393.36, 2452.03], [1415.09, 2491.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.482, "pop": 241, "jobs": 0}}, {"shape": {"outer": [[1381.8, 2500.88], [1394.32, 2494.56], [1376.09, 2458.66], [1362.9, 2465.33], [1369.88, 2479.08], [1360.82, 2483.65], [1367.02, 2495.85], [1376.76, 2490.94], [1381.8, 2500.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.58, "pop": 290, "jobs": 0}}, {"shape": {"outer": [[1425.23, 2594.1], [1481.36, 2574.51], [1475.25, 2557.09], [1419.11, 2576.68], [1425.23, 2594.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.703, "pop": 0, "jobs": 703}}, {"shape": {"outer": [[1480.56, 2529.34], [1499.49, 2522.89], [1503.59, 2534.85], [1484.66, 2541.29], [1480.56, 2529.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[1443.98, 2534.33], [1456.8, 2530.11], [1463.12, 2549.21], [1450.3, 2553.43], [1443.98, 2534.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[1444.73, 2516.63], [1432.43, 2521.85], [1424.61, 2503.51], [1436.92, 2498.29], [1444.73, 2516.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[1461.5, 2455.45], [1496.64, 2436.9], [1491.67, 2427.55], [1456.53, 2446.11], [1461.5, 2455.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[1510.67, 2449.71], [1520.28, 2444.65], [1487.94, 2383.72], [1478.34, 2388.78], [1510.67, 2449.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.6, "pop": 300, "jobs": 0}}, {"shape": {"outer": [[1442.83, 2420.9], [1478.12, 2402.51], [1472.46, 2391.74], [1437.17, 2410.13], [1442.83, 2420.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[1474.27, 2331.33], [1484.8, 2331.1], [1485.66, 2370.49], [1475.14, 2370.72], [1474.27, 2331.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.332, "pop": 166, "jobs": 0}}, {"shape": {"outer": [[1419.53, 2345.35], [1468.44, 2344.93], [1468.35, 2334.12], [1419.44, 2334.54], [1419.53, 2345.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.424, "pop": 212, "jobs": 0}}, {"shape": {"outer": [[1525.69, 2437.79], [1522.33, 2427.96], [1568.99, 2412.11], [1572.35, 2421.94], [1525.69, 2437.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.41, "pop": 205, "jobs": 0}}, {"shape": {"outer": [[1515.7, 2382.03], [1555.7, 2380.76], [1555.36, 2370.01], [1549.82, 2370.19], [1530.24, 2370.81], [1515.36, 2371.29], [1515.7, 2382.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[1492.54, 2330.22], [1503.02, 2329.89], [1504.26, 2370.0], [1493.79, 2370.33], [1492.54, 2330.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[1507.51, 2333.41], [1576.5, 2330.46], [1576.95, 2341.04], [1507.97, 2343.99], [1507.51, 2333.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.584, "pop": 292, "jobs": 0}}, {"shape": {"outer": [[1561.0, 2346.99], [1571.77, 2347.48], [1569.02, 2407.03], [1558.25, 2406.53], [1561.0, 2346.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.514, "pop": 257, "jobs": 0}}, {"shape": {"outer": [[1505.25, 2376.26], [1528.29, 2418.99], [1518.92, 2424.0], [1495.9, 2381.27], [1505.25, 2376.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.412, "pop": 206, "jobs": 0}}, {"shape": {"outer": [[1488.74, 2237.55], [1485.92, 2238.63], [1489.89, 2248.69], [1506.96, 2242.37], [1510.45, 2235.77], [1502.09, 2212.48], [1504.92, 2211.56], [1494.9, 2182.99], [1490.67, 2169.6], [1483.26, 2168.14], [1474.11, 2169.9], [1470.47, 2177.67], [1481.67, 2206.55], [1477.71, 2208.5], [1488.74, 2237.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 590, "jobs": 0}}, {"shape": {"outer": [[1508.04, 2179.94], [1514.5, 2183.61], [1536.47, 2176.49], [1537.83, 2180.64], [1574.59, 2168.72], [1575.48, 2171.44], [1586.62, 2167.84], [1580.87, 2150.2], [1574.08, 2147.06], [1542.94, 2156.73], [1541.7, 2152.74], [1523.05, 2158.54], [1521.96, 2155.07], [1502.18, 2161.22], [1508.04, 2179.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 626, "jobs": 0}}, {"shape": {"outer": [[1571.02, 2260.48], [1570.83, 2249.13], [1574.2, 2249.07], [1573.56, 2210.82], [1577.29, 2210.76], [1576.88, 2186.68], [1582.74, 2181.02], [1600.57, 2180.75], [1600.71, 2190.63], [1598.0, 2190.68], [1598.48, 2222.28], [1595.43, 2222.33], [1595.85, 2249.69], [1592.82, 2249.74], [1592.99, 2260.12], [1571.02, 2260.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 613, "jobs": 0}}, {"shape": {"outer": [[1498.05, 2263.26], [1498.01, 2260.39], [1487.47, 2260.55], [1487.76, 2279.95], [1493.92, 2284.77], [1523.13, 2283.88], [1523.28, 2288.69], [1553.95, 2287.75], [1554.06, 2291.56], [1567.65, 2291.14], [1567.04, 2271.54], [1560.87, 2266.38], [1535.91, 2266.74], [1535.85, 2262.71], [1498.05, 2263.26]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 630, "jobs": 0}}, {"shape": {"outer": [[1430.8, 2297.29], [1433.26, 2292.39], [1439.75, 2295.83], [1450.93, 2276.0], [1444.27, 2272.15], [1447.51, 2266.89], [1426.72, 2256.03], [1422.97, 2263.47], [1442.79, 2274.29], [1434.24, 2290.18], [1413.92, 2278.65], [1409.84, 2286.03], [1430.8, 2297.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.454, "pop": 227, "jobs": 0}}, {"shape": {"outer": [[1381.47, 2277.62], [1385.16, 2270.33], [1407.57, 2281.57], [1403.88, 2288.87], [1381.47, 2277.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1548.88, 2119.81], [1563.56, 2116.7], [1562.61, 2112.22], [1566.05, 2107.38], [1570.3, 2106.49], [1567.15, 2091.68], [1562.87, 2092.59], [1558.0, 2089.14], [1557.1, 2084.95], [1542.28, 2088.08], [1543.17, 2092.29], [1539.47, 2097.48], [1535.45, 2098.32], [1538.6, 2113.15], [1542.58, 2112.32], [1548.12, 2116.24], [1548.88, 2119.81]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.506, "pop": 0, "jobs": 506}}, {"shape": {"outer": [[1548.25, 2016.92], [1542.56, 2013.03], [1541.86, 2009.38], [1526.98, 2012.21], [1527.85, 2016.79], [1524.46, 2021.71], [1520.5, 2022.47], [1523.35, 2037.39], [1527.29, 2036.65], [1532.88, 2040.47], [1533.55, 2043.97], [1548.27, 2041.18], [1547.46, 2036.94], [1551.09, 2031.67], [1555.12, 2030.92], [1552.3, 2016.15], [1548.25, 2016.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.508, "pop": 0, "jobs": 508}}, {"shape": {"outer": [[1578.74, 2082.03], [1575.72, 2066.81], [1576.96, 2066.57], [1569.09, 2026.88], [1568.27, 2027.03], [1563.77, 2004.32], [1574.97, 2002.11], [1574.39, 1999.2], [1576.97, 1998.69], [1576.86, 1998.11], [1585.21, 1996.47], [1585.43, 1997.58], [1589.75, 1996.73], [1591.52, 2005.69], [1592.11, 2005.58], [1593.77, 2013.93], [1590.34, 2014.61], [1591.83, 2022.16], [1585.45, 2023.4], [1593.4, 2063.54], [1594.54, 2063.31], [1597.26, 2077.02], [1594.17, 2077.63], [1594.65, 2080.06], [1586.38, 2081.69], [1586.16, 2080.57], [1578.74, 2082.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1045}}, {"shape": {"outer": [[1505.08, 1961.39], [1509.56, 1982.58], [1544.84, 1975.17], [1544.27, 1972.45], [1577.83, 1965.41], [1573.13, 1943.15], [1536.35, 1950.87], [1537.15, 1954.67], [1505.08, 1961.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 629, "jobs": 0}}, {"shape": {"outer": [[1442.94, 1899.91], [1469.8, 1924.89], [1471.46, 1923.12], [1497.51, 1947.34], [1513.79, 1929.96], [1484.54, 1902.76], [1481.12, 1906.4], [1457.46, 1884.4], [1442.94, 1899.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 659, "jobs": 0}}, {"shape": {"outer": [[1452.67, 1870.13], [1468.86, 1885.08], [1494.86, 1857.11], [1491.95, 1854.43], [1514.87, 1829.78], [1499.07, 1815.19], [1473.09, 1843.14], [1475.61, 1845.46], [1452.67, 1870.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 632, "jobs": 0}}, {"shape": {"outer": [[1529.06, 1902.31], [1531.4, 1899.82], [1556.37, 1923.09], [1572.06, 1906.37], [1544.12, 1880.34], [1541.93, 1882.66], [1518.59, 1860.94], [1502.76, 1877.81], [1529.06, 1902.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 651, "jobs": 0}}, {"shape": {"outer": [[637.48, 1184.03], [646.29, 1173.51], [652.08, 1178.32], [643.27, 1188.83], [637.48, 1184.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[627.48, 1188.18], [636.56, 1196.77], [642.6, 1190.44], [633.54, 1181.84], [627.48, 1188.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[624.96, 1192.94], [627.84, 1195.42], [628.51, 1194.65], [631.35, 1197.08], [632.4, 1195.86], [635.53, 1198.55], [631.45, 1203.25], [630.58, 1202.49], [628.22, 1205.22], [625.27, 1202.68], [624.86, 1203.14], [621.42, 1200.19], [623.01, 1198.34], [621.44, 1196.99], [624.96, 1192.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[634.15, 1220.04], [628.63, 1212.54], [636.51, 1206.78], [638.05, 1208.86], [639.55, 1207.76], [641.98, 1211.06], [640.53, 1212.13], [642.08, 1214.24], [634.15, 1220.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[654.71, 1197.15], [665.05, 1185.82], [659.04, 1180.39], [648.72, 1191.71], [654.71, 1197.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[664.15, 1204.78], [658.42, 1199.47], [668.32, 1188.88], [674.04, 1194.18], [664.15, 1204.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[664.47, 1215.7], [673.51, 1224.47], [667.63, 1230.5], [658.58, 1221.73], [664.47, 1215.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[656.68, 1230.14], [662.76, 1235.65], [667.13, 1230.87], [661.05, 1225.35], [656.68, 1230.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[649.85, 1247.39], [656.59, 1239.72], [647.65, 1231.91], [640.89, 1239.58], [649.85, 1247.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[636.9, 1230.98], [648.29, 1222.43], [645.62, 1218.91], [643.47, 1220.51], [641.68, 1218.14], [632.44, 1225.07], [636.9, 1230.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[649.15, 1264.94], [658.9, 1253.92], [654.98, 1250.47], [653.37, 1252.31], [651.5, 1250.67], [643.37, 1259.87], [649.15, 1264.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[649.23, 1269.77], [658.68, 1259.55], [664.45, 1264.84], [655.0, 1275.07], [649.23, 1269.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[655.69, 1280.74], [669.72, 1276.64], [672.79, 1287.06], [658.74, 1291.16], [655.69, 1280.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[670.8, 1319.18], [666.53, 1305.35], [675.51, 1302.6], [677.31, 1308.4], [681.43, 1307.13], [681.71, 1308.03], [685.35, 1306.92], [687.16, 1312.78], [683.4, 1313.94], [683.65, 1314.75], [680.18, 1315.81], [680.32, 1316.25], [670.8, 1319.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[716.08, 1308.26], [720.13, 1303.97], [715.64, 1299.77], [711.6, 1304.06], [716.08, 1308.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[708.26, 1307.68], [711.16, 1304.41], [715.79, 1308.49], [712.88, 1311.76], [708.26, 1307.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[733.98, 1334.96], [738.3, 1329.97], [728.0, 1321.12], [723.68, 1326.09], [733.98, 1334.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[688.75, 1343.84], [685.76, 1334.65], [673.9, 1338.47], [674.27, 1339.62], [671.48, 1340.52], [673.77, 1347.56], [676.23, 1346.77], [676.55, 1347.78], [688.75, 1343.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[675.19, 1332.94], [672.21, 1323.18], [684.06, 1319.58], [685.6, 1324.63], [680.78, 1326.09], [682.22, 1330.79], [675.19, 1332.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[683.4, 1333.27], [689.61, 1331.41], [688.54, 1327.83], [682.32, 1329.7], [683.4, 1333.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[686.21, 1380.38], [695.07, 1377.65], [693.67, 1373.16], [698.62, 1371.63], [697.94, 1369.44], [704.24, 1367.48], [701.53, 1358.75], [691.33, 1361.91], [691.18, 1361.43], [688.56, 1362.23], [688.03, 1360.54], [680.74, 1362.79], [686.21, 1380.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[709.83, 1343.46], [711.47, 1341.65], [709.55, 1339.92], [713.58, 1335.44], [715.51, 1337.16], [716.25, 1336.33], [724.18, 1343.43], [717.76, 1350.56], [709.83, 1343.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[724.97, 1341.76], [729.68, 1336.66], [723.62, 1331.1], [718.91, 1336.2], [724.97, 1341.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[739.97, 1328.68], [745.36, 1322.87], [741.27, 1319.12], [741.45, 1318.93], [734.41, 1312.48], [728.87, 1318.48], [739.97, 1328.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[738.73, 1314.12], [745.22, 1307.46], [752.6, 1314.57], [746.11, 1321.25], [738.73, 1314.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[760.87, 1295.15], [772.79, 1282.42], [778.66, 1287.89], [766.75, 1300.61], [760.87, 1295.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[750.13, 1291.36], [763.89, 1276.44], [757.36, 1270.47], [747.88, 1280.75], [749.6, 1282.32], [745.32, 1286.96], [750.13, 1291.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[747.7, 1263.05], [754.82, 1269.6], [745.26, 1279.92], [738.14, 1273.37], [747.7, 1263.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[743.79, 1266.74], [749.66, 1260.65], [743.61, 1254.85], [737.74, 1260.95], [743.79, 1266.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[729.67, 1253.91], [733.52, 1257.35], [734.96, 1255.75], [737.48, 1258.0], [740.25, 1254.93], [737.95, 1252.88], [740.19, 1250.38], [736.11, 1246.74], [729.67, 1253.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[735.97, 1245.89], [731.18, 1241.55], [727.3, 1245.78], [726.05, 1244.65], [722.53, 1248.51], [724.76, 1250.53], [723.73, 1251.66], [727.55, 1255.12], [735.97, 1245.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[711.44, 1245.69], [720.45, 1235.87], [726.25, 1241.15], [717.24, 1250.98], [711.44, 1245.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[665.71, 1204.85], [674.01, 1212.21], [682.45, 1202.76], [674.15, 1195.4], [665.71, 1204.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[695.01, 1212.72], [685.79, 1223.28], [680.03, 1218.29], [689.25, 1207.72], [695.01, 1212.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[688.7, 1224.03], [694.97, 1229.36], [702.45, 1220.63], [696.19, 1215.29], [688.7, 1224.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[696.57, 1233.51], [702.41, 1238.56], [713.9, 1225.35], [708.06, 1220.3], [696.57, 1233.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[703.12, 1349.37], [710.51, 1347.12], [708.38, 1340.17], [700.99, 1342.42], [703.12, 1349.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[710.24, 1243.21], [714.51, 1238.58], [710.46, 1234.87], [706.19, 1239.5], [710.24, 1243.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[785.96, 1341.0], [774.06, 1330.34], [781.3, 1322.33], [793.19, 1333.0], [785.96, 1341.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[772.81, 1333.39], [780.32, 1340.01], [774.17, 1346.94], [766.66, 1340.33], [772.81, 1333.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[776.33, 1361.04], [781.74, 1365.81], [788.27, 1358.45], [782.85, 1353.68], [776.33, 1361.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[797.2, 1368.0], [791.01, 1362.79], [783.26, 1371.92], [789.46, 1377.14], [797.2, 1368.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[792.13, 1381.15], [802.38, 1369.98], [808.05, 1375.14], [797.81, 1386.31], [792.13, 1381.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[810.66, 1395.39], [812.69, 1397.2], [811.28, 1398.76], [815.93, 1402.92], [827.37, 1390.2], [820.69, 1384.23], [810.66, 1395.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[838.42, 1422.84], [842.2, 1426.22], [851.21, 1416.19], [834.03, 1400.86], [824.92, 1410.99], [828.7, 1414.36], [830.58, 1412.27], [840.2, 1420.86], [838.42, 1422.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[850.91, 1431.48], [860.43, 1421.19], [854.46, 1415.7], [844.94, 1425.98], [850.91, 1431.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[861.41, 1425.02], [868.17, 1431.02], [858.78, 1441.52], [852.02, 1435.52], [861.41, 1425.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[797.18, 1302.46], [802.16, 1306.8], [794.88, 1315.11], [789.89, 1310.77], [797.18, 1302.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[803.57, 1328.2], [812.15, 1318.79], [804.75, 1312.07], [796.16, 1321.49], [803.57, 1328.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[806.21, 1332.32], [813.2, 1338.86], [824.71, 1326.66], [820.33, 1322.56], [816.27, 1326.87], [813.65, 1324.42], [806.21, 1332.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[802.25, 1354.8], [809.04, 1360.11], [817.65, 1349.2], [810.86, 1343.88], [802.25, 1354.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[842.15, 1356.14], [848.38, 1348.18], [855.79, 1353.94], [849.56, 1361.9], [842.15, 1356.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[839.84, 1342.99], [846.07, 1348.36], [838.62, 1356.94], [832.39, 1351.57], [839.84, 1342.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[852.16, 1373.05], [862.84, 1361.5], [857.59, 1356.68], [846.91, 1368.23], [852.16, 1373.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[861.5, 1382.72], [872.49, 1370.22], [866.19, 1364.72], [855.2, 1377.22], [861.5, 1382.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[864.23, 1385.1], [870.25, 1390.23], [880.11, 1378.74], [874.08, 1373.61], [864.23, 1385.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[857.39, 1407.97], [863.07, 1413.15], [868.32, 1407.43], [862.64, 1402.24], [857.39, 1407.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[866.4, 1444.37], [871.56, 1438.65], [878.32, 1444.7], [873.17, 1450.42], [866.4, 1444.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[881.13, 1457.98], [889.15, 1449.13], [897.07, 1456.25], [895.16, 1458.35], [896.42, 1459.48], [892.54, 1463.76], [890.86, 1462.25], [888.62, 1464.71], [881.13, 1457.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[896.06, 1440.98], [901.98, 1434.85], [909.18, 1441.76], [903.26, 1447.88], [896.06, 1440.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[893.66, 1430.47], [898.93, 1424.4], [893.55, 1419.77], [888.29, 1425.84], [893.66, 1430.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[911.79, 1438.44], [900.09, 1427.57], [907.03, 1420.16], [918.73, 1431.03], [911.79, 1438.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[884.92, 1414.81], [890.09, 1409.18], [895.8, 1414.38], [890.63, 1420.01], [884.92, 1414.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[907.3, 1404.16], [912.56, 1408.9], [907.24, 1414.77], [901.97, 1410.03], [907.3, 1404.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[908.55, 1418.31], [914.84, 1411.37], [925.49, 1420.93], [919.2, 1427.88], [908.55, 1418.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[880.8, 1397.16], [890.22, 1405.32], [898.17, 1396.2], [888.75, 1388.04], [880.8, 1397.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[882.43, 1383.71], [887.59, 1388.07], [880.91, 1395.91], [875.75, 1391.55], [882.43, 1383.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[801.21, 1386.04], [806.4, 1390.46], [814.99, 1380.46], [809.81, 1376.03], [801.21, 1386.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[826.08, 1379.23], [830.78, 1373.76], [821.73, 1366.03], [817.02, 1371.52], [826.08, 1379.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[787.29, 1414.54], [794.07, 1406.72], [788.38, 1401.83], [781.6, 1409.65], [787.29, 1414.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[784.25, 1423.25], [796.83, 1409.88], [803.86, 1416.45], [794.77, 1426.1], [793.29, 1424.73], [789.8, 1428.44], [784.25, 1423.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[782.41, 1422.98], [786.47, 1418.22], [783.38, 1415.6], [779.32, 1420.37], [782.41, 1422.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[783.45, 1436.49], [775.28, 1428.89], [780.76, 1423.04], [788.93, 1430.65], [783.45, 1436.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[771.23, 1433.2], [779.75, 1440.69], [774.74, 1446.35], [766.22, 1438.87], [771.23, 1433.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[757.23, 1433.54], [760.05, 1430.34], [765.82, 1435.39], [763.0, 1438.59], [757.23, 1433.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[772.04, 1445.78], [771.83, 1446.39], [774.12, 1447.19], [772.24, 1452.56], [771.05, 1452.15], [770.62, 1453.37], [769.47, 1452.97], [768.99, 1454.35], [762.03, 1451.93], [765.03, 1443.35], [772.04, 1445.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[729.79, 1449.4], [727.26, 1440.81], [738.4, 1437.53], [740.95, 1446.13], [729.79, 1449.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[707.94, 1448.79], [720.37, 1444.69], [722.52, 1451.2], [710.1, 1455.3], [707.94, 1448.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[702.43, 1437.54], [705.08, 1445.37], [718.94, 1440.71], [716.3, 1432.88], [702.43, 1437.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[701.15, 1418.65], [697.18, 1420.06], [700.72, 1429.91], [708.97, 1426.96], [703.93, 1412.94], [699.64, 1414.47], [701.15, 1418.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[713.46, 1416.48], [712.2, 1415.31], [710.2, 1417.48], [701.04, 1409.07], [707.2, 1402.41], [717.63, 1411.98], [713.46, 1416.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[717.97, 1408.79], [724.25, 1401.86], [715.54, 1393.91], [709.07, 1401.21], [717.97, 1408.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[721.82, 1383.54], [733.78, 1394.12], [728.07, 1400.54], [716.11, 1389.95], [721.82, 1383.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[746.55, 1376.26], [752.78, 1369.21], [746.3, 1363.53], [740.08, 1370.59], [746.55, 1376.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[730.44, 1377.01], [736.21, 1370.75], [746.38, 1380.08], [740.61, 1386.33], [730.44, 1377.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[752.22, 1382.92], [753.9, 1381.24], [752.13, 1379.48], [750.46, 1381.14], [752.22, 1382.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[766.96, 1398.56], [771.76, 1393.75], [773.81, 1393.75], [773.81, 1391.81], [772.13, 1388.68], [770.24, 1386.76], [768.69, 1388.28], [768.12, 1387.71], [768.75, 1387.08], [766.58, 1384.9], [759.88, 1391.49], [766.96, 1398.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[754.59, 1386.36], [758.9, 1381.14], [762.63, 1384.2], [758.32, 1389.41], [754.59, 1386.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[738.28, 1416.98], [743.19, 1421.27], [745.49, 1418.67], [744.79, 1418.06], [752.3, 1409.55], [745.3, 1403.43], [738.74, 1410.87], [741.51, 1413.29], [738.28, 1416.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[719.7, 1454.3], [722.43, 1462.62], [712.34, 1465.9], [709.61, 1457.59], [719.7, 1454.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[715.57, 1477.65], [730.97, 1472.72], [728.28, 1464.4], [712.88, 1469.33], [715.57, 1477.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[716.55, 1488.86], [730.87, 1484.31], [728.52, 1476.95], [716.17, 1480.87], [716.94, 1483.27], [714.97, 1483.89], [716.55, 1488.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[721.6, 1498.21], [719.88, 1492.02], [723.82, 1490.93], [723.29, 1488.99], [729.66, 1487.22], [731.92, 1495.35], [721.6, 1498.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[728.47, 1505.78], [728.85, 1507.05], [736.34, 1504.8], [733.69, 1495.99], [726.1, 1498.25], [726.57, 1499.82], [719.38, 1501.98], [721.18, 1507.97], [728.47, 1505.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[729.59, 1528.59], [727.08, 1520.08], [740.6, 1516.12], [743.1, 1524.63], [729.59, 1528.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[750.91, 1542.42], [748.74, 1535.69], [734.2, 1540.35], [736.37, 1547.08], [750.91, 1542.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[741.56, 1555.77], [739.04, 1547.04], [754.78, 1542.53], [757.31, 1551.25], [741.56, 1555.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[743.42, 1565.68], [741.16, 1558.08], [750.07, 1555.44], [752.33, 1563.03], [743.42, 1565.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[748.97, 1577.8], [746.37, 1568.46], [761.43, 1564.29], [764.03, 1573.64], [748.97, 1577.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[758.15, 1578.22], [748.43, 1581.35], [751.0, 1589.25], [760.72, 1586.1], [758.15, 1578.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[753.32, 1597.56], [761.38, 1595.11], [761.16, 1594.36], [764.06, 1593.48], [763.98, 1593.2], [765.04, 1592.87], [764.9, 1592.39], [765.5, 1591.06], [767.96, 1590.31], [767.66, 1589.33], [768.09, 1588.37], [767.27, 1585.67], [763.56, 1586.8], [763.43, 1586.39], [759.06, 1587.73], [758.96, 1587.4], [750.95, 1589.84], [753.32, 1597.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[763.84, 1604.39], [761.78, 1597.23], [753.17, 1599.69], [755.23, 1606.84], [763.84, 1604.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[776.83, 1542.42], [783.3, 1540.05], [781.1, 1534.08], [774.62, 1536.45], [776.83, 1542.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[772.09, 1529.63], [775.26, 1528.43], [777.59, 1534.52], [774.43, 1535.72], [772.09, 1529.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[785.28, 1524.3], [796.77, 1519.93], [793.34, 1510.97], [781.86, 1515.33], [785.28, 1524.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[775.75, 1519.47], [774.32, 1515.89], [780.04, 1513.61], [781.48, 1517.2], [775.75, 1519.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[763.59, 1524.75], [761.71, 1519.01], [773.88, 1515.08], [775.75, 1520.8], [763.59, 1524.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[764.07, 1515.97], [761.67, 1508.78], [769.46, 1506.18], [771.87, 1513.37], [764.07, 1515.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[761.19, 1506.01], [768.53, 1503.6], [765.81, 1495.38], [758.47, 1497.8], [761.19, 1506.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[771.28, 1507.83], [769.83, 1504.27], [775.21, 1502.09], [776.66, 1505.65], [771.28, 1507.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[777.9, 1503.17], [789.38, 1498.98], [791.99, 1506.08], [789.55, 1506.97], [790.39, 1509.25], [781.35, 1512.55], [777.9, 1503.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[777.3, 1501.19], [774.09, 1492.52], [784.37, 1488.73], [787.58, 1497.39], [777.3, 1501.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[768.8, 1478.81], [777.1, 1475.67], [773.58, 1466.43], [765.29, 1469.55], [768.8, 1478.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[761.59, 1482.3], [766.2, 1480.57], [767.63, 1484.35], [763.03, 1486.09], [761.59, 1482.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[781.25, 1486.96], [778.22, 1478.36], [768.29, 1482.18], [771.48, 1490.65], [781.25, 1486.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[763.77, 1466.54], [772.2, 1463.54], [769.11, 1454.9], [760.68, 1457.9], [763.77, 1466.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[752.09, 1458.19], [747.62, 1459.93], [744.93, 1453.07], [749.4, 1451.33], [752.09, 1458.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[747.64, 1465.73], [742.63, 1466.89], [740.52, 1457.85], [745.54, 1456.68], [747.64, 1465.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[763.9, 1549.48], [773.6, 1546.84], [775.87, 1555.1], [766.18, 1557.75], [763.9, 1549.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[787.54, 1535.98], [785.99, 1531.77], [787.46, 1531.23], [785.9, 1526.97], [798.3, 1522.45], [801.41, 1530.92], [787.54, 1535.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[789.85, 1558.13], [784.88, 1545.51], [806.48, 1537.06], [811.45, 1549.68], [789.85, 1558.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[793.56, 1569.32], [787.23, 1571.64], [786.49, 1569.65], [784.22, 1570.48], [778.58, 1555.13], [780.44, 1554.46], [779.81, 1552.72], [784.29, 1551.08], [785.0, 1553.0], [787.25, 1552.18], [793.56, 1569.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[745.65, 1469.46], [748.04, 1476.34], [758.25, 1472.83], [755.85, 1465.95], [745.65, 1469.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[798.85, 1459.64], [800.46, 1457.61], [801.81, 1458.67], [803.75, 1456.22], [804.54, 1456.83], [805.53, 1455.6], [808.13, 1457.66], [806.96, 1459.12], [810.59, 1461.98], [804.8, 1469.26], [799.36, 1464.97], [800.53, 1463.49], [798.72, 1462.07], [799.96, 1460.51], [798.85, 1459.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[808.49, 1455.43], [810.51, 1453.09], [815.2, 1457.1], [813.18, 1459.44], [808.49, 1455.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[811.54, 1462.02], [814.51, 1464.59], [818.67, 1459.85], [815.72, 1457.26], [811.54, 1462.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[801.84, 1476.28], [808.87, 1468.2], [815.96, 1474.32], [808.93, 1482.41], [801.84, 1476.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[817.11, 1477.59], [805.93, 1490.49], [812.32, 1495.99], [823.51, 1483.08], [817.11, 1477.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[817.45, 1508.16], [823.79, 1500.63], [817.91, 1495.71], [813.03, 1501.52], [815.7, 1503.76], [814.24, 1505.49], [817.45, 1508.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[818.16, 1509.12], [820.86, 1505.8], [825.3, 1509.37], [822.61, 1512.71], [818.16, 1509.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[833.65, 1523.13], [821.11, 1512.33], [816.68, 1517.44], [818.83, 1519.29], [818.17, 1520.06], [826.64, 1527.35], [827.08, 1526.85], [828.99, 1528.51], [833.65, 1523.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[836.15, 1521.52], [842.11, 1514.96], [832.47, 1506.26], [831.61, 1507.2], [830.26, 1505.98], [828.11, 1508.35], [829.3, 1509.42], [826.33, 1512.68], [836.15, 1521.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[830.97, 1504.18], [833.29, 1501.37], [828.8, 1497.71], [826.49, 1500.52], [830.97, 1504.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[843.93, 1513.08], [849.65, 1506.36], [839.33, 1497.64], [833.6, 1504.36], [843.93, 1513.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[851.07, 1503.94], [841.19, 1495.29], [843.87, 1492.24], [845.18, 1493.37], [847.51, 1490.73], [856.1, 1498.26], [851.07, 1503.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[841.43, 1485.69], [846.0, 1489.44], [848.07, 1486.93], [843.51, 1483.18], [841.43, 1485.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[855.4, 1480.24], [852.38, 1483.63], [854.96, 1485.92], [852.56, 1488.61], [857.3, 1492.82], [862.73, 1486.74], [855.4, 1480.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[859.79, 1479.59], [866.65, 1472.22], [873.85, 1478.87], [867.0, 1486.24], [859.79, 1479.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[849.38, 1473.39], [843.51, 1467.79], [849.96, 1461.07], [855.84, 1466.67], [849.38, 1473.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[840.53, 1465.14], [834.07, 1459.37], [841.76, 1450.83], [848.22, 1456.61], [840.53, 1465.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[819.78, 1460.58], [821.93, 1458.09], [825.33, 1460.98], [823.18, 1463.48], [819.78, 1460.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[810.18, 1448.71], [818.8, 1456.56], [823.6, 1451.34], [814.98, 1443.48], [810.18, 1448.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[823.14, 1434.89], [830.95, 1442.05], [830.12, 1442.94], [832.28, 1444.91], [827.63, 1449.96], [817.65, 1440.84], [823.14, 1434.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[782.4, 1658.26], [789.38, 1665.68], [799.83, 1655.94], [792.86, 1648.51], [782.4, 1658.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[800.0, 1645.22], [797.9, 1642.93], [801.63, 1639.52], [803.74, 1641.81], [800.0, 1645.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[778.75, 1654.46], [772.11, 1646.95], [779.41, 1640.55], [786.05, 1648.06], [778.75, 1654.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[785.05, 1639.65], [782.91, 1637.28], [785.58, 1634.87], [787.73, 1637.24], [785.05, 1639.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[793.82, 1644.03], [789.95, 1639.65], [794.4, 1635.73], [798.28, 1640.11], [793.82, 1644.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[764.23, 1636.7], [769.89, 1642.78], [778.75, 1634.6], [773.11, 1628.51], [764.23, 1636.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[786.08, 1631.63], [781.77, 1627.0], [787.27, 1621.94], [791.57, 1626.58], [786.08, 1631.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[784.03, 1617.37], [791.43, 1609.32], [800.71, 1617.79], [800.0, 1618.57], [801.34, 1619.8], [797.45, 1624.02], [796.31, 1622.99], [793.51, 1626.02], [784.03, 1617.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[798.39, 1607.19], [802.79, 1611.22], [803.78, 1610.14], [807.05, 1613.12], [816.63, 1602.74], [808.15, 1594.99], [799.01, 1604.9], [799.81, 1605.64], [798.39, 1607.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[816.98, 1582.14], [818.68, 1583.9], [818.88, 1583.71], [829.59, 1594.74], [822.88, 1601.2], [812.28, 1590.28], [813.41, 1589.19], [811.59, 1587.34], [816.98, 1582.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[829.04, 1611.86], [824.43, 1607.1], [829.14, 1602.57], [833.75, 1607.33], [829.04, 1611.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[839.9, 1631.72], [842.73, 1629.36], [839.06, 1624.97], [836.22, 1627.31], [839.9, 1631.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[851.01, 1624.82], [853.92, 1622.29], [850.01, 1617.8], [847.09, 1620.31], [851.01, 1624.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[857.72, 1616.53], [861.19, 1613.55], [856.84, 1608.55], [853.38, 1611.53], [857.72, 1616.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[834.82, 1600.09], [839.19, 1596.12], [842.16, 1599.37], [837.79, 1603.34], [834.82, 1600.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[830.77, 1646.88], [836.99, 1641.63], [845.77, 1651.96], [839.55, 1657.22], [830.77, 1646.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[811.79, 1648.1], [815.05, 1645.15], [820.21, 1650.82], [816.95, 1653.77], [811.79, 1648.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[795.2, 1674.7], [803.5, 1667.46], [814.71, 1680.22], [806.4, 1687.45], [795.2, 1674.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[803.88, 1664.64], [799.05, 1659.0], [809.03, 1650.52], [813.86, 1656.17], [803.88, 1664.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[811.8, 1665.54], [818.92, 1658.99], [826.75, 1667.46], [825.85, 1668.29], [827.41, 1669.96], [822.57, 1674.4], [820.7, 1672.38], [819.31, 1673.65], [811.8, 1665.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[830.69, 1666.33], [838.23, 1659.84], [829.76, 1650.06], [826.37, 1652.97], [827.08, 1653.77], [822.92, 1657.34], [830.69, 1666.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[857.23, 1643.37], [845.63, 1630.19], [852.55, 1624.14], [864.15, 1637.33], [857.23, 1643.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[847.89, 1651.87], [855.35, 1645.2], [843.92, 1632.5], [840.32, 1635.71], [839.28, 1634.55], [835.98, 1637.5], [837.1, 1638.75], [836.53, 1639.25], [847.89, 1651.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[866.05, 1634.9], [856.96, 1624.47], [863.68, 1618.66], [870.86, 1626.89], [868.47, 1628.96], [869.36, 1629.99], [868.33, 1630.87], [869.36, 1632.05], [866.05, 1634.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[873.51, 1611.82], [865.92, 1618.3], [872.65, 1626.14], [881.92, 1618.23], [877.56, 1613.15], [875.87, 1614.58], [873.51, 1611.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[875.66, 1609.86], [882.16, 1604.38], [888.47, 1611.82], [887.88, 1612.32], [889.32, 1614.02], [884.03, 1618.47], [882.61, 1616.8], [881.98, 1617.33], [875.66, 1609.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[891.74, 1594.7], [900.88, 1604.97], [893.8, 1611.21], [884.67, 1600.96], [891.74, 1594.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[900.02, 1601.07], [908.04, 1594.15], [898.96, 1583.71], [898.1, 1584.46], [895.53, 1581.5], [889.0, 1587.13], [891.54, 1590.05], [890.91, 1590.6], [900.02, 1601.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[885.43, 1591.75], [888.59, 1588.92], [884.89, 1584.81], [881.72, 1587.65], [885.43, 1591.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[887.64, 1580.15], [883.04, 1575.32], [888.62, 1570.05], [893.22, 1574.88], [887.64, 1580.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[908.03, 1561.29], [910.97, 1558.64], [914.92, 1562.98], [911.98, 1565.63], [908.03, 1561.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[911.61, 1594.93], [901.7, 1583.87], [909.39, 1577.01], [919.31, 1588.07], [911.61, 1594.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[920.05, 1586.68], [928.15, 1579.24], [917.04, 1567.23], [908.94, 1574.67], [920.05, 1586.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[928.41, 1576.06], [922.04, 1568.89], [929.59, 1562.23], [935.69, 1569.11], [934.14, 1570.48], [935.66, 1572.18], [931.11, 1576.19], [929.86, 1574.77], [928.41, 1576.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[938.55, 1569.71], [945.12, 1563.6], [936.02, 1553.88], [929.45, 1559.99], [938.55, 1569.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[886.39, 1551.47], [889.63, 1547.73], [894.9, 1552.29], [891.65, 1556.02], [886.39, 1551.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[908.47, 1553.9], [914.04, 1549.09], [908.84, 1543.12], [903.27, 1547.92], [908.47, 1553.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[894.68, 1542.31], [897.92, 1539.03], [903.05, 1544.07], [899.82, 1547.36], [894.68, 1542.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[926.31, 1545.41], [922.22, 1541.2], [924.85, 1538.67], [928.93, 1542.87], [926.31, 1545.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[938.48, 1549.64], [940.61, 1547.8], [937.95, 1544.75], [942.69, 1540.66], [955.38, 1555.27], [948.51, 1561.2], [938.48, 1549.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[934.02, 1546.93], [938.13, 1543.68], [935.04, 1539.79], [930.92, 1543.04], [934.02, 1546.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[947.73, 1526.66], [951.15, 1530.93], [954.3, 1528.42], [950.88, 1524.16], [947.73, 1526.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[949.4, 1543.94], [957.59, 1553.57], [964.36, 1547.85], [953.64, 1535.25], [949.01, 1539.16], [950.6, 1541.02], [949.55, 1541.9], [950.49, 1543.02], [949.4, 1543.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[966.13, 1527.61], [972.8, 1521.63], [980.12, 1529.72], [973.46, 1535.7], [966.13, 1527.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[955.67, 1532.33], [961.36, 1527.6], [972.76, 1541.2], [967.07, 1545.93], [955.67, 1532.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[951.18, 1521.94], [941.52, 1512.94], [949.35, 1504.59], [959.02, 1513.58], [951.18, 1521.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[948.11, 1502.05], [936.54, 1515.08], [929.31, 1508.71], [938.92, 1497.89], [941.82, 1500.45], [943.79, 1498.24], [948.11, 1502.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[938.07, 1494.58], [927.55, 1506.35], [920.38, 1499.98], [930.9, 1488.21], [938.07, 1494.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[843.58, 1582.26], [847.82, 1578.4], [853.24, 1584.34], [849.01, 1588.18], [843.58, 1582.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[853.49, 1575.21], [858.96, 1580.52], [863.61, 1575.77], [858.14, 1570.44], [853.49, 1575.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[866.72, 1571.74], [873.52, 1577.94], [879.25, 1571.71], [872.45, 1565.5], [866.72, 1571.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[879.61, 1563.7], [881.69, 1561.12], [884.64, 1563.49], [882.55, 1566.06], [879.61, 1563.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[818.11, 1581.39], [825.1, 1575.08], [834.46, 1585.37], [827.46, 1591.68], [818.11, 1581.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[840.79, 1576.33], [832.77, 1567.08], [826.77, 1572.24], [834.98, 1581.69], [835.36, 1581.36], [837.85, 1584.23], [842.84, 1579.94], [840.18, 1576.86], [840.79, 1576.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[844.7, 1573.36], [851.07, 1566.34], [842.07, 1558.23], [840.09, 1560.41], [838.33, 1558.82], [833.94, 1563.66], [844.7, 1573.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[854.08, 1564.92], [860.02, 1558.24], [850.25, 1549.61], [844.31, 1556.31], [854.08, 1564.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[858.34, 1535.49], [868.77, 1544.66], [861.92, 1552.4], [851.48, 1543.23], [858.34, 1535.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[870.99, 1545.03], [877.19, 1538.17], [866.25, 1528.37], [860.06, 1535.22], [870.99, 1545.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[877.6, 1536.19], [884.44, 1528.52], [875.83, 1520.92], [875.3, 1521.51], [873.48, 1519.9], [867.93, 1526.14], [869.66, 1527.66], [868.9, 1528.5], [877.6, 1536.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[886.03, 1524.59], [878.57, 1517.85], [881.15, 1515.01], [880.13, 1514.09], [880.01, 1512.38], [881.76, 1510.5], [883.44, 1510.41], [884.56, 1511.42], [885.59, 1510.3], [893.21, 1517.19], [892.74, 1517.71], [897.6, 1522.11], [893.72, 1526.38], [889.69, 1522.75], [887.58, 1525.07], [886.49, 1524.09], [886.03, 1524.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[895.12, 1518.32], [885.52, 1509.83], [885.98, 1509.3], [884.65, 1508.13], [888.96, 1503.28], [890.32, 1504.48], [892.48, 1504.29], [892.58, 1505.47], [898.07, 1510.3], [898.11, 1511.58], [903.77, 1516.58], [900.42, 1520.35], [896.44, 1516.84], [895.12, 1518.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[904.3, 1514.1], [899.0, 1509.46], [902.26, 1505.75], [907.57, 1510.39], [904.3, 1514.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[916.58, 1489.66], [922.48, 1494.93], [928.98, 1487.71], [923.08, 1482.44], [916.58, 1489.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[913.14, 1472.16], [920.34, 1478.24], [912.9, 1486.99], [905.7, 1480.91], [913.14, 1472.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[895.08, 1497.71], [899.51, 1501.67], [904.42, 1496.22], [900.0, 1492.26], [895.08, 1497.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[747.94, 1189.23], [754.45, 1182.2], [760.08, 1187.35], [753.57, 1194.4], [747.94, 1189.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[760.24, 1204.24], [754.8, 1199.44], [751.11, 1203.59], [750.71, 1203.25], [745.42, 1209.2], [751.26, 1214.35], [760.24, 1204.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[761.44, 1215.68], [751.45, 1226.93], [745.14, 1221.37], [755.12, 1210.11], [761.44, 1215.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[754.78, 1226.87], [761.47, 1219.04], [761.86, 1219.37], [763.36, 1217.63], [767.27, 1220.94], [765.67, 1222.83], [768.49, 1225.23], [764.77, 1229.58], [763.68, 1228.65], [760.83, 1231.99], [754.78, 1226.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[766.51, 1240.71], [760.24, 1234.92], [772.26, 1222.0], [779.22, 1228.43], [771.61, 1236.6], [771.19, 1236.21], [768.24, 1239.36], [767.99, 1239.12], [766.51, 1240.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[788.02, 1236.86], [781.21, 1230.83], [777.21, 1235.31], [777.09, 1235.2], [773.87, 1238.81], [774.23, 1239.14], [771.08, 1242.67], [777.65, 1248.49], [788.02, 1236.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[780.66, 1251.06], [786.77, 1256.46], [795.77, 1246.35], [789.66, 1240.96], [787.16, 1243.76], [786.72, 1243.37], [783.18, 1247.34], [783.63, 1247.73], [780.66, 1251.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[799.02, 1247.03], [806.16, 1253.28], [795.85, 1264.97], [794.25, 1263.57], [793.33, 1264.59], [787.79, 1259.75], [799.02, 1247.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[800.77, 1236.52], [806.73, 1230.07], [819.21, 1241.54], [813.98, 1247.2], [813.21, 1246.5], [812.48, 1247.29], [800.77, 1236.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[792.37, 1230.8], [799.86, 1223.03], [793.87, 1217.3], [786.38, 1225.08], [792.37, 1230.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[809.71, 1227.12], [815.75, 1220.4], [827.66, 1231.01], [821.61, 1237.74], [809.71, 1227.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[828.26, 1223.05], [834.37, 1228.72], [842.4, 1220.15], [841.97, 1219.74], [845.72, 1215.74], [840.04, 1210.46], [828.26, 1223.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[825.06, 1226.06], [820.17, 1221.64], [824.15, 1217.28], [829.03, 1221.7], [825.06, 1226.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[822.06, 1215.39], [818.6, 1219.17], [820.61, 1221.0], [824.07, 1217.2], [822.06, 1215.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[813.7, 1209.08], [824.11, 1197.73], [826.9, 1200.28], [828.57, 1198.45], [833.12, 1202.59], [831.46, 1204.41], [831.77, 1204.69], [821.34, 1216.05], [813.7, 1209.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[816.6, 1190.77], [823.95, 1197.52], [811.12, 1211.37], [803.78, 1204.62], [816.6, 1190.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[803.18, 1201.81], [796.92, 1196.07], [808.38, 1183.67], [808.93, 1184.18], [809.81, 1183.22], [814.95, 1187.93], [814.07, 1188.89], [814.63, 1189.41], [803.18, 1201.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[797.53, 1192.28], [792.36, 1187.71], [802.47, 1176.37], [807.63, 1180.95], [797.53, 1192.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[784.15, 1180.4], [792.87, 1170.71], [798.91, 1176.11], [796.11, 1179.22], [796.64, 1179.68], [793.28, 1183.41], [792.76, 1182.94], [790.19, 1185.8], [789.15, 1184.88], [788.17, 1185.96], [785.53, 1183.59], [786.5, 1182.5], [784.15, 1180.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[781.56, 1179.38], [792.22, 1167.79], [785.93, 1162.05], [775.27, 1173.64], [781.56, 1179.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[777.98, 1156.93], [771.87, 1163.98], [772.54, 1164.55], [771.07, 1166.24], [774.67, 1169.35], [776.02, 1167.79], [778.25, 1169.7], [784.47, 1162.52], [783.93, 1162.05], [784.44, 1161.46], [782.49, 1159.79], [781.97, 1160.37], [777.98, 1156.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[756.86, 1161.12], [761.1, 1156.67], [761.6, 1157.16], [766.0, 1152.55], [765.5, 1152.08], [767.29, 1150.19], [761.96, 1145.13], [751.52, 1156.05], [756.86, 1161.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[760.04, 1174.35], [756.61, 1171.4], [753.37, 1175.16], [756.8, 1178.1], [760.04, 1174.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[766.05, 1200.48], [771.33, 1205.4], [776.22, 1200.19], [770.93, 1195.27], [766.05, 1200.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[772.13, 1155.79], [776.1, 1151.66], [772.0, 1147.75], [761.53, 1158.66], [765.71, 1162.64], [768.13, 1160.12], [769.63, 1161.55], [773.71, 1157.3], [772.13, 1155.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[938.56, 1455.96], [946.47, 1447.15], [941.28, 1442.53], [933.37, 1451.33], [938.56, 1455.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[947.04, 1451.52], [953.14, 1457.07], [947.06, 1463.72], [940.95, 1458.15], [947.04, 1451.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[962.04, 1452.01], [958.23, 1448.73], [962.63, 1443.66], [966.43, 1446.94], [962.04, 1452.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[957.82, 1474.77], [950.88, 1468.45], [960.15, 1458.33], [967.1, 1464.64], [957.82, 1474.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[962.14, 1474.55], [968.94, 1480.49], [976.48, 1471.9], [969.69, 1465.96], [962.14, 1474.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[969.22, 1484.43], [977.65, 1474.68], [984.9, 1480.89], [976.48, 1490.66], [969.22, 1484.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[986.36, 1498.64], [984.41, 1496.91], [983.64, 1497.78], [980.7, 1495.18], [981.48, 1494.32], [979.78, 1492.82], [988.45, 1483.08], [995.03, 1488.9], [986.36, 1498.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[995.01, 1507.76], [988.86, 1502.57], [994.52, 1495.91], [1000.67, 1501.1], [995.01, 1507.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[996.42, 1508.06], [1002.98, 1500.45], [1010.07, 1506.52], [1003.86, 1513.74], [999.27, 1509.81], [998.93, 1510.21], [996.42, 1508.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1005.74, 1518.52], [1010.16, 1522.53], [1011.75, 1520.79], [1014.47, 1523.26], [1024.7, 1512.08], [1022.41, 1510.0], [1023.15, 1509.19], [1019.66, 1506.03], [1018.92, 1506.84], [1017.55, 1505.59], [1005.74, 1518.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1015.16, 1523.79], [1023.49, 1514.64], [1031.81, 1522.16], [1023.49, 1531.3], [1015.16, 1523.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1025.6, 1532.62], [1030.47, 1527.22], [1032.47, 1529.02], [1034.8, 1526.43], [1040.02, 1531.11], [1032.81, 1539.09], [1029.0, 1535.66], [1028.6, 1536.11], [1026.72, 1534.43], [1027.12, 1533.98], [1025.6, 1532.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1065.31, 1483.08], [1078.04, 1494.49], [1056.97, 1517.85], [1044.23, 1506.44], [1065.31, 1483.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.43, "pop": 215, "jobs": 0}}, {"shape": {"outer": [[1038.97, 1548.58], [1040.27, 1547.16], [1041.2, 1548.0], [1047.77, 1540.78], [1040.69, 1534.38], [1034.26, 1541.44], [1035.88, 1542.91], [1034.44, 1544.48], [1038.97, 1548.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1043.28, 1550.18], [1050.06, 1543.23], [1053.39, 1546.45], [1054.09, 1545.73], [1056.27, 1547.84], [1055.57, 1548.56], [1056.81, 1549.76], [1050.04, 1556.72], [1047.49, 1554.26], [1046.3, 1555.48], [1042.57, 1551.89], [1043.77, 1550.65], [1043.28, 1550.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1050.39, 1562.06], [1057.82, 1554.03], [1066.47, 1561.99], [1059.04, 1570.02], [1050.39, 1562.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1068.18, 1548.22], [1069.93, 1546.16], [1068.4, 1544.86], [1073.51, 1538.85], [1082.69, 1546.59], [1075.84, 1554.68], [1068.18, 1548.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1085.96, 1494.51], [1097.88, 1481.31], [1121.44, 1502.43], [1109.52, 1515.63], [1085.96, 1494.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.45, "pop": 225, "jobs": 0}}, {"shape": {"outer": [[972.88, 1459.12], [969.75, 1456.32], [973.85, 1451.78], [976.98, 1454.58], [972.88, 1459.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[973.56, 1458.88], [976.63, 1461.63], [981.02, 1456.78], [977.94, 1454.02], [973.56, 1458.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[993.25, 1557.12], [1004.93, 1570.59], [1012.21, 1564.32], [1000.53, 1550.84], [993.25, 1557.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[984.55, 1564.74], [998.17, 1580.03], [1003.61, 1575.23], [990.0, 1559.93], [984.55, 1564.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[973.72, 1573.81], [981.17, 1567.13], [989.82, 1576.71], [982.38, 1583.39], [973.72, 1573.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[995.92, 1589.22], [999.74, 1586.07], [996.56, 1582.25], [992.74, 1585.39], [995.92, 1589.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[992.55, 1601.2], [988.7, 1596.68], [991.26, 1594.27], [994.61, 1591.68], [998.47, 1596.19], [992.55, 1601.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[983.9, 1592.32], [987.33, 1589.52], [991.26, 1594.27], [987.83, 1597.08], [983.9, 1592.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[964.72, 1581.66], [976.85, 1595.57], [983.75, 1589.59], [980.17, 1585.48], [981.16, 1584.62], [972.62, 1574.83], [964.72, 1581.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[966.43, 1600.48], [956.45, 1589.01], [963.97, 1582.53], [972.12, 1591.91], [969.76, 1593.96], [971.57, 1596.04], [966.43, 1600.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[950.85, 1598.37], [948.94, 1599.97], [957.03, 1609.58], [963.94, 1603.8], [953.9, 1591.86], [948.89, 1596.04], [950.85, 1598.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[946.16, 1616.01], [953.9, 1609.26], [947.41, 1601.87], [939.66, 1608.62], [946.16, 1616.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[947.85, 1623.66], [950.67, 1621.42], [953.18, 1624.55], [950.36, 1626.79], [947.85, 1623.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[930.36, 1616.32], [937.15, 1610.42], [943.26, 1617.39], [936.48, 1623.3], [930.36, 1616.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[924.27, 1621.31], [921.28, 1624.06], [931.54, 1635.14], [938.59, 1628.67], [926.65, 1615.8], [922.6, 1619.51], [924.27, 1621.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[936.56, 1641.93], [939.25, 1639.66], [935.91, 1635.73], [933.21, 1638.02], [936.56, 1641.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[940.78, 1647.33], [945.79, 1643.12], [941.8, 1638.38], [936.78, 1642.59], [940.78, 1647.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[927.37, 1642.34], [932.19, 1638.18], [936.44, 1643.07], [931.62, 1647.23], [927.37, 1642.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[931.88, 1655.79], [928.72, 1651.93], [932.02, 1649.25], [935.16, 1653.12], [931.88, 1655.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[918.05, 1658.47], [921.23, 1655.54], [917.23, 1651.22], [914.04, 1654.15], [918.05, 1658.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[905.16, 1669.22], [901.07, 1664.45], [904.4, 1661.61], [908.5, 1666.39], [905.16, 1669.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[909.57, 1665.81], [912.77, 1663.05], [908.89, 1658.59], [905.7, 1661.35], [909.57, 1665.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[912.64, 1669.61], [917.95, 1665.05], [915.16, 1661.83], [909.86, 1666.41], [912.64, 1669.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[900.46, 1674.84], [904.9, 1671.19], [908.91, 1676.04], [904.46, 1679.69], [900.46, 1674.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[892.02, 1683.04], [896.83, 1678.7], [901.13, 1683.45], [896.31, 1687.78], [892.02, 1683.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[918.02, 1639.5], [925.9, 1632.58], [919.74, 1625.63], [917.85, 1627.3], [916.36, 1625.62], [912.42, 1629.09], [913.84, 1630.68], [911.8, 1632.48], [918.02, 1639.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[910.89, 1647.84], [917.55, 1642.12], [910.11, 1633.55], [909.06, 1634.44], [908.22, 1633.48], [906.81, 1634.7], [905.99, 1633.75], [901.8, 1637.36], [910.89, 1647.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[903.62, 1655.76], [910.32, 1649.82], [899.99, 1638.26], [893.3, 1644.18], [903.62, 1655.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[892.51, 1665.58], [882.14, 1653.83], [889.05, 1647.78], [899.42, 1659.52], [892.51, 1665.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[892.99, 1672.71], [889.03, 1668.02], [891.91, 1665.6], [895.87, 1670.29], [892.99, 1672.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[881.2, 1655.3], [889.26, 1665.19], [885.81, 1667.99], [888.07, 1670.77], [883.19, 1674.72], [872.87, 1662.06], [881.2, 1655.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[872.61, 1679.73], [864.55, 1670.88], [872.19, 1663.97], [880.24, 1672.83], [872.61, 1679.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[864.82, 1688.9], [855.42, 1678.3], [862.28, 1672.27], [869.87, 1680.83], [866.23, 1684.03], [868.04, 1686.08], [864.82, 1688.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[876.3, 1695.81], [871.8, 1690.5], [877.63, 1685.59], [882.13, 1690.9], [876.3, 1695.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[852.09, 1682.56], [860.11, 1691.1], [855.33, 1695.55], [847.31, 1687.01], [852.09, 1682.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[857.9, 1711.51], [854.58, 1707.87], [859.54, 1703.38], [862.86, 1707.02], [857.9, 1711.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[871.56, 1708.51], [867.61, 1703.66], [872.96, 1699.33], [876.91, 1704.16], [871.56, 1708.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[841.07, 1703.86], [827.94, 1714.89], [821.74, 1707.56], [834.88, 1696.53], [841.07, 1703.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[838.3, 1725.9], [850.99, 1714.8], [844.34, 1707.25], [833.55, 1716.67], [835.66, 1719.08], [833.76, 1720.73], [838.3, 1725.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[850.73, 1734.75], [858.14, 1728.12], [852.22, 1721.53], [844.81, 1728.15], [850.73, 1734.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[859.57, 1750.32], [863.45, 1746.9], [861.66, 1744.9], [871.94, 1735.84], [873.64, 1737.74], [877.59, 1734.26], [868.43, 1723.95], [850.33, 1739.93], [859.57, 1750.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[871.37, 1715.22], [875.75, 1711.32], [877.28, 1713.02], [879.6, 1710.96], [888.08, 1720.39], [881.38, 1726.35], [871.37, 1715.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[880.25, 1707.36], [885.84, 1702.62], [887.09, 1704.09], [889.19, 1702.3], [897.53, 1712.07], [889.84, 1718.59], [880.25, 1707.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[900.05, 1707.49], [905.98, 1702.55], [898.56, 1693.69], [892.62, 1698.63], [900.05, 1707.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[902.73, 1691.65], [910.28, 1700.25], [916.56, 1694.78], [909.01, 1686.18], [902.73, 1691.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[919.88, 1692.37], [926.22, 1686.66], [917.88, 1677.44], [911.54, 1683.13], [919.88, 1692.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[926.4, 1685.1], [934.26, 1678.0], [927.18, 1670.22], [928.21, 1668.89], [931.11, 1672.39], [938.56, 1666.85], [931.52, 1658.75], [923.86, 1666.57], [921.97, 1664.49], [914.11, 1671.59], [926.4, 1685.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[945.09, 1667.52], [948.59, 1664.56], [947.31, 1663.05], [949.55, 1661.14], [942.09, 1652.41], [936.34, 1657.29], [945.09, 1667.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[956.58, 1661.32], [945.44, 1648.83], [952.09, 1642.93], [963.23, 1655.43], [956.58, 1661.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[964.07, 1654.33], [954.79, 1643.79], [955.74, 1642.96], [953.72, 1640.66], [958.15, 1636.79], [960.48, 1639.42], [962.84, 1637.37], [971.8, 1647.56], [964.07, 1654.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[959.16, 1622.04], [963.71, 1618.57], [959.86, 1613.57], [955.31, 1617.03], [959.16, 1622.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1017.38, 1603.89], [1011.25, 1596.82], [1018.05, 1590.98], [1024.18, 1598.05], [1017.38, 1603.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1006.19, 1596.37], [1007.29, 1597.68], [1008.68, 1596.5], [1017.02, 1606.31], [1008.94, 1613.14], [999.49, 1602.03], [1006.19, 1596.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[991.81, 1610.06], [998.66, 1604.27], [1007.41, 1614.54], [1000.56, 1620.34], [991.81, 1610.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[991.86, 1628.49], [998.75, 1622.52], [990.88, 1613.5], [983.99, 1619.46], [991.86, 1628.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1029.81, 1593.74], [1034.9, 1589.45], [1030.65, 1584.44], [1025.55, 1588.73], [1029.81, 1593.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[888.0, 1684.2], [890.93, 1681.62], [886.52, 1676.66], [883.6, 1679.24], [888.0, 1684.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[981.79, 1623.07], [988.64, 1631.11], [983.0, 1635.89], [976.15, 1627.84], [981.79, 1623.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1027.27, 1580.51], [1032.33, 1575.16], [1043.96, 1586.12], [1038.9, 1591.46], [1027.27, 1580.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[885.01, 1759.67], [875.65, 1768.62], [883.01, 1776.28], [892.38, 1767.32], [885.01, 1759.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[892.15, 1773.81], [898.88, 1781.24], [890.21, 1789.04], [883.48, 1781.6], [892.15, 1773.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[891.95, 1791.89], [905.69, 1780.12], [912.33, 1787.81], [898.59, 1799.58], [891.95, 1791.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[898.68, 1775.24], [903.25, 1780.42], [908.12, 1776.16], [903.55, 1770.97], [898.68, 1775.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[899.21, 1800.95], [912.21, 1789.6], [920.56, 1799.1], [907.55, 1810.45], [899.21, 1800.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[927.47, 1802.8], [934.21, 1796.68], [923.31, 1784.76], [916.57, 1790.89], [927.47, 1802.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[928.96, 1788.12], [935.54, 1795.5], [943.67, 1788.3], [935.78, 1779.47], [932.44, 1782.43], [933.74, 1783.88], [928.96, 1788.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[946.49, 1785.48], [955.03, 1777.79], [944.66, 1766.35], [936.13, 1774.03], [946.49, 1785.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[958.43, 1773.22], [962.63, 1769.64], [964.31, 1771.6], [968.22, 1768.26], [958.36, 1756.8], [950.26, 1763.72], [958.43, 1773.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[969.78, 1763.65], [971.5, 1762.17], [973.21, 1764.14], [978.27, 1759.77], [967.34, 1747.2], [960.56, 1753.05], [969.78, 1763.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[981.54, 1756.7], [988.74, 1750.89], [978.01, 1737.65], [970.8, 1743.44], [981.54, 1756.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[991.05, 1743.9], [992.27, 1742.86], [994.45, 1745.42], [1001.99, 1739.01], [999.53, 1736.16], [1000.09, 1735.69], [993.87, 1728.43], [984.57, 1736.34], [991.05, 1743.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1005.07, 1730.72], [1008.53, 1727.68], [1010.02, 1729.36], [1012.97, 1726.77], [1006.29, 1719.21], [999.87, 1724.85], [1005.07, 1730.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1016.03, 1725.47], [1023.68, 1718.69], [1013.36, 1707.13], [1005.71, 1713.91], [1016.03, 1725.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[994.74, 1711.95], [989.76, 1716.36], [985.55, 1711.63], [990.52, 1707.23], [994.74, 1711.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[998.44, 1707.24], [1004.26, 1702.36], [999.85, 1697.14], [994.02, 1702.02], [998.44, 1707.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[995.23, 1699.11], [999.67, 1695.21], [994.91, 1689.82], [990.47, 1693.73], [995.23, 1699.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[999.89, 1694.81], [1003.79, 1691.24], [998.96, 1686.02], [995.06, 1689.59], [999.89, 1694.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1026.7, 1713.13], [1016.41, 1702.31], [1022.82, 1696.26], [1034.09, 1708.11], [1029.05, 1712.86], [1028.07, 1711.83], [1026.7, 1713.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1037.16, 1703.37], [1038.9, 1701.83], [1040.86, 1704.0], [1047.32, 1698.24], [1037.66, 1687.48], [1034.76, 1690.07], [1033.53, 1688.71], [1028.23, 1693.42], [1037.16, 1703.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1051.12, 1695.94], [1058.49, 1689.18], [1055.27, 1685.69], [1056.29, 1684.75], [1047.85, 1675.61], [1039.45, 1683.31], [1051.12, 1695.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[1062.11, 1685.02], [1051.46, 1672.95], [1059.21, 1666.16], [1069.85, 1678.23], [1062.11, 1685.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1064.11, 1666.25], [1072.57, 1673.82], [1082.08, 1663.26], [1075.46, 1657.33], [1068.39, 1665.19], [1066.55, 1663.54], [1064.11, 1666.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1086.62, 1661.99], [1070.3, 1647.42], [1075.87, 1641.22], [1092.21, 1655.77], [1086.62, 1661.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1067.74, 1650.4], [1058.14, 1641.45], [1053.55, 1646.35], [1063.15, 1655.29], [1067.74, 1650.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1064.44, 1645.62], [1058.98, 1640.77], [1064.52, 1634.59], [1069.97, 1639.44], [1064.44, 1645.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1055.61, 1642.15], [1061.67, 1636.71], [1057.33, 1631.9], [1051.27, 1637.36], [1055.61, 1642.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1060.23, 1629.77], [1063.87, 1633.98], [1061.63, 1635.91], [1057.98, 1631.71], [1060.23, 1629.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[1074.18, 1634.25], [1079.04, 1629.26], [1074.49, 1624.85], [1069.62, 1629.86], [1074.18, 1634.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1096.5, 1650.04], [1103.85, 1641.96], [1089.98, 1629.45], [1084.85, 1635.09], [1089.27, 1639.08], [1087.06, 1641.51], [1096.5, 1650.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1106.54, 1639.03], [1114.09, 1630.69], [1104.77, 1622.33], [1101.85, 1625.56], [1100.18, 1624.07], [1095.57, 1629.18], [1106.54, 1639.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1103.5, 1617.03], [1116.37, 1629.07], [1123.56, 1621.45], [1112.21, 1610.82], [1112.73, 1610.28], [1107.54, 1605.42], [1101.71, 1611.6], [1105.38, 1615.04], [1103.5, 1617.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[1125.5, 1618.03], [1131.4, 1611.35], [1120.13, 1601.48], [1114.23, 1608.16], [1125.5, 1618.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1117.85, 1600.4], [1112.33, 1595.46], [1116.41, 1590.93], [1121.92, 1595.87], [1117.85, 1600.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1125.85, 1597.21], [1136.16, 1606.74], [1142.99, 1599.4], [1131.03, 1588.35], [1127.02, 1592.67], [1128.66, 1594.19], [1125.85, 1597.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1125.02, 1587.61], [1128.66, 1583.71], [1123.42, 1578.85], [1119.78, 1582.76], [1125.02, 1587.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1136.16, 1587.83], [1142.53, 1580.57], [1149.68, 1586.81], [1149.04, 1587.55], [1151.13, 1589.38], [1146.25, 1594.95], [1144.59, 1593.5], [1143.76, 1594.46], [1136.16, 1587.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1146.36, 1566.48], [1158.53, 1576.59], [1152.36, 1583.96], [1140.19, 1573.84], [1146.36, 1566.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1119.56, 1575.16], [1122.08, 1572.47], [1126.51, 1576.6], [1124.01, 1579.28], [1119.56, 1575.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1132.94, 1559.48], [1138.84, 1564.37], [1134.07, 1570.09], [1128.16, 1565.2], [1132.94, 1559.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1124.48, 1557.57], [1128.76, 1552.89], [1133.59, 1557.27], [1129.31, 1561.96], [1124.48, 1557.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1160.95, 1574.37], [1168.02, 1566.43], [1159.72, 1559.09], [1152.65, 1567.02], [1160.95, 1574.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1147.66, 1555.11], [1153.11, 1549.11], [1146.94, 1543.53], [1141.48, 1549.55], [1147.66, 1555.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1162.5, 1547.38], [1166.31, 1542.94], [1179.22, 1553.98], [1171.56, 1562.88], [1165.97, 1558.1], [1167.29, 1556.56], [1165.26, 1554.82], [1167.77, 1551.89], [1162.5, 1547.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1171.33, 1541.24], [1177.74, 1534.42], [1189.43, 1545.29], [1183.04, 1552.13], [1171.33, 1541.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1170.89, 1529.41], [1164.98, 1523.68], [1158.3, 1530.54], [1164.21, 1536.27], [1170.89, 1529.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1145.66, 1518.15], [1151.02, 1512.33], [1158.82, 1519.45], [1156.98, 1521.44], [1158.88, 1523.18], [1155.36, 1527.01], [1145.66, 1518.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1134.89, 1530.97], [1135.5, 1530.29], [1133.6, 1528.63], [1138.64, 1522.93], [1140.59, 1524.64], [1141.15, 1524.0], [1151.13, 1532.77], [1144.92, 1539.78], [1134.89, 1530.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1140.43, 1548.55], [1144.82, 1544.05], [1139.6, 1538.98], [1135.2, 1543.49], [1140.43, 1548.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1134.89, 1544.89], [1132.47, 1542.51], [1134.51, 1540.45], [1130.14, 1536.16], [1122.14, 1544.25], [1128.93, 1550.92], [1134.89, 1544.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1118.43, 1563.97], [1124.74, 1556.69], [1115.08, 1548.36], [1108.76, 1555.63], [1118.43, 1563.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1109.42, 1573.76], [1112.24, 1570.64], [1113.79, 1572.03], [1117.66, 1567.75], [1106.99, 1558.17], [1100.3, 1565.56], [1109.42, 1573.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1096.06, 1586.11], [1100.02, 1582.65], [1102.49, 1580.21], [1096.44, 1573.66], [1090.01, 1579.56], [1096.06, 1586.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1099.47, 1593.12], [1105.0, 1588.02], [1100.02, 1582.65], [1094.48, 1587.75], [1099.47, 1593.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1096.28, 1596.62], [1099.4, 1593.93], [1095.58, 1589.51], [1092.45, 1592.19], [1096.28, 1596.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1084.26, 1596.9], [1091.39, 1590.6], [1088.82, 1587.7], [1090.72, 1586.02], [1086.28, 1581.05], [1077.25, 1589.02], [1084.26, 1596.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1075.02, 1607.4], [1082.22, 1601.04], [1074.62, 1592.49], [1067.42, 1598.85], [1075.02, 1607.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1080.15, 1615.48], [1083.34, 1612.8], [1079.1, 1607.77], [1075.91, 1610.45], [1080.15, 1615.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1065.73, 1618.3], [1073.52, 1611.23], [1065.13, 1602.04], [1064.04, 1603.03], [1062.04, 1600.84], [1055.91, 1606.39], [1057.67, 1608.33], [1057.11, 1608.85], [1065.73, 1618.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1053.84, 1624.23], [1055.79, 1622.56], [1057.51, 1624.55], [1061.49, 1621.14], [1057.4, 1616.41], [1059.07, 1614.98], [1056.16, 1611.61], [1048.57, 1618.14], [1053.84, 1624.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1041.34, 1630.92], [1042.65, 1629.8], [1045.44, 1633.02], [1051.04, 1628.18], [1045.16, 1621.42], [1038.25, 1627.38], [1041.34, 1630.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1029.51, 1633.4], [1041.24, 1646.14], [1042.71, 1644.8], [1043.86, 1646.05], [1047.49, 1642.74], [1045.93, 1641.05], [1046.88, 1640.18], [1036.3, 1628.7], [1034.61, 1627.8], [1033.76, 1627.6], [1032.87, 1627.63], [1031.54, 1628.28], [1031.07, 1629.18], [1030.98, 1629.9], [1031.22, 1630.58], [1029.36, 1632.18], [1029.51, 1633.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1040.5, 1657.92], [1044.16, 1654.81], [1039.76, 1649.68], [1036.11, 1652.81], [1040.5, 1657.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1033.75, 1645.72], [1025.36, 1635.89], [1018.59, 1641.61], [1026.99, 1651.46], [1033.75, 1645.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1009.04, 1649.5], [1014.94, 1644.38], [1025.52, 1656.5], [1019.63, 1661.61], [1009.04, 1649.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1007.47, 1667.38], [1014.49, 1661.11], [1007.65, 1653.52], [1007.07, 1654.03], [1005.61, 1652.42], [999.73, 1657.66], [1001.24, 1659.33], [1000.67, 1659.84], [1007.47, 1667.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[999.34, 1675.48], [1001.38, 1673.68], [1002.98, 1675.48], [1006.65, 1672.24], [1004.84, 1670.19], [1005.67, 1669.45], [997.15, 1659.87], [992.84, 1663.68], [994.58, 1665.63], [992.34, 1667.62], [999.34, 1675.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[981.6, 1673.18], [989.57, 1682.19], [997.36, 1675.35], [989.4, 1666.34], [981.6, 1673.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[979.6, 1690.7], [987.02, 1684.15], [979.3, 1675.47], [971.88, 1682.01], [979.6, 1690.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[972.28, 1698.93], [975.31, 1696.31], [976.54, 1697.73], [979.51, 1695.16], [977.99, 1693.42], [979.12, 1692.45], [972.29, 1684.61], [971.77, 1685.06], [970.5, 1683.61], [964.71, 1688.63], [965.91, 1690.01], [965.1, 1690.71], [972.28, 1698.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[953.13, 1697.79], [960.46, 1691.43], [968.88, 1701.07], [961.55, 1707.43], [953.13, 1697.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[945.18, 1705.17], [951.25, 1699.85], [959.83, 1709.55], [953.75, 1714.88], [945.18, 1705.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[937.15, 1711.87], [943.38, 1706.92], [954.4, 1720.66], [948.17, 1725.62], [937.15, 1711.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[936.94, 1731.13], [940.25, 1728.57], [938.62, 1726.49], [940.27, 1725.21], [932.6, 1715.38], [926.75, 1719.92], [934.95, 1730.41], [935.83, 1729.73], [936.94, 1731.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[948.19, 1739.96], [953.3, 1735.68], [949.51, 1731.17], [944.38, 1735.45], [948.19, 1739.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[942.39, 1735.46], [944.42, 1737.65], [942.4, 1739.51], [940.36, 1737.32], [942.39, 1735.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[952.29, 1747.88], [958.53, 1743.18], [954.6, 1738.0], [948.36, 1742.7], [952.29, 1747.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[917.41, 1749.91], [920.99, 1746.75], [929.19, 1755.99], [925.61, 1759.15], [917.41, 1749.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[917.63, 1767.82], [920.81, 1764.67], [915.88, 1759.74], [912.7, 1762.89], [917.63, 1767.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[924.54, 1738.82], [930.15, 1734.17], [931.91, 1736.28], [935.22, 1733.54], [930.78, 1728.24], [928.75, 1729.92], [924.47, 1724.78], [917.58, 1730.48], [924.54, 1738.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[909.47, 1736.87], [917.44, 1745.9], [923.52, 1740.57], [915.54, 1731.55], [909.47, 1736.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[906.46, 1739.25], [914.35, 1747.65], [907.6, 1753.94], [899.71, 1745.54], [906.46, 1739.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[892.57, 1755.81], [898.74, 1749.92], [904.87, 1756.3], [898.64, 1762.11], [892.57, 1755.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[908.23, 1768.65], [912.09, 1773.08], [909.07, 1775.7], [905.21, 1771.27], [908.23, 1768.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1009.21, 1678.37], [1013.64, 1674.23], [1017.73, 1678.59], [1013.3, 1682.72], [1009.21, 1678.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1380.49, 2521.38], [1394.43, 2514.39], [1390.59, 2506.77], [1376.64, 2513.77], [1380.49, 2521.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1388.48, 2536.74], [1383.51, 2526.88], [1391.01, 2523.13], [1396.98, 2534.99], [1391.25, 2537.85], [1390.24, 2535.84], [1388.48, 2536.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1395.87, 2553.91], [1405.53, 2549.05], [1401.67, 2541.45], [1392.01, 2546.3], [1395.87, 2553.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1412.65, 2550.29], [1414.38, 2553.52], [1416.9, 2552.17], [1419.57, 2557.15], [1423.61, 2555.0], [1428.01, 2563.21], [1422.12, 2566.34], [1418.46, 2559.52], [1400.4, 2569.12], [1395.27, 2559.54], [1412.65, 2550.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[1475.07, 2487.5], [1453.7, 2494.87], [1459.35, 2511.16], [1480.73, 2503.8], [1475.07, 2487.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[1480.71, 2485.84], [1502.06, 2478.72], [1507.43, 2494.7], [1486.08, 2501.83], [1480.71, 2485.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[1538.84, 2487.9], [1534.75, 2476.38], [1556.23, 2468.82], [1560.31, 2480.33], [1538.84, 2487.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[1285.59, 2347.78], [1302.13, 2340.07], [1298.96, 2333.3], [1290.6, 2337.19], [1291.31, 2338.7], [1283.12, 2342.51], [1285.59, 2347.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1285.84, 2350.69], [1287.4, 2349.96], [1287.02, 2349.16], [1296.43, 2344.75], [1299.43, 2351.09], [1288.46, 2356.23], [1285.84, 2350.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1482.18, 2651.41], [1507.52, 2643.32], [1501.95, 2625.97], [1476.6, 2634.06], [1482.18, 2651.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[1584.34, 2646.94], [1583.42, 2633.98], [1544.59, 2636.74], [1545.51, 2649.7], [1584.34, 2646.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[1555.86, 2724.33], [1539.71, 2724.91], [1538.12, 2680.38], [1554.09, 2679.81], [1554.38, 2688.1], [1572.67, 2687.45], [1572.38, 2679.35], [1588.99, 2678.76], [1590.02, 2707.72], [1573.3, 2716.85], [1573.14, 2712.25], [1555.45, 2712.88], [1555.86, 2724.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1101}}, {"shape": {"outer": [[1531.34, 2755.24], [1538.02, 2751.84], [1524.15, 2724.77], [1507.0, 2733.49], [1512.57, 2744.37], [1514.61, 2743.32], [1516.58, 2747.17], [1525.01, 2742.88], [1531.34, 2755.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.33, "pop": 165, "jobs": 0}}, {"shape": {"outer": [[1494.46, 2699.83], [1498.12, 2706.94], [1483.13, 2714.61], [1479.47, 2707.5], [1494.46, 2699.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1504.9, 2715.44], [1504.67, 2709.88], [1512.27, 2709.56], [1512.5, 2715.13], [1504.9, 2715.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1490.22, 2724.0], [1499.35, 2719.61], [1501.71, 2724.49], [1500.58, 2725.03], [1501.33, 2726.57], [1493.32, 2730.42], [1490.22, 2724.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1507.78, 2720.02], [1507.67, 2716.43], [1510.53, 2716.34], [1510.64, 2719.93], [1507.78, 2720.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[1438.89, 2618.74], [1434.07, 2609.21], [1443.51, 2604.47], [1448.33, 2614.0], [1438.89, 2618.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1454.05, 2611.28], [1460.79, 2609.2], [1458.5, 2601.79], [1451.76, 2603.87], [1454.05, 2611.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1469.97, 2606.18], [1489.47, 2599.79], [1486.38, 2590.45], [1466.88, 2596.86], [1469.97, 2606.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1450.63, 2641.84], [1463.46, 2635.73], [1459.62, 2627.71], [1446.79, 2633.82], [1450.63, 2641.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1458.44, 2661.14], [1453.56, 2652.5], [1470.01, 2643.29], [1474.88, 2651.91], [1458.44, 2661.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1467.27, 2679.65], [1462.5, 2669.87], [1471.14, 2665.68], [1475.92, 2675.46], [1467.27, 2679.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1478.32, 2696.19], [1490.67, 2689.51], [1485.59, 2680.19], [1479.89, 2683.27], [1481.34, 2685.93], [1474.7, 2689.52], [1478.32, 2696.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1515.63, 2642.83], [1523.2, 2640.6], [1521.35, 2634.36], [1513.79, 2636.58], [1515.63, 2642.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1490.79, 2654.34], [1491.43, 2656.98], [1488.49, 2657.7], [1487.84, 2655.06], [1490.79, 2654.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[1172.24, 2204.87], [1184.4, 2195.35], [1181.36, 2191.49], [1179.98, 2192.58], [1178.17, 2190.29], [1184.0, 2185.73], [1179.6, 2180.15], [1173.83, 2184.67], [1175.5, 2186.78], [1169.24, 2191.68], [1171.41, 2194.42], [1170.94, 2195.83], [1171.62, 2196.69], [1168.02, 2199.52], [1172.24, 2204.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1188.9, 2198.19], [1193.53, 2204.83], [1191.3, 2206.38], [1194.67, 2211.2], [1183.22, 2219.15], [1175.21, 2207.69], [1188.9, 2198.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[1186.77, 2234.07], [1200.97, 2225.62], [1194.63, 2215.04], [1180.43, 2223.5], [1186.77, 2234.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1204.39, 2244.05], [1200.63, 2236.36], [1204.26, 2234.6], [1202.1, 2230.22], [1183.46, 2239.3], [1189.36, 2251.36], [1204.39, 2244.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[1188.71, 2266.38], [1209.6, 2260.07], [1207.52, 2253.2], [1204.17, 2254.21], [1203.42, 2251.77], [1199.22, 2253.03], [1198.33, 2250.09], [1184.99, 2254.11], [1188.71, 2266.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[1184.74, 2281.61], [1183.72, 2271.26], [1188.61, 2270.79], [1188.5, 2269.63], [1199.29, 2268.57], [1199.19, 2267.48], [1206.5, 2266.76], [1207.37, 2275.51], [1195.3, 2276.69], [1195.68, 2280.55], [1184.74, 2281.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1187.85, 2302.37], [1203.36, 2301.35], [1202.81, 2293.15], [1210.4, 2292.65], [1209.9, 2285.09], [1194.7, 2286.1], [1194.9, 2289.03], [1187.0, 2289.55], [1187.85, 2302.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.224, "pop": 112, "jobs": 0}}, {"shape": {"outer": [[1185.97, 2313.61], [1186.06, 2315.23], [1196.77, 2314.69], [1196.68, 2313.0], [1203.32, 2312.67], [1202.96, 2305.63], [1174.44, 2307.08], [1174.8, 2314.18], [1185.97, 2313.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[1149.37, 2365.71], [1164.46, 2373.33], [1173.73, 2355.12], [1158.63, 2347.5], [1149.37, 2365.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[1136.93, 2389.79], [1147.7, 2395.1], [1153.26, 2383.88], [1157.41, 2385.93], [1161.74, 2377.23], [1146.81, 2369.88], [1136.93, 2389.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[1164.07, 2340.32], [1172.48, 2344.77], [1177.54, 2335.27], [1190.27, 2333.42], [1189.26, 2326.57], [1176.09, 2328.48], [1171.38, 2326.34], [1169.08, 2331.35], [1166.88, 2331.41], [1165.22, 2334.13], [1166.38, 2335.97], [1164.07, 2340.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[1219.36, 2351.79], [1226.57, 2348.94], [1224.11, 2342.73], [1229.57, 2340.58], [1223.3, 2324.82], [1210.62, 2329.82], [1219.36, 2351.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[1227.08, 2371.0], [1235.71, 2366.39], [1228.29, 2352.58], [1219.66, 2357.2], [1227.08, 2371.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1140.97, 2446.96], [1144.12, 2438.3], [1138.59, 2436.4], [1141.66, 2427.79], [1125.2, 2421.18], [1123.96, 2425.53], [1115.69, 2423.18], [1113.11, 2424.03], [1112.09, 2426.72], [1113.44, 2429.83], [1112.12, 2434.41], [1110.52, 2433.96], [1110.54, 2441.17], [1140.97, 2446.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.472, "pop": 236, "jobs": 0}}, {"shape": {"outer": [[1110.2, 2462.4], [1110.43, 2452.93], [1113.25, 2453.0], [1113.37, 2448.46], [1124.94, 2448.73], [1124.92, 2449.56], [1139.11, 2449.9], [1138.91, 2458.02], [1136.07, 2457.94], [1135.84, 2467.62], [1124.04, 2467.34], [1124.09, 2465.21], [1118.12, 2465.07], [1118.18, 2462.59], [1110.2, 2462.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[1114.1, 2478.25], [1114.37, 2472.65], [1129.02, 2473.34], [1128.79, 2478.27], [1130.6, 2478.35], [1130.31, 2484.45], [1128.0, 2484.35], [1127.49, 2495.02], [1118.82, 2494.61], [1119.08, 2489.29], [1117.75, 2489.23], [1118.04, 2483.17], [1116.91, 2483.12], [1117.13, 2478.4], [1114.1, 2478.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[1111.34, 2524.7], [1125.53, 2524.71], [1125.55, 2513.61], [1129.44, 2513.62], [1129.46, 2502.66], [1111.67, 2502.64], [1111.66, 2514.61], [1109.38, 2517.22], [1109.03, 2522.62], [1111.34, 2524.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[1106.36, 2551.31], [1105.72, 2546.64], [1107.46, 2546.9], [1109.05, 2545.02], [1108.24, 2538.32], [1107.31, 2537.74], [1107.04, 2535.3], [1108.91, 2533.01], [1124.13, 2531.25], [1125.83, 2545.87], [1129.55, 2547.09], [1130.66, 2554.72], [1113.48, 2557.21], [1110.42, 2555.13], [1108.4, 2558.07], [1106.57, 2558.73], [1104.31, 2557.98], [1103.04, 2556.8], [1102.9, 2555.07], [1103.36, 2553.73], [1106.36, 2551.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.394, "pop": 197, "jobs": 0}}, {"shape": {"outer": [[1112.54, 2587.78], [1129.06, 2583.9], [1127.48, 2577.22], [1123.99, 2578.05], [1121.43, 2567.2], [1125.07, 2566.36], [1123.97, 2561.7], [1107.3, 2565.61], [1112.54, 2587.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[1141.14, 2606.65], [1130.44, 2609.56], [1130.98, 2611.49], [1128.93, 2612.04], [1129.52, 2614.2], [1125.58, 2615.28], [1124.33, 2610.74], [1120.28, 2611.83], [1115.43, 2594.13], [1125.46, 2591.39], [1126.59, 2595.52], [1129.98, 2594.6], [1132.07, 2602.19], [1139.36, 2600.2], [1141.14, 2606.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[1146.03, 2665.73], [1147.46, 2669.22], [1150.96, 2667.8], [1149.57, 2664.39], [1165.83, 2657.8], [1162.92, 2650.68], [1143.97, 2658.37], [1139.83, 2648.24], [1132.06, 2651.4], [1139.07, 2668.55], [1146.03, 2665.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[1180.92, 2683.42], [1177.19, 2675.03], [1168.3, 2678.95], [1164.3, 2669.95], [1148.96, 2676.7], [1151.38, 2682.17], [1153.3, 2681.33], [1158.59, 2693.25], [1180.92, 2683.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[1178.54, 2706.93], [1175.26, 2700.59], [1180.43, 2697.94], [1178.03, 2693.29], [1186.43, 2688.97], [1193.77, 2703.16], [1198.13, 2700.92], [1200.76, 2706.0], [1191.49, 2710.76], [1189.09, 2706.12], [1184.78, 2708.33], [1182.9, 2704.7], [1178.54, 2706.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[1198.31, 2755.3], [1213.21, 2748.11], [1205.71, 2732.67], [1202.11, 2734.41], [1196.41, 2722.68], [1185.11, 2728.13], [1198.31, 2755.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.358, "pop": 179, "jobs": 0}}, {"shape": {"outer": [[1216.75, 2809.07], [1213.39, 2809.25], [1212.88, 2799.11], [1241.89, 2797.65], [1242.41, 2807.88], [1231.43, 2808.44], [1231.91, 2818.11], [1217.24, 2818.85], [1216.75, 2809.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[1217.24, 2789.56], [1229.05, 2789.25], [1228.78, 2778.92], [1216.98, 2779.24], [1217.24, 2789.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1286.91, 2782.15], [1282.76, 2782.39], [1282.38, 2775.76], [1313.36, 2774.02], [1314.01, 2785.47], [1300.37, 2786.24], [1286.91, 2782.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[1341.39, 2775.06], [1349.98, 2774.89], [1349.82, 2766.75], [1341.22, 2766.91], [1341.39, 2775.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1329.37, 2791.52], [1330.31, 2786.98], [1328.59, 2786.62], [1329.51, 2782.28], [1339.18, 2784.28], [1340.01, 2780.33], [1346.89, 2781.76], [1346.03, 2785.85], [1349.9, 2786.64], [1348.21, 2794.72], [1344.64, 2793.99], [1344.25, 2795.89], [1341.33, 2795.28], [1340.71, 2796.12], [1339.91, 2796.69], [1338.44, 2796.69], [1337.43, 2796.44], [1336.76, 2795.62], [1336.42, 2794.71], [1336.76, 2793.06], [1329.37, 2791.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[1357.83, 2796.17], [1364.71, 2795.91], [1364.67, 2794.77], [1367.91, 2794.64], [1367.34, 2779.25], [1353.45, 2779.78], [1353.73, 2787.23], [1357.49, 2787.08], [1357.83, 2796.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1395.94, 2794.73], [1406.57, 2794.22], [1406.2, 2786.43], [1402.93, 2786.59], [1402.54, 2778.47], [1395.17, 2778.82], [1395.94, 2794.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1412.13, 2793.83], [1411.14, 2776.52], [1418.97, 2776.07], [1419.35, 2782.71], [1425.54, 2782.35], [1426.16, 2793.02], [1412.13, 2793.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1375.52, 2794.86], [1390.36, 2794.52], [1390.03, 2780.27], [1375.19, 2780.61], [1375.52, 2794.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[1464.27, 2782.04], [1477.77, 2781.4], [1478.42, 2795.39], [1479.28, 2795.36], [1479.67, 2803.77], [1465.33, 2804.44], [1464.27, 2782.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[1473.25, 2774.99], [1472.85, 2767.01], [1459.08, 2767.71], [1459.48, 2775.69], [1473.25, 2774.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1455.41, 2770.9], [1455.28, 2762.62], [1447.1, 2762.76], [1447.23, 2771.03], [1455.41, 2770.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1430.84, 2792.14], [1430.57, 2784.04], [1445.36, 2783.54], [1445.63, 2791.66], [1430.84, 2792.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1443.0, 2755.98], [1449.45, 2755.32], [1449.85, 2759.19], [1443.4, 2759.83], [1443.0, 2755.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1455.72, 2757.88], [1466.23, 2756.91], [1466.06, 2755.15], [1468.13, 2754.96], [1467.32, 2746.21], [1454.75, 2747.36], [1455.72, 2757.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1428.83, 2731.38], [1429.15, 2741.13], [1450.73, 2740.42], [1450.4, 2730.67], [1428.83, 2731.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[809.96, 1284.57], [817.24, 1276.24], [818.77, 1277.57], [818.44, 1277.94], [831.69, 1289.41], [832.08, 1288.96], [833.13, 1289.86], [825.97, 1298.07], [822.13, 1294.73], [823.1, 1293.63], [815.41, 1286.96], [814.25, 1288.29], [809.96, 1284.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[829.41, 1299.15], [832.55, 1302.03], [836.83, 1297.39], [833.69, 1294.5], [829.41, 1299.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[842.61, 1305.74], [855.42, 1291.95], [849.41, 1286.4], [836.6, 1300.19], [842.61, 1305.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[824.31, 1269.76], [835.87, 1280.25], [833.76, 1282.55], [835.19, 1283.86], [831.0, 1288.44], [818.02, 1276.65], [824.31, 1269.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[829.76, 1271.73], [830.69, 1270.58], [829.41, 1269.54], [832.54, 1265.67], [834.16, 1266.98], [835.33, 1265.53], [845.8, 1273.95], [842.11, 1278.49], [840.92, 1277.54], [840.09, 1278.55], [838.95, 1277.63], [838.21, 1278.54], [829.76, 1271.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[842.68, 1255.54], [851.84, 1263.6], [857.28, 1257.45], [848.13, 1249.39], [842.68, 1255.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[841.02, 1258.84], [843.08, 1260.69], [843.99, 1259.68], [848.13, 1263.4], [847.22, 1264.41], [849.68, 1266.62], [845.04, 1271.76], [836.38, 1263.99], [841.02, 1258.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[852.41, 1242.88], [852.42, 1241.68], [859.19, 1234.2], [869.6, 1243.55], [858.78, 1255.52], [853.14, 1250.46], [855.35, 1248.02], [852.57, 1245.52], [853.81, 1244.14], [852.41, 1242.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[880.24, 1265.81], [873.71, 1259.92], [882.3, 1250.46], [888.83, 1256.35], [880.24, 1265.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[880.75, 1269.25], [891.01, 1258.26], [895.31, 1262.24], [893.76, 1263.88], [895.67, 1265.65], [886.94, 1274.99], [880.75, 1269.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[902.21, 1292.84], [913.67, 1280.68], [907.37, 1274.79], [895.92, 1286.95], [902.21, 1292.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[877.83, 1303.24], [885.37, 1294.99], [884.15, 1293.88], [890.47, 1286.96], [884.36, 1281.4], [881.58, 1284.43], [881.06, 1283.96], [875.41, 1290.13], [876.33, 1290.97], [875.38, 1292.01], [876.6, 1293.11], [872.1, 1298.03], [877.83, 1303.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[856.94, 1294.57], [863.48, 1300.3], [853.09, 1312.07], [846.55, 1306.34], [856.94, 1294.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[892.3, 1353.49], [901.85, 1342.63], [909.83, 1349.6], [900.28, 1360.45], [892.3, 1353.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[889.9, 1352.6], [899.13, 1342.36], [892.2, 1336.15], [882.97, 1346.39], [889.9, 1352.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[881.97, 1341.47], [891.59, 1330.97], [885.36, 1325.3], [875.74, 1335.82], [881.97, 1341.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[889.95, 1326.74], [894.46, 1330.71], [899.21, 1325.35], [894.7, 1321.39], [889.95, 1326.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[873.69, 1330.79], [879.03, 1324.13], [871.48, 1318.12], [866.13, 1324.78], [873.69, 1330.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[912.3, 1372.43], [905.42, 1366.42], [916.11, 1354.28], [922.98, 1360.29], [912.3, 1372.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[961.89, 1386.34], [965.92, 1381.86], [962.84, 1379.11], [966.12, 1375.45], [962.95, 1372.63], [955.64, 1380.77], [961.89, 1386.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1048.5, 1424.22], [1071.85, 1445.7], [1083.83, 1432.78], [1060.47, 1411.29], [1048.5, 1424.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.448, "pop": 224, "jobs": 0}}, {"shape": {"outer": [[1020.24, 1417.99], [1035.85, 1431.11], [1023.76, 1445.37], [1008.16, 1432.27], [1020.24, 1417.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[1031.58, 1385.89], [1035.45, 1389.3], [1032.57, 1392.55], [1034.56, 1394.32], [1031.08, 1398.24], [1028.77, 1396.2], [1026.84, 1398.35], [1028.6, 1399.91], [1025.72, 1403.16], [1020.4, 1398.47], [1031.58, 1385.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1019.72, 1395.78], [1030.05, 1384.71], [1024.05, 1379.17], [1013.73, 1390.24], [1019.72, 1395.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1009.45, 1386.46], [1019.06, 1375.32], [1012.66, 1369.83], [1003.05, 1380.97], [1009.45, 1386.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[963.22, 1416.39], [971.65, 1424.39], [979.34, 1416.32], [970.9, 1408.32], [963.22, 1416.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[981.38, 1413.96], [987.51, 1406.87], [978.92, 1399.49], [972.79, 1406.6], [981.38, 1413.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[994.59, 1434.31], [1004.67, 1422.75], [995.86, 1415.11], [985.78, 1426.68], [994.59, 1434.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[984.81, 1395.44], [994.59, 1404.24], [999.93, 1398.37], [990.14, 1389.55], [984.81, 1395.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[920.49, 1377.27], [927.55, 1369.56], [932.33, 1373.9], [925.27, 1381.62], [920.49, 1377.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[934.77, 1395.22], [947.27, 1381.38], [940.23, 1375.08], [927.74, 1388.91], [934.77, 1395.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2059.54, 2282.07], [2049.1, 2272.55], [2054.79, 2266.35], [2063.93, 2274.67], [2060.98, 2277.9], [2062.28, 2279.08], [2059.54, 2282.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2067.23, 2292.83], [2063.17, 2289.14], [2067.59, 2284.31], [2071.65, 2288.0], [2067.23, 2292.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2057.34, 2284.2], [2049.03, 2276.33], [2042.61, 2283.05], [2050.92, 2290.93], [2057.34, 2284.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2061.47, 2297.79], [2066.57, 2292.7], [2063.17, 2289.14], [2057.91, 2294.25], [2061.47, 2297.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2065.89, 2305.4], [2061.43, 2301.09], [2071.86, 2290.36], [2076.33, 2294.67], [2065.89, 2305.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2076.79, 2282.12], [2081.14, 2277.54], [2076.1, 2272.78], [2071.75, 2277.37], [2076.79, 2282.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2069.1, 2269.82], [2070.8, 2268.02], [2072.27, 2269.4], [2074.76, 2266.75], [2073.52, 2265.59], [2075.1, 2263.9], [2064.14, 2253.65], [2059.63, 2258.43], [2063.04, 2261.61], [2061.76, 2262.96], [2069.1, 2269.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2075.56, 2261.81], [2076.52, 2260.82], [2077.64, 2261.91], [2080.4, 2259.07], [2079.16, 2257.87], [2081.02, 2255.97], [2073.55, 2248.76], [2067.98, 2254.48], [2075.56, 2261.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2086.11, 2253.38], [2077.15, 2244.76], [2082.83, 2238.91], [2091.79, 2247.53], [2086.11, 2253.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2094.44, 2242.72], [2096.4, 2240.71], [2097.61, 2241.88], [2100.41, 2239.01], [2099.45, 2238.08], [2100.41, 2237.1], [2092.14, 2229.09], [2086.41, 2234.95], [2094.44, 2242.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2438.41, 1980.59], [2408.38, 1998.93], [2418.13, 2014.78], [2448.15, 1996.45], [2438.41, 1980.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.419, "pop": 0, "jobs": 419}}, {"shape": {"outer": [[2495.21, 1897.38], [2483.72, 1904.26], [2479.91, 1897.95], [2482.47, 1896.43], [2481.91, 1895.49], [2486.16, 1892.95], [2486.58, 1893.66], [2491.28, 1890.85], [2495.21, 1897.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2474.02, 1885.53], [2478.27, 1892.71], [2487.01, 1887.58], [2486.5, 1886.71], [2488.62, 1885.46], [2487.01, 1882.74], [2484.93, 1883.97], [2482.8, 1880.37], [2474.02, 1885.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2462.56, 1877.56], [2467.28, 1885.2], [2469.76, 1883.68], [2470.4, 1884.74], [2483.0, 1877.01], [2477.62, 1868.31], [2462.56, 1877.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2527.91, 1971.18], [2531.82, 1977.85], [2533.65, 1976.77], [2533.99, 1977.34], [2542.61, 1972.31], [2542.23, 1971.67], [2544.53, 1970.32], [2540.49, 1963.42], [2537.9, 1964.93], [2537.52, 1964.3], [2529.18, 1969.16], [2529.74, 1970.12], [2527.91, 1971.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2515.84, 2053.49], [2519.71, 2059.37], [2531.28, 2051.82], [2527.42, 2045.94], [2515.84, 2053.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2527.27, 2069.53], [2528.78, 2068.6], [2529.02, 2068.98], [2536.82, 2064.22], [2532.5, 2057.19], [2523.18, 2062.86], [2527.27, 2069.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2606.93, 2201.22], [2611.35, 2208.24], [2621.77, 2201.74], [2617.35, 2194.71], [2606.93, 2201.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2603.43, 2197.17], [2612.4, 2191.68], [2610.62, 2188.8], [2613.17, 2187.24], [2610.1, 2182.26], [2607.61, 2183.78], [2606.64, 2182.22], [2598.78, 2187.03], [2599.86, 2188.79], [2598.7, 2189.5], [2603.43, 2197.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2604.28, 2167.36], [2586.91, 2177.96], [2593.12, 2188.07], [2610.49, 2177.47], [2604.28, 2167.36]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.068, "pop": 0, "jobs": 68}}, {"shape": {"outer": [[2585.11, 2141.49], [2590.24, 2149.67], [2580.81, 2155.56], [2575.67, 2147.37], [2585.11, 2141.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2558.93, 2122.84], [2554.84, 2116.14], [2567.93, 2108.22], [2569.37, 2110.58], [2571.35, 2109.39], [2573.99, 2113.72], [2558.93, 2122.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2554.06, 2111.46], [2553.37, 2110.35], [2551.11, 2111.75], [2547.96, 2106.66], [2550.28, 2105.23], [2549.53, 2104.01], [2560.5, 2097.27], [2565.1, 2104.69], [2554.06, 2111.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2555.61, 2095.32], [2545.36, 2101.49], [2541.42, 2095.01], [2551.67, 2088.83], [2555.61, 2095.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2558.48, 2075.28], [2561.0, 2079.35], [2565.17, 2076.76], [2562.64, 2072.71], [2558.48, 2075.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2538.33, 2066.49], [2543.56, 2075.02], [2528.2, 2084.39], [2522.97, 2075.86], [2538.33, 2066.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2507.37, 2095.07], [2506.06, 2096.42], [2508.38, 2098.65], [2501.96, 2105.27], [2496.19, 2099.71], [2503.93, 2091.74], [2507.37, 2095.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2512.25, 2102.92], [2511.03, 2104.1], [2513.58, 2106.74], [2505.72, 2114.33], [2503.49, 2112.04], [2503.1, 2112.4], [2499.91, 2109.13], [2509.39, 2099.98], [2512.25, 2102.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2514.83, 2108.66], [2518.14, 2111.96], [2516.7, 2113.39], [2519.11, 2115.78], [2512.71, 2122.17], [2512.34, 2121.79], [2510.98, 2123.15], [2506.13, 2118.32], [2507.45, 2117.01], [2506.96, 2116.52], [2514.83, 2108.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2520.51, 2118.58], [2524.21, 2121.99], [2523.0, 2123.31], [2525.13, 2125.26], [2518.85, 2132.05], [2518.38, 2131.6], [2517.06, 2133.03], [2512.5, 2128.85], [2513.9, 2127.34], [2513.09, 2126.61], [2520.51, 2118.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2528.45, 2127.72], [2527.28, 2128.44], [2526.92, 2127.87], [2518.81, 2132.88], [2522.74, 2139.22], [2530.46, 2134.45], [2530.14, 2133.94], [2531.71, 2132.97], [2528.45, 2127.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2532.36, 2134.89], [2523.49, 2140.62], [2527.32, 2146.52], [2536.2, 2140.8], [2532.36, 2134.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2538.57, 2145.51], [2532.24, 2149.66], [2536.33, 2155.86], [2542.67, 2151.71], [2538.57, 2145.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2589.05, 2094.47], [2593.88, 2101.49], [2589.25, 2104.66], [2584.41, 2097.64], [2589.05, 2094.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2617.33, 2090.16], [2606.9, 2096.79], [2611.25, 2103.58], [2621.68, 2096.95], [2617.33, 2090.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2600.28, 2087.18], [2604.28, 2093.59], [2614.32, 2087.33], [2610.48, 2080.79], [2600.28, 2087.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2595.05, 2060.83], [2600.1, 2068.57], [2591.6, 2074.09], [2586.55, 2066.34], [2595.05, 2060.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2580.33, 2056.7], [2584.52, 2063.54], [2596.81, 2056.06], [2592.61, 2049.22], [2580.33, 2056.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2577.9, 2030.25], [2581.83, 2036.67], [2572.41, 2042.38], [2568.19, 2035.48], [2574.58, 2031.61], [2574.87, 2032.09], [2577.9, 2030.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2585.85, 2039.95], [2589.86, 2046.71], [2576.58, 2054.56], [2572.55, 2047.8], [2585.85, 2039.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2572.07, 2064.56], [2577.46, 2061.25], [2575.15, 2057.5], [2569.75, 2060.81], [2572.07, 2064.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2573.15, 2019.67], [2571.6, 2020.61], [2571.27, 2020.06], [2563.49, 2024.77], [2567.41, 2031.19], [2576.73, 2025.54], [2573.15, 2019.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2541.67, 2003.76], [2546.47, 2011.49], [2560.71, 2002.73], [2556.28, 1995.59], [2551.0, 1998.84], [2550.63, 1998.24], [2541.67, 2003.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2542.61, 1990.36], [2541.71, 1988.92], [2544.18, 1987.37], [2544.97, 1988.63], [2548.15, 1986.65], [2548.55, 1987.27], [2550.54, 1986.04], [2554.46, 1992.31], [2552.54, 1993.5], [2552.9, 1994.08], [2544.48, 1999.3], [2543.41, 1997.6], [2541.46, 1998.81], [2537.97, 1993.24], [2542.61, 1990.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2544.67, 1975.33], [2549.36, 1982.76], [2536.35, 1990.89], [2531.32, 1982.91], [2540.92, 1976.9], [2541.27, 1977.46], [2544.67, 1975.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2494.8, 1977.91], [2501.13, 1988.16], [2506.75, 1984.71], [2506.41, 1984.17], [2507.91, 1983.25], [2501.91, 1973.55], [2494.8, 1977.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2536.56, 2019.77], [2539.9, 2025.12], [2544.8, 2022.1], [2541.46, 2016.74], [2536.56, 2019.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2530.94, 2008.03], [2537.65, 2003.87], [2533.49, 1997.21], [2526.79, 2001.36], [2530.94, 2008.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2520.06, 2017.87], [2524.67, 2025.94], [2531.39, 2022.13], [2528.03, 2016.23], [2526.28, 2017.22], [2525.04, 2015.05], [2520.06, 2017.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2513.78, 2008.91], [2519.0, 2005.44], [2523.5, 2012.16], [2518.28, 2015.63], [2513.78, 2008.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2500.38, 1992.56], [2502.83, 1996.71], [2509.19, 1992.99], [2506.74, 1988.83], [2500.38, 1992.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2508.37, 1997.82], [2512.32, 2004.54], [2517.62, 2001.44], [2513.66, 1994.73], [2508.37, 1997.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2508.5, 2010.78], [2512.97, 2018.06], [2508.69, 2020.65], [2509.08, 2021.29], [2504.88, 2023.85], [2504.52, 2023.26], [2499.25, 2026.48], [2496.01, 2021.19], [2498.0, 2019.96], [2496.76, 2017.93], [2508.5, 2010.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2488.81, 2010.32], [2491.82, 2015.08], [2493.52, 2014.02], [2494.87, 2016.17], [2506.57, 2008.84], [2502.21, 2001.93], [2488.81, 2010.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2492.81, 1993.84], [2480.37, 2001.2], [2482.2, 2004.27], [2484.15, 2003.12], [2486.23, 2006.6], [2496.72, 2000.4], [2492.81, 1993.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2473.29, 1989.91], [2475.52, 1993.65], [2477.03, 1992.77], [2478.41, 1995.11], [2477.95, 1995.38], [2478.74, 1996.71], [2491.15, 1989.39], [2486.74, 1981.96], [2473.29, 1989.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2372.75, 1877.93], [2370.71, 1879.11], [2370.2, 1878.22], [2330.14, 1901.38], [2340.95, 1919.96], [2345.3, 1917.43], [2346.62, 1919.7], [2354.05, 1915.4], [2352.74, 1913.13], [2355.76, 1911.39], [2356.78, 1913.15], [2360.13, 1911.23], [2359.1, 1909.46], [2364.55, 1906.31], [2366.63, 1909.89], [2364.8, 1910.95], [2366.96, 1914.68], [2368.8, 1913.62], [2370.21, 1916.03], [2368.47, 1917.04], [2370.54, 1920.6], [2372.29, 1919.6], [2375.41, 1924.97], [2373.9, 1925.84], [2376.22, 1929.82], [2378.01, 1928.78], [2382.91, 1937.2], [2381.49, 1938.02], [2385.9, 1945.61], [2387.67, 1944.6], [2389.71, 1948.11], [2401.17, 1941.49], [2400.4, 1940.16], [2406.66, 1936.54], [2390.49, 1908.75], [2388.49, 1909.91], [2387.21, 1907.7], [2388.97, 1906.68], [2384.93, 1899.74], [2383.17, 1900.76], [2381.96, 1898.69], [2383.61, 1897.73], [2379.55, 1890.73], [2377.89, 1891.69], [2376.87, 1889.94], [2379.02, 1888.7], [2372.75, 1877.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 841, "jobs": 0}}, {"shape": {"outer": [[2359.96, 1970.88], [2382.74, 2000.25], [2396.65, 1989.53], [2386.53, 1976.48], [2388.57, 1974.91], [2375.91, 1958.6], [2359.96, 1970.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.452, "pop": 0, "jobs": 452}}, {"shape": {"outer": [[-1959.5, -1634.71], [-1957.23, -1634.75], [-1957.28, -1637.96], [-1959.55, -1637.93], [-1959.5, -1634.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[-1965.85, -1650.83], [-1963.37, -1650.87], [-1963.41, -1654.13], [-1965.88, -1654.09], [-1965.85, -1650.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[-1940.95, -1674.31], [-1938.63, -1674.34], [-1938.67, -1677.61], [-1940.98, -1677.57], [-1940.95, -1674.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[-1965.28, -1684.28], [-1959.37, -1684.38], [-1959.44, -1688.65], [-1953.9, -1688.75], [-1954.13, -1701.43], [-1955.13, -1701.41], [-1955.16, -1702.9], [-1963.67, -1702.74], [-1963.59, -1698.25], [-1964.52, -1698.24], [-1964.44, -1693.78], [-1965.45, -1693.76], [-1965.28, -1684.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1980.11, -1694.06], [-1968.28, -1694.31], [-1968.49, -1704.7], [-1972.36, -1704.61], [-1972.41, -1706.94], [-1976.67, -1706.85], [-1976.62, -1704.53], [-1980.33, -1704.45], [-1980.11, -1694.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1980.77, -1693.94], [-1980.98, -1699.14], [-1986.53, -1698.93], [-1986.32, -1693.72], [-1980.77, -1693.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1992.34, -1693.59], [-1992.51, -1698.93], [-1987.0, -1699.12], [-1986.82, -1693.77], [-1992.34, -1693.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2002.75, -1694.97], [-1992.59, -1695.31], [-1993.0, -1707.33], [-2003.14, -1707.0], [-2002.75, -1694.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2002.49, -1684.87], [-2002.7, -1692.38], [-1994.72, -1692.6], [-1994.44, -1681.99], [-2000.0, -1681.84], [-2000.08, -1684.92], [-2002.49, -1684.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1984.59, -1675.19], [-1977.47, -1675.37], [-1977.6, -1680.49], [-1984.72, -1680.31], [-1984.59, -1675.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2003.7, -1671.09], [-2003.75, -1677.49], [-1992.66, -1677.59], [-1992.61, -1671.19], [-2003.7, -1671.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2001.02, -1660.8], [-2001.04, -1663.68], [-2003.05, -1663.67], [-2003.08, -1669.26], [-1990.53, -1669.34], [-1990.47, -1660.87], [-2001.02, -1660.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2000.8, -1644.9], [-2000.81, -1645.39], [-2003.13, -1645.36], [-2003.24, -1652.49], [-2000.92, -1652.52], [-2000.93, -1653.12], [-1999.35, -1653.15], [-1999.37, -1654.42], [-1995.67, -1654.47], [-1995.65, -1653.21], [-1988.94, -1653.31], [-1988.81, -1645.08], [-2000.8, -1644.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2000.99, -1632.77], [-2001.16, -1641.88], [-1991.29, -1642.06], [-1991.26, -1640.98], [-1984.75, -1641.1], [-1984.62, -1633.96], [-1988.27, -1633.89], [-1988.26, -1633.5], [-1990.77, -1633.45], [-1990.76, -1632.96], [-2000.99, -1632.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1980.31, -1636.51], [-1980.59, -1644.57], [-1971.75, -1644.88], [-1971.47, -1636.82], [-1980.31, -1636.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2000.7, -1621.69], [-2000.72, -1630.39], [-1991.76, -1630.41], [-1991.73, -1620.01], [-1995.66, -1620.0], [-1995.67, -1621.7], [-2000.7, -1621.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2001.39, -1609.28], [-2001.62, -1618.28], [-1988.95, -1618.61], [-1988.72, -1609.61], [-2001.39, -1609.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1980.79, -1609.81], [-1972.26, -1610.0], [-1972.37, -1614.52], [-1969.2, -1614.59], [-1969.39, -1622.86], [-1973.98, -1622.76], [-1973.9, -1619.05], [-1981.0, -1618.89], [-1980.79, -1609.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1964.69, -1616.72], [-1965.0, -1625.59], [-1955.28, -1625.92], [-1954.88, -1614.28], [-1958.74, -1614.14], [-1958.76, -1614.85], [-1962.03, -1614.75], [-1962.1, -1616.81], [-1964.69, -1616.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1950.31, -1635.62], [-1941.73, -1635.81], [-1941.94, -1645.01], [-1950.53, -1644.82], [-1950.31, -1635.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1952.43, -1617.41], [-1952.49, -1626.23], [-1948.9, -1626.25], [-1948.92, -1628.46], [-1944.04, -1628.5], [-1943.95, -1617.48], [-1944.58, -1617.47], [-1944.56, -1614.96], [-1950.78, -1614.92], [-1950.81, -1617.43], [-1952.43, -1617.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1940.45, -1615.63], [-1932.28, -1615.78], [-1932.52, -1628.89], [-1934.5, -1628.85], [-1934.59, -1633.71], [-1940.77, -1633.6], [-1940.45, -1615.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1936.41, -1638.86], [-1929.96, -1639.12], [-1930.21, -1645.22], [-1936.66, -1644.95], [-1936.41, -1638.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1925.02, -1640.87], [-1925.13, -1649.06], [-1911.36, -1649.25], [-1911.24, -1639.76], [-1918.12, -1639.67], [-1918.13, -1640.96], [-1925.02, -1640.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1928.77, -1615.06], [-1917.97, -1615.47], [-1918.42, -1627.21], [-1919.82, -1627.16], [-1919.97, -1631.13], [-1927.61, -1630.84], [-1927.47, -1626.88], [-1929.21, -1626.8], [-1928.77, -1615.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1876.62, -1450.53], [-1885.1, -1450.39], [-1885.29, -1461.74], [-1884.93, -1461.74], [-1884.97, -1464.3], [-1877.36, -1464.43], [-1877.31, -1461.87], [-1876.81, -1461.88], [-1876.62, -1450.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1880.23, -1434.2], [-1874.15, -1434.31], [-1874.32, -1443.88], [-1880.4, -1443.78], [-1880.23, -1434.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1888.92, -1407.75], [-1879.94, -1407.95], [-1880.23, -1421.55], [-1889.21, -1421.36], [-1888.92, -1407.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1888.46, -1375.78], [-1880.56, -1375.96], [-1880.67, -1380.49], [-1879.69, -1380.52], [-1879.77, -1383.79], [-1876.83, -1383.86], [-1876.99, -1390.58], [-1888.81, -1390.3], [-1888.46, -1375.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1374.81, 159.12], [-1373.96, 152.37], [-1365.09, 153.25], [-1365.95, 160.1], [-1374.81, 159.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.039, "pop": 0, "jobs": 39}}, {"shape": {"outer": [[-1339.19, 155.47], [-1339.3, 150.07], [-1337.39, 149.89], [-1333.84, 149.86], [-1330.25, 150.21], [-1330.77, 155.75], [-1332.6, 155.61], [-1336.05, 155.47], [-1339.19, 155.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.031, "pop": 0, "jobs": 31}}, {"shape": {"outer": [[-1395.86, 150.2], [-1395.24, 150.18], [-1393.86, 150.13], [-1390.55, 150.05], [-1389.33, 149.67], [-1388.23, 148.61], [-1388.55, 140.82], [-1396.25, 141.06], [-1395.86, 150.2]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.044, "pop": 0, "jobs": 44}}, {"shape": {"outer": [[-2597.27, -689.78], [-2597.46, -695.27], [-2592.0, -695.45], [-2591.81, -689.96], [-2597.27, -689.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1517.45, 2608.93], [1550.71, 2607.38], [1550.68, 2606.77], [1580.39, 2605.38], [1579.82, 2593.26], [1581.62, 2593.17], [1581.3, 2586.29], [1579.47, 2586.38], [1577.97, 2554.34], [1579.93, 2554.25], [1579.58, 2546.68], [1571.09, 2547.08], [1571.2, 2549.28], [1554.13, 2550.08], [1555.82, 2586.15], [1549.62, 2586.44], [1549.64, 2586.82], [1536.14, 2587.44], [1536.09, 2586.41], [1533.08, 2573.91], [1533.32, 2573.86], [1531.54, 2566.46], [1524.79, 2568.07], [1524.97, 2568.8], [1516.5, 2570.81], [1517.54, 2575.11], [1513.69, 2576.03], [1517.02, 2589.85], [1517.52, 2600.74], [1517.06, 2600.76], [1517.45, 2608.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1623}}, {"shape": {"outer": [[-441.47, 142.75], [-442.2, 142.07], [-444.49, 144.52], [-451.99, 137.55], [-450.28, 135.72], [-451.13, 134.93], [-446.94, 130.45], [-446.51, 130.85], [-442.33, 126.37], [-441.06, 127.56], [-437.83, 124.12], [-436.87, 125.02], [-435.94, 124.03], [-432.08, 127.63], [-432.99, 128.62], [-431.84, 129.69], [-432.2, 130.07], [-430.91, 131.28], [-433.59, 134.15], [-433.06, 134.63], [-437.43, 139.31], [-437.87, 138.9], [-441.47, 142.75]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2813.61, -2147.2], [2818.87, -2146.87], [2819.34, -2154.23], [2814.09, -2154.57], [2813.89, -2151.57], [2813.61, -2147.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1641.99, 2278.0], [1641.82, 2271.51], [1662.32, 2271.0], [1662.49, 2277.47], [1641.99, 2278.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1637.44, 2298.03], [1637.33, 2287.18], [1661.97, 2286.91], [1662.09, 2297.77], [1637.44, 2298.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[1625.53, 2319.74], [1625.35, 2306.86], [1664.48, 2306.28], [1664.67, 2319.16], [1625.53, 2319.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[1618.9, 2328.56], [1619.09, 2334.88], [1668.46, 2333.36], [1668.27, 2327.04], [1618.9, 2328.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[1258.81, 751.3], [1257.4, 749.58], [1256.12, 747.52], [1255.53, 746.04], [1254.93, 743.95], [1254.74, 741.59], [1254.87, 738.81], [1254.95, 736.96], [1254.72, 734.82], [1253.86, 733.15], [1252.42, 731.47], [1254.86, 729.46], [1257.51, 727.26], [1258.91, 728.97], [1260.14, 730.94], [1260.91, 733.21], [1261.32, 735.5], [1261.13, 738.0], [1261.0, 739.64], [1261.04, 741.83], [1261.52, 744.04], [1262.33, 745.46], [1263.59, 747.06], [1261.16, 749.21], [1258.81, 751.3]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.039, "pop": 0, "jobs": 39}}, {"shape": {"outer": [[293.46, 53.74], [311.41, 34.19], [292.32, 16.79], [274.37, 36.33], [293.46, 53.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.439, "pop": 0, "jobs": 439}}, {"shape": {"outer": [[570.6, 531.21], [513.37, 595.19], [542.49, 621.04], [538.36, 625.66], [550.14, 636.12], [611.49, 567.5], [584.26, 543.33], [570.6, 531.21]], "holes": []}, "height": 48.2, "data": {"type": "residential", "density": 1.0, "pop": 11549, "jobs": 0}}, {"shape": {"outer": [[689.88, 476.98], [702.9, 462.54], [683.96, 445.57], [678.34, 451.75], [684.14, 457.01], [680.77, 460.71], [687.49, 466.79], [683.48, 471.18], [689.88, 476.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[1541.48, 2834.16], [1549.46, 2829.97], [1548.52, 2828.18], [1551.79, 2826.46], [1552.57, 2827.93], [1561.47, 2823.26], [1564.88, 2829.72], [1594.68, 2886.22], [1601.54, 2899.22], [1598.59, 2900.76], [1599.92, 2903.27], [1600.88, 2926.95], [1592.37, 2931.16], [1574.56, 2897.22], [1541.48, 2834.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 933, "jobs": 0}}, {"shape": {"outer": [[-891.7, -411.59], [-880.31, -423.93], [-924.74, -464.61], [-936.13, -452.27], [-891.7, -411.59]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 708, "jobs": 0}}, {"shape": {"outer": [[2003.94, 1246.29], [2009.3, 1252.87], [2020.4, 1243.87], [2015.04, 1237.3], [2003.94, 1246.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.078, "pop": 0, "jobs": 78}}, {"shape": {"outer": [[714.55, 757.0], [705.37, 747.93], [704.14, 749.05], [702.31, 747.66], [698.82, 751.52], [648.79, 707.39], [650.67, 703.76], [649.59, 702.96], [646.0, 700.08], [660.2, 684.29], [658.57, 682.87], [657.62, 682.04], [645.23, 695.65], [638.6, 690.46], [642.58, 685.16], [601.77, 648.47], [596.33, 653.29], [587.1, 644.94], [589.36, 642.36], [584.38, 638.03], [599.58, 621.64], [598.63, 620.23], [606.14, 612.12], [607.79, 612.98], [621.05, 598.43], [619.77, 597.76], [624.64, 591.69], [626.1, 592.55], [631.15, 586.49], [642.78, 596.56], [690.23, 638.8], [684.84, 645.29], [686.86, 647.24], [690.38, 650.63], [691.73, 649.41], [694.58, 651.97], [697.62, 654.68], [698.01, 654.25], [701.06, 657.16], [703.66, 654.13], [709.3, 659.45], [710.82, 658.23], [759.08, 702.63], [740.63, 723.07], [741.89, 724.24], [724.27, 743.78], [720.15, 748.24], [721.46, 749.65], [714.55, 757.0]], "holes": []}, "height": 48.1, "data": {"type": "residential", "density": 1.0, "pop": 29753, "jobs": 0}}, {"shape": {"outer": [[-2193.53, -1805.36], [-2191.34, -1808.96], [-2189.43, -1811.9], [-2187.64, -1810.56], [-2186.47, -1812.12], [-2186.84, -1814.28], [-2183.67, -1815.91], [-2182.26, -1815.95], [-2182.66, -1817.83], [-2181.14, -1818.51], [-2180.6, -1816.98], [-2179.21, -1817.44], [-2176.95, -1812.12], [-2178.69, -1811.51], [-2176.05, -1809.98], [-2176.22, -1809.35], [-2176.37, -1808.85], [-2174.94, -1807.91], [-2179.19, -1801.86], [-2182.97, -1804.19], [-2183.31, -1803.74], [-2185.81, -1800.41], [-2193.53, -1805.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2885.96, 2665.98], [2881.02, 2658.36], [2884.07, 2657.86], [2884.12, 2656.38], [2893.99, 2654.45], [2893.47, 2650.84], [2900.96, 2649.23], [2903.09, 2662.47], [2898.55, 2663.57], [2898.27, 2662.25], [2889.53, 2663.57], [2889.91, 2665.12], [2885.96, 2665.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.129, "pop": 0, "jobs": 129}}, {"shape": {"outer": [[2820.42, 2643.02], [2821.9, 2639.01], [2808.28, 2616.66], [2797.06, 2599.67], [2766.52, 2631.7], [2780.3, 2645.73], [2791.04, 2634.95], [2796.06, 2639.76], [2806.44, 2629.07], [2820.42, 2643.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.721, "pop": 0, "jobs": 721}}, {"shape": {"outer": [[2865.31, 2772.44], [2871.65, 2753.09], [2888.91, 2758.7], [2882.57, 2778.05], [2865.31, 2772.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[-1974.07, -1528.87], [-1973.86, -1521.58], [-1963.94, -1521.86], [-1964.15, -1529.16], [-1974.07, -1528.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1870.08, -1448.87], [-1870.2, -1452.63], [-1871.02, -1452.85], [-1871.33, -1463.3], [-1870.21, -1463.33], [-1870.25, -1464.78], [-1861.5, -1465.05], [-1861.45, -1463.53], [-1860.63, -1463.55], [-1860.28, -1452.66], [-1864.46, -1452.53], [-1864.34, -1449.06], [-1870.08, -1448.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1906.81, -1422.04], [-1900.29, -1422.2], [-1900.24, -1420.16], [-1896.95, -1420.23], [-1897.0, -1421.85], [-1894.6, -1421.91], [-1894.7, -1426.24], [-1891.83, -1426.3], [-1891.97, -1432.11], [-1895.15, -1432.03], [-1895.19, -1433.67], [-1901.94, -1433.5], [-1901.91, -1432.62], [-1902.86, -1432.6], [-1902.78, -1429.42], [-1907.65, -1429.3], [-1907.58, -1426.25], [-1906.9, -1426.27], [-1906.81, -1422.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1750.9, -1030.2], [-1751.51, -1059.32], [-1745.44, -1059.45], [-1745.56, -1064.95], [-1751.14, -1064.84], [-1752.02, -1106.77], [-1720.43, -1107.43], [-1720.04, -1088.97], [-1731.55, -1088.73], [-1731.03, -1063.9], [-1729.6, -1063.94], [-1729.47, -1057.58], [-1730.71, -1057.16], [-1730.39, -1041.55], [-1726.13, -1041.63], [-1725.9, -1030.73], [-1750.9, -1030.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 718, "jobs": 0}}, {"shape": {"outer": [[-1715.78, -1141.79], [-1717.06, -1208.95], [-1717.77, -1208.93], [-1717.9, -1215.57], [-1717.07, -1215.59], [-1717.26, -1224.63], [-1716.86, -1224.63], [-1716.89, -1226.64], [-1715.7, -1226.66], [-1715.71, -1227.23], [-1706.78, -1227.38], [-1703.18, -1227.45], [-1703.18, -1227.86], [-1697.35, -1227.94], [-1697.33, -1226.78], [-1687.42, -1226.89], [-1687.28, -1215.01], [-1697.98, -1214.89], [-1697.94, -1211.72], [-1697.93, -1210.47], [-1697.36, -1160.64], [-1677.23, -1160.87], [-1677.02, -1142.93], [-1695.52, -1142.71], [-1695.49, -1140.98], [-1701.06, -1140.9], [-1701.08, -1142.06], [-1703.9, -1142.0], [-1715.78, -1141.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 848, "jobs": 0}}, {"shape": {"outer": [[-654.74, -945.61], [-610.76, -993.11], [-619.58, -1001.22], [-623.84, -996.61], [-628.76, -1001.13], [-655.72, -972.01], [-685.79, -999.66], [-691.94, -993.02], [-695.31, -996.11], [-701.92, -988.98], [-654.74, -945.61]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1384, "jobs": 0}}, {"shape": {"outer": [[-853.52, 212.39], [-843.56, 201.47], [-831.84, 212.09], [-825.45, 205.1], [-837.46, 194.21], [-827.67, 183.5], [-807.16, 202.08], [-809.37, 204.51], [-795.57, 217.01], [-804.36, 226.65], [-810.08, 221.46], [-812.92, 224.58], [-806.66, 230.26], [-818.34, 243.05], [-836.46, 226.63], [-834.42, 224.4], [-836.31, 222.69], [-838.96, 225.59], [-853.52, 212.39]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1333, "jobs": 0}}, {"shape": {"outer": [[-825.98, 179.99], [-816.05, 168.86], [-803.25, 180.21], [-813.17, 191.33], [-825.98, 179.99]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-1629.39, -482.61], [-1633.29, -482.44], [-1633.24, -481.19], [-1651.02, -480.42], [-1650.43, -466.74], [-1650.1, -466.75], [-1649.93, -462.97], [-1645.49, -463.17], [-1645.46, -462.4], [-1630.42, -463.05], [-1631.08, -478.43], [-1629.21, -478.51], [-1629.39, -482.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[665.36, 550.08], [692.4, 576.7], [714.0, 553.87], [716.56, 555.89], [743.08, 527.02], [757.58, 510.74], [731.85, 485.68], [716.54, 502.83], [708.8, 496.83], [693.79, 515.38], [679.73, 527.7], [683.06, 530.73], [665.36, 550.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2407}}, {"shape": {"outer": [[702.88, 578.31], [714.54, 589.04], [716.6, 586.81], [723.94, 593.57], [729.78, 587.28], [730.72, 588.16], [750.27, 567.07], [748.14, 565.12], [754.03, 558.78], [756.93, 561.44], [780.2, 536.33], [776.8, 533.19], [779.18, 530.63], [765.37, 517.92], [754.32, 529.84], [752.56, 528.22], [739.53, 542.28], [737.79, 540.69], [702.88, 578.31]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4887}}, {"shape": {"outer": [[-1816.51, -1375.96], [-1816.3, -1391.59], [-1808.79, -1391.49], [-1809.01, -1375.87], [-1816.51, -1375.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1825.68, -1377.69], [-1826.14, -1392.07], [-1817.95, -1392.33], [-1817.49, -1377.95], [-1825.68, -1377.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1798.12, -1392.26], [-1798.25, -1401.6], [-1783.37, -1401.82], [-1783.23, -1392.49], [-1798.12, -1392.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1797.72, -1407.87], [-1798.09, -1415.34], [-1784.28, -1416.01], [-1783.92, -1408.55], [-1797.72, -1407.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1798.81, -1423.23], [-1799.06, -1430.59], [-1786.56, -1431.02], [-1786.31, -1423.66], [-1798.81, -1423.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1797.81, -1437.9], [-1798.29, -1448.83], [-1786.98, -1449.32], [-1786.51, -1438.39], [-1797.81, -1437.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1828.68, -1457.5], [-1828.94, -1466.67], [-1820.13, -1466.92], [-1819.87, -1457.75], [-1828.68, -1457.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1845.92, -1457.06], [-1845.94, -1467.06], [-1834.12, -1467.09], [-1834.12, -1465.29], [-1832.43, -1465.29], [-1832.41, -1459.02], [-1834.59, -1459.03], [-1834.58, -1457.07], [-1845.92, -1457.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1854.96, -1454.45], [-1855.4, -1464.1], [-1848.13, -1464.43], [-1847.68, -1454.79], [-1854.96, -1454.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1842.37, -1435.31], [-1842.85, -1442.14], [-1838.03, -1442.48], [-1837.55, -1435.65], [-1842.37, -1435.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1800.78, -1454.49], [-1800.96, -1463.47], [-1786.72, -1463.77], [-1786.53, -1454.77], [-1800.78, -1454.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1831.29, -1438.23], [-1831.64, -1447.02], [-1822.62, -1447.37], [-1822.28, -1438.59], [-1831.29, -1438.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1862.53, -1441.69], [-1862.92, -1448.25], [-1856.92, -1448.61], [-1856.53, -1442.05], [-1862.53, -1441.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1797.69, -1303.91], [-1797.82, -1317.83], [-1787.44, -1317.92], [-1787.32, -1304.01], [-1797.69, -1303.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-538.97, -397.72], [-500.38, -438.63], [-509.04, -446.68], [-507.1, -448.76], [-516.31, -457.32], [-520.62, -452.73], [-516.2, -448.62], [-529.37, -434.55], [-550.65, -411.8], [-545.34, -406.86], [-546.2, -405.89], [-546.97, -405.04], [-538.97, -397.72]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 934, "jobs": 0}}, {"shape": {"outer": [[-550.53, -408.31], [-553.57, -405.03], [-560.04, -398.05], [-562.1, -397.45], [-563.58, -395.77], [-563.63, -393.93], [-563.57, -391.64], [-562.67, -390.8], [-562.56, -388.67], [-561.55, -370.68], [-559.65, -368.9], [-556.39, -365.82], [-555.79, -363.87], [-554.98, -362.38], [-553.64, -361.44], [-552.43, -361.04], [-550.68, -360.97], [-548.01, -359.02], [-504.1, -319.8], [-501.49, -317.46], [-499.9, -316.04], [-495.34, -321.17], [-492.61, -321.04], [-489.02, -325.6], [-489.47, -328.19], [-488.66, -329.18], [-482.91, -323.73], [-480.17, -326.61], [-480.8, -327.14], [-485.31, -330.95], [-483.33, -333.1], [-483.38, -335.99], [-494.95, -346.29], [-499.0, -341.96], [-532.53, -373.06], [-533.59, -385.97], [-533.77, -388.03], [-537.01, -391.22], [-541.33, -395.47], [-538.97, -397.72], [-546.97, -405.04], [-550.53, -408.31]], "holes": []}, "height": 41.1, "data": {"type": "residential", "density": 1.0, "pop": 5030, "jobs": 0}}, {"shape": {"outer": [[-2491.68, -882.48], [-2503.0, -869.19], [-2494.27, -861.65], [-2482.8, -875.17], [-2491.68, -882.48]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.113, "pop": 0, "jobs": 113}}, {"shape": {"outer": [[-2964.11, -1269.15], [-2962.26, -1267.6], [-2958.12, -1272.52], [-2959.97, -1274.06], [-2959.1, -1275.1], [-2967.23, -1281.86], [-2972.71, -1275.34], [-2964.6, -1268.57], [-2964.11, -1269.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2952.47, -1280.61], [-2944.99, -1289.46], [-2949.45, -1293.19], [-2950.77, -1291.63], [-2952.21, -1292.83], [-2958.68, -1285.14], [-2958.23, -1284.77], [-2959.45, -1283.32], [-2955.65, -1280.13], [-2954.09, -1281.98], [-2952.47, -1280.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2952.22, -1293.19], [-2951.65, -1297.06], [-2957.65, -1297.92], [-2958.22, -1294.05], [-2952.22, -1293.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2977.22, -1280.35], [-2976.11, -1281.61], [-2973.75, -1279.55], [-2969.32, -1284.59], [-2972.26, -1287.16], [-2968.43, -1291.52], [-2972.8, -1295.34], [-2973.9, -1294.07], [-2976.96, -1296.74], [-2985.23, -1287.35], [-2977.22, -1280.35]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2992.87, -1293.16], [-2991.07, -1295.29], [-2990.48, -1294.79], [-2983.85, -1302.62], [-2982.79, -1303.88], [-2986.37, -1306.88], [-2990.94, -1310.71], [-2998.52, -1301.73], [-2997.88, -1301.21], [-2999.78, -1298.95], [-2992.87, -1293.16]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2982.08, -1301.14], [-2977.0, -1307.16], [-2982.35, -1311.64], [-2986.37, -1306.88], [-2982.79, -1303.88], [-2983.85, -1302.62], [-2982.08, -1301.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-3006.51, -1304.05], [-3000.63, -1311.15], [-3004.91, -1314.68], [-3002.15, -1318.01], [-3007.29, -1322.23], [-3015.93, -1311.8], [-3006.51, -1304.05]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3026.62, -1320.81], [-3019.28, -1314.77], [-3012.94, -1322.44], [-3020.29, -1328.47], [-3026.62, -1320.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-3023.1, -1337.44], [-3015.89, -1346.12], [-3010.07, -1341.33], [-3017.27, -1332.64], [-3023.1, -1337.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-3030.55, -1320.56], [-3022.39, -1330.21], [-3026.0, -1333.24], [-3025.25, -1334.14], [-3026.64, -1335.31], [-3027.44, -1334.37], [-3029.4, -1336.01], [-3037.52, -1326.41], [-3030.55, -1320.56]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3039.18, -1327.58], [-3031.04, -1337.38], [-3034.97, -1340.61], [-3033.87, -1341.92], [-3036.34, -1343.95], [-3045.56, -1332.83], [-3039.18, -1327.58]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[329.91, 75.98], [329.24, 76.73], [333.27, 80.3], [334.71, 78.7], [338.19, 81.78], [345.67, 73.41], [333.57, 62.67], [331.06, 65.47], [329.75, 64.32], [327.68, 66.65], [328.95, 67.78], [325.28, 71.87], [329.91, 75.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[341.73, 97.87], [331.87, 89.05], [346.68, 72.6], [356.54, 81.42], [341.73, 97.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[398.79, 51.27], [388.61, 42.18], [405.65, 23.26], [415.82, 32.36], [398.79, 51.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[418.28, 30.85], [411.29, 24.61], [410.99, 24.94], [403.64, 18.39], [408.79, 12.64], [409.67, 13.43], [410.2, 12.84], [414.69, 16.84], [414.08, 17.53], [416.2, 19.41], [417.55, 17.92], [421.3, 21.27], [420.41, 22.26], [423.51, 25.03], [418.28, 30.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[428.46, 20.19], [419.28, 12.26], [423.01, 7.97], [432.19, 15.9], [428.46, 20.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[434.77, 16.52], [438.42, 12.32], [432.99, 7.62], [433.39, 7.16], [430.4, 4.57], [425.69, 9.97], [432.32, 15.71], [432.98, 14.96], [434.77, 16.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[441.2, 7.19], [446.86, 0.84], [439.53, -5.65], [437.65, -3.53], [436.66, -4.41], [432.88, -0.17], [441.2, 7.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[459.03, -40.34], [453.95, -44.91], [440.79, -30.42], [444.04, -27.49], [446.02, -29.67], [447.85, -28.03], [459.03, -40.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[437.64, -26.92], [440.79, -30.42], [453.95, -44.91], [448.76, -49.44], [434.72, -34.05], [432.47, -31.54], [437.64, -26.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[448.76, -49.44], [435.39, -61.65], [421.29, -46.29], [434.72, -34.05], [448.76, -49.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[435.39, -61.65], [430.34, -66.25], [415.2, -49.76], [420.25, -45.16], [421.29, -46.29], [435.39, -61.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[371.79, 57.34], [367.41, 53.34], [361.25, 60.04], [365.63, 64.04], [371.79, 57.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[327.67, 129.83], [335.17, 121.51], [323.75, 111.3], [316.25, 119.62], [327.67, 129.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[316.09, 138.95], [316.71, 138.3], [318.63, 140.11], [323.92, 134.51], [322.04, 132.75], [322.62, 132.15], [312.82, 122.94], [306.34, 129.79], [316.09, 138.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[315.44, 145.98], [308.44, 139.94], [309.29, 138.96], [303.99, 134.39], [297.97, 141.31], [310.27, 151.92], [315.44, 145.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[295.11, 152.29], [295.84, 151.49], [294.78, 150.52], [296.44, 148.7], [293.48, 146.03], [295.31, 144.03], [296.29, 144.92], [297.26, 143.86], [299.45, 145.84], [299.98, 145.26], [308.74, 153.21], [303.02, 159.46], [295.11, 152.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[296.37, 167.1], [281.45, 153.61], [287.03, 147.47], [301.96, 160.95], [301.41, 161.56], [302.48, 162.53], [298.24, 167.19], [297.17, 166.22], [296.37, 167.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[287.58, 162.12], [287.97, 161.67], [284.45, 158.54], [279.74, 163.8], [282.66, 166.4], [282.25, 166.85], [289.21, 173.03], [293.92, 167.76], [287.58, 162.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[270.6, 193.63], [264.55, 188.18], [271.14, 180.92], [270.8, 180.61], [274.04, 177.05], [280.99, 183.32], [277.42, 187.24], [276.86, 186.74], [270.6, 193.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[261.2, 184.68], [268.09, 176.81], [266.59, 175.5], [269.56, 172.11], [265.22, 168.34], [262.36, 171.61], [262.04, 171.33], [255.04, 179.33], [255.45, 179.69], [254.0, 181.35], [259.37, 186.01], [260.83, 184.36], [261.2, 184.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[252.61, 173.13], [259.25, 165.55], [254.35, 161.29], [254.79, 160.78], [251.68, 158.08], [247.09, 163.34], [247.71, 163.88], [245.23, 166.72], [252.61, 173.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[254.22, 155.78], [259.27, 150.19], [248.52, 140.56], [243.47, 146.15], [254.22, 155.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[268.4, 155.97], [271.36, 152.64], [267.06, 148.84], [264.1, 152.16], [268.4, 155.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[276.78, 136.85], [283.94, 128.93], [266.42, 113.2], [259.26, 121.12], [276.78, 136.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[259.78, 147.38], [250.41, 138.51], [257.13, 131.45], [266.52, 140.33], [259.78, 147.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[277.79, 139.36], [272.71, 134.72], [267.35, 140.54], [272.43, 145.18], [277.79, 139.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[270.07, 134.18], [266.11, 130.58], [262.84, 134.16], [266.8, 137.76], [270.07, 134.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[275.68, 106.97], [277.08, 105.4], [275.65, 104.12], [279.99, 99.24], [281.63, 100.7], [295.09, 85.59], [304.4, 93.83], [303.88, 94.39], [285.64, 114.63], [285.15, 115.31], [275.68, 106.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[285.64, 114.63], [288.84, 117.5], [286.07, 120.58], [286.37, 120.85], [283.33, 124.22], [298.25, 137.57], [319.53, 113.93], [317.58, 112.18], [320.11, 109.38], [320.07, 108.51], [317.08, 105.69], [316.1, 105.7], [315.3, 106.58], [312.1, 103.72], [310.15, 105.89], [304.27, 100.63], [307.22, 97.37], [303.88, 94.39], [285.64, 114.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.511, "pop": 0, "jobs": 511}}, {"shape": {"outer": [[1275.5, 727.16], [1276.84, 725.68], [1275.42, 724.4], [1274.08, 725.88], [1275.5, 727.16]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[1508.03, 1059.84], [1509.92, 1059.26], [1509.35, 1057.41], [1507.46, 1057.99], [1508.03, 1059.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[422.35, 837.5], [427.96, 831.59], [423.02, 826.94], [423.41, 826.53], [419.46, 822.79], [419.0, 823.26], [415.86, 820.29], [410.3, 826.15], [422.35, 837.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[420.8, 838.16], [409.37, 827.73], [403.81, 833.81], [410.72, 840.11], [410.12, 840.76], [412.4, 842.83], [412.85, 842.34], [414.98, 844.29], [415.6, 843.62], [416.56, 844.49], [421.39, 839.23], [420.54, 838.46], [420.8, 838.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[425.28, 850.77], [428.96, 846.66], [429.38, 847.04], [432.33, 843.76], [431.83, 843.31], [434.7, 840.12], [428.75, 834.81], [419.24, 845.38], [425.28, 850.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[427.96, 855.96], [431.17, 858.85], [434.35, 855.32], [435.77, 856.61], [442.08, 849.64], [435.59, 843.8], [429.41, 850.63], [431.27, 852.3], [427.96, 855.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[445.43, 850.9], [443.01, 853.4], [442.48, 852.88], [435.54, 860.07], [440.81, 865.13], [450.17, 855.45], [445.43, 850.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[445.93, 868.23], [446.91, 867.15], [445.62, 865.99], [446.8, 864.69], [445.75, 863.75], [447.79, 861.5], [446.55, 860.39], [451.49, 854.95], [458.41, 861.19], [450.22, 870.2], [448.82, 868.95], [447.87, 869.99], [445.93, 868.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[455.05, 876.72], [463.79, 866.68], [458.51, 862.12], [447.56, 874.69], [452.76, 879.19], [453.88, 877.9], [453.43, 877.51], [454.51, 876.27], [455.05, 876.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[459.53, 889.93], [475.48, 872.29], [469.51, 866.91], [457.38, 880.32], [459.2, 881.96], [455.36, 886.2], [459.53, 889.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[472.16, 885.25], [474.0, 883.23], [476.79, 885.76], [482.9, 879.09], [476.2, 873.0], [468.24, 881.68], [472.16, 885.25]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.062, "pop": 0, "jobs": 62}}, {"shape": {"outer": [[473.87, 888.54], [476.36, 885.83], [474.01, 883.68], [471.52, 886.38], [473.87, 888.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[485.09, 892.48], [484.72, 892.14], [485.54, 891.25], [481.93, 888.0], [481.63, 888.31], [479.73, 886.59], [479.06, 887.32], [478.32, 886.64], [470.31, 895.47], [476.95, 901.45], [485.09, 892.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[492.38, 896.26], [492.13, 895.85], [493.72, 894.08], [488.93, 889.8], [487.42, 891.49], [486.85, 890.98], [480.8, 897.7], [481.91, 898.7], [478.72, 902.25], [482.72, 905.82], [486.01, 902.15], [486.6, 902.68], [492.38, 896.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[489.01, 916.77], [485.9, 913.93], [489.36, 910.19], [487.73, 908.69], [493.75, 902.19], [495.02, 903.36], [501.73, 896.12], [505.43, 899.52], [498.84, 906.65], [499.41, 907.16], [493.37, 913.68], [492.56, 912.94], [489.01, 916.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[490.06, 917.61], [494.03, 921.28], [497.45, 917.6], [498.66, 918.71], [504.83, 912.07], [499.66, 907.29], [490.06, 917.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[504.84, 930.3], [501.16, 926.97], [504.09, 923.77], [503.0, 922.78], [510.34, 914.72], [515.12, 919.04], [504.84, 930.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[511.89, 934.61], [507.97, 931.05], [510.84, 927.91], [511.31, 928.34], [516.91, 922.22], [521.72, 926.58], [515.73, 933.15], [514.35, 931.91], [511.89, 934.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[513.01, 935.97], [511.2, 934.34], [508.9, 936.88], [510.71, 938.52], [513.01, 935.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[525.34, 968.35], [510.14, 954.67], [533.5, 928.89], [548.7, 942.57], [525.34, 968.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.455, "pop": 0, "jobs": 455}}, {"shape": {"outer": [[525.03, 937.57], [523.56, 936.22], [520.98, 939.02], [517.67, 935.99], [525.55, 927.44], [530.34, 931.83], [525.03, 937.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[465.53, 928.31], [470.21, 923.2], [463.09, 916.73], [458.4, 921.84], [465.53, 928.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[464.61, 898.49], [457.13, 906.37], [453.07, 902.55], [460.55, 894.67], [464.61, 898.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[439.38, 896.35], [433.44, 891.07], [428.39, 896.71], [434.32, 901.98], [439.38, 896.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[429.55, 885.47], [426.29, 882.51], [421.84, 887.34], [425.1, 890.32], [429.55, 885.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[425.53, 882.61], [420.59, 878.03], [416.12, 882.81], [421.06, 887.39], [425.53, 882.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[423.5, 879.73], [418.62, 875.6], [422.79, 870.72], [427.66, 874.85], [423.5, 879.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[401.89, 858.36], [403.3, 856.77], [405.15, 858.41], [408.85, 854.28], [405.85, 851.62], [407.54, 849.73], [397.8, 841.09], [391.0, 848.7], [401.89, 858.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[383.64, 854.15], [384.53, 854.97], [384.26, 855.26], [390.96, 861.39], [392.27, 859.96], [395.79, 863.19], [398.89, 859.82], [395.39, 856.62], [395.82, 856.16], [389.18, 850.09], [388.8, 850.5], [387.82, 849.61], [383.64, 854.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[370.5, 870.24], [371.76, 871.4], [376.12, 866.67], [379.98, 870.2], [369.74, 881.32], [364.61, 876.63], [370.5, 870.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[383.94, 897.42], [394.05, 886.63], [387.5, 880.55], [377.39, 891.34], [383.94, 897.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[392.19, 905.14], [397.09, 909.7], [402.33, 904.1], [401.79, 903.6], [406.62, 898.45], [402.27, 894.39], [392.19, 905.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[393.34, 903.27], [387.68, 898.09], [391.8, 893.62], [391.3, 893.16], [394.15, 890.06], [394.69, 890.56], [398.56, 886.36], [404.18, 891.49], [393.34, 903.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[408.22, 916.62], [418.55, 905.25], [411.54, 898.92], [401.2, 910.28], [408.22, 916.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[408.93, 917.16], [419.96, 904.74], [426.32, 910.35], [415.3, 922.77], [408.93, 917.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[429.42, 920.76], [426.1, 924.32], [427.63, 925.74], [423.87, 929.78], [416.48, 922.94], [420.11, 919.05], [421.05, 919.92], [424.51, 916.22], [429.42, 920.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[455.56, 938.44], [444.17, 950.81], [438.01, 945.18], [449.4, 932.81], [455.56, 938.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[457.75, 938.29], [463.8, 943.69], [451.46, 957.4], [445.41, 952.0], [457.75, 938.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[454.35, 956.47], [457.82, 952.52], [459.49, 953.98], [462.0, 951.11], [466.35, 954.9], [460.22, 961.9], [458.04, 960.0], [457.19, 960.95], [455.58, 959.55], [456.58, 958.41], [454.35, 956.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[462.23, 963.33], [469.12, 955.77], [475.61, 961.65], [468.73, 969.22], [462.23, 963.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[475.27, 976.47], [474.71, 975.95], [473.92, 976.81], [468.55, 971.86], [469.63, 970.69], [469.05, 970.15], [479.84, 958.54], [484.23, 962.6], [480.13, 967.02], [482.24, 968.97], [475.27, 976.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[467.65, 920.34], [470.83, 923.23], [474.69, 919.0], [471.51, 916.11], [467.65, 920.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[478.44, 940.06], [483.33, 935.03], [478.62, 930.49], [473.74, 935.52], [478.44, 940.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[485.69, 936.92], [491.23, 930.44], [498.97, 937.01], [493.44, 943.49], [485.69, 936.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[498.13, 938.72], [505.15, 944.97], [500.98, 949.61], [493.97, 943.37], [498.13, 938.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[477.88, 976.92], [479.2, 978.14], [478.58, 978.81], [483.65, 983.47], [492.13, 974.29], [491.56, 973.76], [492.59, 972.64], [487.79, 968.23], [487.42, 968.64], [486.4, 967.71], [477.88, 976.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[489.9, 988.97], [493.26, 985.29], [494.26, 986.2], [498.22, 981.86], [491.42, 975.69], [484.09, 983.7], [489.9, 988.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[496.81, 997.9], [498.15, 996.39], [498.58, 996.78], [501.09, 993.98], [501.43, 994.28], [509.32, 985.47], [502.54, 979.43], [492.23, 990.93], [492.88, 991.51], [491.44, 993.12], [496.81, 997.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[515.06, 973.83], [513.32, 972.26], [510.3, 975.61], [504.11, 970.06], [507.17, 966.66], [506.7, 966.23], [508.86, 963.85], [510.59, 965.41], [512.14, 963.7], [518.81, 969.68], [515.06, 973.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[274.23, 700.26], [279.33, 694.67], [266.88, 683.38], [261.77, 688.97], [263.7, 690.71], [274.23, 700.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[294.73, 772.08], [289.65, 767.49], [293.45, 763.34], [298.52, 767.92], [294.73, 772.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[819.61, 887.6], [820.76, 887.19], [828.87, 878.43], [830.01, 879.38], [832.06, 877.29], [746.16, 800.97], [744.1, 799.22], [742.89, 797.44], [742.67, 795.51], [742.47, 793.03], [741.09, 769.46], [742.54, 765.51], [760.24, 746.16], [763.92, 745.79], [786.74, 744.8], [788.32, 744.93], [787.96, 740.03], [786.45, 740.04], [786.34, 735.78], [756.91, 737.52], [734.05, 763.52], [735.46, 793.41], [733.37, 793.41], [733.75, 809.68], [819.61, 887.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1665}}, {"shape": {"outer": [[873.59, 803.3], [875.81, 800.87], [872.54, 797.88], [870.31, 800.32], [873.59, 803.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[880.75, 810.62], [883.39, 807.84], [878.27, 803.01], [875.63, 805.8], [880.75, 810.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[994.43, 746.56], [1007.43, 732.32], [991.56, 717.92], [992.11, 717.32], [987.01, 712.7], [986.43, 713.33], [970.44, 698.81], [957.45, 713.01], [994.43, 746.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.774, "pop": 387, "jobs": 0}}, {"shape": {"outer": [[469.88, 785.22], [471.27, 783.7], [472.31, 784.66], [474.12, 782.7], [473.15, 781.8], [474.75, 780.04], [465.14, 771.26], [460.33, 776.5], [469.88, 785.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[481.83, 754.1], [489.1, 760.98], [494.54, 755.26], [485.8, 747.0], [482.21, 750.78], [483.68, 752.17], [481.83, 754.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[498.58, 762.04], [503.35, 766.45], [499.14, 770.96], [494.38, 766.55], [498.58, 762.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[492.21, 763.97], [494.83, 761.17], [497.1, 763.28], [494.48, 766.07], [492.21, 763.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[475.93, 796.93], [471.16, 792.43], [474.1, 789.33], [478.87, 793.82], [475.93, 796.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[477.71, 784.92], [480.68, 781.61], [485.52, 785.94], [482.56, 789.24], [477.71, 784.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[519.14, 782.86], [520.64, 781.27], [514.89, 775.91], [504.22, 787.28], [509.55, 792.24], [511.3, 790.38], [512.47, 791.47], [519.88, 783.56], [519.14, 782.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[514.88, 792.74], [521.45, 798.64], [528.51, 790.83], [521.94, 784.94], [514.88, 792.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[473.27, 837.27], [467.73, 832.0], [470.89, 828.7], [470.33, 828.17], [478.24, 819.91], [484.34, 825.71], [473.27, 837.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[490.11, 856.82], [495.09, 851.37], [494.93, 849.47], [496.35, 847.91], [496.8, 848.32], [500.06, 844.75], [498.94, 843.74], [500.67, 841.85], [493.04, 834.93], [491.46, 836.67], [480.78, 848.37], [490.11, 856.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[496.91, 864.4], [491.08, 859.25], [498.35, 851.09], [498.8, 851.48], [506.38, 842.99], [511.39, 847.42], [503.87, 855.86], [504.22, 856.18], [496.91, 864.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[496.97, 864.77], [502.49, 869.76], [513.36, 857.83], [512.26, 856.84], [513.07, 855.94], [511.53, 854.54], [514.43, 851.35], [511.81, 848.98], [497.73, 864.44], [497.47, 864.22], [496.97, 864.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[511.04, 878.06], [503.56, 871.2], [517.35, 856.25], [524.84, 863.11], [511.04, 878.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[520.91, 882.3], [521.82, 881.31], [522.2, 881.65], [531.15, 871.91], [524.86, 866.18], [522.2, 869.08], [521.79, 868.71], [518.05, 872.78], [518.52, 873.21], [515.06, 876.99], [520.91, 882.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[527.43, 889.08], [528.78, 887.65], [529.21, 888.06], [535.69, 881.15], [535.03, 880.53], [537.94, 877.44], [534.3, 874.04], [531.86, 876.62], [530.94, 875.76], [530.26, 876.49], [529.49, 875.78], [526.42, 879.04], [527.19, 879.77], [523.82, 883.36], [524.16, 883.68], [522.98, 884.93], [527.43, 889.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[530.48, 891.65], [535.44, 896.17], [545.06, 885.66], [544.45, 885.11], [545.49, 883.96], [542.07, 880.85], [538.49, 884.76], [537.56, 883.92], [530.48, 891.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[539.93, 903.65], [550.3, 892.27], [544.54, 887.06], [534.17, 898.43], [539.93, 903.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[547.7, 907.38], [548.71, 906.24], [549.02, 906.52], [551.8, 903.41], [552.69, 904.21], [554.71, 901.94], [555.2, 902.37], [557.79, 899.46], [557.09, 898.84], [557.77, 898.07], [553.23, 894.04], [550.94, 896.61], [550.08, 896.13], [544.47, 902.44], [544.72, 902.67], [543.69, 903.83], [547.7, 907.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[549.06, 912.2], [563.01, 924.63], [563.92, 924.92], [564.72, 924.76], [574.77, 913.91], [563.83, 903.86], [560.0, 900.39], [559.81, 900.22], [549.06, 912.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[563.83, 903.86], [571.56, 895.25], [567.7, 891.81], [560.0, 900.39], [563.83, 903.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[571.32, 894.32], [573.58, 891.76], [569.95, 888.59], [567.69, 891.16], [571.32, 894.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[575.02, 893.7], [573.96, 892.77], [576.46, 889.94], [577.76, 891.09], [580.76, 887.7], [589.39, 895.3], [583.63, 901.81], [574.83, 894.07], [575.02, 893.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[580.19, 885.52], [583.45, 881.74], [585.11, 883.15], [587.57, 880.29], [594.95, 886.57], [589.22, 893.24], [580.19, 885.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[588.84, 878.82], [594.6, 872.32], [604.27, 880.83], [598.51, 887.33], [588.84, 878.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[596.39, 869.84], [597.91, 868.09], [593.91, 864.64], [599.26, 858.45], [606.88, 865.0], [608.58, 863.04], [613.05, 866.89], [607.22, 873.61], [608.58, 874.78], [606.36, 877.36], [604.92, 876.12], [604.39, 876.72], [596.39, 869.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[600.17, 854.88], [596.06, 851.24], [596.95, 850.26], [595.04, 848.57], [594.27, 849.43], [593.82, 849.04], [585.36, 858.53], [591.81, 864.25], [600.17, 854.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[583.39, 857.82], [593.82, 846.37], [587.21, 840.39], [576.78, 851.84], [583.39, 857.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[578.28, 834.16], [577.26, 833.23], [578.65, 831.72], [573.38, 826.93], [571.94, 828.52], [571.29, 827.92], [564.39, 835.45], [567.05, 837.87], [566.35, 838.63], [568.94, 840.98], [569.66, 840.2], [571.36, 841.74], [578.28, 834.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[576.1, 851.38], [586.99, 839.43], [581.63, 834.58], [580.08, 836.28], [579.37, 835.64], [571.32, 844.47], [573.2, 846.16], [571.91, 847.59], [576.1, 851.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[555.13, 831.92], [561.2, 837.36], [571.55, 825.88], [567.13, 821.92], [566.36, 822.77], [564.72, 821.3], [555.13, 831.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[534.29, 810.91], [538.98, 815.35], [547.33, 806.6], [546.9, 806.2], [548.0, 805.05], [543.84, 801.1], [542.61, 802.38], [542.28, 802.07], [539.67, 804.82], [539.02, 804.21], [535.88, 807.5], [536.75, 808.33], [534.29, 810.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[530.75, 809.38], [531.93, 808.1], [532.77, 808.86], [539.08, 801.98], [538.27, 801.25], [540.77, 798.52], [536.03, 794.21], [527.14, 803.89], [528.96, 805.54], [527.85, 806.74], [530.75, 809.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[492.9, 806.24], [497.8, 810.6], [507.32, 800.01], [502.42, 795.64], [492.9, 806.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[503.2, 805.18], [508.83, 810.24], [504.03, 815.54], [498.41, 810.48], [503.2, 805.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[512.56, 814.09], [519.33, 820.39], [515.02, 825.02], [508.23, 818.72], [512.56, 814.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[558.7, 857.7], [563.44, 861.91], [559.47, 866.35], [554.73, 862.15], [558.7, 857.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[557.78, 855.71], [554.59, 852.69], [550.0, 857.5], [553.2, 860.52], [557.78, 855.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[567.53, 864.59], [572.68, 869.45], [568.37, 873.98], [563.22, 869.1], [567.53, 864.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[582.93, 874.42], [587.61, 868.94], [581.6, 863.83], [576.92, 869.3], [582.93, 874.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[580.86, 873.29], [575.84, 868.88], [570.21, 875.26], [575.24, 879.66], [580.86, 873.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-3153.59, -1094.45], [-3152.51, -1095.74], [-3153.84, -1096.84], [-3150.36, -1101.0], [-3149.06, -1099.91], [-3147.62, -1101.64], [-3139.79, -1095.13], [-3142.2, -1092.25], [-3140.79, -1091.07], [-3143.9, -1087.37], [-3145.57, -1088.76], [-3146.06, -1088.18], [-3153.59, -1094.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-3164.56, -1088.84], [-3161.36, -1092.69], [-3158.69, -1090.48], [-3156.75, -1092.81], [-3146.69, -1084.5], [-3151.83, -1078.32], [-3164.56, -1088.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[440.76, 1031.75], [448.16, 1023.71], [459.98, 1034.5], [452.58, 1042.55], [440.76, 1031.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[472.14, 1013.06], [472.4, 1013.31], [474.17, 1011.39], [478.09, 1014.96], [476.55, 1016.63], [477.22, 1017.24], [477.34, 1018.87], [476.3, 1019.93], [475.63, 1019.95], [475.42, 1020.18], [475.65, 1020.39], [474.85, 1021.26], [475.25, 1021.63], [471.81, 1025.38], [471.13, 1024.77], [468.58, 1027.56], [468.12, 1027.15], [467.54, 1027.79], [463.12, 1023.77], [463.82, 1023.02], [463.38, 1022.62], [472.14, 1013.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[464.71, 1020.63], [472.15, 1012.43], [471.64, 1011.96], [473.19, 1010.26], [467.19, 1004.85], [465.65, 1006.55], [465.14, 1006.1], [457.61, 1014.39], [459.52, 1016.12], [459.03, 1016.65], [463.4, 1020.6], [463.97, 1019.97], [464.71, 1020.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[455.93, 1014.74], [465.08, 1004.99], [458.1, 998.48], [448.95, 1008.24], [455.93, 1014.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[446.01, 1006.32], [449.7, 1002.16], [451.43, 1003.69], [457.34, 997.04], [451.0, 991.44], [449.0, 993.67], [448.7, 993.42], [444.67, 997.94], [445.5, 998.68], [442.61, 1001.91], [442.3, 1001.64], [441.61, 1002.43], [446.01, 1006.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[434.77, 1003.97], [448.81, 988.57], [440.26, 980.84], [426.22, 996.23], [434.77, 1003.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[427.99, 986.0], [436.03, 977.18], [428.86, 970.68], [420.81, 979.5], [427.99, 986.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[394.74, 1008.83], [400.88, 1002.45], [387.5, 989.63], [381.35, 995.99], [394.74, 1008.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[404.84, 1017.33], [411.89, 1009.44], [421.07, 1017.57], [414.01, 1025.48], [404.84, 1017.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[401.23, 1030.51], [408.35, 1022.83], [402.73, 1017.64], [395.6, 1025.32], [401.23, 1030.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[388.15, 1033.81], [395.13, 1026.23], [406.01, 1036.18], [399.04, 1043.76], [388.15, 1033.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[448.32, 1016.75], [451.15, 1013.64], [446.22, 1009.17], [443.39, 1012.27], [448.32, 1016.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[431.25, 1023.61], [441.93, 1011.87], [436.69, 1007.15], [426.02, 1018.89], [431.25, 1023.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[586.11, 946.02], [578.95, 939.76], [592.58, 924.28], [599.73, 930.53], [586.11, 946.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[594.02, 940.14], [596.11, 937.79], [595.68, 937.4], [597.37, 935.5], [597.03, 935.19], [600.71, 931.02], [601.06, 931.32], [602.74, 929.41], [608.4, 934.33], [599.28, 944.73], [598.73, 944.25], [598.29, 944.74], [596.58, 943.22], [596.99, 942.76], [594.02, 940.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[601.55, 953.97], [602.73, 952.72], [602.97, 952.94], [608.2, 947.39], [608.85, 948.0], [614.25, 942.27], [613.36, 941.43], [613.89, 940.87], [612.04, 939.14], [611.59, 939.62], [610.02, 938.15], [604.82, 943.66], [604.33, 943.2], [598.81, 949.06], [599.05, 949.29], [597.88, 950.53], [601.55, 953.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[619.42, 938.75], [622.86, 935.05], [620.69, 933.05], [621.5, 932.17], [618.57, 929.46], [614.32, 934.05], [619.42, 938.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[612.87, 947.57], [620.21, 954.33], [630.28, 943.49], [622.92, 936.73], [612.87, 947.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[616.74, 965.31], [619.01, 967.45], [620.08, 966.32], [620.33, 966.55], [629.45, 956.92], [623.48, 951.31], [617.27, 957.85], [618.04, 958.56], [614.96, 961.81], [617.65, 964.34], [616.74, 965.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[620.79, 969.85], [624.17, 972.95], [624.41, 972.7], [627.63, 975.64], [633.3, 969.5], [630.0, 966.48], [630.66, 965.76], [627.36, 962.74], [620.79, 969.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[628.19, 976.44], [629.45, 975.07], [628.95, 974.61], [635.99, 966.99], [642.2, 972.68], [635.23, 980.23], [634.75, 979.78], [633.42, 981.23], [628.19, 976.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[640.44, 987.44], [644.73, 982.85], [645.05, 983.15], [648.67, 979.28], [644.21, 975.14], [641.05, 978.5], [639.32, 976.9], [634.57, 981.98], [640.44, 987.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[644.49, 990.03], [649.15, 994.2], [650.02, 993.23], [650.79, 993.92], [653.42, 991.0], [653.78, 991.34], [657.44, 987.29], [657.15, 987.02], [661.82, 981.87], [655.77, 976.43], [651.03, 981.67], [650.63, 981.3], [647.25, 985.04], [647.67, 985.42], [644.82, 988.58], [645.36, 989.06], [644.49, 990.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[653.19, 995.67], [658.99, 1001.0], [666.22, 993.2], [665.56, 992.59], [668.52, 989.4], [667.58, 988.52], [668.2, 987.85], [667.39, 987.09], [666.71, 987.84], [664.22, 985.54], [662.55, 987.34], [661.66, 986.52], [653.19, 995.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[675.95, 995.07], [668.91, 1003.22], [668.31, 1002.71], [665.11, 1006.41], [664.43, 1005.84], [663.53, 1006.89], [659.61, 1003.53], [660.55, 1002.44], [659.93, 1001.91], [662.76, 998.62], [662.26, 998.19], [665.72, 994.19], [668.1, 996.23], [672.01, 991.7], [675.95, 995.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[675.05, 1001.44], [675.58, 1001.9], [679.6, 997.3], [683.32, 1000.53], [679.1, 1005.36], [680.64, 1006.69], [674.18, 1014.1], [668.38, 1009.07], [675.05, 1001.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[682.06, 1007.54], [683.38, 1006.11], [687.05, 1009.47], [685.73, 1010.9], [687.89, 1012.88], [679.03, 1022.55], [672.76, 1016.85], [681.64, 1007.15], [682.06, 1007.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[681.42, 1024.69], [682.4, 1025.56], [682.36, 1026.25], [683.66, 1027.42], [684.39, 1027.26], [684.91, 1027.72], [684.5, 1028.19], [686.68, 1030.14], [687.07, 1029.69], [687.54, 1030.1], [695.83, 1020.91], [695.01, 1020.18], [696.5, 1018.51], [693.1, 1015.48], [692.83, 1015.77], [691.89, 1014.93], [692.07, 1014.74], [690.44, 1013.27], [687.51, 1016.52], [688.21, 1017.15], [681.42, 1024.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[687.8, 1030.67], [688.16, 1031.01], [686.73, 1032.55], [691.64, 1037.06], [692.99, 1035.6], [693.51, 1036.07], [696.36, 1033.0], [697.13, 1033.71], [701.34, 1029.17], [700.96, 1028.81], [704.21, 1025.32], [703.61, 1024.76], [704.91, 1023.37], [701.74, 1020.43], [700.38, 1021.89], [700.15, 1021.69], [700.17, 1021.37], [697.71, 1019.11], [690.14, 1027.34], [690.54, 1027.7], [687.8, 1030.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[693.31, 1039.63], [700.19, 1045.81], [712.63, 1032.62], [705.58, 1026.41], [693.31, 1039.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[702.97, 1043.52], [707.26, 1047.45], [709.21, 1045.33], [710.24, 1046.28], [716.13, 1039.9], [710.81, 1035.02], [702.97, 1043.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[709.64, 1051.65], [719.66, 1040.71], [724.88, 1045.46], [722.39, 1048.18], [723.44, 1049.13], [717.65, 1055.45], [714.14, 1055.75], [709.64, 1051.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[733.95, 1034.56], [738.65, 1029.47], [729.63, 1021.19], [724.92, 1026.28], [733.95, 1034.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[739.95, 1027.89], [745.0, 1022.23], [738.62, 1016.59], [738.27, 1016.97], [735.82, 1014.8], [731.48, 1019.66], [733.85, 1021.75], [733.48, 1022.16], [739.95, 1027.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[738.75, 1015.08], [739.01, 1014.72], [737.69, 1013.52], [740.79, 1010.21], [742.1, 1011.41], [744.42, 1008.83], [752.65, 1016.44], [747.29, 1022.55], [738.75, 1015.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[745.56, 1007.64], [745.85, 1007.33], [744.32, 1005.97], [747.56, 1002.41], [749.05, 1003.75], [751.12, 1001.47], [757.74, 1007.43], [757.54, 1007.66], [759.24, 1009.2], [754.12, 1014.85], [752.43, 1013.33], [752.17, 1013.61], [745.56, 1007.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[748.26, 995.61], [749.12, 994.66], [748.74, 994.32], [751.28, 991.5], [751.65, 991.83], [754.17, 989.03], [767.73, 1001.19], [761.8, 1007.76], [748.26, 995.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[739.27, 1000.79], [740.31, 999.66], [741.17, 1000.44], [748.84, 992.07], [747.39, 990.74], [748.68, 989.34], [746.02, 986.91], [744.85, 988.18], [743.53, 986.97], [734.7, 996.61], [739.27, 1000.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[729.42, 993.64], [733.58, 989.01], [733.85, 989.26], [738.89, 983.66], [738.31, 983.14], [739.61, 981.69], [736.04, 978.5], [735.0, 979.66], [734.09, 978.84], [728.36, 985.2], [728.94, 985.71], [725.2, 989.87], [729.42, 993.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[723.17, 987.14], [732.21, 977.36], [727.24, 972.78], [718.19, 982.57], [723.17, 987.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[716.0, 982.74], [726.23, 972.01], [720.96, 967.02], [713.68, 974.66], [714.9, 975.81], [711.96, 978.91], [716.0, 982.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[708.92, 973.98], [715.3, 966.99], [713.48, 965.34], [715.9, 962.69], [711.79, 958.95], [705.22, 966.14], [705.63, 966.53], [704.54, 967.74], [706.72, 969.72], [705.59, 970.96], [708.92, 973.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[703.21, 967.65], [710.47, 959.8], [708.82, 958.29], [711.0, 955.93], [706.64, 951.92], [705.5, 953.15], [705.3, 952.97], [697.0, 961.95], [703.21, 967.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[695.12, 960.87], [698.43, 957.14], [697.67, 956.47], [704.17, 949.13], [699.73, 945.22], [688.28, 958.15], [691.26, 960.77], [692.9, 958.92], [695.12, 960.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[684.83, 954.41], [685.74, 953.41], [686.66, 954.23], [690.6, 949.83], [689.41, 948.76], [695.75, 941.7], [690.88, 937.36], [683.8, 945.24], [684.06, 945.48], [680.83, 949.07], [681.09, 949.31], [680.21, 950.3], [684.83, 954.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[684.38, 933.62], [676.73, 926.69], [671.09, 932.86], [670.38, 932.23], [669.47, 933.22], [670.24, 933.92], [661.77, 943.21], [667.1, 948.04], [667.77, 947.29], [670.04, 949.35], [684.38, 933.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[663.43, 934.91], [673.67, 923.6], [661.29, 912.47], [651.04, 923.78], [663.43, 934.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[652.2, 903.25], [641.7, 914.73], [640.97, 914.06], [640.29, 914.81], [638.41, 913.1], [639.03, 912.43], [634.81, 908.6], [645.31, 897.13], [646.08, 897.83], [647.88, 895.86], [651.32, 898.99], [649.58, 900.88], [652.2, 903.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[629.3, 903.59], [634.54, 897.67], [631.63, 895.11], [634.2, 892.19], [631.21, 889.56], [628.58, 892.53], [627.4, 891.49], [627.16, 891.76], [625.45, 890.27], [622.19, 893.97], [623.79, 895.38], [622.11, 897.28], [629.3, 903.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[620.88, 921.65], [621.14, 921.36], [622.14, 922.25], [626.84, 916.95], [625.73, 915.97], [625.96, 915.7], [617.89, 908.56], [617.24, 908.94], [612.19, 904.5], [607.46, 909.85], [620.88, 921.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[613.5, 928.61], [619.92, 921.56], [608.58, 911.33], [608.32, 911.6], [607.14, 910.53], [601.69, 916.52], [603.02, 917.72], [602.82, 917.96], [605.83, 920.68], [605.34, 921.23], [613.5, 928.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[622.51, 922.95], [628.37, 916.29], [633.24, 920.55], [627.38, 927.21], [622.51, 922.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[674.19, 968.67], [679.12, 963.51], [673.76, 958.42], [668.83, 963.58], [674.19, 968.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[670.47, 979.06], [675.04, 983.3], [680.84, 977.1], [676.27, 972.85], [670.47, 979.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[683.22, 989.31], [687.99, 983.93], [681.67, 978.37], [676.89, 983.74], [683.22, 989.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[685.07, 988.86], [689.66, 992.91], [693.85, 988.18], [689.26, 984.14], [685.07, 988.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[692.14, 975.69], [695.77, 976.27], [696.6, 970.98], [692.97, 970.42], [692.14, 975.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[693.51, 986.09], [697.54, 981.61], [700.77, 984.48], [696.75, 988.97], [693.51, 986.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[705.92, 997.17], [712.05, 1002.59], [717.84, 996.1], [711.71, 990.69], [705.92, 997.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[650.74, 863.59], [655.49, 867.96], [655.79, 867.63], [658.49, 870.12], [659.69, 868.82], [660.13, 869.23], [665.47, 863.48], [661.55, 859.86], [660.99, 860.47], [657.03, 856.81], [650.74, 863.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[667.48, 862.36], [670.47, 858.96], [675.31, 863.15], [672.33, 866.57], [667.48, 862.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[659.94, 852.51], [668.61, 860.47], [674.1, 854.54], [669.93, 850.72], [669.12, 851.6], [665.8, 848.55], [664.01, 848.11], [659.94, 852.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[684.97, 847.16], [682.39, 844.99], [682.7, 844.63], [677.04, 839.85], [674.83, 842.46], [672.54, 840.54], [669.03, 844.66], [676.81, 851.22], [678.69, 849.01], [680.96, 850.92], [682.12, 849.57], [682.59, 849.97], [684.97, 847.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[689.09, 846.99], [693.92, 841.53], [688.35, 836.64], [683.53, 842.09], [689.09, 846.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[692.9, 835.87], [695.9, 832.47], [695.07, 831.75], [697.46, 829.04], [693.19, 825.29], [692.54, 826.02], [688.36, 822.37], [685.39, 825.75], [686.15, 826.42], [684.67, 828.12], [687.85, 830.9], [687.58, 831.22], [692.9, 835.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[699.11, 828.51], [710.11, 816.8], [707.77, 814.62], [708.11, 814.25], [705.77, 812.08], [705.3, 812.58], [702.34, 809.82], [694.11, 818.57], [694.76, 819.18], [692.12, 822.0], [699.11, 828.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[715.32, 830.96], [713.97, 829.76], [716.67, 826.73], [712.7, 823.22], [704.93, 831.95], [706.77, 833.58], [706.29, 834.12], [707.26, 834.99], [706.49, 835.84], [709.13, 838.18], [710.56, 836.56], [710.43, 836.45], [715.32, 830.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[733.5, 841.49], [727.36, 848.1], [721.53, 842.73], [727.49, 836.31], [727.82, 836.61], [729.42, 834.9], [734.61, 839.7], [733.21, 841.22], [733.5, 841.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[743.07, 846.79], [737.02, 841.38], [729.12, 850.15], [735.16, 855.57], [743.07, 846.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[740.61, 863.98], [748.29, 855.33], [742.52, 850.26], [734.85, 858.9], [740.61, 863.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[750.93, 857.32], [751.33, 857.68], [752.82, 856.05], [757.3, 860.08], [755.78, 861.75], [756.16, 862.09], [750.12, 868.75], [749.41, 868.11], [747.7, 870.01], [743.9, 866.6], [745.71, 864.61], [744.96, 863.93], [750.93, 857.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[765.61, 867.9], [759.32, 862.06], [748.91, 873.21], [752.65, 876.68], [753.41, 875.87], [755.96, 878.23], [765.61, 867.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[755.27, 882.34], [758.97, 878.33], [759.44, 878.78], [766.31, 871.34], [766.96, 871.92], [768.25, 870.51], [772.25, 874.18], [770.95, 875.58], [771.53, 876.11], [763.95, 884.33], [762.61, 883.1], [762.32, 883.42], [761.31, 882.49], [758.61, 885.41], [755.27, 882.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[765.54, 887.0], [768.42, 889.76], [766.02, 892.25], [772.27, 898.23], [783.45, 886.66], [777.06, 880.52], [776.71, 880.88], [773.98, 878.25], [765.54, 887.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[782.35, 897.87], [785.14, 900.37], [784.25, 901.35], [786.29, 903.19], [787.1, 902.29], [788.16, 903.25], [794.29, 896.5], [793.74, 895.99], [795.11, 894.47], [790.27, 890.12], [788.93, 891.6], [788.44, 891.16], [782.35, 897.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[793.39, 911.07], [788.0, 906.21], [789.51, 904.54], [789.28, 904.34], [795.3, 897.72], [801.2, 903.05], [795.22, 909.63], [794.93, 909.37], [793.39, 911.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[799.46, 916.03], [801.0, 914.35], [802.4, 915.63], [808.19, 909.27], [807.72, 908.85], [808.97, 907.48], [806.51, 905.25], [805.17, 906.72], [802.79, 904.57], [797.17, 910.73], [797.73, 911.24], [796.11, 913.02], [799.46, 916.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[828.45, 930.57], [828.94, 930.05], [830.27, 931.29], [834.73, 926.52], [833.32, 925.2], [833.71, 924.79], [826.9, 918.48], [821.57, 924.19], [828.45, 930.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[822.02, 937.65], [822.32, 937.33], [823.6, 938.51], [828.42, 933.35], [827.1, 932.13], [827.34, 931.87], [820.48, 925.53], [815.13, 931.27], [822.02, 937.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[812.9, 932.48], [815.79, 929.24], [811.14, 925.13], [808.25, 928.36], [812.9, 932.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[815.56, 944.92], [815.9, 944.54], [817.24, 945.76], [821.36, 941.28], [819.98, 940.03], [820.26, 939.72], [812.76, 932.86], [811.02, 934.77], [809.88, 933.73], [807.83, 935.97], [808.84, 936.9], [807.9, 937.91], [815.56, 944.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[805.48, 939.85], [808.21, 936.94], [803.63, 932.69], [800.91, 935.6], [805.48, 939.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[808.33, 952.55], [813.57, 946.92], [806.76, 940.63], [805.45, 942.06], [804.38, 941.08], [800.47, 945.29], [808.33, 952.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[798.29, 946.69], [801.54, 943.13], [797.32, 939.3], [794.06, 942.86], [798.29, 946.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[801.59, 959.83], [801.93, 959.45], [803.39, 960.76], [807.71, 955.98], [806.4, 954.8], [806.69, 954.5], [799.77, 948.28], [799.3, 948.79], [797.31, 947.0], [793.31, 951.44], [795.44, 953.35], [794.96, 953.88], [801.59, 959.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[799.38, 962.57], [801.52, 964.5], [797.55, 968.89], [795.45, 967.02], [795.15, 967.35], [787.55, 960.53], [787.73, 960.32], [786.56, 959.27], [789.31, 956.22], [790.31, 957.13], [791.95, 955.31], [799.67, 962.25], [799.38, 962.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[784.39, 961.23], [786.92, 958.6], [783.04, 954.92], [780.53, 957.55], [784.39, 961.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[787.37, 975.55], [787.68, 975.22], [789.15, 976.59], [793.72, 971.74], [792.25, 970.37], [792.59, 970.01], [785.76, 963.62], [784.41, 965.05], [783.71, 964.39], [780.09, 968.23], [780.78, 968.87], [780.52, 969.14], [787.37, 975.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[780.6, 983.67], [781.18, 983.07], [782.51, 984.32], [786.88, 979.75], [785.4, 978.35], [785.83, 977.92], [779.1, 971.53], [778.83, 971.8], [777.74, 970.77], [774.13, 974.54], [775.01, 975.38], [773.51, 976.93], [780.6, 983.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[773.57, 974.46], [777.4, 970.33], [773.81, 967.02], [769.98, 971.16], [773.57, 974.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[755.22, 957.69], [760.37, 962.29], [761.77, 960.74], [762.31, 961.21], [768.22, 954.63], [762.06, 949.12], [756.03, 955.83], [756.5, 956.25], [755.22, 957.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[749.24, 952.38], [753.56, 956.25], [761.69, 947.23], [759.69, 945.44], [760.96, 944.03], [757.89, 941.28], [756.6, 942.71], [755.64, 941.85], [748.61, 949.64], [750.32, 951.18], [749.24, 952.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[746.01, 949.51], [754.13, 940.96], [752.68, 939.58], [753.54, 938.67], [750.96, 936.25], [750.1, 937.16], [748.09, 935.27], [739.97, 943.83], [746.01, 949.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[739.12, 939.98], [748.53, 929.58], [736.76, 919.01], [727.35, 929.42], [739.12, 939.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[723.62, 929.3], [731.33, 920.69], [724.89, 914.98], [717.18, 923.59], [723.62, 929.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[716.06, 922.74], [723.96, 914.14], [723.3, 913.53], [725.43, 911.22], [722.3, 908.37], [719.51, 911.41], [718.05, 910.08], [711.39, 917.32], [714.17, 919.85], [713.59, 920.48], [716.06, 922.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[702.09, 910.13], [709.94, 901.47], [710.4, 901.88], [711.95, 900.17], [715.32, 903.21], [713.67, 905.03], [716.72, 907.76], [708.96, 916.32], [702.09, 910.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[701.15, 909.05], [710.67, 898.65], [709.92, 897.97], [711.92, 895.79], [709.27, 893.39], [707.42, 895.41], [704.51, 892.76], [694.84, 903.3], [701.15, 909.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[693.64, 902.36], [700.81, 894.52], [699.58, 893.4], [700.16, 892.76], [694.83, 887.93], [687.09, 896.42], [693.64, 902.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[685.42, 894.18], [686.75, 892.72], [687.21, 893.13], [697.0, 882.38], [692.83, 878.6], [691.84, 879.69], [689.74, 877.79], [680.85, 887.56], [681.37, 888.03], [680.13, 889.39], [685.42, 894.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[675.94, 882.16], [683.46, 873.8], [682.08, 872.57], [685.22, 869.08], [678.88, 863.4], [668.2, 875.25], [675.94, 882.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[714.81, 881.3], [718.06, 884.08], [721.96, 879.56], [718.71, 876.78], [714.81, 881.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[713.55, 881.37], [718.2, 876.18], [715.33, 873.62], [710.69, 878.82], [713.55, 881.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[718.24, 873.04], [723.07, 867.81], [717.86, 863.04], [713.04, 868.28], [718.24, 873.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[721.76, 895.27], [725.25, 898.44], [729.85, 893.41], [726.35, 890.24], [721.76, 895.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[725.68, 898.68], [730.17, 893.75], [733.35, 896.62], [728.87, 901.55], [725.68, 898.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[737.13, 890.59], [741.52, 894.73], [746.21, 889.81], [741.82, 885.66], [737.13, 890.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[742.35, 895.45], [746.33, 890.45], [749.47, 892.93], [745.5, 897.93], [742.35, 895.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[761.19, 926.94], [767.25, 920.32], [763.76, 917.14], [757.7, 923.77], [761.19, 926.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[759.65, 935.98], [762.69, 938.59], [766.51, 934.56], [763.59, 931.75], [759.65, 935.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[772.9, 922.56], [776.7, 918.02], [779.55, 920.38], [775.75, 924.93], [772.9, 922.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[770.82, 921.35], [775.5, 916.39], [772.35, 913.44], [767.68, 918.41], [770.82, 921.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[775.98, 937.64], [780.18, 932.87], [784.95, 937.04], [780.75, 941.82], [775.98, 937.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[781.85, 942.34], [786.69, 937.21], [792.8, 942.93], [787.96, 948.06], [781.85, 942.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[788.77, 924.57], [793.53, 928.76], [797.61, 924.17], [792.84, 919.98], [788.77, 924.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2609.34, -966.92], [-2602.18, -961.05], [-2598.8, -965.15], [-2598.13, -964.59], [-2597.89, -964.88], [-2595.71, -963.09], [-2589.18, -970.99], [-2593.94, -974.89], [-2595.09, -973.48], [-2600.75, -978.13], [-2608.4, -968.86], [-2608.01, -968.54], [-2609.34, -966.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.115, "pop": 0, "jobs": 115}}, {"shape": {"outer": [[-2598.56, -953.96], [-2591.43, -947.93], [-2578.68, -962.88], [-2580.98, -964.83], [-2580.34, -965.59], [-2583.77, -968.49], [-2584.53, -967.6], [-2585.92, -968.77], [-2598.56, -953.96]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2581.09, -941.54], [-2579.26, -943.68], [-2578.77, -943.27], [-2572.54, -950.55], [-2575.28, -952.88], [-2574.38, -953.92], [-2578.44, -957.38], [-2579.25, -956.42], [-2580.16, -957.19], [-2586.59, -949.66], [-2585.96, -949.12], [-2587.68, -947.12], [-2581.09, -941.54]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2518.68, -881.5], [-2500.89, -902.38], [-2495.33, -908.91], [-2526.97, -937.08], [-2546.22, -913.48], [-2546.38, -912.09], [-2549.55, -908.29], [-2518.68, -881.5]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1063, "jobs": 0}}, {"shape": {"outer": [[-2558.05, -923.87], [-2551.36, -931.45], [-2558.27, -937.5], [-2564.89, -930.01], [-2564.14, -929.34], [-2564.96, -928.42], [-2559.56, -923.68], [-2558.81, -924.54], [-2558.05, -923.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2580.98, -935.75], [-2570.61, -926.95], [-2558.9, -940.64], [-2569.29, -949.45], [-2580.98, -935.75]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.137, "pop": 0, "jobs": 137}}, {"shape": {"outer": [[-2614.75, -1018.8], [-2610.0, -1024.24], [-2603.23, -1018.38], [-2607.99, -1012.94], [-2614.75, -1018.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2599.12, -1023.59], [-2590.7, -1033.35], [-2597.79, -1039.43], [-2606.22, -1029.69], [-2599.12, -1023.59]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2590.43, -1030.61], [-2590.07, -1030.31], [-2588.59, -1032.06], [-2583.38, -1027.67], [-2584.71, -1026.1], [-2582.66, -1024.38], [-2585.84, -1020.62], [-2584.71, -1019.67], [-2587.58, -1016.29], [-2588.45, -1017.01], [-2590.07, -1015.09], [-2597.96, -1021.74], [-2590.43, -1030.61]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2596.21, -1007.01], [-2592.39, -1011.65], [-2597.8, -1016.09], [-2601.63, -1011.46], [-2596.21, -1007.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2594.73, -1001.0], [-2589.76, -1006.86], [-2584.38, -1002.33], [-2589.36, -996.47], [-2594.73, -1001.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2587.96, -1008.12], [-2585.23, -1011.42], [-2582.03, -1008.8], [-2580.5, -1010.66], [-2580.21, -1010.42], [-2573.93, -1018.05], [-2576.77, -1020.37], [-2576.02, -1021.28], [-2579.13, -1023.82], [-2579.72, -1023.11], [-2580.21, -1023.5], [-2590.9, -1010.52], [-2587.96, -1008.12]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2587.77, -995.48], [-2583.35, -1000.77], [-2577.79, -996.16], [-2582.2, -990.87], [-2587.77, -995.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2572.81, -999.58], [-2571.59, -1001.02], [-2571.27, -1000.75], [-2564.28, -1008.94], [-2564.91, -1009.47], [-2563.63, -1010.96], [-2570.04, -1016.38], [-2571.3, -1014.9], [-2572.0, -1015.49], [-2578.99, -1007.29], [-2578.72, -1007.06], [-2579.94, -1005.63], [-2572.81, -999.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2570.29, -994.07], [-2568.04, -996.72], [-2569.4, -997.87], [-2567.83, -999.72], [-2568.28, -1000.1], [-2562.6, -1006.81], [-2555.52, -1000.86], [-2556.06, -1000.22], [-2553.81, -998.32], [-2557.31, -994.2], [-2559.55, -996.09], [-2561.24, -994.09], [-2561.65, -994.44], [-2565.42, -989.97], [-2570.29, -994.07]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2571.78, -985.41], [-2567.89, -982.32], [-2563.52, -987.8], [-2567.41, -990.88], [-2571.78, -985.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2551.89, -984.79], [-2543.95, -994.36], [-2550.65, -999.87], [-2558.58, -990.3], [-2551.89, -984.79]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2550.29, -980.34], [-2542.3, -989.95], [-2533.53, -982.72], [-2541.52, -973.11], [-2550.29, -980.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2547.33, -965.13], [-2542.93, -970.29], [-2539.11, -967.07], [-2543.51, -961.9], [-2547.33, -965.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2533.99, -967.97], [-2532.99, -969.08], [-2532.08, -968.27], [-2525.15, -976.02], [-2525.89, -976.67], [-2524.93, -977.76], [-2526.48, -979.13], [-2525.97, -979.7], [-2527.18, -980.77], [-2527.67, -980.22], [-2529.64, -981.97], [-2530.96, -980.48], [-2531.42, -980.89], [-2538.15, -973.36], [-2536.29, -971.7], [-2537.13, -970.77], [-2533.99, -967.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2520.18, -959.76], [-2514.18, -967.13], [-2514.58, -967.45], [-2513.56, -968.69], [-2520.49, -974.3], [-2521.8, -972.69], [-2522.12, -972.93], [-2527.82, -965.95], [-2520.18, -959.76]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2505.61, -959.63], [-2504.5, -960.95], [-2510.5, -965.94], [-2511.71, -964.51], [-2512.26, -964.96], [-2519.48, -956.34], [-2517.66, -954.82], [-2518.27, -954.08], [-2516.19, -952.34], [-2515.59, -953.06], [-2512.34, -950.35], [-2504.99, -959.11], [-2505.61, -959.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2503.18, -957.35], [-2502.59, -956.86], [-2501.36, -958.3], [-2495.39, -953.35], [-2496.6, -951.92], [-2496.01, -951.42], [-2503.07, -942.98], [-2503.81, -943.6], [-2504.96, -942.22], [-2508.11, -944.84], [-2506.96, -946.19], [-2510.24, -948.91], [-2503.18, -957.35]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2509.03, -933.71], [-2504.78, -938.51], [-2501.35, -935.51], [-2505.6, -930.7], [-2509.03, -933.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2500.23, -935.08], [-2497.15, -938.63], [-2501.68, -942.55], [-2504.76, -938.99], [-2500.23, -935.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2706.17, -1104.26], [-2705.08, -1105.52], [-2703.54, -1104.19], [-2701.62, -1106.4], [-2703.05, -1107.63], [-2701.51, -1109.39], [-2704.88, -1112.3], [-2703.99, -1113.3], [-2711.61, -1119.85], [-2712.2, -1119.18], [-2713.73, -1120.5], [-2718.6, -1114.89], [-2713.59, -1110.58], [-2713.92, -1110.2], [-2709.78, -1106.63], [-2709.41, -1107.06], [-2706.17, -1104.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2703.06, -1131.09], [-2702.24, -1132.04], [-2698.57, -1128.87], [-2697.94, -1129.62], [-2693.04, -1125.39], [-2699.56, -1117.86], [-2703.49, -1121.24], [-2703.2, -1121.58], [-2703.72, -1122.04], [-2704.01, -1121.69], [-2707.64, -1124.82], [-2707.31, -1125.21], [-2708.76, -1126.46], [-2704.03, -1131.93], [-2703.06, -1131.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2701.94, -1091.35], [-2696.62, -1086.91], [-2692.99, -1091.21], [-2698.31, -1095.66], [-2701.94, -1091.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2678.2, -1112.73], [-2682.38, -1107.94], [-2682.92, -1108.4], [-2684.3, -1106.81], [-2692.92, -1114.28], [-2688.21, -1119.68], [-2686.68, -1118.36], [-2684.02, -1121.41], [-2677.92, -1116.14], [-2679.73, -1114.07], [-2678.2, -1112.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2673.9, -1102.43], [-2670.46, -1099.57], [-2675.42, -1093.65], [-2675.61, -1093.81], [-2677.58, -1091.47], [-2681.81, -1094.98], [-2678.76, -1098.61], [-2683.2, -1102.31], [-2675.97, -1110.94], [-2675.66, -1110.68], [-2674.73, -1111.79], [-2672.79, -1110.18], [-2673.3, -1109.56], [-2670.13, -1106.93], [-2673.9, -1102.43]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2681.85, -1080.43], [-2676.93, -1086.29], [-2683.41, -1091.7], [-2688.34, -1085.83], [-2681.85, -1080.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2674.01, -1067.75], [-2670.02, -1072.46], [-2664.99, -1068.22], [-2668.98, -1063.52], [-2674.01, -1067.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2663.36, -1076.57], [-2653.88, -1087.76], [-2654.32, -1088.12], [-2653.24, -1089.39], [-2659.1, -1094.32], [-2660.3, -1092.9], [-2661.06, -1093.54], [-2667.41, -1086.06], [-2666.37, -1085.18], [-2668.73, -1082.4], [-2666.16, -1080.23], [-2666.8, -1079.46], [-2663.36, -1076.57]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2657.6, -1076.88], [-2650.27, -1085.41], [-2648.95, -1084.28], [-2647.43, -1086.04], [-2640.01, -1079.7], [-2641.47, -1078.01], [-2640.48, -1077.17], [-2647.88, -1068.57], [-2657.6, -1076.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2629.16, -1066.23], [-2630.0, -1066.94], [-2628.15, -1069.1], [-2635.27, -1075.15], [-2636.9, -1073.24], [-2637.53, -1073.78], [-2645.11, -1064.89], [-2640.17, -1060.7], [-2640.93, -1059.8], [-2638.26, -1057.53], [-2637.38, -1058.57], [-2636.4, -1057.74], [-2629.16, -1066.23]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2651.53, -1048.31], [-2647.83, -1052.63], [-2653.11, -1057.14], [-2656.81, -1052.82], [-2651.53, -1048.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2616.66, -1055.77], [-2617.15, -1056.17], [-2615.41, -1058.21], [-2622.81, -1064.45], [-2624.6, -1062.34], [-2625.23, -1062.86], [-2631.61, -1055.34], [-2628.99, -1053.13], [-2629.86, -1052.11], [-2627.66, -1050.26], [-2626.82, -1051.24], [-2623.14, -1048.13], [-2616.66, -1055.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2734.38, -1139.88], [-2724.15, -1151.62], [-2727.29, -1154.35], [-2726.39, -1155.38], [-2728.92, -1157.58], [-2729.8, -1156.56], [-2730.36, -1157.06], [-2740.58, -1145.33], [-2737.56, -1142.72], [-2738.37, -1141.8], [-2735.63, -1139.44], [-2734.88, -1140.31], [-2734.38, -1139.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2753.35, -1154.16], [-2750.41, -1151.67], [-2748.69, -1153.67], [-2747.93, -1153.03], [-2745.33, -1156.07], [-2744.89, -1155.68], [-2742.02, -1159.04], [-2742.29, -1159.27], [-2740.16, -1161.75], [-2740.57, -1162.1], [-2739.65, -1163.17], [-2741.51, -1164.75], [-2741.21, -1165.11], [-2745.05, -1168.37], [-2751.25, -1161.12], [-2750.41, -1160.4], [-2753.02, -1157.35], [-2751.63, -1156.18], [-2753.35, -1154.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2766.82, -1148.15], [-2760.21, -1142.72], [-2754.97, -1149.06], [-2761.58, -1154.48], [-2766.82, -1148.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2775.05, -1154.93], [-2770.19, -1160.73], [-2775.77, -1165.36], [-2780.63, -1159.56], [-2775.05, -1154.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2781.32, -1159.92], [-2777.41, -1164.77], [-2782.16, -1168.59], [-2786.08, -1163.73], [-2781.32, -1159.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2765.87, -1164.25], [-2758.43, -1173.21], [-2757.32, -1172.3], [-2754.16, -1176.11], [-2756.5, -1178.05], [-2755.79, -1178.9], [-2758.05, -1180.76], [-2758.51, -1180.19], [-2761.86, -1182.95], [-2767.99, -1175.56], [-2766.78, -1174.56], [-2769.04, -1171.84], [-2768.12, -1171.07], [-2770.57, -1168.11], [-2765.87, -1164.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2768.18, -1179.65], [-2766.44, -1181.78], [-2767.96, -1183.02], [-2767.0, -1184.19], [-2766.38, -1184.21], [-2765.53, -1185.17], [-2765.69, -1186.85], [-2766.87, -1187.89], [-2767.48, -1187.8], [-2768.99, -1189.02], [-2768.73, -1189.34], [-2773.46, -1193.16], [-2776.24, -1189.76], [-2776.67, -1190.09], [-2780.14, -1185.83], [-2778.9, -1184.84], [-2781.49, -1181.67], [-2776.55, -1177.68], [-2775.02, -1179.56], [-2772.5, -1177.51], [-2771.43, -1178.82], [-2771.21, -1178.64], [-2769.51, -1180.73], [-2768.18, -1179.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2790.41, -1167.8], [-2786.36, -1172.39], [-2791.21, -1176.62], [-2795.25, -1172.03], [-2790.41, -1167.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2795.79, -1172.58], [-2791.8, -1177.19], [-2797.14, -1181.78], [-2801.13, -1177.16], [-2795.79, -1172.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2788.69, -1186.97], [-2777.88, -1199.6], [-2784.17, -1204.95], [-2788.05, -1200.4], [-2788.56, -1200.83], [-2791.82, -1197.01], [-2791.33, -1196.59], [-2795.81, -1191.35], [-2792.64, -1188.65], [-2791.82, -1189.62], [-2788.69, -1186.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2792.6, -1209.77], [-2791.07, -1211.62], [-2795.27, -1215.07], [-2796.53, -1213.55], [-2797.33, -1214.21], [-2801.05, -1209.73], [-2802.17, -1210.66], [-2805.28, -1206.93], [-2803.88, -1205.78], [-2806.33, -1202.83], [-2801.34, -1198.72], [-2799.05, -1201.47], [-2798.4, -1200.94], [-2791.69, -1209.02], [-2792.6, -1209.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2809.53, -1183.84], [-2804.85, -1189.4], [-2815.57, -1198.35], [-2815.87, -1197.99], [-2817.76, -1199.58], [-2821.83, -1194.75], [-2820.02, -1193.23], [-2820.32, -1192.87], [-2809.53, -1183.84]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[739.13, 1078.07], [740.04, 1077.08], [740.25, 1077.27], [750.32, 1066.22], [743.6, 1060.15], [736.53, 1067.91], [737.08, 1068.4], [733.18, 1072.68], [739.13, 1078.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[741.44, 1077.87], [742.66, 1076.49], [744.77, 1075.51], [749.28, 1070.4], [752.22, 1072.97], [752.98, 1072.12], [755.78, 1074.57], [755.03, 1075.42], [755.37, 1075.72], [753.26, 1078.1], [753.98, 1078.74], [752.41, 1080.5], [753.11, 1081.11], [750.2, 1084.4], [748.79, 1083.16], [748.22, 1083.8], [741.44, 1077.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[755.47, 1093.84], [760.45, 1088.56], [761.11, 1089.17], [765.3, 1084.71], [764.76, 1084.21], [765.92, 1082.99], [765.49, 1082.59], [767.83, 1080.09], [766.73, 1079.07], [767.92, 1077.79], [763.36, 1073.55], [758.89, 1078.31], [758.05, 1077.52], [748.67, 1087.51], [755.47, 1093.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[766.28, 1102.87], [767.39, 1101.65], [767.73, 1101.96], [778.0, 1090.67], [777.4, 1090.14], [779.33, 1088.02], [774.11, 1083.3], [772.24, 1085.37], [771.11, 1084.34], [768.44, 1087.26], [769.09, 1087.85], [766.98, 1090.16], [766.41, 1089.64], [763.21, 1093.16], [763.7, 1093.61], [761.22, 1096.33], [761.52, 1096.6], [760.53, 1097.68], [766.28, 1102.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[776.7, 1109.73], [768.95, 1102.64], [778.79, 1091.96], [779.07, 1092.22], [784.91, 1097.75], [782.19, 1100.6], [782.18, 1101.36], [781.47, 1102.13], [782.67, 1103.23], [776.7, 1109.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[777.93, 1111.57], [778.2, 1111.81], [777.39, 1112.69], [782.73, 1117.55], [783.71, 1116.47], [784.04, 1116.77], [786.87, 1113.68], [787.19, 1113.99], [790.82, 1110.03], [790.45, 1109.69], [792.69, 1107.26], [792.11, 1106.73], [793.57, 1105.16], [788.68, 1100.7], [787.4, 1102.09], [786.98, 1101.71], [777.93, 1111.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[793.0, 1128.36], [794.5, 1126.74], [794.8, 1127.01], [805.99, 1114.94], [799.57, 1109.02], [795.21, 1113.71], [794.84, 1113.37], [790.9, 1117.62], [791.24, 1117.94], [788.34, 1121.06], [788.61, 1121.3], [787.11, 1122.92], [793.0, 1128.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[796.64, 1130.94], [798.08, 1129.42], [797.52, 1128.91], [804.26, 1121.74], [806.62, 1123.94], [807.84, 1122.64], [812.08, 1126.6], [804.02, 1135.16], [803.44, 1134.62], [802.12, 1136.04], [796.64, 1130.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[807.14, 1140.22], [808.42, 1138.79], [807.97, 1138.41], [810.72, 1135.33], [810.21, 1134.86], [814.11, 1130.52], [814.76, 1131.1], [816.99, 1128.6], [817.45, 1129.01], [820.8, 1125.28], [825.1, 1129.11], [823.1, 1131.34], [823.37, 1131.58], [813.12, 1143.02], [812.63, 1142.58], [811.37, 1143.98], [807.14, 1140.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[856.8, 1185.63], [858.84, 1183.39], [859.12, 1183.65], [867.74, 1174.21], [864.79, 1171.54], [866.31, 1169.89], [863.01, 1166.89], [861.33, 1168.74], [861.1, 1168.52], [852.2, 1178.29], [852.62, 1178.67], [850.63, 1180.85], [853.58, 1183.52], [853.98, 1183.07], [856.8, 1185.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[863.15, 1186.96], [864.21, 1185.8], [867.8, 1189.04], [875.29, 1180.79], [874.46, 1180.04], [877.37, 1176.82], [871.03, 1171.14], [860.54, 1182.68], [861.27, 1183.28], [860.28, 1184.37], [863.15, 1186.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[871.31, 1159.4], [876.06, 1154.52], [880.87, 1159.17], [876.12, 1164.04], [871.31, 1159.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[890.7, 1162.75], [896.38, 1156.35], [885.38, 1146.64], [880.83, 1151.76], [881.8, 1152.61], [880.66, 1153.89], [890.7, 1162.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[898.08, 1152.97], [898.38, 1152.63], [899.66, 1153.76], [904.01, 1148.87], [902.75, 1147.76], [903.08, 1147.38], [894.9, 1140.18], [889.93, 1145.79], [898.08, 1152.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[906.25, 1143.44], [911.91, 1137.22], [901.27, 1127.62], [895.62, 1133.82], [906.25, 1143.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[870.89, 1127.07], [872.04, 1125.84], [875.13, 1128.72], [887.17, 1115.9], [882.53, 1111.57], [881.42, 1110.54], [880.61, 1109.79], [868.45, 1122.75], [869.29, 1123.53], [868.28, 1124.62], [870.89, 1127.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[868.58, 1118.43], [878.68, 1107.38], [871.16, 1100.57], [861.07, 1111.62], [868.58, 1118.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[855.53, 1112.8], [858.02, 1110.08], [858.68, 1110.7], [867.61, 1100.97], [867.35, 1100.75], [868.91, 1099.04], [862.72, 1093.39], [861.17, 1095.06], [860.87, 1094.81], [851.78, 1104.71], [853.33, 1106.12], [851.0, 1108.66], [855.53, 1112.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[845.02, 1094.93], [851.94, 1086.99], [852.19, 1087.21], [853.65, 1085.53], [859.56, 1090.64], [857.82, 1092.63], [858.05, 1092.83], [851.36, 1100.49], [851.06, 1100.24], [850.16, 1101.28], [844.35, 1096.24], [845.29, 1095.16], [845.02, 1094.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[847.83, 1085.77], [847.35, 1085.34], [848.63, 1083.93], [843.73, 1079.51], [842.4, 1080.98], [842.02, 1080.65], [835.64, 1087.66], [835.09, 1087.17], [833.59, 1088.81], [834.2, 1089.36], [833.75, 1089.86], [836.23, 1092.09], [835.49, 1092.9], [837.62, 1094.82], [838.38, 1094.0], [839.46, 1094.98], [847.83, 1085.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[830.84, 1083.75], [838.73, 1075.14], [830.72, 1067.86], [822.84, 1076.48], [830.84, 1083.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[822.44, 1075.4], [827.01, 1070.53], [823.75, 1067.49], [819.18, 1072.37], [822.44, 1075.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[813.81, 1067.81], [816.98, 1064.37], [817.42, 1064.77], [818.56, 1063.53], [818.13, 1063.12], [821.15, 1059.85], [814.9, 1054.11], [807.55, 1062.05], [813.81, 1067.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[814.98, 1074.58], [809.35, 1069.82], [803.85, 1076.31], [809.48, 1081.06], [814.98, 1074.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[812.65, 1049.4], [804.77, 1042.31], [797.33, 1050.51], [805.21, 1057.6], [812.65, 1049.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[788.92, 1042.36], [797.67, 1033.0], [790.02, 1025.91], [781.28, 1035.27], [788.92, 1042.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[779.81, 1033.43], [788.34, 1024.23], [781.4, 1017.85], [772.88, 1027.05], [779.81, 1033.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[759.14, 1044.43], [765.44, 1037.51], [778.09, 1048.97], [771.79, 1055.88], [759.14, 1044.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[747.99, 1052.69], [751.87, 1048.32], [752.84, 1049.17], [755.17, 1046.54], [762.53, 1053.01], [756.32, 1060.01], [747.99, 1052.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[809.37, 1103.84], [813.89, 1098.89], [809.05, 1094.5], [804.53, 1099.45], [809.37, 1103.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[824.34, 1105.64], [826.81, 1102.88], [829.25, 1105.04], [826.77, 1107.81], [824.34, 1105.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[828.39, 1109.89], [834.2, 1103.39], [841.7, 1110.04], [835.88, 1116.54], [828.39, 1109.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[821.1, 1116.85], [826.04, 1111.33], [834.68, 1119.0], [829.72, 1124.52], [821.1, 1116.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[850.68, 1129.68], [855.13, 1124.53], [850.47, 1120.54], [846.03, 1125.68], [850.68, 1129.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[874.05, 1132.32], [876.54, 1134.5], [879.15, 1131.51], [876.66, 1129.35], [874.05, 1132.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[854.54, 1133.88], [860.45, 1139.22], [864.9, 1134.34], [858.99, 1128.99], [854.54, 1133.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[854.0, 1134.21], [858.95, 1138.62], [854.69, 1143.36], [849.74, 1138.96], [854.0, 1134.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[874.31, 1142.2], [868.99, 1137.38], [864.3, 1142.52], [869.63, 1147.34], [874.31, 1142.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[572.63, 960.93], [579.19, 966.93], [567.94, 979.13], [561.38, 973.13], [572.63, 960.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.094, "pop": 0, "jobs": 94}}, {"shape": {"outer": [[560.81, 973.34], [572.37, 960.54], [565.23, 954.15], [553.67, 966.94], [560.81, 973.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[559.05, 988.83], [565.33, 982.06], [554.18, 971.81], [547.91, 978.59], [559.05, 988.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[552.08, 996.84], [558.45, 989.95], [549.8, 982.04], [549.36, 982.5], [544.89, 978.41], [538.97, 984.83], [552.08, 996.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[570.95, 979.46], [581.1, 968.38], [587.72, 974.4], [577.57, 985.48], [570.95, 979.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[569.54, 993.68], [573.67, 989.03], [568.72, 984.67], [564.59, 989.32], [569.54, 993.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-366.9, -102.91], [-371.53, -102.69], [-372.62, -102.64], [-371.58, -80.92], [-369.4, -78.95], [-372.27, -75.8], [-360.31, -64.93], [-360.19, -64.83], [-355.8, -69.62], [-353.28, -72.38], [-353.79, -72.85], [-353.24, -73.43], [-366.04, -85.07], [-366.9, -102.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[-369.3, -55.1], [-360.31, -64.93], [-372.27, -75.8], [-369.4, -78.95], [-371.58, -80.92], [-372.62, -102.64], [-372.63, -102.99], [-385.91, -102.35], [-385.88, -101.83], [-385.0, -83.19], [-391.53, -76.04], [-391.92, -75.61], [-371.19, -56.82], [-369.3, -55.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.56, "pop": 280, "jobs": 0}}, {"shape": {"outer": [[-415.68, -98.32], [-415.12, -100.43], [-410.27, -100.66], [-399.37, -101.16], [-397.44, -101.23], [-396.5, -80.65], [-398.81, -82.79], [-410.88, -93.9], [-415.68, -98.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[-385.0, -83.19], [-391.04, -82.91], [-391.92, -101.48], [-391.14, -101.51], [-391.19, -102.45], [-389.04, -102.55], [-386.98, -102.64], [-386.94, -101.78], [-385.88, -101.83], [-385.0, -83.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-397.44, -101.23], [-396.25, -101.29], [-392.94, -101.44], [-391.92, -101.48], [-391.04, -82.91], [-385.0, -83.19], [-391.53, -76.04], [-392.06, -76.09], [-392.3, -76.28], [-393.5, -77.31], [-394.01, -77.35], [-396.33, -79.45], [-396.67, -79.75], [-396.15, -80.33], [-396.5, -80.65], [-397.44, -101.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-401.89, -120.79], [-401.89, -120.34], [-408.27, -120.05], [-408.28, -120.36], [-408.8, -132.05], [-408.84, -132.86], [-403.88, -138.18], [-402.67, -138.23], [-401.89, -120.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-408.28, -120.36], [-419.34, -119.87], [-419.39, -121.23], [-409.66, -132.02], [-408.8, -132.05], [-408.28, -120.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[428.36, 81.01], [430.33, 78.85], [431.19, 79.64], [433.01, 77.65], [432.05, 76.78], [433.45, 75.25], [426.71, 69.13], [427.66, 68.09], [422.52, 63.42], [416.37, 70.13], [428.36, 81.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[399.24, 109.25], [400.09, 108.32], [401.07, 109.21], [405.82, 104.03], [395.58, 94.68], [394.63, 95.71], [394.2, 95.31], [394.0, 95.53], [392.87, 94.5], [390.5, 97.08], [391.47, 97.96], [390.18, 99.35], [393.67, 102.54], [392.86, 103.42], [399.24, 109.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[392.37, 115.31], [396.23, 111.18], [395.79, 110.76], [397.61, 108.82], [389.59, 101.37], [389.13, 101.86], [388.04, 100.85], [383.2, 106.01], [384.28, 107.02], [383.9, 107.42], [392.37, 115.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[372.66, 119.63], [373.32, 120.25], [372.26, 121.38], [375.37, 124.28], [376.45, 123.14], [380.57, 126.98], [384.67, 122.62], [386.36, 124.19], [386.72, 123.8], [389.16, 126.07], [391.61, 123.45], [389.21, 121.21], [390.32, 120.02], [386.98, 116.9], [387.38, 116.47], [386.17, 115.34], [386.47, 115.02], [384.83, 113.5], [384.53, 113.82], [383.45, 112.8], [383.09, 113.18], [381.08, 111.31], [377.44, 115.2], [377.11, 114.88], [372.66, 119.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[397.11, 145.3], [404.65, 137.15], [399.77, 132.66], [400.33, 132.05], [395.88, 127.97], [392.29, 131.84], [391.48, 131.09], [389.32, 133.42], [389.88, 133.94], [388.88, 135.02], [392.37, 138.24], [391.02, 139.7], [397.11, 145.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[452.28, 143.81], [458.03, 137.41], [452.75, 132.69], [453.13, 132.27], [444.0, 124.12], [437.87, 130.95], [452.28, 143.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[465.53, 129.06], [459.78, 135.47], [454.5, 130.75], [454.11, 131.18], [444.98, 123.04], [451.12, 116.21], [465.53, 129.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[465.85, 129.02], [471.15, 123.11], [466.69, 119.14], [467.46, 118.29], [461.96, 113.39], [461.23, 114.2], [458.6, 111.85], [458.51, 111.24], [456.6, 109.37], [455.87, 109.39], [454.32, 108.01], [448.96, 113.98], [465.85, 129.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[473.5, 119.59], [478.61, 113.94], [466.79, 103.31], [461.67, 108.97], [473.5, 119.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2791.09, -1038.71], [-2767.89, -1039.43], [-2744.11, -1019.37], [-2750.98, -1012.62], [-2742.25, -1003.79], [-2718.19, -1004.48], [-2718.63, -1019.73], [-2715.7, -1023.32], [-2770.0, -1067.15], [-2788.83, -1066.18], [-2791.67, -1062.54], [-2791.09, -1038.71]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1873, "jobs": 0}}, {"shape": {"outer": [[-2162.15, -1870.33], [-2160.05, -1869.93], [-2158.5, -1867.62], [-2159.04, -1867.26], [-2155.97, -1862.65], [-2150.55, -1866.24], [-2151.51, -1867.67], [-2151.06, -1870.63], [-2153.87, -1871.05], [-2157.6, -1877.16], [-2161.26, -1874.94], [-2162.15, -1870.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2263.52, -1758.82], [-2258.29, -1755.74], [-2253.75, -1763.36], [-2258.99, -1766.45], [-2263.52, -1758.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.034, "pop": 0, "jobs": 34}}, {"shape": {"outer": [[-2273.2, -1764.9], [-2267.95, -1761.57], [-2263.02, -1769.27], [-2268.28, -1772.6], [-2273.2, -1764.9]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.036, "pop": 0, "jobs": 36}}, {"shape": {"outer": [[-2198.42, -1815.07], [-2198.72, -1820.53], [-2212.01, -1815.71], [-2206.33, -1812.14], [-2198.42, -1815.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2130.27, -1847.92], [-2127.77, -1853.23], [-2122.77, -1851.07], [-2124.99, -1846.05], [-2130.27, -1847.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[807.96, 390.19], [851.9, 430.06], [798.92, 488.02], [786.61, 501.49], [751.46, 469.6], [759.31, 461.0], [750.52, 453.02], [802.07, 396.62], [807.96, 390.19]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7846}}, {"shape": {"outer": [[-3112.19, -1152.78], [-3102.58, -1144.95], [-3101.43, -1146.35], [-3099.54, -1144.8], [-3096.34, -1148.69], [-3098.41, -1150.38], [-3097.12, -1151.95], [-3102.51, -1156.34], [-3101.6, -1157.46], [-3103.67, -1159.14], [-3104.6, -1158.0], [-3106.57, -1159.61], [-3112.19, -1152.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-3115.83, -1162.95], [-3111.29, -1168.28], [-3107.67, -1165.23], [-3112.22, -1159.88], [-3115.83, -1162.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3126.47, -1164.32], [-3119.6, -1172.33], [-3113.19, -1166.87], [-3119.75, -1159.2], [-3120.27, -1159.64], [-3121.6, -1158.09], [-3126.98, -1162.67], [-3125.94, -1163.87], [-3126.47, -1164.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3101.03, -1160.84], [-3093.69, -1169.67], [-3090.31, -1166.87], [-3089.75, -1167.55], [-3088.79, -1166.75], [-3087.14, -1168.74], [-3082.2, -1164.66], [-3083.68, -1162.89], [-3083.08, -1162.39], [-3089.42, -1154.77], [-3094.33, -1158.82], [-3096.07, -1156.74], [-3101.03, -1160.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3099.07, -1182.86], [-3094.77, -1179.18], [-3091.3, -1183.22], [-3095.58, -1186.9], [-3099.07, -1182.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-3088.56, -1192.7], [-3085.95, -1195.79], [-3085.07, -1195.05], [-3079.26, -1201.94], [-3071.55, -1195.48], [-3078.09, -1187.72], [-3080.19, -1189.5], [-3082.07, -1187.26], [-3088.56, -1192.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3079.36, -1181.47], [-3072.75, -1176.07], [-3071.64, -1177.41], [-3071.14, -1177.0], [-3062.54, -1187.45], [-3063.11, -1187.92], [-3061.97, -1189.31], [-3068.24, -1194.43], [-3069.61, -1192.76], [-3070.36, -1193.38], [-3078.77, -1183.17], [-3078.29, -1182.78], [-3079.36, -1181.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3100.15, -1201.47], [-3090.17, -1213.32], [-3081.84, -1206.37], [-3090.52, -1196.07], [-3093.56, -1198.61], [-3094.87, -1197.05], [-3100.15, -1201.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3110.96, -1213.65], [-3109.18, -1215.78], [-3109.91, -1216.38], [-3107.53, -1219.23], [-3106.85, -1218.66], [-3104.38, -1221.61], [-3103.45, -1220.82], [-3101.91, -1222.68], [-3094.79, -1216.76], [-3096.41, -1214.81], [-3095.59, -1214.13], [-3102.13, -1206.31], [-3110.96, -1213.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-3125.3, -1218.18], [-3119.51, -1213.28], [-3118.26, -1214.75], [-3117.29, -1213.93], [-3115.1, -1216.5], [-3115.93, -1217.2], [-3109.09, -1225.19], [-3109.89, -1225.87], [-3108.81, -1227.14], [-3115.31, -1232.66], [-3116.27, -1231.55], [-3117.05, -1232.22], [-3124.28, -1223.77], [-3121.66, -1221.53], [-3122.46, -1220.59], [-3122.91, -1220.96], [-3125.3, -1218.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-3135.03, -1219.05], [-3131.64, -1216.29], [-3127.77, -1221.0], [-3131.17, -1223.77], [-3135.03, -1219.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-3135.6, -1231.59], [-3133.52, -1234.08], [-3132.61, -1233.33], [-3126.45, -1240.72], [-3119.29, -1234.81], [-3126.64, -1225.98], [-3127.35, -1226.57], [-3129.35, -1224.17], [-3132.83, -1227.05], [-3131.72, -1228.38], [-3135.6, -1231.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3117.55, -1197.54], [-3112.55, -1203.91], [-3106.07, -1198.86], [-3111.07, -1192.5], [-3117.55, -1197.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-3085.76, -1172.85], [-3082.06, -1177.04], [-3076.73, -1172.36], [-3080.42, -1168.17], [-3085.76, -1172.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-3145.16, -1043.68], [-3141.58, -1047.98], [-3142.35, -1048.61], [-3139.36, -1052.18], [-3131.66, -1045.78], [-3134.42, -1042.48], [-3134.95, -1042.92], [-3138.76, -1038.38], [-3145.16, -1043.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-3136.22, -1055.46], [-3135.74, -1056.04], [-3137.26, -1057.3], [-3132.23, -1063.3], [-3130.37, -1061.75], [-3129.92, -1062.3], [-3121.05, -1054.89], [-3124.44, -1050.87], [-3125.09, -1051.4], [-3126.81, -1049.36], [-3128.26, -1050.56], [-3129.12, -1049.54], [-3136.22, -1055.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3130.02, -1040.93], [-3126.96, -1044.76], [-3121.99, -1040.82], [-3125.06, -1036.98], [-3130.02, -1040.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-3124.97, -1043.31], [-3120.83, -1048.42], [-3115.73, -1044.33], [-3119.85, -1039.22], [-3124.97, -1043.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-3124.82, -1067.73], [-3118.47, -1074.92], [-3112.09, -1069.32], [-3115.29, -1065.71], [-3114.18, -1064.74], [-3116.29, -1062.36], [-3117.76, -1063.65], [-3118.81, -1062.45], [-3124.82, -1067.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-3112.26, -1082.73], [-3106.03, -1077.27], [-3110.83, -1071.83], [-3117.06, -1077.28], [-3112.26, -1082.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-3110.82, -1087.74], [-3100.08, -1100.57], [-3099.52, -1100.1], [-3097.7, -1102.27], [-3091.41, -1097.04], [-3093.39, -1094.67], [-3092.83, -1094.2], [-3103.38, -1081.62], [-3108.43, -1085.82], [-3109.2, -1084.9], [-3111.13, -1086.51], [-3110.4, -1087.39], [-3110.82, -1087.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-3091.71, -1068.71], [-3085.0, -1063.11], [-3089.76, -1057.44], [-3096.47, -1063.03], [-3091.71, -1068.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-3091.91, -1069.44], [-3098.38, -1074.79], [-3103.69, -1068.41], [-3097.22, -1063.05], [-3091.91, -1069.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-3089.21, -1095.15], [-3079.08, -1086.99], [-3086.48, -1077.88], [-3090.32, -1080.97], [-3088.52, -1083.2], [-3092.23, -1086.18], [-3090.45, -1088.38], [-3093.03, -1090.45], [-3089.21, -1095.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3076.75, -1085.17], [-3068.94, -1078.67], [-3069.59, -1077.89], [-3067.53, -1076.17], [-3071.82, -1071.04], [-3072.25, -1071.41], [-3075.69, -1067.3], [-3078.97, -1070.02], [-3076.43, -1073.05], [-3082.6, -1078.18], [-3076.75, -1085.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3084.08, -1052.42], [-3079.04, -1048.3], [-3074.96, -1053.28], [-3080.0, -1057.38], [-3084.08, -1052.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-3075.02, -1060.17], [-3063.63, -1073.83], [-3062.48, -1072.89], [-3061.1, -1074.53], [-3056.79, -1070.95], [-3058.2, -1069.27], [-3056.99, -1068.28], [-3068.36, -1054.65], [-3075.02, -1060.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-3052.24, -1066.25], [-3048.51, -1063.03], [-3049.78, -1061.59], [-3045.29, -1057.71], [-3051.54, -1050.52], [-3053.9, -1052.56], [-3055.66, -1050.53], [-3055.13, -1050.08], [-3056.15, -1048.91], [-3055.71, -1048.52], [-3057.22, -1046.78], [-3057.59, -1047.1], [-3058.02, -1046.59], [-3064.05, -1051.78], [-3059.63, -1056.87], [-3060.07, -1057.24], [-3052.24, -1066.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-3053.16, -1050.22], [-3050.19, -1047.57], [-3054.09, -1043.21], [-3057.06, -1045.86], [-3053.16, -1050.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3051.87, -1041.09], [-3039.46, -1056.09], [-3032.74, -1050.57], [-3042.6, -1038.66], [-3044.82, -1040.5], [-3047.38, -1037.4], [-3051.87, -1041.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3038.8, -1034.36], [-3031.87, -1028.64], [-3022.06, -1040.41], [-3028.99, -1046.15], [-3038.8, -1034.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3011.45, -1033.03], [-3017.19, -1037.8], [-3028.84, -1023.88], [-3021.93, -1018.12], [-3011.41, -1030.68], [-3012.59, -1031.67], [-3011.45, -1033.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3015.91, -1017.16], [-3010.83, -1013.14], [-3015.96, -1006.73], [-3021.03, -1010.75], [-3015.91, -1017.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-3011.17, -1013.92], [-3007.19, -1010.67], [-3005.32, -1012.96], [-3001.47, -1009.82], [-2995.4, -1017.21], [-3003.22, -1023.58], [-3011.17, -1013.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-820.08, -1302.83], [-813.4, -1296.87], [-804.61, -1306.66], [-811.33, -1312.66], [-820.08, -1302.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-831.98, -1283.85], [-837.79, -1289.66], [-827.22, -1300.17], [-821.41, -1294.37], [-831.98, -1283.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-810.47, -321.72], [-796.21, -308.87], [-771.69, -335.86], [-799.64, -361.07], [-814.09, -345.17], [-805.59, -337.51], [-804.21, -335.81], [-803.43, -333.76], [-803.33, -331.59], [-803.89, -329.47], [-805.1, -327.64], [-810.47, -321.72]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 2325, "jobs": 0}}, {"shape": {"outer": [[-774.8, -352.01], [-765.84, -343.85], [-760.26, -349.94], [-754.59, -344.78], [-774.47, -323.09], [-776.25, -324.71], [-791.87, -307.66], [-735.35, -256.22], [-711.51, -282.23], [-743.94, -311.75], [-717.31, -340.81], [-754.25, -374.42], [-774.8, -352.01]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 9228, "jobs": 0}}, {"shape": {"outer": [[485.41, 702.67], [486.42, 703.6], [501.15, 687.57], [500.45, 686.93], [504.27, 682.77], [506.08, 684.4], [510.16, 679.94], [508.89, 678.78], [523.82, 662.48], [522.66, 661.42], [527.44, 656.2], [524.38, 653.42], [525.91, 651.75], [519.7, 646.1], [518.6, 647.3], [515.23, 644.23], [509.58, 650.38], [508.64, 649.52], [507.56, 650.7], [504.71, 648.1], [505.73, 646.99], [503.03, 644.53], [501.96, 645.7], [498.79, 642.8], [499.96, 641.52], [498.86, 640.51], [504.14, 634.75], [501.0, 631.89], [502.12, 630.68], [496.16, 625.23], [495.08, 626.42], [491.87, 623.49], [486.45, 629.39], [485.28, 628.32], [484.22, 629.47], [481.45, 626.95], [482.63, 625.66], [480.0, 623.27], [478.7, 624.67], [475.3, 621.58], [476.41, 620.36], [475.54, 619.56], [480.95, 613.65], [477.63, 610.63], [478.74, 609.41], [472.81, 604.02], [471.69, 605.24], [468.41, 602.28], [463.03, 608.17], [461.88, 607.13], [460.88, 608.22], [458.25, 605.82], [459.64, 604.31], [456.73, 601.66], [455.3, 603.22], [452.32, 600.52], [453.43, 599.31], [452.31, 598.29], [457.76, 592.32], [454.59, 589.46], [455.54, 588.42], [449.54, 582.99], [448.46, 584.17], [446.3, 582.21], [447.3, 581.13], [446.17, 580.11], [440.47, 586.36], [439.17, 585.18], [436.33, 588.31], [436.89, 588.81], [434.21, 591.76], [433.66, 591.27], [429.47, 595.88], [432.08, 598.24], [431.13, 599.29], [437.48, 605.01], [438.53, 603.85], [440.97, 606.06], [439.8, 607.35], [445.97, 612.89], [446.99, 611.76], [450.23, 614.65], [436.34, 630.0], [432.93, 626.93], [424.53, 636.21], [427.36, 638.77], [421.0, 645.79], [421.95, 646.64], [417.09, 652.01], [420.4, 654.99], [419.26, 656.23], [426.47, 662.75], [427.49, 661.64], [430.49, 664.35], [436.28, 658.01], [438.9, 660.38], [438.31, 661.04], [441.57, 664.0], [442.23, 663.27], [447.9, 668.45], [442.32, 674.53], [445.43, 677.37], [444.41, 678.48], [451.19, 684.67], [452.06, 683.74], [455.35, 686.74], [460.94, 680.66], [463.45, 682.95], [462.87, 683.57], [466.16, 686.58], [466.95, 685.71], [472.58, 690.87], [467.09, 696.82], [470.32, 699.79], [469.35, 700.84], [475.76, 706.69], [476.72, 705.64], [479.96, 708.61], [485.41, 702.67]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 4397, "jobs": 0}}, {"shape": {"outer": [[-2905.93, -495.39], [-2902.25, -499.52], [-2901.19, -498.58], [-2892.45, -508.35], [-2893.35, -509.14], [-2891.25, -511.48], [-2898.71, -518.1], [-2902.86, -513.47], [-2904.13, -514.6], [-2907.69, -510.62], [-2910.91, -507.02], [-2908.35, -504.75], [-2911.95, -500.73], [-2905.93, -495.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-3029.38, -549.7], [-3017.13, -550.53], [-3018.0, -563.35], [-3021.52, -563.12], [-3021.75, -566.43], [-3029.38, -565.91], [-3029.16, -562.68], [-3030.27, -562.6], [-3029.38, -549.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-3045.59, -1295.09], [-3054.12, -1302.45], [-3064.11, -1290.97], [-3055.59, -1283.6], [-3045.59, -1295.09]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2771.9, -1239.06], [-2769.0, -1242.77], [-2767.17, -1241.34], [-2759.67, -1250.95], [-2765.19, -1255.25], [-2766.89, -1253.06], [-2769.13, -1254.8], [-2777.81, -1243.68], [-2771.9, -1239.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2619.5, -1277.66], [-2608.92, -1289.92], [-2612.01, -1292.59], [-2610.11, -1294.79], [-2616.23, -1300.06], [-2624.87, -1290.04], [-2627.46, -1292.28], [-2632.95, -1285.89], [-2624.74, -1278.82], [-2623.08, -1280.74], [-2619.5, -1277.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-2625.05, -1376.4], [-2630.21, -1380.48], [-2631.85, -1378.45], [-2635.67, -1381.48], [-2643.13, -1372.16], [-2634.15, -1365.02], [-2625.05, -1376.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2963.69, -1522.74], [-2958.06, -1529.46], [-2956.0, -1531.92], [-2961.65, -1536.64], [-2963.71, -1534.18], [-2967.87, -1537.66], [-2973.5, -1530.94], [-2969.27, -1527.41], [-2970.01, -1526.52], [-2967.73, -1524.61], [-2966.98, -1525.5], [-2963.69, -1522.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2922.59, -1422.26], [-2928.59, -1427.54], [-2935.51, -1419.65], [-2932.82, -1417.29], [-2934.37, -1415.52], [-2931.05, -1412.62], [-2922.59, -1422.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-3074.09, -1255.85], [-3080.19, -1248.79], [-3079.87, -1248.57], [-3080.27, -1248.04], [-3081.35, -1246.73], [-3080.96, -1246.4], [-3074.89, -1241.12], [-3073.36, -1242.97], [-3072.33, -1242.11], [-3066.29, -1249.34], [-3067.31, -1250.19], [-3074.09, -1255.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2661.62, -1300.69], [-2666.94, -1305.73], [-2672.14, -1300.27], [-2666.82, -1295.21], [-2661.62, -1300.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2845.85, -1487.45], [-2842.6, -1491.28], [-2840.29, -1489.34], [-2834.21, -1496.51], [-2843.36, -1504.23], [-2844.87, -1502.45], [-2847.87, -1504.98], [-2849.89, -1502.59], [-2853.04, -1505.24], [-2856.21, -1501.5], [-2852.95, -1498.75], [-2855.47, -1495.78], [-2854.98, -1495.37], [-2856.03, -1494.14], [-2855.41, -1493.61], [-2856.25, -1492.61], [-2853.39, -1490.21], [-2852.75, -1490.97], [-2850.25, -1488.86], [-2849.11, -1490.2], [-2845.85, -1487.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-2670.65, -1356.89], [-2677.11, -1362.55], [-2683.88, -1354.82], [-2677.42, -1349.16], [-2670.65, -1356.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2491.0, -1286.7], [-2497.71, -1292.43], [-2502.8, -1286.48], [-2496.09, -1280.75], [-2491.0, -1286.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2734.8, -1265.07], [-2727.85, -1259.21], [-2718.16, -1271.07], [-2724.77, -1275.74], [-2725.86, -1274.26], [-2728.25, -1273.48], [-2730.08, -1274.76], [-2734.13, -1270.12], [-2732.08, -1268.53], [-2734.8, -1265.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2881.07, -1014.08], [-2880.93, -1017.56], [-2879.32, -1017.5], [-2878.79, -1030.81], [-2890.71, -1031.28], [-2891.4, -1014.49], [-2881.07, -1014.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2466.69, -1309.22], [-2475.58, -1316.95], [-2483.83, -1307.48], [-2474.93, -1299.73], [-2466.69, -1309.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2631.01, -1128.35], [-2637.37, -1134.29], [-2645.9, -1125.22], [-2639.53, -1119.28], [-2631.01, -1128.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2943.81, -1316.93], [-2934.27, -1327.08], [-2945.3, -1337.38], [-2953.18, -1329.01], [-2951.53, -1327.46], [-2956.23, -1322.46], [-2951.43, -1317.98], [-2948.4, -1321.2], [-2943.81, -1316.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-2839.31, -1356.89], [-2835.85, -1360.75], [-2833.4, -1358.56], [-2828.37, -1364.18], [-2837.63, -1372.46], [-2846.11, -1362.98], [-2839.31, -1356.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2683.76, -1207.17], [-2679.75, -1212.04], [-2685.18, -1216.52], [-2684.82, -1216.96], [-2689.69, -1220.95], [-2693.99, -1215.72], [-2692.19, -1214.25], [-2693.92, -1212.15], [-2690.32, -1209.18], [-2688.65, -1211.2], [-2683.76, -1207.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2919.0, -1378.12], [-2926.13, -1384.28], [-2937.44, -1371.3], [-2928.13, -1363.25], [-2918.22, -1374.64], [-2920.4, -1376.52], [-2919.0, -1378.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2796.1, -1522.57], [-2803.29, -1528.66], [-2811.89, -1518.51], [-2811.14, -1517.87], [-2812.33, -1516.42], [-2808.45, -1513.3], [-2805.77, -1513.32], [-2804.72, -1512.42], [-2796.1, -1522.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2672.57, -1269.63], [-2669.87, -1272.67], [-2667.5, -1270.58], [-2663.26, -1275.37], [-2665.61, -1277.44], [-2661.85, -1281.68], [-2668.97, -1287.98], [-2679.66, -1275.89], [-2672.57, -1269.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2861.45, -1501.81], [-2858.1, -1505.97], [-2856.01, -1504.3], [-2851.81, -1509.53], [-2853.88, -1511.21], [-2853.24, -1512.02], [-2860.88, -1518.41], [-2862.08, -1516.96], [-2864.07, -1518.67], [-2867.96, -1514.16], [-2867.38, -1513.71], [-2868.04, -1512.92], [-2866.47, -1511.63], [-2867.45, -1510.55], [-2863.97, -1507.72], [-2865.85, -1505.52], [-2865.68, -1503.02], [-2863.93, -1501.66], [-2861.45, -1501.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3016.64, -1127.15], [-3022.83, -1132.53], [-3026.95, -1127.84], [-3020.76, -1122.48], [-3016.64, -1127.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2884.05, -1361.05], [-2891.02, -1367.47], [-2899.05, -1358.72], [-2892.07, -1352.32], [-2884.05, -1361.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2885.92, -1494.92], [-2892.39, -1500.43], [-2897.94, -1493.95], [-2891.46, -1488.44], [-2885.92, -1494.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-3071.49, -1299.43], [-3069.88, -1298.04], [-3069.24, -1298.78], [-3066.48, -1296.41], [-3066.21, -1296.71], [-3065.83, -1296.38], [-3060.48, -1302.55], [-3060.84, -1302.86], [-3060.09, -1303.71], [-3063.09, -1306.3], [-3062.39, -1307.09], [-3065.53, -1309.79], [-3066.51, -1308.66], [-3066.06, -1308.29], [-3071.67, -1301.81], [-3074.07, -1303.88], [-3079.25, -1297.89], [-3075.57, -1294.72], [-3071.49, -1299.43]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2812.57, -1017.72], [-2812.55, -1029.38], [-2818.16, -1029.4], [-2818.17, -1026.1], [-2822.4, -1026.11], [-2822.42, -1017.75], [-2812.57, -1017.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2849.48, -1336.5], [-2854.36, -1340.7], [-2858.99, -1335.33], [-2854.11, -1331.13], [-2849.48, -1336.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2726.79, -1454.96], [-2733.63, -1460.71], [-2738.66, -1454.76], [-2731.83, -1449.02], [-2726.79, -1454.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2724.07, -1226.7], [-2729.9, -1231.79], [-2735.48, -1225.41], [-2729.61, -1220.27], [-2724.07, -1226.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-3061.92, -1370.41], [-3064.86, -1372.92], [-3065.44, -1372.25], [-3068.22, -1374.63], [-3079.01, -1362.06], [-3071.05, -1355.27], [-3060.28, -1367.83], [-3062.51, -1369.73], [-3061.92, -1370.41]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3032.02, -1395.03], [-3029.31, -1398.22], [-3026.49, -1395.85], [-3024.9, -1397.72], [-3024.54, -1397.42], [-3023.08, -1399.14], [-3021.74, -1398.02], [-3019.95, -1400.13], [-3021.25, -1401.22], [-3019.91, -1402.81], [-3020.24, -1403.09], [-3019.2, -1404.31], [-3026.32, -1410.29], [-3030.88, -1404.9], [-3032.02, -1405.86], [-3037.41, -1399.49], [-3035.55, -1397.92], [-3036.14, -1397.21], [-3033.98, -1395.4], [-3033.34, -1396.15], [-3032.02, -1395.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2667.73, -1216.77], [-2666.18, -1218.75], [-2664.69, -1217.58], [-2661.6, -1221.51], [-2672.2, -1229.83], [-2677.52, -1223.07], [-2673.53, -1219.93], [-2675.26, -1217.72], [-2668.38, -1212.33], [-2665.98, -1215.39], [-2667.73, -1216.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2591.62, -1214.14], [-2588.03, -1217.99], [-2597.14, -1226.27], [-2600.83, -1222.12], [-2591.62, -1214.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2598.21, -1348.49], [-2609.77, -1357.97], [-2616.31, -1350.06], [-2604.77, -1340.58], [-2598.21, -1348.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2646.72, -1320.32], [-2636.51, -1332.4], [-2647.33, -1341.48], [-2657.54, -1329.4], [-2646.72, -1320.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-2470.61, -1279.95], [-2466.02, -1285.23], [-2464.18, -1283.63], [-2459.35, -1289.17], [-2462.09, -1291.56], [-2459.06, -1295.03], [-2465.51, -1300.66], [-2473.92, -1291.01], [-2472.1, -1289.42], [-2476.15, -1284.77], [-2470.61, -1279.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-3003.06, -1567.55], [-3009.92, -1573.26], [-3017.55, -1563.92], [-3014.02, -1561.01], [-3014.85, -1559.98], [-3011.64, -1557.34], [-3010.79, -1558.36], [-3003.06, -1567.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2726.0, -1379.68], [-2721.06, -1385.36], [-2718.82, -1383.43], [-2710.61, -1392.86], [-2718.31, -1399.51], [-2725.84, -1390.84], [-2727.11, -1391.93], [-2732.71, -1385.48], [-2726.0, -1379.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2690.39, -1417.39], [-2688.55, -1419.58], [-2686.43, -1417.83], [-2680.76, -1424.62], [-2682.5, -1426.06], [-2681.75, -1426.96], [-2691.2, -1434.79], [-2699.46, -1424.9], [-2690.39, -1417.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2834.98, -1036.4], [-2842.54, -1036.29], [-2842.46, -1031.15], [-2834.89, -1031.27], [-2834.98, -1036.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-3141.13, -1299.56], [-3139.67, -1301.31], [-3139.23, -1300.95], [-3133.88, -1307.35], [-3130.85, -1310.96], [-3136.96, -1316.08], [-3139.61, -1312.91], [-3140.13, -1313.34], [-3142.26, -1315.13], [-3146.37, -1310.21], [-3144.24, -1308.42], [-3145.86, -1306.5], [-3145.48, -1306.17], [-3146.94, -1304.42], [-3141.13, -1299.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2630.68, -1298.17], [-2635.21, -1302.1], [-2639.99, -1296.6], [-2635.46, -1292.67], [-2630.68, -1298.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2745.27, -1247.18], [-2750.85, -1251.87], [-2755.5, -1246.4], [-2749.92, -1241.7], [-2745.27, -1247.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2986.6, -1374.45], [-2993.56, -1380.32], [-3005.58, -1366.16], [-2998.63, -1360.3], [-2986.6, -1374.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-3043.79, -1374.71], [-3049.26, -1379.52], [-3054.18, -1373.96], [-3048.71, -1369.15], [-3043.79, -1374.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-3038.49, -1404.63], [-3032.85, -1411.71], [-3039.31, -1416.8], [-3037.83, -1418.66], [-3040.89, -1421.09], [-3042.1, -1419.56], [-3043.41, -1420.6], [-3050.24, -1411.99], [-3046.2, -1408.81], [-3045.27, -1409.98], [-3038.49, -1404.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3106.9, -1315.13], [-3115.09, -1322.25], [-3119.1, -1317.63], [-3110.91, -1310.52], [-3106.9, -1315.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2630.55, -1197.21], [-2636.58, -1202.95], [-2639.73, -1199.65], [-2641.51, -1201.34], [-2644.81, -1197.87], [-2642.32, -1195.49], [-2646.12, -1191.51], [-2640.79, -1186.44], [-2630.55, -1197.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2640.83, -1157.75], [-2646.76, -1163.3], [-2652.12, -1157.58], [-2646.19, -1152.02], [-2640.83, -1157.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2827.37, -1545.72], [-2826.22, -1547.07], [-2822.84, -1544.18], [-2820.0, -1547.52], [-2823.37, -1550.4], [-2822.92, -1550.94], [-2829.67, -1556.58], [-2838.58, -1545.39], [-2835.79, -1542.97], [-2836.71, -1541.76], [-2830.97, -1536.97], [-2825.34, -1543.87], [-2827.37, -1545.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2911.47, -1670.57], [-2901.39, -1682.53], [-2911.6, -1691.11], [-2917.45, -1684.02], [-2913.51, -1680.71], [-2915.34, -1678.55], [-2912.71, -1676.33], [-2915.13, -1673.6], [-2911.47, -1670.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2936.63, -1141.98], [-2943.34, -1148.47], [-2949.97, -1141.67], [-2943.26, -1135.16], [-2936.63, -1141.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2847.53, -1232.69], [-2843.4, -1237.61], [-2841.96, -1236.4], [-2835.97, -1243.54], [-2837.79, -1245.06], [-2838.81, -1245.91], [-2838.2, -1246.65], [-2842.61, -1250.33], [-2847.98, -1243.94], [-2849.48, -1245.2], [-2848.92, -1245.86], [-2850.28, -1246.99], [-2851.29, -1247.84], [-2851.85, -1247.15], [-2852.29, -1247.52], [-2857.65, -1241.13], [-2847.53, -1232.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2768.1, -1225.2], [-2761.25, -1233.09], [-2759.61, -1231.67], [-2753.51, -1238.71], [-2758.8, -1243.3], [-2761.86, -1239.78], [-2764.21, -1241.83], [-2774.11, -1230.42], [-2768.1, -1225.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3148.82, -1360.86], [-3151.89, -1363.5], [-3155.87, -1358.86], [-3152.79, -1356.22], [-3148.82, -1360.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2943.35, -1300.59], [-2948.73, -1305.22], [-2951.87, -1301.57], [-2946.51, -1296.93], [-2943.35, -1300.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2525.63, -1168.94], [-2521.02, -1174.59], [-2518.35, -1172.42], [-2513.29, -1178.62], [-2525.69, -1188.73], [-2531.17, -1182.0], [-2527.54, -1179.04], [-2531.72, -1173.9], [-2525.63, -1168.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-3128.68, -1306.15], [-3135.99, -1297.45], [-3136.69, -1296.59], [-3134.4, -1294.67], [-3133.68, -1295.51], [-3128.44, -1291.13], [-3121.41, -1300.07], [-3128.68, -1306.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2777.8, -1290.66], [-2768.33, -1301.52], [-2778.88, -1310.71], [-2789.8, -1298.18], [-2791.55, -1299.71], [-2794.7, -1296.11], [-2788.58, -1290.77], [-2783.98, -1296.05], [-2777.8, -1290.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-3138.89, -1373.15], [-3149.03, -1381.15], [-3151.13, -1378.5], [-3152.88, -1379.89], [-3156.68, -1375.1], [-3144.79, -1365.71], [-3138.89, -1373.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3055.71, -1129.55], [-3053.4, -1132.14], [-3052.63, -1131.45], [-3047.26, -1137.48], [-3050.49, -1140.35], [-3047.43, -1143.78], [-3052.8, -1148.53], [-3056.08, -1144.85], [-3057.43, -1146.05], [-3059.13, -1144.14], [-3061.9, -1146.6], [-3067.67, -1140.14], [-3055.71, -1129.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-2922.32, -1526.08], [-2928.89, -1531.49], [-2935.82, -1523.51], [-2929.25, -1518.12], [-2922.32, -1526.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2640.4, -1389.18], [-2647.94, -1395.78], [-2655.87, -1386.71], [-2648.34, -1380.12], [-2640.4, -1389.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3105.07, -1272.31], [-3102.68, -1275.12], [-3102.38, -1274.87], [-3100.23, -1277.43], [-3100.51, -1277.67], [-3098.16, -1280.44], [-3102.82, -1284.41], [-3100.44, -1287.2], [-3103.45, -1289.76], [-3105.82, -1286.96], [-3106.35, -1287.4], [-3113.25, -1279.26], [-3105.07, -1272.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2846.91, -1309.21], [-2853.36, -1315.05], [-2861.32, -1306.32], [-2854.88, -1300.49], [-2846.91, -1309.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3034.12, -1163.27], [-3040.59, -1168.73], [-3042.08, -1166.92], [-3042.91, -1167.62], [-3049.42, -1159.82], [-3041.14, -1153.03], [-3034.88, -1160.74], [-3035.77, -1161.53], [-3034.12, -1163.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2991.4, -1098.62], [-2987.16, -1103.93], [-2984.93, -1102.16], [-2979.62, -1108.8], [-2981.8, -1110.53], [-2980.68, -1111.93], [-2984.13, -1114.66], [-2983.38, -1115.61], [-2984.05, -1116.14], [-2983.0, -1117.46], [-2985.98, -1119.83], [-2987.01, -1118.55], [-2987.7, -1119.1], [-2997.03, -1107.41], [-2993.83, -1104.88], [-2995.96, -1102.23], [-2991.4, -1098.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2998.02, -1353.39], [-2992.34, -1348.67], [-2986.92, -1355.15], [-2989.13, -1356.99], [-2984.94, -1361.99], [-2981.19, -1358.88], [-2978.91, -1361.61], [-2982.65, -1364.71], [-2980.99, -1366.7], [-2987.37, -1372.0], [-2995.93, -1361.78], [-2993.02, -1359.36], [-2998.02, -1353.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2613.63, -1410.51], [-2620.02, -1416.5], [-2625.37, -1410.78], [-2618.99, -1404.79], [-2613.63, -1410.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-3008.03, -1246.89], [-2999.43, -1257.45], [-3007.61, -1263.96], [-3016.23, -1253.42], [-3015.74, -1253.02], [-3017.19, -1251.21], [-3013.91, -1248.61], [-3012.47, -1250.41], [-3008.03, -1246.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2980.23, -1082.34], [-2976.35, -1079.03], [-2971.69, -1084.45], [-2975.56, -1087.76], [-2980.23, -1082.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2896.61, -1016.18], [-2896.25, -1019.93], [-2895.22, -1019.83], [-2894.14, -1030.83], [-2906.9, -1032.07], [-2907.59, -1025.0], [-2904.91, -1024.74], [-2905.66, -1017.06], [-2896.61, -1016.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2520.44, -1197.72], [-2526.49, -1203.14], [-2530.5, -1198.68], [-2524.45, -1193.25], [-2520.44, -1197.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2635.18, -1304.33], [-2641.15, -1309.5], [-2646.02, -1303.88], [-2640.05, -1298.71], [-2635.18, -1304.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2583.4, -1128.57], [-2589.01, -1133.27], [-2593.08, -1128.41], [-2587.47, -1123.7], [-2583.4, -1128.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2952.15, -1424.1], [-2961.52, -1431.22], [-2969.22, -1421.08], [-2959.86, -1413.96], [-2952.15, -1424.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2505.85, -1343.24], [-2510.78, -1347.45], [-2512.59, -1345.32], [-2513.71, -1346.28], [-2521.96, -1336.64], [-2515.92, -1331.47], [-2505.85, -1343.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3068.27, -1352.97], [-3061.5, -1346.87], [-3052.75, -1356.84], [-3056.43, -1360.06], [-3055.8, -1360.77], [-3060.07, -1364.51], [-3060.69, -1363.81], [-3061.13, -1364.19], [-3070.01, -1354.5], [-3068.27, -1352.97]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2561.68, -1365.09], [-2566.22, -1369.34], [-2571.19, -1364.05], [-2566.65, -1359.79], [-2561.68, -1365.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2669.14, -1466.7], [-2665.47, -1470.6], [-2667.87, -1472.85], [-2666.29, -1474.53], [-2674.11, -1481.85], [-2680.55, -1475.01], [-2673.05, -1468.0], [-2671.87, -1469.25], [-2669.14, -1466.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2878.01, -1376.52], [-2883.63, -1381.24], [-2888.27, -1375.7], [-2882.65, -1371.0], [-2878.01, -1376.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2742.38, -1271.95], [-2749.01, -1277.78], [-2758.83, -1266.63], [-2752.2, -1260.79], [-2742.38, -1271.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2608.19, -1235.23], [-2615.61, -1226.92], [-2613.51, -1224.92], [-2615.79, -1222.28], [-2611.37, -1218.38], [-2608.92, -1221.02], [-2605.04, -1217.72], [-2601.08, -1222.1], [-2603.43, -1224.41], [-2600.07, -1228.3], [-2608.19, -1235.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2562.34, -1390.96], [-2569.92, -1397.66], [-2578.27, -1388.28], [-2574.6, -1385.04], [-2575.85, -1383.64], [-2571.93, -1380.17], [-2562.34, -1390.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2699.78, -1255.59], [-2709.54, -1264.1], [-2711.11, -1262.31], [-2713.45, -1264.36], [-2718.05, -1259.12], [-2715.91, -1257.25], [-2718.26, -1254.58], [-2713.04, -1250.02], [-2716.12, -1246.53], [-2711.39, -1242.4], [-2699.78, -1255.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-2522.66, -1163.24], [-2528.62, -1168.82], [-2537.21, -1159.66], [-2531.24, -1154.07], [-2522.66, -1163.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2943.29, -1399.37], [-2952.28, -1406.71], [-2954.74, -1403.71], [-2956.73, -1405.33], [-2964.5, -1395.88], [-2957.07, -1389.8], [-2959.3, -1387.09], [-2955.76, -1384.21], [-2943.29, -1399.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-3096.02, -1399.41], [-3104.16, -1406.32], [-3112.68, -1396.35], [-3099.37, -1385.05], [-3093.87, -1391.49], [-3099.04, -1395.88], [-3096.02, -1399.41]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2565.19, -1142.93], [-2571.97, -1148.9], [-2583.05, -1136.31], [-2576.28, -1130.34], [-2565.19, -1142.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-3046.7, -1480.42], [-3057.4, -1489.19], [-3065.16, -1479.73], [-3054.46, -1470.96], [-3046.7, -1480.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2848.1, -1045.53], [-2848.7, -1059.2], [-2859.17, -1058.75], [-2859.09, -1056.98], [-2861.29, -1056.89], [-2860.98, -1049.8], [-2858.87, -1049.9], [-2858.79, -1048.29], [-2851.82, -1048.59], [-2851.68, -1045.37], [-2848.1, -1045.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2573.93, -1262.94], [-2564.71, -1274.2], [-2573.97, -1281.9], [-2583.35, -1270.51], [-2573.93, -1262.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2574.2, -1114.89], [-2576.9, -1119.86], [-2581.64, -1117.29], [-2578.95, -1112.32], [-2574.2, -1114.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2505.15, -1295.36], [-2510.95, -1288.75], [-2507.41, -1285.58], [-2501.42, -1292.29], [-2505.15, -1295.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2673.84, -1332.69], [-2678.53, -1336.44], [-2682.92, -1330.97], [-2678.23, -1327.22], [-2673.84, -1332.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2682.34, -1154.37], [-2674.79, -1148.07], [-2662.74, -1161.36], [-2670.21, -1167.94], [-2682.34, -1154.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2735.22, -1387.13], [-2740.66, -1391.67], [-2745.99, -1385.3], [-2740.55, -1380.74], [-2735.22, -1387.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2459.06, -1261.1], [-2464.3, -1265.32], [-2465.72, -1263.55], [-2467.09, -1264.66], [-2475.32, -1254.45], [-2467.83, -1248.41], [-2459.88, -1258.28], [-2460.77, -1258.98], [-2459.06, -1261.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2861.88, -1463.37], [-2856.42, -1458.81], [-2852.13, -1464.19], [-2857.69, -1468.59], [-2861.88, -1463.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2810.94, -1280.24], [-2819.03, -1287.56], [-2828.5, -1277.15], [-2820.4, -1269.84], [-2810.94, -1280.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-3061.08, -1265.04], [-3066.14, -1258.76], [-3059.3, -1253.3], [-3054.27, -1259.57], [-3061.08, -1265.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2541.86, -1292.67], [-2536.15, -1299.74], [-2539.36, -1302.32], [-2538.05, -1303.93], [-2542.55, -1307.57], [-2544.61, -1305.01], [-2549.2, -1308.7], [-2555.36, -1301.07], [-2545.06, -1292.76], [-2543.84, -1294.27], [-2541.86, -1292.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2589.0, -1163.18], [-2597.01, -1170.46], [-2603.46, -1163.35], [-2600.45, -1160.61], [-2603.99, -1156.72], [-2598.99, -1152.18], [-2589.0, -1163.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2498.48, -1199.55], [-2492.89, -1205.94], [-2495.68, -1208.37], [-2494.59, -1209.62], [-2504.23, -1218.04], [-2511.93, -1209.23], [-2505.0, -1203.18], [-2503.99, -1204.36], [-2498.48, -1199.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2840.06, -1453.02], [-2848.7, -1460.16], [-2852.55, -1455.49], [-2843.91, -1448.36], [-2840.06, -1453.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2607.87, -1154.34], [-2611.7, -1157.96], [-2619.1, -1150.14], [-2615.27, -1146.51], [-2607.87, -1154.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2809.43, -1532.37], [-2816.71, -1538.49], [-2818.6, -1536.24], [-2820.23, -1537.55], [-2826.73, -1530.04], [-2817.75, -1522.49], [-2809.43, -1532.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2462.83, -1243.57], [-2470.64, -1250.4], [-2476.29, -1243.94], [-2478.43, -1245.83], [-2480.81, -1243.11], [-2478.6, -1241.18], [-2480.77, -1238.7], [-2470.54, -1229.74], [-2463.94, -1237.27], [-2466.43, -1239.46], [-2462.83, -1243.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2941.9, -1377.51], [-2936.76, -1383.78], [-2939.22, -1385.78], [-2937.04, -1388.44], [-2944.64, -1394.64], [-2952.94, -1384.53], [-2945.12, -1378.16], [-2944.15, -1379.34], [-2941.9, -1377.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2651.77, -1145.71], [-2658.99, -1152.08], [-2667.41, -1142.61], [-2660.19, -1136.24], [-2651.77, -1145.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2990.49, -1574.85], [-2986.23, -1580.29], [-2990.39, -1583.55], [-2998.15, -1590.12], [-3003.29, -1583.61], [-2995.49, -1577.06], [-2994.66, -1578.12], [-2990.49, -1574.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2801.51, -1317.3], [-2798.84, -1320.6], [-2796.34, -1318.59], [-2788.58, -1328.17], [-2796.94, -1334.9], [-2807.38, -1322.02], [-2801.51, -1317.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2955.17, -1314.34], [-2960.45, -1319.47], [-2965.02, -1314.75], [-2959.73, -1309.62], [-2955.17, -1314.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2678.61, -1405.23], [-2671.84, -1412.7], [-2671.03, -1411.96], [-2664.86, -1418.78], [-2672.15, -1425.39], [-2685.1, -1411.11], [-2678.61, -1405.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2856.39, -1315.5], [-2861.93, -1320.56], [-2868.79, -1313.09], [-2863.25, -1308.04], [-2856.39, -1315.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2624.55, -1172.24], [-2629.84, -1176.96], [-2634.13, -1172.14], [-2628.84, -1167.43], [-2624.55, -1172.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2630.29, -1402.18], [-2635.43, -1406.67], [-2636.81, -1405.09], [-2637.96, -1406.1], [-2645.56, -1397.4], [-2639.27, -1391.9], [-2630.29, -1402.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2533.3, -1173.15], [-2536.43, -1175.91], [-2545.47, -1165.67], [-2540.42, -1161.22], [-2532.25, -1170.46], [-2534.17, -1172.17], [-2533.3, -1173.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2758.57, -1402.15], [-2763.4, -1406.66], [-2767.11, -1402.69], [-2762.27, -1398.2], [-2758.57, -1402.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2920.35, -1429.43], [-2914.29, -1436.01], [-2922.35, -1443.38], [-2929.99, -1435.07], [-2926.2, -1431.6], [-2924.61, -1433.32], [-2920.35, -1429.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2831.69, -1332.85], [-2836.48, -1337.26], [-2840.01, -1333.43], [-2835.23, -1329.02], [-2831.69, -1332.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-3093.48, -1432.66], [-3099.62, -1438.16], [-3103.83, -1433.47], [-3097.71, -1427.96], [-3093.48, -1432.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-3034.66, -1102.98], [-3041.43, -1108.85], [-3051.78, -1096.93], [-3045.02, -1091.06], [-3034.66, -1102.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2624.55, -1320.44], [-2631.92, -1326.52], [-2639.86, -1316.97], [-2632.49, -1310.89], [-2624.55, -1320.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2661.02, -1350.54], [-2668.1, -1356.15], [-2675.16, -1347.29], [-2668.08, -1341.69], [-2661.02, -1350.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2498.24, -1328.07], [-2504.3, -1333.75], [-2506.3, -1331.61], [-2509.5, -1334.6], [-2515.01, -1328.71], [-2504.13, -1318.51], [-2498.38, -1324.65], [-2500.01, -1326.19], [-2498.24, -1328.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2895.98, -1394.89], [-2902.18, -1399.79], [-2907.27, -1393.34], [-2901.07, -1388.45], [-2895.98, -1394.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2796.37, -1465.99], [-2807.11, -1474.55], [-2809.81, -1471.15], [-2813.65, -1474.21], [-2818.79, -1467.77], [-2810.84, -1461.43], [-2812.42, -1459.44], [-2805.8, -1454.16], [-2796.37, -1465.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-2605.3, -1429.25], [-2612.82, -1435.72], [-2619.96, -1427.43], [-2612.44, -1420.95], [-2605.3, -1429.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2835.92, -1013.78], [-2836.53, -1027.53], [-2846.42, -1027.09], [-2845.82, -1013.34], [-2835.92, -1013.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2618.48, -1361.75], [-2615.91, -1359.5], [-2612.07, -1363.85], [-2617.16, -1368.31], [-2615.5, -1370.2], [-2616.47, -1371.06], [-2615.92, -1371.69], [-2620.48, -1375.67], [-2630.73, -1364.04], [-2622.67, -1356.99], [-2618.48, -1361.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-3082.58, -1298.05], [-3089.12, -1303.61], [-3093.88, -1298.05], [-3087.34, -1292.49], [-3082.58, -1298.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2716.88, -1440.42], [-2710.74, -1447.99], [-2716.45, -1452.58], [-2717.56, -1451.21], [-2721.85, -1454.66], [-2728.28, -1446.71], [-2721.94, -1441.6], [-2720.52, -1443.35], [-2716.88, -1440.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3074.65, -1399.63], [-3079.35, -1403.62], [-3085.4, -1396.49], [-3080.69, -1392.51], [-3074.65, -1399.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2779.89, -1403.58], [-2784.29, -1407.81], [-2786.95, -1405.06], [-2788.5, -1406.57], [-2794.27, -1400.59], [-2788.31, -1394.85], [-2779.89, -1403.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2893.94, -1464.9], [-2890.93, -1468.58], [-2889.42, -1467.36], [-2881.91, -1476.53], [-2889.65, -1482.82], [-2892.7, -1479.09], [-2893.51, -1479.76], [-2900.99, -1470.63], [-2893.94, -1464.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2605.61, -1110.74], [-2612.85, -1117.24], [-2622.31, -1106.75], [-2615.06, -1100.26], [-2605.61, -1110.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2549.96, -1359.79], [-2548.24, -1361.7], [-2547.08, -1360.67], [-2544.83, -1363.17], [-2543.34, -1361.83], [-2535.41, -1370.65], [-2539.72, -1374.54], [-2542.09, -1371.9], [-2546.13, -1375.55], [-2555.68, -1364.93], [-2549.96, -1359.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-3088.05, -1314.87], [-3083.18, -1320.45], [-3086.36, -1323.21], [-3085.04, -1324.71], [-3090.63, -1329.55], [-3098.65, -1320.34], [-3093.12, -1315.54], [-3091.27, -1317.66], [-3088.05, -1314.87]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2745.1, -1547.29], [-2756.51, -1557.16], [-2762.67, -1550.05], [-2758.77, -1546.67], [-2761.32, -1543.72], [-2753.83, -1537.22], [-2745.1, -1547.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2599.52, -1401.98], [-2604.63, -1406.22], [-2610.72, -1398.87], [-2605.6, -1394.63], [-2599.52, -1401.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2500.58, -1268.54], [-2509.3, -1275.6], [-2515.88, -1267.48], [-2507.16, -1260.42], [-2500.58, -1268.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-3123.54, -1332.65], [-3132.32, -1339.62], [-3137.37, -1333.26], [-3128.59, -1326.29], [-3123.54, -1332.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-3051.42, -1242.23], [-3053.95, -1244.73], [-3055.37, -1243.27], [-3059.59, -1247.42], [-3068.16, -1238.69], [-3065.96, -1236.52], [-3067.88, -1234.57], [-3062.43, -1229.21], [-3055.56, -1236.21], [-3056.47, -1237.1], [-3051.42, -1242.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2718.76, -1499.88], [-2725.38, -1505.37], [-2731.97, -1497.43], [-2725.35, -1491.94], [-2718.76, -1499.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2880.25, -1660.6], [-2884.05, -1663.68], [-2892.42, -1653.56], [-2884.54, -1647.15], [-2877.82, -1655.24], [-2881.9, -1658.56], [-2880.25, -1660.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2681.35, -1450.28], [-2686.7, -1454.18], [-2690.7, -1448.71], [-2679.38, -1440.44], [-2676.0, -1445.06], [-2681.98, -1449.43], [-2681.35, -1450.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2729.53, -1379.09], [-2735.48, -1384.03], [-2741.01, -1377.38], [-2735.06, -1372.44], [-2729.53, -1379.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2721.82, -1209.18], [-2728.1, -1214.51], [-2736.34, -1205.03], [-2733.28, -1202.43], [-2735.77, -1199.51], [-2730.38, -1194.93], [-2729.08, -1193.81], [-2718.88, -1205.53], [-2722.36, -1208.55], [-2721.82, -1209.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2927.62, -1021.13], [-2927.31, -1023.27], [-2924.61, -1022.88], [-2923.65, -1029.5], [-2937.01, -1031.43], [-2938.27, -1022.67], [-2927.62, -1021.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2896.49, -1347.62], [-2903.44, -1353.53], [-2910.55, -1345.14], [-2900.74, -1336.82], [-2896.44, -1341.88], [-2899.3, -1344.31], [-2896.49, -1347.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2922.74, -1415.41], [-2927.32, -1416.0], [-2928.17, -1409.38], [-2923.59, -1408.79], [-2922.74, -1415.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2643.65, -1263.67], [-2640.92, -1266.88], [-2639.89, -1266.0], [-2635.35, -1271.33], [-2646.22, -1280.58], [-2658.63, -1265.98], [-2647.8, -1256.77], [-2642.65, -1262.82], [-2643.65, -1263.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-2804.7, -1275.46], [-2808.56, -1278.85], [-2817.62, -1268.62], [-2810.5, -1262.36], [-2802.59, -1271.32], [-2805.84, -1274.17], [-2804.7, -1275.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3081.04, -1427.96], [-3087.13, -1433.52], [-3093.42, -1426.64], [-3087.34, -1421.08], [-3081.04, -1427.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3081.53, -1404.72], [-3087.47, -1409.42], [-3091.59, -1404.2], [-3085.66, -1399.5], [-3081.53, -1404.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2575.17, -1195.26], [-2569.41, -1190.47], [-2565.18, -1195.5], [-2564.15, -1194.7], [-2559.85, -1200.03], [-2566.59, -1205.61], [-2575.17, -1195.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-3015.33, -1082.82], [-3021.99, -1088.6], [-3029.67, -1079.73], [-3023.0, -1073.96], [-3015.33, -1082.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2979.78, -1093.64], [-2977.84, -1095.91], [-2976.1, -1094.42], [-2975.38, -1095.26], [-2974.19, -1094.24], [-2967.37, -1102.22], [-2975.86, -1109.42], [-2979.05, -1105.68], [-2977.12, -1104.05], [-2980.71, -1099.86], [-2980.12, -1099.36], [-2982.82, -1096.21], [-2979.78, -1093.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2778.54, -1528.26], [-2781.83, -1531.53], [-2787.19, -1526.15], [-2783.91, -1522.87], [-2778.54, -1528.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2678.6, -1338.99], [-2687.53, -1346.91], [-2691.68, -1342.22], [-2693.66, -1343.98], [-2696.84, -1340.38], [-2685.93, -1330.72], [-2678.6, -1338.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-3061.93, -1403.62], [-3067.38, -1408.33], [-3071.37, -1403.71], [-3065.91, -1399.0], [-3061.93, -1403.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2779.01, -1418.59], [-2787.14, -1425.41], [-2791.56, -1420.16], [-2783.43, -1413.33], [-2779.01, -1418.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2504.56, -1315.99], [-2509.74, -1310.11], [-2506.12, -1307.13], [-2501.02, -1312.91], [-2504.56, -1315.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-3045.15, -1420.97], [-3059.23, -1433.04], [-3065.29, -1426.01], [-3060.07, -1421.53], [-3060.61, -1420.91], [-3051.75, -1413.33], [-3045.15, -1420.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2898.2, -1486.69], [-2904.62, -1492.23], [-2906.86, -1489.63], [-2908.65, -1491.17], [-2916.61, -1481.93], [-2905.92, -1472.72], [-2897.79, -1482.15], [-2900.27, -1484.3], [-2898.2, -1486.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2737.74, -1252.17], [-2732.73, -1247.28], [-2728.4, -1251.92], [-2733.53, -1256.7], [-2737.74, -1252.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2962.12, -1061.85], [-2969.61, -1068.23], [-2974.77, -1062.05], [-2967.29, -1055.67], [-2965.52, -1054.19], [-2961.59, -1058.87], [-2963.37, -1060.35], [-2962.12, -1061.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2701.66, -1442.56], [-2705.15, -1445.4], [-2706.61, -1443.62], [-2707.82, -1444.6], [-2714.19, -1436.82], [-2704.06, -1428.58], [-2697.64, -1436.44], [-2703.06, -1440.85], [-2701.66, -1442.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2700.9, -1483.69], [-2705.77, -1488.01], [-2710.23, -1483.0], [-2705.35, -1478.67], [-2700.9, -1483.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-3094.42, -1374.24], [-3092.48, -1376.72], [-3091.16, -1375.69], [-3084.1, -1384.72], [-3091.52, -1390.47], [-3100.52, -1378.96], [-3094.42, -1374.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2771.79, -1426.49], [-2770.01, -1428.63], [-2769.97, -1428.6], [-2764.85, -1434.56], [-2766.59, -1436.0], [-2765.97, -1436.75], [-2766.54, -1437.22], [-2765.37, -1438.52], [-2773.64, -1445.93], [-2779.34, -1439.56], [-2777.39, -1437.81], [-2780.68, -1433.86], [-2771.79, -1426.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2558.62, -1122.8], [-2551.99, -1130.19], [-2560.55, -1137.87], [-2569.67, -1127.71], [-2565.17, -1123.67], [-2562.68, -1126.45], [-2558.62, -1122.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2788.69, -1516.13], [-2792.5, -1519.42], [-2801.76, -1508.69], [-2793.38, -1501.45], [-2785.31, -1510.81], [-2789.88, -1514.75], [-2788.69, -1516.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2866.92, -1045.42], [-2867.08, -1048.62], [-2864.81, -1048.73], [-2865.37, -1060.12], [-2873.06, -1059.75], [-2872.98, -1057.94], [-2876.08, -1057.79], [-2875.58, -1047.54], [-2871.68, -1047.73], [-2871.56, -1045.2], [-2866.92, -1045.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2809.91, -1447.72], [-2824.67, -1459.94], [-2830.08, -1453.46], [-2815.31, -1441.24], [-2809.91, -1447.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3084.07, -1442.94], [-3077.65, -1450.84], [-3080.6, -1453.23], [-3081.46, -1452.17], [-3085.09, -1455.12], [-3089.56, -1449.61], [-3091.43, -1451.14], [-3093.8, -1448.22], [-3089.36, -1444.62], [-3088.08, -1446.2], [-3084.07, -1442.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2806.53, -1342.62], [-2810.1, -1345.97], [-2819.18, -1336.39], [-2812.03, -1329.65], [-2803.85, -1338.28], [-2807.43, -1341.67], [-2806.53, -1342.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2564.71, -1218.64], [-2568.1, -1221.91], [-2573.06, -1216.77], [-2569.68, -1213.5], [-2564.71, -1218.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2978.66, -1535.48], [-2973.66, -1541.43], [-2976.41, -1543.58], [-2973.73, -1546.9], [-2977.6, -1550.27], [-2979.11, -1548.5], [-2979.69, -1549.04], [-2980.87, -1547.65], [-2984.12, -1550.33], [-2989.49, -1543.7], [-2985.93, -1540.92], [-2987.25, -1539.36], [-2983.93, -1536.71], [-2982.39, -1538.55], [-2978.66, -1535.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2729.81, -1283.6], [-2734.32, -1287.3], [-2736.7, -1284.37], [-2740.35, -1287.36], [-2745.84, -1280.66], [-2737.68, -1273.99], [-2729.81, -1283.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2590.49, -1093.63], [-2600.29, -1101.85], [-2607.74, -1092.97], [-2597.95, -1084.75], [-2590.49, -1093.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2587.17, -1098.78], [-2582.46, -1104.66], [-2589.57, -1110.37], [-2594.47, -1104.26], [-2596.51, -1105.91], [-2598.54, -1103.37], [-2587.41, -1094.44], [-2585.2, -1097.19], [-2587.17, -1098.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2971.41, -1459.08], [-2964.87, -1466.53], [-2963.57, -1465.39], [-2957.05, -1472.81], [-2968.25, -1482.65], [-2975.33, -1474.59], [-2974.13, -1473.54], [-2976.11, -1471.27], [-2972.93, -1468.48], [-2976.93, -1463.93], [-2971.41, -1459.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-3029.89, -1282.21], [-3037.93, -1272.4], [-3037.04, -1271.67], [-3038.49, -1269.9], [-3037.58, -1269.17], [-3037.77, -1268.94], [-3033.5, -1265.47], [-3031.95, -1267.36], [-3030.67, -1266.33], [-3022.55, -1276.24], [-3029.89, -1282.21]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2632.95, -1455.78], [-2642.94, -1464.0], [-2646.5, -1459.66], [-2644.04, -1457.66], [-2647.31, -1453.67], [-2639.77, -1447.49], [-2632.95, -1455.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2823.87, -1014.34], [-2824.42, -1031.19], [-2834.28, -1030.87], [-2833.72, -1014.01], [-2823.87, -1014.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2494.57, -1306.06], [-2491.05, -1310.17], [-2488.28, -1307.8], [-2477.29, -1320.63], [-2485.41, -1327.59], [-2496.55, -1314.58], [-2495.78, -1313.94], [-2499.16, -1310.0], [-2494.57, -1306.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-2733.25, -1474.24], [-2743.14, -1482.71], [-2748.25, -1476.76], [-2738.35, -1468.28], [-2733.25, -1474.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2994.1, -1547.49], [-2992.05, -1550.02], [-2989.91, -1548.41], [-2985.88, -1553.42], [-2988.13, -1555.24], [-2986.96, -1556.73], [-2997.34, -1564.95], [-3004.39, -1555.92], [-3000.83, -1553.0], [-3001.76, -1551.86], [-2998.41, -1549.11], [-2997.46, -1550.25], [-2994.1, -1547.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2950.3, -1528.42], [-2958.75, -1518.32], [-2955.63, -1515.68], [-2956.86, -1514.23], [-2949.39, -1507.89], [-2939.72, -1519.47], [-2950.3, -1528.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-3114.12, -1353.13], [-3119.25, -1357.58], [-3121.35, -1355.16], [-3122.3, -1355.99], [-3129.71, -1347.52], [-3120.59, -1339.6], [-3113.41, -1347.8], [-3116.46, -1350.45], [-3114.12, -1353.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2940.45, -1032.3], [-2948.86, -1033.12], [-2950.14, -1020.12], [-2941.74, -1019.29], [-2940.45, -1032.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-3088.96, -1278.95], [-3091.49, -1276.16], [-3092.94, -1277.44], [-3095.0, -1279.23], [-3095.69, -1278.47], [-3096.72, -1277.27], [-3104.72, -1267.63], [-3097.63, -1261.63], [-3095.8, -1263.66], [-3094.79, -1262.89], [-3084.75, -1275.13], [-3085.11, -1275.45], [-3088.96, -1278.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2675.81, -1234.52], [-2685.43, -1242.85], [-2692.02, -1235.27], [-2686.09, -1230.13], [-2688.77, -1227.07], [-2683.01, -1222.08], [-2678.82, -1226.89], [-2680.9, -1228.68], [-2675.81, -1234.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2534.79, -1243.37], [-2542.9, -1234.22], [-2535.94, -1228.24], [-2531.94, -1232.53], [-2530.17, -1231.06], [-2527.53, -1234.06], [-2529.51, -1235.92], [-2528.14, -1237.48], [-2534.79, -1243.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3056.16, -1111.45], [-3062.21, -1116.71], [-3066.53, -1111.77], [-3060.47, -1106.51], [-3056.16, -1111.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2747.03, -1459.6], [-2745.05, -1461.95], [-2743.78, -1460.87], [-2739.92, -1465.43], [-2750.07, -1474.04], [-2755.92, -1467.14], [-2747.03, -1459.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2913.43, -1030.86], [-2913.13, -1032.84], [-2908.17, -1032.07], [-2907.24, -1038.08], [-2914.1, -1039.13], [-2915.02, -1033.17], [-2919.07, -1033.8], [-2921.02, -1021.22], [-2918.33, -1020.81], [-2918.65, -1018.74], [-2912.52, -1017.81], [-2910.56, -1030.41], [-2913.43, -1030.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3051.91, -1272.14], [-3058.32, -1277.89], [-3063.75, -1271.85], [-3057.33, -1266.09], [-3051.91, -1272.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2879.55, -1450.84], [-2877.2, -1453.65], [-2874.66, -1451.52], [-2871.13, -1455.73], [-2873.68, -1457.84], [-2872.33, -1459.46], [-2881.95, -1467.48], [-2889.19, -1458.87], [-2879.55, -1450.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3156.31, -1383.65], [-3162.92, -1389.15], [-3174.37, -1375.41], [-3167.77, -1369.91], [-3156.31, -1383.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2996.42, -1460.69], [-3007.07, -1470.06], [-3009.87, -1466.86], [-3005.94, -1463.4], [-3009.55, -1459.29], [-3002.84, -1453.39], [-2996.42, -1460.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2902.74, -1362.59], [-2910.35, -1369.07], [-2921.2, -1356.43], [-2913.59, -1349.95], [-2902.74, -1362.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2965.81, -1412.21], [-2973.04, -1418.18], [-2982.29, -1406.95], [-2975.06, -1401.0], [-2965.81, -1412.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2552.98, -1187.82], [-2556.83, -1191.46], [-2565.5, -1182.3], [-2556.9, -1174.17], [-2549.75, -1181.72], [-2554.5, -1186.21], [-2552.98, -1187.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2686.26, -1243.48], [-2696.34, -1252.46], [-2697.3, -1251.4], [-2699.63, -1253.48], [-2704.52, -1248.02], [-2701.91, -1245.71], [-2706.12, -1241.01], [-2696.31, -1232.26], [-2686.26, -1243.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2649.21, -1463.52], [-2656.75, -1470.55], [-2665.03, -1461.74], [-2661.99, -1458.91], [-2663.65, -1457.13], [-2659.16, -1452.93], [-2649.21, -1463.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3022.07, -1251.91], [-3018.91, -1255.68], [-3017.96, -1254.88], [-3015.11, -1258.27], [-3014.95, -1258.15], [-3012.62, -1260.92], [-3012.94, -1261.18], [-3010.55, -1264.03], [-3011.73, -1265.01], [-3010.55, -1266.4], [-3015.12, -1270.21], [-3016.36, -1268.73], [-3019.06, -1270.99], [-3023.03, -1266.26], [-3022.67, -1265.97], [-3026.25, -1261.71], [-3022.96, -1258.97], [-3026.08, -1255.26], [-3022.07, -1251.91]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2705.09, -1235.48], [-2711.45, -1240.95], [-2716.79, -1234.74], [-2710.44, -1229.28], [-2705.09, -1235.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2777.59, -1317.82], [-2784.49, -1323.7], [-2786.14, -1321.78], [-2787.0, -1322.52], [-2797.93, -1309.77], [-2790.17, -1303.16], [-2777.59, -1317.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2948.85, -1339.17], [-2957.62, -1347.04], [-2965.35, -1338.48], [-2956.57, -1330.61], [-2948.85, -1339.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2776.56, -1488.45], [-2773.27, -1492.3], [-2772.7, -1491.81], [-2769.3, -1495.77], [-2769.88, -1496.27], [-2767.45, -1499.09], [-2769.83, -1501.18], [-2765.96, -1505.75], [-2768.68, -1508.38], [-2769.12, -1507.87], [-2769.99, -1508.6], [-2771.46, -1506.87], [-2772.34, -1507.66], [-2783.99, -1494.42], [-2776.56, -1488.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2842.48, -1440.2], [-2850.23, -1447.08], [-2859.52, -1436.7], [-2856.5, -1434.01], [-2857.41, -1432.98], [-2852.68, -1428.78], [-2842.48, -1440.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2643.39, -1140.85], [-2642.2, -1142.14], [-2644.83, -1144.52], [-2647.72, -1141.37], [-2649.82, -1143.26], [-2657.94, -1134.36], [-2649.27, -1126.5], [-2639.45, -1137.28], [-2643.39, -1140.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2877.9, -1505.37], [-2883.35, -1509.92], [-2886.64, -1505.98], [-2881.2, -1501.44], [-2877.9, -1505.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2681.92, -1323.03], [-2687.55, -1327.65], [-2694.21, -1319.52], [-2688.59, -1314.91], [-2681.92, -1323.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3146.42, -1359.24], [-3148.2, -1360.79], [-3152.39, -1355.97], [-3149.94, -1353.84], [-3146.36, -1357.97], [-3145.75, -1358.66], [-3146.42, -1359.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2862.64, -1015.75], [-2863.81, -1031.6], [-2875.7, -1030.73], [-2874.53, -1014.87], [-2862.64, -1015.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2581.29, -1318.74], [-2578.1, -1322.6], [-2576.17, -1321.01], [-2572.22, -1325.79], [-2581.35, -1333.32], [-2582.85, -1331.5], [-2586.31, -1334.34], [-2590.22, -1329.59], [-2586.85, -1326.81], [-2588.56, -1324.73], [-2581.29, -1318.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2553.03, -1383.07], [-2557.98, -1387.26], [-2566.82, -1376.91], [-2558.59, -1369.93], [-2551.11, -1378.7], [-2554.39, -1381.49], [-2553.03, -1383.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2713.48, -1363.12], [-2698.12, -1381.72], [-2705.65, -1387.95], [-2711.33, -1381.08], [-2713.74, -1383.07], [-2718.79, -1376.94], [-2716.31, -1374.9], [-2720.94, -1369.29], [-2713.48, -1363.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[-2938.8, -1549.94], [-2943.78, -1554.05], [-2946.07, -1551.24], [-2941.09, -1547.14], [-2938.8, -1549.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2929.39, -1404.53], [-2934.34, -1408.93], [-2937.18, -1405.74], [-2932.22, -1401.34], [-2929.39, -1404.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2862.17, -1237.72], [-2872.11, -1245.96], [-2876.3, -1240.94], [-2866.35, -1232.69], [-2862.17, -1237.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2736.67, -1414.56], [-2743.63, -1420.83], [-2752.29, -1411.27], [-2745.34, -1405.0], [-2736.67, -1414.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2624.63, -1159.67], [-2630.93, -1165.33], [-2635.77, -1159.95], [-2629.47, -1154.28], [-2624.63, -1159.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2612.93, -1310.82], [-2619.97, -1316.25], [-2629.29, -1304.22], [-2622.25, -1298.8], [-2612.93, -1310.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2974.95, -1480.13], [-2969.91, -1486.05], [-2978.13, -1493.03], [-2977.98, -1493.21], [-2981.16, -1495.92], [-2988.85, -1486.86], [-2985.21, -1483.78], [-2983.59, -1485.69], [-2978.65, -1481.5], [-2977.78, -1482.53], [-2974.95, -1480.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2904.13, -1413.94], [-2897.72, -1420.81], [-2900.34, -1423.23], [-2897.34, -1426.44], [-2904.93, -1433.44], [-2907.38, -1430.81], [-2909.1, -1432.4], [-2916.44, -1424.51], [-2912.51, -1420.87], [-2913.92, -1419.36], [-2909.55, -1415.33], [-2907.74, -1417.28], [-2904.13, -1413.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2804.63, -1402.37], [-2802.17, -1405.27], [-2806.8, -1409.2], [-2811.13, -1404.09], [-2812.68, -1405.4], [-2814.86, -1402.83], [-2813.68, -1401.83], [-2817.95, -1396.79], [-2809.98, -1390.04], [-2801.67, -1399.85], [-2804.63, -1402.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2995.78, -1380.75], [-3001.69, -1385.72], [-3012.05, -1373.4], [-3006.15, -1368.44], [-2995.78, -1380.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2507.01, -1297.03], [-2512.78, -1302.14], [-2518.94, -1295.06], [-2513.25, -1290.14], [-2507.01, -1297.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2694.12, -1476.05], [-2700.29, -1481.04], [-2705.78, -1474.26], [-2699.6, -1469.27], [-2694.12, -1476.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2866.69, -1458.31], [-2873.51, -1449.69], [-2872.0, -1448.51], [-2874.26, -1445.67], [-2868.18, -1440.89], [-2859.55, -1451.79], [-2863.55, -1454.94], [-2863.11, -1455.5], [-2866.69, -1458.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2810.26, -1482.44], [-2814.46, -1485.82], [-2815.86, -1484.09], [-2818.74, -1486.42], [-2824.47, -1479.38], [-2817.39, -1473.67], [-2810.26, -1482.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2611.74, -1388.61], [-2616.43, -1392.68], [-2620.7, -1387.77], [-2615.86, -1383.55], [-2611.74, -1388.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2805.41, -1553.26], [-2808.79, -1556.11], [-2812.25, -1552.0], [-2808.86, -1549.16], [-2805.41, -1553.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3084.65, -1309.3], [-3077.91, -1303.9], [-3070.4, -1313.22], [-3070.89, -1313.62], [-3069.84, -1314.92], [-3076.09, -1319.91], [-3084.65, -1309.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2483.19, -1292.64], [-2480.4, -1290.27], [-2476.1, -1295.3], [-2478.98, -1297.66], [-2483.19, -1292.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2766.94, -1352.96], [-2761.37, -1358.93], [-2756.49, -1354.42], [-2746.82, -1364.79], [-2752.76, -1370.28], [-2760.67, -1361.8], [-2762.95, -1363.9], [-2760.09, -1366.96], [-2763.77, -1370.36], [-2773.94, -1359.44], [-2766.94, -1352.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-2972.62, -1342.64], [-2963.56, -1352.63], [-2971.15, -1359.48], [-2981.79, -1347.75], [-2976.04, -1342.57], [-2974.46, -1344.3], [-2972.62, -1342.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2936.5, -1045.05], [-2937.22, -1038.38], [-2930.8, -1037.69], [-2930.06, -1044.35], [-2936.5, -1045.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2556.95, -1205.31], [-2552.52, -1201.68], [-2548.33, -1206.6], [-2552.83, -1210.29], [-2556.95, -1205.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2947.74, -1075.19], [-2941.75, -1082.96], [-2951.54, -1090.76], [-2957.66, -1083.12], [-2958.1, -1082.56], [-2954.57, -1079.74], [-2954.13, -1080.29], [-2947.74, -1075.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2844.63, -1329.51], [-2849.73, -1333.85], [-2854.28, -1328.48], [-2849.18, -1324.15], [-2844.63, -1329.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2788.84, -1385.35], [-2798.46, -1394.15], [-2806.57, -1385.35], [-2804.1, -1383.1], [-2805.49, -1381.59], [-2798.34, -1375.04], [-2788.84, -1385.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2697.89, -1507.18], [-2703.47, -1511.94], [-2707.32, -1507.44], [-2708.47, -1508.43], [-2714.36, -1501.52], [-2707.63, -1495.77], [-2697.89, -1507.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2926.98, -1450.57], [-2935.91, -1458.41], [-2943.42, -1449.88], [-2939.66, -1446.59], [-2942.85, -1442.95], [-2937.68, -1438.4], [-2926.98, -1450.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3120.0, -1419.01], [-3125.96, -1411.77], [-3124.06, -1410.12], [-3126.93, -1406.79], [-3121.17, -1402.02], [-3112.84, -1412.24], [-3111.18, -1410.69], [-3106.87, -1415.79], [-3111.96, -1419.76], [-3115.63, -1415.83], [-3120.0, -1419.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2827.03, -1431.11], [-2834.85, -1437.46], [-2836.36, -1435.62], [-2839.76, -1438.39], [-2849.55, -1426.34], [-2833.92, -1413.64], [-2828.15, -1420.74], [-2832.54, -1424.3], [-2827.03, -1431.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-3020.51, -1481.12], [-3025.75, -1485.43], [-3030.3, -1479.9], [-3025.06, -1475.58], [-3020.51, -1481.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2592.8, -1393.49], [-2590.49, -1396.28], [-2587.35, -1393.7], [-2583.72, -1398.07], [-2586.66, -1400.49], [-2584.65, -1402.91], [-2583.58, -1402.04], [-2578.38, -1408.31], [-2586.55, -1415.04], [-2599.71, -1399.18], [-2592.8, -1393.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-2978.28, -1036.82], [-2972.48, -1043.69], [-2974.06, -1045.03], [-2973.68, -1045.46], [-2976.49, -1047.83], [-2975.45, -1049.11], [-2980.34, -1053.25], [-2980.55, -1053.0], [-2982.21, -1054.4], [-2987.17, -1048.5], [-2985.5, -1047.1], [-2987.85, -1044.31], [-2980.15, -1037.81], [-2979.85, -1038.15], [-2978.28, -1036.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2677.51, -1487.01], [-2685.19, -1493.64], [-2688.53, -1489.8], [-2690.63, -1491.6], [-2695.57, -1485.88], [-2683.74, -1475.7], [-2679.12, -1481.03], [-2679.81, -1481.62], [-2677.96, -1483.77], [-2679.31, -1484.93], [-2677.51, -1487.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2989.4, -1445.07], [-2983.11, -1439.88], [-2978.46, -1445.12], [-2984.52, -1450.43], [-2989.4, -1445.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-3005.76, -1500.59], [-2999.51, -1506.96], [-3008.2, -1515.49], [-3016.96, -1506.57], [-3010.75, -1500.47], [-3008.24, -1503.03], [-3005.76, -1500.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2586.51, -1249.19], [-2583.95, -1252.17], [-2581.09, -1249.73], [-2576.04, -1255.62], [-2587.36, -1265.33], [-2592.83, -1258.96], [-2592.41, -1258.6], [-2594.57, -1256.09], [-2586.51, -1249.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2738.44, -1393.38], [-2734.56, -1397.66], [-2730.55, -1394.07], [-2722.11, -1403.38], [-2727.94, -1408.61], [-2730.03, -1406.3], [-2731.01, -1407.18], [-2732.65, -1405.36], [-2735.8, -1408.2], [-2744.38, -1398.71], [-2738.44, -1393.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-3150.92, -1343.04], [-3155.59, -1347.09], [-3160.31, -1341.64], [-3155.64, -1337.59], [-3150.92, -1343.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2684.06, -1282.32], [-2682.25, -1284.46], [-2680.17, -1282.71], [-2672.27, -1292.06], [-2677.77, -1296.71], [-2676.65, -1298.04], [-2682.75, -1303.19], [-2693.58, -1290.36], [-2684.06, -1282.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-2928.17, -1307.23], [-2921.26, -1314.24], [-2930.58, -1323.37], [-2940.69, -1313.11], [-2936.73, -1309.23], [-2933.53, -1312.48], [-2928.17, -1307.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-3001.77, -1446.01], [-3006.65, -1450.21], [-3009.22, -1447.24], [-3011.76, -1449.42], [-3021.2, -1438.53], [-3013.77, -1432.14], [-3001.77, -1446.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3044.29, -1125.78], [-3049.62, -1130.24], [-3054.8, -1124.1], [-3049.47, -1119.64], [-3044.29, -1125.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2645.03, -1443.88], [-2649.84, -1448.01], [-2651.9, -1445.59], [-2653.12, -1446.63], [-2660.89, -1437.59], [-2653.52, -1431.25], [-2646.27, -1439.71], [-2647.62, -1440.87], [-2645.03, -1443.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2668.86, -1451.86], [-2674.89, -1457.04], [-2679.0, -1452.26], [-2672.97, -1447.07], [-2668.86, -1451.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3071.51, -1443.47], [-3077.87, -1448.47], [-3083.32, -1441.56], [-3076.95, -1436.55], [-3071.51, -1443.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2903.29, -1271.16], [-2907.77, -1265.99], [-2896.47, -1256.18], [-2892.01, -1261.68], [-2903.29, -1271.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2767.34, -1519.97], [-2771.85, -1523.74], [-2776.84, -1517.77], [-2772.36, -1514.15], [-2767.34, -1519.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3139.26, -1348.47], [-3132.19, -1356.64], [-3129.0, -1353.9], [-3123.84, -1359.87], [-3134.48, -1369.02], [-3145.39, -1356.43], [-3141.26, -1352.88], [-3142.6, -1351.34], [-3139.26, -1348.47]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2616.48, -1124.96], [-2613.23, -1128.35], [-2618.91, -1133.11], [-2622.84, -1128.42], [-2617.39, -1123.87], [-2616.48, -1124.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2884.38, -1287.72], [-2891.78, -1278.95], [-2891.56, -1278.75], [-2895.55, -1274.03], [-2887.8, -1267.53], [-2876.39, -1281.04], [-2884.38, -1287.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2869.48, -1376.41], [-2866.03, -1380.31], [-2863.7, -1378.27], [-2857.78, -1384.98], [-2860.96, -1387.77], [-2858.51, -1390.56], [-2866.33, -1397.42], [-2870.41, -1392.81], [-2874.51, -1396.42], [-2874.03, -1396.97], [-2874.86, -1397.69], [-2872.43, -1400.44], [-2872.57, -1400.55], [-2871.99, -1401.22], [-2876.31, -1405.0], [-2876.98, -1404.25], [-2877.72, -1404.91], [-2880.18, -1402.11], [-2881.15, -1402.96], [-2884.56, -1399.12], [-2885.48, -1399.93], [-2888.71, -1396.27], [-2877.69, -1386.6], [-2879.17, -1384.91], [-2869.48, -1376.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.332, "pop": 166, "jobs": 0}}, {"shape": {"outer": [[-2544.37, -1250.16], [-2551.27, -1256.05], [-2562.41, -1242.97], [-2555.5, -1237.08], [-2544.37, -1250.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2594.81, -1138.92], [-2600.34, -1143.46], [-2604.65, -1138.23], [-2599.13, -1133.67], [-2594.81, -1138.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-3007.19, -1074.04], [-3014.94, -1080.35], [-3022.44, -1071.19], [-3014.69, -1064.89], [-3007.19, -1074.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2507.22, -1186.8], [-2502.13, -1193.18], [-2512.6, -1201.52], [-2514.76, -1198.81], [-2516.31, -1200.03], [-2520.03, -1195.36], [-2510.49, -1187.76], [-2509.69, -1188.76], [-2507.22, -1186.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3000.09, -1067.42], [-3003.99, -1070.69], [-3004.4, -1070.21], [-3010.28, -1063.18], [-3002.66, -1056.8], [-2996.78, -1063.81], [-3000.5, -1066.93], [-3000.09, -1067.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2865.07, -1269.01], [-2871.7, -1274.87], [-2874.22, -1272.04], [-2875.78, -1273.43], [-2882.23, -1266.17], [-2873.44, -1258.41], [-2866.97, -1265.68], [-2867.56, -1266.21], [-2865.07, -1269.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2848.44, -1018.03], [-2848.67, -1024.05], [-2851.24, -1023.95], [-2851.47, -1030.13], [-2861.23, -1029.74], [-2860.69, -1015.9], [-2851.56, -1016.25], [-2851.63, -1017.91], [-2848.44, -1018.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2686.21, -1304.33], [-2690.32, -1307.86], [-2692.55, -1305.26], [-2696.63, -1308.76], [-2705.11, -1298.87], [-2696.92, -1291.84], [-2686.21, -1304.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3145.94, -1330.56], [-3149.57, -1333.7], [-3153.54, -1329.14], [-3149.92, -1325.99], [-3145.94, -1330.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2993.04, -1490.9], [-2986.03, -1499.53], [-2994.21, -1506.17], [-3000.95, -1497.89], [-2998.46, -1495.87], [-2999.6, -1494.47], [-2996.11, -1491.62], [-2995.25, -1492.69], [-2993.04, -1490.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2773.72, -1375.85], [-2779.93, -1381.38], [-2781.99, -1379.09], [-2784.17, -1381.02], [-2790.79, -1373.63], [-2779.84, -1363.88], [-2773.93, -1370.47], [-2776.5, -1372.76], [-2773.72, -1375.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2969.51, -1327.49], [-2975.18, -1332.27], [-2979.57, -1327.08], [-2973.9, -1322.28], [-2969.51, -1327.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2849.02, -1258.34], [-2855.84, -1264.29], [-2862.76, -1256.42], [-2864.7, -1258.11], [-2869.23, -1252.97], [-2860.46, -1245.32], [-2849.02, -1258.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-3049.33, -1277.34], [-3047.01, -1280.1], [-3041.9, -1275.82], [-3039.52, -1278.63], [-3039.19, -1278.35], [-3036.92, -1281.05], [-3037.28, -1281.34], [-3035.07, -1283.96], [-3036.32, -1285.01], [-3035.38, -1286.13], [-3041.92, -1291.6], [-3043.56, -1289.65], [-3044.39, -1290.35], [-3052.86, -1280.29], [-3049.33, -1277.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3005.94, -1349.69], [-3000.54, -1356.47], [-3007.4, -1361.94], [-3009.19, -1359.69], [-3014.58, -1363.98], [-3018.96, -1358.49], [-3013.85, -1354.42], [-3013.09, -1355.39], [-3005.94, -1349.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-3030.71, -1262.96], [-3034.81, -1258.0], [-3031.66, -1255.35], [-3027.57, -1260.39], [-3030.71, -1262.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2754.97, -1218.09], [-2745.28, -1229.82], [-2750.81, -1234.38], [-2755.12, -1229.18], [-2756.71, -1230.48], [-2762.09, -1223.97], [-2754.97, -1218.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3103.01, -1339.98], [-3105.58, -1342.09], [-3106.49, -1340.99], [-3107.68, -1341.97], [-3107.08, -1342.69], [-3109.58, -1344.76], [-3115.39, -1337.78], [-3108.94, -1332.45], [-3103.73, -1338.71], [-3103.92, -1338.87], [-3103.01, -1339.98]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2514.2, -1283.74], [-2522.12, -1290.49], [-2530.68, -1280.42], [-2522.75, -1273.68], [-2514.2, -1283.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2952.09, -1549.77], [-2957.93, -1554.53], [-2963.4, -1547.77], [-2957.56, -1543.01], [-2952.09, -1549.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2621.75, -1119.16], [-2628.1, -1124.97], [-2635.83, -1116.58], [-2629.48, -1110.77], [-2621.75, -1119.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2515.59, -1224.37], [-2522.3, -1229.84], [-2530.22, -1220.13], [-2523.51, -1214.66], [-2515.59, -1224.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-3031.99, -1492.04], [-3037.93, -1497.09], [-3043.27, -1490.8], [-3037.32, -1485.76], [-3031.99, -1492.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-3042.42, -1111.23], [-3049.38, -1116.89], [-3060.7, -1103.9], [-3053.74, -1098.22], [-3042.42, -1111.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3070.9, -1111.89], [-3065.23, -1118.37], [-3075.23, -1127.21], [-3075.58, -1126.83], [-3077.62, -1128.73], [-3082.62, -1122.84], [-3080.61, -1121.09], [-3081.28, -1120.35], [-3077.99, -1117.67], [-3078.56, -1116.96], [-3075.65, -1114.58], [-3075.07, -1115.29], [-3070.9, -1111.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2772.97, -1551.1], [-2760.49, -1565.66], [-2767.61, -1571.74], [-2780.09, -1557.03], [-2772.97, -1551.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2576.02, -1152.61], [-2584.02, -1159.56], [-2595.25, -1146.64], [-2587.26, -1139.68], [-2576.02, -1152.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2591.11, -1206.87], [-2584.06, -1201.06], [-2577.94, -1208.51], [-2580.05, -1210.33], [-2578.46, -1212.13], [-2583.33, -1216.03], [-2591.11, -1206.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2812.58, -1351.97], [-2820.23, -1358.94], [-2825.97, -1352.68], [-2824.7, -1351.53], [-2831.57, -1344.05], [-2825.18, -1338.23], [-2812.58, -1351.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2836.57, -1058.16], [-2834.61, -1058.23], [-2834.82, -1064.21], [-2848.02, -1063.74], [-2847.25, -1042.06], [-2836.45, -1042.45], [-2837.02, -1058.14], [-2836.57, -1058.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-3017.35, -1134.49], [-3013.09, -1139.48], [-3015.37, -1141.41], [-3014.71, -1142.17], [-3022.76, -1148.98], [-3028.69, -1142.02], [-3021.42, -1135.87], [-3020.4, -1137.08], [-3017.35, -1134.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2986.96, -1059.5], [-2991.31, -1063.07], [-2998.97, -1053.74], [-2992.1, -1048.08], [-2985.78, -1055.73], [-2988.29, -1057.81], [-2986.96, -1059.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3093.8, -1332.87], [-3098.88, -1337.12], [-3100.44, -1335.26], [-3102.69, -1337.15], [-3107.65, -1331.29], [-3104.52, -1328.66], [-3109.07, -1323.29], [-3104.87, -1319.76], [-3093.8, -1332.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3010.08, -1520.83], [-3022.58, -1532.09], [-3030.05, -1522.83], [-3026.7, -1520.15], [-3028.04, -1518.49], [-3018.6, -1510.98], [-3010.08, -1520.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-2958.98, -1090.17], [-2956.85, -1088.39], [-2952.78, -1093.22], [-2961.06, -1100.14], [-2972.19, -1086.93], [-2969.74, -1084.88], [-2970.09, -1084.47], [-2966.38, -1081.38], [-2958.98, -1090.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3030.31, -1227.51], [-3028.11, -1229.88], [-3025.86, -1227.78], [-3020.8, -1233.21], [-3033.08, -1244.63], [-3038.74, -1238.54], [-3034.79, -1234.88], [-3036.38, -1233.17], [-3030.31, -1227.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2722.99, -1483.77], [-2733.21, -1492.41], [-2739.86, -1484.53], [-2729.64, -1475.9], [-2722.99, -1483.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2824.8, -1331.05], [-2828.44, -1334.37], [-2832.72, -1329.68], [-2829.08, -1326.36], [-2824.8, -1331.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3057.44, -1254.77], [-3051.61, -1249.7], [-3046.45, -1255.73], [-3052.32, -1260.75], [-3057.44, -1254.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-3085.9, -1251.66], [-3084.35, -1253.52], [-3083.32, -1252.65], [-3074.99, -1262.58], [-3079.01, -1265.96], [-3078.68, -1266.37], [-3080.47, -1267.87], [-3081.26, -1267.84], [-3082.12, -1267.8], [-3090.12, -1258.34], [-3089.87, -1258.14], [-3091.42, -1256.28], [-3085.9, -1251.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2822.85, -1288.28], [-2829.53, -1294.14], [-2837.0, -1285.67], [-2830.32, -1279.81], [-2822.85, -1288.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2793.66, -1267.52], [-2798.72, -1272.01], [-2808.54, -1260.93], [-2800.53, -1253.81], [-2791.73, -1263.73], [-2794.69, -1266.35], [-2793.66, -1267.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2639.54, -1285.8], [-2645.26, -1290.88], [-2650.69, -1284.75], [-2644.96, -1279.68], [-2639.54, -1285.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2874.1, -1648.54], [-2882.03, -1639.41], [-2876.45, -1634.55], [-2877.83, -1632.98], [-2873.75, -1629.43], [-2872.33, -1631.04], [-2864.12, -1623.92], [-2863.68, -1624.44], [-2861.17, -1622.27], [-2855.33, -1629.14], [-2858.04, -1631.5], [-2856.51, -1633.26], [-2874.1, -1648.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-2706.03, -1515.1], [-2712.99, -1520.82], [-2719.99, -1512.32], [-2713.03, -1506.6], [-2706.03, -1515.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2599.47, -1404.79], [-2591.73, -1413.52], [-2596.94, -1418.09], [-2598.13, -1416.74], [-2602.41, -1420.51], [-2607.17, -1415.12], [-2607.88, -1415.75], [-2610.92, -1412.3], [-2603.77, -1406.03], [-2602.51, -1407.47], [-2599.47, -1404.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2713.17, -1241.06], [-2718.06, -1245.32], [-2723.24, -1239.36], [-2718.35, -1235.1], [-2713.17, -1241.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3162.48, -1317.2], [-3161.23, -1318.66], [-3160.51, -1318.04], [-3153.53, -1326.24], [-3160.34, -1331.89], [-3167.15, -1323.7], [-3166.75, -1323.37], [-3167.99, -1321.91], [-3162.48, -1317.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2539.42, -1175.87], [-2544.73, -1180.53], [-2551.57, -1172.72], [-2546.26, -1168.06], [-2539.42, -1175.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2990.18, -1120.92], [-2990.94, -1121.57], [-2989.66, -1123.07], [-2996.52, -1128.89], [-2997.85, -1127.33], [-2998.56, -1127.93], [-3005.27, -1120.06], [-3001.24, -1116.64], [-3002.96, -1114.61], [-2999.05, -1111.3], [-2997.35, -1113.29], [-2996.96, -1112.96], [-2990.18, -1120.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2971.63, -1552.71], [-2966.69, -1558.96], [-2972.69, -1563.69], [-2978.17, -1556.75], [-2975.08, -1554.31], [-2974.53, -1554.99], [-2971.63, -1552.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2706.32, -1308.03], [-2697.72, -1317.48], [-2704.61, -1323.74], [-2715.16, -1312.15], [-2710.8, -1308.18], [-2708.85, -1310.33], [-2706.32, -1308.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2714.01, -1185.95], [-2708.82, -1191.81], [-2719.03, -1200.84], [-2725.7, -1193.28], [-2718.35, -1186.78], [-2716.85, -1188.47], [-2714.01, -1185.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2606.39, -1178.87], [-2612.66, -1184.16], [-2623.07, -1171.82], [-2614.73, -1164.79], [-2611.7, -1168.39], [-2613.76, -1170.13], [-2606.39, -1178.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2999.66, -1443.31], [-3007.39, -1433.81], [-3006.56, -1433.15], [-3008.2, -1430.79], [-3002.15, -1425.93], [-2992.41, -1437.11], [-2999.66, -1443.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2906.66, -1384.34], [-2911.36, -1388.89], [-2916.09, -1384.01], [-2911.13, -1379.2], [-2912.06, -1378.23], [-2908.7, -1374.97], [-2904.22, -1379.6], [-2907.85, -1383.12], [-2906.66, -1384.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3061.86, -1435.69], [-3068.87, -1441.29], [-3077.82, -1430.16], [-3070.8, -1424.56], [-3061.86, -1435.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3040.17, -1386.62], [-3045.99, -1391.71], [-3050.48, -1386.59], [-3044.42, -1381.57], [-3040.17, -1386.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-3027.8, -1464.59], [-3036.45, -1471.61], [-3044.3, -1461.99], [-3035.64, -1454.97], [-3027.8, -1464.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2883.7, -1048.19], [-2883.68, -1050.62], [-2880.09, -1050.6], [-2880.04, -1060.28], [-2885.19, -1060.31], [-2885.2, -1058.87], [-2891.6, -1058.91], [-2891.66, -1048.23], [-2883.7, -1048.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2852.33, -1219.94], [-2848.54, -1224.68], [-2854.2, -1229.18], [-2858.0, -1224.45], [-2852.33, -1219.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2842.48, -1344.01], [-2847.94, -1348.97], [-2852.35, -1344.11], [-2846.89, -1339.15], [-2842.48, -1344.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-3023.91, -1151.56], [-3031.49, -1158.1], [-3034.43, -1154.72], [-3036.37, -1156.38], [-3041.21, -1150.81], [-3038.54, -1148.49], [-3038.91, -1148.06], [-3032.07, -1142.17], [-3023.91, -1151.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2761.79, -1530.24], [-2766.71, -1534.37], [-2769.9, -1530.21], [-2765.01, -1526.24], [-2761.79, -1530.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3009.33, -1098.73], [-3013.93, -1102.53], [-3019.4, -1095.95], [-3014.8, -1092.15], [-3009.33, -1098.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3054.69, -1399.67], [-3060.05, -1403.98], [-3064.75, -1398.15], [-3059.39, -1393.84], [-3054.69, -1399.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2685.47, -1501.71], [-2692.62, -1508.23], [-2705.63, -1494.04], [-2698.47, -1487.52], [-2685.47, -1501.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-3022.06, -1446.22], [-3016.67, -1452.86], [-3022.59, -1457.64], [-3020.51, -1460.19], [-3024.93, -1463.75], [-3033.34, -1453.38], [-3026.41, -1447.8], [-3025.46, -1448.95], [-3022.06, -1446.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2598.41, -1250.03], [-2604.24, -1243.2], [-2588.2, -1229.62], [-2583.16, -1235.7], [-2591.13, -1242.72], [-2589.73, -1244.38], [-2594.08, -1248.22], [-2595.04, -1247.07], [-2598.41, -1250.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2650.78, -1342.59], [-2658.49, -1348.96], [-2668.31, -1337.16], [-2660.59, -1330.79], [-2650.78, -1342.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2616.02, -1186.92], [-2623.18, -1193.24], [-2624.62, -1191.62], [-2627.14, -1193.85], [-2630.11, -1190.51], [-2627.89, -1188.55], [-2631.28, -1184.71], [-2623.8, -1178.11], [-2616.02, -1186.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2844.02, -1291.01], [-2837.08, -1298.46], [-2835.35, -1296.86], [-2832.71, -1299.69], [-2838.12, -1304.7], [-2839.89, -1302.81], [-2844.03, -1306.63], [-2851.84, -1298.23], [-2844.02, -1291.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2865.6, -1325.9], [-2873.93, -1333.63], [-2881.5, -1325.47], [-2873.16, -1317.74], [-2865.6, -1325.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3083.96, -1365.0], [-3079.89, -1370.42], [-3077.12, -1368.36], [-3072.64, -1374.31], [-3082.82, -1381.9], [-3091.36, -1370.51], [-3083.96, -1365.0]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2891.91, -1403.64], [-2889.01, -1407.16], [-2887.41, -1405.86], [-2883.03, -1411.18], [-2888.65, -1415.77], [-2890.43, -1413.61], [-2894.84, -1417.22], [-2900.34, -1410.53], [-2891.91, -1403.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2571.43, -1366.63], [-2576.88, -1371.18], [-2579.23, -1368.35], [-2573.79, -1363.8], [-2571.43, -1366.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-3035.94, -1081.84], [-3034.5, -1083.53], [-3033.95, -1083.07], [-3027.32, -1090.9], [-3034.29, -1096.79], [-3040.91, -1088.95], [-3040.23, -1088.38], [-3041.67, -1086.68], [-3035.94, -1081.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2485.96, -1262.74], [-2493.2, -1268.82], [-2503.48, -1256.59], [-2496.24, -1250.51], [-2485.96, -1262.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2572.48, -1378.52], [-2576.98, -1382.67], [-2582.41, -1376.79], [-2577.91, -1372.63], [-2572.48, -1378.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3142.19, -1315.98], [-3149.89, -1323.04], [-3157.37, -1314.89], [-3149.67, -1307.83], [-3142.19, -1315.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2560.68, -1343.24], [-2569.25, -1350.95], [-2578.73, -1340.41], [-2570.16, -1332.69], [-2560.68, -1343.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2954.46, -1142.23], [-2953.24, -1143.72], [-2952.58, -1143.19], [-2945.5, -1151.81], [-2945.87, -1152.11], [-2943.58, -1154.89], [-2946.08, -1156.93], [-2948.39, -1154.12], [-2952.37, -1157.37], [-2960.66, -1147.3], [-2954.46, -1142.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2536.49, -1194.96], [-2542.07, -1199.75], [-2547.03, -1193.96], [-2541.45, -1189.17], [-2536.49, -1194.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-3038.49, -1214.62], [-3034.14, -1219.85], [-3036.75, -1222.03], [-3034.67, -1224.52], [-3038.43, -1227.65], [-3036.89, -1229.5], [-3043.78, -1235.23], [-3052.48, -1224.76], [-3041.99, -1216.04], [-3041.26, -1216.92], [-3038.49, -1214.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-2408.05, -1241.63], [-2408.73, -1257.34], [-2419.41, -1256.87], [-2418.74, -1241.16], [-2408.05, -1241.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2495.15, -1082.86], [-2503.24, -1090.04], [-2510.88, -1081.49], [-2502.8, -1074.31], [-2495.15, -1082.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2423.85, -1022.0], [-2435.6, -1031.88], [-2440.89, -1025.62], [-2429.15, -1015.75], [-2423.85, -1022.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2479.78, -1029.64], [-2477.5, -1032.48], [-2475.96, -1031.24], [-2471.25, -1037.1], [-2476.47, -1041.28], [-2481.48, -1035.02], [-2480.59, -1034.32], [-2482.55, -1031.87], [-2479.78, -1029.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2498.53, -1030.75], [-2501.12, -1037.6], [-2506.59, -1035.54], [-2503.99, -1028.7], [-2498.53, -1030.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2513.87, -1091.87], [-2521.34, -1098.39], [-2530.54, -1087.91], [-2523.08, -1081.39], [-2513.87, -1091.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2337.57, -1239.67], [-2337.55, -1241.83], [-2333.66, -1241.8], [-2333.58, -1250.35], [-2346.09, -1250.47], [-2346.17, -1242.72], [-2342.81, -1242.69], [-2342.84, -1239.72], [-2337.57, -1239.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2477.23, -1042.68], [-2482.64, -1047.23], [-2482.94, -1046.86], [-2485.24, -1048.75], [-2490.05, -1043.34], [-2487.62, -1041.26], [-2487.91, -1040.91], [-2482.58, -1036.02], [-2477.23, -1042.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2550.87, -1059.25], [-2557.52, -1065.32], [-2565.17, -1057.02], [-2558.52, -1050.94], [-2550.87, -1059.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2484.65, -1155.48], [-2490.19, -1160.1], [-2497.17, -1151.76], [-2491.64, -1147.13], [-2484.65, -1155.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2359.31, -1193.62], [-2359.81, -1208.77], [-2369.25, -1208.46], [-2368.84, -1195.59], [-2363.95, -1195.76], [-2363.88, -1193.48], [-2359.31, -1193.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2420.15, -1208.9], [-2436.11, -1208.97], [-2436.17, -1195.76], [-2420.21, -1195.7], [-2420.15, -1208.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-2387.51, -1271.93], [-2377.37, -1272.22], [-2377.61, -1280.7], [-2387.75, -1280.4], [-2387.51, -1271.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2421.91, -1141.98], [-2429.09, -1148.85], [-2437.21, -1140.34], [-2430.04, -1133.49], [-2421.91, -1141.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2486.19, -1135.57], [-2493.4, -1141.82], [-2501.27, -1132.81], [-2497.11, -1129.21], [-2498.6, -1127.47], [-2495.56, -1124.84], [-2486.19, -1135.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2473.9, -1131.07], [-2481.71, -1137.59], [-2493.1, -1124.03], [-2485.29, -1117.52], [-2473.9, -1131.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2330.54, -1196.76], [-2331.27, -1206.72], [-2336.4, -1206.34], [-2336.59, -1208.92], [-2343.6, -1208.4], [-2343.1, -1201.66], [-2349.69, -1201.18], [-2349.1, -1193.13], [-2339.41, -1193.84], [-2339.58, -1196.1], [-2330.54, -1196.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-2429.17, -1086.57], [-2435.9, -1092.13], [-2444.47, -1081.84], [-2437.73, -1076.27], [-2429.17, -1086.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2435.94, -1242.5], [-2423.97, -1242.86], [-2424.4, -1257.12], [-2436.45, -1256.7], [-2435.94, -1242.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2356.22, -1147.26], [-2364.35, -1154.29], [-2372.74, -1144.58], [-2363.17, -1136.3], [-2358.04, -1142.23], [-2359.5, -1143.49], [-2356.22, -1147.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2352.97, -1264.02], [-2353.1, -1267.93], [-2360.02, -1267.69], [-2359.89, -1263.79], [-2352.97, -1264.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2441.04, -1095.87], [-2447.43, -1102.13], [-2452.14, -1097.36], [-2451.45, -1096.69], [-2455.21, -1092.89], [-2449.5, -1087.3], [-2441.04, -1095.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2542.24, -1051.86], [-2549.12, -1057.7], [-2556.2, -1049.4], [-2549.32, -1043.56], [-2542.24, -1051.86]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2485.88, -988.83], [-2483.49, -991.61], [-2482.66, -990.9], [-2477.28, -997.13], [-2484.5, -1003.32], [-2493.23, -993.18], [-2488.14, -988.83], [-2487.18, -989.95], [-2485.88, -988.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2402.53, -1272.56], [-2393.1, -1272.86], [-2393.33, -1279.26], [-2402.74, -1278.98], [-2402.53, -1272.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2506.13, -1018.9], [-2513.41, -1024.95], [-2520.56, -1016.42], [-2515.66, -1012.34], [-2517.15, -1010.58], [-2514.77, -1008.59], [-2506.13, -1018.9]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2457.91, -1129.77], [-2464.37, -1135.34], [-2468.59, -1130.44], [-2462.14, -1124.87], [-2457.91, -1129.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2425.06, -1267.7], [-2425.53, -1276.81], [-2435.13, -1276.33], [-2434.67, -1267.21], [-2425.06, -1267.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2475.45, -1017.11], [-2479.03, -1020.46], [-2483.51, -1015.67], [-2479.95, -1012.32], [-2475.45, -1017.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2433.04, -1258.71], [-2425.9, -1258.94], [-2426.13, -1266.03], [-2433.3, -1265.78], [-2433.04, -1258.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2460.88, -1180.34], [-2468.98, -1187.16], [-2479.26, -1174.92], [-2471.15, -1168.11], [-2460.88, -1180.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2401.7, -1256.43], [-2403.45, -1256.36], [-2403.12, -1247.15], [-2396.67, -1247.38], [-2396.52, -1243.38], [-2393.26, -1243.5], [-2393.44, -1248.24], [-2395.53, -1248.17], [-2395.7, -1253.14], [-2392.72, -1253.24], [-2392.84, -1256.7], [-2396.15, -1256.59], [-2396.36, -1262.45], [-2401.91, -1262.26], [-2401.7, -1256.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2388.27, -1174.97], [-2392.36, -1178.36], [-2394.73, -1175.49], [-2395.86, -1176.42], [-2400.7, -1170.58], [-2398.89, -1169.08], [-2399.52, -1168.33], [-2394.16, -1163.9], [-2393.54, -1164.66], [-2389.61, -1169.04], [-2389.66, -1169.09], [-2388.57, -1170.41], [-2390.64, -1172.1], [-2388.27, -1174.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2481.55, -1070.76], [-2490.21, -1077.68], [-2496.33, -1070.06], [-2487.67, -1063.14], [-2481.55, -1070.76]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2465.44, -1156.37], [-2461.33, -1160.55], [-2460.69, -1159.91], [-2450.69, -1170.02], [-2457.14, -1176.38], [-2466.67, -1166.74], [-2465.51, -1165.59], [-2470.08, -1160.96], [-2465.44, -1156.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2387.57, -1245.7], [-2376.96, -1246.08], [-2377.58, -1264.03], [-2378.41, -1264.01], [-2378.49, -1265.96], [-2383.53, -1265.77], [-2383.47, -1263.9], [-2386.73, -1263.78], [-2386.57, -1259.86], [-2388.0, -1259.81], [-2387.57, -1245.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2428.28, -1098.91], [-2431.35, -1101.94], [-2435.99, -1097.24], [-2432.92, -1094.21], [-2428.28, -1098.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2534.16, -1043.75], [-2540.44, -1049.01], [-2546.73, -1041.56], [-2537.58, -1033.89], [-2533.5, -1038.71], [-2536.39, -1041.11], [-2534.16, -1043.75]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2352.61, -1273.0], [-2352.86, -1280.4], [-2360.75, -1280.14], [-2360.51, -1272.74], [-2352.61, -1273.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2333.27, -1254.71], [-2333.46, -1268.35], [-2340.71, -1268.24], [-2340.66, -1264.91], [-2342.3, -1264.88], [-2342.15, -1254.59], [-2333.27, -1254.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2329.75, -1171.94], [-2330.55, -1183.89], [-2340.39, -1183.24], [-2339.59, -1171.28], [-2329.75, -1171.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2393.53, -1097.17], [-2399.66, -1102.54], [-2404.08, -1097.5], [-2398.09, -1092.13], [-2393.53, -1097.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2467.69, -1136.29], [-2472.41, -1140.85], [-2477.09, -1136.03], [-2472.38, -1131.45], [-2467.69, -1136.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2330.65, -1151.19], [-2330.71, -1155.27], [-2329.63, -1155.29], [-2329.76, -1163.79], [-2338.94, -1163.64], [-2338.79, -1154.74], [-2334.51, -1154.81], [-2334.46, -1151.13], [-2330.65, -1151.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2459.61, -997.65], [-2463.55, -1000.83], [-2467.9, -995.44], [-2464.13, -992.4], [-2459.61, -997.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2452.59, -1047.65], [-2459.69, -1054.19], [-2469.52, -1043.58], [-2467.11, -1041.36], [-2468.72, -1039.63], [-2464.03, -1035.3], [-2452.59, -1047.65]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2513.57, -1070.69], [-2518.85, -1075.24], [-2523.13, -1070.29], [-2517.84, -1065.73], [-2513.57, -1070.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2402.84, -1210.27], [-2415.85, -1210.04], [-2415.66, -1199.04], [-2402.65, -1199.27], [-2402.84, -1210.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2431.52, -1152.6], [-2438.47, -1158.89], [-2449.41, -1146.8], [-2442.45, -1140.5], [-2431.52, -1152.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2400.0, -1108.81], [-2391.86, -1117.04], [-2406.6, -1131.64], [-2416.79, -1121.37], [-2407.52, -1112.19], [-2405.48, -1114.25], [-2400.0, -1108.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[-2467.15, -989.88], [-2472.7, -994.72], [-2474.9, -992.21], [-2476.26, -993.4], [-2484.3, -984.26], [-2477.38, -978.22], [-2467.15, -989.88]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2471.09, -1010.13], [-2475.38, -1014.38], [-2479.98, -1009.75], [-2475.68, -1005.49], [-2471.09, -1010.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2488.2, -1003.24], [-2495.12, -1008.83], [-2502.33, -999.97], [-2495.42, -994.38], [-2488.2, -1003.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2467.4, -1058.04], [-2476.24, -1066.07], [-2483.23, -1058.44], [-2479.19, -1054.76], [-2480.09, -1053.77], [-2478.8, -1052.6], [-2482.44, -1048.6], [-2478.94, -1045.42], [-2467.4, -1058.04]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2331.84, -1146.73], [-2326.44, -1146.93], [-2326.58, -1150.91], [-2331.96, -1150.71], [-2331.84, -1146.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2542.85, -1101.59], [-2534.54, -1094.93], [-2524.22, -1107.06], [-2531.26, -1112.84], [-2535.42, -1107.93], [-2536.87, -1109.07], [-2542.85, -1101.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2400.01, -1181.95], [-2406.79, -1187.81], [-2413.47, -1180.1], [-2406.69, -1174.22], [-2400.01, -1181.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2469.32, -1107.48], [-2459.0, -1098.44], [-2452.32, -1106.01], [-2463.94, -1116.2], [-2468.88, -1110.6], [-2467.57, -1109.46], [-2469.32, -1107.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2560.05, -1067.53], [-2566.92, -1073.59], [-2574.47, -1065.03], [-2567.6, -1058.98], [-2560.05, -1067.53]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2520.66, -1075.4], [-2526.02, -1079.95], [-2530.05, -1075.21], [-2524.69, -1070.65], [-2520.66, -1075.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2363.11, -1240.77], [-2363.94, -1258.51], [-2375.36, -1257.98], [-2374.53, -1240.25], [-2363.11, -1240.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2467.83, -1119.87], [-2474.15, -1125.5], [-2482.65, -1116.02], [-2476.34, -1110.39], [-2467.83, -1119.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2497.0, -1144.98], [-2503.82, -1150.72], [-2511.98, -1141.03], [-2505.15, -1135.29], [-2497.0, -1144.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2333.93, -1270.27], [-2334.11, -1281.34], [-2342.34, -1281.22], [-2342.26, -1276.83], [-2347.02, -1276.75], [-2346.95, -1272.13], [-2343.83, -1272.18], [-2343.8, -1270.11], [-2333.93, -1270.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2374.12, -1200.12], [-2374.52, -1208.85], [-2384.82, -1208.36], [-2384.28, -1196.88], [-2377.77, -1197.19], [-2377.9, -1199.95], [-2374.12, -1200.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2411.13, -1133.44], [-2419.38, -1141.01], [-2426.86, -1132.86], [-2418.6, -1125.28], [-2411.13, -1133.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2371.57, -1154.86], [-2379.17, -1161.22], [-2380.62, -1159.48], [-2382.87, -1161.41], [-2386.06, -1157.66], [-2383.71, -1155.75], [-2384.33, -1155.01], [-2376.74, -1148.71], [-2371.57, -1154.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2505.13, -1044.84], [-2509.03, -1040.7], [-2505.48, -1037.53], [-2501.48, -1041.67], [-2505.13, -1044.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2439.23, -1161.65], [-2446.37, -1167.79], [-2448.07, -1165.82], [-2449.83, -1167.32], [-2456.11, -1160.03], [-2451.75, -1156.28], [-2454.42, -1153.18], [-2449.88, -1149.27], [-2439.23, -1161.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2516.39, -1029.51], [-2525.07, -1037.6], [-2530.95, -1031.37], [-2529.97, -1030.45], [-2532.03, -1028.27], [-2524.33, -1021.08], [-2516.39, -1029.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2395.74, -1208.58], [-2398.93, -1208.56], [-2398.86, -1201.47], [-2395.66, -1201.49], [-2395.64, -1199.45], [-2393.17, -1199.46], [-2393.14, -1196.54], [-2387.96, -1196.59], [-2388.07, -1207.92], [-2395.73, -1207.85], [-2395.74, -1208.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2450.12, -1024.02], [-2444.7, -1030.46], [-2443.96, -1029.85], [-2439.8, -1034.79], [-2447.0, -1040.82], [-2456.58, -1029.43], [-2450.12, -1024.02]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2554.1, -1082.7], [-2558.91, -1077.7], [-2554.78, -1073.98], [-2549.97, -1078.98], [-2554.1, -1082.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2506.38, -1002.21], [-2504.42, -1004.5], [-2502.72, -1003.07], [-2494.55, -1012.7], [-2499.17, -1016.58], [-2500.09, -1015.49], [-2503.74, -1018.57], [-2510.73, -1010.33], [-2509.39, -1009.2], [-2511.6, -1006.6], [-2506.38, -1002.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2293.98, -859.09], [-2298.35, -853.84], [-2297.7, -841.19], [-2293.91, -841.32], [-2294.6, -852.63], [-2291.2, -856.4], [-2293.98, -859.09]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.019, "pop": 0, "jobs": 19}}, {"shape": {"outer": [[-2286.61, -841.72], [-2280.16, -841.96], [-2280.44, -849.36], [-2286.91, -849.12], [-2286.61, -841.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.031, "pop": 0, "jobs": 31}}, {"shape": {"outer": [[-2297.89, -1394.38], [-2298.62, -1404.2], [-2302.5, -1403.92], [-2302.67, -1406.23], [-2309.56, -1405.72], [-2309.38, -1403.27], [-2311.06, -1403.16], [-2310.47, -1395.12], [-2307.47, -1395.35], [-2307.34, -1393.67], [-2297.89, -1394.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2298.94, -1440.82], [-2299.5, -1447.27], [-2309.54, -1446.39], [-2309.23, -1442.9], [-2310.71, -1442.77], [-2310.19, -1436.84], [-2303.24, -1437.45], [-2303.5, -1440.42], [-2298.94, -1440.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2304.91, -840.81], [-2298.05, -841.12], [-2298.79, -856.91], [-2305.64, -856.59], [-2304.91, -840.81]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.03, "pop": 0, "jobs": 30}}, {"shape": {"outer": [[-2293.57, -841.27], [-2287.13, -841.66], [-2287.78, -852.82], [-2294.21, -852.44], [-2293.57, -841.27]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.02, "pop": 0, "jobs": 20}}, {"shape": {"outer": [[-2315.14, -840.28], [-2305.33, -840.67], [-2306.01, -857.55], [-2315.81, -857.16], [-2315.14, -840.28]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.093, "pop": 0, "jobs": 93}}, {"shape": {"outer": [[-2265.82, -1425.62], [-2266.51, -1434.54], [-2268.74, -1434.36], [-2268.94, -1436.97], [-2270.42, -1436.85], [-2270.73, -1440.81], [-2276.14, -1440.4], [-2275.31, -1429.49], [-2278.81, -1429.22], [-2278.3, -1422.55], [-2272.52, -1422.99], [-2272.69, -1425.09], [-2265.82, -1425.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2235.68, -1435.6], [-2237.11, -1449.66], [-2248.87, -1448.46], [-2247.43, -1434.41], [-2235.68, -1435.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2279.95, -841.99], [-2273.84, -842.21], [-2274.01, -846.82], [-2276.42, -848.75], [-2280.19, -848.64], [-2279.95, -841.99]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.011, "pop": 0, "jobs": 11}}, {"shape": {"outer": [[-2284.43, -1437.12], [-2285.05, -1442.27], [-2282.56, -1442.57], [-2283.27, -1448.5], [-2290.99, -1447.58], [-2290.79, -1445.92], [-2293.64, -1445.58], [-2293.26, -1442.47], [-2294.56, -1442.32], [-2294.11, -1438.58], [-2291.39, -1438.91], [-2291.08, -1436.32], [-2284.43, -1437.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2056.06, -1308.73], [-2056.27, -1315.08], [-2059.52, -1314.97], [-2059.32, -1308.62], [-2056.06, -1308.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1803.34, -1133.07], [-1803.23, -1137.89], [-1801.44, -1137.85], [-1801.28, -1144.95], [-1808.98, -1145.12], [-1809.05, -1142.11], [-1810.61, -1142.15], [-1810.75, -1136.18], [-1808.82, -1136.14], [-1808.89, -1133.2], [-1803.34, -1133.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2037.3, -1317.28], [-2037.79, -1327.82], [-2036.58, -1327.88], [-2036.94, -1335.67], [-2047.79, -1335.16], [-2046.98, -1317.82], [-2042.43, -1318.04], [-2042.38, -1317.04], [-2037.3, -1317.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1948.0, -1255.85], [-1948.23, -1261.87], [-1947.3, -1261.91], [-1947.66, -1271.31], [-1955.54, -1271.01], [-1955.0, -1257.01], [-1953.95, -1257.05], [-1953.9, -1255.62], [-1948.0, -1255.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2009.91, -1340.61], [-2017.99, -1340.56], [-2017.92, -1326.92], [-2009.85, -1326.96], [-2009.91, -1340.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1839.4, -1151.9], [-1845.03, -1151.74], [-1844.64, -1137.17], [-1835.4, -1137.41], [-1835.74, -1149.99], [-1839.35, -1149.89], [-1839.4, -1151.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1686.41, -1384.35], [-1677.35, -1384.72], [-1677.94, -1399.72], [-1686.79, -1399.47], [-1686.41, -1384.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2122.55, -1166.2], [-2127.19, -1166.07], [-2127.01, -1159.92], [-2122.38, -1160.05], [-2122.55, -1166.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1952.56, -1455.19], [-1956.3, -1455.13], [-1956.14, -1445.18], [-1948.0, -1445.32], [-1948.1, -1451.62], [-1949.87, -1451.59], [-1949.91, -1454.15], [-1952.54, -1454.11], [-1952.56, -1455.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1707.37, -1259.6], [-1707.93, -1276.78], [-1712.49, -1276.63], [-1712.38, -1273.21], [-1714.0, -1273.16], [-1714.06, -1274.79], [-1717.64, -1274.66], [-1717.14, -1259.27], [-1707.37, -1259.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1686.14, -1328.51], [-1686.88, -1343.73], [-1689.33, -1343.62], [-1689.42, -1345.62], [-1694.76, -1345.35], [-1694.67, -1343.49], [-1696.74, -1343.39], [-1695.99, -1328.04], [-1686.14, -1328.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1798.37, -1253.13], [-1784.9, -1253.56], [-1785.39, -1267.07], [-1798.96, -1266.58], [-1798.91, -1264.45], [-1808.08, -1264.12], [-1807.79, -1256.21], [-1798.5, -1256.56], [-1798.37, -1253.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-1845.76, -1224.81], [-1845.47, -1216.84], [-1839.26, -1217.06], [-1839.37, -1219.94], [-1837.17, -1220.01], [-1837.39, -1225.07], [-1845.76, -1224.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2108.92, -1333.36], [-2119.65, -1333.5], [-2119.81, -1321.16], [-2113.85, -1321.07], [-2113.86, -1320.09], [-2109.1, -1320.03], [-2108.92, -1333.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1847.84, -1288.63], [-1834.76, -1289.1], [-1834.98, -1295.55], [-1848.07, -1295.09], [-1847.84, -1288.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2068.13, -1159.93], [-2068.33, -1165.98], [-2072.89, -1165.84], [-2072.69, -1159.78], [-2068.13, -1159.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1916.55, -1209.09], [-1917.16, -1220.56], [-1926.18, -1220.08], [-1925.57, -1208.6], [-1916.55, -1209.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1934.92, -1371.78], [-1935.07, -1374.62], [-1934.6, -1374.64], [-1935.27, -1387.24], [-1939.45, -1387.02], [-1939.33, -1384.75], [-1942.67, -1384.57], [-1942.05, -1372.85], [-1941.33, -1372.9], [-1941.25, -1371.44], [-1934.92, -1371.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1994.9, -1416.13], [-1995.11, -1422.58], [-2001.92, -1422.36], [-2001.71, -1415.9], [-1994.9, -1416.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2123.57, -1286.49], [-2123.4, -1280.44], [-2116.48, -1280.64], [-2116.53, -1286.7], [-2123.57, -1286.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1967.2, -1445.98], [-1967.85, -1461.12], [-1976.78, -1460.73], [-1976.13, -1445.59], [-1967.2, -1445.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2002.23, -1300.59], [-2002.57, -1306.64], [-2013.34, -1306.04], [-2013.32, -1305.7], [-2015.86, -1305.56], [-2015.42, -1297.81], [-2004.62, -1298.42], [-2004.73, -1300.45], [-2002.23, -1300.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1868.91, -1134.05], [-1869.68, -1154.89], [-1880.41, -1154.5], [-1879.65, -1133.66], [-1868.91, -1134.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-1735.38, -1291.21], [-1735.76, -1297.8], [-1752.85, -1296.83], [-1752.47, -1290.24], [-1735.38, -1291.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1908.23, -1285.03], [-1908.71, -1294.71], [-1925.8, -1293.86], [-1925.33, -1284.18], [-1908.23, -1285.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1804.42, -1335.85], [-1804.9, -1343.83], [-1806.81, -1343.71], [-1806.92, -1345.68], [-1814.68, -1345.21], [-1814.46, -1341.63], [-1815.28, -1341.59], [-1814.89, -1335.22], [-1804.42, -1335.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1865.09, -1261.2], [-1853.26, -1261.63], [-1853.8, -1276.9], [-1865.64, -1276.47], [-1865.09, -1261.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2080.31, -1250.07], [-2081.32, -1266.01], [-2088.34, -1265.56], [-2088.12, -1262.16], [-2089.54, -1262.07], [-2088.77, -1250.0], [-2088.3, -1250.04], [-2088.11, -1247.12], [-2080.4, -1247.61], [-2080.55, -1250.05], [-2080.31, -1250.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2091.97, -1250.29], [-2090.75, -1250.38], [-2091.55, -1262.33], [-2100.09, -1261.76], [-2099.3, -1250.04], [-2097.64, -1250.16], [-2097.56, -1249.01], [-2091.9, -1249.38], [-2091.97, -1250.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1948.68, -1382.94], [-1948.92, -1389.62], [-1957.68, -1389.3], [-1957.52, -1385.08], [-1962.34, -1384.91], [-1961.89, -1372.73], [-1956.79, -1372.91], [-1956.86, -1374.76], [-1955.21, -1374.82], [-1955.51, -1382.69], [-1948.68, -1382.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1958.57, -1181.94], [-1958.76, -1188.03], [-1962.72, -1187.91], [-1962.53, -1181.81], [-1958.57, -1181.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1699.58, -1328.17], [-1700.88, -1342.96], [-1710.71, -1342.1], [-1709.17, -1324.56], [-1702.85, -1325.12], [-1703.09, -1327.85], [-1699.58, -1328.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1928.66, -1212.26], [-1929.14, -1220.27], [-1937.01, -1219.8], [-1936.28, -1207.35], [-1929.14, -1207.78], [-1929.39, -1212.22], [-1928.66, -1212.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2036.31, -1178.42], [-2036.91, -1185.45], [-2039.18, -1185.25], [-2039.28, -1186.39], [-2053.67, -1185.19], [-2052.89, -1175.93], [-2038.92, -1177.1], [-2039.01, -1178.2], [-2036.31, -1178.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2093.01, -1330.76], [-2103.35, -1330.9], [-2103.48, -1320.87], [-2093.13, -1320.73], [-2093.01, -1330.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1926.35, -1393.22], [-1926.83, -1405.43], [-1933.89, -1405.15], [-1933.4, -1392.94], [-1926.35, -1393.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1665.51, -1333.19], [-1666.06, -1347.6], [-1674.15, -1347.29], [-1673.6, -1332.88], [-1665.51, -1333.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1715.65, -1383.5], [-1707.43, -1383.8], [-1707.93, -1397.93], [-1716.16, -1397.7], [-1715.65, -1383.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2069.69, -1207.97], [-2070.3, -1216.72], [-2078.07, -1216.18], [-2077.12, -1202.44], [-2070.28, -1202.92], [-2070.63, -1207.91], [-2069.69, -1207.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2048.85, -1201.49], [-2048.89, -1206.75], [-2048.42, -1206.77], [-2048.48, -1216.27], [-2057.29, -1216.21], [-2057.22, -1206.58], [-2056.16, -1206.59], [-2056.14, -1203.45], [-2055.16, -1203.45], [-2055.15, -1201.44], [-2048.85, -1201.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2113.55, -1249.62], [-2114.12, -1267.14], [-2123.08, -1266.85], [-2122.51, -1249.33], [-2113.55, -1249.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1803.57, -1202.03], [-1810.46, -1201.84], [-1810.35, -1198.24], [-1803.47, -1198.44], [-1803.57, -1202.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2036.4, -1297.0], [-2036.69, -1304.65], [-2040.01, -1304.52], [-2040.12, -1307.37], [-2055.35, -1306.79], [-2055.14, -1301.52], [-2059.91, -1301.34], [-2059.73, -1296.68], [-2055.83, -1296.83], [-2055.82, -1296.26], [-2036.4, -1297.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[-2147.49, -1153.85], [-2154.09, -1153.72], [-2153.97, -1147.53], [-2147.37, -1147.66], [-2147.49, -1153.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1962.65, -1255.13], [-1962.77, -1257.55], [-1960.94, -1257.65], [-1961.69, -1273.53], [-1969.31, -1273.17], [-1968.53, -1256.73], [-1967.25, -1256.79], [-1967.16, -1254.92], [-1962.65, -1255.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1944.72, -1301.17], [-1945.34, -1307.76], [-1948.9, -1307.42], [-1948.28, -1300.84], [-1944.72, -1301.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1878.86, -1285.19], [-1885.09, -1285.05], [-1884.44, -1257.84], [-1872.4, -1258.12], [-1872.51, -1262.71], [-1874.26, -1262.67], [-1874.69, -1281.29], [-1878.77, -1281.19], [-1878.86, -1285.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-1937.99, -1435.05], [-1938.34, -1443.43], [-1949.47, -1442.95], [-1949.11, -1434.57], [-1937.99, -1435.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1783.91, -1322.53], [-1784.31, -1331.6], [-1799.04, -1330.95], [-1798.64, -1321.88], [-1783.91, -1322.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1877.11, -1220.55], [-1886.76, -1220.48], [-1886.66, -1207.19], [-1877.0, -1207.27], [-1877.11, -1220.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1802.5, -1214.84], [-1802.93, -1223.06], [-1812.85, -1222.54], [-1812.42, -1214.32], [-1802.5, -1214.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2081.78, -1203.24], [-2081.82, -1206.61], [-2078.99, -1206.66], [-2079.14, -1216.95], [-2088.86, -1216.8], [-2088.66, -1203.15], [-2081.78, -1203.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2130.99, -1299.5], [-2130.84, -1294.32], [-2125.4, -1294.48], [-2125.56, -1299.66], [-2130.99, -1299.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1822.16, -1151.47], [-1829.04, -1151.36], [-1828.82, -1137.28], [-1821.94, -1137.37], [-1822.16, -1151.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1668.22, -1381.57], [-1668.23, -1383.3], [-1664.78, -1383.31], [-1664.81, -1392.94], [-1669.92, -1392.91], [-1669.93, -1395.5], [-1673.22, -1395.49], [-1673.17, -1381.55], [-1668.22, -1381.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1797.47, -1287.87], [-1782.63, -1288.38], [-1782.98, -1298.34], [-1797.84, -1297.86], [-1797.47, -1287.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1848.54, -1261.89], [-1833.88, -1262.42], [-1834.34, -1275.56], [-1849.01, -1275.03], [-1848.54, -1261.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-1989.5, -1451.61], [-1987.35, -1451.83], [-1986.85, -1447.25], [-1984.33, -1447.52], [-1984.1, -1445.45], [-1977.86, -1446.13], [-1979.17, -1458.07], [-1980.67, -1457.91], [-1980.93, -1460.31], [-1987.73, -1459.56], [-1987.52, -1457.72], [-1990.08, -1457.44], [-1989.7, -1454.02], [-1991.5, -1453.83], [-1992.09, -1459.17], [-1999.45, -1458.36], [-1997.94, -1444.64], [-1991.31, -1445.36], [-1991.59, -1447.99], [-1989.14, -1448.26], [-1989.5, -1451.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-1688.92, -1408.94], [-1689.29, -1417.11], [-1694.46, -1416.89], [-1694.16, -1410.29], [-1692.55, -1410.36], [-1692.47, -1408.77], [-1688.92, -1408.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1917.25, -1320.82], [-1908.78, -1321.12], [-1908.94, -1327.05], [-1917.46, -1326.74], [-1917.25, -1320.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1707.84, -1436.24], [-1715.18, -1436.33], [-1715.26, -1429.82], [-1707.92, -1429.73], [-1707.84, -1436.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1993.73, -1161.0], [-1994.36, -1170.11], [-2006.53, -1169.28], [-2005.9, -1160.17], [-1993.73, -1161.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2070.62, -1247.77], [-2071.28, -1263.08], [-2079.38, -1262.72], [-2078.85, -1250.33], [-2077.16, -1250.41], [-2077.03, -1247.49], [-2070.62, -1247.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1870.08, -1180.03], [-1870.26, -1189.26], [-1883.98, -1188.98], [-1883.94, -1187.25], [-1885.96, -1187.2], [-1885.85, -1181.63], [-1883.07, -1181.69], [-1883.03, -1179.77], [-1870.08, -1180.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1681.39, -1337.08], [-1681.3, -1334.44], [-1675.53, -1334.59], [-1676.06, -1349.27], [-1683.04, -1349.02], [-1682.89, -1344.87], [-1684.32, -1344.82], [-1684.1, -1336.98], [-1681.39, -1337.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1683.54, -1308.0], [-1683.73, -1313.98], [-1693.42, -1313.66], [-1693.23, -1307.69], [-1683.54, -1308.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1962.62, -1284.81], [-1962.81, -1291.67], [-1968.18, -1291.52], [-1967.98, -1284.66], [-1962.62, -1284.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2079.39, -1184.33], [-2086.35, -1184.11], [-2086.14, -1177.61], [-2079.18, -1177.83], [-2079.39, -1184.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1837.72, -1209.78], [-1832.81, -1209.96], [-1832.98, -1215.87], [-1833.76, -1215.85], [-1833.85, -1218.5], [-1838.65, -1218.33], [-1838.41, -1211.5], [-1837.77, -1211.53], [-1837.72, -1209.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1903.04, -1132.96], [-1903.55, -1148.67], [-1912.84, -1148.37], [-1912.32, -1132.66], [-1903.04, -1132.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1714.62, -1286.09], [-1721.12, -1286.14], [-1721.16, -1279.85], [-1714.66, -1279.81], [-1714.62, -1286.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1936.51, -1442.31], [-1930.35, -1442.53], [-1930.92, -1458.71], [-1937.01, -1458.49], [-1936.76, -1451.41], [-1938.23, -1451.35], [-1938.09, -1447.45], [-1936.68, -1447.49], [-1936.51, -1442.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2035.75, -1251.19], [-2036.27, -1266.99], [-2038.31, -1266.92], [-2038.38, -1268.95], [-2043.99, -1268.77], [-2043.91, -1266.08], [-2045.37, -1266.04], [-2044.87, -1250.9], [-2035.75, -1251.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1694.25, -1269.94], [-1699.14, -1269.89], [-1699.02, -1258.57], [-1687.21, -1258.7], [-1687.28, -1265.42], [-1694.2, -1265.34], [-1694.25, -1269.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2153.82, -1175.75], [-2144.66, -1176.07], [-2144.84, -1181.89], [-2142.01, -1182.0], [-2142.18, -1186.67], [-2144.71, -1186.65], [-2144.75, -1187.72], [-2154.17, -1187.38], [-2153.82, -1175.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1999.96, -1190.2], [-2000.3, -1200.87], [-2009.91, -1200.55], [-2009.79, -1196.96], [-2012.48, -1196.89], [-2012.23, -1189.07], [-2008.39, -1189.19], [-2008.42, -1189.92], [-1999.96, -1190.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1783.77, -1176.93], [-1794.69, -1176.89], [-1794.65, -1164.23], [-1783.73, -1164.26], [-1783.77, -1176.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2050.62, -1157.19], [-2050.87, -1164.27], [-2055.4, -1164.11], [-2055.14, -1157.03], [-2050.62, -1157.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2089.55, -1297.98], [-2089.77, -1305.51], [-2099.15, -1305.24], [-2098.93, -1297.7], [-2089.55, -1297.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2004.0, -1415.22], [-2019.33, -1415.37], [-2019.41, -1407.09], [-2004.08, -1406.94], [-2004.0, -1415.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1673.53, -1258.28], [-1673.62, -1261.02], [-1672.31, -1261.07], [-1672.61, -1270.52], [-1682.06, -1270.2], [-1681.74, -1260.4], [-1677.43, -1260.55], [-1677.36, -1258.15], [-1673.53, -1258.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1819.76, -1205.75], [-1814.16, -1205.94], [-1814.38, -1212.32], [-1820.0, -1212.13], [-1819.76, -1205.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1698.59, -1454.25], [-1698.72, -1456.9], [-1696.18, -1457.02], [-1696.7, -1468.08], [-1698.64, -1467.99], [-1698.71, -1469.49], [-1705.16, -1469.2], [-1705.06, -1467.1], [-1706.44, -1467.03], [-1705.93, -1456.35], [-1704.42, -1456.43], [-1704.3, -1453.97], [-1698.59, -1454.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1655.7, -1382.81], [-1655.81, -1386.93], [-1653.39, -1387.0], [-1653.51, -1391.38], [-1656.71, -1391.3], [-1656.84, -1396.15], [-1663.37, -1395.97], [-1663.01, -1382.62], [-1655.7, -1382.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1969.0, -1164.36], [-1969.23, -1171.37], [-1975.55, -1171.17], [-1975.32, -1164.15], [-1969.0, -1164.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1810.29, -1155.94], [-1802.55, -1156.21], [-1802.76, -1162.11], [-1810.5, -1161.83], [-1810.29, -1155.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1944.65, -1131.91], [-1944.69, -1134.29], [-1943.75, -1134.3], [-1943.97, -1147.85], [-1953.82, -1147.69], [-1953.58, -1133.1], [-1951.63, -1133.13], [-1951.61, -1131.8], [-1944.65, -1131.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2122.27, -1193.49], [-2133.11, -1193.3], [-2133.03, -1189.28], [-2122.2, -1189.47], [-2122.27, -1193.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1912.59, -1408.91], [-1913.08, -1416.39], [-1924.28, -1415.65], [-1923.79, -1408.18], [-1912.59, -1408.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1954.22, -1340.26], [-1962.79, -1340.2], [-1962.69, -1324.47], [-1954.11, -1324.52], [-1954.22, -1340.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1677.34, -1308.99], [-1677.71, -1316.64], [-1682.25, -1316.43], [-1681.88, -1308.77], [-1677.34, -1308.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1964.44, -1189.68], [-1971.75, -1189.36], [-1971.41, -1181.38], [-1964.1, -1181.69], [-1964.44, -1189.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1714.82, -1330.6], [-1715.13, -1339.88], [-1729.29, -1339.42], [-1728.99, -1330.14], [-1714.82, -1330.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2156.19, -1244.68], [-2138.77, -1245.3], [-2139.11, -1254.65], [-2156.52, -1254.03], [-2156.19, -1244.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1816.82, -1328.9], [-1817.29, -1343.14], [-1824.13, -1342.92], [-1823.66, -1328.68], [-1816.82, -1328.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1780.3, -1144.58], [-1796.84, -1144.44], [-1796.75, -1133.76], [-1780.21, -1133.89], [-1780.3, -1144.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2121.93, -1159.93], [-2115.65, -1160.16], [-2115.86, -1166.32], [-2122.14, -1166.11], [-2121.93, -1159.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1934.93, -1419.86], [-1929.8, -1420.08], [-1930.2, -1429.38], [-1935.32, -1429.18], [-1934.93, -1419.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2038.82, -1310.11], [-2038.95, -1314.02], [-2047.01, -1313.76], [-2046.88, -1309.85], [-2038.82, -1310.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1999.74, -1326.38], [-1999.83, -1334.05], [-1999.65, -1334.05], [-1999.74, -1342.04], [-2007.38, -1341.96], [-2007.3, -1334.36], [-2007.71, -1334.35], [-2007.64, -1327.78], [-2004.52, -1327.81], [-2004.51, -1326.32], [-1999.74, -1326.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1957.36, -1181.83], [-1949.28, -1182.12], [-1949.52, -1188.7], [-1957.6, -1188.41], [-1957.36, -1181.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2010.21, -1386.51], [-2018.0, -1386.35], [-2017.68, -1371.6], [-2014.25, -1371.68], [-2014.21, -1369.53], [-2009.84, -1369.63], [-2010.21, -1386.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1980.85, -1253.97], [-1981.01, -1256.96], [-1979.91, -1257.02], [-1980.46, -1267.65], [-1983.53, -1267.49], [-1983.56, -1268.08], [-1989.18, -1267.79], [-1988.53, -1255.18], [-1986.42, -1255.29], [-1986.33, -1253.68], [-1980.85, -1253.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1944.39, -1324.04], [-1945.23, -1337.21], [-1952.05, -1336.78], [-1951.9, -1334.41], [-1953.56, -1334.31], [-1953.14, -1327.89], [-1952.65, -1327.91], [-1952.38, -1323.52], [-1944.39, -1324.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2143.75, -1300.5], [-2143.54, -1293.58], [-2135.77, -1293.8], [-2135.97, -1300.72], [-2143.75, -1300.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1791.45, -1201.01], [-1791.41, -1202.84], [-1780.9, -1202.62], [-1780.73, -1211.01], [-1786.6, -1211.13], [-1786.56, -1212.72], [-1790.93, -1212.82], [-1790.99, -1209.9], [-1795.33, -1209.99], [-1795.41, -1206.19], [-1797.46, -1206.23], [-1797.58, -1201.14], [-1791.45, -1201.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2138.2, -1315.05], [-2138.3, -1319.4], [-2135.23, -1319.48], [-2135.55, -1332.61], [-2140.06, -1332.5], [-2140.09, -1333.75], [-2144.42, -1333.64], [-2143.97, -1314.91], [-2138.2, -1315.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2037.1, -1130.91], [-2037.46, -1139.29], [-2050.68, -1138.74], [-2050.33, -1130.35], [-2037.1, -1130.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2058.46, -1158.26], [-2058.71, -1165.97], [-2066.66, -1165.71], [-2066.41, -1158.0], [-2058.46, -1158.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1656.65, -1427.25], [-1656.82, -1435.77], [-1666.13, -1435.58], [-1666.11, -1434.59], [-1670.0, -1434.51], [-1669.84, -1426.98], [-1656.65, -1427.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1925.41, -1323.83], [-1925.49, -1326.86], [-1923.62, -1326.91], [-1923.94, -1339.29], [-1931.68, -1339.08], [-1931.34, -1326.1], [-1929.86, -1326.13], [-1929.8, -1323.71], [-1925.41, -1323.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2145.67, -1294.79], [-2145.88, -1301.07], [-2152.31, -1300.86], [-2152.11, -1294.59], [-2145.67, -1294.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1653.27, -1330.77], [-1653.53, -1334.95], [-1661.77, -1334.45], [-1661.51, -1330.27], [-1653.27, -1330.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1721.62, -1274.25], [-1731.65, -1274.21], [-1731.57, -1256.94], [-1721.55, -1256.98], [-1721.62, -1274.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1757.5, -1255.03], [-1739.14, -1255.69], [-1739.45, -1264.26], [-1757.81, -1263.6], [-1757.5, -1255.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1743.71, -1450.69], [-1744.04, -1456.83], [-1748.47, -1456.61], [-1748.53, -1457.81], [-1757.89, -1457.32], [-1760.18, -1457.19], [-1759.82, -1450.32], [-1757.93, -1450.42], [-1757.85, -1448.96], [-1748.33, -1449.45], [-1748.38, -1450.43], [-1743.71, -1450.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1737.2, -1382.96], [-1737.48, -1391.36], [-1757.51, -1390.69], [-1757.24, -1382.31], [-1737.2, -1382.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2123.91, -1247.34], [-2124.54, -1256.77], [-2133.05, -1256.2], [-2132.41, -1246.76], [-2123.91, -1247.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1871.32, -1168.01], [-1871.52, -1175.72], [-1878.73, -1175.54], [-1878.71, -1174.45], [-1882.21, -1174.35], [-1881.89, -1162.2], [-1868.62, -1162.54], [-1868.76, -1168.08], [-1871.32, -1168.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1970.46, -1256.69], [-1971.32, -1271.6], [-1976.31, -1271.31], [-1976.13, -1268.27], [-1978.6, -1268.14], [-1977.84, -1254.88], [-1973.17, -1255.14], [-1973.25, -1256.53], [-1970.46, -1256.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1827.22, -1210.89], [-1822.8, -1211.05], [-1822.88, -1213.23], [-1821.44, -1213.28], [-1821.6, -1217.64], [-1817.99, -1217.77], [-1818.28, -1225.74], [-1829.29, -1225.35], [-1828.75, -1211.93], [-1827.25, -1211.97], [-1827.22, -1210.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1696.09, -1392.43], [-1704.25, -1392.35], [-1704.16, -1382.01], [-1696.0, -1382.08], [-1696.09, -1392.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2094.07, -1126.89], [-2094.15, -1129.16], [-2093.33, -1129.19], [-2093.49, -1134.0], [-2091.53, -1134.06], [-2091.66, -1138.05], [-2092.8, -1138.02], [-2092.94, -1142.17], [-2101.81, -1141.88], [-2101.33, -1127.13], [-2099.95, -1127.19], [-2099.94, -1126.7], [-2094.07, -1126.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1963.39, -1377.79], [-1964.0, -1387.47], [-1972.74, -1386.93], [-1971.71, -1370.26], [-1964.27, -1370.71], [-1964.71, -1377.7], [-1963.39, -1377.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2036.34, -1154.58], [-2048.31, -1154.34], [-2048.16, -1146.16], [-2036.19, -1146.39], [-2036.34, -1154.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2123.2, -1127.18], [-2123.7, -1139.61], [-2133.36, -1139.22], [-2132.85, -1126.8], [-2123.2, -1127.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2000.8, -1372.03], [-2001.49, -1383.51], [-2008.76, -1383.06], [-2008.06, -1371.59], [-2000.8, -1372.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2149.66, -1328.79], [-2157.79, -1328.8], [-2157.81, -1314.37], [-2149.67, -1314.36], [-2149.66, -1328.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1722.51, -1382.14], [-1722.81, -1391.59], [-1731.2, -1391.31], [-1730.89, -1381.86], [-1722.51, -1382.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2001.01, -1446.01], [-2001.39, -1457.97], [-2004.16, -1457.88], [-2004.26, -1460.9], [-2010.77, -1460.68], [-2010.29, -1445.7], [-2001.01, -1446.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1827.58, -1262.54], [-1823.29, -1262.7], [-1823.25, -1261.59], [-1817.04, -1261.81], [-1817.45, -1278.44], [-1828.16, -1278.05], [-1827.58, -1262.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1651.3, -1307.4], [-1651.63, -1315.81], [-1664.9, -1315.3], [-1664.57, -1306.88], [-1651.3, -1307.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1991.82, -1252.44], [-1992.32, -1262.7], [-2001.56, -1262.25], [-2001.06, -1252.0], [-1991.82, -1252.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2011.91, -1461.26], [-2020.4, -1461.02], [-2019.94, -1444.41], [-2011.45, -1444.64], [-2011.91, -1461.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2112.56, -1216.13], [-2121.85, -1215.97], [-2121.67, -1205.54], [-2112.38, -1205.7], [-2112.56, -1216.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1737.48, -1460.16], [-1737.76, -1467.43], [-1744.27, -1467.19], [-1744.3, -1468.08], [-1758.95, -1467.52], [-1758.68, -1460.2], [-1745.61, -1460.7], [-1745.58, -1459.85], [-1737.48, -1460.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1883.95, -1305.94], [-1871.52, -1306.39], [-1871.76, -1313.06], [-1884.19, -1312.61], [-1883.95, -1305.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2149.81, -1203.81], [-2150.17, -1214.81], [-2151.23, -1214.76], [-2151.3, -1216.96], [-2157.98, -1216.75], [-2157.55, -1203.56], [-2149.81, -1203.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1963.9, -1327.39], [-1964.07, -1332.27], [-1964.8, -1332.25], [-1964.97, -1337.78], [-1972.06, -1337.56], [-1971.72, -1327.3], [-1970.09, -1327.34], [-1970.01, -1324.5], [-1964.71, -1324.68], [-1964.8, -1327.36], [-1963.9, -1327.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1844.24, -1305.61], [-1844.81, -1312.77], [-1851.74, -1312.22], [-1851.17, -1305.07], [-1844.24, -1305.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2070.05, -1129.96], [-2070.38, -1140.13], [-2079.01, -1139.85], [-2078.7, -1130.32], [-2076.42, -1130.4], [-2076.29, -1126.56], [-2071.32, -1126.73], [-2071.43, -1129.9], [-2070.05, -1129.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1783.25, -1273.15], [-1783.66, -1282.4], [-1797.99, -1281.76], [-1797.58, -1272.52], [-1783.25, -1273.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1719.6, -1308.53], [-1719.94, -1315.78], [-1726.09, -1315.5], [-1725.99, -1313.37], [-1729.16, -1313.22], [-1728.87, -1306.96], [-1725.37, -1307.12], [-1725.42, -1308.25], [-1719.6, -1308.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1865.52, -1324.72], [-1853.78, -1325.13], [-1854.37, -1341.69], [-1866.11, -1341.26], [-1865.52, -1324.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1810.39, -1288.37], [-1803.9, -1288.6], [-1804.15, -1295.73], [-1810.6, -1295.47], [-1810.39, -1288.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2147.0, -1165.55], [-2154.0, -1165.5], [-2153.92, -1154.46], [-2143.97, -1154.52], [-2144.02, -1163.89], [-2146.98, -1163.87], [-2147.0, -1165.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2000.71, -1130.73], [-2000.88, -1135.94], [-2000.21, -1135.97], [-2000.54, -1145.31], [-2001.29, -1145.29], [-2001.42, -1149.04], [-2009.02, -1148.78], [-2008.99, -1148.18], [-2009.99, -1148.15], [-2009.45, -1130.46], [-2000.71, -1130.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1966.43, -1301.81], [-1963.16, -1301.9], [-1963.35, -1308.32], [-1966.61, -1308.23], [-1966.43, -1301.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1807.5, -1315.17], [-1814.76, -1315.18], [-1814.77, -1303.57], [-1807.52, -1303.55], [-1807.5, -1315.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1703.73, -1314.02], [-1709.22, -1313.91], [-1709.1, -1307.55], [-1703.61, -1307.67], [-1703.73, -1314.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2011.15, -1390.85], [-2011.24, -1394.42], [-2007.08, -1394.54], [-2007.31, -1403.59], [-2017.57, -1403.32], [-2017.24, -1390.69], [-2011.15, -1390.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1989.07, -1322.82], [-1989.25, -1326.47], [-1988.81, -1326.5], [-1989.3, -1336.42], [-1997.04, -1336.04], [-1996.53, -1325.65], [-1994.95, -1325.73], [-1994.8, -1322.53], [-1989.07, -1322.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2105.45, -1286.0], [-2112.7, -1285.93], [-2112.63, -1279.32], [-2105.38, -1279.39], [-2105.45, -1286.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1653.08, -1261.45], [-1653.14, -1264.08], [-1651.76, -1264.1], [-1651.94, -1272.19], [-1658.5, -1272.04], [-1658.62, -1277.19], [-1666.07, -1277.02], [-1665.92, -1270.58], [-1665.09, -1270.6], [-1664.88, -1261.18], [-1653.08, -1261.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1858.14, -1134.7], [-1858.34, -1139.64], [-1856.9, -1139.71], [-1857.19, -1146.92], [-1865.89, -1146.58], [-1865.44, -1135.35], [-1861.94, -1135.48], [-1861.9, -1134.55], [-1858.14, -1134.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1717.92, -1411.5], [-1710.5, -1411.69], [-1710.79, -1419.67], [-1718.18, -1419.6], [-1717.92, -1411.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2072.2, -1279.15], [-2072.6, -1286.48], [-2078.63, -1286.15], [-2078.23, -1278.83], [-2072.2, -1279.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2037.61, -1278.11], [-2037.72, -1281.2], [-2040.16, -1281.13], [-2040.43, -1289.27], [-2047.35, -1289.04], [-2047.26, -1286.44], [-2049.71, -1286.36], [-2049.42, -1277.73], [-2037.61, -1278.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1983.27, -1398.08], [-1992.34, -1398.03], [-1992.29, -1388.82], [-1983.22, -1388.88], [-1983.27, -1398.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1910.2, -1378.3], [-1910.45, -1383.52], [-1911.49, -1383.47], [-1911.83, -1390.45], [-1920.51, -1390.02], [-1919.77, -1374.73], [-1912.08, -1375.09], [-1912.22, -1378.2], [-1910.2, -1378.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2135.02, -1275.42], [-2135.34, -1285.52], [-2143.57, -1285.25], [-2143.6, -1286.31], [-2152.8, -1286.01], [-2152.8, -1285.68], [-2156.87, -1285.55], [-2156.55, -1275.85], [-2151.91, -1276.01], [-2151.89, -1275.52], [-2144.24, -1275.77], [-2144.22, -1275.12], [-2135.02, -1275.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-1838.5, -1185.64], [-1832.79, -1185.82], [-1833.03, -1193.19], [-1838.74, -1193.0], [-1838.5, -1185.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1920.02, -1339.31], [-1919.64, -1328.86], [-1909.95, -1329.2], [-1910.21, -1336.98], [-1912.12, -1336.9], [-1912.23, -1339.63], [-1920.02, -1339.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1657.74, -1443.44], [-1657.81, -1446.7], [-1654.45, -1446.76], [-1654.58, -1453.03], [-1667.88, -1452.75], [-1667.78, -1447.36], [-1664.67, -1447.43], [-1664.59, -1443.29], [-1657.74, -1443.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1738.63, -1273.44], [-1738.96, -1280.98], [-1754.1, -1280.32], [-1753.89, -1275.45], [-1754.62, -1275.42], [-1754.41, -1270.43], [-1744.24, -1270.88], [-1744.34, -1273.2], [-1738.63, -1273.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1959.03, -1458.14], [-1966.51, -1458.05], [-1966.42, -1450.22], [-1958.94, -1450.32], [-1959.03, -1458.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1914.46, -1255.78], [-1914.59, -1262.59], [-1912.59, -1262.63], [-1912.65, -1265.79], [-1914.12, -1265.76], [-1914.25, -1272.91], [-1921.86, -1272.77], [-1921.54, -1255.66], [-1914.46, -1255.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1936.6, -1277.24], [-1941.48, -1277.26], [-1941.51, -1268.12], [-1936.63, -1268.11], [-1936.6, -1277.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2060.83, -1314.98], [-2067.02, -1314.87], [-2066.91, -1309.03], [-2060.72, -1309.15], [-2060.83, -1314.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2002.73, -1292.17], [-2013.97, -1291.96], [-2013.8, -1282.8], [-2002.56, -1283.01], [-2002.73, -1292.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2120.24, -1301.77], [-2124.42, -1301.72], [-2124.35, -1295.62], [-2120.15, -1295.67], [-2120.24, -1301.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2091.53, -1149.68], [-2091.71, -1155.81], [-2098.21, -1155.62], [-2098.02, -1149.49], [-2091.53, -1149.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2082.06, -1135.2], [-2082.3, -1139.66], [-2090.08, -1139.24], [-2089.45, -1127.53], [-2082.67, -1127.89], [-2083.06, -1135.15], [-2082.06, -1135.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1827.37, -1303.74], [-1827.89, -1312.13], [-1834.19, -1311.74], [-1833.67, -1303.36], [-1827.37, -1303.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1649.9, -1337.04], [-1650.43, -1350.57], [-1660.19, -1350.19], [-1660.1, -1347.87], [-1662.63, -1347.78], [-1662.2, -1336.55], [-1649.9, -1337.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1871.09, -1293.57], [-1878.07, -1293.43], [-1877.92, -1286.59], [-1870.96, -1286.73], [-1871.09, -1293.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2057.51, -1139.82], [-2067.75, -1139.65], [-2067.58, -1129.55], [-2057.34, -1129.71], [-2057.51, -1139.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1742.95, -1441.79], [-1743.14, -1447.34], [-1749.4, -1447.12], [-1749.43, -1447.94], [-1760.1, -1447.59], [-1760.04, -1445.79], [-1759.07, -1445.83], [-1758.95, -1442.25], [-1756.18, -1442.34], [-1756.16, -1441.53], [-1748.66, -1441.77], [-1748.65, -1441.61], [-1742.95, -1441.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1928.71, -1257.98], [-1929.2, -1266.64], [-1938.86, -1266.09], [-1938.41, -1258.22], [-1936.05, -1258.35], [-1935.86, -1255.02], [-1930.26, -1255.34], [-1930.41, -1257.87], [-1928.71, -1257.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1865.65, -1209.19], [-1866.11, -1220.75], [-1874.59, -1220.42], [-1874.17, -1209.89], [-1872.04, -1209.97], [-1871.94, -1207.6], [-1867.16, -1207.78], [-1867.21, -1209.13], [-1865.65, -1209.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1727.24, -1284.13], [-1733.76, -1284.08], [-1733.72, -1277.89], [-1727.21, -1277.94], [-1727.24, -1284.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1726.68, -1457.41], [-1726.98, -1466.85], [-1734.23, -1466.62], [-1733.92, -1457.17], [-1726.68, -1457.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1957.15, -1435.03], [-1957.45, -1441.62], [-1962.46, -1441.39], [-1962.16, -1434.8], [-1957.15, -1435.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2000.4, -1152.46], [-2000.59, -1159.14], [-2009.83, -1158.76], [-2009.59, -1152.09], [-2000.4, -1152.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2136.03, -1126.43], [-2136.82, -1144.48], [-2143.57, -1144.18], [-2143.47, -1141.59], [-2144.43, -1141.55], [-2143.78, -1126.4], [-2142.65, -1126.45], [-2142.63, -1126.15], [-2136.03, -1126.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1868.13, -1287.46], [-1855.31, -1287.92], [-1855.57, -1295.3], [-1868.4, -1294.84], [-1868.13, -1287.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1935.57, -1328.24], [-1936.05, -1338.16], [-1936.75, -1338.13], [-1936.85, -1340.26], [-1942.15, -1340.01], [-1942.02, -1337.39], [-1942.66, -1337.36], [-1942.19, -1327.91], [-1935.57, -1328.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1939.44, -1209.37], [-1939.78, -1219.88], [-1946.62, -1219.65], [-1946.28, -1209.16], [-1939.44, -1209.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1959.36, -1208.97], [-1950.47, -1209.28], [-1950.63, -1213.92], [-1949.06, -1213.99], [-1949.19, -1217.84], [-1950.68, -1217.78], [-1950.75, -1220.05], [-1950.78, -1220.84], [-1959.78, -1220.52], [-1959.36, -1208.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1798.32, -1149.2], [-1779.92, -1149.82], [-1780.02, -1152.89], [-1778.93, -1152.93], [-1779.05, -1156.19], [-1780.14, -1156.15], [-1780.23, -1158.6], [-1798.64, -1157.97], [-1798.61, -1157.08], [-1801.07, -1157.0], [-1800.87, -1150.98], [-1798.39, -1151.08], [-1798.32, -1149.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2047.03, -1145.58], [-2055.58, -1145.39], [-2055.48, -1140.78], [-2046.93, -1140.98], [-2047.03, -1145.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1811.96, -1167.26], [-1812.45, -1174.89], [-1830.67, -1173.74], [-1830.18, -1166.09], [-1811.96, -1167.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2143.38, -1256.89], [-2143.85, -1266.38], [-2156.06, -1265.78], [-2156.0, -1264.55], [-2158.35, -1264.43], [-2157.95, -1256.16], [-2143.38, -1256.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1939.0, -1306.86], [-1943.51, -1306.78], [-1943.39, -1300.83], [-1938.88, -1300.92], [-1939.0, -1306.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2097.74, -1201.92], [-2097.86, -1205.43], [-2096.64, -1205.46], [-2097.01, -1216.94], [-2105.8, -1216.66], [-2105.42, -1204.69], [-2103.95, -1204.73], [-2103.85, -1201.72], [-2097.74, -1201.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1667.25, -1278.6], [-1673.48, -1278.51], [-1673.38, -1272.16], [-1667.16, -1272.25], [-1667.25, -1278.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2049.4, -1316.58], [-2049.98, -1337.86], [-2056.76, -1337.66], [-2056.7, -1335.58], [-2060.28, -1335.49], [-2059.84, -1319.86], [-2055.52, -1319.97], [-2055.43, -1316.41], [-2049.4, -1316.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2070.27, -1302.12], [-2070.1, -1296.56], [-2064.18, -1296.73], [-2064.34, -1302.29], [-2070.27, -1302.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1848.04, -1185.55], [-1845.19, -1185.66], [-1845.41, -1192.7], [-1848.29, -1192.6], [-1848.04, -1185.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1958.26, -1165.24], [-1958.53, -1171.59], [-1964.36, -1171.35], [-1964.09, -1164.99], [-1958.26, -1165.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1786.04, -1193.38], [-1795.4, -1193.35], [-1795.37, -1183.77], [-1781.84, -1183.81], [-1781.86, -1191.41], [-1786.03, -1191.4], [-1786.04, -1193.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1739.32, -1312.2], [-1739.61, -1322.16], [-1752.79, -1321.8], [-1752.57, -1313.91], [-1751.78, -1313.93], [-1751.72, -1311.84], [-1739.32, -1312.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1911.0, -1301.31], [-1911.35, -1315.66], [-1921.29, -1315.41], [-1921.12, -1308.3], [-1924.1, -1308.22], [-1923.94, -1301.49], [-1920.74, -1301.56], [-1920.73, -1301.06], [-1911.0, -1301.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1675.46, -1411.07], [-1675.78, -1417.45], [-1688.1, -1416.85], [-1687.63, -1407.32], [-1677.16, -1407.83], [-1677.31, -1410.99], [-1675.46, -1411.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2049.91, -1276.86], [-2052.68, -1276.8], [-2052.28, -1269.91], [-2055.42, -1269.73], [-2055.26, -1266.94], [-2056.78, -1266.85], [-2055.74, -1248.85], [-2052.74, -1249.01], [-2052.79, -1249.81], [-2047.43, -1250.11], [-2048.03, -1260.58], [-2047.15, -1260.62], [-2047.39, -1264.83], [-2046.13, -1264.91], [-2046.78, -1276.23], [-2049.86, -1276.05], [-2049.91, -1276.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2062.62, -1286.9], [-2070.5, -1286.82], [-2070.43, -1279.65], [-2062.55, -1279.73], [-2062.62, -1286.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1661.34, -1408.83], [-1661.3, -1415.01], [-1658.62, -1415.0], [-1658.56, -1422.96], [-1668.42, -1423.03], [-1668.44, -1419.03], [-1671.46, -1419.06], [-1671.53, -1408.91], [-1661.34, -1408.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1725.89, -1429.21], [-1726.19, -1436.05], [-1731.67, -1435.8], [-1731.37, -1428.97], [-1725.89, -1429.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1978.59, -1317.94], [-1978.74, -1322.51], [-1974.51, -1322.64], [-1975.07, -1339.82], [-1983.95, -1339.53], [-1983.36, -1321.62], [-1982.95, -1321.63], [-1982.83, -1317.81], [-1978.59, -1317.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1716.89, -1452.27], [-1717.84, -1468.86], [-1725.83, -1468.4], [-1724.89, -1451.8], [-1716.89, -1452.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1884.59, -1324.4], [-1872.33, -1324.84], [-1872.89, -1340.7], [-1885.16, -1340.26], [-1884.59, -1324.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2135.93, -1216.34], [-2145.08, -1216.11], [-2144.81, -1205.36], [-2135.66, -1205.59], [-2135.93, -1216.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1916.77, -1441.04], [-1917.31, -1448.26], [-1915.82, -1448.37], [-1916.4, -1456.26], [-1922.57, -1455.81], [-1922.15, -1450.17], [-1923.34, -1450.08], [-1923.0, -1445.43], [-1920.71, -1445.6], [-1920.35, -1440.78], [-1916.77, -1441.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2120.93, -1129.03], [-2113.26, -1129.3], [-2113.32, -1130.85], [-2112.61, -1130.87], [-2112.71, -1133.45], [-2112.19, -1133.47], [-2112.35, -1137.98], [-2112.96, -1137.96], [-2113.04, -1139.66], [-2117.36, -1139.5], [-2117.4, -1140.77], [-2121.4, -1140.6], [-2120.93, -1129.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1980.58, -1303.01], [-1974.22, -1303.2], [-1974.4, -1309.39], [-1980.76, -1309.2], [-1980.58, -1303.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1651.92, -1318.87], [-1652.24, -1327.12], [-1665.63, -1326.6], [-1665.51, -1323.73], [-1667.9, -1323.64], [-1667.74, -1319.58], [-1665.65, -1319.66], [-1665.6, -1318.35], [-1651.92, -1318.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2059.92, -1267.04], [-2069.54, -1266.76], [-2069.0, -1247.78], [-2059.37, -1248.06], [-2059.92, -1267.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2060.02, -1205.16], [-2060.04, -1210.93], [-2058.78, -1210.93], [-2058.81, -1218.17], [-2065.49, -1218.15], [-2065.47, -1214.51], [-2066.19, -1214.51], [-2066.18, -1211.05], [-2065.11, -1211.06], [-2065.09, -1205.13], [-2060.02, -1205.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1989.03, -1376.46], [-1989.42, -1385.5], [-1997.47, -1385.14], [-1996.81, -1370.0], [-1990.47, -1370.29], [-1990.74, -1376.39], [-1989.03, -1376.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1837.48, -1324.8], [-1837.85, -1333.92], [-1840.9, -1333.78], [-1841.22, -1341.57], [-1851.08, -1341.15], [-1850.78, -1333.86], [-1852.79, -1333.78], [-1852.6, -1329.14], [-1850.48, -1329.23], [-1850.08, -1319.46], [-1842.42, -1319.78], [-1842.62, -1324.59], [-1837.48, -1324.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-1816.18, -1304.42], [-1816.73, -1313.6], [-1823.53, -1313.21], [-1822.98, -1304.01], [-1816.18, -1304.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1648.76, -1289.61], [-1649.39, -1297.59], [-1664.37, -1296.41], [-1664.17, -1293.77], [-1671.74, -1293.17], [-1671.26, -1287.19], [-1662.48, -1287.88], [-1662.53, -1288.53], [-1648.76, -1289.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1850.5, -1187.71], [-1856.73, -1187.86], [-1856.87, -1182.12], [-1850.64, -1181.97], [-1850.5, -1187.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1927.95, -1287.35], [-1928.23, -1291.51], [-1932.17, -1291.25], [-1932.28, -1292.91], [-1942.79, -1292.22], [-1942.27, -1284.54], [-1931.56, -1285.25], [-1931.68, -1287.1], [-1927.95, -1287.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1689.34, -1429.19], [-1689.7, -1437.57], [-1697.32, -1437.26], [-1696.97, -1428.86], [-1689.34, -1429.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1945.04, -1285.26], [-1945.35, -1292.26], [-1949.96, -1292.05], [-1949.64, -1285.06], [-1945.04, -1285.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1990.77, -1205.9], [-1991.19, -1219.09], [-1992.17, -1219.06], [-1992.21, -1220.29], [-1999.05, -1220.06], [-1999.0, -1218.68], [-1999.9, -1218.64], [-1999.48, -1205.62], [-1990.77, -1205.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1979.59, -1282.98], [-1979.91, -1289.28], [-1983.82, -1289.08], [-1983.95, -1291.49], [-1991.08, -1291.12], [-1990.64, -1282.42], [-1979.59, -1282.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1794.07, -1213.5], [-1794.54, -1220.33], [-1799.49, -1219.99], [-1799.02, -1213.16], [-1794.07, -1213.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2003.75, -1422.77], [-2003.93, -1428.38], [-2011.18, -1428.14], [-2011.39, -1434.82], [-2017.99, -1434.61], [-2017.55, -1421.0], [-2008.1, -1421.32], [-2008.14, -1422.62], [-2003.75, -1422.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1930.27, -1130.72], [-1930.37, -1133.21], [-1929.7, -1133.24], [-1930.25, -1147.37], [-1940.1, -1146.99], [-1939.54, -1132.5], [-1938.0, -1132.56], [-1937.91, -1130.42], [-1930.27, -1130.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1783.87, -1333.23], [-1784.29, -1346.1], [-1796.18, -1345.72], [-1795.76, -1332.84], [-1783.87, -1333.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1955.39, -1136.57], [-1955.86, -1146.27], [-1957.9, -1146.17], [-1957.96, -1147.68], [-1966.11, -1147.29], [-1965.35, -1131.58], [-1957.59, -1131.95], [-1957.8, -1136.46], [-1955.39, -1136.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1976.02, -1219.46], [-1984.35, -1219.23], [-1984.01, -1206.37], [-1975.68, -1206.59], [-1976.02, -1219.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1827.28, -1329.53], [-1827.85, -1342.15], [-1834.88, -1341.83], [-1834.31, -1329.22], [-1827.28, -1329.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2124.4, -1319.64], [-2124.81, -1330.45], [-2131.43, -1330.19], [-2131.49, -1331.87], [-2133.44, -1331.8], [-2132.85, -1316.33], [-2126.74, -1316.56], [-2126.86, -1319.54], [-2124.4, -1319.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2078.32, -1306.95], [-2088.3, -1306.29], [-2087.94, -1298.03], [-2077.96, -1298.68], [-2078.32, -1306.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1903.98, -1182.97], [-1904.32, -1188.44], [-1907.57, -1188.24], [-1907.6, -1188.8], [-1918.61, -1188.13], [-1918.09, -1179.59], [-1907.23, -1180.25], [-1907.38, -1182.76], [-1903.98, -1182.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2003.82, -1261.3], [-2013.26, -1261.22], [-2013.16, -1250.78], [-2007.79, -1250.84], [-2007.78, -1249.66], [-2003.72, -1249.7], [-2003.82, -1261.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1657.91, -1463.26], [-1658.19, -1470.0], [-1668.4, -1469.56], [-1667.98, -1459.57], [-1659.67, -1459.92], [-1659.81, -1463.18], [-1657.91, -1463.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2039.77, -1270.04], [-2040.15, -1276.78], [-2046.04, -1276.45], [-2045.65, -1269.7], [-2039.77, -1270.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2000.07, -1311.06], [-2000.13, -1312.91], [-1999.21, -1312.94], [-1999.38, -1318.47], [-2015.2, -1317.98], [-2014.97, -1310.6], [-2000.07, -1311.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1988.08, -1129.61], [-1988.8, -1146.95], [-1996.66, -1146.61], [-1995.92, -1129.27], [-1988.08, -1129.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1954.75, -1309.61], [-1961.78, -1309.52], [-1961.68, -1301.46], [-1954.65, -1301.55], [-1954.75, -1309.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2097.16, -1175.61], [-2097.31, -1178.87], [-2104.52, -1178.66], [-2104.43, -1175.41], [-2097.16, -1175.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2111.86, -1128.31], [-2104.4, -1128.62], [-2104.62, -1134.78], [-2103.22, -1134.83], [-2103.38, -1139.52], [-2104.61, -1139.48], [-2104.71, -1142.44], [-2112.34, -1142.18], [-2111.86, -1128.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1849.94, -1209.86], [-1850.34, -1222.0], [-1858.56, -1221.73], [-1858.16, -1209.59], [-1849.94, -1209.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2101.23, -1249.21], [-2101.82, -1259.95], [-2110.33, -1259.49], [-2109.73, -1248.74], [-2101.23, -1249.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2079.92, -1320.52], [-2079.9, -1323.9], [-2075.89, -1323.89], [-2075.84, -1334.39], [-2085.85, -1334.44], [-2085.89, -1326.25], [-2087.56, -1326.26], [-2087.59, -1320.57], [-2079.92, -1320.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1849.55, -1167.04], [-1849.73, -1172.55], [-1856.07, -1172.33], [-1855.89, -1166.83], [-1849.55, -1167.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1798.61, -1168.1], [-1798.96, -1174.69], [-1807.02, -1174.26], [-1806.66, -1167.67], [-1798.61, -1168.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1960.97, -1204.89], [-1961.99, -1221.16], [-1971.85, -1220.54], [-1970.83, -1204.27], [-1960.97, -1204.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2033.77, -1207.36], [-2034.08, -1216.79], [-2044.83, -1216.45], [-2044.53, -1207.25], [-2043.63, -1207.27], [-2043.51, -1203.53], [-2037.64, -1203.72], [-2037.76, -1207.22], [-2033.77, -1207.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1831.57, -1288.22], [-1819.15, -1288.66], [-1819.41, -1296.0], [-1831.83, -1295.55], [-1831.57, -1288.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2062.29, -1324.93], [-2062.72, -1335.57], [-2072.33, -1335.18], [-2071.92, -1325.17], [-2069.97, -1325.24], [-2069.87, -1322.7], [-2064.02, -1322.95], [-2064.1, -1324.86], [-2062.29, -1324.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1975.53, -1131.32], [-1975.55, -1131.98], [-1967.09, -1132.18], [-1967.44, -1147.22], [-1975.72, -1147.03], [-1975.74, -1148.11], [-1984.63, -1147.9], [-1984.25, -1131.13], [-1975.53, -1131.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-1823.34, -1184.67], [-1823.53, -1191.04], [-1829.76, -1190.86], [-1829.57, -1184.49], [-1823.34, -1184.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1722.61, -1286.54], [-1723.06, -1292.88], [-1730.61, -1292.34], [-1730.16, -1286.0], [-1722.61, -1286.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1743.99, -1322.65], [-1744.14, -1329.73], [-1738.74, -1329.86], [-1738.97, -1340.72], [-1753.65, -1340.4], [-1753.42, -1329.54], [-1749.47, -1329.62], [-1749.32, -1322.53], [-1743.99, -1322.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2004.53, -1270.94], [-2004.93, -1279.27], [-2013.8, -1278.84], [-2013.41, -1270.83], [-2009.1, -1271.04], [-2009.09, -1270.72], [-2004.53, -1270.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1924.16, -1374.33], [-1924.49, -1384.43], [-1932.96, -1384.15], [-1932.63, -1374.06], [-1924.16, -1374.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2001.32, -1220.34], [-2012.02, -1220.05], [-2011.64, -1205.88], [-2000.94, -1206.16], [-2001.32, -1220.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1949.76, -1172.92], [-1957.59, -1172.73], [-1957.42, -1165.44], [-1949.6, -1165.62], [-1949.76, -1172.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1865.29, -1305.75], [-1852.99, -1306.15], [-1853.23, -1312.88], [-1865.44, -1312.51], [-1865.29, -1305.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1743.05, -1427.49], [-1743.36, -1434.2], [-1755.77, -1433.62], [-1755.47, -1426.91], [-1743.05, -1427.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1913.0, -1196.66], [-1908.57, -1196.82], [-1908.73, -1201.33], [-1907.09, -1201.39], [-1907.25, -1206.0], [-1905.77, -1206.05], [-1906.46, -1225.24], [-1913.88, -1224.97], [-1913.0, -1196.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2121.41, -1197.79], [-2121.75, -1203.82], [-2125.48, -1203.6], [-2126.22, -1216.35], [-2134.31, -1215.88], [-2133.56, -1202.89], [-2126.51, -1203.3], [-2126.17, -1197.51], [-2121.41, -1197.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2092.84, -1266.37], [-2089.51, -1266.46], [-2089.67, -1272.15], [-2093.0, -1272.05], [-2092.84, -1266.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2141.13, -1177.12], [-2135.25, -1177.32], [-2135.45, -1183.56], [-2141.36, -1183.39], [-2141.13, -1177.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2144.72, -1128.44], [-2145.68, -1141.22], [-2148.42, -1141.02], [-2148.58, -1143.18], [-2154.21, -1142.77], [-2154.01, -1140.05], [-2154.9, -1139.98], [-2153.98, -1127.76], [-2144.72, -1128.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2035.38, -1159.37], [-2035.91, -1168.8], [-2050.31, -1168.0], [-2049.79, -1158.57], [-2035.38, -1159.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1973.69, -1373.06], [-1974.27, -1383.23], [-1981.74, -1382.81], [-1981.17, -1372.63], [-1973.69, -1373.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[245.69, -3120.64], [252.24, -3121.53], [250.41, -3134.91], [243.86, -3134.01], [245.69, -3120.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[678.1, 266.67], [684.78, 272.63], [691.24, 265.44], [684.56, 259.48], [678.1, 266.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[723.05, 285.37], [732.1, 275.22], [712.77, 258.11], [707.4, 264.13], [711.17, 267.47], [707.49, 271.58], [723.05, 285.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.207, "pop": 0, "jobs": 207}}, {"shape": {"outer": [[773.74, 347.27], [781.45, 337.23], [792.27, 345.48], [789.7, 348.83], [799.91, 356.63], [794.77, 363.3], [773.74, 347.27]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.179, "pop": 0, "jobs": 179}}, {"shape": {"outer": [[461.57, 1186.4], [463.82, 1183.92], [464.18, 1184.25], [478.01, 1169.1], [473.75, 1165.24], [470.91, 1168.35], [468.98, 1166.61], [466.89, 1168.91], [464.52, 1166.77], [456.14, 1175.96], [460.95, 1180.33], [458.2, 1183.34], [461.57, 1186.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[490.86, 1116.74], [499.44, 1124.49], [507.24, 1115.92], [498.65, 1108.16], [490.86, 1116.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1197.98, 392.47], [1190.44, 386.06], [1185.64, 391.68], [1193.18, 398.08], [1197.98, 392.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[520.01, 1075.48], [522.7, 1072.42], [518.39, 1068.64], [515.7, 1071.69], [520.01, 1075.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[507.23, 1094.93], [517.58, 1104.44], [524.87, 1096.57], [514.53, 1087.06], [507.23, 1094.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1196.69, 286.45], [1189.0, 279.57], [1187.84, 280.85], [1183.93, 277.35], [1180.44, 281.23], [1181.03, 281.76], [1179.53, 283.43], [1182.08, 285.7], [1181.59, 286.25], [1185.71, 289.93], [1186.27, 289.31], [1190.63, 293.2], [1196.69, 286.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1307.6, 374.52], [1315.99, 365.17], [1311.29, 360.98], [1307.08, 365.65], [1302.88, 361.9], [1298.68, 366.57], [1307.6, 374.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[451.08, 1134.23], [457.55, 1126.53], [451.73, 1121.67], [445.26, 1129.38], [451.08, 1134.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1258.6, 310.71], [1264.67, 316.17], [1278.07, 301.38], [1272.0, 295.92], [1258.6, 310.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1121.23, 368.3], [1123.54, 365.8], [1122.39, 364.74], [1125.18, 361.7], [1122.1, 358.87], [1122.49, 358.45], [1118.55, 354.85], [1118.15, 355.28], [1113.47, 351.0], [1108.36, 356.56], [1121.23, 368.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[513.32, 1071.05], [517.52, 1066.39], [517.84, 1066.68], [521.45, 1062.66], [521.13, 1062.37], [525.15, 1057.89], [519.35, 1052.71], [515.32, 1057.19], [514.82, 1056.75], [511.22, 1060.74], [511.72, 1061.18], [507.51, 1065.87], [513.32, 1071.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1219.81, 302.05], [1222.06, 304.1], [1224.27, 301.68], [1222.01, 299.62], [1219.81, 302.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[1232.42, 443.43], [1224.46, 436.96], [1220.19, 442.18], [1228.15, 448.65], [1232.42, 443.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[503.52, 1036.63], [496.71, 1030.6], [486.17, 1042.42], [488.51, 1044.49], [487.91, 1045.19], [490.5, 1047.49], [491.12, 1046.8], [492.98, 1048.46], [503.52, 1036.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1251.03, 302.43], [1264.56, 287.46], [1260.23, 283.58], [1258.61, 285.37], [1256.13, 283.15], [1244.23, 296.33], [1251.03, 302.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[532.44, 1063.62], [533.58, 1062.36], [530.81, 1059.88], [529.95, 1060.82], [528.85, 1059.84], [520.85, 1068.71], [538.33, 1084.37], [542.44, 1079.82], [543.32, 1080.62], [545.9, 1077.76], [545.24, 1077.18], [546.4, 1075.92], [545.63, 1075.22], [546.43, 1074.34], [543.58, 1071.77], [542.66, 1072.78], [532.44, 1063.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[1182.17, 379.94], [1185.05, 376.79], [1183.1, 375.02], [1183.92, 374.13], [1178.7, 369.4], [1174.18, 374.36], [1179.91, 379.56], [1180.75, 378.64], [1182.17, 379.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1245.17, 432.65], [1238.24, 426.54], [1233.86, 431.47], [1240.78, 437.58], [1245.17, 432.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1267.81, 316.21], [1274.47, 322.21], [1284.9, 310.74], [1278.24, 304.74], [1267.81, 316.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[475.53, 1063.24], [471.7, 1067.52], [472.7, 1068.41], [470.77, 1070.56], [474.69, 1074.05], [475.14, 1073.54], [476.37, 1074.63], [481.67, 1068.7], [475.53, 1063.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1207.95, 426.71], [1204.81, 424.07], [1202.33, 426.99], [1205.48, 429.65], [1207.95, 426.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[1293.32, 316.96], [1285.84, 310.38], [1270.66, 327.52], [1272.35, 329.01], [1271.22, 330.3], [1274.71, 333.37], [1275.07, 332.97], [1277.36, 334.99], [1279.97, 332.04], [1280.29, 332.32], [1289.27, 322.19], [1288.95, 321.91], [1293.32, 316.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[478.84, 1083.88], [475.73, 1081.14], [476.1, 1080.72], [465.04, 1071.01], [460.52, 1076.12], [469.9, 1084.34], [469.99, 1084.24], [474.8, 1088.46], [478.84, 1083.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[467.72, 1093.93], [469.37, 1092.06], [470.26, 1092.84], [472.37, 1090.45], [470.01, 1088.39], [469.64, 1088.81], [465.44, 1085.14], [466.91, 1083.47], [458.64, 1076.24], [453.6, 1081.96], [466.47, 1093.23], [466.67, 1093.0], [467.72, 1093.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1223.01, 288.32], [1217.59, 283.6], [1213.04, 288.77], [1218.46, 293.5], [1223.01, 288.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1121.25, 342.4], [1115.94, 348.1], [1119.99, 351.83], [1119.57, 352.28], [1125.77, 358.0], [1131.49, 351.86], [1121.25, 342.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1248.68, 322.56], [1255.26, 328.38], [1259.34, 323.81], [1252.76, 317.99], [1248.68, 322.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[481.1, 1147.49], [486.23, 1141.88], [480.83, 1136.96], [481.31, 1136.44], [477.58, 1133.04], [477.09, 1133.57], [470.67, 1127.72], [467.88, 1130.77], [469.08, 1131.85], [466.72, 1134.43], [472.28, 1139.48], [471.82, 1139.98], [476.18, 1143.95], [476.65, 1143.45], [481.1, 1147.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[484.75, 1113.22], [479.53, 1108.61], [475.03, 1113.67], [480.25, 1118.28], [484.75, 1113.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[536.65, 1087.42], [524.48, 1076.55], [521.93, 1079.39], [520.67, 1078.27], [518.5, 1080.69], [519.65, 1081.72], [517.4, 1084.23], [528.41, 1094.07], [532.53, 1089.48], [533.8, 1090.6], [536.65, 1087.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1204.93, 365.36], [1198.22, 359.22], [1197.83, 359.65], [1195.99, 357.96], [1193.05, 361.17], [1192.43, 360.61], [1190.21, 363.03], [1191.57, 364.28], [1189.54, 366.49], [1198.29, 374.49], [1201.63, 370.87], [1202.21, 371.4], [1206.1, 367.17], [1204.56, 365.77], [1204.93, 365.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1303.28, 329.86], [1298.08, 325.18], [1296.21, 327.24], [1292.94, 324.29], [1288.49, 329.21], [1288.13, 328.89], [1280.85, 336.91], [1285.09, 340.72], [1284.59, 341.27], [1289.18, 345.41], [1303.28, 329.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[496.54, 1074.24], [492.35, 1070.49], [488.87, 1074.36], [493.06, 1078.11], [496.54, 1074.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[500.6, 1055.74], [501.05, 1056.14], [499.63, 1057.69], [503.36, 1061.05], [505.19, 1059.06], [508.31, 1061.88], [515.79, 1053.68], [514.94, 1052.91], [516.98, 1050.65], [510.54, 1044.83], [500.6, 1055.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[491.11, 1137.7], [496.83, 1131.18], [494.99, 1129.58], [496.27, 1128.12], [486.24, 1119.37], [481.21, 1125.09], [482.56, 1126.26], [479.71, 1129.49], [488.21, 1136.91], [489.07, 1135.93], [491.11, 1137.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1283.93, 351.89], [1288.29, 347.05], [1283.56, 342.8], [1279.2, 347.63], [1283.93, 351.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[471.73, 1126.13], [467.65, 1122.34], [464.13, 1126.12], [468.21, 1129.89], [471.73, 1126.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1241.91, 327.09], [1246.69, 322.22], [1241.07, 316.74], [1236.3, 321.63], [1241.91, 327.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1163.05, 371.38], [1157.18, 366.13], [1152.62, 371.19], [1158.49, 376.44], [1163.05, 371.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1226.22, 281.28], [1239.65, 266.54], [1233.93, 261.36], [1231.07, 264.5], [1229.49, 263.07], [1224.1, 268.99], [1224.56, 269.41], [1219.85, 274.59], [1221.79, 276.33], [1221.32, 276.85], [1226.22, 281.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[469.21, 1156.79], [461.29, 1149.74], [452.56, 1159.48], [452.82, 1159.72], [450.45, 1162.36], [458.1, 1169.18], [469.21, 1156.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[457.51, 1149.84], [456.06, 1148.53], [457.02, 1147.47], [452.42, 1143.35], [451.47, 1144.41], [449.4, 1142.54], [441.85, 1150.87], [442.57, 1151.52], [440.95, 1153.31], [447.96, 1159.6], [449.94, 1157.41], [450.33, 1157.77], [457.51, 1149.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1236.0, 289.95], [1237.39, 291.21], [1236.69, 291.97], [1238.16, 293.3], [1238.85, 292.54], [1240.08, 293.67], [1242.8, 290.68], [1244.9, 292.58], [1254.46, 282.1], [1246.2, 274.62], [1236.11, 285.68], [1238.19, 287.55], [1236.0, 289.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[499.17, 1055.86], [502.01, 1052.81], [502.26, 1053.05], [508.78, 1046.06], [503.41, 1041.09], [497.2, 1047.75], [498.59, 1049.03], [495.44, 1052.4], [499.17, 1055.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1208.78, 273.93], [1200.04, 265.93], [1199.24, 266.81], [1197.91, 265.6], [1193.4, 270.5], [1203.45, 279.71], [1208.78, 273.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1097.44, 1387.71], [1091.91, 1383.32], [1089.11, 1386.85], [1090.05, 1387.59], [1087.9, 1390.31], [1092.49, 1393.95], [1097.44, 1387.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1084.07, 1292.99], [1074.14, 1303.81], [1081.65, 1310.7], [1091.58, 1299.88], [1084.07, 1292.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[867.06, 1266.63], [862.15, 1262.34], [855.28, 1270.21], [860.19, 1274.49], [867.06, 1266.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1329.46, 1328.91], [1323.06, 1323.33], [1315.52, 1331.99], [1320.61, 1336.42], [1319.3, 1337.91], [1324.88, 1342.77], [1329.08, 1337.95], [1327.1, 1336.22], [1329.12, 1333.9], [1326.84, 1331.92], [1329.46, 1328.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1119.82, 1137.2], [1114.02, 1131.67], [1104.1, 1142.07], [1109.9, 1147.59], [1119.82, 1137.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1017.44, 1236.31], [1011.83, 1231.29], [1002.65, 1241.54], [1008.26, 1246.56], [1017.44, 1236.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[986.92, 1207.59], [983.2, 1204.18], [981.75, 1205.78], [979.3, 1203.56], [971.35, 1212.28], [977.51, 1217.9], [986.92, 1207.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1224.47, 1334.12], [1228.69, 1329.5], [1223.23, 1324.51], [1219.01, 1329.13], [1224.47, 1334.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1085.91, 1187.42], [1093.97, 1178.71], [1092.72, 1177.55], [1094.58, 1175.53], [1089.29, 1170.64], [1078.91, 1181.87], [1079.1, 1182.05], [1077.14, 1184.17], [1078.76, 1185.68], [1081.2, 1183.05], [1085.91, 1187.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[961.37, 1190.28], [956.81, 1186.15], [948.37, 1195.45], [952.92, 1199.59], [961.37, 1190.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[950.87, 1212.71], [947.52, 1209.6], [936.58, 1221.39], [942.32, 1226.72], [947.71, 1220.91], [945.31, 1218.7], [950.87, 1212.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1482.47, 1694.24], [1471.93, 1685.35], [1466.4, 1691.89], [1476.93, 1700.79], [1482.47, 1694.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1180.58, 1249.79], [1174.41, 1244.39], [1162.09, 1258.44], [1168.27, 1263.85], [1180.58, 1249.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1073.0, 1228.32], [1066.47, 1222.0], [1058.31, 1230.44], [1064.84, 1236.76], [1073.0, 1228.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1080.03, 1161.43], [1074.33, 1156.21], [1063.11, 1168.45], [1068.83, 1173.67], [1080.03, 1161.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1356.72, 1355.39], [1351.51, 1350.61], [1343.52, 1359.34], [1348.75, 1364.11], [1356.72, 1355.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1258.29, 1419.73], [1276.38, 1400.48], [1269.14, 1393.67], [1263.87, 1399.28], [1266.65, 1401.9], [1261.42, 1407.46], [1258.83, 1405.03], [1252.47, 1411.79], [1256.06, 1415.16], [1254.82, 1416.47], [1258.29, 1419.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1333.2, 1454.88], [1329.83, 1451.7], [1326.94, 1454.79], [1324.14, 1451.92], [1314.88, 1461.62], [1315.42, 1462.22], [1314.5, 1463.23], [1320.74, 1468.82], [1333.2, 1454.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[972.55, 1124.32], [965.55, 1117.66], [960.59, 1122.87], [967.6, 1129.53], [972.55, 1124.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[963.37, 1265.08], [957.85, 1259.96], [950.6, 1267.74], [956.11, 1272.87], [963.37, 1265.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1248.61, 1534.07], [1251.66, 1530.88], [1253.59, 1532.73], [1258.3, 1527.79], [1254.42, 1524.08], [1257.16, 1521.21], [1253.86, 1518.05], [1246.17, 1526.11], [1247.2, 1527.11], [1244.4, 1530.04], [1248.61, 1534.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1330.54, 1244.47], [1326.05, 1249.46], [1341.51, 1263.33], [1342.24, 1262.52], [1343.08, 1263.28], [1344.59, 1261.59], [1343.77, 1260.87], [1346.03, 1258.36], [1330.54, 1244.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1342.8, 1564.58], [1332.03, 1553.95], [1325.66, 1560.41], [1336.43, 1571.03], [1342.8, 1564.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[952.84, 1226.11], [948.43, 1222.1], [944.02, 1226.95], [948.43, 1230.96], [952.84, 1226.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1138.1, 1436.28], [1146.76, 1444.4], [1156.22, 1434.3], [1147.57, 1426.19], [1138.1, 1436.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1087.78, 1170.07], [1081.41, 1164.22], [1071.49, 1175.05], [1073.6, 1176.99], [1072.03, 1178.69], [1076.3, 1182.61], [1087.78, 1170.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[921.76, 1190.16], [917.41, 1186.21], [918.75, 1184.73], [909.29, 1176.16], [904.85, 1181.07], [913.98, 1189.36], [914.29, 1189.01], [918.96, 1193.25], [921.76, 1190.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1165.2, 1372.08], [1158.94, 1366.15], [1150.5, 1375.0], [1153.36, 1377.71], [1150.34, 1380.88], [1153.74, 1384.1], [1165.2, 1372.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1457.8, 1645.98], [1462.29, 1641.16], [1435.57, 1616.44], [1431.07, 1621.26], [1457.8, 1645.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[1394.75, 1581.86], [1388.88, 1576.67], [1382.16, 1584.19], [1388.03, 1589.4], [1394.75, 1581.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1363.5, 1444.62], [1360.65, 1442.06], [1356.17, 1447.02], [1359.08, 1449.64], [1363.5, 1444.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1255.32, 1342.8], [1250.71, 1338.54], [1247.69, 1341.8], [1252.3, 1346.06], [1255.32, 1342.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1171.76, 1146.27], [1169.73, 1144.35], [1168.91, 1145.22], [1165.67, 1142.19], [1160.12, 1148.1], [1169.99, 1157.38], [1175.24, 1151.78], [1170.64, 1147.46], [1171.76, 1146.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1201.62, 1202.33], [1192.88, 1194.73], [1182.2, 1207.02], [1190.94, 1214.62], [1201.62, 1202.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1334.68, 1350.28], [1339.12, 1345.1], [1339.81, 1345.7], [1345.39, 1339.2], [1337.7, 1332.6], [1331.56, 1339.77], [1333.1, 1341.09], [1329.22, 1345.61], [1334.68, 1350.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1189.61, 1395.02], [1184.05, 1390.08], [1180.52, 1394.05], [1179.2, 1392.89], [1172.68, 1400.24], [1172.98, 1400.5], [1169.92, 1403.93], [1174.7, 1408.17], [1178.11, 1404.34], [1178.99, 1405.12], [1181.64, 1402.13], [1182.57, 1402.95], [1189.61, 1395.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1085.36, 1111.43], [1081.43, 1107.86], [1075.75, 1114.11], [1079.67, 1117.67], [1085.36, 1111.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[895.86, 1215.33], [904.02, 1206.74], [896.18, 1199.31], [891.08, 1204.69], [892.21, 1205.77], [887.48, 1210.74], [891.34, 1214.4], [893.01, 1212.63], [895.86, 1215.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1136.25, 1147.03], [1132.09, 1143.65], [1130.81, 1145.23], [1128.98, 1143.75], [1120.66, 1154.01], [1127.4, 1159.47], [1131.14, 1154.85], [1130.39, 1154.25], [1136.25, 1147.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1203.83, 1343.34], [1198.7, 1338.73], [1187.97, 1350.58], [1193.11, 1355.2], [1203.83, 1343.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1305.62, 1307.65], [1299.45, 1301.97], [1291.96, 1310.08], [1298.13, 1315.74], [1305.62, 1307.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1134.09, 1392.82], [1129.32, 1388.33], [1124.01, 1393.98], [1128.78, 1398.47], [1134.09, 1392.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1297.72, 1506.82], [1305.98, 1497.94], [1300.36, 1492.67], [1292.11, 1501.54], [1297.72, 1506.82]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1327.74, 1523.94], [1321.27, 1517.97], [1313.42, 1526.48], [1315.1, 1528.03], [1313.89, 1529.35], [1318.68, 1533.77], [1327.74, 1523.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1456.56, 1692.27], [1461.58, 1687.26], [1457.64, 1683.32], [1452.62, 1688.33], [1456.56, 1692.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1251.78, 1516.8], [1245.53, 1510.96], [1237.75, 1519.32], [1244.01, 1525.14], [1251.78, 1516.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[980.89, 1361.98], [984.88, 1357.56], [979.8, 1352.98], [975.4, 1357.86], [974.05, 1356.64], [967.03, 1364.43], [975.44, 1372.02], [982.88, 1363.77], [980.89, 1361.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1187.43, 1256.91], [1181.62, 1252.05], [1178.59, 1255.68], [1177.3, 1254.61], [1175.03, 1257.32], [1176.15, 1258.25], [1173.63, 1261.27], [1179.62, 1266.27], [1187.43, 1256.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1321.53, 1558.43], [1327.33, 1551.99], [1318.06, 1543.78], [1312.63, 1550.41], [1321.53, 1558.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1237.73, 1227.02], [1233.37, 1223.05], [1229.03, 1227.82], [1233.39, 1231.78], [1237.73, 1227.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1157.27, 1170.62], [1151.49, 1164.66], [1145.65, 1170.32], [1146.1, 1170.79], [1142.44, 1174.34], [1147.77, 1179.83], [1157.27, 1170.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1025.61, 1189.47], [1019.22, 1183.71], [1013.99, 1189.5], [1020.38, 1195.26], [1025.61, 1189.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1436.53, 1673.84], [1446.17, 1682.56], [1450.81, 1677.04], [1441.17, 1668.32], [1436.53, 1673.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[998.27, 1092.06], [993.76, 1087.73], [987.89, 1093.84], [998.0, 1103.56], [1002.55, 1098.83], [996.95, 1093.43], [998.27, 1092.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1311.33, 1242.52], [1309.03, 1240.46], [1304.57, 1245.43], [1306.55, 1247.21], [1306.02, 1247.81], [1312.4, 1253.52], [1316.88, 1248.51], [1310.82, 1243.09], [1311.33, 1242.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1279.65, 1334.39], [1270.04, 1326.03], [1264.91, 1331.93], [1274.53, 1340.28], [1279.65, 1334.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1046.43, 1043.92], [1039.83, 1037.92], [1035.02, 1043.21], [1041.62, 1049.2], [1046.43, 1043.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1347.69, 1420.67], [1358.6, 1408.67], [1353.69, 1404.21], [1352.52, 1405.5], [1346.82, 1400.32], [1334.44, 1413.97], [1341.4, 1420.29], [1344.06, 1417.37], [1347.69, 1420.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[1156.66, 1305.92], [1151.33, 1300.67], [1142.71, 1309.44], [1148.05, 1314.68], [1156.66, 1305.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1376.5, 1283.13], [1368.16, 1275.74], [1361.0, 1283.82], [1369.34, 1291.21], [1376.5, 1283.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1165.38, 1312.03], [1160.58, 1307.71], [1157.63, 1311.0], [1156.23, 1309.74], [1154.12, 1312.1], [1155.05, 1312.94], [1151.14, 1317.3], [1156.41, 1322.03], [1165.38, 1312.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1170.28, 1294.21], [1172.35, 1295.91], [1176.06, 1291.83], [1173.84, 1289.98], [1170.28, 1294.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[1063.72, 1063.57], [1069.21, 1057.43], [1058.38, 1047.74], [1052.89, 1053.87], [1063.72, 1063.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[926.92, 1174.95], [920.2, 1168.81], [915.36, 1174.1], [923.79, 1181.8], [927.19, 1178.07], [925.49, 1176.51], [926.92, 1174.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1077.92, 1363.24], [1070.71, 1356.62], [1061.0, 1367.2], [1068.2, 1373.81], [1077.92, 1363.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1502.68, 1669.48], [1498.89, 1666.18], [1496.93, 1668.4], [1494.68, 1666.45], [1492.91, 1668.47], [1492.44, 1668.07], [1489.93, 1670.92], [1501.54, 1681.05], [1506.93, 1674.92], [1501.81, 1670.47], [1502.68, 1669.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1117.65, 1420.6], [1120.6, 1417.25], [1122.17, 1418.64], [1125.89, 1414.41], [1120.43, 1409.6], [1113.75, 1417.17], [1117.65, 1420.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1306.35, 1206.23], [1284.47, 1229.91], [1298.58, 1244.04], [1321.02, 1219.75], [1306.35, 1206.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.417, "pop": 0, "jobs": 417}}, {"shape": {"outer": [[1048.44, 1280.09], [1043.28, 1275.44], [1036.76, 1282.67], [1044.94, 1290.06], [1049.37, 1285.15], [1046.34, 1282.41], [1048.44, 1280.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[941.95, 1239.32], [937.61, 1235.25], [933.94, 1239.14], [932.95, 1238.21], [929.77, 1241.59], [931.6, 1243.31], [928.31, 1246.81], [932.73, 1250.97], [936.91, 1246.5], [936.0, 1245.65], [941.95, 1239.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1103.67, 1124.53], [1097.32, 1118.88], [1090.4, 1126.67], [1096.75, 1132.31], [1103.67, 1124.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1181.08, 1436.88], [1170.45, 1427.71], [1166.22, 1432.61], [1176.86, 1441.79], [1181.08, 1436.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1481.12, 1656.84], [1477.69, 1660.55], [1476.96, 1659.89], [1472.71, 1664.48], [1479.2, 1670.41], [1486.87, 1662.1], [1481.12, 1656.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1155.96, 1399.41], [1161.82, 1404.79], [1169.74, 1396.24], [1163.87, 1390.86], [1155.96, 1399.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1336.72, 1524.25], [1326.47, 1535.37], [1332.68, 1541.1], [1342.93, 1529.98], [1336.72, 1524.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1040.27, 1051.26], [1033.81, 1044.92], [1029.08, 1049.74], [1035.56, 1056.08], [1040.27, 1051.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1093.67, 1118.84], [1087.0, 1112.97], [1081.14, 1119.63], [1087.81, 1125.5], [1093.67, 1118.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1267.32, 1338.73], [1265.26, 1336.88], [1264.96, 1337.21], [1263.71, 1336.1], [1258.36, 1342.09], [1266.54, 1349.41], [1271.11, 1344.3], [1266.24, 1339.93], [1267.32, 1338.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1490.14, 1688.82], [1479.59, 1679.73], [1474.75, 1685.33], [1485.31, 1694.43], [1490.14, 1688.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1061.88, 1273.9], [1053.62, 1266.66], [1049.26, 1271.63], [1050.34, 1272.58], [1047.06, 1276.32], [1055.32, 1283.55], [1060.13, 1278.07], [1059.06, 1277.14], [1061.88, 1273.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1393.75, 1664.67], [1402.27, 1672.43], [1412.18, 1661.62], [1422.48, 1650.39], [1413.95, 1642.62], [1393.75, 1664.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[1125.8, 1145.46], [1120.17, 1140.48], [1111.6, 1150.16], [1117.23, 1155.14], [1125.8, 1145.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1051.71, 1075.57], [1046.14, 1070.66], [1044.59, 1072.41], [1042.48, 1070.56], [1036.06, 1077.85], [1043.73, 1084.61], [1051.71, 1075.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[966.27, 1130.58], [959.75, 1124.53], [955.2, 1129.42], [961.73, 1135.47], [966.27, 1130.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1171.11, 1321.04], [1165.3, 1315.53], [1156.7, 1324.61], [1162.5, 1330.11], [1171.11, 1321.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1127.31, 1136.73], [1129.52, 1134.31], [1130.93, 1135.59], [1132.21, 1134.2], [1134.21, 1136.03], [1144.75, 1124.48], [1139.08, 1119.29], [1129.4, 1129.89], [1125.23, 1126.09], [1120.88, 1130.87], [1127.31, 1136.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1028.51, 1265.55], [1036.62, 1256.65], [1019.85, 1241.39], [1011.44, 1250.62], [1010.12, 1249.42], [1001.66, 1258.72], [1004.29, 1261.1], [1003.8, 1261.73], [1008.57, 1266.07], [1009.46, 1265.01], [1014.33, 1269.45], [1013.64, 1270.21], [1018.69, 1274.8], [1019.4, 1274.02], [1021.66, 1276.08], [1030.01, 1266.91], [1028.51, 1265.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.496, "pop": 248, "jobs": 0}}, {"shape": {"outer": [[997.03, 1130.21], [989.31, 1122.73], [983.26, 1128.97], [990.99, 1136.46], [997.03, 1130.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1185.64, 1330.81], [1180.61, 1325.95], [1172.15, 1334.71], [1174.29, 1336.78], [1172.29, 1338.84], [1175.18, 1341.63], [1185.64, 1330.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1113.94, 1188.5], [1107.9, 1182.83], [1099.02, 1193.26], [1105.06, 1198.83], [1113.94, 1188.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1346.18, 1474.25], [1341.32, 1469.33], [1337.62, 1472.99], [1335.76, 1471.11], [1330.59, 1476.22], [1334.27, 1479.93], [1333.69, 1480.51], [1336.74, 1483.58], [1346.18, 1474.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1141.3, 1428.75], [1134.8, 1423.18], [1132.61, 1425.75], [1133.17, 1426.23], [1128.58, 1431.61], [1134.52, 1436.69], [1141.3, 1428.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[973.38, 1158.1], [978.82, 1163.04], [986.93, 1154.16], [981.5, 1149.22], [973.38, 1158.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1300.44, 1432.23], [1295.22, 1427.39], [1284.52, 1438.93], [1289.74, 1443.76], [1300.44, 1432.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1497.06, 1679.58], [1491.11, 1674.28], [1485.27, 1680.83], [1491.23, 1686.14], [1497.06, 1679.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1120.54, 1201.5], [1121.63, 1202.43], [1121.38, 1202.72], [1125.98, 1206.62], [1133.4, 1197.98], [1127.7, 1193.14], [1120.54, 1201.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1328.12, 1274.81], [1322.22, 1269.67], [1316.47, 1276.25], [1322.38, 1281.4], [1328.12, 1274.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1060.58, 1163.09], [1063.23, 1160.3], [1064.36, 1161.38], [1071.86, 1153.49], [1066.2, 1148.12], [1059.16, 1155.52], [1059.96, 1156.27], [1056.85, 1159.55], [1060.58, 1163.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1092.58, 1377.54], [1087.28, 1372.88], [1078.91, 1382.32], [1084.21, 1386.98], [1092.58, 1377.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1351.22, 1614.41], [1341.14, 1604.79], [1337.47, 1608.64], [1340.26, 1611.29], [1338.58, 1613.06], [1345.86, 1620.02], [1351.22, 1614.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1127.93, 1110.75], [1122.91, 1106.38], [1117.84, 1112.2], [1122.86, 1116.57], [1127.93, 1110.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1110.87, 1393.54], [1106.5, 1389.83], [1097.79, 1400.12], [1099.97, 1401.98], [1099.27, 1402.82], [1104.25, 1407.03], [1112.44, 1397.35], [1109.65, 1394.99], [1110.87, 1393.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1279.78, 1413.1], [1274.61, 1408.1], [1269.15, 1413.75], [1274.32, 1418.75], [1279.78, 1413.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1067.73, 1088.38], [1064.23, 1085.23], [1061.76, 1087.98], [1059.99, 1086.37], [1053.36, 1093.74], [1058.62, 1098.47], [1067.73, 1088.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1142.89, 1153.54], [1137.27, 1148.33], [1132.06, 1153.95], [1133.48, 1155.26], [1129.45, 1159.61], [1135.39, 1165.13], [1142.12, 1157.88], [1140.36, 1156.25], [1142.89, 1153.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1148.54, 1415.47], [1144.59, 1412.0], [1140.55, 1416.61], [1144.51, 1420.08], [1148.54, 1415.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1102.49, 1215.8], [1101.75, 1216.64], [1098.03, 1213.39], [1094.98, 1216.85], [1105.86, 1226.35], [1109.13, 1222.63], [1108.43, 1222.01], [1108.94, 1221.43], [1102.49, 1215.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1035.89, 1277.47], [1029.19, 1270.88], [1025.53, 1274.59], [1032.23, 1281.18], [1035.89, 1277.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1061.48, 1145.6], [1056.39, 1140.77], [1049.51, 1148.01], [1054.59, 1152.85], [1061.48, 1145.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1283.47, 1524.47], [1287.22, 1520.44], [1279.96, 1513.68], [1276.21, 1517.71], [1283.47, 1524.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1169.49, 1233.76], [1164.77, 1229.3], [1161.81, 1232.45], [1160.18, 1230.92], [1155.73, 1235.65], [1157.72, 1237.52], [1156.82, 1238.47], [1161.2, 1242.58], [1169.49, 1233.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1260.86, 1460.59], [1255.1, 1455.44], [1246.66, 1464.9], [1252.43, 1470.04], [1260.86, 1460.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1135.42, 1346.09], [1128.87, 1340.27], [1119.91, 1350.3], [1121.11, 1351.37], [1120.07, 1352.53], [1125.44, 1357.28], [1135.42, 1346.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[959.22, 1180.46], [958.57, 1179.86], [957.27, 1178.66], [952.6, 1174.34], [938.55, 1189.53], [945.18, 1195.65], [959.22, 1180.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1093.67, 1239.39], [1100.71, 1231.72], [1086.28, 1218.5], [1082.35, 1222.79], [1084.29, 1224.57], [1081.2, 1227.95], [1093.67, 1239.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.123, "pop": 0, "jobs": 123}}, {"shape": {"outer": [[1240.99, 1302.38], [1235.36, 1297.15], [1227.06, 1306.05], [1232.68, 1311.28], [1240.99, 1302.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1385.56, 1664.22], [1387.79, 1661.87], [1388.79, 1662.81], [1389.57, 1663.55], [1398.85, 1653.77], [1396.86, 1651.89], [1398.02, 1650.68], [1395.36, 1648.16], [1394.12, 1649.48], [1391.41, 1646.92], [1382.1, 1656.75], [1383.04, 1657.63], [1383.85, 1658.41], [1381.76, 1660.62], [1385.56, 1664.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1317.74, 1473.08], [1324.85, 1479.66], [1338.64, 1464.76], [1331.54, 1458.18], [1317.74, 1473.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1285.43, 1479.05], [1279.34, 1473.62], [1268.07, 1486.24], [1274.15, 1491.68], [1285.43, 1479.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1452.63, 1698.05], [1452.43, 1697.87], [1448.04, 1702.65], [1446.38, 1701.13], [1442.81, 1705.01], [1444.41, 1706.48], [1439.46, 1711.88], [1446.57, 1718.46], [1451.82, 1712.73], [1452.73, 1713.52], [1455.33, 1710.68], [1454.72, 1710.11], [1459.77, 1704.61], [1452.63, 1698.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1295.7, 1488.7], [1291.46, 1484.26], [1289.8, 1485.84], [1287.3, 1483.22], [1282.66, 1487.63], [1283.75, 1488.77], [1278.72, 1493.56], [1282.15, 1497.17], [1280.79, 1498.46], [1284.88, 1502.75], [1291.08, 1496.84], [1289.21, 1494.88], [1295.7, 1488.7]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1235.15, 1261.21], [1236.69, 1259.47], [1237.76, 1260.41], [1245.88, 1251.18], [1243.42, 1249.03], [1245.73, 1246.39], [1242.04, 1243.13], [1239.85, 1245.63], [1238.34, 1244.29], [1228.56, 1255.42], [1235.15, 1261.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1159.67, 1137.48], [1153.44, 1131.77], [1144.66, 1141.31], [1150.89, 1147.03], [1159.67, 1137.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1201.96, 1122.72], [1195.01, 1116.52], [1190.9, 1121.13], [1197.84, 1127.32], [1201.96, 1122.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[986.99, 1107.08], [990.29, 1103.73], [992.09, 1105.51], [995.21, 1102.35], [986.61, 1093.85], [983.1, 1097.39], [985.2, 1099.48], [982.28, 1102.43], [986.99, 1107.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1320.16, 1589.77], [1314.33, 1584.03], [1310.9, 1587.52], [1311.41, 1588.01], [1306.45, 1593.05], [1311.77, 1598.29], [1320.16, 1589.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[920.53, 1215.36], [915.3, 1210.49], [911.74, 1214.32], [910.66, 1213.31], [906.74, 1217.51], [907.9, 1218.59], [904.75, 1221.96], [910.74, 1227.55], [914.53, 1223.47], [915.24, 1224.12], [918.5, 1220.61], [916.96, 1219.18], [920.53, 1215.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1196.8, 1277.33], [1199.49, 1274.39], [1199.94, 1274.8], [1205.08, 1269.17], [1198.05, 1262.75], [1192.8, 1268.49], [1193.6, 1269.22], [1191.02, 1272.05], [1196.8, 1277.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1317.0, 1445.48], [1312.09, 1440.93], [1302.29, 1451.51], [1307.2, 1456.05], [1317.0, 1445.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1010.27, 1170.04], [1009.66, 1169.49], [1012.11, 1166.82], [1005.02, 1160.34], [997.47, 1168.6], [998.4, 1169.45], [995.87, 1172.21], [1002.62, 1178.39], [1010.27, 1170.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1409.45, 1678.65], [1418.15, 1686.52], [1438.07, 1664.65], [1429.36, 1656.78], [1418.89, 1668.29], [1409.45, 1678.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[1025.91, 1165.39], [1030.27, 1160.56], [1024.72, 1155.57], [1020.37, 1160.4], [1025.91, 1165.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1292.04, 1425.72], [1287.82, 1421.59], [1284.62, 1424.86], [1283.2, 1423.47], [1279.84, 1426.9], [1281.26, 1428.28], [1277.37, 1432.27], [1281.6, 1436.41], [1292.04, 1425.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1278.89, 1386.49], [1272.28, 1380.13], [1267.33, 1385.27], [1269.21, 1387.09], [1267.26, 1389.12], [1271.98, 1393.67], [1278.89, 1386.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1057.39, 1332.93], [1051.13, 1327.88], [1045.55, 1334.78], [1057.93, 1344.79], [1062.89, 1338.65], [1056.77, 1333.7], [1057.39, 1332.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1260.48, 1313.37], [1254.55, 1308.43], [1247.73, 1316.65], [1249.42, 1318.05], [1248.41, 1319.25], [1254.25, 1324.11], [1260.36, 1316.75], [1258.77, 1315.43], [1260.48, 1313.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[951.64, 1244.86], [947.34, 1240.93], [936.6, 1252.7], [943.51, 1259.01], [952.82, 1248.8], [950.21, 1246.41], [951.64, 1244.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1330.91, 1382.64], [1326.44, 1378.61], [1319.57, 1386.24], [1324.04, 1390.27], [1330.91, 1382.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1316.68, 1269.2], [1310.79, 1263.84], [1304.13, 1271.15], [1310.03, 1276.51], [1316.68, 1269.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1335.44, 1455.87], [1339.91, 1459.98], [1347.35, 1451.88], [1342.89, 1447.77], [1335.44, 1455.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1124.27, 1339.98], [1119.02, 1335.71], [1112.39, 1343.88], [1117.64, 1348.13], [1124.27, 1339.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1302.87, 1414.95], [1299.56, 1411.8], [1293.87, 1417.77], [1297.18, 1420.92], [1302.87, 1414.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1150.17, 1163.54], [1148.6, 1162.1], [1148.48, 1162.23], [1143.58, 1157.72], [1135.32, 1166.69], [1138.85, 1169.95], [1137.47, 1171.44], [1140.4, 1174.14], [1150.17, 1163.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1020.23, 1160.28], [1024.58, 1155.44], [1019.05, 1150.45], [1014.69, 1155.29], [1020.23, 1160.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1232.45, 1436.83], [1226.19, 1431.07], [1215.8, 1442.36], [1222.07, 1448.12], [1232.45, 1436.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1447.2, 1666.29], [1456.38, 1674.59], [1470.95, 1658.59], [1461.77, 1650.29], [1447.2, 1666.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[1202.88, 1104.86], [1196.52, 1099.21], [1189.6, 1106.99], [1195.96, 1112.65], [1202.88, 1104.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1410.72, 1593.72], [1406.26, 1589.64], [1405.15, 1590.83], [1404.82, 1590.53], [1396.83, 1599.21], [1397.06, 1599.42], [1394.63, 1602.07], [1399.19, 1606.24], [1410.72, 1593.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1323.53, 1585.64], [1326.87, 1581.85], [1328.45, 1583.24], [1334.15, 1576.78], [1322.34, 1566.38], [1315.44, 1574.22], [1317.91, 1576.39], [1315.79, 1578.81], [1323.53, 1585.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1310.33, 1438.41], [1304.34, 1432.98], [1292.1, 1446.49], [1298.09, 1451.91], [1310.33, 1438.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1369.47, 1578.78], [1372.12, 1575.7], [1373.18, 1576.6], [1380.33, 1568.27], [1379.6, 1567.66], [1378.74, 1566.92], [1378.47, 1567.22], [1374.71, 1564.03], [1372.2, 1566.96], [1371.11, 1566.02], [1366.82, 1571.03], [1367.54, 1571.63], [1365.37, 1574.17], [1364.82, 1574.81], [1369.47, 1578.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1176.54, 1239.53], [1171.65, 1235.83], [1163.56, 1245.18], [1168.2, 1249.32], [1176.54, 1239.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1295.2, 1557.26], [1289.64, 1551.99], [1280.53, 1561.61], [1286.08, 1566.88], [1295.2, 1557.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1233.32, 1469.39], [1227.96, 1464.48], [1221.76, 1471.23], [1227.13, 1476.15], [1233.32, 1469.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1285.03, 1227.66], [1301.64, 1209.35], [1298.64, 1206.61], [1304.7, 1199.78], [1291.64, 1187.75], [1285.31, 1194.17], [1283.32, 1192.3], [1266.75, 1211.34], [1285.03, 1227.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.5, "pop": 0, "jobs": 500}}, {"shape": {"outer": [[1111.39, 1131.52], [1104.96, 1125.84], [1097.71, 1134.04], [1104.13, 1139.73], [1111.39, 1131.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[907.15, 1196.97], [913.7, 1189.52], [904.22, 1181.17], [897.71, 1188.58], [907.15, 1196.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1140.22, 1241.81], [1131.3, 1233.47], [1127.52, 1237.49], [1136.63, 1246.02], [1137.19, 1245.43], [1141.17, 1249.16], [1144.19, 1245.96], [1139.99, 1242.04], [1140.22, 1241.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1075.63, 1380.19], [1084.71, 1370.15], [1078.51, 1364.52], [1069.27, 1374.73], [1075.63, 1380.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1074.51, 1011.46], [1083.22, 1019.3], [1097.19, 1003.76], [1088.48, 995.93], [1074.51, 1011.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.157, "pop": 0, "jobs": 157}}, {"shape": {"outer": [[1137.6, 1116.97], [1133.94, 1114.0], [1133.48, 1114.58], [1130.88, 1112.48], [1123.39, 1121.71], [1129.64, 1126.78], [1137.6, 1116.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1218.6, 1492.79], [1206.43, 1481.35], [1200.44, 1487.72], [1212.62, 1499.15], [1218.6, 1492.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1149.41, 1295.73], [1145.1, 1291.6], [1134.47, 1302.66], [1138.78, 1306.8], [1149.41, 1295.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1382.76, 1449.38], [1384.5, 1447.36], [1385.86, 1448.54], [1393.69, 1439.49], [1386.79, 1433.5], [1377.2, 1444.58], [1382.76, 1449.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1210.18, 1360.85], [1219.89, 1369.36], [1226.35, 1362.01], [1224.66, 1360.53], [1228.28, 1356.4], [1223.19, 1351.93], [1218.7, 1357.04], [1215.78, 1354.46], [1210.18, 1360.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[934.0, 1233.65], [928.61, 1228.88], [919.32, 1239.36], [925.35, 1244.71], [931.47, 1237.79], [930.83, 1237.23], [934.0, 1233.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1378.34, 1377.42], [1386.64, 1368.26], [1378.53, 1360.96], [1363.03, 1378.05], [1402.46, 1413.57], [1414.08, 1400.77], [1395.52, 1384.04], [1391.17, 1388.83], [1387.98, 1385.97], [1389.77, 1384.01], [1383.8, 1378.64], [1381.95, 1380.67], [1378.34, 1377.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.57, "pop": 0, "jobs": 570}}, {"shape": {"outer": [[1358.67, 1600.35], [1351.99, 1593.81], [1348.01, 1597.85], [1354.7, 1604.4], [1358.67, 1600.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1221.78, 1215.84], [1218.81, 1213.18], [1215.6, 1216.75], [1218.57, 1219.41], [1221.78, 1215.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1236.58, 1517.42], [1244.72, 1508.2], [1238.79, 1502.97], [1229.61, 1513.37], [1232.86, 1516.24], [1233.9, 1515.06], [1236.58, 1517.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1017.18, 1181.35], [1016.56, 1180.79], [1020.44, 1176.44], [1015.23, 1171.79], [1011.44, 1176.02], [1011.93, 1176.46], [1005.42, 1183.73], [1010.77, 1188.52], [1017.18, 1181.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1196.13, 1260.67], [1192.6, 1257.7], [1191.16, 1259.42], [1189.46, 1257.99], [1183.38, 1265.24], [1188.6, 1269.63], [1196.13, 1260.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1288.71, 1549.25], [1282.91, 1544.14], [1273.58, 1554.69], [1279.38, 1559.82], [1288.71, 1549.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1132.2, 1250.97], [1124.53, 1243.8], [1119.49, 1249.13], [1122.38, 1251.85], [1121.88, 1252.39], [1126.65, 1256.85], [1132.2, 1250.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1402.48, 1625.32], [1412.03, 1633.8], [1426.45, 1617.68], [1416.91, 1609.2], [1402.48, 1625.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[1417.32, 1601.93], [1417.02, 1601.66], [1417.77, 1600.87], [1413.56, 1596.95], [1412.82, 1597.74], [1412.55, 1597.49], [1403.48, 1607.2], [1408.25, 1611.62], [1417.32, 1601.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1083.37, 1316.45], [1072.47, 1306.12], [1070.14, 1308.59], [1068.37, 1306.91], [1064.77, 1310.72], [1077.44, 1322.72], [1083.37, 1316.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1362.69, 1435.01], [1365.92, 1431.35], [1366.98, 1432.27], [1375.11, 1423.06], [1369.8, 1418.38], [1368.95, 1419.34], [1361.25, 1412.53], [1352.22, 1422.76], [1360.04, 1429.67], [1358.56, 1431.36], [1362.69, 1435.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[1315.92, 1382.49], [1322.43, 1375.57], [1317.89, 1371.31], [1318.53, 1370.62], [1315.71, 1367.97], [1308.79, 1375.33], [1310.49, 1376.94], [1308.67, 1378.89], [1311.37, 1381.43], [1312.97, 1379.72], [1315.92, 1382.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1076.31, 1063.96], [1071.17, 1059.3], [1062.14, 1069.26], [1067.28, 1073.93], [1076.31, 1063.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1107.49, 1181.24], [1101.24, 1175.77], [1094.7, 1183.23], [1100.96, 1188.7], [1107.49, 1181.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[960.47, 1340.21], [955.86, 1335.73], [949.35, 1342.42], [951.36, 1344.38], [948.39, 1347.43], [953.86, 1352.76], [960.55, 1345.88], [957.68, 1343.07], [960.47, 1340.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1210.93, 1237.22], [1212.53, 1235.34], [1213.64, 1236.29], [1221.67, 1226.89], [1214.59, 1220.86], [1207.14, 1229.58], [1207.92, 1230.24], [1205.74, 1232.79], [1210.93, 1237.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1283.93, 1283.53], [1278.41, 1278.44], [1266.82, 1291.0], [1272.34, 1296.09], [1283.93, 1283.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1470.43, 1365.18], [1466.9, 1369.13], [1478.52, 1379.38], [1482.25, 1375.56], [1470.43, 1365.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.053, "pop": 0, "jobs": 53}}, {"shape": {"outer": [[1237.21, 1379.5], [1231.58, 1374.5], [1224.24, 1382.78], [1229.88, 1387.78], [1237.21, 1379.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1218.26, 1459.44], [1210.8, 1452.61], [1203.32, 1460.8], [1210.79, 1467.62], [1218.26, 1459.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1034.94, 1058.66], [1027.35, 1051.38], [1022.6, 1056.34], [1030.2, 1063.61], [1034.94, 1058.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1041.15, 1291.21], [1029.54, 1280.53], [1022.55, 1288.13], [1034.16, 1298.81], [1041.15, 1291.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1247.41, 1492.75], [1254.38, 1485.81], [1251.68, 1483.1], [1248.46, 1486.3], [1240.62, 1478.42], [1236.87, 1482.16], [1247.41, 1492.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[931.5, 1333.09], [939.59, 1340.5], [948.86, 1330.38], [940.78, 1322.97], [931.5, 1333.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1062.98, 1218.9], [1058.37, 1214.82], [1056.81, 1216.58], [1054.54, 1214.57], [1047.73, 1222.26], [1054.62, 1228.35], [1062.98, 1218.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[932.92, 1325.95], [935.88, 1322.7], [933.47, 1320.51], [935.43, 1318.37], [929.37, 1312.87], [923.45, 1319.35], [928.62, 1324.05], [929.63, 1322.95], [932.92, 1325.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1375.19, 1651.05], [1381.54, 1644.09], [1369.38, 1633.0], [1363.03, 1639.96], [1375.19, 1651.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1075.91, 1097.33], [1070.07, 1092.2], [1068.1, 1094.43], [1065.89, 1092.5], [1060.17, 1099.0], [1062.42, 1100.98], [1060.25, 1103.44], [1066.06, 1108.54], [1075.91, 1097.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1270.56, 1551.42], [1276.17, 1544.83], [1269.54, 1539.17], [1263.92, 1545.76], [1270.56, 1551.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1197.37, 1405.78], [1192.05, 1400.53], [1191.18, 1401.4], [1188.82, 1399.07], [1184.7, 1403.25], [1187.06, 1405.57], [1184.02, 1408.64], [1189.35, 1413.9], [1197.37, 1405.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1534.85, 1648.55], [1517.7, 1632.74], [1509.43, 1641.65], [1526.57, 1657.45], [1534.85, 1648.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.181, "pop": 0, "jobs": 181}}, {"shape": {"outer": [[1051.54, 1358.51], [1056.87, 1352.54], [1053.18, 1349.27], [1055.11, 1347.1], [1051.59, 1343.97], [1049.63, 1346.16], [1044.33, 1341.43], [1039.04, 1347.37], [1051.54, 1358.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[982.08, 1272.74], [976.37, 1267.57], [966.93, 1278.01], [972.63, 1283.17], [982.08, 1272.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1365.25, 1292.43], [1362.44, 1290.1], [1361.24, 1291.56], [1355.85, 1287.09], [1350.44, 1293.61], [1362.2, 1303.35], [1367.44, 1297.02], [1363.9, 1294.08], [1365.25, 1292.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1231.52, 1371.18], [1226.35, 1366.09], [1220.8, 1371.73], [1221.37, 1372.29], [1215.29, 1378.47], [1219.9, 1383.0], [1231.52, 1371.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1094.94, 1219.24], [1089.8, 1214.57], [1086.7, 1218.0], [1091.85, 1222.66], [1094.94, 1219.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1292.34, 1376.73], [1283.82, 1368.49], [1276.16, 1376.41], [1284.68, 1384.65], [1292.34, 1376.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1090.87, 1074.09], [1084.08, 1068.22], [1073.55, 1080.42], [1080.33, 1086.28], [1090.87, 1074.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1120.57, 1105.98], [1115.19, 1101.36], [1109.79, 1107.67], [1115.17, 1112.28], [1120.57, 1105.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1190.49, 1122.93], [1171.19, 1105.03], [1161.35, 1115.57], [1175.38, 1128.59], [1182.52, 1120.95], [1187.77, 1125.83], [1190.49, 1122.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.195, "pop": 0, "jobs": 195}}, {"shape": {"outer": [[1402.59, 1587.94], [1397.58, 1583.27], [1389.54, 1591.83], [1390.07, 1592.33], [1388.93, 1593.55], [1393.4, 1597.71], [1402.59, 1587.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1183.58, 1347.08], [1195.69, 1334.31], [1191.63, 1330.46], [1186.85, 1335.5], [1185.51, 1334.22], [1178.17, 1341.94], [1183.58, 1347.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[925.85, 1162.04], [921.17, 1167.29], [930.05, 1175.14], [930.88, 1174.19], [932.57, 1175.69], [934.64, 1173.37], [933.23, 1172.13], [935.19, 1169.92], [932.44, 1167.48], [933.81, 1165.94], [928.96, 1161.66], [927.4, 1163.41], [925.85, 1162.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1347.55, 1431.1], [1341.85, 1425.82], [1336.02, 1432.09], [1341.72, 1437.39], [1347.55, 1431.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1353.22, 1481.89], [1349.96, 1478.92], [1339.95, 1489.97], [1346.54, 1495.95], [1355.64, 1485.9], [1352.32, 1482.88], [1353.22, 1481.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1185.49, 1108.09], [1188.31, 1104.84], [1188.91, 1105.36], [1194.77, 1098.63], [1189.08, 1093.67], [1182.85, 1100.83], [1184.62, 1102.37], [1182.16, 1105.19], [1185.49, 1108.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1253.69, 1454.07], [1246.48, 1447.44], [1239.82, 1454.67], [1240.93, 1455.69], [1238.76, 1458.05], [1240.86, 1459.98], [1238.39, 1462.66], [1242.41, 1466.35], [1253.69, 1454.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1138.79, 1365.85], [1128.93, 1357.12], [1119.92, 1367.2], [1129.78, 1375.93], [1138.79, 1365.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1122.64, 1206.01], [1113.76, 1198.13], [1109.22, 1203.26], [1119.47, 1212.36], [1122.58, 1208.86], [1121.2, 1207.64], [1122.64, 1206.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1256.77, 1240.79], [1251.8, 1236.53], [1247.11, 1242.0], [1252.08, 1246.26], [1256.77, 1240.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1027.4, 1074.92], [1033.15, 1068.57], [1018.77, 1055.54], [1013.02, 1061.89], [1027.4, 1074.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1102.36, 1113.11], [1099.23, 1110.38], [1094.96, 1115.29], [1098.07, 1118.02], [1102.36, 1113.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1152.01, 1232.98], [1142.24, 1223.94], [1137.86, 1228.66], [1147.65, 1237.71], [1152.01, 1232.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1182.14, 1096.44], [1187.97, 1090.02], [1182.51, 1085.07], [1176.69, 1091.48], [1182.14, 1096.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1003.61, 1221.7], [997.39, 1216.28], [989.04, 1225.89], [995.26, 1231.3], [1003.61, 1221.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1308.29, 1362.88], [1297.59, 1353.8], [1292.07, 1360.31], [1302.77, 1369.38], [1308.29, 1362.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1267.19, 1495.16], [1262.65, 1490.73], [1256.73, 1496.77], [1261.27, 1501.2], [1267.19, 1495.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[987.9, 1286.72], [983.49, 1282.73], [981.03, 1285.43], [977.47, 1282.21], [973.13, 1287.0], [976.54, 1290.09], [975.35, 1291.41], [979.91, 1295.55], [987.9, 1286.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1352.98, 1314.44], [1341.71, 1304.13], [1335.32, 1311.1], [1342.27, 1317.47], [1337.37, 1322.82], [1343.09, 1328.05], [1347.58, 1323.13], [1346.19, 1321.86], [1352.98, 1314.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1357.04, 1303.27], [1350.43, 1296.99], [1344.89, 1302.83], [1351.49, 1309.11], [1357.04, 1303.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1071.65, 1025.7], [1076.97, 1019.83], [1063.32, 1007.2], [1057.81, 1013.18], [1060.41, 1015.57], [1059.45, 1016.59], [1070.13, 1026.48], [1071.1, 1025.27], [1071.65, 1025.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1252.16, 1364.04], [1248.66, 1360.96], [1249.32, 1360.21], [1246.4, 1357.63], [1245.36, 1358.81], [1242.2, 1356.02], [1238.04, 1360.74], [1234.81, 1357.88], [1232.45, 1360.56], [1236.82, 1364.42], [1238.81, 1362.16], [1247.26, 1369.6], [1252.16, 1364.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[959.16, 1144.46], [964.54, 1138.9], [960.09, 1134.6], [959.28, 1135.45], [954.29, 1130.63], [948.78, 1136.32], [954.36, 1141.71], [955.3, 1140.74], [959.16, 1144.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1006.61, 1094.95], [1008.8, 1092.41], [1007.57, 1091.36], [1009.59, 1089.0], [999.61, 1080.43], [995.06, 1085.73], [1004.26, 1093.64], [1004.61, 1093.23], [1006.61, 1094.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1059.83, 1084.39], [1052.22, 1077.73], [1045.11, 1085.87], [1052.71, 1092.52], [1059.83, 1084.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1035.85, 1213.33], [1045.66, 1203.44], [1038.65, 1196.49], [1032.12, 1203.06], [1033.16, 1204.09], [1030.35, 1206.93], [1032.2, 1208.76], [1030.81, 1210.16], [1033.52, 1212.85], [1034.44, 1211.92], [1035.85, 1213.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[986.16, 1107.97], [979.24, 1102.0], [976.32, 1105.38], [976.68, 1105.69], [974.27, 1108.47], [985.24, 1117.93], [988.33, 1114.36], [983.92, 1110.55], [986.16, 1107.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1336.23, 1265.56], [1330.75, 1260.78], [1325.03, 1267.34], [1330.5, 1272.11], [1336.23, 1265.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1395.82, 1275.89], [1390.6, 1270.95], [1387.2, 1274.53], [1386.75, 1274.1], [1379.44, 1281.81], [1385.12, 1287.19], [1395.82, 1275.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1211.66, 1111.96], [1205.7, 1106.67], [1202.57, 1110.21], [1201.17, 1108.97], [1197.47, 1113.14], [1204.84, 1119.67], [1211.66, 1111.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1162.76, 1279.89], [1158.9, 1276.19], [1160.01, 1275.05], [1155.8, 1271.01], [1149.98, 1277.08], [1153.64, 1280.6], [1154.29, 1279.91], [1158.69, 1284.13], [1162.76, 1279.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1371.01, 1432.61], [1376.7, 1437.8], [1383.95, 1429.87], [1378.26, 1424.68], [1371.01, 1432.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1285.02, 1420.06], [1279.76, 1415.23], [1270.2, 1425.65], [1275.46, 1430.47], [1285.02, 1420.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1360.86, 1503.69], [1366.71, 1508.96], [1377.33, 1497.19], [1371.49, 1491.92], [1360.86, 1503.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1055.32, 1211.93], [1049.9, 1206.74], [1042.23, 1214.74], [1043.39, 1215.85], [1042.15, 1217.14], [1046.41, 1221.23], [1055.32, 1211.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1116.9, 1287.23], [1123.01, 1280.65], [1123.43, 1281.04], [1126.67, 1277.55], [1123.46, 1274.57], [1120.54, 1277.72], [1119.45, 1276.71], [1113.02, 1283.62], [1116.9, 1287.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1227.88, 1234.06], [1221.48, 1228.6], [1214.69, 1236.53], [1221.09, 1242.0], [1227.88, 1234.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1122.83, 1404.46], [1119.02, 1401.0], [1117.06, 1403.16], [1113.69, 1400.1], [1106.67, 1407.81], [1113.84, 1414.34], [1122.83, 1404.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1392.18, 1339.15], [1386.61, 1345.06], [1411.31, 1366.35], [1416.77, 1360.48], [1392.18, 1339.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.168, "pop": 0, "jobs": 168}}, {"shape": {"outer": [[1378.62, 1458.1], [1370.41, 1467.22], [1390.22, 1485.08], [1367.22, 1510.16], [1380.91, 1522.72], [1411.78, 1489.08], [1399.87, 1478.15], [1400.34, 1477.64], [1378.62, 1458.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.754, "pop": 0, "jobs": 754}}, {"shape": {"outer": [[1247.63, 1234.89], [1243.58, 1231.31], [1238.73, 1236.79], [1242.78, 1240.38], [1247.63, 1234.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1030.79, 1136.32], [1043.04, 1122.7], [1030.76, 1111.64], [1018.5, 1125.28], [1030.79, 1136.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[1073.6, 1322.62], [1069.19, 1318.72], [1067.7, 1320.4], [1061.56, 1314.98], [1057.29, 1319.8], [1067.85, 1329.14], [1073.6, 1322.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1102.92, 1333.32], [1107.72, 1328.36], [1108.52, 1329.14], [1112.39, 1325.15], [1106.08, 1319.02], [1101.6, 1323.63], [1102.19, 1324.2], [1097.99, 1328.53], [1102.92, 1333.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1236.63, 1242.21], [1230.86, 1237.19], [1224.37, 1244.65], [1230.14, 1249.67], [1236.63, 1242.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[848.02, 1285.26], [843.92, 1281.82], [838.65, 1288.05], [842.74, 1291.49], [848.02, 1285.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1379.68, 1626.94], [1388.59, 1635.05], [1393.22, 1629.96], [1384.32, 1621.85], [1379.68, 1626.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[989.82, 1167.86], [992.76, 1164.68], [994.32, 1166.11], [998.38, 1161.73], [996.81, 1160.27], [999.19, 1157.7], [992.02, 1151.07], [989.28, 1154.03], [989.91, 1154.61], [986.28, 1158.53], [987.56, 1159.72], [984.55, 1162.98], [989.82, 1167.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1090.33, 1094.14], [1093.75, 1090.09], [1095.22, 1091.33], [1101.58, 1083.8], [1091.66, 1075.44], [1088.21, 1079.53], [1089.09, 1080.28], [1082.78, 1087.77], [1090.33, 1094.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1280.99, 1300.75], [1285.69, 1295.71], [1286.51, 1296.46], [1289.58, 1293.16], [1283.96, 1287.92], [1276.18, 1296.27], [1280.99, 1300.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1244.92, 1301.05], [1234.65, 1312.24], [1241.29, 1318.0], [1251.28, 1306.96], [1244.92, 1301.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1082.11, 1103.48], [1079.88, 1101.4], [1078.55, 1102.83], [1075.82, 1100.3], [1069.3, 1107.29], [1074.25, 1111.91], [1082.11, 1103.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1127.37, 1293.2], [1140.85, 1278.58], [1135.6, 1273.74], [1122.12, 1288.36], [1127.37, 1293.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1358.64, 1502.84], [1367.16, 1493.68], [1362.41, 1489.25], [1359.57, 1492.3], [1358.3, 1491.13], [1351.49, 1498.45], [1354.27, 1501.05], [1355.41, 1499.83], [1358.64, 1502.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1263.27, 1353.32], [1255.33, 1346.08], [1249.49, 1352.49], [1257.43, 1359.73], [1263.27, 1353.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1305.66, 1562.95], [1298.57, 1556.33], [1290.85, 1564.61], [1292.91, 1566.54], [1290.39, 1569.23], [1295.42, 1573.93], [1305.66, 1562.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1387.62, 1576.05], [1382.51, 1571.48], [1374.47, 1580.41], [1379.57, 1584.98], [1387.62, 1576.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[995.58, 1215.74], [988.53, 1209.38], [981.28, 1217.4], [988.34, 1223.77], [995.58, 1215.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1208.44, 1221.43], [1198.11, 1212.24], [1192.52, 1218.54], [1195.4, 1221.09], [1194.46, 1222.15], [1201.91, 1228.77], [1208.44, 1221.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1065.18, 1032.48], [1069.55, 1027.65], [1055.91, 1015.28], [1050.57, 1021.17], [1062.29, 1031.79], [1063.25, 1030.73], [1065.18, 1032.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1039.28, 1154.95], [1031.15, 1146.85], [1025.17, 1152.86], [1033.3, 1160.95], [1039.28, 1154.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[966.28, 1200.46], [963.66, 1198.29], [968.43, 1192.47], [963.96, 1188.8], [955.91, 1198.59], [956.6, 1199.16], [954.85, 1201.29], [961.21, 1206.52], [966.28, 1200.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[926.39, 1226.05], [920.81, 1220.97], [911.55, 1231.15], [917.13, 1236.23], [926.39, 1226.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1338.36, 1391.21], [1332.71, 1386.17], [1329.65, 1389.6], [1328.45, 1388.53], [1324.55, 1392.88], [1331.42, 1399.0], [1338.36, 1391.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1146.8, 1239.24], [1144.41, 1237.0], [1145.02, 1236.37], [1137.22, 1229.03], [1132.95, 1233.57], [1140.67, 1240.83], [1142.69, 1238.68], [1145.15, 1241.0], [1146.8, 1239.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1470.88, 1698.85], [1464.79, 1693.43], [1458.47, 1700.54], [1464.57, 1705.95], [1470.88, 1698.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[967.04, 1211.38], [962.89, 1207.79], [957.59, 1213.91], [961.74, 1217.5], [967.04, 1211.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1200.38, 1475.59], [1194.64, 1470.32], [1191.17, 1474.08], [1188.03, 1471.21], [1181.64, 1478.17], [1190.51, 1486.32], [1200.38, 1475.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1120.23, 1264.47], [1123.66, 1260.36], [1114.54, 1252.75], [1111.23, 1256.71], [1112.21, 1257.53], [1110.81, 1259.21], [1116.67, 1264.09], [1117.94, 1262.57], [1120.23, 1264.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1300.41, 1298.13], [1293.58, 1291.95], [1284.17, 1302.36], [1291.01, 1308.54], [1300.41, 1298.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[960.23, 1364.69], [975.06, 1348.74], [968.28, 1342.44], [953.45, 1358.38], [960.23, 1364.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1264.78, 1245.1], [1260.26, 1241.2], [1256.16, 1245.96], [1260.68, 1249.86], [1264.78, 1245.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1109.28, 1278.95], [1115.13, 1272.26], [1107.44, 1265.54], [1107.93, 1264.97], [1105.66, 1262.99], [1098.66, 1271.01], [1102.74, 1274.59], [1103.41, 1273.83], [1109.28, 1278.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1002.69, 1295.46], [997.86, 1291.04], [994.33, 1294.92], [992.71, 1293.44], [988.34, 1298.22], [989.17, 1298.97], [986.98, 1301.37], [992.61, 1306.5], [1002.69, 1295.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1052.22, 1037.56], [1044.69, 1030.4], [1039.81, 1035.53], [1047.35, 1042.68], [1052.22, 1037.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1012.24, 1327.23], [1018.86, 1320.57], [1017.3, 1319.02], [1021.41, 1314.88], [1015.16, 1308.66], [1012.87, 1310.97], [1012.35, 1310.45], [1003.81, 1319.05], [1008.12, 1323.32], [1008.21, 1323.23], [1012.24, 1327.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1051.16, 1133.86], [1044.47, 1127.47], [1035.79, 1136.54], [1042.48, 1142.93], [1051.16, 1133.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1026.03, 1302.22], [1029.33, 1298.85], [1024.44, 1293.77], [1020.89, 1297.27], [1026.03, 1302.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1364.9, 1324.54], [1360.74, 1320.63], [1356.94, 1324.67], [1361.11, 1328.59], [1364.9, 1324.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1270.58, 1505.02], [1266.81, 1501.16], [1262.16, 1505.7], [1265.93, 1509.56], [1270.58, 1505.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1178.35, 1326.87], [1172.59, 1321.41], [1163.39, 1331.13], [1169.15, 1336.58], [1178.35, 1326.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1233.53, 1295.48], [1219.48, 1281.94], [1208.85, 1292.96], [1209.86, 1293.94], [1204.8, 1299.19], [1217.12, 1311.07], [1222.31, 1305.69], [1223.03, 1306.38], [1233.53, 1295.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.338, "pop": 169, "jobs": 0}}, {"shape": {"outer": [[1252.47, 1258.29], [1247.51, 1253.59], [1238.09, 1263.54], [1243.05, 1268.25], [1252.47, 1258.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1162.39, 1163.64], [1168.18, 1157.33], [1159.16, 1149.03], [1155.81, 1152.69], [1154.06, 1151.08], [1152.97, 1152.27], [1150.99, 1150.44], [1148.34, 1153.33], [1154.8, 1159.26], [1156.1, 1157.86], [1162.39, 1163.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1012.25, 1302.27], [1007.23, 1297.66], [1004.46, 1300.69], [1002.72, 1299.09], [996.44, 1305.95], [999.15, 1308.43], [996.98, 1310.79], [1001.05, 1314.51], [1012.25, 1302.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1422.86, 1695.61], [1432.2, 1703.78], [1443.1, 1691.32], [1433.76, 1683.14], [1422.86, 1695.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1322.79, 1450.73], [1317.96, 1446.23], [1308.18, 1456.73], [1313.0, 1461.23], [1322.79, 1450.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1147.08, 1444.74], [1160.89, 1456.77], [1172.27, 1444.28], [1158.62, 1432.06], [1147.08, 1444.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.199, "pop": 0, "jobs": 199}}, {"shape": {"outer": [[1026.75, 1204.03], [1037.02, 1193.67], [1030.51, 1187.23], [1020.46, 1197.38], [1022.22, 1199.13], [1020.83, 1200.54], [1024.03, 1203.71], [1025.22, 1202.51], [1026.75, 1204.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1266.81, 1483.11], [1277.03, 1472.16], [1270.29, 1465.86], [1269.19, 1467.03], [1264.08, 1462.27], [1252.55, 1474.61], [1259.93, 1481.51], [1262.35, 1478.93], [1266.81, 1483.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[1266.57, 1263.6], [1256.06, 1275.31], [1266.26, 1284.47], [1276.77, 1272.76], [1266.57, 1263.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[1407.27, 1284.07], [1400.4, 1277.88], [1389.46, 1290.03], [1396.33, 1296.23], [1407.27, 1284.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1335.86, 1407.75], [1344.67, 1397.82], [1339.01, 1392.81], [1329.4, 1403.64], [1333.05, 1406.88], [1333.85, 1405.97], [1335.86, 1407.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1004.06, 1146.78], [997.92, 1141.18], [991.31, 1148.43], [997.45, 1154.04], [1004.06, 1146.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1262.2, 1265.57], [1257.01, 1260.79], [1247.22, 1271.44], [1252.41, 1276.23], [1262.2, 1265.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1237.21, 1502.49], [1230.47, 1496.33], [1222.47, 1505.07], [1229.21, 1511.23], [1237.21, 1502.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1138.41, 1412.37], [1135.4, 1409.59], [1134.04, 1411.06], [1132.42, 1409.55], [1126.38, 1416.06], [1131.72, 1421.02], [1137.25, 1415.05], [1136.54, 1414.39], [1138.41, 1412.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1306.85, 1374.11], [1302.25, 1370.05], [1296.11, 1376.95], [1300.72, 1381.01], [1306.85, 1374.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1271.17, 1533.54], [1264.65, 1527.3], [1257.4, 1534.87], [1259.59, 1536.95], [1258.95, 1537.62], [1263.29, 1541.78], [1271.17, 1533.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1313.53, 1523.89], [1323.74, 1513.02], [1316.7, 1506.41], [1314.75, 1508.47], [1308.59, 1502.68], [1299.47, 1512.38], [1308.5, 1520.87], [1309.35, 1519.96], [1313.53, 1523.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[1352.48, 1544.63], [1346.38, 1538.51], [1335.74, 1549.11], [1341.84, 1555.23], [1352.48, 1544.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1006.11, 1113.96], [1009.97, 1109.61], [1012.09, 1111.49], [1016.14, 1106.92], [1013.87, 1104.9], [1018.35, 1099.85], [1014.46, 1096.42], [1002.08, 1110.4], [1006.11, 1113.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1365.39, 1363.69], [1359.74, 1357.96], [1351.11, 1366.47], [1356.77, 1372.2], [1365.39, 1363.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1449.17, 1642.82], [1434.47, 1629.42], [1427.5, 1637.01], [1433.16, 1642.17], [1432.52, 1642.87], [1431.8, 1643.64], [1435.16, 1646.7], [1435.93, 1645.86], [1436.51, 1645.23], [1442.19, 1650.42], [1449.17, 1642.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[980.36, 1118.53], [971.95, 1111.3], [967.43, 1116.57], [975.83, 1123.8], [980.36, 1118.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1105.6, 1346.5], [1108.03, 1343.78], [1108.88, 1344.55], [1117.39, 1335.02], [1111.61, 1329.84], [1100.67, 1342.1], [1105.6, 1346.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1178.06, 1283.32], [1172.62, 1278.52], [1168.13, 1283.6], [1173.58, 1288.4], [1178.06, 1283.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1225.1, 1461.87], [1230.06, 1456.51], [1230.89, 1457.28], [1240.58, 1446.81], [1233.27, 1440.04], [1223.47, 1450.62], [1225.81, 1452.79], [1220.96, 1458.03], [1225.1, 1461.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[944.01, 1388.8], [951.97, 1395.92], [956.64, 1390.74], [948.68, 1383.62], [944.01, 1388.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[938.77, 1396.56], [945.15, 1402.09], [950.47, 1396.01], [944.09, 1390.48], [938.77, 1396.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1803.85, 604.2], [1809.49, 597.56], [1802.46, 591.58], [1799.49, 595.07], [1800.33, 595.78], [1797.64, 598.93], [1803.85, 604.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1764.63, 607.34], [1760.52, 602.85], [1753.84, 608.92], [1754.78, 609.94], [1752.1, 612.37], [1755.29, 615.85], [1764.63, 607.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1665.89, 999.8], [1660.98, 995.42], [1651.28, 1006.21], [1655.77, 1010.22], [1656.46, 1009.46], [1656.87, 1009.83], [1665.89, 999.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1863.09, 992.84], [1857.5, 987.95], [1854.56, 991.3], [1860.15, 996.18], [1863.09, 992.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2255.41, 1015.85], [2263.47, 1006.55], [2248.12, 993.12], [2240.19, 1002.06], [2255.41, 1015.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2224.51, 951.56], [2226.6, 949.02], [2224.65, 947.4], [2228.45, 942.81], [2219.4, 935.33], [2212.17, 944.07], [2221.12, 951.48], [2222.46, 949.86], [2224.51, 951.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1675.25, 734.04], [1668.85, 728.13], [1656.22, 741.72], [1656.85, 742.29], [1658.09, 743.43], [1662.62, 747.63], [1675.25, 734.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2146.64, 916.02], [2148.75, 913.31], [2150.31, 914.51], [2154.7, 908.88], [2153.74, 908.13], [2155.56, 905.77], [2151.95, 902.96], [2150.38, 904.96], [2148.93, 903.84], [2143.85, 910.38], [2146.37, 912.34], [2144.7, 914.5], [2146.64, 916.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1432.33, 446.69], [1431.56, 446.02], [1433.68, 443.57], [1428.08, 438.77], [1425.72, 441.49], [1424.82, 440.72], [1414.41, 452.75], [1419.1, 456.77], [1418.45, 457.53], [1420.63, 459.39], [1422.26, 457.51], [1422.67, 457.85], [1432.33, 446.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1850.14, 901.87], [1844.28, 896.55], [1837.8, 903.63], [1843.66, 908.96], [1850.14, 901.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2213.01, 960.55], [2215.86, 957.34], [2217.01, 958.36], [2218.93, 956.21], [2217.81, 955.22], [2219.97, 952.79], [2210.59, 944.46], [2203.66, 952.26], [2213.01, 960.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2012.3, 1190.22], [2016.76, 1185.23], [2015.01, 1183.63], [2016.17, 1182.26], [2014.53, 1180.84], [2014.99, 1180.34], [2013.31, 1178.77], [2012.75, 1179.36], [2010.62, 1177.37], [2009.88, 1178.26], [2005.67, 1174.67], [2000.41, 1180.71], [2008.24, 1187.76], [2008.71, 1187.2], [2012.3, 1190.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2056.24, 1220.48], [2049.89, 1211.62], [2046.12, 1214.33], [2047.42, 1216.15], [2045.29, 1217.67], [2050.33, 1224.7], [2056.24, 1220.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2069.44, 1155.74], [2062.84, 1149.94], [2054.98, 1158.91], [2061.6, 1164.69], [2069.44, 1155.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2111.61, 951.82], [2106.88, 947.22], [2101.91, 952.33], [2106.65, 956.93], [2111.61, 951.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1660.82, 1060.28], [1665.43, 1055.32], [1659.8, 1050.12], [1657.69, 1052.37], [1656.51, 1051.27], [1654.28, 1053.67], [1655.51, 1054.8], [1655.23, 1055.1], [1660.82, 1060.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1913.09, 1013.37], [1909.0, 1009.68], [1902.02, 1017.43], [1906.12, 1021.11], [1913.09, 1013.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1985.87, 718.51], [1990.86, 712.95], [1986.27, 708.77], [1981.22, 714.42], [1985.87, 718.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1452.72, 522.71], [1450.56, 525.1], [1449.39, 524.04], [1445.91, 527.9], [1459.02, 539.67], [1459.53, 539.11], [1460.71, 537.8], [1464.66, 533.43], [1452.72, 522.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1905.08, 1006.26], [1901.75, 1002.94], [1894.48, 1010.24], [1897.82, 1013.55], [1905.08, 1006.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2082.85, 1194.29], [2079.13, 1191.03], [2076.66, 1193.84], [2073.69, 1191.24], [2068.9, 1196.7], [2079.38, 1205.87], [2084.01, 1200.58], [2080.23, 1197.28], [2082.85, 1194.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2196.9, 910.6], [2205.18, 901.44], [2199.11, 895.99], [2190.98, 905.04], [2196.9, 910.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2250.26, 950.28], [2245.46, 946.1], [2241.17, 950.8], [2245.88, 954.94], [2250.26, 950.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2003.5, 1218.9], [1989.26, 1230.65], [1996.18, 1238.98], [2008.53, 1228.78], [2005.73, 1225.41], [2007.62, 1223.85], [2003.5, 1218.9]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.121, "pop": 0, "jobs": 121}}, {"shape": {"outer": [[1323.19, 477.58], [1317.19, 472.19], [1314.24, 475.45], [1313.43, 474.72], [1309.1, 479.5], [1309.99, 480.28], [1306.35, 484.3], [1312.3, 489.62], [1323.19, 477.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2251.16, 945.43], [2261.99, 932.52], [2256.05, 927.53], [2243.21, 942.84], [2246.17, 945.33], [2248.18, 942.94], [2251.16, 945.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1720.15, 1043.13], [1714.46, 1038.2], [1704.4, 1049.74], [1710.1, 1054.67], [1720.15, 1043.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1636.58, 1106.88], [1636.44, 1106.77], [1637.44, 1105.66], [1632.9, 1101.59], [1631.89, 1102.68], [1631.62, 1102.43], [1625.71, 1108.97], [1625.95, 1109.18], [1624.06, 1111.28], [1628.77, 1115.52], [1636.58, 1106.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1718.02, 741.51], [1711.11, 734.87], [1706.68, 739.49], [1713.58, 746.13], [1718.02, 741.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1566.58, 567.22], [1563.5, 564.47], [1565.05, 562.74], [1561.43, 559.5], [1559.87, 561.23], [1559.41, 560.82], [1552.83, 568.14], [1560.0, 574.54], [1566.58, 567.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1938.54, 1254.77], [1933.75, 1250.14], [1928.47, 1255.6], [1933.26, 1260.23], [1938.54, 1254.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1622.92, 1071.6], [1616.11, 1065.47], [1610.63, 1071.5], [1618.65, 1078.72], [1623.97, 1072.85], [1622.77, 1071.77], [1622.92, 1071.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1953.7, 828.55], [1949.33, 824.64], [1944.82, 829.63], [1949.19, 833.54], [1953.7, 828.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2095.02, 965.38], [2091.32, 961.84], [2087.34, 966.01], [2091.04, 969.55], [2095.02, 965.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1778.65, 1053.22], [1772.72, 1048.19], [1766.36, 1055.62], [1772.29, 1060.66], [1778.65, 1053.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1329.45, 548.13], [1335.73, 553.81], [1341.21, 547.81], [1334.93, 542.12], [1329.45, 548.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1869.5, 1120.78], [1865.04, 1115.44], [1852.01, 1126.24], [1854.97, 1129.77], [1851.95, 1132.28], [1854.69, 1135.57], [1866.05, 1126.16], [1865.08, 1125.0], [1868.23, 1122.39], [1867.96, 1122.06], [1869.5, 1120.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1895.77, 1152.21], [1890.54, 1147.79], [1885.82, 1153.01], [1885.03, 1152.28], [1882.14, 1155.72], [1883.42, 1157.15], [1879.56, 1161.29], [1884.11, 1165.82], [1895.77, 1152.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2069.86, 942.99], [2065.97, 938.81], [2061.93, 942.58], [2065.82, 946.76], [2069.86, 942.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1771.95, 687.08], [1765.34, 681.34], [1755.28, 692.16], [1756.38, 693.11], [1757.96, 694.47], [1762.23, 698.19], [1771.95, 687.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1963.35, 1242.02], [1958.52, 1236.16], [1949.7, 1243.42], [1954.52, 1249.27], [1963.35, 1242.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1303.28, 460.11], [1298.27, 455.47], [1294.2, 459.84], [1292.59, 458.34], [1288.28, 462.97], [1289.3, 463.91], [1287.37, 465.97], [1292.06, 470.32], [1295.49, 466.64], [1296.41, 467.48], [1303.28, 460.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1869.76, 913.65], [1859.47, 925.11], [1865.62, 930.59], [1872.31, 923.13], [1871.21, 922.14], [1874.8, 918.14], [1869.76, 913.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1283.96, 598.62], [1285.91, 600.37], [1285.08, 601.28], [1289.04, 604.84], [1290.09, 603.69], [1290.83, 604.35], [1302.81, 591.13], [1296.72, 585.64], [1293.11, 589.63], [1292.56, 589.13], [1283.96, 598.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1793.02, 765.0], [1789.77, 762.06], [1787.83, 764.21], [1785.87, 762.44], [1775.58, 773.8], [1782.42, 779.99], [1793.01, 768.28], [1791.38, 766.8], [1793.02, 765.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1612.05, 626.89], [1623.22, 614.42], [1622.93, 614.15], [1624.02, 612.94], [1617.8, 607.41], [1609.91, 616.21], [1610.74, 616.94], [1606.36, 621.82], [1612.05, 626.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1835.34, 944.97], [1829.83, 939.96], [1821.39, 949.16], [1826.9, 954.18], [1829.14, 951.72], [1829.77, 952.3], [1833.27, 948.47], [1832.65, 947.9], [1835.34, 944.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2110.14, 996.4], [2110.73, 991.35], [2101.01, 990.21], [2100.61, 993.56], [2097.45, 993.18], [2096.63, 1000.1], [2112.35, 1001.95], [2112.97, 996.73], [2110.14, 996.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2199.8, 1056.69], [2195.22, 1052.57], [2190.55, 1057.76], [2195.12, 1061.89], [2199.8, 1056.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1598.61, 937.21], [1594.7, 933.7], [1593.32, 935.23], [1592.43, 934.43], [1584.4, 943.3], [1584.77, 943.64], [1583.42, 945.12], [1589.24, 950.35], [1597.15, 941.61], [1595.76, 940.36], [1598.61, 937.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2184.53, 898.65], [2190.14, 903.81], [2194.97, 898.56], [2189.37, 893.41], [2184.53, 898.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1561.43, 905.97], [1555.03, 900.12], [1545.74, 910.21], [1552.13, 916.06], [1561.43, 905.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2065.25, 955.07], [2058.36, 948.87], [2049.02, 959.21], [2055.9, 965.39], [2065.25, 955.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1792.75, 920.04], [1800.68, 911.38], [1795.91, 907.02], [1791.78, 911.53], [1790.72, 910.57], [1786.91, 914.72], [1787.79, 915.53], [1785.78, 917.73], [1790.18, 921.75], [1792.2, 919.54], [1792.75, 920.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1688.8, 675.22], [1686.2, 672.8], [1684.61, 674.5], [1680.97, 671.12], [1674.93, 677.57], [1679.78, 682.08], [1681.11, 680.66], [1682.5, 681.95], [1688.8, 675.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2118.88, 998.14], [2121.29, 996.3], [2121.9, 997.09], [2128.18, 992.29], [2121.76, 983.9], [2113.07, 990.55], [2118.88, 998.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1660.06, 1296.51], [1674.4, 1280.91], [1670.68, 1277.14], [1682.21, 1264.16], [1667.19, 1249.35], [1655.48, 1262.31], [1651.84, 1258.88], [1647.86, 1263.36], [1645.79, 1261.62], [1634.72, 1273.72], [1660.06, 1296.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.705, "pop": 0, "jobs": 705}}, {"shape": {"outer": [[1966.43, 671.09], [1975.9, 679.48], [1980.43, 674.74], [1981.05, 675.3], [1984.59, 671.5], [1980.89, 668.16], [1978.55, 666.05], [1974.51, 662.41], [1966.43, 671.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2177.81, 906.23], [2175.32, 903.94], [2171.35, 908.3], [2173.84, 910.57], [2177.81, 906.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1497.57, 441.19], [1491.93, 436.08], [1485.7, 442.9], [1486.15, 443.31], [1485.45, 444.08], [1487.48, 445.91], [1488.18, 445.14], [1491.35, 448.01], [1497.57, 441.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1233.88, 576.23], [1258.35, 549.02], [1251.67, 543.05], [1227.19, 570.25], [1233.88, 576.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.21, "pop": 0, "jobs": 210}}, {"shape": {"outer": [[1933.69, 1048.49], [1942.61, 1038.76], [1937.89, 1034.42], [1936.32, 1036.14], [1935.3, 1035.21], [1926.82, 1044.45], [1931.08, 1048.36], [1932.21, 1047.13], [1933.69, 1048.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2074.47, 675.11], [2072.04, 672.99], [2067.3, 678.43], [2069.73, 680.54], [2074.47, 675.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1842.61, 849.85], [1837.19, 845.11], [1832.24, 850.73], [1837.65, 855.47], [1842.61, 849.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1974.98, 725.23], [1985.61, 734.97], [1989.59, 730.68], [1988.7, 729.85], [1992.37, 725.72], [1983.95, 718.13], [1981.68, 720.86], [1980.75, 720.07], [1978.88, 720.65], [1974.98, 725.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1846.24, 597.01], [1837.6, 588.14], [1830.78, 594.79], [1839.41, 603.66], [1846.24, 597.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1966.64, 686.08], [1972.88, 691.36], [1977.18, 686.2], [1970.98, 680.93], [1966.64, 686.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2046.11, 891.87], [2040.97, 887.38], [2036.84, 892.07], [2041.98, 896.56], [2046.11, 891.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1903.96, 811.27], [1900.36, 807.99], [1897.99, 810.57], [1896.28, 809.0], [1888.89, 817.04], [1894.19, 821.89], [1903.96, 811.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1877.41, 1069.17], [1872.24, 1063.93], [1869.28, 1066.86], [1868.32, 1065.9], [1865.46, 1068.73], [1866.73, 1070.0], [1863.06, 1073.64], [1867.93, 1078.55], [1877.41, 1069.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1717.09, 1347.81], [1729.3, 1334.35], [1741.34, 1321.13], [1723.69, 1304.94], [1715.56, 1313.94], [1725.05, 1322.12], [1708.26, 1339.87], [1717.09, 1347.81]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.363, "pop": 0, "jobs": 363}}, {"shape": {"outer": [[1850.04, 595.7], [1857.03, 588.32], [1852.9, 584.4], [1853.27, 584.01], [1845.42, 576.58], [1842.74, 579.41], [1841.07, 577.82], [1838.31, 580.73], [1839.73, 582.08], [1837.56, 584.38], [1843.83, 590.31], [1844.08, 590.05], [1850.04, 595.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1921.37, 1019.87], [1916.22, 1014.95], [1907.19, 1024.42], [1912.35, 1029.33], [1921.37, 1019.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1908.93, 1189.98], [1914.28, 1185.05], [1909.66, 1180.04], [1911.7, 1178.16], [1908.02, 1174.17], [1897.19, 1184.16], [1901.82, 1189.18], [1905.28, 1186.01], [1908.93, 1189.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1472.57, 402.87], [1468.98, 399.77], [1455.7, 415.03], [1459.89, 418.65], [1465.69, 411.99], [1465.08, 411.46], [1472.57, 402.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1901.12, 948.76], [1895.6, 943.67], [1889.03, 950.75], [1894.55, 955.84], [1901.12, 948.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1604.13, 510.32], [1607.07, 509.65], [1608.72, 506.3], [1607.85, 503.58], [1605.03, 502.06], [1601.52, 502.87], [1600.43, 505.82], [1601.22, 509.07], [1604.13, 510.32]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.033, "pop": 0, "jobs": 33}}, {"shape": {"outer": [[1814.82, 924.16], [1810.29, 920.1], [1808.65, 921.93], [1807.83, 921.18], [1802.01, 927.64], [1802.19, 927.81], [1798.18, 932.27], [1802.28, 935.94], [1803.61, 934.47], [1804.14, 934.96], [1807.02, 931.77], [1808.41, 933.01], [1811.7, 929.36], [1810.84, 928.58], [1814.82, 924.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2223.87, 888.19], [2215.88, 881.24], [2214.32, 882.94], [2213.33, 882.0], [2204.74, 891.89], [2205.19, 892.3], [2203.47, 894.31], [2209.22, 899.42], [2208.57, 900.12], [2211.18, 902.34], [2223.87, 888.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[1442.89, 755.95], [1444.99, 753.4], [1440.09, 749.38], [1437.99, 751.93], [1442.89, 755.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1693.27, 837.32], [1699.78, 843.29], [1708.24, 834.14], [1707.6, 833.56], [1711.65, 829.17], [1706.14, 824.13], [1702.07, 828.53], [1701.71, 828.2], [1693.27, 837.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1655.97, 978.35], [1647.76, 971.04], [1647.29, 971.55], [1644.29, 968.89], [1638.89, 974.9], [1650.1, 984.89], [1655.97, 978.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1897.48, 910.93], [1893.6, 907.12], [1888.81, 911.94], [1892.68, 915.76], [1897.48, 910.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1427.69, 532.08], [1438.11, 520.51], [1437.39, 519.88], [1439.12, 517.94], [1434.81, 514.08], [1431.77, 517.46], [1430.93, 516.71], [1422.27, 526.33], [1423.12, 527.08], [1422.67, 527.58], [1427.69, 532.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2032.18, 1149.04], [2047.34, 1132.45], [2040.91, 1126.56], [2025.66, 1143.25], [2032.18, 1149.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1760.43, 1102.82], [1755.02, 1097.77], [1757.68, 1094.92], [1752.2, 1089.81], [1749.1, 1093.11], [1750.58, 1094.49], [1748.73, 1096.45], [1751.62, 1099.15], [1749.42, 1101.49], [1755.96, 1107.58], [1760.43, 1102.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1771.26, 1088.26], [1763.27, 1081.12], [1758.62, 1086.28], [1761.3, 1088.68], [1760.51, 1089.55], [1764.27, 1092.93], [1765.06, 1092.04], [1767.9, 1094.57], [1772.11, 1089.89], [1770.82, 1088.74], [1771.26, 1088.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1898.42, 895.81], [1896.19, 901.82], [1903.42, 904.49], [1905.66, 898.47], [1898.42, 895.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1943.22, 671.67], [1938.98, 667.61], [1935.35, 671.64], [1939.55, 675.51], [1943.22, 671.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1680.9, 667.71], [1675.14, 662.23], [1668.25, 669.45], [1668.97, 670.14], [1666.21, 673.04], [1671.25, 677.84], [1680.9, 667.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2096.53, 771.13], [2094.96, 769.57], [2087.22, 777.43], [2093.22, 783.34], [2100.31, 776.14], [2095.88, 771.79], [2096.53, 771.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2101.83, 987.69], [2100.14, 986.17], [2102.99, 983.02], [2099.25, 979.66], [2096.39, 982.8], [2094.85, 981.41], [2085.19, 992.07], [2091.89, 998.09], [2093.42, 996.41], [2093.7, 996.67], [2101.83, 987.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2223.2, 1048.33], [2219.32, 1044.89], [2214.03, 1050.84], [2217.91, 1054.28], [2223.2, 1048.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2041.42, 915.89], [2037.94, 912.89], [2033.8, 917.7], [2037.28, 920.7], [2041.42, 915.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1927.24, 1028.19], [1921.14, 1022.1], [1911.21, 1032.05], [1917.32, 1038.15], [1927.24, 1028.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1774.96, 750.23], [1767.82, 744.89], [1765.37, 748.15], [1763.41, 746.68], [1762.12, 748.39], [1762.87, 748.95], [1756.47, 757.5], [1764.92, 763.83], [1774.96, 750.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1287.54, 578.57], [1284.81, 576.08], [1285.96, 574.83], [1281.99, 571.2], [1275.08, 578.71], [1276.21, 579.74], [1274.14, 582.0], [1276.87, 584.5], [1278.06, 583.21], [1280.89, 585.8], [1287.54, 578.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1440.11, 471.06], [1441.59, 472.4], [1440.58, 473.51], [1444.0, 476.62], [1444.94, 475.6], [1446.15, 476.7], [1458.75, 462.91], [1452.63, 457.36], [1440.11, 471.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2033.96, 655.6], [2039.77, 648.87], [2036.1, 645.8], [2030.33, 652.52], [2033.96, 655.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1408.44, 467.28], [1403.5, 462.97], [1397.12, 470.23], [1402.06, 474.54], [1408.44, 467.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1901.33, 1002.13], [1897.18, 997.88], [1889.11, 1005.75], [1893.26, 1010.0], [1901.33, 1002.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1856.45, 630.64], [1863.11, 623.16], [1860.71, 620.94], [1862.66, 618.78], [1855.0, 611.87], [1849.62, 617.81], [1851.56, 619.58], [1848.29, 623.23], [1856.45, 630.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1807.78, 648.69], [1801.03, 642.82], [1790.79, 654.51], [1797.53, 660.38], [1807.78, 648.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2026.43, 886.99], [2021.8, 882.66], [2017.2, 887.57], [2021.84, 891.91], [2026.43, 886.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1702.64, 955.45], [1697.2, 950.61], [1695.0, 953.05], [1690.36, 948.9], [1685.36, 954.45], [1685.87, 954.9], [1682.08, 959.12], [1684.88, 961.62], [1686.43, 959.88], [1690.11, 963.17], [1691.6, 961.5], [1694.71, 964.27], [1702.64, 955.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1312.69, 624.09], [1313.66, 623.0], [1314.3, 623.57], [1324.4, 612.23], [1319.07, 607.51], [1315.66, 611.34], [1314.79, 610.58], [1311.88, 613.85], [1312.55, 614.44], [1307.8, 619.78], [1312.69, 624.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1868.68, 912.74], [1861.76, 906.55], [1852.4, 916.94], [1859.32, 923.13], [1868.68, 912.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1545.54, 438.74], [1540.67, 434.37], [1541.7, 433.23], [1536.39, 428.48], [1535.35, 429.63], [1532.27, 426.87], [1526.81, 432.94], [1540.08, 444.8], [1545.54, 438.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1868.49, 764.27], [1874.43, 769.59], [1880.58, 762.76], [1874.64, 757.44], [1868.49, 764.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1509.58, 464.92], [1516.77, 471.39], [1526.22, 460.95], [1519.03, 454.49], [1509.58, 464.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1795.04, 1038.64], [1779.31, 1055.98], [1787.31, 1063.2], [1789.46, 1060.84], [1795.45, 1066.23], [1809.04, 1051.26], [1795.04, 1038.64]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.233, "pop": 0, "jobs": 233}}, {"shape": {"outer": [[1665.51, 654.31], [1659.9, 649.8], [1651.81, 659.86], [1657.43, 664.38], [1665.51, 654.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1626.21, 799.92], [1630.57, 795.01], [1625.67, 790.68], [1621.31, 795.59], [1626.21, 799.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2033.44, 1180.87], [2048.46, 1194.49], [2054.65, 1187.68], [2039.55, 1174.06], [2033.44, 1180.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2058.44, 1168.76], [2065.02, 1174.97], [2078.46, 1160.51], [2071.83, 1154.41], [2058.44, 1168.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1830.2, 938.37], [1825.02, 933.65], [1823.82, 934.96], [1823.64, 934.79], [1820.52, 938.2], [1820.11, 937.82], [1817.09, 941.12], [1817.5, 941.49], [1816.42, 942.67], [1817.94, 944.05], [1816.61, 945.5], [1820.81, 949.31], [1829.45, 939.88], [1829.09, 939.57], [1830.2, 938.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1795.8, 815.62], [1797.29, 813.98], [1798.43, 815.01], [1801.9, 811.22], [1793.42, 803.54], [1788.46, 808.98], [1795.8, 815.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1829.07, 896.72], [1836.25, 888.54], [1829.04, 882.25], [1821.4, 890.95], [1824.99, 894.08], [1823.84, 895.38], [1826.74, 897.91], [1828.34, 896.09], [1829.07, 896.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1547.64, 742.1], [1537.04, 732.3], [1532.98, 736.66], [1543.59, 746.46], [1547.64, 742.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1715.3, 750.99], [1710.22, 746.87], [1704.77, 753.57], [1709.85, 757.7], [1715.3, 750.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2210.87, 1016.5], [2203.98, 1010.12], [2200.57, 1013.8], [2199.84, 1013.12], [2197.95, 1015.16], [2199.42, 1016.52], [2195.6, 1020.64], [2201.76, 1026.33], [2210.87, 1016.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1790.83, 667.43], [1785.92, 662.97], [1780.98, 668.36], [1785.9, 672.82], [1790.83, 667.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1725.33, 665.55], [1731.06, 670.72], [1739.89, 661.02], [1734.15, 655.84], [1725.33, 665.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2040.08, 851.98], [2030.77, 843.89], [2026.16, 849.15], [2035.2, 857.02], [2035.45, 856.72], [2036.67, 857.79], [2040.19, 853.77], [2039.24, 852.95], [2040.08, 851.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1906.41, 1123.55], [1917.05, 1112.15], [1911.29, 1106.84], [1907.27, 1111.12], [1906.37, 1110.33], [1903.26, 1113.61], [1904.15, 1114.47], [1900.73, 1118.15], [1906.41, 1123.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2203.59, 1006.34], [2200.46, 1003.34], [2198.86, 1005.02], [2195.56, 1001.86], [2189.38, 1008.31], [2189.84, 1008.74], [2186.38, 1012.35], [2192.36, 1018.07], [2203.59, 1006.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1904.02, 691.32], [1906.88, 688.04], [1909.02, 689.9], [1912.51, 685.9], [1905.34, 679.63], [1903.3, 681.97], [1903.99, 682.57], [1899.68, 687.52], [1904.02, 691.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2106.19, 971.65], [2102.64, 968.45], [2097.25, 974.37], [2100.78, 977.57], [2106.19, 971.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1457.32, 291.47], [1460.27, 293.89], [1464.11, 289.0], [1460.96, 286.58], [1457.32, 291.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2054.41, 1141.49], [2048.18, 1135.82], [2041.37, 1143.28], [2047.6, 1148.96], [2054.41, 1141.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1331.56, 558.52], [1331.19, 558.17], [1331.57, 557.74], [1329.0, 555.41], [1328.56, 555.88], [1325.72, 553.3], [1320.02, 559.56], [1320.38, 559.88], [1315.07, 565.7], [1320.29, 570.42], [1321.51, 569.07], [1321.75, 569.29], [1331.56, 558.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2169.52, 917.3], [2167.73, 919.39], [2163.64, 915.94], [2164.91, 914.44], [2159.97, 910.27], [2152.5, 919.07], [2164.67, 929.35], [2172.66, 919.94], [2169.52, 917.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1965.35, 876.51], [1957.58, 870.01], [1958.04, 869.46], [1955.94, 867.71], [1953.85, 870.19], [1952.75, 869.27], [1951.03, 871.3], [1952.58, 872.59], [1950.67, 874.86], [1953.61, 877.32], [1952.71, 878.39], [1959.54, 884.11], [1962.71, 880.36], [1962.36, 880.06], [1965.35, 876.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1801.0, 985.57], [1795.28, 980.2], [1791.83, 983.85], [1791.62, 983.66], [1788.59, 986.87], [1788.81, 987.08], [1785.13, 990.98], [1790.83, 996.32], [1794.83, 992.1], [1795.11, 992.36], [1798.69, 988.58], [1798.4, 988.32], [1801.0, 985.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2182.37, 933.41], [2175.15, 927.01], [2173.47, 928.9], [2170.61, 926.36], [2165.67, 931.92], [2175.74, 940.86], [2182.37, 933.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1782.36, 648.12], [1793.29, 636.29], [1792.26, 635.35], [1790.93, 634.13], [1787.02, 630.55], [1783.88, 633.95], [1783.48, 633.58], [1775.7, 641.99], [1782.36, 648.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1789.37, 847.36], [1783.13, 841.85], [1779.82, 845.57], [1780.85, 846.49], [1777.92, 849.78], [1783.12, 854.37], [1789.37, 847.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2078.84, 950.15], [2074.13, 946.02], [2070.07, 950.65], [2074.78, 954.78], [2078.84, 950.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1811.22, 994.32], [1806.29, 999.73], [1804.95, 998.51], [1802.2, 1001.53], [1802.02, 1001.37], [1798.39, 1005.36], [1801.66, 1008.33], [1799.58, 1010.61], [1799.35, 1012.38], [1801.83, 1014.63], [1816.21, 998.85], [1811.22, 994.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1517.26, 749.65], [1526.58, 738.95], [1522.39, 735.32], [1519.67, 738.46], [1518.3, 737.27], [1511.7, 744.84], [1512.77, 745.76], [1516.3, 748.81], [1517.26, 749.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1427.12, 509.57], [1423.53, 506.2], [1419.02, 510.96], [1418.36, 510.33], [1414.8, 514.1], [1415.21, 514.48], [1412.67, 517.16], [1413.39, 517.83], [1413.99, 518.39], [1412.81, 519.65], [1417.09, 523.66], [1417.77, 524.3], [1424.93, 516.74], [1422.5, 514.46], [1427.12, 509.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1906.36, 888.37], [1910.44, 892.08], [1908.55, 894.14], [1911.11, 896.49], [1912.93, 894.52], [1917.4, 898.59], [1926.1, 889.12], [1914.99, 878.98], [1906.36, 888.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2118.66, 958.19], [2115.67, 955.34], [2110.53, 960.73], [2113.53, 963.58], [2118.66, 958.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1591.2, 1090.45], [1595.74, 1085.22], [1584.53, 1075.57], [1579.41, 1081.49], [1585.69, 1086.89], [1586.27, 1086.21], [1591.2, 1090.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1652.21, 674.21], [1645.14, 668.22], [1640.69, 673.46], [1647.77, 679.45], [1652.21, 674.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1916.68, 828.38], [1910.73, 822.63], [1903.46, 830.1], [1909.41, 835.85], [1916.68, 828.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1320.39, 554.64], [1319.92, 554.2], [1321.55, 552.44], [1315.94, 547.27], [1306.33, 557.63], [1306.72, 557.99], [1305.67, 559.12], [1307.32, 560.64], [1308.47, 559.4], [1311.85, 562.52], [1315.63, 558.46], [1316.3, 559.06], [1320.39, 554.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1340.45, 669.11], [1328.31, 657.91], [1328.07, 657.69], [1315.25, 672.21], [1327.34, 682.87], [1340.45, 669.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.202, "pop": 0, "jobs": 202}}, {"shape": {"outer": [[1829.35, 879.24], [1825.87, 876.14], [1824.87, 877.26], [1823.07, 875.65], [1821.23, 877.71], [1820.57, 877.12], [1814.86, 883.48], [1820.81, 888.77], [1829.35, 879.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2128.32, 958.49], [2139.2, 947.03], [2132.95, 941.11], [2119.62, 955.13], [2123.07, 958.41], [2125.52, 955.83], [2128.32, 958.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1827.27, 848.01], [1821.91, 843.12], [1816.78, 848.67], [1822.14, 853.58], [1827.27, 848.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2142.85, 894.43], [2136.96, 889.3], [2134.94, 891.63], [2133.75, 890.6], [2130.55, 894.28], [2131.44, 895.06], [2128.47, 898.49], [2134.65, 903.87], [2142.85, 894.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1967.88, 697.92], [1958.72, 689.22], [1955.32, 692.94], [1951.4, 689.32], [1946.72, 694.53], [1947.21, 694.98], [1944.24, 698.48], [1949.64, 703.41], [1947.73, 705.51], [1951.86, 709.02], [1961.26, 698.35], [1964.62, 701.36], [1967.88, 697.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[1700.31, 781.75], [1710.9, 769.84], [1706.89, 766.28], [1702.85, 770.8], [1701.1, 769.24], [1697.73, 773.03], [1698.69, 773.89], [1695.5, 777.47], [1700.31, 781.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1757.07, 600.76], [1751.1, 595.01], [1744.75, 601.56], [1747.38, 604.1], [1745.57, 605.96], [1748.91, 609.18], [1757.07, 600.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2190.23, 1048.43], [2185.64, 1044.54], [2181.32, 1049.63], [2185.91, 1053.52], [2190.23, 1048.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1903.71, 1168.46], [1900.27, 1163.73], [1894.0, 1168.3], [1894.76, 1169.34], [1887.97, 1174.28], [1890.66, 1177.96], [1903.71, 1168.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1476.29, 512.38], [1478.89, 509.52], [1480.13, 510.64], [1493.95, 495.41], [1488.91, 490.86], [1487.89, 489.94], [1487.05, 489.18], [1485.16, 491.25], [1484.81, 490.94], [1472.82, 504.16], [1473.48, 504.77], [1470.94, 507.56], [1476.29, 512.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[1894.53, 809.01], [1893.75, 808.3], [1897.74, 803.9], [1893.82, 800.37], [1889.82, 804.76], [1888.44, 803.51], [1881.87, 810.75], [1887.95, 816.24], [1894.53, 809.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1589.9, 581.45], [1582.42, 574.75], [1580.36, 577.03], [1579.87, 576.6], [1572.15, 585.18], [1580.27, 592.45], [1587.98, 583.91], [1587.82, 583.76], [1589.9, 581.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1717.01, 643.5], [1713.3, 639.88], [1704.26, 649.06], [1707.96, 652.68], [1717.01, 643.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1937.61, 963.44], [1929.97, 956.92], [1926.91, 960.51], [1926.3, 959.98], [1923.69, 963.02], [1933.98, 971.8], [1938.2, 966.85], [1936.18, 965.13], [1937.61, 963.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1935.11, 1241.23], [1929.43, 1235.42], [1922.16, 1242.54], [1927.84, 1248.35], [1935.11, 1241.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1931.99, 915.27], [1929.96, 913.46], [1932.27, 910.9], [1928.1, 907.17], [1925.79, 909.75], [1923.42, 907.62], [1917.74, 913.93], [1926.31, 921.58], [1931.99, 915.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2025.87, 900.74], [2020.66, 895.83], [2015.94, 900.8], [2021.14, 905.71], [2025.87, 900.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1726.7, 647.05], [1720.99, 642.19], [1711.54, 653.21], [1717.25, 658.08], [1726.7, 647.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2101.19, 796.79], [2098.54, 794.53], [2094.67, 799.06], [2097.31, 801.32], [2101.19, 796.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1686.8, 1020.12], [1684.58, 1018.05], [1682.56, 1020.22], [1679.53, 1017.4], [1673.2, 1024.17], [1673.47, 1024.42], [1672.04, 1025.96], [1673.63, 1027.44], [1674.92, 1026.05], [1678.31, 1029.2], [1686.8, 1020.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2023.11, 1114.18], [2018.05, 1109.21], [2015.33, 1111.99], [2014.0, 1110.68], [2011.02, 1113.71], [2011.64, 1114.32], [2008.22, 1117.79], [2013.99, 1123.46], [2023.11, 1114.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1849.34, 628.89], [1843.27, 623.46], [1835.49, 632.15], [1841.58, 637.59], [1849.34, 628.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1535.53, 753.43], [1529.26, 747.59], [1525.78, 751.31], [1527.0, 752.45], [1524.02, 755.62], [1529.06, 760.32], [1535.53, 753.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2047.7, 752.98], [2043.9, 749.62], [2035.61, 758.97], [2040.71, 763.5], [2044.6, 759.1], [2043.29, 757.94], [2047.7, 752.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1611.1, 642.03], [1605.63, 637.31], [1601.72, 641.81], [1607.19, 646.53], [1611.1, 642.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2180.06, 1038.91], [2177.28, 1036.41], [2172.95, 1041.23], [2175.74, 1043.73], [2180.06, 1038.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1726.65, 746.92], [1720.21, 740.81], [1715.67, 745.59], [1722.11, 751.7], [1726.65, 746.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1815.3, 743.75], [1813.1, 741.74], [1813.46, 741.34], [1813.98, 740.78], [1805.8, 733.29], [1803.66, 735.62], [1802.18, 734.26], [1799.67, 736.99], [1800.49, 737.74], [1798.68, 739.71], [1804.43, 744.98], [1807.47, 747.77], [1809.71, 749.81], [1815.3, 743.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2015.0, 881.96], [2017.75, 878.75], [2019.55, 880.28], [2022.35, 876.99], [2009.49, 866.09], [2006.0, 870.18], [2008.65, 872.43], [2006.6, 874.83], [2015.0, 881.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1860.04, 906.57], [1853.26, 900.54], [1844.72, 910.05], [1851.5, 916.1], [1860.04, 906.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1701.3, 734.75], [1696.58, 730.78], [1692.88, 735.19], [1697.59, 739.15], [1701.3, 734.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1330.93, 617.04], [1325.24, 612.01], [1317.22, 621.03], [1318.19, 621.88], [1316.73, 623.52], [1320.82, 627.15], [1322.23, 625.58], [1322.84, 626.12], [1330.93, 617.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2200.69, 801.21], [2207.54, 792.56], [2204.57, 790.21], [2202.32, 793.04], [2200.92, 791.92], [2196.31, 797.74], [2200.69, 801.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1751.07, 997.55], [1741.53, 1008.05], [1740.72, 1007.31], [1737.03, 1011.38], [1742.97, 1016.73], [1747.5, 1011.72], [1748.55, 1012.67], [1751.09, 1009.86], [1750.21, 1009.06], [1756.35, 1002.3], [1751.07, 997.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.095, "pop": 0, "jobs": 95}}, {"shape": {"outer": [[1584.62, 925.57], [1579.28, 920.72], [1568.63, 932.37], [1573.98, 937.22], [1584.62, 925.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2033.2, 880.79], [2027.0, 875.01], [2024.14, 878.05], [2030.34, 883.84], [2033.2, 880.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1746.27, 1077.54], [1740.9, 1073.05], [1735.43, 1079.53], [1740.81, 1084.03], [1746.27, 1077.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2182.65, 1009.09], [2182.99, 1006.42], [2186.67, 1006.88], [2187.27, 1002.11], [2190.12, 1002.48], [2190.95, 995.83], [2181.45, 994.64], [2181.34, 995.58], [2177.11, 995.05], [2175.74, 1005.99], [2179.73, 1006.49], [2179.46, 1008.69], [2182.65, 1009.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1984.79, 1288.38], [1980.15, 1284.14], [1976.09, 1288.58], [1978.42, 1290.71], [1980.72, 1292.82], [1984.79, 1288.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1688.11, 1078.5], [1682.0, 1073.09], [1673.33, 1082.81], [1677.96, 1086.9], [1678.86, 1085.9], [1680.34, 1087.21], [1688.11, 1078.5]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1956.44, 1230.98], [1949.62, 1223.96], [1943.85, 1229.53], [1950.67, 1236.56], [1956.44, 1230.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1616.81, 660.24], [1609.49, 653.41], [1607.75, 655.26], [1606.27, 653.88], [1602.14, 658.27], [1610.95, 666.48], [1616.81, 660.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2124.8, 835.04], [2116.11, 827.46], [2110.94, 833.38], [2119.62, 840.96], [2124.8, 835.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1575.62, 344.55], [1572.05, 341.3], [1567.58, 346.21], [1571.15, 349.47], [1575.62, 344.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1842.38, 1095.17], [1837.64, 1090.92], [1831.92, 1097.25], [1829.87, 1095.4], [1825.67, 1100.04], [1833.15, 1106.76], [1831.21, 1108.9], [1835.14, 1112.44], [1848.95, 1097.15], [1844.33, 1093.01], [1842.38, 1095.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[1589.99, 904.44], [1585.6, 900.59], [1578.19, 909.0], [1582.57, 912.84], [1589.99, 904.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1932.16, 657.6], [1928.52, 654.45], [1923.33, 660.09], [1923.8, 660.52], [1921.99, 662.62], [1925.68, 666.02], [1926.12, 665.55], [1930.04, 669.09], [1930.48, 668.57], [1934.04, 671.7], [1938.53, 666.75], [1937.78, 666.09], [1938.19, 665.66], [1934.91, 662.64], [1936.66, 660.58], [1932.62, 657.07], [1932.16, 657.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2110.99, 868.7], [2106.21, 864.51], [2099.69, 871.98], [2104.46, 876.16], [2110.99, 868.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2248.26, 917.54], [2242.18, 912.05], [2240.82, 913.56], [2238.94, 911.87], [2231.09, 920.56], [2235.41, 924.47], [2233.25, 926.85], [2237.65, 930.84], [2247.51, 919.94], [2246.73, 919.23], [2248.26, 917.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1571.07, 568.78], [1559.47, 581.55], [1566.87, 588.21], [1578.46, 575.44], [1571.07, 568.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1836.88, 962.04], [1844.77, 953.63], [1844.41, 953.29], [1845.66, 951.97], [1840.13, 946.84], [1836.21, 951.02], [1835.67, 950.52], [1832.33, 954.08], [1832.88, 954.6], [1830.29, 957.36], [1834.18, 960.97], [1834.91, 960.2], [1836.88, 962.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1811.05, 991.08], [1804.65, 985.25], [1798.09, 992.4], [1799.08, 993.29], [1795.71, 996.98], [1800.94, 1001.74], [1802.36, 1000.19], [1802.55, 1000.35], [1811.05, 991.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1258.85, 594.49], [1253.29, 589.28], [1249.16, 593.64], [1254.72, 598.87], [1258.85, 594.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2185.86, 876.75], [2196.17, 864.68], [2189.99, 859.39], [2181.05, 869.86], [2181.85, 870.54], [2179.72, 873.02], [2183.46, 876.21], [2184.21, 875.34], [2185.86, 876.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1887.11, 1101.54], [1896.87, 1091.87], [1893.44, 1088.41], [1889.7, 1092.12], [1887.04, 1089.44], [1881.03, 1095.41], [1887.11, 1101.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1874.38, 770.14], [1868.87, 764.75], [1862.87, 770.83], [1868.37, 776.22], [1874.38, 770.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1509.18, 464.64], [1517.46, 455.49], [1509.29, 448.15], [1501.01, 457.3], [1509.18, 464.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1475.19, 499.13], [1485.63, 487.78], [1482.93, 485.32], [1482.27, 486.03], [1477.81, 481.96], [1468.71, 491.85], [1470.21, 493.22], [1468.57, 495.01], [1471.77, 497.93], [1472.73, 496.87], [1475.19, 499.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1515.64, 565.62], [1509.49, 560.05], [1503.97, 566.1], [1510.12, 571.66], [1515.64, 565.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2072.88, 1204.84], [2066.92, 1199.17], [2062.54, 1203.78], [2068.5, 1209.44], [2072.88, 1204.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1933.61, 1034.84], [1928.39, 1030.22], [1923.34, 1035.86], [1924.99, 1037.33], [1922.96, 1039.6], [1926.54, 1042.77], [1933.61, 1034.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1981.32, 1221.94], [1993.32, 1212.19], [1990.0, 1208.14], [1977.99, 1217.88], [1981.32, 1221.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2232.05, 976.58], [2226.06, 971.32], [2220.82, 977.31], [2221.23, 977.66], [2217.28, 982.16], [2222.88, 987.06], [2232.05, 976.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1951.77, 1150.11], [1946.67, 1145.25], [1943.67, 1148.39], [1942.43, 1147.21], [1939.83, 1149.94], [1940.8, 1150.86], [1937.1, 1154.74], [1942.48, 1159.86], [1951.77, 1150.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2047.86, 955.84], [2056.19, 946.66], [2053.82, 944.51], [2055.36, 942.81], [2055.23, 941.19], [2052.83, 939.03], [2051.24, 939.05], [2049.75, 940.7], [2049.59, 940.55], [2039.72, 951.44], [2043.9, 955.2], [2045.37, 953.6], [2047.86, 955.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1679.36, 984.3], [1683.21, 980.1], [1678.89, 976.16], [1675.03, 980.36], [1679.36, 984.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1987.62, 1121.33], [1982.61, 1116.54], [1978.27, 1121.1], [1983.29, 1125.87], [1987.62, 1121.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2128.01, 968.21], [2123.48, 964.33], [2121.22, 966.97], [2125.74, 970.85], [2128.01, 968.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1686.99, 444.79], [1688.48, 443.1], [1686.32, 441.25], [1684.81, 442.96], [1686.99, 444.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[1603.96, 1028.43], [1595.52, 1020.99], [1590.64, 1026.49], [1601.54, 1036.09], [1605.02, 1032.17], [1602.56, 1030.01], [1603.96, 1028.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2099.12, 792.47], [2094.34, 788.49], [2090.73, 792.83], [2095.5, 796.81], [2099.12, 792.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1542.69, 714.79], [1536.72, 709.31], [1531.7, 714.73], [1539.87, 722.24], [1543.88, 717.91], [1541.67, 715.89], [1542.69, 714.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1637.5, 1060.49], [1627.69, 1051.32], [1623.17, 1056.12], [1632.05, 1064.43], [1632.72, 1063.72], [1633.97, 1064.89], [1636.33, 1062.39], [1636.0, 1062.09], [1637.5, 1060.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1841.09, 772.15], [1846.78, 766.06], [1836.34, 756.36], [1830.64, 762.45], [1835.03, 766.53], [1834.68, 766.9], [1837.76, 769.77], [1836.95, 770.64], [1839.7, 773.21], [1840.87, 771.95], [1841.09, 772.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2072.38, 826.13], [2075.19, 823.27], [2073.59, 821.7], [2074.96, 820.32], [2064.91, 810.4], [2063.69, 811.65], [2062.8, 810.78], [2059.72, 813.88], [2060.68, 814.84], [2058.8, 816.73], [2061.11, 819.0], [2060.16, 819.95], [2064.34, 824.08], [2065.9, 822.49], [2069.64, 826.2], [2071.02, 824.79], [2072.38, 826.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2204.86, 971.54], [2207.44, 968.26], [2210.21, 970.43], [2213.64, 966.05], [2210.83, 963.86], [2211.89, 962.51], [2202.04, 954.79], [2194.99, 963.82], [2204.86, 971.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1763.33, 743.63], [1758.64, 739.46], [1756.12, 742.3], [1755.06, 741.36], [1752.51, 744.23], [1753.22, 744.86], [1749.73, 748.78], [1754.77, 753.26], [1763.33, 743.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2129.84, 741.51], [2125.3, 736.57], [2120.14, 741.3], [2124.67, 746.25], [2129.84, 741.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2063.13, 826.48], [2054.84, 819.61], [2048.36, 827.44], [2056.65, 834.31], [2063.13, 826.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1603.94, 1066.96], [1597.52, 1061.4], [1592.77, 1066.87], [1599.19, 1072.42], [1603.94, 1066.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1586.64, 632.14], [1583.89, 629.67], [1579.56, 634.49], [1582.31, 636.96], [1586.64, 632.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1578.99, 1066.77], [1573.48, 1061.58], [1567.91, 1067.45], [1573.41, 1072.65], [1578.99, 1066.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1778.95, 1081.99], [1775.81, 1079.19], [1776.47, 1078.47], [1773.25, 1075.6], [1772.6, 1076.32], [1769.78, 1073.82], [1765.86, 1078.2], [1768.61, 1080.65], [1767.95, 1081.38], [1771.78, 1084.77], [1772.42, 1084.05], [1776.47, 1087.65], [1779.74, 1084.0], [1778.29, 1082.72], [1778.95, 1081.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1236.58, 817.21], [1239.45, 819.6], [1243.09, 815.23], [1240.67, 812.97], [1236.58, 817.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1483.38, 438.94], [1492.99, 428.58], [1486.02, 422.17], [1476.42, 432.53], [1483.38, 438.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1943.43, 1144.62], [1938.92, 1140.64], [1935.44, 1144.57], [1933.24, 1142.63], [1930.72, 1145.48], [1932.73, 1147.27], [1929.47, 1150.95], [1934.17, 1155.1], [1943.43, 1144.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1716.96, 1105.04], [1711.75, 1100.41], [1703.18, 1109.94], [1706.56, 1112.96], [1707.75, 1111.64], [1709.58, 1113.26], [1711.7, 1110.89], [1712.61, 1111.7], [1715.8, 1108.15], [1714.89, 1107.34], [1716.96, 1105.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1768.42, 978.18], [1771.32, 980.77], [1771.63, 980.42], [1774.73, 983.19], [1783.32, 973.67], [1777.32, 968.3], [1768.42, 978.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2075.03, 962.59], [2068.2, 956.36], [2058.06, 967.38], [2064.9, 973.62], [2075.03, 962.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2151.57, 825.07], [2146.12, 820.69], [2144.98, 822.11], [2143.4, 820.83], [2137.95, 827.61], [2144.98, 833.27], [2151.57, 825.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1956.55, 1052.67], [1951.25, 1047.93], [1943.56, 1056.52], [1948.87, 1061.27], [1956.55, 1052.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1768.05, 613.54], [1770.26, 611.15], [1768.09, 609.14], [1766.08, 611.31], [1764.07, 609.46], [1754.93, 619.31], [1761.36, 625.23], [1770.29, 615.6], [1768.05, 613.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2074.1, 917.9], [2069.18, 913.59], [2065.21, 918.13], [2070.13, 922.44], [2074.1, 917.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1829.34, 728.86], [1816.48, 716.48], [1812.59, 720.5], [1814.16, 722.01], [1812.75, 723.46], [1824.02, 734.34], [1829.34, 728.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2110.91, 922.71], [2104.52, 917.0], [2094.36, 928.36], [2095.72, 929.56], [2092.01, 933.7], [2097.04, 938.19], [2110.91, 922.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1756.5, 675.64], [1750.4, 669.89], [1740.8, 679.99], [1746.89, 685.74], [1756.5, 675.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2147.77, 898.83], [2143.89, 895.41], [2136.37, 903.95], [2142.63, 909.46], [2148.45, 902.85], [2146.08, 900.76], [2147.77, 898.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2092.1, 905.76], [2084.88, 899.17], [2080.07, 904.44], [2079.58, 903.98], [2077.7, 906.03], [2078.4, 906.67], [2074.91, 910.5], [2081.94, 916.9], [2092.1, 905.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1522.95, 680.36], [1528.59, 685.58], [1541.23, 672.03], [1537.19, 668.29], [1535.67, 669.92], [1534.07, 668.43], [1522.95, 680.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1791.64, 589.72], [1798.46, 582.3], [1797.61, 581.5], [1801.23, 577.49], [1796.32, 572.87], [1792.59, 577.01], [1789.29, 574.07], [1785.76, 578.0], [1786.71, 578.87], [1783.35, 582.55], [1791.64, 589.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1302.06, 532.59], [1297.12, 528.09], [1293.61, 531.94], [1292.53, 530.96], [1290.02, 533.71], [1291.18, 534.76], [1286.69, 539.68], [1288.55, 541.37], [1287.29, 542.75], [1290.28, 545.47], [1302.06, 532.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2083.62, 896.06], [2080.78, 893.51], [2079.71, 894.69], [2076.01, 891.37], [2065.87, 902.65], [2072.41, 908.52], [2083.62, 896.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1786.23, 975.91], [1783.76, 978.58], [1783.42, 978.27], [1779.89, 982.1], [1780.22, 982.41], [1776.89, 986.03], [1782.96, 991.59], [1792.3, 981.46], [1786.23, 975.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1888.1, 1145.71], [1883.07, 1141.44], [1880.52, 1144.45], [1879.11, 1143.24], [1875.87, 1147.05], [1877.28, 1148.24], [1874.26, 1151.8], [1879.3, 1156.08], [1888.1, 1145.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2175.81, 1073.41], [2185.62, 1062.64], [2179.05, 1056.67], [2167.32, 1069.56], [2170.17, 1072.16], [2172.1, 1070.04], [2175.81, 1073.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1940.89, 843.55], [1936.67, 839.81], [1926.75, 850.94], [1932.19, 855.74], [1939.23, 847.85], [1938.01, 846.77], [1940.89, 843.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2214.64, 1067.98], [2226.18, 1078.52], [2229.34, 1074.97], [2227.54, 1073.51], [2230.34, 1070.34], [2220.32, 1061.36], [2214.64, 1067.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1388.32, 465.57], [1381.72, 459.81], [1375.23, 467.19], [1374.79, 466.81], [1364.32, 478.72], [1371.37, 484.86], [1388.32, 465.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[1787.89, 1304.63], [1778.62, 1296.98], [1773.93, 1302.06], [1773.17, 1301.41], [1769.08, 1305.79], [1769.84, 1306.5], [1765.26, 1311.48], [1768.75, 1314.98], [1768.12, 1315.71], [1773.4, 1320.2], [1787.89, 1304.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[1970.54, 1084.35], [1980.65, 1074.49], [1976.77, 1070.52], [1974.57, 1072.67], [1971.59, 1069.63], [1966.4, 1074.69], [1967.42, 1075.73], [1964.36, 1078.71], [1966.07, 1080.48], [1964.51, 1082.0], [1966.52, 1084.05], [1968.43, 1082.19], [1970.54, 1084.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1781.64, 625.07], [1780.41, 623.98], [1778.14, 621.94], [1777.74, 622.37], [1774.83, 619.76], [1772.76, 622.05], [1771.95, 621.32], [1770.93, 620.41], [1760.63, 631.81], [1765.39, 636.09], [1766.9, 634.41], [1770.59, 637.72], [1778.26, 629.23], [1779.95, 630.74], [1782.23, 628.2], [1780.34, 626.51], [1781.64, 625.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1974.9, 1256.1], [1970.14, 1251.8], [1962.81, 1259.93], [1967.57, 1264.22], [1974.9, 1256.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1961.9, 859.37], [1964.31, 857.04], [1965.92, 858.68], [1970.35, 854.39], [1965.82, 849.76], [1958.98, 856.39], [1961.9, 859.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2088.73, 1196.57], [2101.96, 1181.96], [2094.81, 1175.64], [2081.5, 1190.24], [2088.73, 1196.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[1382.94, 802.62], [1379.08, 799.05], [1376.64, 801.69], [1380.51, 805.26], [1382.94, 802.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1936.12, 896.81], [1929.6, 890.83], [1922.0, 899.07], [1924.97, 901.79], [1926.28, 900.37], [1929.82, 903.62], [1936.12, 896.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1499.52, 716.78], [1493.98, 711.85], [1489.17, 717.21], [1489.59, 717.59], [1488.63, 718.65], [1489.49, 719.41], [1487.57, 721.56], [1491.93, 725.45], [1495.2, 721.8], [1495.46, 722.03], [1498.79, 718.32], [1498.44, 718.0], [1499.52, 716.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1612.98, 607.31], [1607.65, 602.66], [1599.02, 612.49], [1601.25, 614.43], [1600.37, 615.44], [1601.54, 616.46], [1602.43, 615.44], [1604.85, 617.56], [1610.0, 611.68], [1609.51, 611.25], [1612.98, 607.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1772.96, 1017.91], [1765.65, 1025.92], [1765.9, 1026.16], [1762.87, 1029.47], [1763.26, 1029.82], [1760.81, 1032.51], [1765.17, 1036.47], [1777.98, 1022.47], [1772.96, 1017.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.079, "pop": 0, "jobs": 79}}, {"shape": {"outer": [[2006.95, 1190.35], [1997.52, 1179.68], [1992.29, 1184.3], [2001.72, 1194.97], [2006.95, 1190.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1938.83, 1210.33], [1935.12, 1206.38], [1934.3, 1207.15], [1931.14, 1203.81], [1922.71, 1211.74], [1923.87, 1212.97], [1922.12, 1214.62], [1927.82, 1220.68], [1938.83, 1210.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2027.97, 866.74], [2019.68, 859.14], [2019.12, 859.73], [2017.88, 858.59], [2012.84, 864.08], [2022.38, 872.83], [2027.97, 866.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1771.94, 914.02], [1773.67, 915.6], [1773.84, 915.4], [1777.08, 918.34], [1778.98, 916.26], [1780.03, 917.21], [1792.66, 903.41], [1786.65, 897.95], [1771.94, 914.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2161.94, 1015.75], [2154.98, 1009.91], [2148.82, 1017.25], [2159.94, 1026.59], [2164.91, 1020.67], [2160.75, 1017.17], [2161.94, 1015.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1784.58, 759.94], [1783.86, 759.29], [1782.49, 758.05], [1777.77, 753.74], [1774.45, 757.39], [1773.06, 756.12], [1769.5, 760.03], [1770.94, 761.36], [1764.84, 768.07], [1771.6, 774.21], [1784.58, 759.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1738.39, 619.85], [1733.58, 615.38], [1727.55, 621.84], [1732.37, 626.31], [1738.39, 619.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2087.16, 847.82], [2083.72, 844.85], [2076.99, 852.66], [2081.3, 856.38], [2085.53, 851.48], [2084.65, 850.72], [2087.16, 847.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1876.17, 648.55], [1869.74, 642.3], [1860.89, 651.38], [1867.32, 657.65], [1876.17, 648.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1992.9, 902.16], [1984.48, 894.27], [1979.63, 899.42], [1981.5, 901.18], [1980.77, 901.96], [1987.3, 908.08], [1992.9, 902.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2296.17, 876.15], [2290.89, 871.27], [2283.91, 878.84], [2289.19, 883.71], [2296.17, 876.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1560.2, 719.79], [1552.7, 713.27], [1547.56, 719.15], [1550.35, 721.58], [1548.07, 724.2], [1554.35, 729.64], [1557.82, 725.68], [1556.25, 724.32], [1560.2, 719.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1303.66, 480.04], [1313.48, 469.08], [1307.65, 463.9], [1304.9, 466.98], [1304.29, 466.44], [1299.67, 471.59], [1300.28, 472.13], [1297.84, 474.86], [1303.66, 480.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2276.97, 1021.75], [2269.16, 1014.54], [2262.75, 1021.75], [2265.23, 1023.98], [2264.39, 1024.9], [2267.46, 1027.57], [2268.27, 1026.63], [2270.56, 1028.59], [2271.47, 1027.63], [2271.96, 1028.07], [2274.89, 1024.85], [2274.52, 1024.46], [2276.97, 1021.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2194.02, 1027.7], [2188.87, 1023.06], [2184.36, 1028.07], [2189.52, 1032.7], [2194.02, 1027.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2038.72, 721.1], [2031.78, 714.92], [2029.79, 717.19], [2029.28, 716.73], [2022.16, 724.81], [2024.85, 727.21], [2025.87, 726.05], [2030.27, 729.97], [2034.45, 725.26], [2034.88, 725.63], [2038.72, 721.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1433.51, 492.01], [1430.35, 489.17], [1425.46, 494.56], [1428.61, 497.41], [1433.51, 492.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1833.46, 977.93], [1828.05, 973.19], [1823.64, 978.2], [1829.05, 982.94], [1833.46, 977.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1338.58, 565.11], [1332.69, 559.53], [1323.35, 569.32], [1329.23, 574.9], [1338.58, 565.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1293.35, 527.02], [1287.77, 521.38], [1282.33, 526.72], [1283.56, 527.96], [1278.35, 533.09], [1282.71, 537.49], [1293.35, 527.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1511.0, 742.28], [1520.26, 731.89], [1516.47, 728.55], [1511.64, 733.97], [1511.09, 733.49], [1506.67, 738.45], [1511.0, 742.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2033.13, 1232.8], [2029.08, 1227.95], [2026.13, 1230.41], [2030.2, 1235.11], [2033.13, 1232.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.015, "pop": 0, "jobs": 15}}, {"shape": {"outer": [[1672.65, 1017.8], [1680.0, 1009.81], [1680.51, 1010.28], [1683.48, 1007.07], [1678.01, 1002.07], [1674.84, 1005.52], [1675.35, 1005.98], [1668.21, 1013.75], [1672.65, 1017.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1514.2, 433.01], [1518.51, 428.33], [1514.07, 424.28], [1509.76, 428.95], [1514.2, 433.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1785.53, 562.15], [1780.15, 557.63], [1778.11, 560.07], [1776.69, 558.86], [1768.42, 568.69], [1775.22, 574.41], [1785.53, 562.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1949.15, 1132.2], [1945.03, 1128.19], [1940.28, 1133.1], [1944.4, 1137.09], [1949.15, 1132.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1698.67, 1115.06], [1691.64, 1108.58], [1683.72, 1117.1], [1690.74, 1123.58], [1698.67, 1115.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2032.35, 1166.35], [2038.09, 1159.74], [2023.29, 1146.52], [2017.64, 1152.85], [2032.35, 1166.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1757.48, 899.09], [1771.47, 883.65], [1764.98, 877.81], [1761.18, 882.01], [1760.73, 881.61], [1750.54, 892.84], [1752.17, 894.31], [1751.39, 895.17], [1754.28, 897.78], [1755.06, 896.92], [1757.48, 899.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[1608.64, 1043.57], [1603.89, 1039.21], [1601.0, 1042.32], [1605.75, 1046.69], [1608.64, 1043.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1869.68, 612.49], [1862.09, 604.68], [1856.02, 610.58], [1863.61, 618.39], [1869.68, 612.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1934.2, 1137.62], [1928.36, 1132.31], [1921.38, 1139.96], [1927.22, 1145.28], [1934.2, 1137.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1719.6, 775.32], [1713.36, 769.46], [1701.18, 782.35], [1707.42, 788.21], [1719.6, 775.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1800.02, 850.42], [1796.05, 846.8], [1795.8, 847.08], [1794.79, 846.15], [1791.8, 849.4], [1791.62, 849.23], [1786.05, 855.28], [1787.14, 856.27], [1786.24, 857.26], [1790.32, 860.98], [1792.64, 858.46], [1793.39, 859.16], [1797.53, 854.65], [1796.78, 853.96], [1800.02, 850.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2034.29, 909.38], [2029.27, 904.89], [2025.1, 909.51], [2030.12, 914.0], [2034.29, 909.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2020.48, 913.84], [2013.28, 907.59], [2004.97, 917.1], [2008.04, 919.76], [2006.63, 921.38], [2010.77, 924.96], [2020.48, 913.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1346.26, 497.06], [1341.93, 493.17], [1340.56, 494.69], [1338.55, 492.89], [1334.16, 497.75], [1333.56, 497.2], [1330.92, 500.11], [1331.35, 500.49], [1326.91, 505.39], [1328.42, 506.74], [1327.41, 507.84], [1330.02, 510.19], [1330.98, 509.13], [1333.38, 511.29], [1346.26, 497.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1749.94, 996.19], [1743.62, 990.42], [1731.52, 1003.61], [1737.84, 1009.37], [1749.94, 996.19]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[1795.43, 1102.62], [1804.28, 1110.67], [1808.09, 1106.5], [1806.46, 1104.94], [1809.51, 1101.43], [1807.74, 1099.83], [1809.9, 1097.42], [1806.39, 1094.15], [1804.25, 1096.45], [1802.63, 1095.01], [1795.43, 1102.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1446.61, 457.34], [1440.36, 451.98], [1436.81, 456.09], [1434.96, 454.49], [1428.93, 461.45], [1430.79, 463.05], [1431.6, 462.11], [1437.83, 467.47], [1446.61, 457.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1708.99, 962.57], [1704.48, 958.46], [1698.59, 964.88], [1699.02, 965.27], [1696.18, 968.36], [1699.52, 971.4], [1702.35, 968.31], [1703.1, 968.99], [1708.99, 962.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1695.13, 758.47], [1690.52, 753.86], [1688.95, 755.44], [1687.17, 753.65], [1684.09, 756.74], [1685.0, 757.65], [1681.49, 761.14], [1686.98, 766.62], [1695.13, 758.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1942.44, 1216.89], [1937.41, 1211.78], [1926.23, 1222.78], [1931.27, 1227.89], [1942.44, 1216.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1937.77, 607.43], [1932.72, 602.5], [1930.92, 604.36], [1929.56, 603.04], [1923.22, 609.53], [1926.02, 612.26], [1924.91, 613.39], [1928.5, 616.92], [1937.77, 607.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1774.9, 655.23], [1768.57, 649.51], [1763.65, 654.91], [1769.99, 660.64], [1774.9, 655.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1905.79, 622.09], [1903.68, 620.26], [1902.04, 618.83], [1899.04, 616.2], [1891.45, 624.88], [1898.19, 630.77], [1905.79, 622.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1881.82, 1178.87], [1877.09, 1174.85], [1872.68, 1180.03], [1877.41, 1184.06], [1881.82, 1178.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2119.99, 977.37], [2116.21, 973.93], [2113.37, 977.04], [2117.15, 980.49], [2119.99, 977.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1993.09, 746.07], [1982.31, 757.71], [1986.67, 761.77], [1987.35, 761.05], [1989.46, 763.13], [1992.64, 759.73], [1993.3, 760.38], [2001.27, 751.69], [1994.96, 745.75], [1993.87, 746.85], [1993.09, 746.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2013.01, 1217.91], [2009.75, 1214.32], [2005.53, 1218.12], [2008.79, 1221.71], [2013.01, 1217.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1571.13, 603.98], [1565.96, 599.31], [1560.82, 604.96], [1565.99, 609.62], [1571.13, 603.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1731.55, 593.93], [1733.85, 591.68], [1738.52, 596.41], [1744.9, 590.17], [1731.12, 576.18], [1725.7, 581.48], [1729.29, 585.15], [1721.95, 592.32], [1728.7, 599.17], [1732.78, 595.17], [1731.55, 593.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2162.7, 891.95], [2155.64, 886.14], [2151.1, 891.66], [2158.16, 897.46], [2162.7, 891.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1726.03, 1355.86], [1738.07, 1342.65], [1729.3, 1334.35], [1717.09, 1347.81], [1726.03, 1355.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.139, "pop": 0, "jobs": 139}}, {"shape": {"outer": [[1798.61, 688.4], [1795.53, 685.56], [1792.28, 689.05], [1795.36, 691.9], [1798.61, 688.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2080.52, 1189.08], [2093.67, 1174.37], [2086.73, 1168.04], [2073.47, 1182.64], [2080.52, 1189.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1841.36, 1081.95], [1835.14, 1074.21], [1834.97, 1074.4], [1825.3, 1065.11], [1812.59, 1078.26], [1822.52, 1087.77], [1819.7, 1090.69], [1826.59, 1097.3], [1829.1, 1094.67], [1841.36, 1081.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.294, "pop": 0, "jobs": 294}}, {"shape": {"outer": [[2163.33, 855.65], [2171.81, 846.39], [2159.92, 835.6], [2151.5, 844.96], [2163.33, 855.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2230.21, 992.67], [2242.63, 977.97], [2238.98, 974.87], [2240.51, 973.05], [2237.37, 970.39], [2233.13, 975.4], [2236.43, 978.19], [2235.1, 979.76], [2233.32, 978.25], [2226.55, 986.27], [2229.26, 988.56], [2227.64, 990.5], [2230.21, 992.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1340.4, 520.17], [1345.84, 525.2], [1349.54, 521.21], [1344.1, 516.2], [1340.4, 520.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2142.62, 972.56], [2137.41, 967.51], [2132.99, 972.07], [2138.2, 977.12], [2142.62, 972.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1257.08, 928.72], [1263.51, 934.4], [1267.46, 929.94], [1261.03, 924.28], [1257.08, 928.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.033, "pop": 0, "jobs": 33}}, {"shape": {"outer": [[2124.0, 847.28], [2121.21, 844.67], [2117.32, 848.83], [2120.11, 851.44], [2124.0, 847.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1699.41, 629.21], [1703.7, 624.32], [1702.89, 623.61], [1704.11, 622.22], [1695.42, 614.66], [1689.03, 621.94], [1697.38, 629.23], [1698.27, 628.21], [1699.41, 629.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1586.31, 917.85], [1581.97, 913.72], [1577.87, 917.99], [1582.21, 922.13], [1586.31, 917.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1863.38, 989.21], [1866.5, 985.93], [1868.25, 987.59], [1877.31, 978.05], [1870.53, 971.67], [1861.34, 981.34], [1861.83, 981.79], [1858.85, 984.93], [1863.38, 989.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1509.34, 410.88], [1503.31, 405.53], [1498.45, 411.14], [1504.23, 416.42], [1509.34, 410.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1327.96, 535.09], [1322.14, 541.47], [1328.27, 547.02], [1334.09, 540.64], [1327.96, 535.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2002.47, 1094.18], [1996.55, 1088.24], [1992.11, 1092.67], [1990.6, 1091.16], [1986.86, 1094.9], [1988.36, 1096.39], [1985.99, 1098.75], [1991.92, 1104.7], [2002.47, 1094.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2114.18, 790.88], [2108.73, 786.19], [2103.61, 792.13], [2109.07, 796.83], [2114.18, 790.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1722.59, 613.92], [1729.23, 606.56], [1714.2, 593.12], [1711.98, 595.58], [1711.44, 595.1], [1709.06, 597.73], [1709.69, 598.29], [1707.64, 600.56], [1722.59, 613.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1913.56, 592.56], [1907.25, 587.08], [1900.65, 594.69], [1908.57, 601.57], [1912.3, 597.28], [1910.68, 595.88], [1913.56, 592.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1755.86, 807.63], [1748.58, 801.09], [1747.57, 802.21], [1744.94, 799.84], [1739.24, 806.18], [1749.16, 815.09], [1755.86, 807.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1898.29, 644.24], [1891.84, 638.88], [1889.74, 641.4], [1887.04, 639.16], [1883.71, 643.17], [1882.09, 641.83], [1879.15, 645.37], [1882.82, 648.42], [1881.25, 650.31], [1888.34, 656.2], [1898.29, 644.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1950.66, 1046.4], [1945.26, 1041.05], [1937.37, 1049.01], [1942.78, 1054.36], [1950.66, 1046.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2158.2, 1037.18], [2151.6, 1031.84], [2141.53, 1044.29], [2144.91, 1047.01], [2143.63, 1048.6], [2146.85, 1051.21], [2158.2, 1037.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2038.04, 1201.07], [2028.29, 1189.02], [2023.26, 1193.1], [2033.0, 1205.14], [2038.04, 1201.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1680.97, 740.79], [1675.9, 736.24], [1668.35, 744.67], [1669.29, 745.52], [1664.96, 750.34], [1670.95, 755.71], [1681.54, 743.91], [1679.67, 742.24], [1680.97, 740.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2003.47, 1133.33], [1993.91, 1123.66], [1988.7, 1128.81], [2000.36, 1140.6], [2004.97, 1136.04], [2002.87, 1133.92], [2003.47, 1133.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1797.43, 1122.7], [1795.3, 1120.63], [1797.08, 1118.82], [1788.35, 1110.33], [1783.69, 1115.09], [1786.25, 1117.57], [1785.28, 1118.55], [1789.56, 1122.71], [1791.05, 1121.19], [1795.08, 1125.11], [1797.43, 1122.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2302.37, 912.84], [2296.46, 907.77], [2288.43, 917.11], [2294.34, 922.18], [2302.37, 912.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2040.56, 1172.43], [2055.65, 1186.21], [2061.0, 1180.62], [2045.82, 1166.7], [2040.56, 1172.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1505.53, 554.39], [1511.63, 547.51], [1506.03, 542.58], [1499.94, 549.46], [1505.53, 554.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2071.18, 887.25], [2066.08, 882.59], [2057.01, 892.51], [2063.93, 898.83], [2071.62, 890.42], [2069.8, 888.76], [2071.18, 887.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2082.49, 924.94], [2079.29, 922.52], [2074.65, 928.63], [2077.84, 931.05], [2082.49, 924.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1658.91, 991.07], [1654.41, 987.07], [1651.02, 990.85], [1650.7, 990.56], [1645.71, 996.12], [1648.65, 998.73], [1647.36, 1000.18], [1650.22, 1002.72], [1651.51, 1001.28], [1651.73, 1001.47], [1655.88, 996.83], [1654.7, 995.77], [1658.91, 991.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1359.4, 558.58], [1363.37, 562.17], [1363.03, 562.54], [1366.81, 565.96], [1370.72, 561.65], [1367.64, 558.87], [1368.25, 558.21], [1363.58, 553.99], [1359.4, 558.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2089.37, 693.23], [2093.54, 688.5], [2089.56, 684.99], [2085.39, 689.73], [2089.37, 693.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1977.15, 1106.75], [1972.45, 1102.75], [1966.01, 1110.29], [1970.72, 1114.3], [1977.15, 1106.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2012.31, 884.68], [2003.57, 876.93], [2000.07, 880.85], [1999.38, 880.25], [1997.44, 882.41], [1998.13, 883.03], [1997.57, 883.64], [2006.3, 891.4], [2012.31, 884.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1703.91, 849.06], [1706.47, 846.22], [1701.89, 842.12], [1699.33, 844.96], [1703.91, 849.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2039.44, 928.97], [2032.77, 923.04], [2023.83, 933.04], [2027.02, 935.87], [2025.68, 937.36], [2029.17, 940.46], [2039.44, 928.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2321.94, 936.1], [2315.91, 928.79], [2305.84, 937.09], [2310.9, 943.23], [2309.85, 944.1], [2315.36, 950.78], [2322.16, 945.17], [2319.53, 941.98], [2322.18, 939.78], [2320.27, 937.47], [2321.94, 936.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1930.37, 1069.4], [1925.64, 1064.79], [1921.21, 1069.33], [1925.94, 1073.95], [1930.37, 1069.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2148.07, 1030.19], [2141.78, 1024.8], [2139.22, 1027.77], [2137.13, 1025.97], [2133.89, 1029.74], [2135.54, 1031.16], [2132.88, 1034.27], [2136.61, 1037.48], [2135.11, 1039.22], [2138.11, 1041.79], [2148.07, 1030.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1599.25, 1037.44], [1590.09, 1029.53], [1585.68, 1034.61], [1596.7, 1044.1], [1600.66, 1039.54], [1598.8, 1037.95], [1599.25, 1037.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1572.64, 1043.6], [1568.24, 1048.46], [1579.52, 1058.6], [1583.93, 1053.73], [1572.64, 1043.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1879.25, 1032.92], [1870.15, 1025.26], [1865.23, 1031.1], [1875.7, 1039.91], [1878.65, 1036.4], [1877.29, 1035.25], [1879.25, 1032.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2230.37, 968.97], [2233.86, 964.79], [2225.75, 958.02], [2221.65, 962.92], [2226.95, 967.35], [2227.56, 966.61], [2230.37, 968.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1703.48, 688.21], [1697.47, 682.97], [1690.33, 691.19], [1696.34, 696.42], [1703.48, 688.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2257.19, 955.86], [2251.65, 951.37], [2246.99, 957.11], [2252.53, 961.6], [2257.19, 955.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1995.97, 841.72], [1988.57, 834.47], [1984.06, 839.03], [1991.46, 846.28], [1995.97, 841.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1761.4, 795.17], [1757.52, 791.55], [1756.24, 792.92], [1753.6, 790.44], [1748.51, 795.88], [1757.96, 804.72], [1763.36, 798.95], [1760.43, 796.21], [1761.4, 795.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2148.12, 863.59], [2153.02, 858.19], [2143.89, 849.79], [2138.95, 855.2], [2148.12, 863.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2241.62, 1059.37], [2234.61, 1052.04], [2233.68, 1052.93], [2230.47, 1049.58], [2227.49, 1052.42], [2228.61, 1053.6], [2225.58, 1056.5], [2235.93, 1067.32], [2239.01, 1064.38], [2237.76, 1063.07], [2241.62, 1059.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2018.52, 1217.64], [2022.08, 1214.61], [2021.18, 1213.57], [2022.45, 1212.49], [2014.87, 1203.56], [2008.49, 1208.99], [2015.84, 1217.63], [2017.39, 1216.31], [2018.52, 1217.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2247.3, 1056.93], [2251.33, 1052.85], [2248.86, 1050.42], [2249.54, 1049.74], [2238.13, 1038.48], [2232.06, 1044.64], [2244.0, 1056.42], [2245.37, 1055.03], [2247.3, 1056.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2003.88, 714.29], [1998.69, 709.29], [1997.77, 710.24], [1993.5, 706.13], [1989.37, 710.42], [1998.83, 719.54], [2003.88, 714.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1930.4, 1097.61], [1926.36, 1093.77], [1920.88, 1099.55], [1924.91, 1103.39], [1930.4, 1097.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1905.13, 945.31], [1906.99, 943.23], [1907.35, 943.54], [1910.69, 939.81], [1909.71, 938.94], [1910.72, 937.81], [1904.62, 932.37], [1898.4, 939.3], [1905.13, 945.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1400.43, 488.37], [1395.21, 483.78], [1384.75, 495.61], [1390.5, 500.65], [1392.19, 498.74], [1392.79, 499.26], [1399.97, 491.14], [1398.85, 490.16], [1400.43, 488.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2093.46, 978.07], [2086.74, 972.27], [2084.38, 974.98], [2084.03, 974.68], [2081.26, 977.86], [2081.51, 978.07], [2077.28, 982.93], [2082.18, 987.16], [2081.11, 988.39], [2083.03, 990.05], [2093.46, 978.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1857.2, 998.82], [1848.62, 991.17], [1846.33, 993.72], [1845.19, 992.71], [1842.26, 995.96], [1843.44, 997.0], [1843.22, 997.24], [1851.76, 1004.86], [1857.2, 998.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2028.6, 922.96], [2022.08, 917.03], [2020.02, 919.28], [2019.65, 918.93], [2016.53, 922.34], [2016.85, 922.64], [2012.98, 926.88], [2019.3, 932.62], [2021.23, 930.52], [2021.47, 930.74], [2028.6, 922.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1875.79, 1168.93], [1871.72, 1165.13], [1867.66, 1169.48], [1871.72, 1173.29], [1875.79, 1168.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1959.32, 1170.47], [1953.82, 1164.19], [1948.59, 1168.77], [1949.23, 1169.51], [1947.07, 1171.39], [1951.94, 1176.95], [1959.32, 1170.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2220.06, 1081.8], [2209.06, 1071.96], [2202.8, 1078.96], [2215.55, 1090.35], [2219.04, 1086.44], [2217.3, 1084.89], [2220.06, 1081.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1631.45, 1067.39], [1623.59, 1060.39], [1619.14, 1065.35], [1625.59, 1071.09], [1625.83, 1070.83], [1627.24, 1072.09], [1631.45, 1067.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1699.89, 708.94], [1694.96, 704.62], [1689.58, 710.75], [1694.52, 715.08], [1699.89, 708.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1648.69, 731.65], [1657.3, 722.27], [1651.67, 717.1], [1642.12, 727.5], [1645.65, 730.74], [1646.59, 729.72], [1648.69, 731.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1351.16, 520.82], [1353.73, 523.15], [1352.72, 524.27], [1357.52, 528.63], [1358.48, 527.58], [1359.6, 528.6], [1368.86, 518.49], [1359.81, 510.26], [1355.78, 514.68], [1356.33, 515.17], [1351.16, 520.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[1635.9, 1119.11], [1642.4, 1112.25], [1637.62, 1107.77], [1631.06, 1114.71], [1631.26, 1114.89], [1629.32, 1116.95], [1632.59, 1120.02], [1634.6, 1117.89], [1635.9, 1119.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1667.11, 692.91], [1663.83, 689.68], [1658.75, 694.82], [1665.57, 701.56], [1668.89, 698.21], [1665.34, 694.7], [1667.11, 692.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1910.36, 785.72], [1914.93, 780.73], [1910.1, 776.34], [1905.54, 781.32], [1910.36, 785.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2048.34, 937.31], [2041.73, 931.4], [2032.52, 941.64], [2035.9, 944.66], [2034.59, 946.12], [2037.81, 949.01], [2048.34, 937.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1809.26, 947.22], [1821.87, 933.46], [1818.41, 930.31], [1819.98, 928.61], [1816.59, 925.53], [1802.41, 940.98], [1809.26, 947.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1733.57, 718.55], [1735.46, 716.19], [1732.0, 713.43], [1727.82, 718.64], [1726.07, 717.25], [1723.52, 720.43], [1727.33, 723.47], [1724.33, 727.21], [1728.26, 730.32], [1736.09, 720.54], [1733.57, 718.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1782.12, 834.11], [1773.34, 826.02], [1773.01, 826.38], [1771.95, 825.4], [1766.31, 831.47], [1767.37, 832.45], [1767.16, 832.68], [1775.95, 840.77], [1778.12, 838.44], [1778.78, 839.04], [1781.66, 835.94], [1780.99, 835.32], [1782.12, 834.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2091.04, 1200.45], [2097.83, 1206.39], [2111.55, 1191.05], [2104.88, 1184.95], [2091.04, 1200.45]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1288.7, 548.38], [1294.34, 553.49], [1308.72, 537.74], [1303.08, 532.63], [1288.7, 548.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1930.16, 1128.58], [1926.17, 1124.89], [1925.58, 1125.53], [1924.05, 1124.12], [1921.9, 1126.44], [1920.94, 1125.55], [1918.0, 1128.73], [1919.32, 1129.94], [1916.68, 1132.78], [1921.85, 1137.56], [1930.16, 1128.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1887.08, 1173.02], [1889.51, 1170.36], [1890.73, 1171.47], [1900.39, 1160.89], [1894.57, 1155.58], [1882.47, 1168.8], [1887.08, 1173.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1718.63, 1004.2], [1712.18, 1011.09], [1718.06, 1016.54], [1725.03, 1009.07], [1721.55, 1005.83], [1721.02, 1006.4], [1718.63, 1004.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1271.67, 565.45], [1271.03, 564.87], [1271.75, 564.06], [1268.0, 560.74], [1267.28, 561.53], [1266.43, 560.78], [1256.81, 571.54], [1262.06, 576.2], [1271.67, 565.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1963.89, 1061.12], [1957.38, 1055.52], [1950.07, 1064.01], [1956.57, 1069.62], [1963.89, 1061.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2064.92, 1214.32], [2059.15, 1204.97], [2053.69, 1208.34], [2054.93, 1210.37], [2053.48, 1211.27], [2058.01, 1218.59], [2064.92, 1214.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1268.43, 557.88], [1261.88, 551.94], [1251.0, 563.87], [1257.55, 569.8], [1268.43, 557.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[1843.28, 834.55], [1853.98, 822.83], [1848.4, 817.78], [1846.65, 819.7], [1846.28, 819.36], [1845.03, 820.73], [1844.42, 820.18], [1840.49, 824.49], [1841.1, 825.04], [1838.84, 827.51], [1839.91, 828.5], [1838.41, 830.14], [1843.28, 834.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2157.77, 1057.17], [2167.13, 1046.77], [2164.86, 1044.73], [2166.25, 1043.19], [2163.63, 1040.82], [2162.32, 1042.27], [2159.79, 1039.98], [2149.37, 1051.56], [2151.87, 1053.81], [2152.84, 1052.73], [2157.77, 1057.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1819.26, 1001.03], [1817.71, 1002.66], [1816.65, 1001.67], [1806.07, 1012.81], [1806.18, 1012.91], [1805.23, 1013.93], [1808.36, 1016.87], [1809.31, 1015.87], [1812.21, 1018.6], [1815.65, 1014.98], [1815.95, 1015.26], [1820.49, 1010.49], [1819.92, 1009.95], [1822.5, 1007.22], [1821.32, 1006.11], [1822.89, 1004.46], [1819.26, 1001.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1887.72, 936.07], [1881.12, 930.0], [1874.22, 937.45], [1880.82, 943.51], [1887.72, 936.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1891.58, 854.78], [1886.0, 849.56], [1883.9, 851.79], [1883.53, 851.43], [1876.52, 858.85], [1877.99, 860.22], [1876.67, 861.63], [1881.79, 866.42], [1883.12, 865.01], [1883.25, 865.14], [1890.4, 857.56], [1889.64, 856.85], [1891.58, 854.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1846.06, 700.33], [1852.28, 694.95], [1853.5, 696.34], [1859.41, 691.23], [1854.61, 685.72], [1853.29, 686.85], [1851.3, 684.56], [1846.11, 689.07], [1847.29, 690.42], [1841.66, 695.28], [1846.06, 700.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1411.03, 515.41], [1420.91, 504.4], [1414.3, 498.5], [1404.41, 509.5], [1411.03, 515.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1722.03, 1147.32], [1742.01, 1125.5], [1727.49, 1112.3], [1707.52, 1134.13], [1722.03, 1147.32]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.371, "pop": 0, "jobs": 371}}, {"shape": {"outer": [[1743.13, 821.31], [1747.91, 816.14], [1738.83, 807.75], [1734.26, 812.69], [1737.18, 815.38], [1736.24, 816.4], [1739.38, 819.3], [1740.1, 818.51], [1743.13, 821.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2144.11, 843.79], [2146.11, 841.53], [2147.72, 842.95], [2157.34, 832.09], [2151.63, 827.04], [2141.51, 838.47], [2142.85, 839.66], [2141.35, 841.34], [2144.11, 843.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1673.69, 1111.13], [1679.62, 1104.71], [1674.67, 1100.19], [1673.92, 1101.0], [1673.2, 1100.34], [1670.29, 1103.48], [1670.45, 1103.63], [1668.25, 1106.0], [1669.55, 1107.2], [1668.07, 1108.8], [1670.54, 1111.06], [1671.95, 1109.53], [1673.69, 1111.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1868.58, 1163.0], [1864.27, 1158.98], [1859.59, 1163.99], [1863.89, 1168.01], [1868.58, 1163.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1722.45, 1026.38], [1716.11, 1020.84], [1711.78, 1025.74], [1716.2, 1029.61], [1718.67, 1026.8], [1720.6, 1028.49], [1722.45, 1026.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2188.54, 858.25], [2181.65, 852.28], [2173.63, 861.52], [2180.51, 867.49], [2188.54, 858.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1805.96, 965.24], [1799.76, 959.61], [1796.22, 963.49], [1795.82, 963.12], [1792.92, 966.28], [1798.5, 971.35], [1802.45, 967.02], [1803.47, 967.95], [1805.96, 965.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1926.47, 976.89], [1918.7, 969.28], [1912.72, 975.37], [1920.5, 982.98], [1926.47, 976.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2203.34, 1036.15], [2198.51, 1031.45], [2193.14, 1036.98], [2197.97, 1041.67], [2203.34, 1036.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2107.77, 782.85], [2102.73, 778.01], [2096.0, 785.01], [2101.04, 789.86], [2107.77, 782.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1993.9, 1135.48], [1988.86, 1130.73], [1987.78, 1131.87], [1984.7, 1128.97], [1979.9, 1134.05], [1992.01, 1145.45], [1996.97, 1140.19], [1992.99, 1136.45], [1993.9, 1135.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1702.55, 1091.83], [1697.11, 1086.95], [1689.69, 1095.15], [1695.13, 1100.03], [1702.55, 1091.83]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1346.54, 633.41], [1340.79, 628.19], [1332.48, 637.31], [1338.24, 642.51], [1346.54, 633.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1823.1, 1009.45], [1811.03, 1022.79], [1817.61, 1028.69], [1829.67, 1015.35], [1823.1, 1009.45]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.045, "pop": 0, "jobs": 45}}, {"shape": {"outer": [[1564.03, 754.0], [1578.84, 767.23], [1583.36, 762.2], [1568.55, 748.98], [1564.03, 754.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.086, "pop": 0, "jobs": 86}}, {"shape": {"outer": [[2209.77, 1092.94], [2205.6, 1089.39], [2204.22, 1091.03], [2196.98, 1084.87], [2191.4, 1091.44], [2202.81, 1101.14], [2209.77, 1092.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2203.7, 873.31], [2196.35, 881.41], [2203.36, 887.77], [2210.65, 879.74], [2203.7, 873.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1599.91, 631.14], [1596.62, 628.05], [1591.73, 633.22], [1596.29, 637.51], [1599.59, 634.03], [1598.31, 632.82], [1599.91, 631.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1926.05, 600.89], [1918.85, 594.48], [1911.62, 602.6], [1918.8, 609.01], [1926.05, 600.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1740.12, 782.12], [1745.34, 776.19], [1739.78, 771.12], [1734.49, 777.03], [1740.12, 782.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1628.75, 1100.17], [1628.22, 1099.69], [1629.25, 1098.54], [1624.93, 1094.67], [1623.9, 1095.82], [1623.5, 1095.45], [1617.38, 1102.22], [1618.6, 1103.32], [1617.56, 1104.47], [1621.59, 1108.1], [1628.75, 1100.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1922.59, 1197.51], [1921.43, 1196.26], [1924.96, 1193.02], [1920.84, 1188.54], [1914.08, 1194.71], [1919.38, 1200.45], [1922.59, 1197.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1273.35, 529.89], [1281.55, 520.62], [1278.04, 517.53], [1277.59, 518.04], [1275.44, 516.16], [1274.63, 517.07], [1273.94, 516.46], [1272.84, 517.71], [1269.8, 515.04], [1271.12, 513.56], [1268.58, 511.32], [1267.11, 512.98], [1263.81, 510.07], [1260.67, 513.62], [1263.75, 516.32], [1261.26, 519.13], [1264.76, 522.2], [1264.33, 522.68], [1266.52, 524.6], [1266.02, 525.18], [1269.84, 528.54], [1270.7, 527.57], [1273.35, 529.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1702.68, 823.34], [1695.56, 816.96], [1684.14, 829.6], [1691.26, 835.98], [1702.68, 823.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1633.05, 996.03], [1637.43, 991.39], [1628.73, 983.21], [1623.93, 988.29], [1631.86, 995.75], [1632.28, 995.3], [1633.05, 996.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1623.2, 948.61], [1615.37, 941.78], [1609.68, 948.25], [1618.86, 956.26], [1624.17, 950.22], [1622.82, 949.05], [1623.2, 948.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1531.06, 556.5], [1527.93, 553.71], [1523.93, 558.17], [1527.06, 560.96], [1531.06, 556.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1680.35, 1071.32], [1675.0, 1066.57], [1667.41, 1075.03], [1670.8, 1078.06], [1670.64, 1078.24], [1672.59, 1079.97], [1680.35, 1071.32]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1747.66, 746.56], [1757.82, 735.36], [1750.67, 729.31], [1740.57, 740.34], [1747.66, 746.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1918.72, 795.86], [1913.42, 791.1], [1908.87, 796.13], [1914.17, 800.9], [1918.72, 795.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1855.38, 1060.2], [1868.17, 1046.12], [1861.61, 1040.4], [1849.95, 1053.52], [1851.49, 1054.96], [1850.57, 1056.02], [1855.38, 1060.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1804.89, 839.33], [1801.39, 836.34], [1797.64, 840.69], [1801.14, 843.68], [1804.89, 839.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2222.66, 1022.3], [2219.41, 1019.08], [2217.29, 1021.22], [2214.89, 1018.84], [2205.51, 1028.33], [2207.51, 1030.31], [2206.22, 1031.61], [2209.89, 1035.24], [2222.66, 1022.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1275.44, 495.05], [1280.27, 489.73], [1277.52, 487.25], [1278.59, 486.06], [1274.75, 482.6], [1273.79, 483.67], [1270.56, 480.76], [1265.62, 486.2], [1275.44, 495.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2170.97, 875.14], [2162.44, 867.38], [2157.71, 872.58], [2160.99, 875.57], [2159.01, 877.73], [2164.25, 882.52], [2170.97, 875.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1859.01, 772.43], [1852.25, 766.18], [1845.5, 773.44], [1845.81, 773.73], [1842.28, 777.55], [1843.21, 778.41], [1844.47, 779.56], [1848.72, 783.49], [1859.01, 772.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2276.73, 1003.12], [2280.46, 998.83], [2274.85, 993.58], [2271.01, 997.98], [2276.73, 1003.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1963.04, 1270.97], [1957.43, 1266.32], [1952.58, 1272.17], [1958.19, 1276.82], [1963.04, 1270.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1898.88, 1113.57], [1911.79, 1099.78], [1906.89, 1095.19], [1901.35, 1101.06], [1901.8, 1101.5], [1894.37, 1109.38], [1898.88, 1113.57]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1599.99, 590.91], [1592.73, 584.57], [1591.08, 586.44], [1589.99, 585.48], [1581.4, 595.25], [1586.71, 599.88], [1585.57, 601.18], [1588.59, 603.82], [1589.72, 602.53], [1590.53, 603.23], [1599.15, 593.43], [1598.38, 592.75], [1599.99, 590.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1873.22, 785.8], [1867.31, 780.72], [1859.66, 789.55], [1864.78, 793.97], [1868.91, 789.21], [1869.68, 789.88], [1873.22, 785.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2236.2, 955.56], [2230.74, 950.97], [2226.5, 956.04], [2231.96, 960.62], [2236.2, 955.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2328.67, 950.31], [2324.94, 946.43], [2315.97, 955.07], [2322.81, 962.17], [2329.3, 955.92], [2327.4, 953.94], [2328.78, 952.6], [2327.59, 951.35], [2328.67, 950.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2059.69, 933.32], [2056.19, 930.05], [2052.3, 934.21], [2055.79, 937.48], [2059.69, 933.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1961.39, 833.11], [1965.25, 828.81], [1956.84, 821.31], [1952.98, 825.61], [1961.39, 833.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1343.62, 575.81], [1337.47, 570.28], [1331.36, 577.02], [1331.75, 577.36], [1330.13, 579.14], [1333.13, 581.85], [1331.7, 583.43], [1333.49, 585.05], [1334.93, 583.47], [1335.23, 583.73], [1336.89, 581.9], [1337.56, 582.5], [1343.62, 575.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2138.04, 979.63], [2128.51, 971.34], [2122.31, 978.47], [2131.84, 986.76], [2138.04, 979.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1934.93, 974.58], [1930.01, 970.07], [1926.16, 974.28], [1931.07, 978.77], [1934.93, 974.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1764.25, 904.64], [1770.09, 898.28], [1770.29, 898.48], [1776.68, 891.54], [1776.02, 890.94], [1777.17, 889.68], [1772.16, 885.1], [1758.82, 899.58], [1759.11, 899.85], [1758.36, 900.67], [1760.08, 902.24], [1760.8, 901.48], [1764.25, 904.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1711.16, 693.17], [1705.8, 687.98], [1697.66, 696.42], [1703.02, 701.59], [1711.16, 693.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1380.06, 567.66], [1375.2, 563.04], [1370.82, 567.61], [1375.68, 572.25], [1380.06, 567.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2100.65, 941.83], [2097.49, 939.05], [2092.9, 944.24], [2096.05, 947.03], [2100.65, 941.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1446.32, 533.96], [1440.5, 540.42], [1443.68, 543.27], [1440.83, 546.42], [1445.13, 550.27], [1453.8, 540.67], [1446.32, 533.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1795.89, 818.46], [1787.28, 810.52], [1781.11, 817.15], [1789.72, 825.11], [1795.89, 818.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1342.05, 648.71], [1343.94, 646.64], [1344.56, 647.2], [1346.47, 645.11], [1345.79, 644.49], [1351.5, 638.21], [1346.86, 634.01], [1337.35, 644.45], [1342.05, 648.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1984.55, 1153.63], [1979.81, 1148.55], [1978.42, 1149.85], [1974.11, 1145.22], [1969.94, 1149.12], [1974.06, 1153.54], [1972.19, 1155.28], [1978.65, 1162.21], [1983.14, 1158.03], [1981.61, 1156.38], [1984.55, 1153.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1835.49, 827.35], [1847.26, 814.23], [1841.06, 808.7], [1829.28, 821.83], [1835.49, 827.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1815.85, 669.3], [1818.57, 666.26], [1818.32, 666.04], [1823.0, 660.81], [1816.96, 655.43], [1807.5, 665.99], [1808.36, 666.76], [1808.09, 667.05], [1813.23, 671.62], [1815.55, 669.04], [1815.85, 669.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1945.6, 797.02], [1942.19, 793.94], [1938.04, 798.49], [1941.45, 801.57], [1945.6, 797.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1959.04, 1091.24], [1953.4, 1085.7], [1947.91, 1091.29], [1953.55, 1096.83], [1959.04, 1091.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1820.46, 791.32], [1813.65, 785.17], [1812.75, 786.16], [1812.37, 785.81], [1810.56, 787.81], [1810.93, 788.14], [1810.23, 788.92], [1808.42, 787.28], [1804.02, 792.09], [1806.13, 793.99], [1804.64, 795.62], [1808.63, 799.23], [1809.99, 797.74], [1812.66, 800.16], [1810.06, 803.02], [1813.93, 806.51], [1820.52, 799.28], [1816.51, 795.64], [1820.46, 791.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1882.12, 925.18], [1875.88, 919.62], [1865.7, 930.98], [1871.93, 936.54], [1882.12, 925.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1308.32, 598.13], [1303.47, 593.77], [1301.54, 595.89], [1300.66, 595.1], [1294.63, 601.75], [1300.37, 606.91], [1308.32, 598.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1913.22, 816.82], [1909.2, 813.04], [1908.57, 813.71], [1907.07, 812.31], [1896.54, 823.44], [1900.97, 827.61], [1901.93, 828.51], [1902.68, 829.21], [1912.59, 818.71], [1911.97, 818.14], [1913.22, 816.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1453.8, 483.55], [1466.6, 469.67], [1465.81, 468.95], [1464.72, 467.96], [1460.62, 464.19], [1447.99, 477.89], [1449.03, 478.84], [1447.83, 480.14], [1451.44, 483.46], [1452.48, 482.34], [1453.8, 483.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2048.91, 1226.83], [2042.2, 1217.99], [2035.08, 1223.39], [2041.8, 1232.24], [2048.91, 1226.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2280.31, 996.96], [2284.8, 1001.43], [2288.59, 997.62], [2284.11, 993.15], [2280.31, 996.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1984.99, 857.4], [1974.94, 848.13], [1971.78, 851.55], [1972.48, 852.19], [1969.61, 855.29], [1978.94, 863.9], [1984.99, 857.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1613.24, 964.58], [1619.25, 958.07], [1609.46, 949.09], [1605.49, 953.38], [1606.21, 954.05], [1603.77, 956.7], [1611.25, 963.55], [1611.64, 963.11], [1613.24, 964.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1998.99, 1109.8], [2001.15, 1107.69], [2001.84, 1108.4], [2008.49, 1101.86], [2003.41, 1096.69], [1996.52, 1103.48], [1998.84, 1105.84], [1996.94, 1107.7], [1998.99, 1109.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1853.33, 750.13], [1848.02, 745.01], [1841.82, 751.41], [1853.57, 762.71], [1858.61, 757.53], [1852.17, 751.33], [1853.33, 750.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1885.88, 624.72], [1887.39, 623.09], [1888.33, 623.98], [1895.61, 615.98], [1895.18, 615.55], [1896.74, 613.98], [1889.93, 607.97], [1888.97, 609.02], [1888.33, 608.42], [1885.4, 611.55], [1885.01, 611.16], [1878.72, 618.07], [1885.88, 624.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2084.23, 969.78], [2077.64, 963.83], [2068.21, 974.2], [2071.37, 977.05], [2069.91, 978.66], [2073.35, 981.75], [2084.23, 969.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2233.86, 817.28], [2229.39, 813.16], [2223.38, 819.69], [2227.86, 823.81], [2233.86, 817.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2046.25, 1194.34], [2039.6, 1187.34], [2034.5, 1192.17], [2041.14, 1199.19], [2046.25, 1194.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2173.03, 1020.64], [2169.83, 1017.91], [2166.88, 1021.37], [2170.08, 1024.1], [2173.03, 1020.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1298.88, 612.74], [1304.72, 617.94], [1317.32, 603.91], [1311.25, 598.5], [1309.64, 600.31], [1309.86, 600.5], [1298.88, 612.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1989.28, 849.11], [1981.96, 842.17], [1977.0, 847.35], [1984.32, 854.31], [1989.28, 849.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1695.54, 1027.29], [1689.96, 1022.18], [1686.9, 1025.5], [1686.65, 1025.27], [1681.06, 1031.34], [1686.9, 1036.68], [1695.54, 1027.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2015.1, 896.89], [2010.6, 892.89], [2007.51, 896.33], [2012.0, 900.33], [2015.1, 896.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2020.72, 752.33], [2025.03, 747.46], [2021.84, 744.64], [2017.53, 749.52], [2020.72, 752.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1767.6, 1013.55], [1754.57, 1027.78], [1759.34, 1032.11], [1760.66, 1030.68], [1760.96, 1030.93], [1764.73, 1026.82], [1763.84, 1026.01], [1771.78, 1017.35], [1767.6, 1013.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.075, "pop": 0, "jobs": 75}}, {"shape": {"outer": [[1829.67, 1015.35], [1817.61, 1028.69], [1825.22, 1035.53], [1837.29, 1022.17], [1829.67, 1015.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[2128.38, 881.67], [2123.36, 877.37], [2122.19, 878.73], [2119.49, 876.4], [2113.54, 883.33], [2121.26, 889.96], [2128.38, 881.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1553.7, 897.89], [1552.19, 896.54], [1550.26, 898.69], [1547.32, 896.07], [1539.38, 904.94], [1543.83, 908.9], [1553.7, 897.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1572.51, 922.72], [1567.41, 918.6], [1562.19, 925.0], [1567.28, 929.13], [1572.51, 922.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1485.14, 409.6], [1482.41, 407.16], [1483.86, 405.57], [1479.51, 401.66], [1477.98, 403.36], [1474.96, 400.66], [1465.22, 411.43], [1475.3, 420.48], [1485.14, 409.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[1642.42, 990.43], [1646.0, 986.56], [1646.4, 986.93], [1647.53, 985.71], [1645.2, 983.57], [1645.93, 982.78], [1638.19, 975.68], [1632.76, 981.56], [1642.42, 990.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1904.04, 884.28], [1911.33, 876.29], [1899.19, 865.3], [1891.91, 873.31], [1904.04, 884.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2082.83, 839.02], [2076.33, 833.83], [2070.85, 840.69], [2074.42, 843.55], [2072.38, 846.09], [2075.31, 848.43], [2082.83, 839.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1644.08, 634.27], [1637.58, 628.6], [1637.12, 629.11], [1634.03, 626.42], [1625.43, 636.21], [1635.03, 644.58], [1644.08, 634.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1798.3, 731.7], [1801.25, 728.44], [1801.74, 728.9], [1807.91, 722.11], [1802.03, 716.81], [1801.49, 717.4], [1801.18, 717.11], [1798.38, 720.19], [1798.1, 719.94], [1794.71, 723.67], [1795.11, 724.03], [1792.18, 727.26], [1796.09, 730.78], [1796.62, 730.2], [1798.3, 731.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1974.86, 719.93], [1978.75, 715.55], [1971.52, 708.95], [1967.76, 713.3], [1974.86, 719.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1869.6, 835.25], [1864.52, 830.61], [1861.93, 833.42], [1861.22, 832.76], [1855.94, 838.51], [1856.3, 838.84], [1854.06, 841.28], [1855.3, 842.41], [1854.24, 843.56], [1856.49, 845.61], [1857.55, 844.46], [1859.89, 846.58], [1868.73, 836.94], [1868.36, 836.61], [1869.6, 835.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1823.11, 842.16], [1826.82, 838.06], [1822.44, 834.12], [1818.73, 838.22], [1823.11, 842.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2184.18, 795.65], [2188.07, 791.36], [2184.34, 787.97], [2179.22, 793.62], [2176.44, 791.11], [2172.87, 795.05], [2174.13, 796.2], [2169.63, 801.16], [2175.87, 806.81], [2185.18, 796.54], [2184.18, 795.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2268.26, 971.78], [2261.77, 966.61], [2258.16, 971.12], [2264.66, 976.31], [2268.26, 971.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1782.73, 832.72], [1784.67, 830.61], [1785.47, 831.34], [1787.93, 828.68], [1787.26, 828.07], [1788.86, 826.33], [1780.08, 818.29], [1779.86, 818.52], [1778.7, 817.45], [1777.2, 819.07], [1778.37, 820.14], [1774.08, 824.79], [1782.73, 832.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1589.49, 930.55], [1585.86, 927.16], [1584.5, 928.63], [1583.61, 927.8], [1576.1, 935.83], [1576.72, 936.41], [1575.36, 937.86], [1580.32, 942.48], [1589.14, 933.07], [1588.07, 932.06], [1589.49, 930.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1981.33, 1192.49], [1969.06, 1206.14], [1976.88, 1215.2], [1988.49, 1205.29], [1983.33, 1199.08], [1985.34, 1197.46], [1981.33, 1192.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.138, "pop": 0, "jobs": 138}}, {"shape": {"outer": [[1615.32, 781.67], [1610.4, 777.54], [1606.45, 782.2], [1611.37, 786.34], [1615.32, 781.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1855.78, 1108.04], [1849.19, 1101.72], [1841.85, 1109.72], [1843.06, 1110.77], [1842.11, 1111.83], [1848.44, 1117.84], [1855.41, 1110.44], [1854.51, 1109.36], [1855.78, 1108.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1664.03, 964.26], [1667.22, 960.75], [1667.12, 960.67], [1668.71, 958.93], [1659.45, 950.59], [1655.08, 955.39], [1655.99, 956.21], [1652.39, 960.16], [1659.16, 966.27], [1662.36, 962.75], [1664.03, 964.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1729.08, 879.53], [1722.11, 887.24], [1737.02, 900.63], [1740.7, 896.55], [1737.25, 893.46], [1740.54, 889.82], [1729.08, 879.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2241.42, 940.09], [2235.77, 935.02], [2230.28, 940.91], [2235.9, 946.31], [2241.42, 940.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2172.0, 862.64], [2180.62, 850.11], [2172.97, 844.86], [2163.62, 858.44], [2167.42, 861.05], [2168.16, 859.99], [2172.0, 862.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1713.53, 829.52], [1708.54, 834.94], [1720.74, 846.09], [1726.36, 839.97], [1716.36, 830.83], [1715.72, 831.53], [1713.53, 829.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2175.54, 1054.37], [2172.09, 1051.54], [2170.35, 1053.67], [2166.87, 1050.81], [2160.56, 1058.5], [2163.31, 1060.75], [2162.63, 1061.58], [2166.82, 1065.02], [2175.54, 1054.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1708.64, 639.76], [1702.92, 634.07], [1695.73, 641.27], [1701.45, 646.95], [1708.64, 639.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1866.09, 780.39], [1860.36, 775.05], [1858.88, 776.62], [1858.06, 775.87], [1854.13, 780.05], [1854.68, 780.57], [1850.87, 784.61], [1856.87, 790.2], [1866.09, 780.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1824.72, 687.3], [1828.31, 683.59], [1829.76, 684.98], [1831.17, 683.53], [1836.14, 688.31], [1842.36, 681.9], [1836.88, 676.63], [1837.31, 676.19], [1832.54, 671.6], [1820.89, 683.61], [1824.72, 687.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1923.67, 1060.74], [1920.23, 1057.87], [1915.74, 1063.24], [1919.17, 1066.11], [1923.67, 1060.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1901.31, 1098.86], [1899.29, 1096.94], [1900.37, 1095.85], [1898.15, 1093.75], [1897.11, 1094.82], [1896.8, 1094.53], [1894.11, 1097.27], [1892.86, 1097.69], [1891.72, 1098.86], [1891.34, 1100.14], [1889.12, 1102.48], [1889.39, 1103.79], [1890.54, 1104.89], [1891.85, 1105.14], [1890.59, 1106.46], [1892.34, 1108.11], [1901.31, 1098.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1872.19, 1058.26], [1866.78, 1053.06], [1863.3, 1056.68], [1862.41, 1055.83], [1859.58, 1058.78], [1860.55, 1059.72], [1856.96, 1063.46], [1862.28, 1068.57], [1872.19, 1058.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2202.4, 872.74], [2196.35, 866.98], [2189.18, 874.53], [2195.24, 880.28], [2202.4, 872.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1304.37, 674.01], [1300.15, 670.22], [1298.47, 672.08], [1297.76, 671.43], [1294.54, 675.0], [1297.17, 677.35], [1293.5, 681.41], [1299.21, 686.54], [1305.8, 679.25], [1302.39, 676.2], [1304.37, 674.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1973.76, 869.33], [1964.47, 861.59], [1958.49, 868.71], [1967.77, 876.46], [1973.76, 869.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2218.21, 819.01], [2219.87, 817.08], [2221.06, 818.11], [2224.78, 813.82], [2223.56, 812.76], [2225.05, 811.05], [2219.73, 806.43], [2212.85, 814.36], [2218.21, 819.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1402.88, 507.77], [1412.92, 495.45], [1408.31, 491.72], [1407.09, 493.22], [1404.33, 490.99], [1397.22, 499.72], [1397.43, 499.89], [1395.93, 501.73], [1397.2, 502.76], [1396.07, 504.15], [1398.09, 505.78], [1399.02, 504.64], [1402.88, 507.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1515.37, 673.42], [1516.82, 674.78], [1515.84, 675.83], [1520.04, 679.74], [1521.1, 678.6], [1522.07, 679.5], [1530.0, 671.02], [1529.27, 670.34], [1533.4, 665.91], [1529.16, 661.99], [1528.04, 663.19], [1527.31, 662.51], [1524.39, 665.65], [1523.45, 664.78], [1515.37, 673.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1505.48, 737.65], [1509.4, 733.31], [1509.94, 733.8], [1513.07, 730.33], [1512.63, 729.93], [1515.0, 727.3], [1510.56, 723.31], [1501.13, 733.73], [1505.48, 737.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1643.88, 1126.62], [1650.34, 1119.53], [1649.52, 1118.79], [1650.62, 1117.59], [1646.33, 1113.71], [1645.28, 1114.86], [1644.84, 1114.46], [1638.61, 1121.28], [1638.79, 1121.44], [1636.7, 1123.74], [1639.74, 1126.49], [1641.55, 1124.5], [1643.88, 1126.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1565.94, 886.5], [1558.8, 880.39], [1552.98, 887.17], [1560.12, 893.29], [1565.94, 886.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1785.73, 1125.58], [1777.54, 1118.2], [1772.44, 1123.82], [1782.87, 1133.23], [1785.28, 1130.57], [1783.04, 1128.54], [1785.73, 1125.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1418.3, 467.29], [1413.73, 462.94], [1409.33, 467.53], [1413.9, 471.88], [1418.3, 467.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1830.75, 802.72], [1825.36, 797.81], [1818.1, 805.71], [1823.49, 810.63], [1830.75, 802.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2091.6, 790.89], [2084.38, 784.92], [2079.46, 790.86], [2087.75, 797.73], [2090.21, 794.76], [2089.13, 793.87], [2091.6, 790.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1924.71, 922.87], [1916.35, 915.26], [1913.66, 918.18], [1912.21, 916.85], [1909.17, 920.16], [1919.0, 929.11], [1924.71, 922.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1879.99, 1093.24], [1888.14, 1084.48], [1886.44, 1082.87], [1888.66, 1080.44], [1886.0, 1077.98], [1883.53, 1080.64], [1882.87, 1080.02], [1874.94, 1088.54], [1879.99, 1093.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1743.68, 1034.61], [1738.62, 1040.12], [1744.18, 1045.19], [1749.24, 1039.68], [1743.68, 1034.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.036, "pop": 0, "jobs": 36}}, {"shape": {"outer": [[1903.77, 905.95], [1899.58, 910.63], [1904.58, 915.08], [1908.77, 910.4], [1903.77, 905.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1462.57, 661.93], [1460.06, 659.59], [1456.14, 663.76], [1458.65, 666.11], [1462.57, 661.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1947.8, 1095.07], [1942.42, 1090.49], [1939.26, 1094.2], [1944.64, 1098.78], [1947.8, 1095.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2134.94, 811.8], [2129.36, 806.49], [2119.89, 816.43], [2125.48, 821.75], [2134.94, 811.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1998.02, 1198.38], [1990.0, 1188.57], [1985.13, 1192.55], [1993.16, 1202.36], [1998.02, 1198.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1664.67, 1088.93], [1658.67, 1083.69], [1655.11, 1087.74], [1655.72, 1088.27], [1651.18, 1093.45], [1656.56, 1098.15], [1664.67, 1088.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1884.74, 798.16], [1886.06, 796.56], [1882.2, 793.36], [1878.65, 797.6], [1878.47, 797.45], [1873.5, 803.39], [1879.44, 808.32], [1886.62, 799.72], [1884.74, 798.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1943.66, 903.62], [1937.22, 897.81], [1929.65, 906.12], [1933.23, 909.35], [1934.53, 907.9], [1937.4, 910.5], [1943.66, 903.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1890.8, 1017.28], [1882.86, 1010.19], [1877.56, 1016.13], [1886.24, 1023.89], [1889.19, 1020.59], [1888.44, 1019.91], [1890.8, 1017.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2089.96, 1209.37], [2084.46, 1203.97], [2080.19, 1208.32], [2085.69, 1213.72], [2089.96, 1209.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2031.09, 1207.17], [2021.73, 1195.58], [2015.99, 1200.22], [2025.35, 1211.81], [2031.09, 1207.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1894.35, 1063.64], [1898.45, 1067.2], [1904.56, 1060.16], [1900.46, 1056.6], [1894.35, 1063.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1698.68, 717.56], [1695.49, 714.76], [1691.43, 719.39], [1694.62, 722.19], [1698.68, 717.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1806.04, 876.49], [1813.57, 868.15], [1809.46, 864.47], [1808.64, 865.4], [1806.35, 863.34], [1798.13, 872.44], [1804.03, 877.73], [1805.55, 876.04], [1806.04, 876.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1992.29, 689.91], [1997.24, 684.51], [1992.66, 680.32], [1994.59, 678.21], [1992.7, 676.48], [1991.45, 675.34], [1989.52, 677.44], [1989.22, 677.16], [1982.27, 684.74], [1983.02, 685.43], [1978.67, 690.16], [1983.31, 694.42], [1986.01, 691.48], [1991.91, 696.89], [1995.56, 692.91], [1993.63, 691.14], [1992.29, 689.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1821.55, 843.05], [1816.66, 838.52], [1811.72, 843.8], [1816.61, 848.35], [1821.55, 843.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1350.36, 505.03], [1347.29, 502.25], [1346.49, 503.13], [1344.3, 501.14], [1336.89, 509.28], [1344.73, 516.36], [1351.75, 508.63], [1349.18, 506.32], [1350.36, 505.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2083.87, 798.88], [2076.4, 791.72], [2071.25, 797.08], [2079.51, 804.99], [2082.49, 801.87], [2081.72, 801.13], [2083.87, 798.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1309.6, 702.43], [1313.42, 698.11], [1310.96, 695.95], [1311.97, 694.81], [1305.34, 689.0], [1299.55, 695.55], [1306.16, 701.35], [1307.12, 700.25], [1309.6, 702.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1371.58, 543.02], [1375.46, 538.84], [1376.08, 539.41], [1379.75, 535.44], [1379.22, 534.96], [1382.29, 531.64], [1376.02, 525.88], [1365.4, 537.34], [1371.58, 543.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2183.68, 1020.86], [2178.86, 1016.62], [2174.93, 1021.1], [2179.75, 1025.33], [2183.68, 1020.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2226.73, 1027.6], [2223.71, 1024.91], [2212.98, 1036.93], [2219.53, 1042.77], [2228.81, 1032.39], [2225.28, 1029.24], [2226.73, 1027.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2271.56, 942.73], [2266.02, 937.5], [2258.09, 946.32], [2258.8, 946.84], [2256.82, 948.97], [2260.22, 952.1], [2261.96, 950.04], [2263.45, 951.49], [2271.56, 942.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1569.81, 905.64], [1575.95, 899.0], [1571.56, 894.97], [1565.42, 901.63], [1569.81, 905.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.034, "pop": 0, "jobs": 34}}, {"shape": {"outer": [[2108.17, 805.72], [2104.72, 802.29], [2100.2, 806.83], [2103.66, 810.27], [2108.17, 805.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1547.3, 681.14], [1541.29, 675.51], [1531.32, 686.05], [1533.03, 687.65], [1531.66, 689.1], [1534.21, 691.51], [1535.59, 690.05], [1537.33, 691.68], [1547.3, 681.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1836.63, 863.74], [1833.38, 860.88], [1829.52, 865.23], [1832.77, 868.09], [1836.63, 863.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1879.33, 1138.22], [1877.19, 1136.36], [1877.88, 1135.57], [1874.99, 1133.05], [1871.7, 1136.85], [1869.97, 1135.34], [1864.38, 1141.78], [1871.13, 1147.66], [1879.33, 1138.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1880.82, 1029.64], [1884.91, 1025.22], [1875.08, 1016.12], [1873.09, 1018.26], [1874.88, 1019.91], [1872.08, 1022.93], [1878.35, 1028.74], [1879.05, 1027.99], [1880.82, 1029.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1813.72, 613.59], [1825.4, 601.64], [1823.18, 599.46], [1824.69, 597.91], [1819.63, 592.97], [1805.2, 607.74], [1810.88, 613.29], [1812.12, 612.02], [1813.72, 613.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1563.12, 692.75], [1556.7, 687.24], [1546.56, 698.94], [1552.97, 704.46], [1563.12, 692.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1818.51, 810.83], [1815.27, 807.82], [1810.48, 812.95], [1813.72, 815.95], [1818.51, 810.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1676.6, 968.61], [1680.67, 964.19], [1676.4, 960.27], [1672.32, 964.71], [1676.6, 968.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1751.45, 652.17], [1748.24, 649.24], [1743.73, 654.15], [1746.94, 657.07], [1751.45, 652.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1694.74, 632.35], [1686.23, 625.52], [1684.44, 627.74], [1682.47, 626.16], [1678.27, 631.37], [1688.75, 639.77], [1694.74, 632.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1848.88, 1052.87], [1861.16, 1039.27], [1854.07, 1032.95], [1841.81, 1046.43], [1848.88, 1052.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2103.48, 859.55], [2099.29, 855.96], [2090.38, 866.39], [2096.09, 871.27], [2103.67, 862.41], [2102.14, 861.11], [2103.48, 859.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1884.14, 789.72], [1878.06, 784.6], [1873.68, 789.76], [1872.41, 788.68], [1870.06, 791.47], [1870.77, 792.06], [1865.84, 797.87], [1872.48, 803.46], [1884.14, 789.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1988.01, 1086.56], [1990.07, 1084.55], [1986.98, 1081.38], [1984.97, 1083.33], [1983.75, 1082.09], [1980.68, 1085.08], [1979.58, 1083.95], [1976.87, 1086.61], [1977.71, 1087.46], [1974.86, 1090.25], [1980.74, 1096.28], [1989.32, 1087.9], [1988.01, 1086.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2054.65, 900.0], [2050.14, 896.08], [2045.89, 900.94], [2050.41, 904.86], [2054.65, 900.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2165.07, 796.36], [2173.78, 785.73], [2176.63, 788.05], [2181.31, 782.31], [2185.87, 786.04], [2191.5, 779.16], [2187.33, 775.75], [2185.01, 778.6], [2181.5, 775.73], [2174.94, 783.74], [2169.95, 779.65], [2166.33, 784.07], [2164.75, 782.78], [2162.55, 785.46], [2163.47, 786.2], [2159.14, 791.51], [2165.07, 796.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1662.65, 1014.2], [1668.39, 1007.41], [1667.91, 1007.02], [1671.02, 1003.34], [1667.24, 1000.17], [1664.37, 1003.55], [1664.27, 1003.46], [1658.29, 1010.53], [1662.65, 1014.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1695.38, 1084.09], [1693.7, 1082.58], [1693.14, 1083.19], [1689.53, 1079.98], [1681.98, 1088.37], [1687.28, 1093.1], [1695.38, 1084.09]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2119.85, 798.97], [2114.19, 794.03], [2109.6, 799.28], [2115.27, 804.22], [2119.85, 798.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1721.87, 802.41], [1727.21, 796.18], [1727.7, 796.65], [1731.7, 792.15], [1729.81, 790.44], [1731.16, 788.83], [1727.66, 785.83], [1724.17, 789.79], [1723.14, 788.95], [1715.93, 797.11], [1721.87, 802.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1959.41, 1184.12], [1962.08, 1181.5], [1962.49, 1181.9], [1965.89, 1178.55], [1959.0, 1171.58], [1955.94, 1174.59], [1957.24, 1175.91], [1952.53, 1180.53], [1955.41, 1183.45], [1957.1, 1181.79], [1959.41, 1184.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2088.88, 925.22], [2090.7, 923.19], [2092.09, 924.44], [2101.1, 914.43], [2094.21, 908.23], [2085.15, 918.31], [2087.35, 920.3], [2085.58, 922.27], [2088.88, 925.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1979.33, 1268.33], [1984.53, 1263.42], [1978.18, 1256.74], [1967.48, 1266.84], [1969.99, 1269.47], [1972.57, 1267.03], [1974.46, 1269.01], [1972.45, 1270.91], [1974.8, 1273.38], [1979.72, 1268.74], [1979.33, 1268.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1750.31, 968.03], [1756.9, 973.87], [1767.84, 961.62], [1761.26, 955.78], [1750.31, 968.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2116.31, 840.31], [2109.9, 834.94], [2106.63, 838.84], [2113.04, 844.21], [2116.31, 840.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1807.17, 917.35], [1800.95, 911.68], [1790.85, 922.7], [1797.07, 928.36], [1799.57, 925.65], [1800.2, 926.22], [1803.51, 922.61], [1802.87, 922.03], [1807.17, 917.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1650.98, 1043.8], [1645.39, 1038.74], [1636.07, 1048.95], [1639.9, 1052.42], [1642.5, 1049.59], [1644.26, 1051.18], [1650.98, 1043.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2085.26, 1215.08], [2080.35, 1210.76], [2078.17, 1213.24], [2083.07, 1217.56], [2085.26, 1215.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1859.25, 754.63], [1865.09, 748.22], [1853.5, 737.73], [1852.41, 738.93], [1848.42, 743.31], [1847.66, 744.14], [1859.25, 754.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1551.85, 734.07], [1543.34, 726.46], [1538.74, 731.57], [1547.25, 739.18], [1551.85, 734.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2246.06, 989.76], [2239.85, 984.34], [2235.01, 989.88], [2236.2, 990.92], [2232.4, 995.3], [2237.41, 999.67], [2246.06, 989.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2135.38, 887.27], [2129.13, 881.73], [2119.77, 892.31], [2126.02, 897.83], [2135.38, 887.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1921.93, 1043.06], [1917.99, 1039.22], [1913.83, 1043.48], [1917.77, 1047.32], [1921.93, 1043.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1404.92, 450.83], [1410.13, 455.47], [1414.62, 450.47], [1409.41, 445.82], [1404.92, 450.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1859.32, 966.93], [1853.87, 961.88], [1846.94, 969.28], [1852.39, 974.34], [1859.32, 966.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1822.69, 735.2], [1815.11, 728.49], [1813.89, 729.85], [1812.21, 728.38], [1809.25, 731.7], [1811.05, 733.28], [1809.75, 734.74], [1817.22, 741.34], [1822.69, 735.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2120.27, 931.37], [2114.26, 925.75], [2111.03, 929.21], [2109.38, 927.67], [2106.06, 931.21], [2107.58, 932.62], [2103.95, 936.5], [2110.1, 942.25], [2120.27, 931.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1928.15, 829.46], [1922.53, 824.58], [1911.09, 837.69], [1917.63, 843.36], [1923.63, 836.49], [1922.71, 835.69], [1928.15, 829.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1915.32, 1090.66], [1920.32, 1085.34], [1919.55, 1084.63], [1920.8, 1083.3], [1918.54, 1081.19], [1917.28, 1082.53], [1915.82, 1081.16], [1917.05, 1079.84], [1914.82, 1077.75], [1913.57, 1079.07], [1912.71, 1078.27], [1907.73, 1083.57], [1915.32, 1090.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1943.33, 844.9], [1930.86, 858.43], [1937.84, 864.83], [1950.32, 851.29], [1943.33, 844.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2163.39, 1014.74], [2169.21, 1010.8], [2170.27, 1012.35], [2173.57, 1010.11], [2171.69, 1007.35], [2172.72, 1006.64], [2170.8, 1003.81], [2172.64, 1002.56], [2169.45, 997.86], [2159.59, 1004.55], [2160.33, 1005.65], [2158.2, 1007.1], [2163.39, 1014.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1552.56, 924.82], [1564.48, 911.69], [1564.97, 912.13], [1569.79, 906.82], [1564.96, 902.45], [1548.21, 920.91], [1552.56, 924.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.096, "pop": 0, "jobs": 96}}, {"shape": {"outer": [[1925.7, 1118.66], [1919.94, 1113.26], [1915.47, 1118.03], [1914.67, 1117.29], [1912.19, 1119.94], [1912.94, 1120.64], [1909.63, 1124.19], [1915.45, 1129.63], [1925.7, 1118.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1736.81, 756.53], [1733.13, 753.27], [1728.31, 758.71], [1731.99, 761.97], [1736.81, 756.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2186.43, 917.28], [2181.43, 913.14], [2177.88, 917.42], [2182.88, 921.55], [2186.43, 917.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1867.97, 970.8], [1862.09, 965.37], [1860.7, 966.86], [1860.41, 966.59], [1852.72, 974.85], [1857.88, 979.61], [1859.17, 978.23], [1860.91, 979.84], [1867.42, 972.85], [1866.7, 972.17], [1867.97, 970.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2128.69, 939.43], [2121.74, 933.5], [2112.49, 944.35], [2119.44, 950.27], [2128.69, 939.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1914.14, 630.88], [1909.0, 626.15], [1903.52, 632.1], [1908.66, 636.84], [1914.14, 630.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1549.12, 548.01], [1542.42, 541.83], [1535.08, 549.73], [1536.56, 551.09], [1532.38, 555.6], [1537.09, 559.94], [1541.22, 555.51], [1541.73, 555.98], [1549.12, 548.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1799.75, 641.55], [1793.86, 636.29], [1785.73, 645.34], [1791.62, 650.6], [1799.75, 641.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2064.47, 879.39], [2061.12, 876.34], [2060.59, 876.91], [2056.7, 873.37], [2049.81, 880.93], [2050.16, 881.23], [2047.32, 884.34], [2054.22, 890.63], [2064.47, 879.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1917.77, 929.05], [1908.45, 920.9], [1906.95, 922.6], [1905.88, 921.67], [1903.52, 924.34], [1904.69, 925.37], [1902.66, 927.69], [1911.88, 935.75], [1917.77, 929.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2115.93, 816.95], [2118.26, 814.14], [2119.39, 815.07], [2127.31, 805.46], [2121.35, 800.55], [2116.26, 806.73], [2116.57, 806.97], [2113.74, 810.42], [2114.96, 811.43], [2112.65, 814.24], [2115.93, 816.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1859.72, 573.17], [1852.49, 566.74], [1847.05, 572.86], [1847.32, 573.11], [1845.51, 575.15], [1857.02, 585.39], [1861.5, 580.36], [1856.94, 576.31], [1859.72, 573.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1704.77, 1029.56], [1699.93, 1025.05], [1691.85, 1033.67], [1692.08, 1033.88], [1691.24, 1034.78], [1695.68, 1038.9], [1696.51, 1038.0], [1696.71, 1038.18], [1704.77, 1029.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1658.4, 705.71], [1662.89, 700.89], [1650.17, 689.57], [1645.92, 694.26], [1658.4, 705.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1713.26, 1037.18], [1708.13, 1032.58], [1698.86, 1042.85], [1704.32, 1047.76], [1710.68, 1040.71], [1710.35, 1040.41], [1713.26, 1037.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1906.16, 1033.29], [1900.95, 1028.25], [1896.17, 1033.17], [1901.38, 1038.22], [1906.16, 1033.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1885.94, 1074.92], [1882.9, 1071.85], [1881.53, 1073.2], [1878.58, 1070.21], [1875.85, 1072.92], [1875.39, 1072.47], [1872.68, 1075.16], [1873.84, 1076.33], [1869.84, 1080.29], [1875.13, 1085.64], [1885.94, 1074.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1609.56, 1003.97], [1600.76, 1013.52], [1615.21, 1026.75], [1624.02, 1017.21], [1609.56, 1003.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[2307.32, 924.06], [2302.86, 919.24], [2294.95, 926.55], [2300.86, 932.94], [2304.52, 929.55], [2303.07, 927.99], [2307.32, 924.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1896.84, 596.1], [1889.11, 588.73], [1883.17, 594.95], [1885.63, 597.29], [1882.55, 600.54], [1887.82, 605.57], [1896.84, 596.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1537.91, 537.36], [1537.46, 536.94], [1538.36, 535.96], [1531.41, 529.64], [1529.93, 531.26], [1529.59, 530.95], [1527.61, 533.12], [1527.43, 532.95], [1522.01, 538.89], [1524.83, 541.45], [1522.39, 544.11], [1527.49, 548.75], [1537.91, 537.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1967.19, 712.86], [1971.13, 708.46], [1966.49, 704.22], [1962.6, 708.65], [1967.19, 712.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2088.5, 1204.3], [2089.98, 1202.49], [2087.42, 1200.18], [2085.91, 1201.95], [2088.5, 1204.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[1957.5, 1160.0], [1953.09, 1155.06], [1951.74, 1156.27], [1950.46, 1154.85], [1946.74, 1158.18], [1946.21, 1157.58], [1942.18, 1161.19], [1944.16, 1163.41], [1941.17, 1166.08], [1942.19, 1167.22], [1941.11, 1168.18], [1944.35, 1171.79], [1957.5, 1160.0]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1703.42, 762.59], [1699.22, 758.99], [1697.7, 760.76], [1696.27, 759.53], [1687.29, 770.03], [1692.94, 774.85], [1703.42, 762.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1841.85, 1162.22], [1826.01, 1147.38], [1832.43, 1140.57], [1833.6, 1141.64], [1836.98, 1138.06], [1827.71, 1129.36], [1819.77, 1137.79], [1822.78, 1140.6], [1820.92, 1142.57], [1820.14, 1141.83], [1812.38, 1150.06], [1833.02, 1169.39], [1834.92, 1167.36], [1836.03, 1168.4], [1841.85, 1162.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[2154.44, 958.64], [2150.8, 954.97], [2139.21, 966.44], [2145.38, 972.66], [2154.86, 963.28], [2152.34, 960.72], [2154.44, 958.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1381.23, 552.55], [1392.85, 539.35], [1386.69, 533.98], [1382.97, 538.22], [1382.4, 537.72], [1374.52, 546.69], [1381.23, 552.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1951.3, 643.64], [1943.48, 636.03], [1937.21, 642.49], [1940.85, 646.03], [1938.18, 648.76], [1942.36, 652.83], [1951.3, 643.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2153.01, 1031.89], [2156.56, 1028.04], [2148.63, 1020.7], [2144.43, 1025.26], [2149.63, 1030.07], [2150.28, 1029.37], [2153.01, 1031.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1926.31, 803.03], [1919.62, 796.91], [1915.49, 801.39], [1922.17, 807.52], [1926.31, 803.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1571.23, 699.77], [1565.52, 694.72], [1562.05, 698.61], [1561.7, 698.3], [1558.15, 702.29], [1558.5, 702.6], [1556.38, 704.98], [1562.1, 710.03], [1571.23, 699.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1958.35, 841.93], [1962.81, 837.53], [1957.02, 831.73], [1952.58, 836.14], [1958.35, 841.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1673.17, 661.11], [1667.2, 655.74], [1658.28, 665.66], [1664.25, 671.02], [1673.17, 661.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2005.02, 894.35], [1995.3, 885.7], [1992.66, 888.65], [1991.54, 887.66], [1988.13, 891.47], [1998.97, 901.11], [2005.02, 894.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2102.01, 704.7], [2107.85, 698.01], [2103.1, 693.89], [2102.41, 694.66], [2100.21, 692.61], [2095.02, 698.58], [2102.01, 704.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1886.43, 1195.17], [1889.59, 1191.61], [1891.91, 1193.65], [1896.77, 1188.16], [1890.44, 1182.55], [1882.41, 1191.62], [1886.43, 1195.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1688.92, 748.23], [1683.43, 743.31], [1670.89, 757.29], [1676.38, 762.21], [1688.92, 748.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2200.97, 1073.71], [2196.54, 1069.66], [2192.04, 1074.57], [2196.47, 1078.63], [2200.97, 1073.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1577.56, 707.37], [1571.56, 701.92], [1562.77, 711.54], [1568.76, 716.99], [1577.56, 707.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1632.28, 1037.09], [1637.54, 1031.44], [1631.27, 1025.64], [1624.19, 1033.24], [1628.33, 1037.07], [1630.14, 1035.12], [1632.28, 1037.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1270.3, 499.14], [1261.42, 490.7], [1257.93, 494.33], [1258.96, 495.32], [1256.73, 497.66], [1257.35, 498.25], [1254.76, 500.97], [1254.01, 500.26], [1252.68, 501.65], [1251.82, 500.83], [1249.13, 503.64], [1250.08, 504.55], [1247.4, 507.36], [1251.62, 511.36], [1252.49, 510.46], [1256.9, 514.66], [1261.6, 509.76], [1260.47, 508.68], [1261.7, 507.39], [1260.63, 506.36], [1262.01, 504.92], [1263.22, 506.08], [1265.01, 504.2], [1266.22, 505.36], [1270.16, 501.23], [1269.18, 500.31], [1270.3, 499.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2269.63, 997.42], [2273.89, 992.71], [2260.96, 980.35], [2256.09, 985.59], [2269.63, 997.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1747.24, 724.9], [1744.0, 722.1], [1732.52, 735.41], [1737.81, 739.98], [1747.94, 728.23], [1745.89, 726.47], [1747.24, 724.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1536.97, 745.86], [1533.56, 742.67], [1530.34, 746.08], [1533.74, 749.27], [1536.97, 745.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1896.02, 864.49], [1890.38, 859.33], [1882.17, 868.24], [1884.2, 870.09], [1881.59, 872.92], [1885.21, 876.23], [1896.02, 864.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1728.09, 808.18], [1729.9, 806.32], [1731.34, 807.71], [1738.91, 799.92], [1734.48, 795.62], [1725.1, 805.28], [1728.09, 808.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1895.51, 996.64], [1891.14, 992.4], [1883.52, 1000.26], [1887.9, 1004.5], [1895.51, 996.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2132.4, 741.59], [2134.29, 739.36], [2135.72, 740.56], [2142.77, 732.26], [2138.22, 728.41], [2134.06, 733.3], [2130.87, 730.59], [2126.09, 736.23], [2132.4, 741.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1763.8, 875.03], [1755.65, 867.45], [1748.14, 875.46], [1746.68, 874.1], [1743.87, 877.1], [1745.33, 878.45], [1744.21, 879.64], [1752.36, 887.23], [1763.8, 875.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[1467.11, 476.18], [1463.83, 479.79], [1463.47, 479.46], [1460.13, 483.15], [1460.48, 483.46], [1455.1, 489.37], [1457.84, 491.84], [1457.12, 492.62], [1461.01, 496.15], [1473.73, 482.17], [1467.11, 476.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1336.07, 490.36], [1330.64, 485.58], [1329.58, 486.79], [1323.58, 481.51], [1319.23, 486.41], [1325.0, 491.48], [1323.8, 492.83], [1329.47, 497.82], [1336.07, 490.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2153.51, 743.94], [2148.91, 739.4], [2144.22, 744.16], [2153.27, 753.07], [2157.07, 749.21], [2152.62, 744.83], [2153.51, 743.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2017.21, 749.15], [2021.48, 744.42], [2018.43, 741.67], [2014.16, 746.4], [2017.21, 749.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1649.36, 1073.77], [1643.17, 1068.36], [1641.28, 1070.5], [1639.71, 1069.13], [1634.09, 1075.52], [1635.66, 1076.89], [1633.55, 1079.29], [1639.75, 1084.71], [1649.36, 1073.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2019.85, 760.6], [2024.0, 756.06], [2019.1, 751.61], [2015.08, 756.06], [2019.85, 760.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1897.53, 922.48], [1893.62, 919.04], [1889.19, 924.04], [1893.1, 927.47], [1897.53, 922.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2202.31, 1062.22], [2207.22, 1066.71], [2211.79, 1061.81], [2206.85, 1057.39], [2202.31, 1062.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1773.54, 787.46], [1765.14, 779.96], [1758.92, 786.92], [1767.33, 794.42], [1773.54, 787.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1536.71, 449.53], [1532.46, 445.63], [1532.97, 445.07], [1524.32, 437.15], [1518.32, 443.65], [1531.23, 455.48], [1536.71, 449.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1665.56, 1103.88], [1673.2, 1095.7], [1666.93, 1089.88], [1659.29, 1098.05], [1665.56, 1103.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1853.48, 959.51], [1848.28, 954.6], [1844.36, 958.72], [1843.41, 957.81], [1839.84, 961.57], [1840.83, 962.51], [1838.57, 964.89], [1843.73, 969.76], [1853.48, 959.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2016.27, 1106.99], [2011.12, 1101.85], [2004.21, 1108.77], [2009.36, 1113.91], [2016.27, 1106.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2011.02, 761.23], [2004.29, 755.14], [2001.46, 758.23], [2000.49, 758.16], [1997.88, 760.96], [1997.97, 762.15], [1996.89, 763.38], [1995.42, 763.49], [1994.23, 764.9], [1994.24, 766.57], [1995.23, 767.56], [1996.77, 767.96], [2001.35, 772.26], [2004.67, 768.46], [2005.22, 768.98], [2009.14, 764.41], [2008.67, 763.92], [2011.02, 761.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2134.39, 865.89], [2128.24, 860.37], [2123.83, 865.29], [2129.98, 870.8], [2134.39, 865.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1325.87, 640.09], [1326.96, 638.83], [1327.24, 639.05], [1333.14, 632.2], [1333.53, 632.53], [1338.57, 626.68], [1337.3, 625.59], [1337.69, 625.14], [1336.04, 623.75], [1337.11, 622.52], [1334.36, 620.17], [1333.31, 621.4], [1333.03, 621.17], [1323.4, 632.36], [1323.87, 632.76], [1321.09, 636.01], [1325.87, 640.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1465.63, 505.71], [1459.3, 512.47], [1470.29, 522.69], [1471.07, 521.87], [1472.01, 520.87], [1475.84, 516.77], [1472.81, 513.94], [1473.59, 513.11], [1465.63, 505.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2082.64, 812.21], [2083.76, 810.93], [2072.68, 800.54], [2067.27, 806.76], [2070.63, 809.92], [2070.02, 810.59], [2077.77, 817.24], [2079.41, 815.34], [2081.02, 816.72], [2083.86, 813.41], [2082.64, 812.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2073.56, 1225.68], [2068.98, 1220.45], [2064.07, 1224.71], [2068.65, 1229.95], [2073.56, 1225.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1773.28, 1041.42], [1773.99, 1040.68], [1775.96, 1042.56], [1786.13, 1031.86], [1781.06, 1027.07], [1776.88, 1031.45], [1776.19, 1030.79], [1772.67, 1034.49], [1773.34, 1035.13], [1770.15, 1038.48], [1773.28, 1041.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[1970.63, 1246.17], [1966.94, 1241.62], [1955.65, 1251.05], [1959.22, 1255.44], [1970.63, 1246.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1725.05, 621.26], [1719.74, 616.22], [1716.09, 620.03], [1718.55, 622.36], [1716.83, 624.17], [1719.69, 626.88], [1725.05, 621.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1633.81, 622.82], [1626.74, 616.23], [1625.14, 617.95], [1624.99, 617.8], [1616.49, 626.87], [1616.74, 627.1], [1615.81, 628.09], [1618.09, 630.21], [1619.17, 629.04], [1623.88, 633.42], [1633.81, 622.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1645.83, 1037.21], [1640.34, 1032.1], [1632.31, 1040.67], [1637.79, 1045.78], [1645.83, 1037.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1384.15, 492.45], [1395.54, 480.25], [1394.0, 478.82], [1395.5, 477.2], [1391.92, 473.88], [1390.73, 475.16], [1390.54, 474.99], [1390.17, 475.37], [1389.66, 474.9], [1377.29, 488.15], [1381.34, 491.89], [1382.36, 490.8], [1382.88, 491.28], [1383.65, 491.98], [1384.15, 492.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1870.96, 861.53], [1876.62, 855.54], [1873.88, 852.97], [1877.45, 849.19], [1875.37, 847.24], [1876.74, 845.8], [1874.21, 843.43], [1872.81, 844.93], [1871.03, 843.27], [1868.77, 845.68], [1866.69, 843.73], [1861.48, 849.25], [1863.94, 851.56], [1861.14, 854.52], [1865.43, 858.53], [1866.52, 857.38], [1870.96, 861.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1658.58, 967.21], [1654.83, 963.64], [1653.97, 964.53], [1649.88, 960.65], [1645.23, 965.53], [1649.27, 969.35], [1648.75, 969.9], [1652.75, 973.69], [1653.27, 973.14], [1657.31, 976.97], [1661.24, 972.85], [1657.02, 968.85], [1658.58, 967.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1874.36, 612.37], [1880.09, 606.16], [1867.36, 594.31], [1863.37, 598.79], [1862.23, 600.07], [1861.65, 600.73], [1871.32, 609.62], [1870.76, 610.22], [1871.79, 611.17], [1872.56, 611.88], [1873.16, 611.25], [1874.36, 612.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1598.63, 953.18], [1594.8, 949.57], [1590.28, 954.32], [1592.68, 956.6], [1594.1, 957.94], [1598.63, 953.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1823.68, 868.09], [1820.13, 864.96], [1818.46, 866.84], [1816.64, 865.24], [1804.76, 878.63], [1807.26, 880.83], [1807.12, 880.99], [1811.44, 884.79], [1823.54, 871.15], [1822.1, 869.88], [1823.68, 868.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1957.93, 856.26], [1952.54, 851.45], [1938.86, 866.67], [1945.36, 872.47], [1953.84, 863.04], [1952.73, 862.05], [1957.93, 856.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2092.92, 935.59], [2087.82, 931.0], [2083.23, 936.09], [2088.33, 940.7], [2092.92, 935.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1831.08, 616.56], [1822.85, 608.3], [1816.43, 614.69], [1825.34, 623.64], [1828.41, 620.58], [1827.73, 619.9], [1831.08, 616.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2071.46, 834.32], [2068.19, 831.45], [2064.3, 835.88], [2067.58, 838.75], [2071.46, 834.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1728.31, 1050.36], [1723.32, 1045.89], [1713.76, 1056.46], [1718.74, 1060.94], [1728.31, 1050.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1451.05, 290.27], [1457.17, 283.57], [1453.41, 280.02], [1447.17, 286.89], [1451.05, 290.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2099.55, 851.47], [2096.78, 849.02], [2097.75, 847.91], [2094.31, 844.88], [2089.89, 849.88], [2087.94, 848.15], [2085.65, 850.72], [2087.28, 852.17], [2083.72, 856.18], [2086.77, 858.88], [2085.21, 860.66], [2088.69, 863.74], [2099.55, 851.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1831.21, 700.44], [1825.41, 706.71], [1832.08, 712.84], [1829.82, 715.28], [1834.46, 719.54], [1839.15, 714.47], [1840.63, 715.83], [1841.05, 715.37], [1841.91, 714.45], [1844.09, 712.08], [1839.57, 707.92], [1840.67, 706.74], [1836.32, 702.75], [1835.13, 704.04], [1831.21, 700.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1717.62, 702.93], [1711.46, 697.11], [1704.03, 704.96], [1710.19, 710.79], [1717.62, 702.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1713.03, 612.4], [1702.42, 602.24], [1697.8, 607.03], [1700.02, 609.16], [1697.44, 611.83], [1706.96, 620.94], [1712.14, 615.57], [1711.01, 614.49], [1713.03, 612.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2194.86, 1070.57], [2188.76, 1065.15], [2179.05, 1076.11], [2185.15, 1081.53], [2194.86, 1070.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1720.45, 847.01], [1711.92, 839.3], [1707.47, 844.21], [1708.52, 845.17], [1707.03, 846.81], [1714.5, 853.56], [1720.45, 847.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1878.76, 638.57], [1874.65, 633.85], [1870.04, 637.86], [1874.13, 642.58], [1878.76, 638.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2004.34, 1167.08], [2019.63, 1180.8], [2026.13, 1173.46], [2012.32, 1160.49], [2011.72, 1161.15], [2010.66, 1160.16], [2004.34, 1167.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2052.9, 925.03], [2048.74, 921.14], [2043.97, 926.25], [2048.13, 930.13], [2052.9, 925.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2143.94, 817.62], [2139.38, 813.77], [2138.57, 814.72], [2136.18, 812.7], [2128.53, 821.73], [2135.47, 827.6], [2143.94, 817.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2117.54, 871.32], [2113.32, 867.72], [2105.62, 876.72], [2112.22, 882.36], [2118.61, 874.88], [2116.23, 872.85], [2117.54, 871.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1797.07, 869.48], [1798.99, 867.36], [1799.44, 867.77], [1808.39, 857.88], [1806.1, 855.82], [1808.88, 852.75], [1805.69, 849.89], [1802.55, 853.35], [1801.13, 852.08], [1792.74, 861.34], [1793.39, 861.93], [1791.27, 864.26], [1797.07, 869.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1743.11, 1063.86], [1737.74, 1058.91], [1729.02, 1068.31], [1734.39, 1073.26], [1743.11, 1063.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1747.82, 1089.27], [1744.25, 1086.06], [1738.41, 1092.5], [1741.99, 1095.71], [1747.82, 1089.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1771.74, 848.71], [1774.81, 845.3], [1773.58, 844.19], [1775.43, 842.13], [1766.11, 833.79], [1760.21, 840.34], [1769.44, 848.6], [1770.41, 847.52], [1771.74, 848.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2172.05, 1032.39], [2167.27, 1028.71], [2165.98, 1030.38], [2161.18, 1026.7], [2158.65, 1029.98], [2168.24, 1037.36], [2172.05, 1032.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2027.38, 708.38], [2023.46, 704.99], [2023.0, 705.52], [2022.09, 704.73], [2018.97, 708.33], [2017.37, 706.94], [2013.51, 711.4], [2015.31, 712.96], [2012.12, 716.65], [2018.81, 722.44], [2028.77, 710.92], [2026.72, 709.15], [2027.38, 708.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1837.02, 808.34], [1832.11, 803.96], [1826.19, 810.57], [1826.36, 810.73], [1821.66, 815.97], [1825.96, 819.81], [1830.67, 814.55], [1831.11, 814.94], [1837.02, 808.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1942.33, 815.62], [1946.33, 811.21], [1939.32, 804.91], [1935.33, 809.32], [1942.33, 815.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1735.01, 1056.55], [1729.54, 1051.69], [1720.25, 1062.06], [1725.71, 1066.92], [1735.01, 1056.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1894.88, 942.54], [1888.32, 936.64], [1881.49, 944.19], [1888.05, 950.08], [1894.88, 942.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1393.27, 440.45], [1388.96, 436.69], [1382.55, 443.95], [1386.86, 447.71], [1393.27, 440.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1882.08, 663.64], [1875.73, 657.27], [1869.18, 663.81], [1875.52, 670.18], [1882.08, 663.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1282.27, 487.97], [1286.86, 492.37], [1290.97, 488.13], [1286.38, 483.73], [1282.27, 487.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1735.32, 982.79], [1727.5, 991.41], [1731.07, 994.62], [1738.88, 986.0], [1735.32, 982.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.036, "pop": 0, "jobs": 36}}, {"shape": {"outer": [[1842.29, 1008.26], [1845.11, 1005.19], [1846.51, 1006.47], [1849.08, 1003.69], [1839.46, 994.9], [1834.45, 1000.35], [1837.66, 1003.28], [1837.28, 1003.69], [1842.29, 1008.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2199.78, 914.07], [2193.02, 908.08], [2186.11, 915.88], [2192.87, 921.86], [2194.75, 923.53], [2200.64, 916.89], [2198.76, 915.22], [2199.78, 914.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1726.49, 711.48], [1719.11, 704.4], [1711.53, 712.3], [1718.91, 719.38], [1726.49, 711.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2061.88, 1148.75], [2056.94, 1143.99], [2050.3, 1150.91], [2055.24, 1155.66], [2061.88, 1148.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2146.79, 954.76], [2140.9, 949.78], [2134.38, 957.52], [2140.27, 962.49], [2146.79, 954.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1768.58, 551.36], [1760.25, 542.9], [1753.93, 549.11], [1755.89, 551.09], [1752.66, 554.27], [1755.6, 557.25], [1755.12, 557.72], [1758.56, 561.23], [1768.58, 551.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1708.25, 1099.63], [1703.14, 1094.99], [1696.86, 1101.85], [1698.76, 1103.58], [1697.65, 1104.8], [1700.85, 1107.71], [1708.25, 1099.63]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2775.58, 1701.2], [2771.14, 1700.17], [2769.71, 1706.31], [2774.17, 1707.34], [2775.58, 1701.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2592.71, 1334.81], [2589.78, 1331.08], [2585.69, 1334.38], [2588.53, 1338.08], [2592.71, 1334.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2532.65, 1993.41], [2530.56, 1989.73], [2524.82, 1993.0], [2526.91, 1996.68], [2532.65, 1993.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2393.08, 1123.47], [2386.6, 1117.4], [2380.27, 1124.18], [2386.75, 1130.24], [2393.08, 1123.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2744.61, 1639.39], [2745.25, 1636.47], [2740.34, 1635.4], [2739.73, 1638.23], [2737.51, 1637.75], [2734.39, 1652.12], [2743.99, 1654.2], [2747.09, 1639.93], [2744.61, 1639.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2408.07, 1383.3], [2404.95, 1381.11], [2395.87, 1394.04], [2402.97, 1399.03], [2410.84, 1387.81], [2406.86, 1385.02], [2408.07, 1383.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2727.75, 1727.2], [2718.7, 1725.23], [2716.71, 1734.42], [2725.77, 1736.39], [2727.75, 1727.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2466.89, 1303.35], [2459.89, 1295.05], [2455.95, 1298.39], [2462.95, 1306.68], [2466.89, 1303.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2235.43, 1243.01], [2232.89, 1240.63], [2228.74, 1245.07], [2231.27, 1247.45], [2235.43, 1243.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2651.72, 1363.35], [2646.3, 1356.4], [2634.31, 1365.74], [2639.74, 1372.69], [2651.72, 1363.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2775.34, 1686.87], [2766.71, 1685.03], [2764.45, 1695.65], [2773.08, 1697.49], [2775.34, 1686.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2369.87, 1076.0], [2364.72, 1071.43], [2361.28, 1075.29], [2366.44, 1079.87], [2369.87, 1076.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2948.88, 1530.36], [2936.33, 1527.91], [2934.52, 1537.18], [2953.25, 1540.83], [2954.85, 1532.62], [2948.67, 1531.41], [2948.88, 1530.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2791.87, 1563.66], [2792.14, 1551.07], [2786.66, 1550.96], [2786.62, 1552.97], [2783.44, 1552.9], [2783.22, 1563.49], [2791.87, 1563.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2391.92, 1552.58], [2388.59, 1550.35], [2385.15, 1555.49], [2388.48, 1557.72], [2391.92, 1552.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2695.9, 1680.38], [2699.03, 1665.64], [2690.35, 1663.69], [2687.49, 1678.47], [2695.9, 1680.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2532.21, 1389.34], [2533.16, 1388.57], [2533.72, 1389.25], [2536.25, 1387.18], [2533.0, 1383.19], [2530.48, 1385.26], [2532.25, 1387.43], [2531.29, 1388.21], [2532.21, 1389.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2668.06, 1567.62], [2662.65, 1567.56], [2662.57, 1574.27], [2667.98, 1574.33], [2668.06, 1567.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2716.56, 1382.97], [2707.15, 1382.87], [2706.98, 1397.3], [2711.43, 1397.34], [2711.39, 1401.21], [2716.35, 1401.27], [2716.56, 1382.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2610.98, 1475.23], [2610.43, 1467.3], [2601.19, 1467.95], [2601.74, 1475.87], [2610.98, 1475.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2339.65, 1453.95], [2334.16, 1450.23], [2332.55, 1452.61], [2330.97, 1451.54], [2326.49, 1458.14], [2333.56, 1462.94], [2339.65, 1453.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2431.41, 1241.74], [2429.14, 1238.51], [2424.26, 1241.96], [2426.53, 1245.19], [2431.41, 1241.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2482.98, 1215.08], [2478.34, 1208.8], [2468.26, 1216.27], [2472.91, 1222.56], [2482.98, 1215.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2692.53, 1694.09], [2693.75, 1688.47], [2687.23, 1686.93], [2685.97, 1692.54], [2692.53, 1694.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2423.35, 1967.09], [2419.38, 1960.8], [2411.27, 1966.13], [2415.21, 1972.4], [2423.35, 1967.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2611.25, 1360.04], [2609.74, 1357.94], [2607.88, 1359.27], [2607.53, 1358.79], [2602.39, 1362.46], [2604.8, 1365.83], [2610.01, 1362.1], [2609.46, 1361.32], [2611.25, 1360.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2376.03, 1466.37], [2372.73, 1464.24], [2368.52, 1470.78], [2371.82, 1472.9], [2376.03, 1466.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2477.95, 2085.62], [2468.92, 2077.45], [2464.36, 2082.49], [2473.39, 2090.67], [2477.95, 2085.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2501.19, 1351.46], [2498.99, 1349.57], [2494.66, 1354.64], [2496.85, 1356.52], [2501.19, 1351.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2524.37, 1561.95], [2518.91, 1557.94], [2514.16, 1564.42], [2519.64, 1568.42], [2524.37, 1561.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2843.61, 1440.61], [2844.59, 1423.43], [2834.09, 1422.83], [2833.71, 1429.45], [2831.84, 1429.34], [2831.45, 1436.17], [2834.84, 1436.36], [2834.63, 1440.09], [2843.61, 1440.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2479.27, 1316.63], [2476.8, 1312.2], [2471.49, 1315.17], [2473.96, 1319.59], [2479.27, 1316.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2618.07, 2115.85], [2624.83, 2111.86], [2625.03, 2112.18], [2627.74, 2110.59], [2624.98, 2105.89], [2622.69, 2107.25], [2620.96, 2104.31], [2611.61, 2109.82], [2613.53, 2113.06], [2615.69, 2111.8], [2618.07, 2115.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2859.84, 1666.47], [2861.28, 1660.65], [2852.17, 1658.4], [2850.66, 1664.52], [2855.43, 1665.71], [2855.5, 1665.4], [2859.84, 1666.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2230.86, 1352.5], [2236.31, 1344.46], [2228.45, 1339.14], [2227.15, 1341.07], [2226.2, 1340.43], [2223.69, 1344.16], [2224.78, 1344.89], [2223.52, 1346.76], [2224.89, 1347.69], [2224.28, 1348.61], [2227.46, 1350.76], [2227.72, 1350.38], [2230.86, 1352.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2102.06, 1545.95], [2106.43, 1540.75], [2104.62, 1539.23], [2106.24, 1537.3], [2097.93, 1530.3], [2096.25, 1532.28], [2094.7, 1530.97], [2090.72, 1535.7], [2093.11, 1537.71], [2092.46, 1538.47], [2099.16, 1544.13], [2099.46, 1543.76], [2102.06, 1545.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2415.09, 1365.77], [2410.44, 1361.66], [2407.03, 1365.51], [2411.68, 1369.62], [2415.09, 1365.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2338.3, 1413.26], [2332.57, 1408.69], [2328.52, 1413.78], [2334.24, 1418.34], [2338.3, 1413.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2298.76, 1485.62], [2303.07, 1479.1], [2304.06, 1479.76], [2306.21, 1476.51], [2299.55, 1472.1], [2297.89, 1474.61], [2296.57, 1473.74], [2291.76, 1481.0], [2298.76, 1485.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2391.88, 1090.57], [2394.15, 1088.04], [2395.65, 1089.37], [2399.76, 1084.77], [2390.74, 1076.72], [2384.36, 1083.86], [2391.88, 1090.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2315.21, 1437.46], [2310.28, 1434.26], [2309.43, 1435.57], [2308.03, 1434.67], [2303.32, 1441.94], [2305.17, 1443.13], [2303.15, 1446.25], [2309.77, 1450.54], [2316.54, 1440.09], [2314.4, 1438.7], [2315.21, 1437.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2453.68, 1887.46], [2459.04, 1883.97], [2455.99, 1879.08], [2450.43, 1882.52], [2453.68, 1887.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1940.11, 1537.55], [1944.35, 1533.18], [1941.96, 1530.86], [1943.02, 1529.76], [1939.41, 1526.26], [1938.24, 1527.47], [1935.61, 1524.92], [1927.68, 1533.11], [1930.49, 1535.85], [1931.87, 1534.43], [1934.06, 1536.56], [1936.48, 1534.06], [1940.11, 1537.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2733.45, 1764.05], [2725.89, 1762.22], [2723.56, 1771.85], [2725.86, 1772.41], [2725.54, 1773.76], [2730.79, 1775.02], [2733.45, 1764.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2293.28, 1213.23], [2288.71, 1208.88], [2286.47, 1211.23], [2291.05, 1215.58], [2293.28, 1213.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2649.89, 1593.08], [2658.26, 1592.77], [2658.12, 1588.89], [2659.9, 1588.83], [2659.69, 1582.83], [2649.55, 1583.15], [2649.89, 1593.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2748.03, 1700.68], [2743.29, 1699.55], [2741.68, 1706.33], [2746.42, 1707.46], [2748.03, 1700.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2016.2, 1420.8], [2034.41, 1402.39], [2026.62, 1394.69], [2025.81, 1395.5], [2013.13, 1382.94], [2014.28, 1381.78], [2006.94, 1374.51], [1988.67, 1392.98], [1996.37, 1400.6], [1997.88, 1399.07], [2009.83, 1410.9], [2008.03, 1412.72], [2016.2, 1420.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.76, "pop": 380, "jobs": 0}}, {"shape": {"outer": [[1944.89, 1546.13], [1954.4, 1534.34], [1951.09, 1531.65], [1947.49, 1536.11], [1945.51, 1534.52], [1939.59, 1541.86], [1944.89, 1546.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2510.93, 1938.32], [2502.51, 1923.09], [2496.15, 1926.61], [2504.56, 1941.85], [2510.93, 1938.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2375.82, 1378.15], [2380.96, 1369.95], [2374.29, 1365.78], [2369.5, 1373.44], [2371.25, 1374.53], [2370.33, 1376.0], [2372.84, 1377.58], [2373.42, 1376.65], [2375.82, 1378.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2537.59, 1896.87], [2525.73, 1894.67], [2524.04, 1903.77], [2535.9, 1905.98], [2537.59, 1896.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2500.49, 1579.0], [2501.55, 1577.3], [2502.44, 1577.85], [2506.12, 1571.93], [2504.97, 1571.21], [2506.28, 1569.1], [2501.65, 1566.22], [2500.35, 1568.3], [2499.52, 1567.79], [2494.16, 1576.41], [2496.33, 1577.77], [2496.94, 1576.79], [2500.49, 1579.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2401.02, 1148.5], [2402.7, 1146.65], [2404.23, 1148.04], [2411.11, 1140.43], [2407.2, 1136.9], [2406.68, 1137.47], [2403.66, 1134.74], [2397.67, 1141.37], [2399.75, 1143.25], [2397.71, 1145.5], [2401.02, 1148.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2591.13, 1517.15], [2591.43, 1515.27], [2592.59, 1515.46], [2594.71, 1501.91], [2585.81, 1500.53], [2583.85, 1513.05], [2584.49, 1513.14], [2584.03, 1516.05], [2591.13, 1517.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2376.57, 1108.57], [2368.63, 1101.54], [2362.47, 1108.5], [2370.4, 1115.53], [2376.57, 1108.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2560.14, 1282.99], [2565.17, 1279.35], [2565.73, 1280.12], [2568.9, 1277.82], [2568.11, 1276.73], [2575.72, 1271.23], [2572.44, 1266.71], [2568.52, 1269.54], [2566.18, 1266.31], [2558.55, 1271.82], [2559.84, 1273.61], [2555.58, 1276.7], [2560.14, 1282.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2742.78, 1479.52], [2742.95, 1475.28], [2744.06, 1475.33], [2744.36, 1468.09], [2742.12, 1467.99], [2742.18, 1466.54], [2736.98, 1466.32], [2736.89, 1468.41], [2735.34, 1468.35], [2734.88, 1479.18], [2742.78, 1479.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2527.62, 1521.85], [2521.11, 1517.46], [2515.33, 1526.01], [2521.84, 1530.41], [2527.62, 1521.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2476.2, 1274.18], [2471.2, 1267.62], [2461.2, 1275.26], [2466.21, 1281.81], [2476.2, 1274.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2782.7, 1499.77], [2777.3, 1499.57], [2777.04, 1506.38], [2782.44, 1506.59], [2782.7, 1499.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2745.73, 1404.57], [2745.98, 1392.59], [2738.72, 1392.43], [2738.66, 1395.22], [2736.96, 1395.19], [2736.77, 1404.38], [2745.73, 1404.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2864.26, 1529.95], [2864.33, 1527.29], [2865.96, 1527.33], [2866.2, 1517.32], [2863.41, 1517.25], [2863.45, 1515.64], [2857.12, 1515.49], [2856.78, 1529.77], [2864.26, 1529.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2490.91, 1572.08], [2496.61, 1564.09], [2491.49, 1560.43], [2485.07, 1569.42], [2487.74, 1571.33], [2488.45, 1570.32], [2490.91, 1572.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2494.44, 1627.66], [2490.36, 1624.94], [2486.45, 1630.81], [2490.53, 1633.53], [2494.44, 1627.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2366.7, 1335.25], [2355.2, 1327.35], [2350.64, 1333.99], [2362.14, 1341.88], [2366.7, 1335.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2455.89, 2023.27], [2452.8, 2017.69], [2444.38, 2022.35], [2447.48, 2027.93], [2455.89, 2023.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1960.02, 1559.82], [1962.4, 1557.07], [1962.92, 1557.51], [1965.45, 1554.57], [1966.45, 1555.43], [1970.82, 1550.35], [1967.44, 1547.43], [1965.81, 1549.33], [1963.4, 1547.26], [1961.39, 1549.58], [1960.3, 1548.63], [1957.85, 1551.47], [1958.9, 1552.39], [1955.7, 1556.1], [1960.02, 1559.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2462.94, 1403.42], [2456.89, 1398.87], [2453.34, 1403.58], [2459.4, 1408.13], [2462.94, 1403.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2666.62, 1691.28], [2657.55, 1688.77], [2655.33, 1696.78], [2666.98, 1700.0], [2668.34, 1695.1], [2665.75, 1694.39], [2666.62, 1691.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2303.39, 1418.54], [2304.69, 1416.62], [2307.11, 1418.27], [2310.66, 1413.03], [2296.06, 1403.12], [2291.21, 1410.26], [2303.39, 1418.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2442.28, 1533.84], [2429.89, 1525.03], [2427.84, 1527.93], [2426.94, 1527.29], [2424.46, 1530.78], [2425.74, 1531.68], [2424.81, 1533.0], [2436.82, 1541.53], [2442.28, 1533.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2625.0, 1400.73], [2619.96, 1393.94], [2609.88, 1401.41], [2614.92, 1408.2], [2625.0, 1400.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2516.67, 1530.99], [2510.7, 1527.24], [2507.12, 1532.93], [2513.09, 1536.69], [2516.67, 1530.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2062.49, 1470.53], [2052.47, 1460.95], [2048.18, 1465.44], [2051.05, 1468.18], [2050.12, 1469.15], [2057.27, 1475.98], [2062.49, 1470.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2375.87, 1239.86], [2371.47, 1235.23], [2366.17, 1240.26], [2370.57, 1244.9], [2375.87, 1239.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2762.99, 1527.36], [2763.11, 1516.36], [2764.72, 1516.38], [2764.77, 1511.91], [2757.53, 1511.83], [2757.5, 1514.67], [2755.54, 1514.65], [2755.43, 1524.28], [2756.08, 1524.28], [2756.04, 1527.27], [2762.99, 1527.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2057.19, 1478.99], [2052.63, 1473.99], [2052.9, 1473.75], [2046.94, 1467.22], [2041.14, 1472.52], [2047.37, 1479.35], [2049.16, 1477.71], [2053.43, 1482.41], [2057.19, 1478.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2472.52, 1320.54], [2466.39, 1314.44], [2461.16, 1319.7], [2467.28, 1325.8], [2472.52, 1320.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2869.12, 1713.08], [2859.85, 1711.13], [2856.86, 1725.32], [2866.12, 1727.27], [2869.12, 1713.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2859.65, 1566.7], [2859.75, 1564.61], [2862.39, 1564.75], [2863.04, 1552.52], [2854.58, 1552.06], [2853.81, 1566.39], [2859.65, 1566.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2169.73, 1329.02], [2164.84, 1323.48], [2160.29, 1327.5], [2165.18, 1333.04], [2169.73, 1329.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2744.71, 1801.45], [2738.22, 1799.93], [2736.75, 1806.21], [2743.25, 1807.72], [2744.71, 1801.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2081.43, 1555.7], [2074.42, 1548.9], [2068.39, 1555.14], [2074.53, 1561.09], [2071.6, 1564.12], [2075.47, 1567.86], [2078.57, 1564.66], [2075.56, 1561.75], [2081.43, 1555.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2370.62, 1435.71], [2364.65, 1431.49], [2360.74, 1437.01], [2366.7, 1441.25], [2370.62, 1435.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2533.95, 1594.17], [2527.66, 1589.61], [2522.96, 1596.08], [2529.24, 1600.65], [2533.95, 1594.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2806.89, 1492.85], [2800.56, 1492.25], [2800.03, 1497.74], [2806.36, 1498.34], [2806.89, 1492.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2711.31, 1421.43], [2705.55, 1421.15], [2704.71, 1437.82], [2712.99, 1438.23], [2713.56, 1426.74], [2711.05, 1426.63], [2711.31, 1421.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2512.63, 1195.84], [2507.14, 1188.82], [2499.52, 1194.77], [2505.01, 1201.79], [2512.63, 1195.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2457.27, 1281.76], [2454.71, 1278.51], [2449.27, 1282.79], [2451.84, 1286.03], [2457.27, 1281.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2094.74, 1552.58], [2098.11, 1549.09], [2096.65, 1547.69], [2097.95, 1546.35], [2090.84, 1539.47], [2089.93, 1540.42], [2088.11, 1538.66], [2083.91, 1543.01], [2092.4, 1551.22], [2092.85, 1550.75], [2094.74, 1552.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2063.94, 1466.85], [2065.4, 1465.42], [2066.56, 1466.6], [2068.56, 1464.63], [2067.58, 1463.64], [2068.94, 1462.31], [2060.66, 1453.87], [2055.84, 1458.61], [2063.94, 1466.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2614.92, 1485.93], [2614.45, 1480.76], [2611.54, 1481.02], [2611.43, 1479.81], [2602.76, 1480.6], [2603.54, 1489.21], [2612.22, 1488.43], [2612.02, 1486.19], [2614.92, 1485.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2429.61, 1142.36], [2426.49, 1139.33], [2422.05, 1143.92], [2425.17, 1146.94], [2429.61, 1142.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2925.86, 1495.97], [2916.45, 1495.21], [2915.93, 1501.62], [2925.34, 1502.39], [2925.86, 1495.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2163.04, 1292.39], [2154.73, 1282.18], [2147.62, 1287.97], [2156.71, 1299.15], [2160.14, 1296.36], [2159.35, 1295.39], [2163.04, 1292.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2591.91, 2135.44], [2597.26, 2132.11], [2592.17, 2123.83], [2586.77, 2127.12], [2591.91, 2135.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2191.27, 1396.7], [2184.35, 1392.15], [2177.49, 1402.57], [2184.39, 1407.13], [2191.27, 1396.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2919.42, 1532.25], [2920.14, 1517.23], [2919.19, 1517.18], [2919.3, 1514.75], [2910.93, 1514.34], [2910.63, 1520.57], [2909.4, 1520.51], [2909.11, 1526.53], [2909.97, 1526.57], [2909.8, 1530.24], [2913.58, 1530.43], [2913.51, 1531.96], [2919.42, 1532.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2265.67, 1364.37], [2261.88, 1361.79], [2258.06, 1367.4], [2261.84, 1369.97], [2265.67, 1364.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2247.32, 1255.69], [2242.34, 1250.63], [2237.33, 1255.55], [2242.32, 1260.62], [2247.32, 1255.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2892.3, 1593.51], [2892.91, 1583.93], [2882.23, 1583.25], [2881.98, 1587.12], [2876.64, 1586.78], [2876.27, 1592.49], [2892.3, 1593.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2225.13, 1249.3], [2220.34, 1245.61], [2215.94, 1251.34], [2220.72, 1255.01], [2225.13, 1249.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2646.41, 1471.25], [2639.52, 1471.23], [2639.5, 1478.55], [2646.4, 1478.55], [2646.41, 1471.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2477.55, 1423.25], [2474.34, 1421.0], [2470.27, 1426.79], [2473.48, 1429.05], [2477.55, 1423.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2446.88, 1173.98], [2441.25, 1168.44], [2433.08, 1176.75], [2439.49, 1183.05], [2444.61, 1177.83], [2443.84, 1177.08], [2446.88, 1173.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2477.62, 1190.38], [2474.39, 1192.94], [2474.43, 1192.99], [2472.69, 1194.42], [2476.27, 1198.77], [2481.2, 1194.71], [2477.62, 1190.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2360.34, 1467.42], [2353.33, 1462.22], [2344.46, 1474.16], [2351.47, 1479.36], [2360.34, 1467.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2465.09, 1587.35], [2458.64, 1582.85], [2453.64, 1590.04], [2460.1, 1594.52], [2465.09, 1587.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2643.85, 1435.83], [2643.87, 1435.27], [2648.47, 1435.45], [2648.99, 1421.65], [2636.82, 1421.19], [2636.62, 1426.52], [2638.92, 1426.6], [2638.84, 1428.58], [2637.1, 1428.51], [2636.94, 1432.95], [2638.54, 1433.01], [2638.44, 1435.63], [2643.85, 1435.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2218.36, 1436.2], [2215.24, 1433.92], [2211.79, 1438.63], [2214.91, 1440.92], [2218.36, 1436.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2387.49, 1486.86], [2381.1, 1482.51], [2373.44, 1493.76], [2379.84, 1498.11], [2387.49, 1486.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2554.31, 1287.48], [2551.04, 1282.84], [2547.18, 1285.56], [2550.45, 1290.2], [2554.31, 1287.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2448.49, 1322.83], [2442.47, 1316.29], [2433.89, 1324.21], [2439.9, 1330.74], [2448.49, 1322.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2357.76, 1079.39], [2351.87, 1085.95], [2360.8, 1093.98], [2366.7, 1087.43], [2357.76, 1079.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2715.3, 1567.74], [2724.95, 1568.08], [2725.64, 1548.7], [2715.99, 1548.36], [2715.3, 1567.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2341.15, 1525.42], [2335.5, 1521.52], [2333.27, 1524.77], [2338.85, 1528.61], [2334.07, 1535.55], [2346.03, 1543.78], [2350.03, 1537.96], [2348.72, 1537.07], [2350.32, 1534.76], [2339.74, 1527.47], [2341.15, 1525.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2453.7, 2014.77], [2450.08, 2008.42], [2444.88, 2011.38], [2444.44, 2010.6], [2436.66, 2015.03], [2440.71, 2022.16], [2453.7, 2014.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2486.67, 1221.47], [2484.7, 1218.52], [2476.16, 1224.24], [2480.57, 1230.82], [2487.78, 1225.98], [2485.35, 1222.35], [2486.67, 1221.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2289.0, 1465.87], [2281.38, 1461.28], [2274.47, 1472.78], [2282.1, 1477.35], [2289.0, 1465.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2650.68, 1384.97], [2644.23, 1382.99], [2641.23, 1390.95], [2647.49, 1392.8], [2650.68, 1384.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2884.22, 1563.11], [2878.72, 1562.81], [2878.43, 1567.88], [2883.94, 1568.18], [2884.22, 1563.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2759.6, 1770.67], [2752.07, 1768.4], [2751.49, 1770.32], [2750.62, 1770.05], [2747.98, 1778.78], [2756.39, 1781.33], [2759.6, 1770.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2495.32, 1332.89], [2492.19, 1329.01], [2487.09, 1333.11], [2490.21, 1336.99], [2495.32, 1332.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2863.05, 1732.69], [2856.14, 1731.29], [2854.76, 1738.1], [2861.68, 1739.5], [2863.05, 1732.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2432.81, 1305.32], [2429.93, 1302.29], [2428.81, 1303.34], [2425.93, 1300.31], [2419.05, 1306.86], [2420.1, 1307.96], [2418.17, 1309.8], [2422.89, 1314.75], [2432.81, 1305.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2526.49, 1338.24], [2522.82, 1333.18], [2520.18, 1335.08], [2518.67, 1332.99], [2512.2, 1337.69], [2512.67, 1338.32], [2508.96, 1341.01], [2513.68, 1347.53], [2526.49, 1338.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2136.37, 1549.97], [2140.53, 1545.83], [2135.13, 1540.38], [2130.88, 1544.67], [2136.37, 1549.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2743.12, 1695.47], [2743.63, 1693.09], [2746.77, 1693.77], [2749.64, 1680.51], [2739.98, 1678.4], [2737.02, 1692.03], [2738.82, 1692.41], [2738.38, 1694.45], [2743.12, 1695.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2202.97, 1439.06], [2211.34, 1425.36], [2204.81, 1421.28], [2195.92, 1434.57], [2199.67, 1436.94], [2202.97, 1439.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2383.41, 1230.69], [2378.94, 1226.36], [2376.58, 1228.81], [2381.05, 1233.13], [2383.41, 1230.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2544.66, 1367.16], [2540.0, 1360.41], [2529.7, 1367.53], [2534.36, 1374.28], [2544.66, 1367.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2471.96, 2043.76], [2468.1, 2037.24], [2456.2, 2044.31], [2460.07, 2050.88], [2471.96, 2043.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2766.58, 1796.95], [2752.96, 1793.93], [2752.61, 1795.54], [2750.62, 1795.09], [2749.84, 1798.6], [2752.12, 1799.11], [2751.57, 1801.59], [2764.91, 1804.54], [2766.58, 1796.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2700.96, 1773.7], [2694.11, 1772.26], [2692.61, 1779.42], [2699.45, 1780.86], [2700.96, 1773.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2614.99, 1837.75], [2617.06, 1830.21], [2620.49, 1831.15], [2622.96, 1822.16], [2613.56, 1819.6], [2609.03, 1836.13], [2614.99, 1837.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.089, "pop": 0, "jobs": 89}}, {"shape": {"outer": [[2384.87, 1474.25], [2382.17, 1472.5], [2378.97, 1477.45], [2381.67, 1479.19], [2384.87, 1474.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2432.15, 1380.52], [2427.68, 1375.78], [2423.62, 1379.61], [2428.1, 1384.35], [2432.15, 1380.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2720.86, 1632.57], [2712.05, 1630.86], [2709.26, 1645.22], [2718.07, 1646.93], [2720.86, 1632.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2514.6, 1425.82], [2505.32, 1418.72], [2503.28, 1421.38], [2501.78, 1420.25], [2498.25, 1424.86], [2509.02, 1433.12], [2514.6, 1425.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2663.33, 2104.34], [2660.73, 2100.0], [2658.66, 2101.24], [2657.02, 2098.51], [2650.48, 2102.45], [2654.72, 2109.51], [2663.33, 2104.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2440.0, 1311.67], [2437.72, 1309.16], [2436.16, 1310.56], [2434.1, 1308.29], [2427.9, 1313.9], [2428.39, 1314.43], [2426.06, 1316.54], [2432.02, 1323.13], [2440.77, 1315.22], [2438.66, 1312.88], [2440.0, 1311.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2419.06, 1441.9], [2413.22, 1437.58], [2405.46, 1448.09], [2411.29, 1452.41], [2419.06, 1441.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2162.57, 1317.47], [2159.18, 1312.8], [2154.28, 1316.36], [2157.68, 1321.03], [2162.57, 1317.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2785.34, 1400.76], [2776.91, 1400.3], [2776.29, 1411.3], [2781.52, 1411.59], [2781.36, 1414.42], [2784.57, 1414.6], [2785.34, 1400.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2809.24, 1471.64], [2798.98, 1471.29], [2798.64, 1480.98], [2808.91, 1481.32], [2809.24, 1471.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2891.19, 1597.32], [2878.05, 1594.23], [2876.12, 1602.5], [2889.25, 1605.59], [2891.19, 1597.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2103.74, 1444.57], [2097.55, 1438.43], [2087.69, 1448.4], [2093.88, 1454.53], [2103.74, 1444.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2828.95, 1717.62], [2829.54, 1714.08], [2830.5, 1714.24], [2832.5, 1702.22], [2826.56, 1701.23], [2826.44, 1701.96], [2823.2, 1701.42], [2822.93, 1703.05], [2821.94, 1702.89], [2820.36, 1712.37], [2823.09, 1712.83], [2822.47, 1716.53], [2828.95, 1717.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2526.16, 1410.15], [2529.81, 1407.66], [2531.1, 1409.56], [2535.11, 1406.82], [2526.83, 1394.72], [2519.18, 1399.95], [2526.16, 1410.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2396.42, 1565.9], [2393.33, 1564.01], [2392.54, 1565.3], [2390.28, 1563.91], [2386.42, 1570.17], [2391.78, 1573.47], [2396.42, 1565.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1961.49, 1544.87], [1956.27, 1540.03], [1948.35, 1548.58], [1953.56, 1553.41], [1961.49, 1544.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2427.46, 1400.18], [2428.75, 1398.29], [2426.04, 1396.46], [2424.63, 1398.54], [2422.99, 1397.43], [2416.87, 1406.45], [2424.0, 1411.3], [2430.26, 1402.08], [2427.46, 1400.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2678.74, 1564.54], [2678.98, 1560.9], [2682.62, 1561.13], [2683.48, 1547.49], [2674.71, 1546.95], [2673.85, 1560.71], [2675.95, 1560.84], [2675.73, 1564.36], [2678.74, 1564.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2582.49, 1456.96], [2580.87, 1453.71], [2573.29, 1457.49], [2574.91, 1460.74], [2582.49, 1456.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2757.65, 1429.8], [2748.98, 1429.54], [2748.66, 1440.44], [2750.71, 1440.51], [2750.65, 1442.58], [2757.27, 1442.77], [2757.65, 1429.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2508.94, 1230.52], [2506.61, 1227.64], [2502.38, 1231.06], [2504.71, 1233.94], [2508.94, 1230.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2698.37, 1402.09], [2692.59, 1401.74], [2692.22, 1407.82], [2698.0, 1408.16], [2698.37, 1402.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2468.3, 1551.29], [2460.67, 1545.94], [2454.96, 1554.08], [2462.59, 1559.43], [2468.3, 1551.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2580.31, 1303.36], [2577.0, 1298.77], [2572.12, 1302.3], [2575.44, 1306.88], [2580.31, 1303.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2603.05, 1914.98], [2602.45, 1902.62], [2594.18, 1903.03], [2594.79, 1915.39], [2603.05, 1914.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2329.13, 1391.84], [2322.59, 1387.47], [2320.64, 1390.38], [2327.19, 1394.75], [2329.13, 1391.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1959.64, 1427.91], [1952.58, 1420.46], [1945.97, 1426.72], [1954.48, 1435.71], [1958.97, 1431.47], [1957.51, 1429.92], [1959.64, 1427.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1908.67, 1513.3], [1916.24, 1504.76], [1910.38, 1499.57], [1901.36, 1509.75], [1904.88, 1512.88], [1906.34, 1511.23], [1908.67, 1513.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2681.85, 1609.37], [2676.33, 1608.0], [2674.68, 1614.69], [2680.19, 1616.06], [2681.85, 1609.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2856.44, 1756.2], [2849.85, 1755.17], [2847.93, 1767.32], [2857.54, 1768.84], [2859.22, 1758.18], [2856.2, 1757.71], [2856.44, 1756.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2472.14, 1550.92], [2476.52, 1545.29], [2480.94, 1548.73], [2482.27, 1547.02], [2486.07, 1549.97], [2489.34, 1545.76], [2486.05, 1543.19], [2484.26, 1545.5], [2479.41, 1541.75], [2478.12, 1543.4], [2466.5, 1534.37], [2460.61, 1541.96], [2472.14, 1550.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2796.95, 1469.29], [2786.69, 1469.09], [2786.45, 1481.39], [2796.71, 1481.59], [2796.95, 1469.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2466.46, 1267.28], [2461.82, 1260.74], [2455.26, 1265.39], [2459.9, 1271.94], [2466.46, 1267.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2836.4, 1789.19], [2830.08, 1788.16], [2828.95, 1795.15], [2835.28, 1796.16], [2836.4, 1789.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2423.74, 1478.86], [2418.34, 1475.01], [2413.96, 1481.13], [2419.35, 1484.99], [2423.74, 1478.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2264.76, 1470.32], [2261.93, 1468.31], [2258.48, 1473.17], [2261.31, 1475.17], [2264.76, 1470.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2583.97, 1914.1], [2584.32, 1912.74], [2588.36, 1913.8], [2590.8, 1904.38], [2588.06, 1903.67], [2588.68, 1901.27], [2584.86, 1900.28], [2584.24, 1902.68], [2580.71, 1901.76], [2578.1, 1911.86], [2581.85, 1912.84], [2581.67, 1913.5], [2583.97, 1914.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2229.6, 1303.87], [2223.53, 1296.57], [2222.88, 1297.11], [2220.94, 1294.76], [2216.92, 1298.11], [2218.82, 1300.39], [2217.88, 1301.18], [2223.98, 1308.54], [2229.6, 1303.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2915.24, 1487.96], [2915.4, 1484.41], [2918.15, 1484.53], [2918.6, 1474.54], [2909.51, 1474.13], [2908.9, 1487.68], [2915.24, 1487.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2646.17, 2080.53], [2642.7, 2074.69], [2634.82, 2079.38], [2637.86, 2084.47], [2637.4, 2084.75], [2639.43, 2088.17], [2645.18, 2084.76], [2643.58, 2082.07], [2646.17, 2080.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2819.21, 1809.19], [2813.55, 1807.8], [2812.16, 1813.48], [2817.82, 1814.87], [2819.21, 1809.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2687.05, 1665.27], [2677.99, 1663.17], [2676.22, 1670.83], [2685.28, 1672.93], [2687.05, 1665.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2524.74, 1268.86], [2519.74, 1261.96], [2511.34, 1268.07], [2516.34, 1274.96], [2524.74, 1268.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2383.39, 1313.32], [2380.62, 1311.01], [2377.47, 1314.81], [2380.24, 1317.11], [2383.39, 1313.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2669.78, 1386.52], [2665.69, 1386.37], [2665.44, 1393.52], [2669.53, 1393.66], [2669.78, 1386.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2434.91, 1224.7], [2431.92, 1220.45], [2426.82, 1224.03], [2426.11, 1223.02], [2422.99, 1225.22], [2424.4, 1227.23], [2421.3, 1229.41], [2422.18, 1230.64], [2421.61, 1231.04], [2422.41, 1232.19], [2419.73, 1234.06], [2423.64, 1239.62], [2435.46, 1231.32], [2432.17, 1226.62], [2434.91, 1224.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2683.96, 1622.74], [2676.29, 1621.14], [2672.97, 1636.99], [2680.64, 1638.6], [2683.96, 1622.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2449.32, 1510.61], [2443.57, 1506.74], [2438.84, 1513.75], [2450.75, 1521.8], [2453.54, 1517.65], [2451.96, 1516.57], [2453.12, 1514.85], [2448.54, 1511.77], [2449.32, 1510.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2458.04, 1324.58], [2453.91, 1320.67], [2442.35, 1332.87], [2448.79, 1338.98], [2459.19, 1328.02], [2456.86, 1325.81], [2458.04, 1324.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2708.85, 1754.94], [2702.76, 1753.51], [2702.42, 1754.96], [2701.07, 1754.65], [2698.94, 1763.76], [2706.39, 1765.5], [2708.85, 1754.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2735.89, 1717.35], [2731.9, 1716.57], [2730.69, 1722.77], [2734.68, 1723.55], [2735.89, 1717.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2129.52, 1319.9], [2133.82, 1316.43], [2134.76, 1317.58], [2136.49, 1316.18], [2126.54, 1303.93], [2120.5, 1308.8], [2129.52, 1319.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2025.38, 1449.12], [2027.87, 1446.54], [2028.99, 1447.62], [2032.91, 1443.55], [2021.05, 1432.12], [2016.38, 1436.97], [2021.21, 1441.62], [2018.66, 1444.28], [2022.97, 1448.44], [2023.79, 1447.58], [2025.38, 1449.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2386.39, 1352.86], [2383.02, 1350.69], [2379.05, 1356.9], [2382.41, 1359.06], [2386.39, 1352.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2660.25, 1722.08], [2663.07, 1707.51], [2652.27, 1704.99], [2650.75, 1711.5], [2654.09, 1712.42], [2652.44, 1720.19], [2660.25, 1722.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2332.57, 1436.0], [2327.13, 1432.24], [2323.53, 1437.45], [2328.97, 1441.21], [2332.57, 1436.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2508.79, 2133.35], [2502.13, 2127.2], [2497.52, 2132.19], [2504.18, 2138.35], [2508.79, 2133.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2490.04, 1339.39], [2485.31, 1335.04], [2481.43, 1339.26], [2486.17, 1343.61], [2490.04, 1339.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2377.93, 1550.45], [2382.42, 1543.9], [2378.5, 1540.88], [2387.19, 1528.45], [2382.24, 1524.85], [2368.71, 1544.26], [2377.93, 1550.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[2486.9, 1325.2], [2484.01, 1321.05], [2478.56, 1324.85], [2481.45, 1328.99], [2486.9, 1325.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2745.95, 1791.29], [2738.51, 1789.59], [2737.38, 1794.54], [2744.81, 1796.24], [2745.95, 1791.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2034.65, 1491.14], [2029.51, 1485.52], [2022.64, 1491.83], [2031.02, 1500.96], [2035.14, 1497.18], [2031.91, 1493.66], [2034.65, 1491.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2834.17, 1804.02], [2828.2, 1802.77], [2827.34, 1806.9], [2833.31, 1808.15], [2834.17, 1804.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2563.75, 1690.96], [2583.89, 1663.51], [2554.25, 1643.5], [2540.37, 1663.62], [2530.04, 1656.88], [2543.74, 1636.09], [2528.22, 1625.18], [2513.77, 1647.26], [2511.3, 1645.39], [2507.08, 1652.42], [2563.75, 1690.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1270}}, {"shape": {"outer": [[2286.93, 1432.89], [2294.31, 1422.18], [2286.26, 1416.64], [2279.15, 1426.97], [2279.9, 1427.48], [2278.52, 1429.49], [2282.93, 1432.52], [2284.04, 1430.9], [2286.93, 1432.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2509.62, 1376.29], [2503.97, 1370.73], [2494.85, 1379.96], [2500.5, 1385.54], [2509.62, 1376.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2656.14, 1439.82], [2656.34, 1436.11], [2659.51, 1436.28], [2659.96, 1428.17], [2652.64, 1427.76], [2651.97, 1439.59], [2656.14, 1439.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2505.19, 1346.38], [2499.89, 1337.54], [2494.76, 1340.61], [2500.06, 1349.45], [2505.19, 1346.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2866.63, 1649.31], [2859.93, 1647.73], [2859.02, 1651.59], [2865.72, 1653.17], [2866.63, 1649.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2488.81, 1554.61], [2482.48, 1550.16], [2477.45, 1557.33], [2479.62, 1558.84], [2477.73, 1561.54], [2479.22, 1562.59], [2478.02, 1564.3], [2482.29, 1567.31], [2488.0, 1559.15], [2486.4, 1558.03], [2488.81, 1554.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2513.52, 1575.32], [2510.11, 1573.09], [2503.95, 1582.48], [2509.54, 1586.15], [2514.23, 1578.99], [2512.06, 1577.56], [2513.52, 1575.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2183.3, 1430.75], [2187.42, 1433.65], [2190.97, 1428.57], [2186.78, 1425.61], [2183.3, 1430.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2796.56, 1498.7], [2790.96, 1498.62], [2790.83, 1507.07], [2796.43, 1507.15], [2796.56, 1498.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2653.8, 1559.73], [2653.74, 1558.17], [2654.73, 1558.13], [2654.34, 1546.43], [2645.16, 1546.73], [2645.57, 1558.93], [2647.7, 1558.86], [2647.8, 1561.65], [2650.17, 1561.57], [2650.12, 1559.85], [2653.8, 1559.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2767.77, 1659.75], [2771.15, 1645.27], [2773.84, 1645.9], [2775.41, 1639.1], [2769.5, 1637.73], [2768.2, 1643.29], [2762.58, 1641.99], [2758.93, 1657.69], [2767.77, 1659.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2800.68, 1619.38], [2784.04, 1619.37], [2784.04, 1622.79], [2785.46, 1622.8], [2785.45, 1627.38], [2790.0, 1627.38], [2790.0, 1628.83], [2800.68, 1628.84], [2800.68, 1619.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2381.28, 1082.32], [2389.66, 1073.26], [2382.19, 1066.33], [2373.75, 1075.44], [2376.22, 1077.73], [2376.26, 1077.67], [2381.28, 1082.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2289.66, 1194.78], [2283.47, 1188.84], [2278.14, 1194.39], [2284.33, 1200.33], [2289.66, 1194.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2843.98, 1765.55], [2844.54, 1761.85], [2845.83, 1762.05], [2846.59, 1757.11], [2845.73, 1756.98], [2846.44, 1752.27], [2838.71, 1751.09], [2838.39, 1753.21], [2837.32, 1753.05], [2836.31, 1759.6], [2836.81, 1759.68], [2836.1, 1764.34], [2843.98, 1765.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2180.98, 1301.52], [2177.76, 1297.47], [2173.13, 1301.14], [2176.35, 1305.2], [2180.98, 1301.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2504.94, 1501.32], [2495.44, 1494.25], [2490.16, 1501.37], [2499.66, 1508.42], [2504.94, 1501.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2082.77, 1442.85], [2083.97, 1441.61], [2084.98, 1442.61], [2088.05, 1439.45], [2087.65, 1439.06], [2091.52, 1435.09], [2091.14, 1434.72], [2093.94, 1431.85], [2091.72, 1429.69], [2093.01, 1428.38], [2091.08, 1426.51], [2090.01, 1427.6], [2088.24, 1425.88], [2084.93, 1429.28], [2083.69, 1428.07], [2081.06, 1430.78], [2082.21, 1431.91], [2078.73, 1435.49], [2082.06, 1438.74], [2080.35, 1440.49], [2082.77, 1442.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2633.53, 1374.29], [2628.26, 1367.26], [2623.23, 1371.04], [2628.5, 1378.07], [2633.53, 1374.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2675.01, 1607.71], [2668.78, 1606.04], [2666.96, 1612.83], [2673.19, 1614.5], [2675.01, 1607.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2270.38, 1468.16], [2271.68, 1466.22], [2273.88, 1467.69], [2278.46, 1460.89], [2276.52, 1459.58], [2277.84, 1457.64], [2274.26, 1455.22], [2272.97, 1457.15], [2271.75, 1456.33], [2265.84, 1465.11], [2270.38, 1468.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2315.98, 1483.77], [2309.13, 1479.3], [2308.19, 1480.75], [2306.89, 1479.9], [2300.66, 1489.45], [2305.8, 1492.8], [2304.57, 1494.71], [2307.56, 1496.66], [2315.98, 1483.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2726.87, 1587.51], [2734.09, 1587.84], [2734.48, 1579.06], [2727.27, 1578.73], [2726.87, 1587.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2588.62, 1343.32], [2583.29, 1336.37], [2570.19, 1346.51], [2575.68, 1353.52], [2588.62, 1343.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2249.35, 1239.23], [2244.66, 1235.2], [2240.09, 1240.52], [2244.77, 1244.55], [2249.35, 1239.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2179.93, 1388.98], [2173.1, 1383.97], [2168.33, 1390.47], [2175.15, 1395.48], [2179.93, 1388.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2847.85, 1500.72], [2841.01, 1500.31], [2840.54, 1508.2], [2847.37, 1508.61], [2847.85, 1500.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2124.2, 1515.88], [2121.56, 1511.15], [2117.69, 1513.31], [2120.33, 1518.04], [2124.2, 1515.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2763.01, 1699.12], [2758.74, 1697.97], [2757.11, 1704.04], [2761.37, 1705.19], [2763.01, 1699.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2710.22, 1735.14], [2713.65, 1721.3], [2709.14, 1720.18], [2708.71, 1721.9], [2705.58, 1721.12], [2702.58, 1733.25], [2710.22, 1735.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2405.73, 1119.71], [2400.07, 1114.98], [2395.91, 1119.95], [2401.57, 1124.68], [2405.73, 1119.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2807.46, 1513.96], [2798.26, 1513.92], [2798.18, 1528.68], [2807.39, 1528.72], [2807.46, 1513.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2035.04, 1531.55], [2031.68, 1527.96], [2029.1, 1530.39], [2032.46, 1533.98], [2035.04, 1531.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2563.39, 1904.83], [2554.65, 1902.52], [2552.2, 1911.85], [2555.21, 1912.64], [2554.63, 1914.84], [2560.35, 1916.35], [2563.39, 1904.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2612.71, 1520.38], [2612.68, 1517.9], [2615.16, 1517.87], [2615.11, 1513.47], [2612.68, 1513.5], [2612.66, 1511.59], [2597.91, 1511.76], [2597.94, 1514.22], [2599.72, 1514.21], [2599.77, 1518.17], [2602.64, 1518.14], [2602.65, 1519.14], [2607.99, 1519.08], [2608.01, 1520.43], [2612.71, 1520.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2492.4, 2068.25], [2489.13, 2063.56], [2487.54, 2064.67], [2486.58, 2063.3], [2478.87, 2068.69], [2483.09, 2074.74], [2492.4, 2068.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2732.84, 1629.84], [2728.04, 1628.63], [2727.56, 1630.67], [2725.67, 1630.27], [2724.43, 1636.08], [2723.88, 1635.93], [2721.22, 1647.93], [2729.85, 1650.09], [2733.57, 1632.56], [2732.28, 1632.18], [2732.84, 1629.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2351.77, 1531.48], [2353.73, 1528.34], [2355.23, 1529.26], [2356.34, 1527.47], [2355.15, 1526.74], [2357.51, 1522.94], [2347.8, 1516.91], [2342.37, 1525.64], [2351.77, 1531.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2428.11, 1130.52], [2420.9, 1124.86], [2417.54, 1129.15], [2421.75, 1132.44], [2420.96, 1133.44], [2423.96, 1135.8], [2428.11, 1130.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2710.61, 1581.56], [2717.11, 1581.82], [2717.38, 1574.3], [2710.95, 1574.04], [2710.61, 1581.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2751.82, 1483.17], [2751.99, 1478.24], [2754.52, 1478.28], [2754.7, 1468.69], [2746.83, 1468.55], [2746.67, 1477.09], [2746.52, 1477.08], [2746.31, 1482.98], [2751.82, 1483.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2375.6, 1350.6], [2370.45, 1347.5], [2367.19, 1352.95], [2372.34, 1356.04], [2375.6, 1350.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2512.3, 1622.51], [2504.42, 1617.22], [2498.83, 1625.55], [2506.7, 1630.84], [2512.3, 1622.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2763.16, 1565.46], [2763.29, 1563.35], [2764.83, 1563.44], [2765.52, 1552.48], [2764.1, 1552.39], [2764.17, 1551.33], [2758.97, 1551.01], [2758.89, 1552.49], [2757.27, 1552.39], [2756.47, 1565.04], [2763.16, 1565.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2581.02, 1976.4], [2580.71, 1969.05], [2571.64, 1969.43], [2571.95, 1976.78], [2581.02, 1976.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2204.73, 1370.95], [2196.65, 1365.98], [2193.39, 1371.27], [2200.63, 1375.74], [2199.57, 1377.47], [2204.7, 1380.62], [2207.84, 1375.52], [2203.54, 1372.88], [2204.73, 1370.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1925.03, 1467.36], [1917.76, 1457.63], [1912.51, 1461.54], [1915.88, 1466.05], [1914.53, 1467.06], [1914.87, 1467.51], [1912.63, 1469.19], [1916.19, 1473.96], [1925.03, 1467.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2706.6, 1700.95], [2698.02, 1698.77], [2696.21, 1705.88], [2704.78, 1708.06], [2706.6, 1700.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2445.3, 1301.29], [2441.24, 1297.41], [2436.96, 1301.9], [2441.03, 1305.77], [2445.3, 1301.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2486.1, 2062.16], [2483.33, 2057.38], [2481.18, 2058.63], [2480.6, 2057.65], [2472.5, 2062.36], [2476.27, 2068.86], [2485.15, 2063.71], [2484.72, 2062.96], [2486.1, 2062.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2459.57, 1399.15], [2462.69, 1395.62], [2463.32, 1396.16], [2466.75, 1392.28], [2465.93, 1391.55], [2468.18, 1388.99], [2464.88, 1386.07], [2466.81, 1383.89], [2463.65, 1381.1], [2452.91, 1393.27], [2459.57, 1399.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2695.01, 1613.09], [2689.32, 1611.49], [2687.57, 1617.78], [2693.26, 1619.37], [2695.01, 1613.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2687.05, 1749.34], [2680.48, 1747.32], [2677.08, 1758.39], [2683.65, 1760.41], [2687.05, 1749.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2203.47, 1304.11], [2199.61, 1299.39], [2195.26, 1302.94], [2199.12, 1307.68], [2203.47, 1304.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2251.8, 1443.15], [2244.93, 1438.79], [2240.09, 1446.39], [2246.97, 1450.76], [2251.8, 1443.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2131.39, 1521.24], [2127.45, 1517.68], [2123.63, 1521.91], [2127.56, 1525.47], [2131.39, 1521.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2494.52, 1423.84], [2490.38, 1420.96], [2486.16, 1427.0], [2490.3, 1429.88], [2494.52, 1423.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2889.17, 1607.71], [2879.01, 1605.6], [2877.15, 1614.48], [2887.31, 1616.61], [2889.17, 1607.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2618.66, 1350.1], [2615.6, 1346.5], [2609.33, 1351.82], [2613.26, 1356.45], [2615.24, 1354.76], [2614.38, 1353.74], [2618.66, 1350.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2542.05, 1478.19], [2544.34, 1474.53], [2541.16, 1472.56], [2539.04, 1475.95], [2537.43, 1474.95], [2531.71, 1484.14], [2538.83, 1488.57], [2544.4, 1479.65], [2542.05, 1478.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2857.85, 1629.03], [2851.12, 1629.02], [2851.1, 1636.3], [2857.83, 1636.32], [2857.85, 1629.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2791.87, 1658.21], [2782.62, 1656.31], [2780.89, 1664.74], [2790.14, 1666.64], [2791.87, 1658.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2876.46, 1554.27], [2867.4, 1553.88], [2866.8, 1567.59], [2875.86, 1567.99], [2876.46, 1554.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2383.9, 1340.96], [2378.99, 1335.74], [2374.3, 1340.16], [2379.21, 1345.37], [2383.9, 1340.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2488.15, 1403.57], [2482.45, 1398.48], [2475.21, 1406.58], [2480.92, 1411.68], [2488.15, 1403.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2335.68, 1147.77], [2331.28, 1143.5], [2328.6, 1146.25], [2333.01, 1150.53], [2335.68, 1147.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2469.32, 1494.25], [2457.06, 1485.63], [2452.38, 1492.3], [2464.64, 1500.91], [2469.32, 1494.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2404.79, 1498.05], [2402.27, 1496.25], [2400.97, 1498.09], [2399.39, 1496.96], [2391.96, 1507.38], [2398.0, 1511.69], [2405.59, 1501.06], [2403.64, 1499.66], [2404.79, 1498.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2884.1, 1576.57], [2878.37, 1574.55], [2876.71, 1579.25], [2882.44, 1581.27], [2884.1, 1576.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2579.91, 1956.86], [2579.81, 1954.59], [2583.36, 1954.43], [2582.86, 1944.16], [2574.69, 1944.56], [2575.2, 1955.05], [2576.25, 1954.99], [2576.34, 1957.04], [2579.91, 1956.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2371.56, 1408.6], [2364.79, 1404.0], [2357.21, 1415.16], [2363.99, 1419.76], [2371.56, 1408.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2791.29, 1435.75], [2786.79, 1435.46], [2786.36, 1442.28], [2790.86, 1442.56], [2791.29, 1435.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2165.94, 1403.46], [2167.81, 1401.08], [2169.1, 1402.09], [2172.28, 1398.01], [2170.49, 1396.62], [2170.71, 1396.35], [2163.38, 1390.63], [2158.9, 1396.38], [2162.25, 1398.99], [2161.48, 1399.98], [2165.94, 1403.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2594.72, 1431.43], [2589.43, 1423.72], [2578.36, 1431.3], [2583.66, 1439.02], [2594.72, 1431.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2775.84, 1614.27], [2769.0, 1613.86], [2768.8, 1617.11], [2769.77, 1617.17], [2769.42, 1623.14], [2775.29, 1623.48], [2775.84, 1614.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2448.19, 1405.5], [2444.3, 1402.9], [2440.94, 1407.94], [2444.83, 1410.53], [2448.19, 1405.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1998.79, 1480.15], [1988.95, 1471.64], [1983.38, 1478.07], [1993.22, 1486.59], [1998.79, 1480.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2201.06, 1286.55], [2198.47, 1283.21], [2193.04, 1287.43], [2195.77, 1290.97], [2194.35, 1292.08], [2196.41, 1294.73], [2200.46, 1291.58], [2198.24, 1288.73], [2201.06, 1286.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2164.85, 1404.82], [2153.48, 1397.48], [2148.66, 1404.95], [2160.03, 1412.29], [2164.85, 1404.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2370.43, 1329.87], [2372.1, 1327.32], [2373.7, 1328.35], [2375.7, 1325.28], [2374.07, 1324.22], [2374.92, 1322.91], [2364.63, 1316.22], [2360.12, 1323.17], [2370.43, 1329.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2550.58, 2084.94], [2548.34, 2081.13], [2546.13, 2082.43], [2545.0, 2080.49], [2534.91, 2086.39], [2539.33, 2093.92], [2549.12, 2088.18], [2548.08, 2086.4], [2550.58, 2084.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2701.18, 1439.98], [2701.16, 1427.36], [2696.4, 1427.36], [2696.41, 1428.75], [2693.78, 1428.74], [2693.78, 1431.62], [2692.13, 1431.62], [2692.15, 1439.99], [2701.18, 1439.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2365.58, 1354.8], [2359.88, 1351.06], [2356.24, 1356.59], [2361.94, 1360.33], [2365.58, 1354.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2190.91, 1268.01], [2183.83, 1260.32], [2182.55, 1261.49], [2180.92, 1259.71], [2175.72, 1264.49], [2186.98, 1276.73], [2191.91, 1272.21], [2189.36, 1269.44], [2190.91, 1268.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2767.52, 1419.78], [2759.93, 1419.4], [2759.58, 1426.29], [2767.18, 1426.66], [2767.52, 1419.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2889.46, 1531.74], [2889.53, 1528.52], [2890.88, 1528.55], [2891.17, 1515.93], [2882.13, 1515.71], [2881.76, 1531.55], [2889.46, 1531.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2871.51, 1492.23], [2861.15, 1491.67], [2860.7, 1500.12], [2871.05, 1500.68], [2871.51, 1492.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2478.57, 1434.38], [2471.64, 1429.43], [2463.65, 1440.6], [2470.58, 1445.55], [2478.57, 1434.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2475.27, 1611.47], [2472.05, 1609.31], [2470.91, 1610.98], [2468.85, 1609.58], [2463.59, 1617.39], [2470.08, 1622.02], [2475.41, 1614.12], [2474.08, 1613.23], [2475.27, 1611.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2673.23, 1746.68], [2664.35, 1745.52], [2662.97, 1756.05], [2671.85, 1757.21], [2673.23, 1746.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2416.56, 1263.3], [2417.64, 1262.11], [2418.7, 1263.07], [2422.96, 1258.33], [2414.72, 1250.9], [2409.37, 1256.83], [2416.56, 1263.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2443.78, 1363.24], [2438.8, 1358.88], [2437.15, 1360.77], [2436.14, 1359.88], [2428.32, 1368.81], [2434.31, 1374.05], [2443.78, 1363.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2633.95, 2060.35], [2632.76, 2053.34], [2623.3, 2054.94], [2624.49, 2061.96], [2633.95, 2060.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2493.27, 2117.14], [2494.39, 2115.97], [2487.95, 2109.48], [2484.21, 2113.15], [2485.21, 2114.12], [2483.02, 2116.38], [2490.48, 2123.56], [2495.03, 2118.83], [2493.27, 2117.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2411.73, 1107.47], [2416.72, 1101.42], [2409.69, 1095.63], [2403.78, 1102.79], [2409.46, 1107.48], [2410.38, 1106.37], [2411.73, 1107.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2674.53, 1725.23], [2674.75, 1723.62], [2677.68, 1724.02], [2678.44, 1718.3], [2676.41, 1718.03], [2676.89, 1714.46], [2669.7, 1713.49], [2669.46, 1715.31], [2668.34, 1715.15], [2667.68, 1720.02], [2668.67, 1720.14], [2668.39, 1722.23], [2670.75, 1722.54], [2670.46, 1724.68], [2674.53, 1725.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2713.08, 1670.05], [2706.7, 1668.43], [2703.76, 1679.93], [2710.13, 1681.55], [2713.08, 1670.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2836.46, 1629.36], [2824.62, 1628.98], [2824.34, 1637.78], [2840.51, 1638.29], [2840.68, 1632.99], [2836.35, 1632.85], [2836.46, 1629.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2860.89, 1684.63], [2861.34, 1682.55], [2863.83, 1683.08], [2865.55, 1675.2], [2864.17, 1674.9], [2864.93, 1671.41], [2856.48, 1669.57], [2853.93, 1681.3], [2855.26, 1681.58], [2854.88, 1683.32], [2860.89, 1684.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2568.4, 1439.22], [2564.62, 1433.92], [2557.98, 1438.65], [2561.75, 1443.95], [2568.4, 1439.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2581.93, 1497.99], [2576.32, 1496.25], [2571.88, 1510.59], [2579.84, 1513.05], [2583.74, 1500.45], [2581.39, 1499.73], [2581.93, 1497.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2850.05, 1801.02], [2850.52, 1799.05], [2853.17, 1799.69], [2854.19, 1795.43], [2851.69, 1794.84], [2852.19, 1792.78], [2844.69, 1790.97], [2842.69, 1799.25], [2850.05, 1801.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2335.91, 1406.76], [2337.08, 1405.02], [2339.42, 1406.6], [2340.59, 1404.88], [2342.84, 1406.41], [2345.58, 1402.35], [2343.85, 1401.19], [2345.19, 1399.22], [2337.49, 1394.02], [2331.08, 1403.49], [2335.91, 1406.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2745.13, 1766.85], [2738.43, 1765.09], [2735.65, 1775.66], [2742.36, 1777.42], [2745.13, 1766.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2417.44, 1360.03], [2426.35, 1349.64], [2420.44, 1344.56], [2411.52, 1354.95], [2413.66, 1356.79], [2412.8, 1357.77], [2415.41, 1360.01], [2416.26, 1359.02], [2417.44, 1360.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2582.9, 1856.18], [2583.18, 1854.8], [2587.44, 1855.7], [2588.39, 1851.11], [2584.74, 1850.35], [2585.58, 1846.32], [2580.47, 1845.27], [2579.82, 1848.4], [2575.31, 1847.46], [2574.79, 1849.93], [2572.4, 1849.44], [2571.48, 1853.81], [2582.9, 1856.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2428.0, 1491.5], [2422.13, 1487.76], [2418.4, 1493.61], [2424.27, 1497.35], [2428.0, 1491.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2458.61, 1158.04], [2460.76, 1155.7], [2462.87, 1157.63], [2470.61, 1149.23], [2469.12, 1147.86], [2470.38, 1146.5], [2465.19, 1141.73], [2454.03, 1153.82], [2458.61, 1158.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2524.15, 1536.96], [2519.91, 1533.88], [2516.62, 1538.42], [2520.86, 1541.49], [2524.15, 1536.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2711.34, 1404.62], [2705.3, 1404.1], [2704.71, 1410.92], [2710.75, 1411.44], [2711.34, 1404.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2258.26, 1330.41], [2246.58, 1322.71], [2242.34, 1329.13], [2254.02, 1336.84], [2258.26, 1330.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2224.26, 1423.91], [2217.19, 1419.61], [2212.69, 1426.98], [2219.76, 1431.28], [2224.26, 1423.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2782.04, 1636.29], [2776.91, 1634.99], [2775.85, 1639.16], [2780.97, 1640.46], [2782.04, 1636.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2583.64, 1412.39], [2577.68, 1404.51], [2570.62, 1409.86], [2578.26, 1419.94], [2582.95, 1416.38], [2581.29, 1414.18], [2583.64, 1412.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2838.05, 1510.25], [2838.37, 1503.54], [2831.89, 1503.25], [2831.62, 1509.97], [2838.05, 1510.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2936.25, 1427.0], [2926.61, 1426.67], [2926.26, 1437.13], [2927.36, 1437.17], [2927.08, 1445.49], [2935.62, 1445.79], [2936.25, 1427.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2478.78, 2050.98], [2474.8, 2044.3], [2467.34, 2048.73], [2471.31, 2055.42], [2478.78, 2050.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2795.15, 1654.91], [2797.04, 1644.52], [2786.05, 1642.52], [2785.62, 1644.9], [2783.8, 1644.56], [2783.04, 1648.76], [2784.79, 1649.08], [2784.1, 1652.9], [2795.15, 1654.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2691.15, 1474.51], [2697.54, 1474.69], [2699.64, 1474.73], [2699.83, 1464.66], [2697.81, 1464.63], [2697.84, 1462.98], [2691.37, 1462.86], [2691.15, 1474.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2428.04, 1158.55], [2421.73, 1153.36], [2414.72, 1161.87], [2421.03, 1167.07], [2428.04, 1158.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2190.65, 1308.34], [2186.94, 1303.53], [2182.85, 1306.69], [2186.56, 1311.5], [2190.65, 1308.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2361.72, 1402.93], [2354.09, 1397.72], [2345.49, 1410.31], [2353.13, 1415.52], [2361.72, 1402.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2873.26, 1530.7], [2873.35, 1528.63], [2876.66, 1528.78], [2877.23, 1515.61], [2872.24, 1515.39], [2872.31, 1513.54], [2868.52, 1513.38], [2867.79, 1530.47], [2873.26, 1530.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2526.64, 1214.26], [2523.49, 1210.41], [2521.65, 1211.92], [2520.22, 1210.17], [2513.91, 1215.35], [2519.2, 1221.81], [2525.45, 1216.69], [2524.73, 1215.82], [2526.64, 1214.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2838.33, 1678.38], [2841.42, 1662.86], [2835.35, 1661.66], [2834.85, 1664.16], [2833.1, 1663.81], [2830.51, 1676.83], [2838.33, 1678.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2615.1, 1319.43], [2610.82, 1313.97], [2608.69, 1315.63], [2608.33, 1315.17], [2595.72, 1325.06], [2602.24, 1333.37], [2611.78, 1325.89], [2609.9, 1323.5], [2615.1, 1319.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2432.09, 1114.66], [2429.87, 1112.72], [2428.68, 1114.09], [2426.2, 1111.93], [2420.54, 1118.46], [2427.63, 1124.62], [2433.02, 1118.41], [2430.63, 1116.33], [2432.09, 1114.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2688.11, 1711.33], [2683.06, 1710.39], [2680.41, 1724.68], [2682.5, 1725.07], [2682.12, 1727.11], [2687.54, 1728.12], [2689.82, 1715.86], [2687.35, 1715.41], [2688.11, 1711.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2402.93, 1132.05], [2396.89, 1126.76], [2390.87, 1133.63], [2396.91, 1138.92], [2402.93, 1132.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2088.23, 1549.17], [2080.96, 1542.04], [2075.56, 1547.54], [2084.27, 1556.09], [2087.91, 1552.39], [2086.47, 1550.96], [2088.23, 1549.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2425.6, 1512.54], [2418.77, 1507.46], [2413.89, 1514.02], [2414.39, 1514.4], [2410.0, 1520.29], [2417.08, 1525.56], [2422.96, 1517.64], [2422.21, 1517.09], [2425.6, 1512.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2548.93, 1551.23], [2545.29, 1548.7], [2540.52, 1555.59], [2544.17, 1558.11], [2548.93, 1551.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2612.86, 1725.5], [2623.73, 1709.08], [2628.84, 1713.01], [2627.98, 1693.33], [2605.53, 1678.11], [2587.04, 1705.63], [2602.13, 1716.13], [2601.32, 1717.47], [2612.86, 1725.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.888, "pop": 444, "jobs": 0}}, {"shape": {"outer": [[2500.75, 1445.36], [2491.19, 1438.66], [2486.66, 1445.12], [2496.2, 1451.83], [2500.75, 1445.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1960.76, 1510.83], [1954.44, 1505.49], [1947.29, 1513.93], [1953.61, 1519.29], [1960.76, 1510.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2633.88, 1900.07], [2633.45, 1895.88], [2627.95, 1896.45], [2628.38, 1900.64], [2633.88, 1900.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2646.97, 1958.39], [2655.1, 1958.08], [2654.6, 1946.41], [2654.02, 1946.41], [2653.88, 1942.84], [2653.07, 1942.86], [2653.03, 1941.59], [2646.51, 1941.76], [2646.97, 1958.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2282.52, 1349.45], [2276.59, 1345.38], [2269.16, 1356.19], [2275.09, 1360.27], [2282.52, 1349.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2576.58, 1308.27], [2579.07, 1311.4], [2583.5, 1307.68], [2580.92, 1304.62], [2576.58, 1308.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2495.53, 1410.03], [2492.3, 1407.09], [2490.58, 1408.98], [2487.96, 1406.61], [2482.42, 1412.69], [2489.1, 1418.77], [2494.89, 1412.42], [2494.05, 1411.66], [2495.53, 1410.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2656.77, 1567.66], [2656.11, 1560.73], [2650.8, 1561.24], [2651.46, 1568.16], [2656.77, 1567.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2780.08, 1733.79], [2770.79, 1732.04], [2767.91, 1747.36], [2777.19, 1749.11], [2780.08, 1733.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2243.46, 1437.07], [2235.83, 1432.05], [2234.23, 1434.49], [2233.76, 1434.18], [2231.42, 1437.74], [2232.28, 1438.31], [2230.37, 1441.22], [2237.6, 1445.97], [2243.46, 1437.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2327.97, 1376.7], [2317.89, 1370.43], [2314.15, 1376.46], [2315.15, 1377.07], [2313.65, 1379.48], [2323.53, 1385.63], [2327.58, 1379.13], [2326.77, 1378.63], [2327.97, 1376.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1901.48, 1489.3], [1895.35, 1483.94], [1893.38, 1486.2], [1892.69, 1485.58], [1889.4, 1489.34], [1889.3, 1489.25], [1886.24, 1492.73], [1893.17, 1498.81], [1901.48, 1489.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2053.45, 1541.59], [2058.99, 1535.68], [2050.4, 1527.64], [2048.96, 1529.18], [2045.01, 1525.49], [2041.08, 1529.69], [2043.9, 1532.32], [2042.26, 1534.08], [2047.45, 1538.92], [2048.92, 1537.36], [2053.45, 1541.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2801.43, 1567.65], [2794.7, 1567.3], [2794.53, 1570.56], [2801.26, 1570.91], [2801.43, 1567.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2660.83, 1482.72], [2653.18, 1482.68], [2653.12, 1491.04], [2660.78, 1491.09], [2660.83, 1482.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2682.57, 1508.58], [2674.71, 1508.7], [2674.89, 1520.4], [2677.4, 1520.36], [2677.43, 1522.43], [2682.8, 1522.35], [2682.57, 1508.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2330.82, 1447.12], [2327.52, 1444.65], [2325.84, 1446.87], [2320.74, 1443.04], [2313.87, 1452.15], [2322.26, 1458.48], [2330.82, 1447.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2118.12, 1531.61], [2122.33, 1527.07], [2119.82, 1524.75], [2120.98, 1523.5], [2113.94, 1516.96], [2112.94, 1518.03], [2112.1, 1517.24], [2109.17, 1520.39], [2108.35, 1519.63], [2106.14, 1522.01], [2114.98, 1530.21], [2115.73, 1529.4], [2118.12, 1531.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2692.5, 1523.49], [2692.66, 1520.08], [2697.42, 1520.31], [2697.93, 1509.93], [2688.35, 1509.45], [2687.66, 1523.24], [2692.5, 1523.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2751.39, 1417.03], [2746.64, 1416.97], [2746.56, 1424.35], [2751.31, 1424.41], [2751.39, 1417.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2641.41, 1941.23], [2634.49, 1941.33], [2634.73, 1957.4], [2643.03, 1957.28], [2642.87, 1946.95], [2641.49, 1946.96], [2641.41, 1941.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2521.05, 1976.92], [2515.15, 1966.6], [2507.54, 1970.96], [2514.49, 1983.09], [2520.46, 1979.68], [2519.41, 1977.85], [2521.05, 1976.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2702.44, 1567.42], [2698.17, 1567.25], [2697.9, 1573.9], [2702.17, 1574.07], [2702.44, 1567.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2634.51, 1419.31], [2630.45, 1412.88], [2628.97, 1413.81], [2627.48, 1411.45], [2629.74, 1410.02], [2626.53, 1404.94], [2618.02, 1410.32], [2623.53, 1419.04], [2625.0, 1418.12], [2628.24, 1423.27], [2634.51, 1419.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2701.54, 1691.6], [2697.82, 1690.74], [2696.4, 1696.88], [2700.11, 1697.73], [2701.54, 1691.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2380.16, 1434.31], [2381.17, 1432.68], [2382.29, 1433.38], [2385.98, 1427.38], [2386.69, 1427.81], [2389.3, 1423.58], [2381.38, 1418.72], [2379.43, 1421.88], [2379.81, 1422.12], [2374.47, 1430.81], [2380.16, 1434.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2840.45, 1602.89], [2840.43, 1601.65], [2844.34, 1601.61], [2844.33, 1600.69], [2850.36, 1600.61], [2850.27, 1594.04], [2845.32, 1594.1], [2845.31, 1593.54], [2829.17, 1593.75], [2829.2, 1595.93], [2826.67, 1595.97], [2826.76, 1603.07], [2840.45, 1602.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2221.85, 1375.43], [2216.38, 1371.93], [2215.58, 1373.18], [2213.72, 1371.99], [2206.52, 1383.25], [2213.86, 1387.95], [2221.85, 1375.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2463.22, 2031.83], [2459.36, 2024.67], [2449.55, 2029.96], [2453.4, 2037.12], [2463.22, 2031.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2849.47, 1681.95], [2849.93, 1679.64], [2851.26, 1679.92], [2853.51, 1668.77], [2845.24, 1667.1], [2844.66, 1669.97], [2843.71, 1669.77], [2842.05, 1677.98], [2844.12, 1678.4], [2843.64, 1680.77], [2849.47, 1681.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2424.36, 1107.76], [2418.8, 1103.36], [2413.14, 1110.52], [2418.7, 1114.92], [2424.36, 1107.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2835.09, 1752.14], [2831.47, 1751.47], [2831.33, 1752.23], [2827.05, 1751.45], [2825.1, 1762.07], [2834.22, 1763.75], [2836.21, 1752.94], [2834.98, 1752.72], [2835.09, 1752.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2158.08, 1362.83], [2162.81, 1358.8], [2161.82, 1357.65], [2162.6, 1357.0], [2156.97, 1350.37], [2151.08, 1355.37], [2156.63, 1361.9], [2157.02, 1361.57], [2158.08, 1362.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2475.67, 1206.11], [2473.37, 1202.56], [2470.27, 1204.57], [2468.61, 1202.0], [2462.83, 1205.76], [2467.5, 1212.96], [2473.77, 1208.89], [2473.06, 1207.8], [2475.67, 1206.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2749.23, 1744.66], [2749.5, 1742.64], [2751.04, 1742.84], [2752.69, 1730.53], [2747.16, 1729.78], [2746.85, 1732.03], [2743.23, 1731.55], [2741.93, 1741.3], [2746.56, 1741.91], [2746.24, 1744.27], [2749.23, 1744.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2405.43, 1517.74], [2407.13, 1515.34], [2409.4, 1516.95], [2416.59, 1506.8], [2408.93, 1501.38], [2404.51, 1507.63], [2405.26, 1508.16], [2400.8, 1514.45], [2405.43, 1517.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1924.74, 1501.3], [1922.63, 1499.16], [1918.32, 1503.41], [1920.42, 1505.55], [1924.74, 1501.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2408.25, 1480.46], [2404.74, 1478.0], [2401.22, 1483.04], [2404.73, 1485.49], [2408.25, 1480.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2852.35, 1473.59], [2842.91, 1473.21], [2842.37, 1486.6], [2851.82, 1486.98], [2852.35, 1473.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2418.14, 1268.84], [2413.3, 1264.27], [2409.38, 1268.45], [2414.34, 1273.11], [2418.14, 1268.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2572.84, 1965.48], [2572.61, 1961.67], [2566.69, 1962.01], [2566.92, 1965.84], [2572.84, 1965.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2309.64, 1194.98], [2305.58, 1191.18], [2300.91, 1196.17], [2304.97, 1199.96], [2309.64, 1194.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2500.11, 1231.81], [2495.41, 1225.19], [2483.28, 1233.82], [2486.45, 1238.27], [2485.52, 1238.93], [2487.06, 1241.1], [2500.11, 1231.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2581.04, 1319.52], [2577.39, 1315.02], [2572.9, 1318.63], [2576.55, 1323.13], [2581.04, 1319.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2138.73, 1501.99], [2132.58, 1495.37], [2130.68, 1497.14], [2129.62, 1496.0], [2127.87, 1497.62], [2129.21, 1499.06], [2127.3, 1500.83], [2133.18, 1507.15], [2138.73, 1501.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2693.01, 1631.51], [2693.46, 1628.55], [2689.06, 1627.88], [2688.62, 1630.74], [2686.19, 1630.37], [2684.51, 1641.5], [2694.03, 1642.93], [2695.69, 1631.92], [2693.01, 1631.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2596.51, 1954.93], [2596.19, 1945.41], [2589.81, 1945.62], [2589.85, 1946.82], [2588.06, 1946.88], [2588.34, 1955.2], [2596.51, 1954.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2694.71, 1767.0], [2690.79, 1765.96], [2689.18, 1772.02], [2693.11, 1773.05], [2694.71, 1767.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2837.37, 1554.4], [2827.92, 1554.11], [2827.6, 1564.2], [2837.06, 1564.5], [2837.37, 1554.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2083.31, 1507.88], [2089.1, 1502.11], [2084.37, 1497.52], [2084.86, 1496.98], [2076.57, 1489.17], [2075.59, 1490.17], [2074.8, 1489.41], [2071.63, 1492.81], [2072.31, 1493.5], [2070.68, 1495.29], [2083.31, 1507.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2386.55, 1439.74], [2388.99, 1436.21], [2393.46, 1439.28], [2398.58, 1431.85], [2395.08, 1429.43], [2395.96, 1428.15], [2391.49, 1425.08], [2383.06, 1437.33], [2386.55, 1439.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2284.19, 1379.67], [2277.37, 1375.1], [2276.39, 1376.59], [2273.43, 1374.61], [2271.36, 1377.7], [2274.1, 1379.54], [2272.43, 1382.04], [2279.45, 1386.74], [2283.38, 1380.88], [2284.19, 1379.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2252.12, 1395.06], [2245.43, 1390.19], [2243.16, 1393.32], [2242.79, 1393.06], [2240.63, 1396.03], [2241.13, 1396.39], [2238.82, 1399.56], [2240.43, 1400.72], [2238.77, 1403.01], [2243.71, 1406.61], [2252.12, 1395.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2920.02, 1445.41], [2920.25, 1440.33], [2923.17, 1440.46], [2923.5, 1433.58], [2918.77, 1433.37], [2918.91, 1430.53], [2911.43, 1430.18], [2910.74, 1444.98], [2920.02, 1445.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2508.55, 1265.62], [2516.29, 1259.46], [2511.9, 1253.95], [2503.29, 1260.81], [2505.23, 1263.25], [2506.11, 1262.56], [2508.55, 1265.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2613.81, 1958.73], [2609.7, 1958.69], [2609.64, 1965.53], [2613.74, 1965.57], [2613.81, 1958.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2180.28, 1313.01], [2176.49, 1308.05], [2170.36, 1312.73], [2174.15, 1317.7], [2180.28, 1313.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2148.79, 1306.75], [2152.57, 1303.78], [2153.69, 1305.21], [2156.3, 1303.17], [2145.26, 1289.11], [2138.87, 1294.12], [2148.79, 1306.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2110.32, 1554.66], [2105.44, 1550.51], [2101.79, 1554.8], [2106.67, 1558.95], [2110.32, 1554.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2610.58, 1507.26], [2610.59, 1506.09], [2613.27, 1506.11], [2613.32, 1501.4], [2609.57, 1501.36], [2609.57, 1500.23], [2607.42, 1500.2], [2607.41, 1501.6], [2603.71, 1501.56], [2603.67, 1505.53], [2604.95, 1505.54], [2604.93, 1507.19], [2610.58, 1507.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2315.51, 1159.07], [2311.7, 1155.66], [2307.89, 1159.94], [2311.69, 1163.34], [2315.51, 1159.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2594.0, 1292.95], [2588.09, 1285.72], [2577.31, 1294.53], [2583.23, 1301.76], [2594.0, 1292.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2648.64, 1886.94], [2648.23, 1879.65], [2646.64, 1879.74], [2646.57, 1878.58], [2637.08, 1879.11], [2637.55, 1887.58], [2648.64, 1886.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2858.36, 1627.94], [2858.15, 1621.63], [2850.86, 1621.88], [2851.07, 1628.18], [2858.36, 1627.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2381.72, 1221.97], [2377.66, 1218.25], [2374.79, 1221.38], [2378.85, 1225.1], [2381.72, 1221.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2456.9, 1579.63], [2450.16, 1575.21], [2442.95, 1586.21], [2449.7, 1590.63], [2456.9, 1579.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2578.08, 1860.89], [2570.98, 1859.04], [2569.39, 1865.12], [2576.5, 1866.97], [2578.08, 1860.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2857.52, 1504.02], [2853.69, 1503.8], [2853.18, 1512.84], [2857.0, 1513.05], [2857.52, 1504.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2479.2, 1297.28], [2484.1, 1293.31], [2486.02, 1295.69], [2488.09, 1294.01], [2482.27, 1286.8], [2475.28, 1292.44], [2479.2, 1297.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2703.68, 1546.7], [2701.41, 1546.64], [2701.03, 1562.31], [2710.03, 1562.53], [2710.4, 1547.44], [2703.67, 1547.27], [2703.68, 1546.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2651.33, 1401.93], [2644.21, 1401.4], [2643.64, 1409.04], [2650.77, 1409.57], [2651.33, 1401.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2777.3, 1510.54], [2770.77, 1510.2], [2770.03, 1524.57], [2776.55, 1524.91], [2777.3, 1510.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2547.84, 1295.3], [2545.55, 1291.94], [2543.37, 1293.42], [2541.08, 1290.04], [2533.23, 1295.37], [2534.7, 1297.53], [2534.06, 1297.96], [2537.17, 1302.54], [2547.84, 1295.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2797.94, 1588.98], [2797.99, 1587.82], [2799.6, 1587.88], [2799.65, 1586.46], [2800.94, 1586.51], [2801.14, 1581.61], [2798.77, 1581.52], [2798.85, 1579.47], [2784.23, 1578.85], [2784.18, 1580.3], [2780.05, 1580.13], [2779.87, 1584.64], [2781.73, 1584.73], [2781.59, 1587.91], [2783.75, 1587.99], [2783.73, 1588.39], [2797.94, 1588.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2155.46, 1363.39], [2148.76, 1354.66], [2142.17, 1359.73], [2148.86, 1368.46], [2155.46, 1363.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2829.2, 1524.87], [2832.81, 1525.03], [2832.82, 1525.85], [2835.38, 1525.91], [2835.41, 1525.15], [2837.87, 1525.21], [2838.2, 1515.06], [2837.26, 1515.04], [2837.31, 1513.18], [2833.92, 1513.12], [2833.92, 1512.6], [2830.3, 1512.59], [2830.24, 1514.91], [2829.49, 1514.9], [2829.2, 1524.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2379.28, 1064.43], [2371.1, 1056.98], [2362.16, 1066.78], [2370.35, 1074.25], [2379.28, 1064.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2522.3, 1393.96], [2518.6, 1390.3], [2514.32, 1394.63], [2518.01, 1398.29], [2522.3, 1393.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2719.19, 1711.01], [2715.68, 1710.25], [2714.4, 1716.17], [2717.9, 1716.93], [2719.19, 1711.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2659.57, 1380.54], [2662.92, 1372.98], [2664.38, 1373.63], [2666.59, 1368.63], [2657.73, 1364.7], [2652.17, 1377.27], [2659.57, 1380.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2597.57, 1832.91], [2608.6, 1835.86], [2612.9, 1819.66], [2601.89, 1816.91], [2597.57, 1832.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.121, "pop": 0, "jobs": 121}}, {"shape": {"outer": [[2814.94, 1713.77], [2815.16, 1712.39], [2816.95, 1712.68], [2817.49, 1709.28], [2818.34, 1709.41], [2819.77, 1700.52], [2811.18, 1699.13], [2810.6, 1702.75], [2809.22, 1702.52], [2808.53, 1706.82], [2809.7, 1707.01], [2809.11, 1710.73], [2811.32, 1711.09], [2810.99, 1713.13], [2814.94, 1713.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2386.57, 1103.82], [2382.95, 1100.3], [2378.75, 1104.62], [2382.37, 1108.14], [2386.57, 1103.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2493.39, 1531.84], [2488.52, 1528.31], [2486.53, 1531.06], [2487.47, 1531.75], [2485.4, 1534.62], [2489.33, 1537.47], [2493.39, 1531.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2677.45, 1381.74], [2677.55, 1378.72], [2679.77, 1378.79], [2679.95, 1373.14], [2677.12, 1373.05], [2677.17, 1371.55], [2668.79, 1371.28], [2668.46, 1381.45], [2677.45, 1381.74]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2506.78, 1391.18], [2508.42, 1389.5], [2509.98, 1391.02], [2518.62, 1382.2], [2517.55, 1381.15], [2519.46, 1379.2], [2516.11, 1375.91], [2514.05, 1378.01], [2512.45, 1376.45], [2507.1, 1381.9], [2506.78, 1381.59], [2503.22, 1385.22], [2504.44, 1386.42], [2503.2, 1387.68], [2506.78, 1391.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2772.15, 1597.62], [2772.17, 1603.98], [2778.47, 1604.09], [2778.55, 1597.73], [2772.15, 1597.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2296.86, 1443.0], [2298.63, 1440.37], [2299.63, 1441.04], [2306.51, 1430.8], [2300.07, 1426.49], [2303.7, 1421.08], [2297.46, 1416.88], [2294.27, 1421.65], [2298.95, 1424.8], [2291.65, 1435.67], [2292.72, 1436.39], [2290.96, 1439.03], [2296.86, 1443.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2442.4, 1493.29], [2437.45, 1489.53], [2433.28, 1494.99], [2438.24, 1498.77], [2442.4, 1493.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2759.05, 1638.85], [2753.34, 1637.87], [2750.32, 1655.35], [2757.91, 1656.66], [2759.92, 1645.02], [2758.04, 1644.7], [2759.05, 1638.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2467.4, 1429.85], [2459.97, 1425.0], [2455.76, 1431.47], [2463.18, 1436.31], [2467.4, 1429.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2409.47, 1295.46], [2411.1, 1293.24], [2411.93, 1293.85], [2416.32, 1287.85], [2415.65, 1287.36], [2418.35, 1283.67], [2414.8, 1281.06], [2413.22, 1283.22], [2411.46, 1281.93], [2409.81, 1284.19], [2408.96, 1283.57], [2403.48, 1291.06], [2409.47, 1295.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2270.69, 1216.62], [2265.61, 1211.78], [2260.94, 1216.71], [2266.01, 1221.53], [2270.69, 1216.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2491.24, 1521.12], [2483.44, 1515.29], [2480.28, 1519.11], [2481.13, 1519.75], [2478.9, 1522.73], [2486.05, 1528.07], [2491.24, 1521.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2575.73, 1904.26], [2567.3, 1902.03], [2564.93, 1910.97], [2571.6, 1912.72], [2571.15, 1914.41], [2574.91, 1915.41], [2576.73, 1908.52], [2574.74, 1907.99], [2575.73, 1904.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2666.49, 1678.47], [2656.54, 1675.94], [2655.14, 1681.45], [2656.24, 1681.73], [2655.37, 1685.16], [2664.22, 1687.42], [2666.49, 1678.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2687.52, 1434.1], [2687.67, 1430.24], [2680.81, 1429.9], [2680.38, 1438.47], [2687.28, 1438.81], [2687.52, 1434.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2853.34, 1739.33], [2847.14, 1738.05], [2845.88, 1744.16], [2852.08, 1745.45], [2853.34, 1739.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2937.06, 1485.42], [2930.87, 1484.4], [2929.9, 1490.34], [2936.08, 1491.35], [2937.06, 1485.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2845.05, 1580.51], [2827.55, 1579.62], [2827.22, 1586.06], [2832.0, 1586.3], [2831.81, 1590.16], [2844.52, 1590.8], [2845.05, 1580.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2503.7, 1309.07], [2498.94, 1302.53], [2488.86, 1309.83], [2493.62, 1316.39], [2503.7, 1309.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2290.75, 1357.9], [2284.51, 1353.48], [2278.98, 1361.31], [2285.23, 1365.71], [2290.75, 1357.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2691.59, 1567.06], [2683.76, 1566.67], [2683.13, 1579.4], [2690.96, 1579.79], [2691.59, 1567.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2881.93, 1643.12], [2871.76, 1641.02], [2869.99, 1649.52], [2882.51, 1652.12], [2883.94, 1645.26], [2881.59, 1644.77], [2881.93, 1643.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2621.48, 1943.68], [2621.89, 1958.55], [2630.02, 1958.32], [2629.73, 1943.45], [2621.48, 1943.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2336.98, 1497.93], [2329.98, 1493.07], [2321.52, 1505.24], [2324.84, 1507.55], [2324.39, 1508.2], [2328.07, 1510.76], [2336.98, 1497.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2905.24, 1434.88], [2905.61, 1430.27], [2900.64, 1429.88], [2900.3, 1434.26], [2895.2, 1433.86], [2894.52, 1442.54], [2898.69, 1442.86], [2898.55, 1444.63], [2908.32, 1445.41], [2909.12, 1435.19], [2905.24, 1434.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2741.01, 1515.81], [2731.32, 1515.24], [2730.66, 1526.47], [2740.35, 1527.05], [2741.01, 1515.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2654.07, 2094.29], [2649.09, 2086.79], [2642.54, 2091.15], [2647.52, 2098.64], [2654.07, 2094.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2509.57, 1506.56], [2505.74, 1503.87], [2501.74, 1509.59], [2505.59, 1512.27], [2509.57, 1506.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2254.48, 1349.43], [2262.79, 1337.21], [2258.25, 1334.13], [2254.94, 1338.99], [2254.4, 1338.63], [2249.4, 1345.97], [2254.48, 1349.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2573.34, 1475.34], [2564.66, 1470.88], [2562.02, 1475.99], [2570.7, 1480.45], [2573.34, 1475.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2500.79, 1614.97], [2494.09, 1610.29], [2488.42, 1618.42], [2495.11, 1623.08], [2500.79, 1614.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2958.47, 1520.69], [2940.88, 1517.02], [2939.29, 1524.65], [2943.22, 1525.47], [2942.81, 1527.46], [2956.46, 1530.32], [2958.47, 1520.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2590.74, 1355.33], [2588.34, 1352.08], [2586.24, 1353.64], [2584.15, 1350.81], [2577.09, 1356.03], [2581.57, 1362.09], [2590.74, 1355.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2866.09, 1475.02], [2857.03, 1474.34], [2856.29, 1484.21], [2865.35, 1484.88], [2866.09, 1475.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2255.05, 1381.72], [2250.73, 1378.98], [2247.43, 1384.19], [2251.75, 1386.92], [2255.05, 1381.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1911.38, 1492.35], [1906.65, 1488.34], [1903.47, 1492.09], [1902.26, 1491.07], [1894.36, 1500.4], [1901.25, 1506.24], [1908.95, 1497.15], [1908.0, 1496.35], [1911.38, 1492.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1951.45, 1436.75], [1945.46, 1430.06], [1943.92, 1431.43], [1942.14, 1429.45], [1937.35, 1433.75], [1946.04, 1443.44], [1949.1, 1440.69], [1948.19, 1439.68], [1951.45, 1436.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2687.58, 1380.26], [2687.73, 1377.97], [2685.19, 1377.79], [2685.08, 1379.32], [2681.42, 1379.08], [2680.32, 1395.35], [2690.97, 1396.06], [2692.02, 1380.56], [2687.58, 1380.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2755.9, 1496.68], [2749.42, 1496.4], [2749.14, 1503.14], [2755.62, 1503.41], [2755.9, 1496.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2450.03, 1415.01], [2443.0, 1410.44], [2441.26, 1413.13], [2440.53, 1412.65], [2438.14, 1416.33], [2438.76, 1416.73], [2435.32, 1422.02], [2442.47, 1426.66], [2450.03, 1415.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2598.87, 1345.54], [2594.76, 1339.73], [2587.24, 1345.07], [2591.35, 1350.87], [2598.87, 1345.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2404.25, 1280.73], [2408.45, 1276.35], [2404.56, 1272.62], [2400.66, 1276.69], [2399.75, 1275.81], [2392.56, 1283.33], [2398.33, 1288.86], [2405.22, 1281.65], [2404.25, 1280.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2547.37, 1595.17], [2542.11, 1591.72], [2540.4, 1594.34], [2538.42, 1593.04], [2531.01, 1604.36], [2538.26, 1609.1], [2547.37, 1595.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2563.69, 1490.99], [2559.73, 1488.36], [2550.99, 1501.52], [2557.97, 1506.16], [2565.53, 1494.78], [2562.5, 1492.78], [2563.69, 1490.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2497.81, 1191.15], [2502.05, 1187.57], [2500.14, 1185.31], [2501.61, 1184.08], [2493.76, 1174.79], [2485.15, 1182.04], [2490.73, 1188.66], [2492.2, 1187.42], [2494.55, 1190.21], [2495.99, 1189.0], [2497.81, 1191.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2599.78, 1989.73], [2599.3, 1982.65], [2596.48, 1982.84], [2596.29, 1980.17], [2581.25, 1980.54], [2581.46, 1989.99], [2599.78, 1989.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2849.31, 1802.67], [2839.95, 1800.76], [2838.46, 1808.02], [2851.02, 1810.61], [2852.37, 1804.01], [2849.16, 1803.36], [2849.31, 1802.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2399.9, 1472.67], [2396.37, 1470.31], [2392.39, 1476.27], [2395.92, 1478.63], [2399.9, 1472.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2900.13, 1504.62], [2894.0, 1504.32], [2893.72, 1510.4], [2899.84, 1510.7], [2900.13, 1504.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2652.86, 1666.09], [2661.08, 1668.3], [2660.75, 1669.53], [2664.57, 1670.56], [2664.9, 1669.34], [2666.02, 1669.64], [2668.73, 1659.51], [2663.68, 1658.17], [2663.79, 1657.79], [2660.79, 1656.98], [2660.71, 1657.29], [2655.59, 1655.93], [2652.86, 1666.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2906.71, 1496.29], [2902.05, 1496.03], [2901.68, 1502.35], [2906.34, 1502.61], [2906.71, 1496.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2081.93, 1510.61], [2071.7, 1501.04], [2066.33, 1506.78], [2076.57, 1516.35], [2081.93, 1510.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2491.92, 1358.66], [2486.13, 1353.31], [2478.22, 1361.86], [2484.01, 1367.22], [2491.92, 1358.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2752.39, 1526.89], [2752.54, 1511.71], [2744.93, 1511.65], [2744.9, 1514.69], [2743.53, 1514.69], [2743.41, 1526.8], [2752.39, 1526.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2720.3, 1757.73], [2711.91, 1755.54], [2708.51, 1768.52], [2716.9, 1770.72], [2720.3, 1757.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2359.51, 1512.4], [2356.72, 1510.51], [2355.93, 1511.67], [2353.68, 1510.14], [2349.84, 1515.83], [2356.72, 1520.48], [2360.57, 1514.78], [2358.74, 1513.54], [2359.51, 1512.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2879.59, 1503.57], [2874.65, 1503.01], [2873.9, 1509.77], [2878.82, 1510.32], [2879.59, 1503.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2527.9, 1255.56], [2524.8, 1251.14], [2519.94, 1254.56], [2523.02, 1258.97], [2527.9, 1255.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2392.18, 1204.51], [2386.99, 1199.43], [2384.47, 1202.0], [2389.66, 1207.08], [2392.18, 1204.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2356.95, 1341.56], [2346.64, 1334.83], [2340.89, 1343.66], [2351.53, 1350.6], [2354.38, 1346.23], [2354.04, 1346.01], [2356.95, 1341.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2804.46, 1565.89], [2804.78, 1552.51], [2803.32, 1552.48], [2803.36, 1550.88], [2796.99, 1550.73], [2796.94, 1553.18], [2794.58, 1553.13], [2794.28, 1565.66], [2804.46, 1565.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2526.89, 1380.28], [2523.27, 1376.55], [2518.82, 1380.88], [2522.45, 1384.6], [2526.89, 1380.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2577.27, 1421.41], [2570.71, 1411.97], [2568.16, 1413.74], [2566.84, 1411.83], [2562.43, 1414.89], [2570.61, 1426.67], [2575.16, 1423.5], [2574.86, 1423.08], [2577.27, 1421.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2687.1, 1496.95], [2681.81, 1496.82], [2681.63, 1503.87], [2686.93, 1504.0], [2687.1, 1496.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2367.53, 1475.73], [2360.57, 1470.96], [2355.62, 1478.18], [2358.94, 1480.46], [2357.33, 1482.81], [2360.96, 1485.3], [2367.53, 1475.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2402.01, 1381.7], [2395.6, 1377.47], [2394.34, 1379.37], [2392.43, 1378.12], [2390.25, 1381.42], [2391.39, 1382.17], [2388.48, 1386.58], [2389.59, 1387.31], [2388.36, 1389.18], [2394.45, 1393.19], [2402.01, 1381.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2211.84, 1362.71], [2204.26, 1357.41], [2199.39, 1364.38], [2206.98, 1369.68], [2211.84, 1362.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2298.44, 1178.63], [2293.71, 1174.68], [2291.22, 1177.68], [2295.94, 1181.62], [2298.44, 1178.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2543.06, 1465.56], [2537.12, 1461.82], [2532.53, 1469.12], [2538.48, 1472.86], [2543.06, 1465.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2289.08, 1178.37], [2274.18, 1164.44], [2267.53, 1171.55], [2282.43, 1185.48], [2289.08, 1178.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2536.41, 1289.53], [2531.72, 1282.96], [2526.19, 1286.9], [2528.31, 1289.88], [2525.76, 1291.7], [2528.32, 1295.3], [2536.41, 1289.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2554.56, 1324.88], [2563.27, 1318.2], [2561.4, 1315.76], [2564.57, 1313.31], [2561.99, 1309.95], [2559.49, 1311.86], [2558.19, 1310.19], [2549.45, 1316.89], [2550.5, 1318.26], [2549.21, 1319.25], [2550.76, 1321.27], [2549.47, 1322.25], [2550.22, 1323.22], [2552.14, 1321.74], [2554.56, 1324.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2202.79, 1327.61], [2195.12, 1317.77], [2187.99, 1323.33], [2195.67, 1333.17], [2202.79, 1327.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2132.2, 1532.95], [2127.37, 1528.1], [2121.61, 1533.8], [2126.44, 1538.67], [2132.2, 1532.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2650.21, 1896.49], [2650.0, 1892.91], [2648.21, 1893.01], [2647.97, 1888.71], [2638.56, 1889.25], [2639.02, 1897.14], [2650.21, 1896.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2668.47, 1546.99], [2658.61, 1546.61], [2658.13, 1559.08], [2667.99, 1559.47], [2668.47, 1546.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2419.61, 1395.21], [2413.91, 1391.24], [2406.95, 1401.23], [2412.64, 1405.2], [2419.61, 1395.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2016.97, 1518.79], [2015.54, 1517.45], [2017.01, 1515.87], [2008.16, 1507.61], [2003.31, 1512.8], [2010.91, 1519.9], [2012.0, 1518.74], [2014.67, 1521.23], [2016.97, 1518.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2804.9, 1499.42], [2797.84, 1499.16], [2797.69, 1503.55], [2804.74, 1503.81], [2804.9, 1499.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2380.36, 1308.07], [2374.51, 1302.89], [2370.24, 1307.71], [2376.08, 1312.88], [2380.36, 1308.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2836.38, 1618.07], [2836.39, 1615.25], [2828.51, 1615.23], [2828.5, 1616.81], [2825.47, 1616.81], [2825.46, 1621.72], [2828.13, 1621.74], [2828.13, 1623.71], [2837.31, 1623.72], [2837.32, 1618.07], [2836.38, 1618.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2145.51, 1311.07], [2141.51, 1306.11], [2143.07, 1304.85], [2136.75, 1297.03], [2129.46, 1302.91], [2135.82, 1310.79], [2136.8, 1310.0], [2140.75, 1314.9], [2145.51, 1311.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2262.19, 1225.17], [2257.97, 1221.62], [2253.49, 1226.95], [2257.71, 1230.5], [2262.19, 1225.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2610.42, 1398.76], [2617.3, 1393.7], [2616.0, 1391.94], [2618.74, 1389.93], [2615.5, 1385.53], [2606.29, 1392.32], [2608.08, 1394.76], [2606.18, 1396.17], [2607.26, 1397.63], [2608.77, 1396.52], [2610.42, 1398.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2739.49, 1548.26], [2732.01, 1547.92], [2731.24, 1564.51], [2738.72, 1564.86], [2739.49, 1548.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2307.89, 1167.91], [2303.49, 1164.12], [2299.49, 1168.75], [2303.89, 1172.54], [2307.89, 1167.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1973.04, 1528.93], [1967.82, 1524.62], [1963.73, 1529.57], [1968.96, 1533.87], [1973.04, 1528.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2883.75, 1630.51], [2883.98, 1629.33], [2886.86, 1629.9], [2888.21, 1623.17], [2872.11, 1619.94], [2870.52, 1627.86], [2883.75, 1630.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2469.67, 2090.87], [2462.39, 2083.97], [2457.9, 2088.71], [2465.18, 2095.61], [2469.67, 2090.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2529.23, 1464.12], [2522.26, 1459.27], [2517.34, 1466.34], [2524.31, 1471.19], [2529.23, 1464.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2808.87, 1434.14], [2808.89, 1432.15], [2811.61, 1432.18], [2811.65, 1426.35], [2808.97, 1426.34], [2808.97, 1424.9], [2796.63, 1424.83], [2796.57, 1434.07], [2808.87, 1434.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2517.32, 2031.39], [2514.27, 2026.78], [2512.82, 2027.73], [2511.04, 2025.05], [2503.02, 2030.33], [2507.85, 2037.65], [2517.32, 2031.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2903.29, 1532.48], [2903.38, 1529.45], [2904.38, 1529.47], [2904.81, 1514.42], [2897.23, 1514.21], [2897.18, 1515.97], [2895.51, 1515.92], [2895.13, 1529.22], [2896.11, 1529.24], [2896.02, 1532.28], [2903.29, 1532.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2325.66, 1490.48], [2319.77, 1486.45], [2318.43, 1488.43], [2317.29, 1487.66], [2312.38, 1494.86], [2319.41, 1499.65], [2325.66, 1490.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2870.3, 1443.5], [2870.46, 1441.31], [2873.28, 1441.53], [2873.81, 1434.49], [2870.25, 1434.22], [2870.57, 1429.96], [2865.49, 1429.58], [2865.26, 1432.62], [2862.61, 1432.42], [2861.81, 1442.85], [2870.3, 1443.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2399.04, 1559.74], [2408.36, 1545.76], [2400.73, 1540.66], [2390.14, 1556.53], [2395.08, 1559.83], [2396.34, 1557.94], [2399.04, 1559.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2723.1, 1615.99], [2712.69, 1613.99], [2711.09, 1622.32], [2721.49, 1624.32], [2723.1, 1615.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2391.72, 1451.22], [2397.75, 1442.9], [2394.49, 1440.53], [2392.15, 1443.75], [2389.11, 1441.55], [2386.24, 1445.49], [2389.37, 1447.76], [2388.53, 1448.91], [2391.72, 1451.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2807.43, 1414.33], [2807.51, 1411.64], [2798.37, 1411.36], [2798.31, 1413.29], [2796.88, 1413.24], [2796.64, 1421.19], [2809.35, 1421.58], [2809.58, 1414.4], [2807.43, 1414.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2517.67, 1476.87], [2524.62, 1481.71], [2528.76, 1475.7], [2521.91, 1470.94], [2517.67, 1476.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2421.37, 1147.96], [2417.75, 1144.61], [2416.51, 1145.95], [2413.78, 1143.42], [2407.19, 1150.55], [2413.54, 1156.41], [2421.37, 1147.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2491.01, 1514.78], [2495.32, 1508.57], [2488.59, 1503.91], [2483.37, 1511.46], [2485.21, 1512.74], [2486.14, 1511.4], [2491.01, 1514.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2214.73, 1288.89], [2210.22, 1282.76], [2208.12, 1284.3], [2207.42, 1283.35], [2202.69, 1286.82], [2203.77, 1288.3], [2202.33, 1289.35], [2206.44, 1294.96], [2214.73, 1288.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2623.33, 1338.05], [2621.91, 1336.31], [2624.65, 1334.08], [2621.11, 1329.73], [2619.91, 1330.71], [2616.66, 1326.72], [2612.33, 1330.25], [2611.05, 1328.68], [2605.43, 1333.26], [2610.04, 1338.92], [2612.74, 1336.73], [2614.43, 1338.81], [2615.44, 1337.98], [2618.62, 1341.89], [2623.33, 1338.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2339.57, 1512.08], [2342.16, 1508.15], [2343.81, 1509.23], [2346.17, 1505.64], [2342.59, 1503.29], [2343.13, 1502.46], [2339.12, 1499.83], [2335.47, 1505.4], [2336.42, 1506.03], [2334.59, 1508.81], [2339.57, 1512.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1884.26, 1482.34], [1880.77, 1476.85], [1878.25, 1478.46], [1876.07, 1475.04], [1869.64, 1479.14], [1875.99, 1489.12], [1882.46, 1485.01], [1881.77, 1483.92], [1884.26, 1482.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2870.59, 1579.65], [2870.37, 1572.93], [2864.06, 1573.14], [2864.28, 1579.86], [2870.59, 1579.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2744.56, 1783.44], [2739.04, 1781.83], [2737.42, 1787.38], [2742.93, 1788.99], [2744.56, 1783.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2192.97, 1335.96], [2183.89, 1324.57], [2180.03, 1327.64], [2181.45, 1329.42], [2179.16, 1331.25], [2186.82, 1340.86], [2192.97, 1335.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2594.52, 1484.24], [2594.4, 1480.39], [2588.41, 1480.59], [2588.55, 1484.44], [2594.52, 1484.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2406.22, 1093.89], [2398.87, 1087.42], [2393.39, 1093.64], [2400.74, 1100.11], [2406.22, 1093.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2440.47, 1408.2], [2433.75, 1403.59], [2427.18, 1413.15], [2433.91, 1417.77], [2440.47, 1408.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2788.96, 1490.58], [2784.29, 1490.48], [2784.16, 1496.31], [2788.83, 1496.41], [2788.96, 1490.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2546.43, 1265.66], [2542.23, 1260.39], [2536.88, 1264.65], [2541.07, 1269.92], [2546.43, 1265.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2125.88, 1551.09], [2128.15, 1548.85], [2128.62, 1549.3], [2130.55, 1547.28], [2125.99, 1542.78], [2121.81, 1547.01], [2125.88, 1551.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2445.96, 1571.77], [2441.89, 1568.95], [2440.25, 1571.33], [2439.18, 1570.59], [2431.76, 1581.33], [2435.39, 1583.84], [2434.72, 1584.79], [2438.1, 1587.13], [2446.64, 1574.8], [2444.76, 1573.49], [2445.96, 1571.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2797.28, 1631.53], [2784.38, 1628.92], [2782.46, 1638.44], [2797.82, 1641.54], [2799.25, 1634.47], [2796.79, 1633.97], [2797.28, 1631.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2635.52, 2076.86], [2640.51, 2073.81], [2639.32, 2071.86], [2640.82, 2070.94], [2636.41, 2063.74], [2628.57, 2068.54], [2632.71, 2075.31], [2634.06, 2074.49], [2635.52, 2076.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2579.7, 1480.29], [2576.57, 1479.27], [2574.56, 1485.4], [2577.7, 1486.43], [2579.7, 1480.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2593.77, 1381.91], [2596.1, 1380.0], [2596.61, 1380.62], [2603.39, 1375.06], [2602.98, 1374.55], [2606.27, 1371.87], [2602.41, 1367.17], [2600.18, 1369.0], [2598.89, 1367.42], [2591.18, 1373.73], [2591.98, 1374.7], [2589.52, 1376.72], [2593.77, 1381.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2795.69, 1407.78], [2788.32, 1407.16], [2787.74, 1414.06], [2795.1, 1414.69], [2795.69, 1407.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2673.43, 1441.33], [2674.23, 1428.51], [2667.06, 1428.06], [2666.94, 1430.07], [2665.81, 1430.01], [2665.13, 1440.81], [2673.43, 1441.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2597.74, 1465.36], [2601.22, 1463.86], [2601.75, 1465.1], [2612.11, 1460.67], [2611.7, 1459.68], [2613.84, 1458.76], [2610.91, 1451.93], [2597.95, 1457.48], [2598.28, 1458.24], [2595.25, 1459.54], [2597.74, 1465.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2581.62, 1320.13], [2576.89, 1323.82], [2581.25, 1329.37], [2585.98, 1325.69], [2581.62, 1320.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2174.86, 1285.27], [2166.48, 1274.11], [2165.66, 1274.72], [2164.66, 1273.39], [2158.69, 1277.87], [2168.06, 1290.36], [2174.86, 1285.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2768.39, 1468.71], [2758.9, 1468.41], [2758.6, 1477.91], [2761.4, 1478.0], [2761.3, 1480.98], [2767.99, 1481.19], [2768.39, 1468.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2705.31, 1630.79], [2697.91, 1629.33], [2695.38, 1642.04], [2702.78, 1643.51], [2705.31, 1630.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2520.87, 1971.59], [2537.06, 1962.15], [2532.93, 1955.07], [2522.75, 1961.0], [2524.82, 1964.55], [2523.26, 1965.46], [2521.98, 1963.25], [2517.52, 1965.85], [2520.87, 1971.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2622.26, 1845.77], [2622.89, 1859.48], [2634.31, 1858.9], [2634.27, 1857.62], [2636.12, 1857.53], [2636.15, 1858.13], [2648.17, 1857.45], [2648.08, 1855.57], [2648.69, 1855.54], [2648.45, 1850.93], [2647.83, 1850.92], [2647.51, 1844.86], [2649.33, 1844.78], [2649.22, 1841.47], [2647.9, 1841.53], [2647.76, 1837.45], [2647.14, 1837.51], [2646.92, 1834.42], [2627.49, 1830.11], [2628.33, 1845.43], [2622.26, 1845.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.474, "pop": 237, "jobs": 0}}, {"shape": {"outer": [[2775.07, 1489.4], [2770.85, 1489.17], [2770.5, 1495.66], [2774.71, 1495.88], [2775.07, 1489.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2579.99, 1871.42], [2569.2, 1869.29], [2567.99, 1875.43], [2569.84, 1875.8], [2569.44, 1877.87], [2574.8, 1878.92], [2574.46, 1880.67], [2579.36, 1881.63], [2579.9, 1878.86], [2578.57, 1878.6], [2579.99, 1871.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2655.92, 1520.79], [2656.21, 1513.58], [2656.81, 1513.61], [2657.09, 1506.66], [2655.5, 1506.6], [2655.6, 1504.2], [2648.31, 1503.91], [2647.73, 1518.36], [2650.73, 1518.48], [2650.65, 1520.58], [2655.92, 1520.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2493.46, 1919.54], [2490.41, 1913.26], [2487.24, 1914.8], [2486.11, 1912.47], [2483.34, 1913.81], [2487.53, 1922.43], [2493.46, 1919.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2530.43, 1348.02], [2525.9, 1341.85], [2515.34, 1349.58], [2519.86, 1355.76], [2530.43, 1348.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2801.4, 1601.81], [2802.13, 1591.83], [2787.86, 1590.81], [2787.72, 1592.68], [2782.59, 1592.31], [2782.01, 1600.42], [2801.4, 1601.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2662.07, 2055.65], [2661.17, 2049.24], [2646.9, 2051.22], [2647.8, 2057.64], [2662.07, 2055.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2556.76, 1253.42], [2548.54, 1243.21], [2541.41, 1248.94], [2546.5, 1255.27], [2544.68, 1256.74], [2547.8, 1260.62], [2556.76, 1253.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2645.96, 1864.25], [2636.04, 1864.6], [2636.11, 1866.65], [2634.41, 1866.7], [2634.62, 1872.77], [2636.66, 1872.69], [2636.74, 1874.66], [2646.67, 1874.31], [2646.65, 1873.7], [2648.01, 1873.65], [2647.71, 1865.34], [2646.01, 1865.4], [2645.96, 1864.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2437.03, 1162.93], [2432.39, 1158.97], [2424.82, 1167.84], [2431.12, 1173.22], [2436.98, 1166.37], [2435.31, 1164.94], [2437.03, 1162.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2476.43, 1339.59], [2470.02, 1334.04], [2458.98, 1346.79], [2465.39, 1352.35], [2476.43, 1339.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2635.03, 2122.18], [2631.22, 2116.3], [2629.67, 2117.31], [2629.13, 2116.48], [2626.64, 2118.1], [2625.78, 2116.76], [2622.55, 2118.84], [2623.11, 2119.7], [2621.56, 2120.71], [2626.21, 2127.89], [2635.03, 2122.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2137.08, 1531.65], [2143.13, 1537.89], [2155.48, 1525.92], [2149.43, 1519.67], [2137.08, 1531.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2601.17, 1301.84], [2595.44, 1294.76], [2584.98, 1303.22], [2590.72, 1310.31], [2601.17, 1301.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2631.83, 1362.87], [2635.44, 1359.88], [2635.56, 1360.03], [2639.93, 1356.4], [2640.14, 1356.65], [2643.91, 1353.53], [2639.2, 1347.86], [2636.43, 1350.16], [2635.2, 1348.69], [2631.13, 1352.07], [2632.18, 1353.33], [2627.28, 1357.39], [2631.83, 1362.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2276.86, 1390.89], [2267.16, 1384.96], [2263.7, 1390.61], [2264.83, 1391.3], [2263.99, 1392.68], [2274.62, 1399.17], [2278.28, 1393.18], [2276.22, 1391.92], [2276.86, 1390.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2618.68, 1869.27], [2624.61, 1869.06], [2624.42, 1863.61], [2618.48, 1863.79], [2618.68, 1869.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2579.37, 1451.31], [2573.33, 1440.2], [2567.25, 1443.51], [2573.28, 1454.62], [2579.37, 1451.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2711.13, 1587.07], [2715.42, 1587.2], [2715.46, 1583.74], [2711.14, 1583.58], [2711.13, 1587.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2771.43, 1772.94], [2763.24, 1771.13], [2760.85, 1781.99], [2763.18, 1782.5], [2762.55, 1785.34], [2768.42, 1786.64], [2771.43, 1772.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2421.17, 1244.38], [2417.28, 1238.94], [2411.99, 1242.74], [2415.88, 1248.16], [2421.17, 1244.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2221.34, 1360.69], [2222.49, 1358.84], [2224.63, 1360.17], [2226.05, 1357.87], [2224.29, 1356.79], [2226.08, 1353.89], [2217.19, 1348.38], [2215.25, 1351.52], [2213.83, 1350.63], [2211.42, 1354.55], [2221.34, 1360.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2792.53, 1511.11], [2783.47, 1510.97], [2783.21, 1527.46], [2792.26, 1527.59], [2792.53, 1511.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2551.17, 1375.18], [2549.04, 1372.22], [2547.3, 1373.48], [2546.47, 1372.31], [2538.89, 1377.78], [2543.45, 1384.1], [2550.67, 1378.89], [2549.09, 1376.69], [2551.17, 1375.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2840.57, 1722.94], [2841.2, 1719.13], [2843.63, 1719.53], [2846.04, 1704.8], [2836.98, 1703.32], [2834.71, 1717.19], [2836.41, 1717.47], [2835.65, 1722.13], [2840.57, 1722.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2667.44, 1623.12], [2668.01, 1620.36], [2664.04, 1619.56], [2663.44, 1622.56], [2661.23, 1622.11], [2659.05, 1632.84], [2667.63, 1634.59], [2669.87, 1623.62], [2667.44, 1623.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2437.69, 1455.41], [2430.62, 1450.4], [2422.48, 1461.91], [2429.87, 1467.14], [2436.49, 1457.77], [2436.18, 1457.56], [2437.69, 1455.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2352.37, 1439.94], [2346.58, 1435.93], [2341.46, 1443.32], [2347.4, 1447.43], [2347.02, 1447.99], [2352.63, 1451.88], [2356.7, 1446.01], [2350.93, 1442.01], [2352.37, 1439.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2371.26, 1363.37], [2372.87, 1361.1], [2369.94, 1359.02], [2368.27, 1361.39], [2367.12, 1360.58], [2363.12, 1366.2], [2368.59, 1370.08], [2372.65, 1364.36], [2371.26, 1363.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2261.47, 1448.36], [2255.12, 1444.02], [2249.38, 1452.43], [2255.74, 1456.77], [2261.47, 1448.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2487.95, 1433.16], [2482.83, 1429.48], [2478.61, 1435.36], [2483.73, 1439.04], [2487.95, 1433.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2427.72, 1559.47], [2421.87, 1555.7], [2420.63, 1557.62], [2419.83, 1557.1], [2412.72, 1568.14], [2420.58, 1573.21], [2428.18, 1561.41], [2426.97, 1560.62], [2427.72, 1559.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2835.94, 1649.67], [2824.23, 1647.69], [2823.16, 1653.96], [2834.88, 1655.95], [2835.94, 1649.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2482.05, 1285.3], [2475.44, 1276.98], [2472.88, 1279.02], [2474.49, 1281.04], [2469.44, 1285.06], [2474.44, 1291.34], [2482.05, 1285.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2361.05, 1455.94], [2357.58, 1453.15], [2353.65, 1458.04], [2357.11, 1460.83], [2361.05, 1455.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2855.32, 1442.58], [2855.41, 1435.68], [2858.45, 1435.72], [2858.56, 1428.03], [2848.7, 1427.9], [2848.67, 1430.59], [2846.91, 1430.58], [2846.82, 1437.87], [2848.41, 1437.89], [2848.35, 1442.5], [2855.32, 1442.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2612.56, 1498.89], [2612.29, 1490.78], [2602.79, 1491.09], [2603.06, 1499.21], [2612.56, 1498.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2625.44, 1362.92], [2621.86, 1358.24], [2616.27, 1362.53], [2619.85, 1367.21], [2625.44, 1362.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2562.18, 1473.41], [2556.76, 1470.59], [2553.76, 1476.35], [2559.18, 1479.18], [2562.18, 1473.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2473.85, 1591.82], [2468.81, 1588.15], [2462.3, 1597.07], [2465.07, 1599.09], [2463.73, 1600.95], [2468.76, 1604.61], [2472.81, 1599.04], [2471.36, 1597.98], [2473.74, 1594.69], [2472.45, 1593.74], [2473.85, 1591.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2648.02, 1493.0], [2640.16, 1493.03], [2640.18, 1498.52], [2642.7, 1498.52], [2642.71, 1500.93], [2648.05, 1500.9], [2648.02, 1493.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2079.85, 1469.63], [2075.39, 1465.32], [2072.6, 1468.2], [2077.07, 1472.5], [2079.85, 1469.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2606.59, 1353.14], [2602.58, 1347.47], [2597.22, 1351.25], [2601.22, 1356.93], [2606.59, 1353.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2522.05, 1932.14], [2518.09, 1925.52], [2515.46, 1927.08], [2510.72, 1919.16], [2509.38, 1919.95], [2507.26, 1916.41], [2502.46, 1919.25], [2513.28, 1937.35], [2522.05, 1932.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2828.66, 1663.02], [2820.5, 1661.65], [2818.7, 1672.4], [2826.86, 1673.76], [2828.66, 1663.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2314.38, 1400.45], [2304.66, 1394.22], [2301.11, 1399.75], [2310.83, 1405.98], [2314.38, 1400.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2567.56, 2018.07], [2563.45, 2011.03], [2556.92, 2014.83], [2555.68, 2012.71], [2549.62, 2016.25], [2550.0, 2016.89], [2546.47, 2018.96], [2551.43, 2027.47], [2567.56, 2018.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2299.48, 1362.37], [2292.53, 1357.82], [2287.61, 1365.32], [2294.55, 1369.87], [2299.48, 1362.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2661.61, 1742.89], [2653.62, 1742.62], [2653.25, 1753.26], [2661.25, 1753.54], [2661.61, 1742.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2245.79, 1270.54], [2240.88, 1265.62], [2236.41, 1270.08], [2241.33, 1275.0], [2245.79, 1270.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2509.19, 1365.57], [2506.01, 1363.11], [2502.24, 1368.0], [2505.42, 1370.45], [2509.19, 1365.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2412.09, 1570.63], [2409.03, 1568.71], [2406.21, 1573.2], [2409.27, 1575.11], [2412.09, 1570.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2537.37, 1527.81], [2530.54, 1522.85], [2523.02, 1533.19], [2529.85, 1538.15], [2537.37, 1527.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2448.94, 1481.1], [2455.07, 1471.75], [2454.18, 1471.17], [2456.53, 1467.57], [2450.51, 1463.62], [2448.94, 1466.02], [2447.9, 1465.35], [2441.3, 1475.42], [2443.41, 1476.8], [2442.2, 1478.66], [2445.86, 1481.06], [2446.77, 1479.68], [2448.94, 1481.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2612.97, 1379.07], [2608.71, 1373.95], [2604.78, 1377.2], [2603.97, 1376.24], [2597.15, 1381.92], [2603.64, 1389.73], [2610.57, 1383.97], [2609.14, 1382.25], [2612.97, 1379.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2694.92, 1751.15], [2688.78, 1749.39], [2685.67, 1760.27], [2693.01, 1762.36], [2695.38, 1754.05], [2694.2, 1753.72], [2694.92, 1751.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2242.21, 1389.38], [2235.24, 1384.47], [2233.59, 1386.81], [2232.71, 1386.2], [2230.36, 1389.55], [2231.59, 1390.41], [2229.82, 1392.93], [2231.57, 1394.16], [2230.28, 1395.99], [2235.15, 1399.42], [2242.21, 1389.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2507.62, 1252.54], [2503.8, 1247.51], [2497.01, 1252.66], [2500.82, 1257.68], [2507.62, 1252.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2767.17, 1442.01], [2767.28, 1439.32], [2772.08, 1439.51], [2772.41, 1431.25], [2761.54, 1430.82], [2761.18, 1439.77], [2764.59, 1439.91], [2764.52, 1441.91], [2767.17, 1442.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2510.24, 1318.54], [2505.78, 1313.04], [2494.53, 1322.19], [2498.99, 1327.69], [2510.24, 1318.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2396.51, 1489.25], [2393.11, 1486.53], [2391.37, 1488.7], [2390.18, 1487.74], [2382.4, 1497.52], [2389.52, 1503.19], [2397.31, 1493.42], [2394.78, 1491.42], [2396.51, 1489.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2873.18, 1688.31], [2873.66, 1685.76], [2875.32, 1686.07], [2877.2, 1676.17], [2868.32, 1674.48], [2866.63, 1683.4], [2868.13, 1683.69], [2867.46, 1687.22], [2873.18, 1688.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2122.41, 1468.42], [2114.43, 1460.46], [2112.26, 1462.65], [2111.29, 1461.69], [2102.36, 1470.67], [2111.37, 1479.64], [2119.21, 1471.76], [2119.15, 1471.7], [2122.41, 1468.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[2782.59, 1719.99], [2776.25, 1718.64], [2774.87, 1725.1], [2781.23, 1726.45], [2782.59, 1719.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2677.37, 1405.3], [2673.11, 1405.09], [2672.78, 1412.33], [2677.05, 1412.52], [2677.37, 1405.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2803.87, 1801.6], [2800.43, 1800.81], [2799.17, 1806.28], [2802.6, 1807.07], [2803.87, 1801.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2539.14, 1442.81], [2534.13, 1439.45], [2529.23, 1446.75], [2537.37, 1452.23], [2541.57, 1445.97], [2538.43, 1443.87], [2539.14, 1442.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2179.85, 1417.12], [2175.14, 1414.19], [2172.52, 1418.38], [2177.23, 1421.32], [2179.85, 1417.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2929.85, 1474.18], [2922.87, 1473.92], [2922.45, 1485.03], [2923.42, 1485.07], [2923.37, 1486.52], [2929.37, 1486.74], [2929.85, 1474.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2759.07, 1567.52], [2754.24, 1567.33], [2753.89, 1576.28], [2758.71, 1576.47], [2759.07, 1567.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2535.43, 1922.96], [2538.53, 1921.18], [2537.32, 1919.1], [2540.76, 1917.11], [2538.74, 1913.63], [2540.12, 1912.84], [2537.67, 1908.64], [2528.31, 1914.06], [2533.17, 1922.4], [2534.61, 1921.58], [2535.43, 1922.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2638.71, 1905.14], [2632.65, 1905.25], [2632.79, 1912.99], [2637.96, 1912.9], [2638.0, 1914.97], [2651.14, 1914.73], [2651.0, 1907.82], [2642.4, 1907.98], [2642.37, 1906.13], [2638.74, 1906.19], [2638.71, 1905.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2769.5, 1489.58], [2765.44, 1489.38], [2765.15, 1495.21], [2769.21, 1495.42], [2769.5, 1489.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2675.73, 1565.71], [2669.95, 1565.41], [2669.61, 1572.14], [2675.38, 1572.45], [2675.73, 1565.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2452.03, 1370.8], [2447.68, 1366.72], [2446.01, 1368.5], [2444.99, 1367.55], [2436.45, 1376.69], [2443.26, 1383.06], [2451.93, 1373.79], [2450.49, 1372.44], [2452.03, 1370.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2905.78, 1489.91], [2906.35, 1475.3], [2903.02, 1475.17], [2903.1, 1473.23], [2898.86, 1473.06], [2898.76, 1475.55], [2897.04, 1475.49], [2896.49, 1489.55], [2905.78, 1489.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2309.89, 1392.53], [2311.42, 1390.03], [2314.19, 1391.71], [2317.71, 1385.94], [2311.78, 1382.34], [2308.68, 1387.44], [2309.22, 1387.78], [2307.29, 1390.94], [2309.89, 1392.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2502.65, 1207.36], [2500.47, 1204.32], [2494.7, 1208.45], [2496.89, 1211.49], [2502.65, 1207.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2603.02, 1505.19], [2596.6, 1504.5], [2596.11, 1509.11], [2602.53, 1509.79], [2603.02, 1505.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2175.86, 1350.19], [2167.13, 1339.63], [2161.53, 1344.27], [2162.74, 1345.74], [2160.46, 1347.61], [2167.98, 1356.7], [2175.86, 1350.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2447.42, 1461.21], [2442.84, 1458.0], [2441.73, 1459.6], [2439.9, 1458.33], [2434.69, 1465.79], [2435.24, 1466.16], [2432.49, 1470.11], [2434.5, 1471.5], [2432.4, 1474.5], [2437.71, 1478.21], [2447.48, 1464.19], [2446.04, 1463.18], [2447.42, 1461.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2268.07, 1453.13], [2265.26, 1451.04], [2264.23, 1452.42], [2262.72, 1451.29], [2257.08, 1458.84], [2263.98, 1463.99], [2270.1, 1455.8], [2267.52, 1453.88], [2268.07, 1453.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2446.6, 1523.72], [2438.07, 1518.28], [2436.55, 1520.66], [2434.55, 1519.39], [2431.71, 1523.83], [2444.03, 1531.69], [2446.93, 1527.15], [2445.14, 1526.0], [2446.6, 1523.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2390.33, 1338.41], [2391.74, 1336.99], [2392.59, 1337.82], [2402.26, 1328.07], [2395.66, 1321.52], [2386.03, 1331.23], [2389.86, 1335.03], [2388.41, 1336.51], [2390.33, 1338.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2740.09, 1731.22], [2740.5, 1729.11], [2736.81, 1728.39], [2736.36, 1730.74], [2731.63, 1729.82], [2729.52, 1740.66], [2739.09, 1742.52], [2741.25, 1731.46], [2740.09, 1731.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2459.81, 1257.34], [2455.66, 1251.51], [2446.61, 1257.97], [2450.77, 1263.8], [2459.81, 1257.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2415.65, 1304.68], [2418.64, 1301.44], [2419.78, 1302.47], [2426.33, 1295.36], [2420.24, 1289.75], [2414.55, 1295.93], [2413.38, 1294.86], [2411.35, 1297.07], [2412.75, 1298.36], [2410.93, 1300.33], [2415.65, 1304.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2425.98, 1367.1], [2429.95, 1362.76], [2430.47, 1363.22], [2436.78, 1356.32], [2430.82, 1350.89], [2420.54, 1362.13], [2425.98, 1367.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2812.34, 1728.37], [2805.99, 1727.17], [2805.17, 1731.52], [2811.51, 1732.72], [2812.34, 1728.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2186.49, 1425.11], [2181.12, 1421.38], [2177.34, 1426.82], [2182.71, 1430.56], [2186.49, 1425.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2475.06, 1481.55], [2464.8, 1474.59], [2459.74, 1482.06], [2472.42, 1490.65], [2475.7, 1485.8], [2473.28, 1484.16], [2475.06, 1481.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2655.38, 1477.57], [2655.33, 1475.14], [2659.06, 1475.05], [2658.88, 1467.48], [2660.2, 1467.45], [2660.04, 1460.41], [2649.89, 1460.65], [2650.3, 1477.69], [2655.38, 1477.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2846.98, 1567.88], [2847.02, 1565.59], [2848.73, 1565.62], [2849.0, 1551.92], [2839.76, 1551.73], [2839.5, 1564.62], [2842.19, 1564.68], [2842.12, 1567.78], [2846.98, 1567.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2462.08, 1599.96], [2459.37, 1598.02], [2456.25, 1602.38], [2458.96, 1604.32], [2462.08, 1599.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2620.25, 1942.12], [2612.0, 1942.1], [2611.94, 1956.06], [2620.2, 1956.1], [2620.25, 1942.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2886.95, 1447.0], [2887.05, 1445.01], [2892.93, 1445.29], [2893.45, 1434.17], [2891.47, 1434.07], [2891.59, 1431.51], [2882.51, 1431.08], [2882.42, 1433.05], [2878.61, 1432.87], [2878.08, 1443.95], [2882.79, 1444.18], [2882.67, 1446.8], [2886.95, 1447.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2326.63, 1139.46], [2320.72, 1134.58], [2318.83, 1136.86], [2324.74, 1141.75], [2326.63, 1139.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2725.75, 1673.39], [2718.34, 1671.93], [2715.86, 1684.54], [2723.27, 1685.99], [2725.75, 1673.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2072.94, 1402.94], [2068.53, 1398.21], [2064.22, 1402.21], [2068.63, 1406.94], [2072.94, 1402.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2731.18, 1716.24], [2727.21, 1715.4], [2725.93, 1721.46], [2729.9, 1722.31], [2731.18, 1716.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2524.17, 1226.54], [2532.5, 1237.09], [2540.67, 1230.65], [2532.34, 1220.09], [2524.17, 1226.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2808.61, 1445.63], [2809.03, 1437.92], [2804.49, 1437.67], [2804.54, 1436.85], [2795.64, 1436.38], [2795.5, 1438.96], [2793.46, 1438.85], [2793.22, 1443.14], [2795.64, 1443.27], [2795.55, 1444.92], [2808.61, 1445.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2111.98, 1455.57], [2106.88, 1450.39], [2097.08, 1460.03], [2098.18, 1461.14], [2093.11, 1466.12], [2097.54, 1470.62], [2110.22, 1458.16], [2109.8, 1457.72], [2111.98, 1455.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2166.17, 1416.66], [2160.54, 1413.53], [2158.69, 1416.86], [2164.32, 1419.99], [2166.17, 1416.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2467.65, 1197.96], [2462.73, 1191.53], [2454.65, 1197.71], [2459.58, 1204.15], [2467.65, 1197.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2838.47, 1472.83], [2830.57, 1472.85], [2830.59, 1482.24], [2832.34, 1482.23], [2832.35, 1485.8], [2838.49, 1485.78], [2838.47, 1472.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2502.83, 1442.03], [2506.14, 1437.41], [2504.11, 1435.95], [2505.08, 1434.59], [2498.25, 1429.71], [2493.32, 1436.59], [2500.18, 1441.51], [2500.83, 1440.59], [2502.83, 1442.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2768.79, 1410.6], [2768.87, 1409.16], [2771.8, 1409.32], [2772.32, 1400.2], [2770.63, 1400.1], [2770.73, 1398.35], [2764.39, 1397.99], [2763.69, 1410.32], [2768.79, 1410.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2407.96, 1111.39], [2403.61, 1107.39], [2399.01, 1112.39], [2403.36, 1116.39], [2407.96, 1111.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2929.8, 1526.41], [2922.5, 1524.51], [2920.32, 1532.86], [2927.62, 1534.77], [2929.8, 1526.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2435.94, 2015.33], [2433.71, 2011.5], [2427.53, 2015.09], [2429.76, 2018.91], [2435.94, 2015.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2892.75, 1485.35], [2892.92, 1473.29], [2890.22, 1473.25], [2890.23, 1472.42], [2883.41, 1472.32], [2883.23, 1485.32], [2886.12, 1485.36], [2886.13, 1484.39], [2890.19, 1484.45], [2890.19, 1485.31], [2892.75, 1485.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2847.2, 1814.89], [2837.72, 1812.82], [2835.97, 1820.87], [2845.44, 1822.94], [2847.2, 1814.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2212.35, 1320.35], [2204.75, 1310.51], [2197.64, 1315.99], [2205.25, 1325.84], [2212.35, 1320.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2460.3, 1380.13], [2454.61, 1375.34], [2447.35, 1383.94], [2453.04, 1388.74], [2460.3, 1380.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2460.7, 1502.96], [2449.04, 1495.72], [2447.72, 1497.84], [2448.59, 1498.39], [2447.27, 1500.52], [2448.36, 1501.19], [2446.62, 1503.98], [2458.02, 1511.06], [2460.59, 1506.91], [2458.9, 1505.85], [2460.7, 1502.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2599.28, 1816.61], [2590.44, 1814.22], [2583.77, 1839.25], [2593.03, 1841.61], [2599.28, 1816.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.155, "pop": 0, "jobs": 155}}, {"shape": {"outer": [[2644.72, 1490.67], [2643.83, 1481.44], [2637.25, 1482.07], [2638.14, 1491.3], [2644.72, 1490.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2481.32, 1626.57], [2485.12, 1621.02], [2482.62, 1619.3], [2485.03, 1615.76], [2480.82, 1612.88], [2473.67, 1623.31], [2477.4, 1625.87], [2478.33, 1624.52], [2481.32, 1626.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2576.54, 1334.17], [2574.14, 1331.0], [2572.31, 1332.39], [2570.75, 1330.33], [2563.32, 1335.95], [2567.29, 1341.19], [2574.72, 1335.56], [2576.54, 1334.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2090.66, 1484.23], [2088.56, 1482.14], [2087.66, 1483.04], [2086.13, 1481.52], [2080.26, 1487.41], [2091.84, 1498.92], [2097.24, 1493.48], [2089.3, 1485.59], [2090.66, 1484.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1967.93, 1568.01], [1976.66, 1558.3], [1970.7, 1552.93], [1960.48, 1564.28], [1964.3, 1567.72], [1965.77, 1566.07], [1967.93, 1568.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2475.95, 1556.77], [2471.59, 1553.89], [2468.7, 1558.25], [2473.07, 1561.14], [2475.95, 1556.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2318.78, 1426.14], [2314.87, 1423.64], [2311.6, 1428.75], [2315.51, 1431.26], [2318.78, 1426.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2317.57, 1186.27], [2313.49, 1182.23], [2308.95, 1186.79], [2313.03, 1190.85], [2317.57, 1186.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2547.61, 1438.91], [2542.69, 1431.69], [2537.61, 1435.16], [2542.52, 1442.38], [2547.61, 1438.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1987.18, 1464.69], [1997.83, 1474.48], [2003.46, 1468.45], [2000.85, 1466.1], [2001.23, 1465.67], [1993.33, 1458.21], [1987.18, 1464.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2063.48, 1528.77], [2053.2, 1518.7], [2048.67, 1523.32], [2058.95, 1533.4], [2063.48, 1528.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2189.11, 1416.12], [2190.27, 1414.23], [2192.76, 1415.77], [2200.28, 1403.62], [2196.63, 1401.36], [2194.98, 1404.01], [2191.01, 1401.56], [2187.05, 1407.96], [2187.76, 1408.41], [2186.08, 1411.11], [2187.84, 1412.19], [2186.43, 1414.47], [2189.11, 1416.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2368.31, 1430.16], [2370.5, 1426.87], [2372.58, 1428.25], [2381.32, 1415.08], [2374.63, 1410.65], [2366.58, 1422.8], [2366.73, 1422.91], [2365.91, 1424.15], [2367.0, 1424.88], [2364.96, 1427.95], [2368.31, 1430.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2579.11, 1964.62], [2578.84, 1958.47], [2573.89, 1958.7], [2574.17, 1964.84], [2579.11, 1964.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2445.37, 1139.93], [2446.47, 1138.54], [2447.87, 1139.63], [2452.44, 1133.83], [2446.04, 1128.79], [2445.27, 1129.77], [2444.32, 1129.02], [2440.87, 1133.41], [2442.02, 1134.31], [2440.57, 1136.16], [2445.37, 1139.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2658.27, 1616.42], [2657.7, 1608.3], [2650.74, 1608.79], [2651.31, 1616.72], [2647.44, 1617.0], [2648.39, 1630.25], [2657.86, 1629.58], [2656.93, 1616.51], [2658.27, 1616.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2569.08, 2058.94], [2564.55, 2051.51], [2557.82, 2055.61], [2563.23, 2064.49], [2567.11, 2062.13], [2566.22, 2060.67], [2569.08, 2058.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2895.44, 1570.94], [2885.05, 1570.95], [2885.06, 1578.34], [2897.61, 1578.32], [2897.6, 1575.27], [2895.43, 1575.27], [2895.44, 1570.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2344.49, 1471.26], [2352.42, 1460.66], [2349.62, 1458.56], [2351.72, 1455.76], [2348.88, 1453.64], [2346.89, 1456.3], [2345.05, 1454.91], [2337.12, 1465.53], [2339.1, 1467.01], [2338.2, 1468.2], [2341.18, 1470.44], [2341.97, 1469.37], [2344.49, 1471.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2684.88, 1463.49], [2677.27, 1462.93], [2676.14, 1478.13], [2679.41, 1478.37], [2679.1, 1482.69], [2683.43, 1483.02], [2684.88, 1463.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2545.81, 2047.22], [2542.95, 2042.44], [2540.42, 2043.95], [2543.29, 2048.74], [2545.81, 2047.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2603.56, 1440.31], [2600.88, 1436.32], [2598.99, 1437.58], [2596.5, 1433.9], [2593.05, 1436.22], [2592.43, 1435.29], [2589.38, 1437.33], [2590.17, 1438.49], [2586.58, 1440.89], [2591.59, 1448.35], [2603.56, 1440.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2765.19, 1716.25], [2753.21, 1713.54], [2751.77, 1719.94], [2763.75, 1722.65], [2765.19, 1716.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2545.52, 1547.84], [2547.97, 1544.54], [2549.6, 1545.76], [2555.29, 1538.12], [2548.8, 1533.26], [2543.77, 1539.98], [2544.6, 1540.6], [2541.46, 1544.82], [2545.52, 1547.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2537.72, 1579.79], [2532.79, 1576.89], [2529.46, 1582.59], [2534.39, 1585.47], [2537.72, 1579.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2569.42, 1305.26], [2565.97, 1308.03], [2569.92, 1312.94], [2573.37, 1310.17], [2569.42, 1305.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2782.79, 1468.23], [2773.54, 1468.13], [2773.37, 1482.73], [2782.62, 1482.84], [2782.79, 1468.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2674.88, 1462.34], [2666.16, 1461.91], [2665.48, 1475.71], [2674.19, 1476.13], [2674.88, 1462.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2149.68, 1513.68], [2143.74, 1507.55], [2132.02, 1518.92], [2137.96, 1525.04], [2149.68, 1513.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1928.35, 1515.02], [1924.73, 1512.12], [1915.73, 1523.33], [1922.49, 1528.76], [1930.11, 1519.3], [1929.34, 1518.67], [1930.05, 1517.79], [1927.66, 1515.88], [1928.35, 1515.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2701.25, 1397.33], [2701.34, 1395.41], [2703.92, 1395.53], [2704.57, 1381.54], [2695.86, 1381.13], [2695.17, 1395.81], [2699.0, 1395.98], [2698.94, 1397.21], [2701.25, 1397.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2441.34, 1506.39], [2443.83, 1502.3], [2433.76, 1496.17], [2430.32, 1501.82], [2435.92, 1505.24], [2436.88, 1503.67], [2441.34, 1506.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2388.2, 1325.05], [2393.56, 1318.48], [2388.49, 1314.35], [2384.81, 1318.86], [2382.06, 1316.61], [2377.99, 1321.6], [2380.86, 1323.94], [2383.24, 1321.0], [2388.2, 1325.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2416.6, 1343.54], [2419.68, 1340.23], [2416.46, 1337.23], [2412.79, 1341.17], [2411.01, 1339.51], [2403.97, 1347.04], [2410.15, 1352.81], [2417.78, 1344.64], [2416.6, 1343.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2191.7, 1418.86], [2199.69, 1424.57], [2207.82, 1412.72], [2207.02, 1412.14], [2208.07, 1410.67], [2201.87, 1406.53], [2200.74, 1408.21], [2199.78, 1407.52], [2191.7, 1418.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2542.09, 1399.03], [2535.43, 1389.67], [2529.16, 1394.13], [2535.82, 1403.49], [2542.09, 1399.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2933.46, 1506.12], [2928.23, 1504.91], [2927.02, 1510.2], [2932.25, 1511.41], [2933.46, 1506.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2837.96, 1613.78], [2837.92, 1611.46], [2840.12, 1611.42], [2840.04, 1607.34], [2838.39, 1607.38], [2838.36, 1605.99], [2827.01, 1606.2], [2827.15, 1613.98], [2837.96, 1613.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2398.16, 1103.97], [2393.44, 1099.78], [2389.09, 1104.68], [2393.82, 1108.88], [2398.16, 1103.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2508.33, 1217.7], [2504.49, 1213.21], [2499.39, 1217.56], [2503.23, 1222.06], [2508.33, 1217.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2779.91, 1649.51], [2774.53, 1648.47], [2772.3, 1660.11], [2777.68, 1661.14], [2779.91, 1649.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2522.14, 1242.45], [2527.59, 1248.53], [2531.8, 1244.75], [2526.34, 1238.67], [2522.14, 1242.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2667.95, 1507.18], [2668.06, 1504.04], [2664.56, 1503.92], [2664.46, 1506.58], [2662.12, 1506.5], [2661.73, 1517.65], [2670.11, 1517.93], [2670.47, 1507.27], [2667.95, 1507.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2112.42, 1563.57], [2108.59, 1559.17], [2104.56, 1562.67], [2108.39, 1567.07], [2112.42, 1563.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2851.82, 1513.43], [2842.2, 1513.12], [2841.76, 1526.99], [2851.38, 1527.3], [2851.82, 1513.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2483.92, 1532.03], [2472.49, 1523.88], [2468.61, 1529.33], [2471.14, 1531.13], [2469.89, 1532.88], [2478.8, 1539.22], [2483.92, 1532.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2520.13, 1205.3], [2514.7, 1198.51], [2507.53, 1204.25], [2512.94, 1211.04], [2520.13, 1205.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2560.58, 1386.98], [2557.14, 1382.4], [2554.73, 1384.2], [2553.11, 1382.03], [2545.69, 1387.58], [2550.75, 1394.33], [2560.58, 1386.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1886.9, 1480.85], [1889.48, 1479.15], [1890.36, 1480.52], [1892.74, 1478.96], [1891.76, 1477.46], [1893.73, 1476.17], [1886.5, 1465.15], [1879.59, 1469.69], [1886.9, 1480.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2758.03, 1818.54], [2758.36, 1816.9], [2761.66, 1817.59], [2763.34, 1809.51], [2761.52, 1809.14], [2761.28, 1810.28], [2756.25, 1809.23], [2756.57, 1807.71], [2752.24, 1806.81], [2751.93, 1808.3], [2749.27, 1807.74], [2748.25, 1812.64], [2749.43, 1812.89], [2749.03, 1814.82], [2755.08, 1816.07], [2754.72, 1817.85], [2758.03, 1818.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2389.48, 1094.67], [2384.48, 1090.23], [2380.14, 1095.13], [2385.14, 1099.57], [2389.48, 1094.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2768.05, 1732.04], [2759.19, 1730.23], [2756.51, 1743.36], [2765.38, 1745.16], [2768.05, 1732.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2246.09, 1337.06], [2238.45, 1331.72], [2234.3, 1337.66], [2244.41, 1344.72], [2247.46, 1340.34], [2245.0, 1338.62], [2246.09, 1337.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2664.6, 2077.34], [2664.24, 2071.04], [2661.92, 2071.17], [2661.79, 2068.8], [2650.63, 2069.42], [2651.11, 2078.1], [2664.6, 2077.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2654.94, 1985.46], [2654.64, 1979.69], [2642.57, 1980.33], [2642.97, 1988.06], [2652.68, 1987.54], [2652.57, 1985.59], [2654.94, 1985.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2523.89, 1985.38], [2521.66, 1981.43], [2516.28, 1984.46], [2518.5, 1988.41], [2523.89, 1985.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2596.64, 1365.4], [2592.35, 1359.97], [2585.12, 1365.67], [2589.4, 1371.11], [2596.64, 1365.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2590.96, 1315.3], [2596.7, 1321.9], [2609.01, 1311.54], [2603.33, 1304.79], [2598.22, 1309.09], [2597.85, 1308.64], [2593.8, 1312.06], [2594.22, 1312.56], [2590.96, 1315.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2814.83, 1783.77], [2808.12, 1782.25], [2805.3, 1794.8], [2806.23, 1795.01], [2805.43, 1798.57], [2811.21, 1799.86], [2814.83, 1783.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2108.78, 1536.48], [2112.32, 1532.72], [2111.18, 1531.64], [2112.75, 1529.97], [2106.33, 1523.92], [2105.62, 1524.68], [2103.72, 1522.88], [2098.49, 1528.43], [2106.68, 1536.15], [2107.51, 1535.28], [2108.78, 1536.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2662.17, 1606.17], [2661.83, 1597.98], [2651.92, 1598.4], [2652.26, 1606.59], [2662.17, 1606.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2473.0, 1900.29], [2471.05, 1896.7], [2465.26, 1899.85], [2467.21, 1903.44], [2473.0, 1900.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2536.49, 2038.56], [2532.49, 2031.73], [2526.23, 2035.4], [2530.23, 2042.22], [2536.49, 2038.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2380.54, 1439.43], [2377.74, 1437.76], [2373.31, 1445.12], [2376.11, 1446.81], [2380.54, 1439.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2547.1, 1495.29], [2554.14, 1483.31], [2546.88, 1479.03], [2538.66, 1493.01], [2542.58, 1495.31], [2543.76, 1493.33], [2547.1, 1495.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2227.59, 1449.36], [2221.01, 1445.15], [2218.79, 1448.61], [2221.76, 1450.51], [2221.16, 1451.46], [2224.76, 1453.77], [2227.59, 1449.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2273.88, 1342.57], [2267.59, 1338.54], [2261.95, 1347.38], [2268.24, 1351.4], [2273.88, 1342.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2175.75, 1305.85], [2172.3, 1301.72], [2167.8, 1305.49], [2171.26, 1309.62], [2175.75, 1305.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2295.77, 1469.81], [2290.19, 1466.09], [2281.66, 1478.86], [2288.23, 1483.24], [2295.2, 1472.8], [2294.21, 1472.14], [2295.77, 1469.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2566.3, 1425.34], [2560.74, 1417.69], [2557.32, 1420.18], [2556.24, 1418.69], [2552.44, 1421.44], [2559.1, 1430.59], [2566.3, 1425.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2884.24, 1632.03], [2872.98, 1630.26], [2871.61, 1638.97], [2884.46, 1641.0], [2885.6, 1633.83], [2883.99, 1633.58], [2884.24, 1632.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2607.83, 2079.26], [2603.16, 2071.57], [2593.22, 2077.61], [2597.89, 2085.29], [2607.83, 2079.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2648.14, 1976.5], [2654.2, 1976.28], [2653.72, 1965.98], [2647.82, 1966.15], [2648.14, 1976.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2589.42, 1813.87], [2578.55, 1811.03], [2571.45, 1838.02], [2582.32, 1840.86], [2589.42, 1813.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.201, "pop": 0, "jobs": 201}}, {"shape": {"outer": [[2793.11, 1422.49], [2787.48, 1422.16], [2787.17, 1427.42], [2792.79, 1427.75], [2793.11, 1422.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2554.06, 1275.35], [2549.76, 1269.57], [2544.8, 1273.25], [2549.11, 1279.05], [2554.06, 1275.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2358.8, 1096.84], [2348.25, 1087.45], [2343.8, 1092.45], [2344.45, 1093.03], [2342.84, 1094.85], [2353.57, 1104.4], [2356.18, 1101.47], [2355.34, 1100.72], [2358.8, 1096.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2802.41, 1780.68], [2793.98, 1778.83], [2791.34, 1790.77], [2796.45, 1791.91], [2796.18, 1793.15], [2799.5, 1793.88], [2802.41, 1780.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2520.38, 1629.18], [2513.63, 1624.64], [2508.57, 1632.18], [2515.32, 1636.71], [2520.38, 1629.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2708.14, 1495.48], [2702.48, 1495.1], [2702.08, 1500.95], [2707.75, 1501.34], [2708.14, 1495.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2278.19, 1222.47], [2272.16, 1216.57], [2267.01, 1221.83], [2273.03, 1227.72], [2278.19, 1222.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1993.89, 1567.42], [1987.56, 1561.45], [1982.01, 1567.34], [1984.62, 1569.8], [1982.52, 1572.03], [1986.23, 1575.53], [1993.89, 1567.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2541.82, 1272.05], [2539.25, 1268.94], [2534.69, 1272.69], [2537.26, 1275.81], [2541.82, 1272.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2445.43, 1238.22], [2441.72, 1233.65], [2439.51, 1235.43], [2438.81, 1234.57], [2432.02, 1240.08], [2437.31, 1246.63], [2444.01, 1241.19], [2443.12, 1240.09], [2445.43, 1238.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2538.41, 1358.66], [2533.19, 1351.41], [2523.51, 1358.38], [2528.72, 1365.63], [2538.41, 1358.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2528.84, 1568.24], [2526.03, 1566.53], [2521.17, 1574.49], [2525.92, 1577.4], [2529.65, 1571.28], [2527.71, 1570.1], [2528.84, 1568.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2776.69, 1553.16], [2776.81, 1551.02], [2771.2, 1550.74], [2771.08, 1553.17], [2769.83, 1553.12], [2769.2, 1565.93], [2777.89, 1566.35], [2778.54, 1553.24], [2776.69, 1553.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2444.33, 1255.49], [2451.62, 1250.24], [2452.15, 1250.98], [2455.14, 1248.83], [2451.89, 1244.32], [2449.6, 1245.97], [2446.36, 1241.48], [2438.38, 1247.22], [2444.33, 1255.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2246.6, 1373.03], [2242.22, 1370.34], [2238.93, 1375.7], [2243.3, 1378.39], [2246.6, 1373.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2571.55, 2137.3], [2575.52, 2144.25], [2589.15, 2136.11], [2585.18, 2129.16], [2571.55, 2137.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2608.5, 1945.05], [2600.46, 1945.19], [2600.7, 1958.77], [2603.59, 1958.72], [2603.63, 1961.37], [2608.77, 1961.28], [2608.5, 1945.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2231.82, 1240.64], [2228.01, 1237.07], [2226.3, 1238.9], [2230.11, 1242.46], [2231.82, 1240.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2459.42, 1421.0], [2455.24, 1418.38], [2453.95, 1420.44], [2450.57, 1418.31], [2444.23, 1428.4], [2451.8, 1433.15], [2459.42, 1421.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2900.2, 1556.47], [2892.0, 1556.34], [2891.85, 1565.65], [2900.05, 1565.78], [2900.2, 1556.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2661.3, 1580.38], [2660.54, 1572.16], [2649.34, 1573.2], [2650.1, 1581.41], [2661.3, 1580.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2480.38, 1442.24], [2476.6, 1439.45], [2473.0, 1444.33], [2476.77, 1447.11], [2480.38, 1442.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2465.98, 1335.68], [2459.74, 1329.96], [2450.88, 1339.6], [2457.12, 1345.32], [2465.98, 1335.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2267.88, 1409.5], [2261.35, 1404.63], [2256.33, 1411.35], [2262.86, 1416.22], [2267.88, 1409.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2406.72, 1565.16], [2407.85, 1563.56], [2408.74, 1564.19], [2416.99, 1552.58], [2412.05, 1549.07], [2409.66, 1547.37], [2401.01, 1559.55], [2403.24, 1561.13], [2402.5, 1562.17], [2406.72, 1565.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2878.91, 1476.06], [2870.59, 1475.72], [2870.22, 1484.42], [2878.55, 1484.76], [2878.91, 1476.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2144.66, 1324.27], [2141.03, 1319.69], [2137.81, 1322.23], [2141.45, 1326.82], [2144.66, 1324.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2571.77, 1956.07], [2571.38, 1944.29], [2563.88, 1944.54], [2564.28, 1956.32], [2571.77, 1956.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2367.59, 1491.22], [2369.42, 1488.81], [2371.31, 1490.24], [2377.93, 1481.5], [2373.14, 1477.88], [2372.78, 1478.35], [2371.01, 1477.0], [2362.93, 1487.69], [2367.59, 1491.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2535.26, 1452.5], [2529.22, 1448.52], [2524.61, 1455.52], [2530.64, 1459.49], [2535.26, 1452.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2365.0, 1241.43], [2360.6, 1236.57], [2357.65, 1239.24], [2362.06, 1244.11], [2365.0, 1241.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2521.77, 1363.65], [2516.3, 1355.94], [2510.86, 1359.81], [2513.44, 1363.44], [2514.15, 1362.93], [2517.05, 1367.0], [2521.77, 1363.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2497.59, 1300.6], [2491.55, 1292.9], [2481.4, 1300.86], [2487.45, 1308.56], [2497.59, 1300.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2271.22, 1377.99], [2266.24, 1374.38], [2263.69, 1377.9], [2268.67, 1381.51], [2271.22, 1377.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2398.01, 1539.76], [2390.2, 1534.8], [2386.99, 1539.84], [2388.02, 1540.5], [2385.25, 1544.87], [2392.02, 1549.18], [2398.01, 1539.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2930.91, 1517.43], [2924.96, 1515.98], [2923.21, 1523.19], [2929.16, 1524.62], [2930.91, 1517.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2759.37, 1406.1], [2758.36, 1395.29], [2750.74, 1395.99], [2751.48, 1404.0], [2748.18, 1404.31], [2748.75, 1410.46], [2747.34, 1410.6], [2747.71, 1414.64], [2751.88, 1414.26], [2751.57, 1410.92], [2755.44, 1410.57], [2755.05, 1406.5], [2759.37, 1406.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2703.67, 1523.67], [2703.7, 1523.05], [2707.98, 1523.23], [2708.04, 1521.74], [2710.53, 1521.85], [2710.9, 1513.29], [2702.24, 1512.92], [2701.78, 1523.59], [2703.67, 1523.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2437.13, 1566.42], [2431.4, 1562.22], [2429.71, 1564.52], [2429.37, 1564.27], [2427.7, 1566.55], [2426.98, 1566.02], [2424.45, 1569.48], [2425.39, 1570.17], [2423.31, 1573.01], [2429.56, 1577.58], [2436.21, 1568.49], [2435.83, 1568.21], [2437.13, 1566.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2512.26, 1555.19], [2508.6, 1552.64], [2504.62, 1558.35], [2508.27, 1560.91], [2512.26, 1555.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2411.89, 1333.98], [2407.81, 1329.74], [2405.83, 1331.77], [2403.64, 1329.49], [2396.23, 1336.61], [2402.44, 1343.07], [2411.89, 1333.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2232.5, 1382.84], [2224.94, 1377.52], [2217.65, 1387.87], [2225.21, 1393.19], [2232.5, 1382.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2821.34, 1759.72], [2823.75, 1747.32], [2816.39, 1745.89], [2815.92, 1748.29], [2817.97, 1748.69], [2817.58, 1750.69], [2815.49, 1750.29], [2814.75, 1754.12], [2816.06, 1754.37], [2815.24, 1758.54], [2821.34, 1759.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2339.9, 1131.64], [2336.95, 1128.61], [2332.66, 1132.77], [2335.61, 1135.81], [2339.9, 1131.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2552.36, 1438.6], [2555.06, 1436.71], [2554.22, 1435.49], [2556.67, 1433.78], [2551.24, 1426.01], [2548.94, 1427.62], [2547.87, 1426.07], [2542.51, 1429.8], [2548.2, 1437.94], [2549.8, 1436.82], [2550.37, 1437.65], [2551.26, 1437.03], [2552.36, 1438.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2384.13, 1114.35], [2378.6, 1109.24], [2372.43, 1115.92], [2377.96, 1121.02], [2384.13, 1114.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2417.9, 1459.6], [2419.61, 1457.11], [2421.37, 1458.32], [2428.07, 1448.59], [2421.94, 1444.37], [2420.73, 1446.13], [2419.77, 1445.47], [2414.56, 1453.04], [2416.03, 1454.04], [2414.03, 1456.94], [2417.9, 1459.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2530.88, 1278.65], [2526.1, 1272.34], [2518.74, 1277.92], [2523.52, 1284.22], [2530.88, 1278.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2499.42, 1418.88], [2495.97, 1415.51], [2491.93, 1419.67], [2495.38, 1423.03], [2499.42, 1418.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2367.66, 1226.58], [2364.14, 1222.61], [2361.64, 1224.84], [2365.17, 1228.8], [2367.66, 1226.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2624.76, 1378.94], [2621.23, 1373.82], [2616.5, 1377.08], [2620.03, 1382.21], [2624.76, 1378.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2570.88, 1324.12], [2567.07, 1319.22], [2557.25, 1326.84], [2562.47, 1333.56], [2569.86, 1327.83], [2568.44, 1326.01], [2570.88, 1324.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2010.96, 1464.61], [2013.12, 1462.07], [2015.14, 1463.79], [2018.17, 1460.24], [2014.52, 1457.13], [2016.07, 1455.31], [2008.73, 1449.06], [2002.0, 1456.98], [2010.96, 1464.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2880.17, 1654.8], [2870.35, 1652.87], [2868.81, 1660.71], [2879.93, 1662.9], [2880.93, 1657.85], [2879.62, 1657.58], [2880.17, 1654.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2614.16, 1908.44], [2613.67, 1899.15], [2604.63, 1899.63], [2605.43, 1914.74], [2612.86, 1914.36], [2612.55, 1908.52], [2614.16, 1908.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2696.64, 1546.8], [2686.96, 1546.64], [2686.67, 1564.12], [2696.34, 1564.28], [2696.64, 1546.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2450.99, 1599.58], [2446.71, 1596.76], [2442.88, 1602.54], [2447.15, 1605.37], [2450.99, 1599.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2443.92, 1126.29], [2436.83, 1119.96], [2430.61, 1126.93], [2432.69, 1128.78], [2430.46, 1131.28], [2435.47, 1135.76], [2443.92, 1126.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2549.97, 1583.66], [2544.45, 1580.23], [2540.88, 1585.99], [2546.41, 1589.41], [2549.97, 1583.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1900.08, 1471.49], [1902.41, 1470.0], [1903.16, 1471.14], [1905.43, 1469.68], [1904.38, 1468.05], [1906.54, 1466.67], [1899.22, 1455.29], [1892.45, 1459.65], [1900.08, 1471.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2768.65, 1504.96], [2764.11, 1504.76], [2763.84, 1511.25], [2768.37, 1511.44], [2768.65, 1504.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2252.91, 1411.98], [2253.91, 1410.53], [2254.75, 1411.09], [2261.59, 1401.15], [2253.65, 1395.69], [2246.94, 1405.44], [2247.35, 1405.72], [2246.21, 1407.38], [2252.91, 1411.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2352.91, 1355.92], [2337.14, 1345.38], [2332.56, 1352.22], [2348.33, 1362.76], [2352.91, 1355.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2460.57, 1138.86], [2456.17, 1134.25], [2449.17, 1140.95], [2456.31, 1148.42], [2461.85, 1143.12], [2459.12, 1140.25], [2460.57, 1138.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2762.38, 1683.69], [2754.29, 1681.69], [2751.67, 1692.33], [2759.77, 1694.32], [2762.38, 1683.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2500.14, 1943.23], [2493.36, 1932.15], [2486.27, 1936.48], [2493.04, 1947.56], [2500.14, 1943.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2066.68, 1516.22], [2064.46, 1514.14], [2063.06, 1515.63], [2060.09, 1512.87], [2059.38, 1513.64], [2057.37, 1511.76], [2054.94, 1514.35], [2057.13, 1516.4], [2055.39, 1518.27], [2064.9, 1527.15], [2069.27, 1522.47], [2064.77, 1518.28], [2066.68, 1516.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2182.38, 1275.24], [2176.02, 1267.28], [2168.79, 1273.06], [2175.15, 1281.02], [2182.38, 1275.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2547.53, 1394.34], [2542.71, 1387.53], [2539.29, 1389.95], [2544.12, 1396.75], [2547.53, 1394.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2695.37, 1704.12], [2690.95, 1702.99], [2689.42, 1708.96], [2693.84, 1710.09], [2695.37, 1704.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2597.23, 1873.53], [2590.51, 1871.95], [2588.98, 1878.45], [2595.69, 1880.03], [2597.23, 1873.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2275.79, 1230.59], [2270.8, 1225.92], [2266.09, 1230.95], [2271.09, 1235.63], [2275.79, 1230.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2808.51, 1757.04], [2810.58, 1744.81], [2803.9, 1743.67], [2803.76, 1744.54], [2801.63, 1744.19], [2801.25, 1746.46], [2799.6, 1746.17], [2798.78, 1750.97], [2799.84, 1751.14], [2799.1, 1755.44], [2808.51, 1757.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2480.32, 1396.53], [2477.37, 1393.74], [2476.05, 1395.14], [2472.14, 1391.46], [2465.23, 1398.78], [2472.09, 1405.24], [2480.32, 1396.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2044.42, 1486.85], [2035.81, 1479.21], [2032.0, 1483.5], [2040.62, 1491.14], [2044.42, 1486.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2566.6, 1260.81], [2561.79, 1254.23], [2552.0, 1261.38], [2554.15, 1264.32], [2553.13, 1265.06], [2555.79, 1268.71], [2566.6, 1260.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2358.35, 1257.43], [2354.05, 1253.65], [2351.81, 1256.18], [2356.11, 1259.97], [2358.35, 1257.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2801.19, 1607.23], [2781.6, 1606.27], [2781.41, 1611.98], [2783.13, 1612.02], [2783.11, 1614.78], [2800.82, 1615.59], [2801.19, 1607.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2738.57, 1496.0], [2731.67, 1495.78], [2731.47, 1501.93], [2738.37, 1502.16], [2738.57, 1496.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2393.57, 1374.27], [2386.96, 1369.9], [2379.98, 1380.43], [2380.13, 1380.53], [2378.83, 1382.49], [2385.29, 1386.77], [2393.57, 1374.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2514.98, 1513.17], [2515.35, 1512.62], [2512.22, 1510.54], [2510.41, 1513.27], [2509.06, 1512.36], [2504.22, 1519.66], [2511.51, 1524.51], [2517.79, 1515.04], [2514.98, 1513.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2337.18, 1162.85], [2333.66, 1158.59], [2329.0, 1162.44], [2332.52, 1166.69], [2337.18, 1162.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2181.93, 1287.5], [2178.29, 1282.46], [2175.69, 1284.33], [2179.33, 1289.38], [2181.93, 1287.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2346.76, 1427.87], [2347.85, 1426.05], [2348.51, 1426.43], [2351.91, 1420.72], [2348.32, 1418.58], [2343.81, 1426.11], [2346.76, 1427.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2517.13, 1594.1], [2518.55, 1592.25], [2520.57, 1593.81], [2526.38, 1586.23], [2521.4, 1582.41], [2519.56, 1584.81], [2517.56, 1583.26], [2513.26, 1588.88], [2515.43, 1590.54], [2514.35, 1591.96], [2517.13, 1594.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2765.74, 1412.69], [2760.73, 1412.37], [2760.37, 1417.99], [2765.38, 1418.31], [2765.74, 1412.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2485.55, 1332.64], [2480.75, 1328.6], [2476.34, 1333.83], [2481.14, 1337.88], [2485.55, 1332.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2075.91, 1452.38], [2071.23, 1447.86], [2070.59, 1448.52], [2067.8, 1445.82], [2066.99, 1446.66], [2066.37, 1446.06], [2064.26, 1448.25], [2065.34, 1449.29], [2063.2, 1451.52], [2071.91, 1459.93], [2076.36, 1455.32], [2074.66, 1453.67], [2075.91, 1452.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2156.01, 1546.11], [2150.79, 1540.47], [2145.62, 1545.27], [2150.84, 1550.89], [2156.01, 1546.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2751.26, 1549.22], [2741.62, 1548.83], [2740.98, 1564.18], [2750.63, 1564.58], [2751.26, 1549.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2782.86, 1432.35], [2774.7, 1432.1], [2774.42, 1440.97], [2782.58, 1441.21], [2782.86, 1432.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2487.59, 1422.36], [2483.28, 1418.64], [2479.62, 1422.89], [2483.93, 1426.61], [2487.59, 1422.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2501.13, 1366.81], [2494.6, 1360.64], [2486.45, 1369.29], [2492.98, 1375.44], [2501.13, 1366.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2547.31, 1533.3], [2540.69, 1528.33], [2535.49, 1535.25], [2536.79, 1536.22], [2534.22, 1539.65], [2539.54, 1543.65], [2547.31, 1533.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2710.48, 1466.18], [2710.61, 1463.63], [2706.63, 1463.42], [2706.52, 1465.61], [2703.71, 1465.48], [2703.09, 1477.66], [2705.69, 1477.8], [2705.6, 1479.59], [2711.45, 1479.9], [2712.15, 1466.26], [2710.48, 1466.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2383.61, 1559.29], [2365.74, 1547.74], [2361.2, 1554.75], [2381.19, 1567.69], [2382.99, 1564.91], [2380.87, 1563.54], [2383.61, 1559.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2636.98, 1344.82], [2631.56, 1338.01], [2629.41, 1339.71], [2628.45, 1338.49], [2624.26, 1341.83], [2624.62, 1342.29], [2619.54, 1346.32], [2625.56, 1353.9], [2636.98, 1344.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2517.37, 1327.67], [2513.01, 1321.39], [2500.84, 1329.85], [2505.78, 1336.97], [2516.2, 1329.73], [2515.61, 1328.89], [2517.37, 1327.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1915.73, 1519.21], [1923.59, 1510.81], [1920.16, 1507.6], [1916.84, 1511.15], [1915.53, 1509.92], [1910.98, 1514.78], [1915.73, 1519.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2822.28, 1803.11], [2822.57, 1801.87], [2825.08, 1802.43], [2827.93, 1789.8], [2820.23, 1788.06], [2819.55, 1791.07], [2817.71, 1790.66], [2816.72, 1794.98], [2817.82, 1795.23], [2816.75, 1799.97], [2818.88, 1800.46], [2818.47, 1802.25], [2822.28, 1803.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2924.79, 1504.2], [2919.97, 1503.89], [2919.54, 1510.54], [2924.36, 1510.85], [2924.79, 1504.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2575.5, 2126.86], [2570.98, 2119.28], [2560.91, 2125.29], [2562.84, 2128.52], [2561.28, 2129.44], [2563.86, 2133.78], [2575.5, 2126.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2329.7, 1279.9], [2325.33, 1275.97], [2322.8, 1278.76], [2327.18, 1282.71], [2329.7, 1279.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2023.25, 1503.98], [2016.23, 1497.56], [2011.75, 1502.46], [2015.09, 1505.52], [2014.28, 1506.41], [2021.14, 1512.69], [2025.44, 1508.01], [2022.24, 1505.09], [2023.25, 1503.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2746.25, 1441.47], [2745.08, 1425.14], [2736.28, 1425.76], [2737.21, 1438.77], [2740.64, 1438.52], [2740.88, 1441.85], [2746.25, 1441.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2787.58, 1689.73], [2779.1, 1688.1], [2777.02, 1698.91], [2785.51, 1700.53], [2787.58, 1689.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2856.98, 1709.3], [2848.35, 1707.61], [2846.46, 1717.24], [2855.08, 1718.93], [2856.98, 1709.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2237.19, 1456.99], [2232.79, 1454.31], [2229.9, 1459.05], [2234.31, 1461.74], [2237.19, 1456.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2183.38, 1341.67], [2176.58, 1333.65], [2170.88, 1338.49], [2177.67, 1346.51], [2183.38, 1341.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2220.71, 1312.2], [2211.66, 1301.4], [2206.23, 1305.95], [2215.28, 1316.75], [2220.71, 1312.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2734.29, 1689.31], [2736.62, 1676.63], [2729.75, 1675.35], [2728.84, 1680.31], [2727.79, 1680.12], [2726.71, 1686.01], [2726.87, 1686.04], [2726.53, 1687.88], [2734.29, 1689.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2409.05, 1436.87], [2403.18, 1433.13], [2398.65, 1440.25], [2404.51, 1443.99], [2409.05, 1436.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2315.49, 1506.01], [2311.92, 1503.81], [2308.01, 1510.16], [2316.18, 1515.2], [2319.62, 1509.61], [2315.02, 1506.78], [2315.49, 1506.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2594.45, 1456.47], [2597.8, 1454.79], [2598.34, 1455.86], [2609.21, 1450.38], [2605.87, 1443.77], [2603.74, 1444.84], [2603.21, 1443.8], [2595.01, 1447.94], [2595.79, 1449.49], [2593.42, 1450.69], [2594.11, 1452.07], [2592.6, 1452.82], [2594.45, 1456.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2506.54, 1242.22], [2501.21, 1235.04], [2491.05, 1242.6], [2496.38, 1249.77], [2506.54, 1242.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2379.67, 1088.03], [2374.68, 1082.9], [2367.53, 1089.87], [2372.52, 1094.99], [2379.67, 1088.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2484.72, 1351.7], [2478.44, 1345.78], [2468.62, 1356.19], [2474.9, 1362.11], [2484.72, 1351.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2252.2, 1352.77], [2246.58, 1349.06], [2242.11, 1355.84], [2247.72, 1359.55], [2252.2, 1352.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2434.56, 1155.16], [2439.14, 1149.84], [2443.68, 1153.74], [2447.46, 1149.35], [2439.97, 1142.9], [2431.61, 1152.61], [2434.56, 1155.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2494.15, 1453.52], [2482.93, 1446.14], [2478.78, 1452.45], [2490.0, 1459.82], [2494.15, 1453.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2780.59, 1585.38], [2774.11, 1585.11], [2773.91, 1589.93], [2780.4, 1590.2], [2780.59, 1585.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2405.46, 1574.21], [2399.94, 1570.43], [2396.72, 1575.14], [2402.23, 1578.92], [2405.46, 1574.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2233.42, 1430.21], [2226.48, 1425.91], [2222.42, 1432.47], [2229.36, 1436.77], [2233.42, 1430.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2322.73, 1175.85], [2318.02, 1171.56], [2316.68, 1173.03], [2317.66, 1173.92], [2315.95, 1175.79], [2319.68, 1179.19], [2322.73, 1175.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2194.51, 1931.11], [2190.21, 1926.85], [2183.69, 1933.43], [2184.27, 1934.02], [2181.04, 1937.29], [2186.57, 1942.77], [2195.26, 1933.98], [2193.45, 1932.18], [2194.51, 1931.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2244.68, 2106.55], [2249.48, 2101.7], [2242.87, 2095.17], [2238.08, 2100.01], [2244.68, 2106.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2146.11, 2283.36], [2141.28, 2278.9], [2139.87, 2280.42], [2139.43, 2280.01], [2131.17, 2288.92], [2136.43, 2293.79], [2146.11, 2283.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2176.3, 2083.31], [2170.73, 2077.6], [2165.26, 2082.93], [2170.83, 2088.64], [2176.3, 2083.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2167.32, 2074.26], [2161.97, 2068.21], [2155.56, 2073.88], [2160.91, 2079.93], [2167.32, 2074.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2102.6, 2152.7], [2098.46, 2148.02], [2095.71, 2150.46], [2099.85, 2155.13], [2102.6, 2152.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2224.52, 1928.31], [2219.26, 1923.68], [2213.14, 1930.62], [2218.39, 1935.26], [2224.52, 1928.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1553.19, 2520.59], [1571.52, 2514.28], [1569.08, 2507.2], [1567.92, 2507.6], [1565.99, 2501.99], [1548.34, 2508.05], [1550.01, 2512.92], [1548.01, 2513.61], [1550.47, 2520.74], [1551.74, 2520.3], [1553.19, 2520.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.177, "pop": 0, "jobs": 177}}, {"shape": {"outer": [[1934.15, 2126.5], [1936.53, 2124.24], [1938.07, 2125.86], [1942.1, 2122.02], [1932.26, 2111.67], [1928.89, 2114.87], [1927.55, 2113.47], [1924.51, 2116.37], [1934.15, 2126.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1306.76, 2644.28], [1303.11, 2638.06], [1304.14, 2637.45], [1299.06, 2628.81], [1297.57, 2629.69], [1294.03, 2623.69], [1284.97, 2628.99], [1288.57, 2635.11], [1287.7, 2635.62], [1290.86, 2640.97], [1295.17, 2638.44], [1300.69, 2647.81], [1306.76, 2644.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[1869.12, 1955.21], [1862.53, 1948.77], [1859.14, 1952.26], [1859.75, 1952.85], [1853.91, 1958.83], [1859.87, 1964.65], [1869.12, 1955.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2297.52, 2228.82], [2292.12, 2223.14], [2281.09, 2233.64], [2286.5, 2239.32], [2297.52, 2228.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2275.25, 2185.92], [2270.27, 2181.2], [2265.87, 2185.82], [2270.84, 2190.56], [2275.25, 2185.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2313.63, 1987.48], [2311.14, 1984.98], [2309.11, 1987.01], [2307.72, 1985.62], [2309.21, 1984.12], [2306.99, 1981.91], [2299.87, 1989.05], [2300.48, 1989.67], [2297.9, 1992.26], [2303.4, 1997.74], [2313.63, 1987.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2130.78, 2217.94], [2126.5, 2214.03], [2122.49, 2218.39], [2126.77, 2222.31], [2130.78, 2217.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2273.36, 2097.9], [2266.84, 2091.39], [2255.02, 2103.25], [2261.55, 2109.75], [2273.36, 2097.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2176.75, 2271.29], [2178.41, 2269.54], [2179.29, 2270.38], [2182.94, 2266.54], [2182.19, 2265.82], [2182.98, 2264.99], [2177.66, 2259.92], [2171.55, 2266.34], [2176.75, 2271.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2251.97, 2276.34], [2249.15, 2273.58], [2243.93, 2278.9], [2246.76, 2281.67], [2251.97, 2276.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2172.54, 2106.45], [2167.91, 2101.43], [2164.24, 2104.8], [2163.53, 2104.03], [2156.46, 2110.55], [2161.81, 2116.35], [2172.54, 2106.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1988.16, 1988.14], [1983.75, 1984.09], [1981.92, 1986.08], [1980.91, 1985.15], [1978.52, 1987.76], [1977.79, 1987.1], [1974.59, 1990.6], [1976.28, 1992.16], [1974.82, 1993.76], [1978.46, 1997.1], [1978.14, 1997.44], [1979.61, 1998.78], [1986.71, 1991.05], [1986.05, 1990.43], [1988.16, 1988.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2041.98, 2182.78], [2037.39, 2177.61], [2030.73, 2183.53], [2035.33, 2188.7], [2041.98, 2182.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1801.63, 1965.54], [1795.18, 1958.86], [1789.11, 1964.73], [1795.56, 1971.41], [1801.63, 1965.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2476.73, 2215.0], [2479.94, 2212.03], [2481.01, 2213.18], [2484.22, 2210.22], [2480.0, 2205.66], [2476.4, 2208.98], [2475.32, 2207.81], [2473.03, 2209.93], [2471.83, 2208.63], [2468.81, 2211.43], [2470.05, 2212.77], [2466.91, 2215.67], [2467.62, 2216.45], [2466.34, 2217.63], [2470.91, 2222.57], [2477.82, 2216.19], [2476.73, 2215.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2225.83, 2114.38], [2227.72, 2112.42], [2229.17, 2113.81], [2231.87, 2111.0], [2220.2, 2099.77], [2215.61, 2104.54], [2225.83, 2114.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2289.31, 2199.16], [2286.48, 2196.23], [2279.65, 2202.86], [2282.47, 2205.78], [2289.31, 2199.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2415.34, 2124.06], [2410.86, 2119.36], [2401.95, 2127.88], [2406.42, 2132.57], [2415.34, 2124.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2336.6, 2188.69], [2333.62, 2185.8], [2329.29, 2190.25], [2332.27, 2193.16], [2336.6, 2188.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2398.39, 2089.63], [2393.39, 2084.61], [2392.43, 2085.57], [2391.49, 2084.63], [2384.44, 2091.66], [2390.38, 2097.61], [2398.39, 2089.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2000.83, 2049.8], [2005.63, 2044.76], [2004.75, 2043.92], [2006.23, 2042.37], [2002.48, 2038.79], [2000.16, 2041.24], [1999.35, 2040.46], [1995.65, 2044.33], [1996.67, 2045.3], [1995.65, 2046.38], [1998.55, 2049.14], [1999.3, 2048.35], [2000.83, 2049.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1934.48, 2157.15], [1928.22, 2151.41], [1923.83, 2156.2], [1918.64, 2151.43], [1914.47, 2155.97], [1919.87, 2160.93], [1919.13, 2161.74], [1925.19, 2167.3], [1934.48, 2157.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2533.64, 2246.29], [2528.84, 2241.72], [2524.42, 2246.38], [2529.22, 2250.95], [2533.64, 2246.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2085.84, 2306.49], [2083.93, 2304.51], [2082.66, 2305.73], [2081.12, 2304.13], [2073.64, 2311.34], [2074.6, 2312.34], [2073.29, 2313.6], [2078.12, 2318.62], [2087.13, 2309.92], [2084.8, 2307.5], [2085.84, 2306.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2021.6, 2044.17], [2019.44, 2041.91], [2014.91, 2046.24], [2017.08, 2048.5], [2021.6, 2044.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1958.77, 2135.05], [1953.45, 2129.41], [1945.23, 2137.17], [1950.56, 2142.81], [1958.77, 2135.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2350.57, 2193.63], [2346.8, 2189.92], [2342.14, 2194.64], [2345.91, 2198.37], [2350.57, 2193.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2268.6, 2198.35], [2264.23, 2193.87], [2251.91, 2205.86], [2257.42, 2211.52], [2266.43, 2202.74], [2265.29, 2201.58], [2268.6, 2198.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2180.66, 2458.19], [2174.63, 2452.88], [2169.57, 2458.61], [2171.99, 2460.73], [2168.02, 2465.23], [2171.63, 2468.43], [2180.66, 2458.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2300.52, 2238.61], [2303.47, 2235.39], [2298.66, 2230.99], [2295.84, 2234.11], [2300.52, 2238.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2287.86, 2045.54], [2292.66, 2040.83], [2293.36, 2041.53], [2296.56, 2038.39], [2295.5, 2037.32], [2299.64, 2033.27], [2294.64, 2028.18], [2290.33, 2032.41], [2289.45, 2031.51], [2286.25, 2034.66], [2286.98, 2035.41], [2284.46, 2037.88], [2285.21, 2038.65], [2283.1, 2040.71], [2287.86, 2045.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2079.5, 2162.13], [2073.02, 2155.99], [2067.25, 2162.08], [2073.73, 2168.22], [2079.5, 2162.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1957.99, 2114.42], [1954.38, 2110.73], [1951.33, 2113.71], [1954.93, 2117.41], [1957.99, 2114.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2272.53, 2127.06], [2279.35, 2133.65], [2295.95, 2115.94], [2289.37, 2109.42], [2272.53, 2127.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[2263.62, 2559.86], [2258.67, 2555.38], [2255.67, 2558.7], [2260.62, 2563.18], [2263.62, 2559.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2022.9, 2162.09], [2017.87, 2157.3], [2015.76, 2159.5], [2015.38, 2159.13], [2007.44, 2167.46], [2009.19, 2169.13], [2008.56, 2169.8], [2012.7, 2173.76], [2021.17, 2164.88], [2020.68, 2164.42], [2022.9, 2162.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2096.44, 2396.46], [2104.54, 2387.97], [2098.81, 2382.51], [2089.32, 2392.46], [2092.27, 2395.26], [2093.65, 2393.8], [2096.44, 2396.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2230.74, 2502.16], [2225.65, 2497.28], [2223.64, 2499.38], [2222.82, 2498.6], [2216.31, 2505.39], [2223.02, 2511.81], [2229.83, 2504.71], [2229.03, 2503.94], [2230.74, 2502.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2091.96, 2191.7], [2096.51, 2187.12], [2094.16, 2184.78], [2095.24, 2183.7], [2087.77, 2176.27], [2081.35, 2182.74], [2089.6, 2190.93], [2090.39, 2190.14], [2091.96, 2191.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2534.08, 2263.55], [2528.91, 2258.58], [2518.18, 2269.75], [2523.34, 2274.72], [2534.08, 2263.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2187.98, 2052.62], [2182.22, 2046.83], [2176.27, 2052.76], [2182.03, 2058.54], [2187.98, 2052.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2333.66, 2011.17], [2328.7, 2006.95], [2327.18, 2008.74], [2326.45, 2008.11], [2320.53, 2015.08], [2326.23, 2019.91], [2333.66, 2011.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1407.9, 2128.98], [1385.36, 2124.27], [1383.92, 2131.2], [1406.44, 2135.92], [1407.9, 2128.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2326.64, 2208.03], [2322.87, 2204.58], [2320.5, 2207.18], [2324.27, 2210.62], [2326.64, 2208.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[1290.81, 2820.15], [1291.04, 2826.36], [1303.25, 2825.88], [1303.02, 2819.67], [1290.81, 2820.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1860.37, 1935.19], [1857.87, 1932.65], [1853.34, 1937.13], [1855.84, 1939.66], [1860.37, 1935.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1988.99, 2060.63], [1991.99, 2057.65], [1992.73, 2058.4], [1995.27, 2055.88], [1989.04, 2049.59], [1983.49, 2055.08], [1988.99, 2060.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1317.87, 2495.93], [1319.92, 2500.49], [1326.86, 2497.36], [1324.8, 2492.8], [1317.87, 2495.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2543.69, 2269.85], [2540.81, 2266.73], [2537.9, 2269.4], [2537.25, 2268.69], [2527.27, 2277.89], [2531.57, 2282.55], [2542.16, 2272.79], [2541.39, 2271.96], [2543.69, 2269.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2240.23, 2584.69], [2230.72, 2575.8], [2228.21, 2578.49], [2230.77, 2580.88], [2226.94, 2584.98], [2233.89, 2591.47], [2240.23, 2584.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1829.83, 1978.31], [1823.61, 1972.43], [1821.4, 1974.76], [1820.34, 1973.77], [1814.05, 1980.44], [1821.34, 1987.31], [1829.83, 1978.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1784.43, 2223.06], [1861.27, 2206.69], [1856.55, 2182.28], [1817.81, 2190.75], [1812.93, 2169.0], [1774.84, 2177.22], [1784.43, 2223.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1802}}, {"shape": {"outer": [[2014.89, 2035.06], [2009.69, 2029.82], [2004.82, 2034.66], [2010.02, 2039.88], [2014.89, 2035.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2214.48, 2277.07], [2211.48, 2273.88], [2206.81, 2278.28], [2209.81, 2281.46], [2214.48, 2277.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2265.9, 2020.86], [2272.88, 2027.31], [2284.6, 2014.72], [2277.81, 2008.3], [2265.9, 2020.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2199.07, 2044.18], [2196.56, 2041.42], [2192.93, 2044.68], [2195.44, 2047.46], [2199.07, 2044.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[1357.47, 2592.3], [1360.77, 2598.05], [1366.03, 2595.02], [1362.73, 2589.28], [1357.47, 2592.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2401.76, 2133.88], [2397.72, 2130.59], [2388.93, 2141.37], [2394.28, 2145.73], [2401.69, 2136.63], [2400.39, 2135.56], [2401.76, 2133.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1847.73, 1995.77], [1843.32, 1991.47], [1835.21, 1999.8], [1839.62, 2004.1], [1847.73, 1995.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1732.6, 2451.07], [1745.69, 2448.33], [1740.01, 2418.48], [1726.08, 2422.36], [1732.6, 2451.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.266, "pop": 0, "jobs": 266}}, {"shape": {"outer": [[2237.5, 2157.31], [2234.54, 2154.37], [2228.67, 2160.3], [2231.64, 2163.23], [2237.5, 2157.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2257.27, 2268.83], [2267.44, 2258.51], [2261.49, 2252.65], [2250.49, 2263.82], [2252.47, 2265.78], [2253.31, 2264.93], [2257.27, 2268.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2187.27, 2091.08], [2181.86, 2085.4], [2178.63, 2088.47], [2177.24, 2087.01], [2172.34, 2091.68], [2179.15, 2098.82], [2187.27, 2091.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2081.64, 2080.56], [2076.74, 2075.28], [2069.41, 2082.09], [2074.31, 2087.37], [2081.64, 2080.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1378.18, 2735.96], [1378.69, 2748.45], [1384.52, 2748.17], [1384.68, 2751.7], [1382.88, 2751.79], [1383.31, 2761.15], [1393.02, 2760.68], [1392.42, 2749.14], [1393.72, 2749.1], [1393.15, 2735.35], [1390.78, 2735.45], [1390.75, 2734.17], [1382.53, 2734.56], [1382.61, 2735.74], [1378.18, 2735.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[2179.58, 2177.69], [2173.55, 2171.76], [2165.61, 2179.84], [2171.63, 2185.76], [2179.58, 2177.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2050.03, 2193.57], [2045.22, 2188.91], [2040.38, 2193.92], [2045.18, 2198.57], [2050.03, 2193.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1998.66, 2066.78], [2003.21, 2062.08], [1998.43, 2057.4], [1993.93, 2062.06], [1998.66, 2066.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2362.87, 2204.62], [2375.7, 2191.4], [2370.81, 2186.81], [2358.26, 2199.79], [2362.87, 2204.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.078, "pop": 0, "jobs": 78}}, {"shape": {"outer": [[2284.11, 1975.59], [2290.8, 1969.09], [2291.22, 1969.52], [2293.79, 1967.03], [2287.48, 1960.53], [2285.84, 1962.12], [2285.66, 1961.93], [2283.13, 1964.39], [2282.78, 1964.02], [2280.73, 1966.01], [2281.44, 1966.73], [2278.39, 1969.69], [2284.11, 1975.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2079.06, 2147.47], [2077.12, 2145.13], [2075.15, 2146.75], [2073.6, 2144.87], [2068.77, 2148.85], [2072.27, 2153.08], [2079.06, 2147.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2054.91, 2053.18], [2049.97, 2048.36], [2040.41, 2058.14], [2040.87, 2058.59], [2039.35, 2060.14], [2043.83, 2064.52], [2054.91, 2053.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1381.7, 2661.58], [1396.64, 2651.28], [1388.74, 2639.79], [1380.57, 2645.41], [1383.84, 2650.15], [1377.06, 2654.82], [1381.7, 2661.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2064.77, 2062.65], [2058.93, 2057.06], [2048.99, 2067.44], [2054.82, 2073.03], [2064.77, 2062.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2022.2, 2184.58], [2019.04, 2181.52], [2014.7, 2185.98], [2017.86, 2189.05], [2022.2, 2184.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1982.81, 2207.98], [1980.2, 2205.27], [1978.75, 2206.67], [1975.64, 2203.44], [1969.05, 2209.79], [1974.77, 2215.73], [1982.81, 2207.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1915.54, 2146.06], [1917.98, 2143.44], [1919.41, 2144.76], [1922.32, 2141.63], [1920.9, 2140.32], [1921.75, 2139.41], [1911.34, 2129.76], [1907.88, 2133.51], [1908.68, 2134.24], [1906.96, 2136.1], [1907.72, 2136.8], [1906.72, 2137.89], [1915.54, 2146.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2140.31, 2217.38], [2136.03, 2213.46], [2132.35, 2217.47], [2136.63, 2221.4], [2140.31, 2217.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2318.84, 2246.22], [2316.44, 2244.03], [2317.59, 2242.7], [2314.44, 2239.76], [2314.79, 2239.34], [2310.17, 2235.04], [2309.76, 2235.44], [2307.89, 2233.64], [2302.22, 2239.47], [2314.28, 2251.0], [2318.84, 2246.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1818.24, 2319.91], [1835.68, 2316.1], [1837.41, 2324.0], [1855.91, 2319.96], [1841.99, 2256.26], [1829.29, 2259.04], [1826.8, 2247.6], [1795.23, 2254.51], [1803.16, 2290.78], [1800.54, 2291.36], [1809.08, 2330.39], [1820.01, 2328.0], [1818.24, 2319.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2109}}, {"shape": {"outer": [[2028.88, 2116.29], [2023.26, 2111.16], [2018.14, 2116.79], [2023.76, 2121.91], [2028.88, 2116.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1524.16, 2689.95], [1532.64, 2688.74], [1531.8, 2682.77], [1523.31, 2683.98], [1524.16, 2689.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1350.59, 2604.17], [1357.18, 2600.18], [1354.83, 2596.34], [1352.29, 2597.87], [1345.84, 2587.43], [1339.11, 2591.56], [1339.85, 2592.73], [1336.88, 2594.57], [1337.99, 2596.36], [1337.56, 2596.64], [1338.67, 2598.43], [1339.11, 2598.16], [1340.21, 2599.95], [1339.4, 2600.47], [1340.86, 2602.85], [1341.69, 2602.34], [1342.85, 2604.21], [1348.48, 2600.72], [1350.59, 2604.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2151.27, 2311.08], [2147.93, 2307.96], [2143.84, 2312.33], [2147.18, 2315.45], [2151.27, 2311.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1709.96, 2343.8], [1714.98, 2343.39], [1713.91, 2330.35], [1708.89, 2330.76], [1709.96, 2343.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.042, "pop": 0, "jobs": 42}}, {"shape": {"outer": [[2337.34, 2056.43], [2342.25, 2051.44], [2338.11, 2047.37], [2336.16, 2049.36], [2332.63, 2045.89], [2328.39, 2050.21], [2331.9, 2053.66], [2333.19, 2052.35], [2337.34, 2056.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2218.83, 2349.66], [2206.83, 2337.45], [2200.87, 2343.3], [2212.89, 2355.51], [2218.83, 2349.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2005.27, 2144.36], [1999.14, 2138.18], [1988.14, 2149.1], [1994.26, 2155.27], [2005.27, 2144.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2012.86, 2095.3], [2006.68, 2089.19], [1998.31, 2097.67], [1999.22, 2098.57], [1997.61, 2100.21], [2002.88, 2105.4], [2012.86, 2095.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2209.47, 1922.79], [2202.73, 1916.02], [2196.08, 1922.63], [2202.83, 1929.41], [2209.47, 1922.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1267.95, 2666.72], [1272.33, 2671.1], [1278.47, 2664.97], [1274.08, 2660.6], [1267.95, 2666.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2034.71, 2247.58], [2026.13, 2239.4], [2021.74, 2244.0], [2024.26, 2246.41], [2023.18, 2247.54], [2029.25, 2253.32], [2034.71, 2247.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2496.09, 2203.34], [2493.86, 2201.06], [2489.79, 2205.02], [2492.01, 2207.3], [2496.09, 2203.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2027.28, 2259.35], [2019.97, 2252.34], [2016.61, 2255.86], [2014.01, 2253.38], [2011.24, 2256.27], [2014.03, 2258.94], [2015.05, 2257.87], [2022.17, 2264.7], [2027.28, 2259.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2339.24, 2022.34], [2334.3, 2017.88], [2326.76, 2026.22], [2328.17, 2027.5], [2327.27, 2028.49], [2329.04, 2030.09], [2327.08, 2032.27], [2331.38, 2036.16], [2336.22, 2030.8], [2333.68, 2028.51], [2339.24, 2022.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1919.11, 1921.81], [1913.39, 1916.05], [1910.48, 1918.95], [1909.97, 1918.44], [1903.63, 1924.74], [1904.77, 1925.89], [1901.64, 1929.0], [1906.72, 1934.11], [1919.11, 1921.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1899.78, 1903.1], [1895.82, 1899.13], [1886.72, 1908.24], [1892.36, 1913.86], [1899.83, 1906.39], [1898.16, 1904.72], [1899.78, 1903.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2268.23, 2125.49], [2265.24, 2123.0], [2261.09, 2127.95], [2264.07, 2130.44], [2268.23, 2125.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2254.75, 2169.02], [2249.7, 2164.29], [2245.2, 2169.09], [2250.26, 2173.81], [2254.75, 2169.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1943.55, 2117.22], [1946.21, 2114.68], [1947.15, 2115.66], [1949.74, 2113.2], [1949.06, 2112.49], [1950.02, 2111.57], [1939.54, 2100.57], [1936.49, 2103.48], [1937.53, 2104.58], [1935.64, 2106.38], [1936.3, 2107.08], [1935.03, 2108.29], [1943.55, 2117.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1982.99, 2196.1], [1980.09, 2193.5], [1976.48, 2197.52], [1979.39, 2200.13], [1982.99, 2196.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1200.42, 2579.43], [1216.4, 2573.64], [1213.18, 2564.48], [1219.25, 2562.33], [1215.14, 2550.73], [1197.53, 2556.85], [1202.22, 2570.0], [1197.65, 2571.65], [1200.42, 2579.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[2277.43, 2267.64], [2270.13, 2260.76], [2260.28, 2271.23], [2267.57, 2278.1], [2277.43, 2267.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2000.97, 2200.51], [1996.66, 2195.92], [1992.02, 2200.28], [1996.33, 2204.87], [2000.97, 2200.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2090.56, 2261.53], [2086.07, 2256.44], [2083.09, 2259.07], [2087.58, 2264.16], [2090.56, 2261.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1997.95, 2075.22], [1991.34, 2068.44], [1979.25, 2080.56], [1986.12, 2087.27], [1997.95, 2075.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2547.04, 2259.39], [2542.73, 2255.15], [2538.45, 2259.49], [2542.76, 2263.74], [2547.04, 2259.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1281.36, 2761.86], [1288.49, 2761.5], [1288.14, 2755.23], [1281.02, 2755.59], [1281.36, 2761.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2324.82, 2213.15], [2320.01, 2208.25], [2317.34, 2210.88], [2322.15, 2215.78], [2324.82, 2213.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1867.77, 2012.14], [1863.71, 2007.82], [1860.92, 2010.44], [1860.33, 2009.81], [1851.88, 2017.75], [1855.45, 2021.55], [1853.98, 2022.94], [1857.37, 2026.54], [1867.99, 2016.55], [1865.69, 2014.1], [1867.77, 2012.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2218.13, 2153.38], [2213.72, 2148.81], [2206.24, 2156.03], [2211.59, 2161.57], [2217.65, 2155.71], [2216.71, 2154.75], [2218.13, 2153.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2127.8, 2363.18], [2136.16, 2355.35], [2133.61, 2352.63], [2132.25, 2353.89], [2127.74, 2349.09], [2120.42, 2355.94], [2123.87, 2359.62], [2124.19, 2359.32], [2127.8, 2363.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2244.2, 2563.39], [2238.99, 2558.67], [2236.77, 2561.12], [2241.99, 2565.83], [2244.2, 2563.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2208.11, 2069.22], [2202.63, 2063.57], [2193.14, 2072.78], [2198.62, 2078.43], [2208.11, 2069.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1948.7, 1953.17], [1942.17, 1946.96], [1932.53, 1957.09], [1934.8, 1959.25], [1932.33, 1961.85], [1936.59, 1965.89], [1948.7, 1953.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1912.23, 1941.33], [1909.47, 1938.42], [1905.22, 1942.46], [1907.98, 1945.37], [1912.23, 1941.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1233.17, 2381.97], [1241.83, 2391.58], [1250.05, 2384.2], [1246.98, 2380.8], [1257.71, 2371.14], [1252.12, 2364.94], [1233.17, 2381.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[2463.02, 2213.27], [2471.54, 2205.31], [2470.78, 2204.48], [2472.03, 2203.31], [2468.64, 2199.69], [2466.73, 2201.47], [2465.03, 2199.65], [2455.86, 2208.21], [2459.83, 2212.47], [2461.14, 2211.26], [2463.02, 2213.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1918.18, 1996.54], [1916.22, 1994.52], [1914.41, 1996.27], [1912.41, 1994.2], [1904.84, 2001.51], [1905.59, 2002.29], [1901.82, 2005.93], [1907.19, 2011.49], [1919.12, 1999.97], [1916.95, 1997.72], [1918.18, 1996.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1985.96, 2151.67], [1983.24, 2149.18], [1979.24, 2153.55], [1981.96, 2156.04], [1985.96, 2151.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1432.82, 2164.48], [1412.28, 2160.02], [1417.05, 2138.05], [1409.51, 2136.41], [1404.58, 2159.02], [1410.43, 2160.29], [1408.92, 2167.25], [1431.16, 2172.09], [1432.82, 2164.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[1308.76, 2744.61], [1308.36, 2737.72], [1298.13, 2738.32], [1297.73, 2737.83], [1295.48, 2737.95], [1295.02, 2738.5], [1292.05, 2738.67], [1292.53, 2748.15], [1304.03, 2747.48], [1303.95, 2744.89], [1308.76, 2744.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2291.9, 2512.95], [2285.87, 2507.38], [2281.76, 2511.84], [2287.79, 2517.4], [2291.9, 2512.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2045.86, 2139.54], [2050.56, 2134.68], [2043.67, 2128.02], [2038.05, 2133.83], [2043.71, 2139.3], [2044.63, 2138.35], [2045.86, 2139.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2143.13, 2221.67], [2143.93, 2220.77], [2144.87, 2221.61], [2147.68, 2218.46], [2150.55, 2221.03], [2155.74, 2215.24], [2149.52, 2209.68], [2140.72, 2219.52], [2143.13, 2221.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1252.73, 2662.81], [1250.37, 2659.64], [1249.9, 2660.0], [1246.35, 2655.24], [1244.69, 2656.5], [1241.87, 2652.73], [1232.78, 2659.56], [1235.35, 2663.0], [1233.74, 2664.17], [1239.92, 2672.42], [1252.26, 2663.16], [1252.73, 2662.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[1963.42, 2109.61], [1958.65, 2104.41], [1954.14, 2108.55], [1958.91, 2113.75], [1963.42, 2109.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1983.82, 2126.85], [1977.78, 2120.16], [1970.93, 2126.34], [1976.97, 2133.03], [1983.82, 2126.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2157.41, 2255.35], [2158.9, 2253.97], [2159.48, 2254.59], [2168.04, 2246.71], [2167.48, 2246.12], [2170.29, 2243.54], [2166.65, 2239.59], [2163.81, 2242.2], [2161.92, 2240.15], [2153.3, 2248.07], [2154.51, 2249.38], [2153.11, 2250.68], [2157.41, 2255.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2439.22, 2168.29], [2432.73, 2162.08], [2421.07, 2173.95], [2421.03, 2176.41], [2426.38, 2181.27], [2439.22, 2168.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2216.93, 2118.48], [2218.81, 2116.51], [2220.25, 2117.88], [2222.19, 2115.86], [2221.54, 2115.25], [2222.56, 2114.17], [2214.04, 2106.03], [2209.21, 2111.09], [2216.93, 2118.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1263.47, 2677.71], [1261.44, 2675.67], [1260.54, 2676.56], [1254.36, 2670.32], [1247.38, 2677.14], [1255.89, 2685.75], [1262.86, 2678.92], [1262.56, 2678.62], [1263.47, 2677.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2247.99, 2182.69], [2242.65, 2178.02], [2240.72, 2180.23], [2239.58, 2179.23], [2231.75, 2188.14], [2238.23, 2193.82], [2247.99, 2182.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2269.96, 2283.75], [2277.84, 2291.38], [2287.19, 2281.74], [2279.3, 2274.1], [2269.96, 2283.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2011.68, 2231.75], [2005.85, 2225.99], [1997.18, 2234.75], [2003.01, 2240.52], [2011.68, 2231.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2337.81, 2489.87], [2342.85, 2485.03], [2340.92, 2483.03], [2341.69, 2482.3], [2334.8, 2475.13], [2328.41, 2481.26], [2335.71, 2488.87], [2336.31, 2488.3], [2337.81, 2489.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2243.16, 2170.15], [2239.37, 2166.38], [2235.27, 2170.51], [2239.07, 2174.27], [2243.16, 2170.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2312.36, 2136.43], [2306.22, 2130.47], [2295.39, 2141.63], [2301.53, 2147.6], [2312.36, 2136.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2142.54, 2084.27], [2136.95, 2078.15], [2131.38, 2083.24], [2136.99, 2089.36], [2142.54, 2084.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2236.35, 2078.91], [2247.97, 2089.68], [2257.96, 2079.11], [2246.7, 2068.3], [2236.35, 2078.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[1826.36, 1939.11], [1827.65, 1937.69], [1828.86, 1938.78], [1831.4, 1935.99], [1831.72, 1936.27], [1833.3, 1934.54], [1824.17, 1926.21], [1818.74, 1932.16], [1826.36, 1939.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2371.29, 2456.52], [2362.77, 2447.76], [2357.43, 2452.93], [2365.96, 2461.7], [2371.29, 2456.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1948.79, 2124.48], [1945.24, 2120.36], [1942.09, 2123.07], [1945.63, 2127.2], [1948.79, 2124.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2200.65, 1936.32], [2204.64, 1932.07], [2201.83, 1929.24], [2197.74, 1933.59], [2200.65, 1936.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1854.17, 1912.81], [1845.65, 1903.97], [1839.96, 1909.45], [1848.46, 1918.29], [1854.17, 1912.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1905.65, 2074.41], [1900.85, 2070.0], [1896.92, 2074.28], [1901.72, 2078.69], [1905.65, 2074.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2201.29, 2478.02], [2194.49, 2471.11], [2185.41, 2480.07], [2192.21, 2486.97], [2201.29, 2478.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1975.88, 2293.31], [1971.72, 2289.54], [1968.99, 2292.71], [1973.04, 2296.39], [1975.88, 2293.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.015, "pop": 0, "jobs": 15}}, {"shape": {"outer": [[2100.5, 2254.38], [2095.44, 2249.49], [2092.59, 2252.45], [2097.65, 2257.34], [2100.5, 2254.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2158.78, 2100.67], [2152.87, 2094.7], [2147.33, 2100.21], [2153.24, 2106.17], [2158.78, 2100.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2328.39, 2237.78], [2319.2, 2229.57], [2314.0, 2235.38], [2323.19, 2243.61], [2328.39, 2237.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2237.52, 1900.81], [2227.79, 1891.63], [2222.15, 1897.61], [2229.32, 1904.38], [2228.18, 1905.57], [2230.74, 1907.98], [2237.52, 1900.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2168.13, 2000.88], [2162.43, 1996.19], [2157.17, 2002.6], [2162.87, 2007.29], [2168.13, 2000.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1988.71, 2005.42], [1990.72, 2003.31], [1991.78, 2004.33], [1993.6, 2002.43], [1992.49, 2001.38], [1994.76, 1999.0], [1993.55, 1997.83], [1995.49, 1995.8], [1993.02, 1993.44], [1991.07, 1995.48], [1990.02, 1994.47], [1983.93, 2000.84], [1988.71, 2005.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2206.15, 2281.08], [2203.66, 2278.76], [2202.17, 2280.35], [2198.28, 2276.7], [2190.9, 2284.59], [2192.83, 2286.39], [2191.03, 2288.32], [2195.49, 2292.49], [2206.15, 2281.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2209.16, 2129.44], [2211.6, 2126.66], [2213.54, 2128.35], [2215.53, 2126.07], [2214.27, 2124.98], [2215.4, 2123.69], [2207.95, 2117.16], [2206.11, 2119.26], [2204.4, 2117.76], [2201.77, 2120.78], [2203.57, 2122.36], [2202.49, 2123.61], [2209.16, 2129.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2167.1, 2301.45], [2162.73, 2297.38], [2153.43, 2307.32], [2159.48, 2312.97], [2166.69, 2305.26], [2165.01, 2303.69], [2167.1, 2301.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2085.55, 2383.79], [2092.68, 2376.54], [2079.83, 2363.87], [2072.61, 2371.31], [2085.55, 2383.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2268.41, 2298.83], [2261.92, 2292.58], [2256.54, 2298.16], [2264.39, 2305.72], [2268.62, 2301.32], [2267.27, 2300.02], [2268.41, 2298.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2236.04, 2299.2], [2233.32, 2296.54], [2228.34, 2301.6], [2231.06, 2304.27], [2236.04, 2299.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2111.33, 2394.72], [2106.89, 2390.19], [2097.05, 2399.84], [2103.75, 2406.68], [2112.64, 2397.96], [2110.37, 2395.66], [2111.33, 2394.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2042.59, 2123.99], [2035.54, 2116.41], [2026.61, 2124.71], [2032.9, 2131.48], [2032.71, 2131.65], [2034.12, 2133.16], [2036.47, 2130.98], [2035.83, 2130.28], [2042.59, 2123.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2159.69, 2014.62], [2156.44, 2011.61], [2152.74, 2015.51], [2156.03, 2018.63], [2159.69, 2014.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2109.69, 2109.3], [2104.55, 2104.32], [2097.44, 2111.66], [2099.66, 2113.81], [2097.78, 2115.74], [2100.7, 2118.57], [2109.69, 2109.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2122.82, 2031.31], [2117.59, 2026.58], [2112.69, 2032.01], [2117.91, 2036.74], [2122.82, 2031.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2057.78, 2226.61], [2063.39, 2220.74], [2053.89, 2211.69], [2055.67, 2209.83], [2050.21, 2204.62], [2048.06, 2206.88], [2053.06, 2211.66], [2047.41, 2217.6], [2055.9, 2225.69], [2056.34, 2225.22], [2057.78, 2226.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1215.61, 2541.5], [1218.83, 2540.25], [1217.46, 2536.42], [1214.24, 2537.67], [1215.61, 2541.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2586.28, 2305.49], [2582.36, 2301.95], [2578.52, 2306.19], [2582.43, 2309.74], [2586.28, 2305.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1258.74, 2550.26], [1257.01, 2546.99], [1255.8, 2547.62], [1255.08, 2546.28], [1257.54, 2544.98], [1254.25, 2538.73], [1253.7, 2539.02], [1251.83, 2535.46], [1243.17, 2540.02], [1245.17, 2543.82], [1246.69, 2543.02], [1248.15, 2545.78], [1247.39, 2546.17], [1248.68, 2548.61], [1249.43, 2548.21], [1249.71, 2548.76], [1252.03, 2547.54], [1252.88, 2549.16], [1251.15, 2550.07], [1252.87, 2553.34], [1258.74, 2550.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2223.33, 1976.83], [2230.36, 1983.26], [2241.76, 1971.72], [2234.82, 1965.08], [2223.33, 1976.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1783.55, 1989.74], [1787.0, 1986.07], [1782.89, 1982.21], [1783.53, 1981.53], [1776.62, 1975.08], [1771.34, 1980.74], [1779.43, 1988.31], [1780.64, 1987.02], [1783.55, 1989.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2146.4, 2068.73], [2143.93, 2066.38], [2140.0, 2070.5], [2142.47, 2072.86], [2146.4, 2068.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2270.42, 2540.63], [2264.53, 2534.74], [2256.36, 2542.91], [2262.25, 2548.8], [2270.42, 2540.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2131.6, 2128.56], [2126.0, 2122.7], [2115.54, 2132.69], [2121.88, 2139.33], [2130.9, 2130.73], [2130.15, 2129.94], [2131.6, 2128.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2237.66, 2533.31], [2243.26, 2526.86], [2244.31, 2527.76], [2250.41, 2520.75], [2244.18, 2515.34], [2242.39, 2517.4], [2241.29, 2516.44], [2231.38, 2527.85], [2237.66, 2533.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1879.35, 2023.64], [1873.73, 2018.05], [1872.11, 2019.68], [1871.43, 2019.0], [1863.49, 2026.99], [1869.8, 2033.26], [1879.35, 2023.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2618.34, 2305.52], [2612.44, 2300.48], [2606.07, 2307.95], [2611.97, 2312.99], [2618.34, 2305.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2182.72, 2474.07], [2191.69, 2464.31], [2185.97, 2459.06], [2174.64, 2471.39], [2177.5, 2474.01], [2179.86, 2471.45], [2182.72, 2474.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1327.05, 2547.05], [1314.93, 2553.74], [1320.87, 2564.61], [1332.99, 2557.92], [1327.05, 2547.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2568.88, 2312.93], [2582.34, 2299.0], [2574.17, 2291.04], [2560.72, 2305.12], [2568.88, 2312.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[1549.25, 2810.37], [1546.14, 2803.85], [1537.59, 2808.11], [1538.49, 2809.97], [1537.24, 2810.57], [1538.5, 2813.16], [1535.86, 2814.44], [1539.49, 2821.91], [1549.53, 2817.02], [1547.94, 2813.77], [1548.78, 2813.36], [1547.69, 2811.23], [1549.25, 2810.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[1240.43, 2527.95], [1245.5, 2525.36], [1246.74, 2524.74], [1243.87, 2519.15], [1242.64, 2519.79], [1239.68, 2514.01], [1230.26, 2518.81], [1231.48, 2521.17], [1225.83, 2524.08], [1228.28, 2528.89], [1231.05, 2527.48], [1233.3, 2531.89], [1230.86, 2533.14], [1233.16, 2537.68], [1242.84, 2532.71], [1240.43, 2527.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[2212.52, 2484.69], [2207.1, 2479.25], [2198.88, 2487.46], [2204.31, 2492.9], [2212.52, 2484.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2589.25, 2292.01], [2592.86, 2288.39], [2584.93, 2280.59], [2581.24, 2284.3], [2589.25, 2292.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2169.62, 2400.16], [2175.33, 2394.38], [2168.2, 2387.32], [2163.96, 2391.6], [2165.72, 2393.34], [2162.86, 2396.22], [2165.82, 2399.15], [2167.2, 2397.76], [2169.62, 2400.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2265.6, 2177.95], [2260.93, 2173.11], [2255.3, 2178.53], [2259.97, 2183.38], [2265.6, 2177.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2067.3, 2078.59], [2069.02, 2076.85], [2070.41, 2078.22], [2073.1, 2075.5], [2071.45, 2073.86], [2071.91, 2073.41], [2068.57, 2070.11], [2070.36, 2068.3], [2067.86, 2065.83], [2061.2, 2072.56], [2067.3, 2078.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2215.09, 2211.12], [2210.28, 2206.47], [2200.65, 2216.42], [2207.82, 2223.36], [2215.49, 2215.44], [2213.13, 2213.16], [2215.09, 2211.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2376.85, 2129.08], [2384.09, 2120.97], [2377.8, 2115.37], [2376.1, 2117.28], [2375.35, 2116.61], [2369.1, 2123.61], [2370.1, 2124.51], [2369.24, 2125.47], [2372.06, 2127.99], [2373.65, 2126.22], [2376.85, 2129.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1929.77, 1972.52], [1921.35, 1964.23], [1916.11, 1969.56], [1924.53, 1977.85], [1929.77, 1972.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2068.86, 2150.91], [2064.72, 2146.13], [2055.98, 2153.71], [2060.96, 2159.45], [2066.17, 2154.93], [2065.33, 2153.96], [2068.86, 2150.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1425.21, 2199.1], [1431.84, 2200.59], [1436.56, 2178.15], [1429.93, 2176.66], [1425.21, 2199.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2001.56, 2224.54], [1996.03, 2219.62], [1987.87, 2228.77], [1993.39, 2233.7], [2001.56, 2224.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2208.0, 2052.93], [2205.05, 2050.23], [2201.28, 2054.34], [2204.23, 2057.04], [2208.0, 2052.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2320.7, 2482.97], [2315.73, 2478.25], [2310.15, 2484.12], [2315.12, 2488.84], [2320.7, 2482.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2190.66, 2149.67], [2193.22, 2147.09], [2195.43, 2149.29], [2197.54, 2147.17], [2195.31, 2144.95], [2196.89, 2143.36], [2189.88, 2136.4], [2189.12, 2137.16], [2186.54, 2134.61], [2181.92, 2139.26], [2184.66, 2141.97], [2183.79, 2142.84], [2190.66, 2149.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1406.45, 2735.29], [1406.38, 2733.95], [1400.86, 2734.23], [1401.46, 2745.06], [1406.15, 2744.83], [1406.25, 2747.79], [1404.24, 2747.88], [1404.67, 2756.27], [1414.09, 2755.81], [1413.47, 2744.42], [1416.75, 2744.25], [1416.3, 2734.79], [1406.45, 2735.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[2032.51, 2055.09], [2034.76, 2052.85], [2036.78, 2054.88], [2046.01, 2045.68], [2039.81, 2039.44], [2030.34, 2048.87], [2031.43, 2049.96], [2029.41, 2051.96], [2032.51, 2055.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1892.1, 1922.53], [1889.08, 1919.56], [1885.04, 1923.67], [1888.06, 1926.64], [1892.1, 1922.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2495.89, 2231.44], [2498.9, 2228.42], [2496.49, 2226.01], [2493.86, 2228.65], [2491.72, 2226.52], [2483.27, 2235.0], [2488.45, 2240.16], [2496.53, 2232.08], [2495.89, 2231.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1278.22, 2591.95], [1269.96, 2576.64], [1260.47, 2581.73], [1268.73, 2597.05], [1278.22, 2591.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2128.3, 2153.77], [2129.87, 2152.01], [2131.17, 2153.18], [2141.35, 2141.85], [2138.69, 2139.45], [2141.18, 2136.69], [2135.69, 2131.75], [2121.44, 2147.59], [2128.3, 2153.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2350.63, 2103.34], [2358.44, 2095.15], [2353.1, 2090.08], [2345.85, 2097.7], [2345.34, 2097.22], [2343.34, 2099.32], [2346.15, 2102.0], [2347.61, 2100.46], [2350.63, 2103.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1935.01, 2176.4], [1940.87, 2170.46], [1939.44, 2169.04], [1940.93, 2167.52], [1938.09, 2164.72], [1936.65, 2166.16], [1934.16, 2163.7], [1928.06, 2169.88], [1930.09, 2171.9], [1929.4, 2172.61], [1932.24, 2175.41], [1933.12, 2174.53], [1935.01, 2176.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2098.09, 2182.37], [2100.13, 2180.13], [2101.67, 2181.55], [2105.13, 2177.74], [2103.88, 2176.61], [2105.32, 2175.02], [2096.53, 2167.03], [2093.96, 2169.85], [2092.32, 2168.35], [2089.45, 2171.51], [2095.61, 2177.12], [2094.12, 2178.76], [2098.09, 2182.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2132.92, 2065.46], [2130.11, 2062.78], [2126.34, 2066.72], [2129.14, 2069.4], [2132.92, 2065.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2122.77, 2406.7], [2117.58, 2401.47], [2109.3, 2409.69], [2111.84, 2412.25], [2109.99, 2414.08], [2112.65, 2416.76], [2122.77, 2406.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1901.05, 1921.92], [1905.77, 1916.81], [1906.96, 1917.91], [1909.64, 1915.0], [1903.78, 1909.6], [1901.92, 1911.62], [1901.18, 1910.94], [1895.65, 1916.93], [1901.05, 1921.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2196.54, 2490.46], [2193.6, 2487.8], [2184.95, 2497.39], [2187.89, 2500.04], [2196.54, 2490.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1259.6, 2416.3], [1275.51, 2402.57], [1270.83, 2397.15], [1264.41, 2402.69], [1261.37, 2399.14], [1251.87, 2407.33], [1259.6, 2416.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[1879.67, 1906.64], [1881.35, 1904.9], [1882.88, 1906.38], [1892.63, 1896.28], [1886.69, 1890.54], [1875.26, 1902.4], [1879.67, 1906.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2103.12, 2044.44], [2100.27, 2041.63], [2093.67, 2048.31], [2099.6, 2054.17], [2104.72, 2048.99], [2101.64, 2045.94], [2103.12, 2044.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1906.63, 1969.59], [1904.98, 1967.87], [1903.93, 1968.88], [1901.26, 1966.09], [1895.71, 1971.41], [1896.69, 1972.42], [1892.55, 1976.38], [1893.42, 1977.28], [1891.53, 1979.09], [1894.96, 1982.66], [1906.21, 1971.87], [1905.28, 1970.9], [1906.63, 1969.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1847.48, 1941.43], [1841.92, 1936.16], [1836.38, 1942.02], [1841.94, 1947.27], [1847.48, 1941.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2221.38, 1975.52], [2230.74, 1965.61], [2224.6, 1959.95], [2215.11, 1969.68], [2221.38, 1975.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1232.31, 2649.67], [1235.81, 2647.85], [1231.18, 2638.98], [1234.72, 2637.13], [1232.59, 2633.04], [1229.04, 2634.89], [1228.84, 2634.51], [1223.65, 2637.23], [1220.69, 2638.78], [1223.43, 2644.03], [1223.28, 2644.13], [1223.15, 2644.24], [1223.02, 2644.37], [1222.9, 2644.49], [1222.79, 2644.64], [1222.7, 2644.79], [1222.62, 2644.95], [1222.55, 2645.11], [1222.5, 2645.28], [1222.46, 2645.46], [1222.44, 2645.64], [1222.43, 2645.82], [1222.45, 2646.0], [1222.47, 2646.17], [1222.51, 2646.35], [1222.56, 2646.51], [1222.63, 2646.68], [1222.72, 2646.84], [1222.81, 2646.99], [1222.92, 2647.13], [1223.04, 2647.26], [1223.17, 2647.39], [1223.31, 2647.49], [1223.46, 2647.59], [1223.62, 2647.67], [1223.78, 2647.74], [1223.95, 2647.8], [1224.13, 2647.84], [1224.3, 2647.85], [1224.48, 2647.87], [1224.66, 2647.87], [1224.84, 2647.84], [1225.01, 2647.8], [1225.18, 2647.75], [1225.35, 2647.69], [1225.8, 2648.56], [1226.59, 2648.15], [1228.44, 2651.69], [1230.62, 2650.55], [1232.31, 2649.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2144.61, 2063.85], [2150.36, 2057.53], [2144.11, 2051.84], [2137.32, 2059.31], [2139.22, 2061.02], [2140.25, 2059.89], [2144.61, 2063.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2294.09, 2206.31], [2290.23, 2201.79], [2284.25, 2206.88], [2288.12, 2211.4], [2294.09, 2206.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2358.87, 2181.04], [2352.63, 2174.89], [2344.54, 2183.1], [2349.23, 2187.72], [2348.09, 2188.88], [2349.64, 2190.4], [2358.87, 2181.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2574.65, 2273.41], [2567.63, 2266.38], [2545.89, 2288.82], [2553.12, 2295.77], [2574.65, 2273.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[2379.93, 2420.9], [2375.78, 2416.95], [2373.44, 2419.4], [2377.58, 2423.35], [2379.93, 2420.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2225.01, 1944.59], [2220.62, 1940.49], [2215.49, 1945.98], [2219.88, 1950.08], [2225.01, 1944.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2372.47, 2079.62], [2373.85, 2078.13], [2374.52, 2078.75], [2382.44, 2070.2], [2377.09, 2065.23], [2374.9, 2067.59], [2373.78, 2066.57], [2369.71, 2070.96], [2370.35, 2071.55], [2368.68, 2073.36], [2369.41, 2074.04], [2368.04, 2075.51], [2372.47, 2079.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1864.62, 1897.5], [1859.8, 1893.08], [1849.97, 1903.81], [1858.6, 1911.72], [1863.49, 1906.38], [1859.69, 1902.89], [1864.62, 1897.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1820.32, 1969.41], [1817.11, 1966.09], [1812.84, 1970.22], [1816.05, 1973.54], [1820.32, 1969.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2133.26, 2055.28], [2135.68, 2052.61], [2137.22, 2054.0], [2141.0, 2049.85], [2138.79, 2047.84], [2139.99, 2046.52], [2138.19, 2044.88], [2138.39, 2044.65], [2135.04, 2041.61], [2127.44, 2049.99], [2133.26, 2055.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1949.51, 2018.95], [1945.7, 2015.1], [1941.25, 2019.49], [1945.06, 2023.33], [1949.51, 2018.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2150.65, 2244.0], [2160.4, 2233.96], [2158.73, 2232.39], [2160.25, 2230.91], [2155.84, 2226.68], [2154.28, 2228.15], [2153.18, 2227.08], [2143.45, 2237.18], [2150.65, 2244.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2164.22, 2009.97], [2161.8, 2007.65], [2158.27, 2011.34], [2160.69, 2013.66], [2164.22, 2009.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2189.16, 2236.38], [2184.86, 2232.21], [2180.08, 2237.13], [2184.38, 2241.3], [2189.16, 2236.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2186.69, 2017.81], [2181.26, 2012.01], [2174.77, 2018.1], [2180.2, 2023.89], [2186.69, 2017.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2164.69, 2440.5], [2147.14, 2458.28], [2152.38, 2463.45], [2169.92, 2445.66], [2164.69, 2440.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[2399.06, 2426.91], [2389.28, 2417.38], [2383.74, 2423.06], [2393.52, 2432.59], [2399.06, 2426.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2273.64, 1967.49], [2275.59, 1965.51], [2277.05, 1966.94], [2280.15, 1963.78], [2279.8, 1963.42], [2281.4, 1961.79], [2282.33, 1962.7], [2286.07, 1958.88], [2279.78, 1952.71], [2276.85, 1955.71], [2275.75, 1954.63], [2268.29, 1962.24], [2273.64, 1967.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2158.12, 2390.49], [2163.88, 2384.89], [2158.04, 2378.87], [2152.12, 2384.6], [2154.14, 2386.69], [2153.06, 2387.72], [2155.45, 2390.19], [2156.68, 2389.0], [2158.12, 2390.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1952.74, 1978.66], [1947.77, 1973.95], [1942.7, 1979.28], [1947.68, 1984.0], [1952.74, 1978.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2216.44, 2241.72], [2213.55, 2238.96], [2208.74, 2244.03], [2211.63, 2246.78], [2216.44, 2241.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1880.04, 2060.71], [1876.08, 2056.97], [1870.06, 2063.31], [1874.03, 2067.06], [1880.04, 2060.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2021.46, 2102.02], [2018.53, 2099.17], [2009.52, 2108.43], [2013.96, 2112.75], [2019.3, 2107.26], [2017.8, 2105.79], [2021.46, 2102.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2160.29, 1992.51], [2154.12, 1986.83], [2148.35, 1993.08], [2154.52, 1998.76], [2160.29, 1992.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2294.58, 2507.44], [2291.26, 2504.03], [2287.47, 2507.72], [2290.79, 2511.14], [2294.58, 2507.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2183.04, 2317.37], [2181.03, 2315.12], [2173.47, 2321.88], [2179.17, 2328.25], [2184.64, 2323.36], [2180.96, 2319.24], [2183.04, 2317.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2220.19, 1921.53], [2215.75, 1917.56], [2212.64, 1921.04], [2213.16, 1921.5], [2210.33, 1924.66], [2214.26, 1928.17], [2220.19, 1921.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2603.49, 2310.12], [2599.91, 2307.62], [2597.2, 2311.49], [2600.78, 2313.99], [2603.49, 2310.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1305.91, 2349.65], [1313.47, 2345.89], [1311.81, 2342.59], [1304.26, 2346.35], [1305.91, 2349.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1264.47, 2756.8], [1263.42, 2747.4], [1254.99, 2748.35], [1254.25, 2741.94], [1253.66, 2742.0], [1252.88, 2735.23], [1241.5, 2736.56], [1242.48, 2745.2], [1243.95, 2745.01], [1245.26, 2756.48], [1256.0, 2755.26], [1256.29, 2757.72], [1264.47, 2756.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[2238.12, 1920.12], [2240.05, 1918.35], [2240.78, 1919.14], [2249.23, 1911.35], [2246.9, 1908.83], [2244.99, 1910.59], [2242.35, 1907.73], [2239.8, 1910.08], [2238.48, 1908.65], [2235.25, 1911.62], [2236.25, 1912.71], [2235.31, 1913.58], [2236.78, 1915.17], [2235.04, 1916.77], [2238.12, 1920.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2132.69, 2076.9], [2127.05, 2070.43], [2121.32, 2075.44], [2126.97, 2081.91], [2132.69, 2076.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2256.5, 2100.07], [2266.84, 2089.39], [2264.78, 2087.39], [2265.53, 2086.6], [2261.09, 2082.38], [2250.04, 2093.81], [2256.5, 2100.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2220.57, 2142.85], [2217.53, 2139.83], [2211.67, 2145.77], [2214.71, 2148.77], [2220.57, 2142.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2194.98, 2218.19], [2190.02, 2213.81], [2185.56, 2218.84], [2187.23, 2220.33], [2183.22, 2224.88], [2186.5, 2227.78], [2194.98, 2218.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1793.42, 1797.26], [1771.04, 1774.7], [1762.5, 1783.16], [1776.72, 1797.5], [1775.35, 1798.85], [1777.71, 1801.24], [1774.25, 1804.67], [1779.57, 1810.02], [1783.0, 1806.61], [1783.49, 1807.11], [1793.42, 1797.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.282, "pop": 0, "jobs": 282}}, {"shape": {"outer": [[2114.14, 2057.3], [2108.5, 2052.43], [2103.23, 2058.53], [2108.87, 2063.41], [2114.14, 2057.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2312.85, 2153.44], [2320.8, 2145.29], [2314.11, 2138.76], [2304.17, 2148.96], [2307.93, 2152.62], [2309.91, 2150.58], [2312.85, 2153.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2351.77, 2203.35], [2356.09, 2198.7], [2351.07, 2194.03], [2346.75, 2198.68], [2351.77, 2203.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.028, "pop": 0, "jobs": 28}}, {"shape": {"outer": [[2143.78, 2026.14], [2152.37, 2017.54], [2147.03, 2011.94], [2138.48, 2020.82], [2143.78, 2026.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1985.37, 2143.54], [1994.27, 2134.19], [1988.76, 2128.93], [1979.8, 2138.34], [1981.63, 2140.08], [1980.2, 2141.59], [1982.33, 2143.62], [1983.82, 2142.06], [1985.37, 2143.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2161.14, 2320.63], [2157.21, 2317.16], [2153.06, 2321.87], [2156.98, 2325.33], [2161.14, 2320.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1970.04, 2174.04], [1965.13, 2168.56], [1960.13, 2173.05], [1965.04, 2178.52], [1970.04, 2174.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2153.0, 2174.94], [2148.79, 2170.93], [2143.34, 2176.67], [2147.54, 2180.68], [2153.0, 2174.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1975.47, 1976.88], [1972.11, 1973.48], [1962.79, 1982.72], [1968.6, 1988.59], [1976.59, 1980.66], [1974.15, 1978.18], [1975.47, 1976.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1467.68, 2266.24], [1473.44, 2264.15], [1469.39, 2253.05], [1463.64, 2255.15], [1467.68, 2266.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2029.93, 2337.7], [2037.04, 2344.5], [2048.42, 2332.58], [2041.6, 2325.75], [2029.93, 2337.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2053.04, 2231.73], [2044.17, 2222.23], [2038.68, 2227.35], [2047.56, 2236.85], [2053.04, 2231.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1840.76, 1984.75], [1834.61, 1978.96], [1826.63, 1987.44], [1827.13, 1987.91], [1824.69, 1990.5], [1830.34, 1995.82], [1840.76, 1984.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2261.39, 1976.82], [2264.59, 1980.01], [2268.47, 1975.97], [2265.34, 1972.88], [2261.39, 1976.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2195.8, 2194.84], [2189.59, 2188.73], [2182.92, 2195.51], [2189.14, 2201.63], [2195.8, 2194.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2391.67, 2434.82], [2382.94, 2425.17], [2377.44, 2430.16], [2386.17, 2439.8], [2391.67, 2434.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2161.76, 2472.69], [2155.52, 2467.02], [2149.95, 2473.13], [2156.2, 2478.8], [2161.76, 2472.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1840.21, 1927.37], [1832.04, 1918.37], [1825.97, 1923.88], [1834.13, 1932.88], [1840.21, 1927.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2208.14, 2050.01], [2213.83, 2043.69], [2207.23, 2037.76], [2200.54, 2045.23], [2203.67, 2048.03], [2204.68, 2046.9], [2208.14, 2050.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2016.91, 2334.76], [2033.36, 2318.05], [2023.25, 2308.09], [2021.61, 2309.76], [2018.84, 2307.04], [2002.13, 2323.99], [2012.44, 2334.15], [2014.34, 2332.22], [2016.91, 2334.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.362, "pop": 181, "jobs": 0}}, {"shape": {"outer": [[1866.05, 2402.07], [1851.76, 2338.71], [1832.85, 2342.96], [1842.7, 2386.66], [1820.8, 2391.6], [1825.23, 2411.27], [1866.05, 2402.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1096}}, {"shape": {"outer": [[2022.12, 2223.03], [2018.67, 2220.06], [2014.92, 2224.42], [2018.37, 2227.39], [2022.12, 2223.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2202.4, 1958.94], [2212.62, 1948.31], [2212.03, 1947.73], [2213.55, 1946.15], [2208.06, 1940.86], [2205.86, 1943.15], [2205.24, 1942.54], [2202.09, 1945.82], [2202.76, 1946.47], [2195.44, 1954.08], [2199.91, 1958.36], [2200.82, 1957.41], [2202.4, 1958.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1394.78, 2678.42], [1400.18, 2674.75], [1401.33, 2676.5], [1408.94, 2671.4], [1405.46, 2666.19], [1399.69, 2670.1], [1398.41, 2668.2], [1400.46, 2666.81], [1395.27, 2659.12], [1393.22, 2660.5], [1392.21, 2661.17], [1392.89, 2662.19], [1386.66, 2666.37], [1394.78, 2678.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2323.82, 2503.92], [2328.89, 2498.96], [2318.61, 2488.44], [2313.05, 2493.88], [2321.85, 2502.88], [2322.33, 2502.4], [2323.82, 2503.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1350.96, 2551.76], [1359.05, 2547.65], [1354.85, 2539.39], [1346.76, 2543.51], [1350.96, 2551.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2141.14, 2010.31], [2135.84, 2005.59], [2130.62, 2011.45], [2135.93, 2016.17], [2141.14, 2010.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2208.38, 2061.73], [2203.93, 2057.65], [2200.96, 2060.89], [2205.41, 2064.97], [2208.38, 2061.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2237.91, 2513.56], [2231.37, 2507.53], [2225.42, 2513.98], [2231.95, 2520.01], [2237.91, 2513.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2624.11, 2354.98], [2617.3, 2349.14], [2610.58, 2356.97], [2617.39, 2362.82], [2624.11, 2354.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2337.77, 2227.99], [2328.44, 2219.5], [2327.09, 2220.98], [2325.64, 2219.65], [2323.29, 2222.25], [2324.56, 2223.42], [2322.11, 2226.12], [2331.61, 2234.77], [2337.77, 2227.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1962.47, 1985.77], [1959.29, 1982.62], [1954.78, 1987.15], [1957.94, 1990.31], [1962.47, 1985.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2052.88, 2201.61], [2057.73, 2197.0], [2054.06, 2193.12], [2047.54, 2199.32], [2049.79, 2201.7], [2051.46, 2200.12], [2052.88, 2201.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2252.4, 2284.85], [2248.04, 2281.18], [2243.37, 2286.73], [2247.73, 2290.4], [2252.4, 2284.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2352.24, 2033.05], [2345.61, 2026.4], [2337.67, 2034.32], [2344.29, 2040.96], [2352.24, 2033.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2128.12, 2446.36], [2150.58, 2424.42], [2130.49, 2404.95], [2119.53, 2415.92], [2127.42, 2423.38], [2116.0, 2435.09], [2128.12, 2446.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.448, "pop": 0, "jobs": 448}}, {"shape": {"outer": [[1942.52, 2007.33], [1938.84, 2003.21], [1933.89, 2007.62], [1937.57, 2011.75], [1942.52, 2007.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2411.89, 2109.92], [2408.85, 2107.0], [2408.54, 2107.32], [2405.41, 2104.32], [2398.27, 2111.75], [2404.43, 2117.68], [2411.89, 2109.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2263.21, 1930.96], [2256.87, 1925.61], [2251.07, 1932.45], [2257.42, 1937.81], [2263.21, 1930.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2088.08, 2405.29], [2080.01, 2397.42], [2074.65, 2402.93], [2082.73, 2410.79], [2088.08, 2405.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2520.33, 2232.18], [2516.88, 2228.95], [2512.68, 2233.45], [2516.13, 2236.68], [2520.33, 2232.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2109.2, 2171.41], [2111.82, 2168.79], [2112.95, 2169.93], [2115.23, 2167.65], [2105.43, 2157.86], [2099.95, 2163.32], [2107.66, 2171.04], [2108.25, 2170.46], [2109.2, 2171.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2631.73, 2295.38], [2626.06, 2290.56], [2618.62, 2299.29], [2624.29, 2304.12], [2631.73, 2295.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1235.81, 2623.03], [1233.23, 2616.43], [1223.08, 2620.39], [1221.29, 2615.71], [1213.77, 2618.64], [1218.14, 2629.93], [1219.54, 2633.5], [1226.62, 2630.73], [1225.23, 2627.17], [1235.81, 2623.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2238.89, 1933.33], [2234.03, 1928.78], [2228.22, 1934.99], [2233.08, 1939.54], [2238.89, 1933.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2112.31, 2046.67], [2108.33, 2041.91], [2105.01, 2044.69], [2108.98, 2049.46], [2112.31, 2046.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2059.77, 2127.38], [2055.8, 2123.26], [2051.42, 2127.49], [2055.38, 2131.6], [2059.77, 2127.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2247.87, 2240.38], [2242.19, 2234.53], [2229.81, 2246.58], [2235.49, 2252.42], [2247.87, 2240.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2115.26, 2354.52], [2116.52, 2353.26], [2117.69, 2354.42], [2120.53, 2351.57], [2119.76, 2350.8], [2125.09, 2345.45], [2119.18, 2339.57], [2111.32, 2347.47], [2112.07, 2348.23], [2110.52, 2349.79], [2115.26, 2354.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2252.09, 2007.57], [2253.81, 2005.63], [2257.11, 2008.47], [2262.24, 2002.64], [2260.43, 2000.87], [2263.93, 1997.08], [2258.24, 1990.93], [2246.57, 2002.61], [2252.09, 2007.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1906.53, 2048.8], [1901.72, 2044.72], [1899.42, 2047.42], [1897.81, 2046.05], [1892.12, 2052.75], [1898.54, 2058.2], [1906.53, 2048.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1202.14, 2585.47], [1204.82, 2592.99], [1209.61, 2591.26], [1212.87, 2600.36], [1211.06, 2601.0], [1213.13, 2606.79], [1234.05, 2599.32], [1230.85, 2590.37], [1224.54, 2592.63], [1219.74, 2579.17], [1202.14, 2585.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[2327.23, 2005.08], [2322.08, 2000.18], [2317.85, 2004.62], [2316.67, 2003.48], [2313.98, 2006.32], [2315.37, 2007.64], [2314.69, 2008.35], [2319.63, 2013.05], [2327.23, 2005.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1955.54, 2033.62], [1952.15, 2029.85], [1948.76, 2032.88], [1952.14, 2036.67], [1955.54, 2033.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2330.67, 2087.41], [2332.25, 2085.74], [2333.08, 2086.51], [2342.65, 2076.42], [2337.75, 2071.78], [2335.69, 2073.96], [2334.57, 2072.9], [2326.99, 2080.9], [2327.6, 2081.47], [2326.09, 2083.05], [2330.67, 2087.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1870.98, 1970.86], [1878.41, 1962.12], [1875.01, 1959.24], [1872.04, 1962.74], [1869.32, 1960.43], [1865.54, 1964.89], [1866.44, 1965.66], [1865.07, 1967.27], [1869.16, 1970.75], [1869.87, 1969.92], [1870.98, 1970.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2131.18, 2202.73], [2124.75, 2196.72], [2119.63, 2202.22], [2126.05, 2208.23], [2131.18, 2202.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2164.37, 2086.11], [2161.52, 2083.39], [2157.68, 2087.42], [2160.52, 2090.14], [2164.37, 2086.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2177.78, 2006.31], [2174.24, 2003.41], [2172.35, 2005.72], [2171.2, 2004.77], [2166.38, 2010.65], [2173.39, 2016.39], [2178.6, 2010.03], [2176.28, 2008.13], [2177.78, 2006.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1904.98, 1941.42], [1900.01, 1936.49], [1895.67, 1940.87], [1900.66, 1945.8], [1904.98, 1941.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1332.81, 2669.46], [1328.82, 2664.1], [1327.93, 2664.77], [1322.21, 2657.08], [1320.78, 2658.21], [1318.55, 2655.25], [1309.37, 2662.1], [1314.27, 2668.64], [1315.72, 2667.52], [1318.67, 2671.52], [1321.24, 2669.6], [1325.3, 2675.05], [1331.92, 2670.13], [1332.81, 2669.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1928.68, 2010.55], [1923.83, 2005.86], [1913.56, 2016.48], [1918.41, 2021.17], [1928.68, 2010.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2111.38, 2033.69], [2108.95, 2031.19], [2105.34, 2034.71], [2107.77, 2037.21], [2111.38, 2033.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2058.37, 2140.14], [2055.12, 2136.43], [2046.38, 2144.08], [2052.7, 2151.28], [2059.04, 2145.72], [2058.24, 2144.81], [2060.13, 2143.15], [2057.87, 2140.58], [2058.37, 2140.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2206.7, 2203.6], [2200.44, 2197.59], [2193.98, 2204.3], [2196.3, 2206.55], [2194.27, 2208.66], [2198.19, 2212.43], [2206.7, 2203.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2091.75, 2089.31], [2087.57, 2085.53], [2085.93, 2087.33], [2084.81, 2086.31], [2079.0, 2092.74], [2084.3, 2097.53], [2091.75, 2089.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2216.85, 2586.04], [2213.72, 2583.28], [2209.71, 2587.83], [2212.84, 2590.59], [2216.85, 2586.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1916.07, 2058.52], [1910.47, 2053.1], [1908.21, 2055.44], [1907.44, 2054.7], [1900.07, 2062.32], [1906.44, 2068.48], [1916.07, 2058.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2372.71, 2453.91], [2377.74, 2449.31], [2368.84, 2439.59], [2366.14, 2442.06], [2365.55, 2441.42], [2364.08, 2442.76], [2365.32, 2444.12], [2363.76, 2445.54], [2370.84, 2453.26], [2371.53, 2452.63], [2372.71, 2453.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2101.75, 2122.68], [2097.66, 2118.73], [2092.85, 2123.71], [2096.94, 2127.66], [2101.75, 2122.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1930.94, 1998.53], [1927.82, 1995.72], [1923.52, 2000.46], [1926.63, 2003.28], [1930.94, 1998.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2071.24, 2209.46], [2063.56, 2201.83], [2057.3, 2208.13], [2066.92, 2217.69], [2071.62, 2212.96], [2069.68, 2211.02], [2071.24, 2209.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2203.41, 2269.06], [2200.31, 2265.88], [2195.65, 2270.44], [2198.75, 2273.61], [2203.41, 2269.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1896.61, 2064.55], [1893.84, 2061.76], [1889.42, 2066.15], [1892.19, 2068.94], [1896.61, 2064.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2477.81, 2155.63], [2474.31, 2151.91], [2471.62, 2154.46], [2475.12, 2158.17], [2477.81, 2155.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2245.85, 1928.66], [2247.25, 1927.09], [2248.59, 1928.29], [2256.38, 1919.53], [2251.92, 1915.58], [2250.43, 1917.24], [2249.12, 1916.08], [2244.49, 1921.29], [2244.69, 1921.46], [2242.98, 1923.4], [2244.09, 1924.39], [2242.74, 1925.91], [2245.85, 1928.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2337.27, 2161.12], [2334.93, 2158.74], [2327.99, 2165.61], [2328.78, 2166.4], [2324.45, 2170.68], [2329.2, 2175.47], [2338.84, 2165.93], [2335.65, 2162.71], [2337.27, 2161.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2176.5, 2032.23], [2172.65, 2029.07], [2169.71, 2032.67], [2173.54, 2035.83], [2176.5, 2032.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2032.56, 2361.67], [2035.92, 2358.33], [2032.44, 2354.84], [2029.09, 2358.18], [2032.56, 2361.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2077.41, 2109.61], [2074.87, 2107.01], [2069.93, 2111.82], [2072.47, 2114.43], [2077.41, 2109.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2138.8, 2326.45], [2134.11, 2321.72], [2126.55, 2329.19], [2131.24, 2333.91], [2138.8, 2326.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2278.68, 2548.97], [2275.11, 2545.66], [2273.78, 2547.09], [2271.28, 2544.78], [2263.72, 2552.94], [2269.79, 2558.56], [2278.68, 2548.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1930.41, 2143.65], [1925.61, 2139.08], [1923.18, 2141.62], [1927.99, 2146.2], [1930.41, 2143.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2145.21, 2308.63], [2140.36, 2303.85], [2138.5, 2305.75], [2136.13, 2303.4], [2130.04, 2309.59], [2137.26, 2316.71], [2145.21, 2308.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2162.03, 2024.27], [2157.08, 2019.38], [2148.29, 2028.29], [2154.39, 2034.31], [2159.72, 2028.91], [2158.57, 2027.78], [2162.03, 2024.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1955.82, 2164.99], [1947.69, 2158.04], [1943.83, 2162.55], [1951.95, 2169.5], [1955.82, 2164.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2196.85, 2330.17], [2193.57, 2326.78], [2191.31, 2328.97], [2188.14, 2325.7], [2182.02, 2331.63], [2184.05, 2333.72], [2181.15, 2336.54], [2185.59, 2341.11], [2196.85, 2330.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2176.29, 2314.31], [2169.74, 2307.78], [2163.36, 2314.19], [2166.48, 2317.29], [2163.7, 2320.08], [2167.13, 2323.5], [2176.29, 2314.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2218.79, 2136.76], [2214.58, 2132.59], [2211.69, 2135.46], [2216.04, 2139.66], [2218.79, 2136.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2243.22, 2581.93], [2245.63, 2579.46], [2247.49, 2581.28], [2250.13, 2578.56], [2248.41, 2576.87], [2249.55, 2575.7], [2241.05, 2567.4], [2239.25, 2569.24], [2240.25, 2570.22], [2235.85, 2574.73], [2243.22, 2581.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1880.12, 2615.42], [1928.11, 2603.66], [1930.03, 2611.45], [1944.47, 2607.91], [1938.11, 2581.94], [1931.64, 2583.52], [1930.02, 2576.91], [1926.77, 2577.7], [1916.74, 2536.78], [1897.4, 2541.51], [1905.57, 2574.87], [1872.19, 2583.05], [1880.12, 2615.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1806}}, {"shape": {"outer": [[1185.36, 2483.01], [1196.35, 2472.67], [1198.64, 2475.16], [1203.14, 2471.04], [1204.48, 2469.78], [1196.31, 2461.02], [1194.96, 2462.28], [1192.92, 2460.09], [1186.97, 2465.64], [1184.96, 2463.52], [1175.42, 2472.41], [1185.36, 2483.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[2193.91, 2273.54], [2189.83, 2269.23], [2188.06, 2270.9], [2186.73, 2269.48], [2181.75, 2274.19], [2188.29, 2281.11], [2193.35, 2276.32], [2192.22, 2275.13], [2193.91, 2273.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1940.19, 2144.71], [1936.55, 2141.2], [1931.74, 2146.17], [1935.37, 2149.69], [1940.19, 2144.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2382.91, 2088.32], [2390.67, 2080.08], [2387.58, 2077.16], [2386.69, 2078.1], [2383.75, 2075.32], [2377.12, 2082.34], [2378.28, 2083.44], [2376.84, 2084.96], [2380.35, 2088.27], [2381.53, 2087.01], [2382.91, 2088.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2134.39, 2002.38], [2127.78, 1995.13], [2125.29, 1997.41], [2125.95, 1998.13], [2122.15, 2001.6], [2128.1, 2008.12], [2134.39, 2002.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2179.15, 2044.77], [2173.27, 2038.4], [2167.57, 2043.66], [2169.91, 2046.2], [2167.88, 2048.08], [2171.43, 2051.91], [2179.15, 2044.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1330.89, 2693.51], [1332.66, 2689.98], [1336.84, 2692.09], [1340.01, 2685.8], [1339.55, 2685.58], [1340.37, 2683.9], [1336.79, 2682.15], [1338.67, 2678.43], [1333.43, 2675.74], [1330.7, 2681.15], [1330.17, 2680.89], [1329.24, 2680.42], [1328.19, 2682.52], [1329.11, 2682.98], [1327.04, 2687.09], [1327.56, 2687.36], [1328.8, 2687.97], [1327.02, 2691.57], [1330.89, 2693.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2319.67, 1999.32], [2313.96, 1993.14], [2307.43, 1999.16], [2313.14, 2005.34], [2319.67, 1999.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1193.37, 2538.47], [1193.51, 2537.07], [1198.45, 2537.38], [1198.49, 2536.29], [1203.89, 2536.65], [1204.09, 2533.52], [1207.59, 2532.12], [1208.61, 2534.67], [1214.54, 2532.31], [1213.53, 2529.76], [1212.2, 2526.45], [1204.34, 2529.59], [1204.66, 2524.57], [1199.52, 2524.24], [1199.34, 2526.78], [1197.47, 2526.65], [1197.51, 2525.91], [1195.01, 2525.74], [1194.96, 2526.49], [1192.73, 2526.35], [1192.69, 2527.23], [1187.75, 2526.93], [1187.66, 2528.32], [1186.73, 2529.06], [1186.6, 2531.24], [1187.41, 2532.06], [1187.02, 2538.07], [1193.37, 2538.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[1966.56, 1968.54], [1962.86, 1964.69], [1959.43, 1967.97], [1958.11, 1966.59], [1954.4, 1970.16], [1955.82, 1971.64], [1952.94, 1974.41], [1958.68, 1980.38], [1966.84, 1972.52], [1964.71, 1970.31], [1966.56, 1968.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2470.76, 2195.75], [2468.4, 2192.94], [2463.8, 2196.77], [2466.15, 2199.58], [2470.76, 2195.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2256.93, 2248.95], [2251.21, 2243.53], [2239.59, 2255.8], [2246.72, 2262.56], [2256.72, 2252.0], [2255.31, 2250.65], [2256.93, 2248.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2331.73, 2066.04], [2333.86, 2063.99], [2332.4, 2062.46], [2330.43, 2064.35], [2327.3, 2061.08], [2320.26, 2067.85], [2321.19, 2068.81], [2318.74, 2071.16], [2324.12, 2076.76], [2333.44, 2067.81], [2331.73, 2066.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2366.15, 2121.7], [2367.55, 2120.18], [2368.31, 2120.87], [2375.87, 2112.69], [2369.67, 2106.95], [2362.33, 2114.88], [2362.65, 2115.18], [2361.02, 2116.95], [2366.15, 2121.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1793.11, 1997.31], [1789.37, 1993.67], [1785.69, 1997.44], [1789.41, 2001.09], [1793.11, 1997.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1879.59, 1882.68], [1874.21, 1877.51], [1866.49, 1885.56], [1871.86, 1890.73], [1879.59, 1882.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2186.2, 2184.28], [2181.78, 2179.37], [2175.17, 2185.33], [2179.59, 2190.23], [2186.2, 2184.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1957.4, 1958.66], [1953.18, 1954.55], [1945.16, 1962.77], [1945.76, 1963.36], [1943.17, 1966.01], [1948.74, 1971.43], [1957.02, 1962.94], [1955.08, 1961.05], [1957.4, 1958.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2182.48, 2355.2], [2178.43, 2350.61], [2175.7, 2353.02], [2179.76, 2357.6], [2182.48, 2355.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2352.3, 2061.62], [2357.12, 2056.85], [2358.1, 2057.85], [2365.43, 2050.6], [2360.11, 2045.22], [2356.59, 2048.71], [2355.81, 2047.92], [2351.99, 2051.71], [2353.02, 2052.74], [2348.21, 2057.5], [2352.3, 2061.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1297.12, 2459.14], [1296.16, 2456.9], [1302.78, 2454.04], [1299.0, 2445.28], [1291.34, 2448.59], [1290.96, 2447.71], [1287.8, 2449.08], [1287.67, 2448.94], [1287.53, 2448.82], [1287.38, 2448.71], [1287.22, 2448.62], [1287.05, 2448.53], [1286.88, 2448.47], [1286.7, 2448.42], [1286.52, 2448.38], [1286.33, 2448.36], [1286.14, 2448.36], [1285.95, 2448.36], [1285.77, 2448.39], [1285.59, 2448.44], [1285.41, 2448.5], [1285.24, 2448.57], [1285.07, 2448.65], [1284.92, 2448.76], [1284.77, 2448.87], [1284.64, 2449.0], [1284.51, 2449.14], [1284.4, 2449.28], [1284.3, 2449.44], [1284.21, 2449.61], [1284.15, 2449.78], [1284.08, 2449.96], [1284.05, 2450.15], [1284.02, 2450.33], [1284.01, 2450.52], [1284.02, 2450.71], [1281.13, 2451.94], [1281.51, 2452.82], [1278.64, 2454.06], [1281.17, 2459.93], [1283.81, 2458.8], [1286.01, 2463.92], [1297.12, 2459.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2308.09, 2160.63], [2304.06, 2156.31], [2297.78, 2162.17], [2301.81, 2166.49], [2308.09, 2160.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2296.18, 2052.91], [2297.67, 2051.45], [2298.02, 2051.81], [2306.11, 2043.92], [2304.23, 2041.99], [2304.66, 2041.58], [2300.92, 2037.76], [2292.42, 2046.04], [2293.31, 2046.95], [2291.8, 2048.42], [2296.18, 2052.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2137.25, 2060.13], [2134.71, 2057.86], [2131.11, 2061.88], [2133.65, 2064.15], [2137.25, 2060.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2314.05, 2514.01], [2319.79, 2508.64], [2311.73, 2500.02], [2305.42, 2505.91], [2312.43, 2513.41], [2313.0, 2512.88], [2314.05, 2514.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2374.14, 2061.07], [2369.38, 2056.62], [2367.71, 2058.41], [2366.8, 2057.56], [2361.43, 2063.29], [2367.1, 2068.59], [2374.14, 2061.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2372.4, 2091.78], [2367.64, 2087.06], [2364.23, 2090.5], [2368.99, 2095.22], [2372.4, 2091.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2598.78, 2328.52], [2592.51, 2322.58], [2583.96, 2331.6], [2590.22, 2337.54], [2598.78, 2328.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2310.48, 2252.21], [2304.62, 2246.88], [2299.66, 2252.37], [2307.88, 2259.81], [2310.63, 2256.76], [2308.28, 2254.64], [2310.48, 2252.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1978.62, 2291.51], [1981.92, 2288.14], [1982.61, 2288.66], [1986.0, 2285.32], [1982.26, 2281.79], [1981.21, 2282.63], [1975.24, 2277.02], [1969.64, 2283.13], [1978.62, 2291.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[1897.47, 2002.03], [1898.87, 2000.62], [1899.68, 2001.42], [1908.23, 1992.74], [1906.04, 1990.59], [1907.39, 1989.22], [1905.33, 1987.2], [1903.86, 1988.69], [1901.74, 1986.61], [1893.67, 1994.81], [1894.13, 1995.26], [1892.39, 1997.02], [1897.47, 2002.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2115.09, 2021.27], [2108.52, 2015.37], [2100.84, 2023.93], [2107.41, 2029.83], [2115.09, 2021.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2197.7, 2368.15], [2199.98, 2365.86], [2201.49, 2367.36], [2204.69, 2364.15], [2195.01, 2354.53], [2189.54, 2360.03], [2197.7, 2368.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2130.65, 2282.47], [2137.57, 2275.64], [2133.33, 2271.35], [2129.92, 2274.73], [2127.03, 2271.79], [2120.84, 2277.9], [2124.29, 2281.39], [2126.97, 2278.74], [2130.65, 2282.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2456.39, 2182.97], [2453.12, 2179.84], [2447.78, 2181.03], [2439.3, 2190.07], [2444.32, 2195.11], [2456.39, 2182.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2275.78, 2206.75], [2271.98, 2202.96], [2268.15, 2206.79], [2266.94, 2205.58], [2259.45, 2213.08], [2264.46, 2218.09], [2275.78, 2206.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1286.06, 2612.87], [1284.17, 2608.93], [1286.51, 2607.81], [1283.71, 2602.02], [1280.48, 2603.58], [1279.09, 2600.61], [1278.75, 2599.89], [1273.56, 2602.37], [1273.91, 2603.08], [1273.09, 2603.47], [1270.27, 2604.83], [1268.53, 2605.66], [1271.24, 2611.32], [1272.97, 2610.48], [1274.21, 2613.08], [1273.34, 2613.5], [1275.46, 2617.93], [1276.34, 2617.52], [1279.17, 2616.16], [1286.06, 2612.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1963.73, 2033.92], [1966.35, 2030.75], [1965.27, 2029.86], [1966.78, 2028.04], [1965.56, 2027.03], [1967.28, 2024.95], [1964.1, 2022.34], [1962.31, 2024.51], [1961.48, 2023.82], [1956.37, 2030.01], [1960.78, 2033.64], [1961.84, 2032.36], [1963.73, 2033.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1224.36, 2450.34], [1229.46, 2445.18], [1231.57, 2447.31], [1239.65, 2439.2], [1229.42, 2428.91], [1220.72, 2437.49], [1218.34, 2435.12], [1213.32, 2440.04], [1216.36, 2443.09], [1216.75, 2442.7], [1224.36, 2450.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[2232.63, 1918.84], [2228.68, 1915.02], [2224.44, 1919.41], [2228.39, 1923.24], [2232.63, 1918.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1491.2, 2675.59], [1493.35, 2685.41], [1500.1, 2683.92], [1497.95, 2674.1], [1491.2, 2675.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1951.21, 2196.25], [1952.97, 2194.32], [1953.81, 2195.09], [1961.1, 2187.13], [1955.17, 2181.69], [1948.19, 2189.33], [1948.7, 2189.81], [1946.63, 2192.07], [1951.21, 2196.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2245.41, 1998.24], [2255.49, 1987.51], [2249.78, 1982.2], [2239.61, 1992.66], [2245.41, 1998.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1855.99, 2314.33], [1883.39, 2308.13], [1862.57, 2213.66], [1825.99, 2222.23], [1830.11, 2241.91], [1839.49, 2239.79], [1855.99, 2314.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1863}}, {"shape": {"outer": [[2514.92, 2246.51], [2512.23, 2244.09], [2511.14, 2245.3], [2507.24, 2241.78], [2500.42, 2249.37], [2506.99, 2255.29], [2514.92, 2246.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1944.01, 2659.45], [1941.35, 2647.19], [1911.89, 2653.65], [1914.56, 2666.06], [1944.01, 2659.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.244, "pop": 0, "jobs": 244}}, {"shape": {"outer": [[2321.69, 2162.11], [2328.42, 2154.67], [2329.33, 2155.49], [2332.27, 2152.22], [2326.15, 2146.68], [2322.46, 2150.77], [2321.51, 2149.91], [2315.53, 2156.54], [2321.69, 2162.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1365.87, 2612.98], [1363.02, 2608.26], [1362.25, 2608.71], [1360.55, 2605.88], [1347.97, 2613.61], [1355.7, 2626.36], [1364.14, 2621.2], [1361.18, 2616.37], [1365.32, 2613.81], [1365.11, 2613.44], [1365.87, 2612.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2234.33, 2554.27], [2239.93, 2548.27], [2234.22, 2543.07], [2228.71, 2549.14], [2234.33, 2554.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1925.26, 2136.19], [1927.2, 2134.13], [1928.84, 2135.67], [1932.82, 2131.45], [1922.71, 2121.91], [1921.41, 2123.28], [1919.64, 2121.61], [1915.74, 2125.75], [1917.07, 2127.0], [1916.34, 2127.77], [1925.26, 2136.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2151.58, 1982.75], [2144.48, 1977.07], [2138.27, 1984.84], [2145.37, 1990.52], [2151.58, 1982.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2323.81, 2170.84], [2316.86, 2164.46], [2312.69, 2169.0], [2319.65, 2175.39], [2323.81, 2170.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1246.97, 2631.02], [1252.7, 2639.54], [1260.12, 2634.65], [1254.39, 2626.13], [1246.97, 2631.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2541.07, 2288.97], [2553.71, 2275.54], [2548.29, 2270.28], [2535.47, 2283.8], [2541.07, 2288.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2123.94, 2211.79], [2117.24, 2205.81], [2112.04, 2211.62], [2118.73, 2217.6], [2123.94, 2211.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2219.81, 2491.45], [2213.92, 2485.72], [2206.3, 2493.54], [2212.18, 2499.28], [2219.81, 2491.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2085.56, 2294.09], [2080.92, 2289.51], [2077.59, 2292.89], [2082.22, 2297.46], [2085.56, 2294.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2178.51, 2338.64], [2172.42, 2332.87], [2168.34, 2337.16], [2174.43, 2342.94], [2178.51, 2338.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2028.25, 2186.36], [2025.85, 2184.02], [2021.6, 2188.41], [2024.0, 2190.73], [2028.25, 2186.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1724.24, 2405.6], [1729.7, 2404.56], [1727.97, 2395.37], [1722.51, 2396.4], [1724.24, 2405.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.033, "pop": 0, "jobs": 33}}, {"shape": {"outer": [[2145.59, 2180.31], [2142.15, 2177.01], [2135.94, 2183.47], [2145.37, 2192.54], [2150.37, 2187.35], [2149.07, 2186.09], [2149.86, 2185.27], [2145.17, 2180.75], [2145.59, 2180.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2585.6, 2315.12], [2580.82, 2311.38], [2573.41, 2320.86], [2578.19, 2324.61], [2585.6, 2315.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1790.43, 1980.31], [1793.82, 1976.62], [1784.4, 1967.97], [1780.59, 1972.11], [1781.72, 1973.15], [1780.24, 1974.76], [1786.32, 1980.34], [1788.22, 1978.29], [1790.43, 1980.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1810.22, 2144.05], [1836.72, 2138.2], [1832.87, 2120.75], [1828.77, 2121.65], [1827.02, 2113.71], [1819.68, 2115.33], [1817.14, 2103.85], [1793.25, 2109.13], [1785.36, 2073.33], [1774.1, 2075.81], [1772.92, 2070.43], [1757.32, 2074.29], [1755.47, 2064.11], [1744.93, 2066.23], [1747.11, 2076.45], [1752.4, 2075.29], [1771.45, 2152.93], [1769.34, 2153.65], [1774.34, 2176.33], [1813.7, 2167.64], [1817.5, 2184.87], [1854.66, 2176.67], [1847.81, 2145.66], [1812.31, 2153.48], [1810.22, 2144.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3808}}, {"shape": {"outer": [[2037.98, 2194.81], [2034.76, 2192.11], [2030.68, 2196.98], [2033.91, 2199.68], [2037.98, 2194.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2057.25, 2079.85], [2054.29, 2076.75], [2050.04, 2080.78], [2052.99, 2083.9], [2057.25, 2079.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2045.71, 2218.43], [2040.31, 2213.29], [2036.92, 2216.87], [2042.33, 2222.01], [2045.71, 2218.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2271.3, 1938.07], [2266.52, 1933.31], [2264.56, 1935.27], [2263.38, 1934.09], [2257.89, 1939.61], [2258.21, 1939.93], [2253.82, 1944.32], [2259.45, 1949.94], [2271.3, 1938.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1333.15, 2754.73], [1332.41, 2736.91], [1326.72, 2737.14], [1326.69, 2736.51], [1315.33, 2736.99], [1315.69, 2745.69], [1322.81, 2745.4], [1323.11, 2752.4], [1322.47, 2752.42], [1322.62, 2755.77], [1325.18, 2755.66], [1325.14, 2755.07], [1333.15, 2754.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[1964.2, 2205.2], [1970.29, 2198.44], [1968.46, 2196.79], [1971.09, 2193.87], [1966.74, 2189.96], [1957.94, 2199.74], [1959.63, 2201.26], [1958.89, 2202.08], [1960.92, 2203.91], [1961.74, 2202.99], [1964.2, 2205.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1419.29, 2254.45], [1422.68, 2248.0], [1402.35, 2237.33], [1398.95, 2243.79], [1419.29, 2254.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2036.43, 2244.29], [2037.66, 2243.02], [2038.86, 2244.18], [2040.78, 2242.18], [2042.17, 2243.52], [2046.3, 2239.22], [2035.75, 2229.04], [2032.98, 2231.91], [2035.77, 2234.61], [2032.56, 2237.93], [2034.64, 2239.94], [2033.32, 2241.29], [2036.43, 2244.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2136.92, 2370.13], [2143.9, 2363.31], [2138.39, 2357.69], [2131.6, 2364.33], [2133.17, 2365.94], [2131.9, 2367.18], [2134.62, 2369.97], [2135.72, 2368.9], [2136.92, 2370.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2191.61, 2047.17], [2188.76, 2044.2], [2185.54, 2047.3], [2188.39, 2050.27], [2191.61, 2047.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2226.57, 2319.35], [2234.59, 2311.83], [2229.24, 2306.13], [2219.34, 2315.43], [2222.69, 2319.01], [2224.58, 2317.23], [2226.57, 2319.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1939.39, 1941.73], [1935.0, 1937.5], [1932.81, 1939.77], [1931.47, 1938.47], [1922.09, 1948.21], [1927.83, 1953.73], [1939.39, 1941.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2224.68, 2581.74], [2220.14, 2577.65], [2217.63, 2580.43], [2222.18, 2584.52], [2224.68, 2581.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2119.71, 2117.88], [2117.69, 2115.87], [2116.55, 2117.01], [2114.31, 2114.77], [2105.12, 2123.99], [2111.47, 2130.33], [2120.55, 2121.22], [2118.45, 2119.13], [2119.71, 2117.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2095.87, 2314.72], [2093.85, 2312.73], [2092.32, 2314.28], [2090.47, 2312.47], [2087.16, 2315.82], [2088.59, 2317.22], [2082.6, 2323.29], [2086.98, 2327.62], [2096.37, 2318.08], [2094.44, 2316.17], [2095.87, 2314.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1324.03, 2542.05], [1319.82, 2534.21], [1318.04, 2535.17], [1316.88, 2533.02], [1319.09, 2531.82], [1316.68, 2527.35], [1304.99, 2533.64], [1309.81, 2542.48], [1313.79, 2540.39], [1316.73, 2546.0], [1324.03, 2542.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2221.01, 1908.67], [2215.73, 1902.79], [2206.18, 1911.38], [2213.17, 1919.15], [2217.41, 1915.34], [2215.71, 1913.44], [2221.01, 1908.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2491.99, 2219.99], [2487.95, 2215.84], [2486.21, 2217.52], [2484.72, 2215.98], [2482.78, 2217.87], [2481.9, 2216.98], [2478.64, 2220.13], [2480.07, 2221.62], [2475.97, 2225.6], [2480.94, 2230.73], [2491.99, 2219.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1944.12, 2048.71], [1945.6, 2047.29], [1946.45, 2048.19], [1953.16, 2041.78], [1948.47, 2036.86], [1941.47, 2043.55], [1942.59, 2044.71], [1941.4, 2045.86], [1944.12, 2048.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2162.26, 2181.01], [2173.73, 2169.17], [2171.83, 2167.33], [2169.82, 2169.41], [2165.99, 2165.69], [2156.52, 2175.46], [2162.26, 2181.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2405.82, 2098.29], [2401.43, 2094.0], [2398.11, 2097.4], [2396.83, 2096.15], [2393.15, 2099.92], [2394.04, 2100.8], [2393.39, 2101.46], [2395.09, 2103.11], [2393.24, 2105.01], [2396.83, 2108.51], [2404.91, 2100.24], [2404.41, 2099.75], [2405.82, 2098.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1981.66, 2014.3], [1976.16, 2008.63], [1970.29, 2014.33], [1976.74, 2020.97], [1980.72, 2017.12], [1979.76, 2016.14], [1981.66, 2014.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2430.02, 2137.41], [2434.67, 2132.72], [2427.61, 2125.71], [2429.1, 2124.21], [2425.77, 2120.91], [2422.05, 2124.65], [2424.03, 2126.62], [2422.35, 2128.3], [2422.87, 2128.82], [2421.34, 2130.36], [2427.7, 2136.68], [2428.49, 2135.89], [2430.02, 2137.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2094.58, 2292.07], [2092.57, 2289.94], [2091.01, 2291.41], [2089.98, 2290.32], [2084.62, 2295.39], [2087.67, 2298.61], [2094.58, 2292.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1255.34, 2360.09], [1251.27, 2352.45], [1242.59, 2357.03], [1246.67, 2364.67], [1255.34, 2360.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2375.99, 2083.62], [2373.55, 2081.47], [2369.39, 2086.22], [2373.79, 2090.07], [2376.72, 2086.74], [2374.76, 2085.02], [2375.99, 2083.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1878.66, 1948.59], [1875.93, 1945.85], [1871.88, 1949.88], [1874.62, 1952.62], [1878.66, 1948.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1829.98, 2006.85], [1826.7, 2003.74], [1822.05, 2008.63], [1825.32, 2011.74], [1829.98, 2006.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2212.12, 2291.73], [2209.46, 2288.99], [2207.58, 2290.82], [2206.06, 2289.27], [2201.66, 2293.52], [2207.6, 2299.64], [2212.52, 2294.86], [2210.76, 2293.06], [2212.12, 2291.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2097.37, 2415.24], [2092.24, 2410.06], [2086.94, 2415.3], [2092.06, 2420.48], [2097.37, 2415.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2258.58, 2300.91], [2253.25, 2295.34], [2248.63, 2299.77], [2252.07, 2303.37], [2245.87, 2309.31], [2253.27, 2317.04], [2259.21, 2311.35], [2253.7, 2305.59], [2258.58, 2300.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1762.28, 2580.33], [1775.66, 2577.64], [1761.99, 2513.19], [1748.01, 2515.95], [1762.28, 2580.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.588, "pop": 0, "jobs": 588}}, {"shape": {"outer": [[2227.73, 2179.5], [2229.35, 2177.79], [2230.5, 2178.88], [2235.8, 2173.31], [2233.01, 2170.67], [2234.76, 2168.84], [2232.6, 2166.8], [2230.37, 2169.14], [2228.59, 2167.45], [2222.17, 2174.22], [2227.73, 2179.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2228.54, 2275.6], [2222.84, 2269.58], [2216.47, 2275.6], [2222.19, 2281.62], [2228.54, 2275.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1923.14, 1978.95], [1919.79, 1975.88], [1915.9, 1980.11], [1919.25, 1983.19], [1923.14, 1978.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2149.79, 2092.22], [2144.52, 2086.17], [2139.03, 2090.96], [2144.3, 2097.01], [2149.79, 2092.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2608.96, 2315.83], [2605.4, 2312.29], [2599.61, 2318.1], [2603.17, 2321.64], [2608.96, 2315.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2132.39, 2302.59], [2128.43, 2298.74], [2124.34, 2302.95], [2128.29, 2306.79], [2132.39, 2302.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1278.99, 2753.64], [1278.86, 2750.79], [1281.52, 2750.66], [1281.06, 2740.06], [1278.37, 2740.18], [1278.31, 2739.06], [1276.06, 2739.16], [1276.03, 2738.62], [1271.86, 2738.82], [1271.89, 2739.35], [1271.94, 2740.48], [1267.82, 2740.68], [1268.29, 2751.28], [1272.44, 2751.08], [1272.57, 2753.93], [1278.99, 2753.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2189.83, 2035.18], [2188.16, 2033.42], [2183.81, 2037.55], [2185.48, 2039.31], [2189.83, 2035.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2462.34, 2158.33], [2454.11, 2150.0], [2453.26, 2150.85], [2451.82, 2149.39], [2447.66, 2153.51], [2449.44, 2155.32], [2448.62, 2156.14], [2458.19, 2165.79], [2461.53, 2162.49], [2460.41, 2161.35], [2461.75, 2160.04], [2461.19, 2159.46], [2462.34, 2158.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2202.15, 2057.44], [2198.98, 2054.06], [2195.77, 2057.08], [2198.92, 2060.45], [2202.15, 2057.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2112.7, 2272.78], [2109.84, 2270.08], [2102.71, 2277.62], [2105.57, 2280.32], [2112.7, 2272.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2357.82, 2041.56], [2351.76, 2036.03], [2345.01, 2043.42], [2351.07, 2048.95], [2357.82, 2041.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2228.91, 2222.28], [2225.05, 2218.68], [2217.19, 2227.08], [2221.06, 2230.68], [2228.91, 2222.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2357.49, 2442.86], [2353.66, 2439.0], [2348.46, 2444.14], [2352.29, 2448.01], [2357.49, 2442.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2159.33, 2067.54], [2153.79, 2060.83], [2148.05, 2065.57], [2153.59, 2072.28], [2159.33, 2067.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2194.98, 1950.55], [2201.57, 1943.79], [2195.38, 1937.95], [2188.81, 1944.85], [2194.98, 1950.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1354.7, 2751.69], [1354.01, 2735.52], [1342.78, 2735.99], [1342.84, 2737.06], [1337.54, 2737.28], [1337.96, 2747.39], [1338.89, 2747.34], [1339.04, 2750.6], [1343.35, 2750.41], [1343.43, 2752.17], [1354.7, 2751.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[1977.37, 2145.22], [1969.82, 2137.75], [1965.87, 2141.77], [1968.98, 2144.85], [1966.92, 2146.94], [1971.36, 2151.33], [1977.37, 2145.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1800.67, 1990.55], [1796.37, 1985.97], [1792.76, 1989.35], [1797.06, 1993.94], [1800.67, 1990.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2120.76, 2159.59], [2112.17, 2151.08], [2107.76, 2155.53], [2116.35, 2164.04], [2120.76, 2159.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1860.34, 1947.08], [1854.14, 1941.06], [1844.7, 1950.8], [1850.9, 1956.81], [1860.34, 1947.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2243.39, 2111.63], [2239.27, 2107.61], [2235.62, 2111.37], [2239.74, 2115.38], [2243.39, 2111.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2108.33, 2328.06], [2103.01, 2322.7], [2102.1, 2323.6], [2100.43, 2321.91], [2091.38, 2330.89], [2098.37, 2337.94], [2108.33, 2328.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2183.82, 2477.04], [2181.26, 2474.64], [2176.54, 2479.69], [2178.94, 2481.93], [2177.05, 2483.95], [2180.77, 2487.44], [2185.87, 2481.97], [2182.31, 2478.65], [2183.82, 2477.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1973.87, 2114.96], [1969.24, 2110.62], [1958.58, 2122.02], [1963.21, 2126.35], [1973.87, 2114.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2437.13, 2188.28], [2446.31, 2178.99], [2442.33, 2175.06], [2439.26, 2178.16], [2438.06, 2176.98], [2431.24, 2183.9], [2433.7, 2186.33], [2434.42, 2185.6], [2437.13, 2188.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2155.61, 2001.3], [2152.19, 1998.17], [2148.26, 2002.45], [2151.69, 2005.59], [2155.61, 2001.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1948.86, 2026.77], [1945.29, 2023.21], [1945.12, 2023.39], [1943.63, 2025.02], [1942.16, 2023.57], [1933.78, 2031.97], [1936.68, 2034.86], [1934.86, 2036.69], [1938.17, 2039.97], [1948.16, 2029.93], [1946.93, 2028.7], [1948.86, 2026.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2414.34, 2147.37], [2404.6, 2137.87], [2395.73, 2146.95], [2405.47, 2156.46], [2414.34, 2147.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2208.01, 2134.63], [2199.68, 2126.53], [2198.77, 2127.46], [2196.56, 2125.31], [2191.66, 2130.35], [2193.7, 2132.33], [2193.03, 2133.01], [2201.54, 2141.28], [2208.01, 2134.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2290.81, 1987.38], [2292.11, 1986.12], [2293.13, 1987.19], [2303.42, 1977.2], [2298.74, 1972.39], [2297.15, 1973.92], [2295.16, 1971.87], [2290.01, 1976.86], [2292.26, 1979.17], [2288.55, 1982.76], [2289.84, 1984.09], [2288.69, 1985.2], [2290.81, 1987.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2237.28, 2101.51], [2228.54, 2093.59], [2223.42, 2099.24], [2232.15, 2107.17], [2237.28, 2101.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1578.85, 2821.59], [1599.36, 2811.54], [1598.98, 2800.88], [1594.21, 2790.86], [1570.94, 2802.26], [1575.74, 2812.03], [1574.32, 2812.82], [1578.85, 2821.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.34, "pop": 0, "jobs": 340}}, {"shape": {"outer": [[1842.97, 2012.28], [1839.93, 2009.27], [1835.67, 2013.57], [1838.7, 2016.58], [1842.97, 2012.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2220.23, 1958.41], [2214.31, 1952.6], [2204.04, 1963.07], [2209.96, 1968.88], [2220.23, 1958.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1886.23, 1977.65], [1879.46, 1971.33], [1872.6, 1978.67], [1879.36, 1984.99], [1886.23, 1977.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2300.29, 2052.2], [2306.9, 2058.58], [2318.72, 2045.5], [2312.23, 2039.42], [2300.29, 2052.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2120.57, 2276.29], [2129.74, 2266.84], [2123.85, 2261.1], [2115.34, 2269.87], [2116.13, 2270.63], [2114.31, 2272.51], [2116.47, 2274.61], [2117.63, 2273.44], [2120.57, 2276.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2381.8, 2096.11], [2378.61, 2093.05], [2370.61, 2101.4], [2373.79, 2104.44], [2381.8, 2096.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2283.31, 1999.53], [2291.49, 2007.1], [2295.78, 2002.54], [2287.54, 1994.86], [2283.31, 1999.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2145.14, 2383.17], [2146.3, 2381.84], [2147.08, 2382.52], [2153.52, 2375.05], [2148.03, 2370.31], [2140.44, 2379.13], [2145.14, 2383.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2119.06, 2042.88], [2116.22, 2040.16], [2112.85, 2043.68], [2115.69, 2046.4], [2119.06, 2042.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1530.66, 1938.23], [1537.6, 1944.55], [1548.97, 1932.14], [1542.01, 1925.82], [1530.66, 1938.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2247.74, 1980.57], [2241.73, 1974.71], [2229.47, 1987.31], [2235.49, 1993.16], [2247.74, 1980.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1916.09, 1958.19], [1912.35, 1954.39], [1907.14, 1959.52], [1910.88, 1963.33], [1916.09, 1958.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1946.02, 2636.42], [1943.03, 2623.45], [1910.82, 2630.7], [1913.83, 2643.54], [1946.02, 2636.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.28, "pop": 0, "jobs": 280}}, {"shape": {"outer": [[2521.37, 2254.13], [2518.53, 2251.42], [2517.44, 2252.57], [2514.58, 2249.82], [2506.54, 2258.23], [2512.23, 2263.68], [2521.37, 2254.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1974.12, 2184.19], [1971.21, 2181.02], [1966.78, 2185.07], [1969.69, 2188.24], [1974.12, 2184.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2196.59, 2025.73], [2195.16, 2024.27], [2193.63, 2025.76], [2189.33, 2021.35], [2183.95, 2026.59], [2189.67, 2032.47], [2196.59, 2025.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2173.83, 2229.74], [2169.93, 2226.37], [2165.85, 2231.08], [2169.75, 2234.45], [2173.83, 2229.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1939.39, 2133.97], [1935.17, 2129.87], [1932.85, 2132.27], [1937.05, 2136.37], [1939.39, 2133.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2209.99, 2232.38], [2205.81, 2228.33], [2201.31, 2232.97], [2205.49, 2237.02], [2209.99, 2232.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2027.89, 2055.36], [2023.83, 2050.6], [2020.22, 2053.69], [2024.28, 2058.45], [2027.89, 2055.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2338.78, 2183.71], [2348.49, 2173.59], [2346.75, 2171.92], [2348.31, 2170.29], [2344.05, 2166.2], [2342.17, 2168.17], [2340.92, 2166.97], [2331.62, 2176.68], [2333.61, 2178.58], [2331.87, 2180.39], [2333.59, 2182.03], [2335.24, 2180.32], [2338.78, 2183.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2289.9, 2218.41], [2284.58, 2213.5], [2280.63, 2217.77], [2279.26, 2216.52], [2272.54, 2223.8], [2279.22, 2229.97], [2289.9, 2218.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1340.38, 2577.81], [1349.15, 2572.6], [1345.74, 2566.85], [1334.39, 2573.62], [1333.31, 2571.9], [1332.68, 2572.27], [1330.62, 2568.77], [1326.27, 2571.33], [1328.34, 2574.83], [1326.48, 2575.92], [1332.65, 2586.24], [1342.05, 2580.65], [1340.38, 2577.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[1984.42, 2004.84], [1981.25, 2000.98], [1976.84, 2004.62], [1980.01, 2008.47], [1984.42, 2004.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2291.3, 2146.64], [2283.41, 2139.18], [2278.82, 2144.05], [2286.71, 2151.5], [2291.3, 2146.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2458.19, 2175.36], [2462.65, 2170.68], [2458.1, 2166.26], [2453.55, 2170.83], [2458.19, 2175.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1755.11, 2180.35], [1766.46, 2178.13], [1758.99, 2142.81], [1751.67, 2144.25], [1755.06, 2161.81], [1751.41, 2162.5], [1755.11, 2180.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.222, "pop": 0, "jobs": 222}}, {"shape": {"outer": [[1931.64, 1990.15], [1926.71, 1985.7], [1922.75, 1990.08], [1927.67, 1994.53], [1931.64, 1990.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2118.35, 2255.57], [2113.35, 2251.03], [2105.35, 2259.84], [2110.34, 2264.38], [2118.35, 2255.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1366.72, 2644.0], [1376.47, 2637.5], [1377.49, 2639.01], [1384.01, 2634.66], [1382.25, 2632.02], [1382.9, 2631.59], [1380.86, 2628.54], [1380.22, 2628.97], [1373.49, 2633.46], [1371.34, 2630.31], [1370.97, 2630.56], [1369.28, 2628.09], [1365.1, 2630.88], [1367.05, 2633.61], [1362.05, 2636.94], [1366.72, 2644.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1860.44, 2004.35], [1854.8, 1999.12], [1852.43, 2001.68], [1851.51, 2000.83], [1844.67, 2008.22], [1851.22, 2014.29], [1860.44, 2004.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2107.12, 2309.95], [2104.13, 2306.94], [2099.88, 2311.16], [2102.85, 2314.16], [2107.12, 2309.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1927.75, 2029.69], [1929.41, 2027.95], [1930.39, 2028.88], [1938.03, 2020.85], [1931.8, 2014.91], [1924.07, 2023.03], [1924.74, 2023.67], [1923.16, 2025.32], [1927.75, 2029.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2026.22, 2079.27], [2023.6, 2076.58], [2014.02, 2085.94], [2019.62, 2091.67], [2025.18, 2086.25], [2022.2, 2083.2], [2026.22, 2079.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2465.25, 2153.35], [2468.32, 2150.37], [2459.46, 2141.2], [2455.11, 2145.42], [2462.39, 2152.94], [2463.66, 2151.71], [2465.25, 2153.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2346.93, 2218.31], [2335.77, 2207.73], [2329.67, 2214.16], [2340.83, 2224.74], [2346.93, 2218.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2504.96, 2239.23], [2499.15, 2233.72], [2492.54, 2240.69], [2498.36, 2246.2], [2504.96, 2239.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1260.04, 2572.59], [1267.57, 2568.62], [1262.62, 2559.19], [1255.07, 2563.16], [1252.69, 2564.42], [1255.96, 2570.64], [1258.35, 2569.38], [1260.04, 2572.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2261.03, 2190.15], [2258.18, 2187.06], [2255.21, 2189.81], [2252.1, 2186.45], [2241.46, 2196.29], [2247.42, 2202.72], [2261.03, 2190.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2350.46, 2085.57], [2346.56, 2081.58], [2344.9, 2083.19], [2342.59, 2080.82], [2335.41, 2087.84], [2336.52, 2088.97], [2334.4, 2091.06], [2339.5, 2096.28], [2350.46, 2085.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1884.5, 2053.2], [1886.11, 2051.47], [1887.14, 2052.44], [1895.79, 2043.18], [1889.45, 2037.25], [1879.19, 2048.22], [1884.5, 2053.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1989.59, 2089.44], [1997.24, 2096.88], [2010.25, 2083.51], [2002.61, 2076.07], [1989.59, 2089.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2367.6, 2101.14], [2362.25, 2095.92], [2358.71, 2099.54], [2359.9, 2100.7], [2353.65, 2107.1], [2358.94, 2112.26], [2368.58, 2102.38], [2367.46, 2101.29], [2367.6, 2101.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2295.05, 2530.64], [2296.94, 2528.83], [2298.2, 2530.14], [2301.21, 2527.26], [2299.82, 2525.81], [2301.75, 2523.95], [2295.16, 2517.08], [2288.33, 2523.64], [2295.05, 2530.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2366.46, 2078.59], [2362.27, 2074.49], [2353.24, 2083.71], [2357.42, 2087.81], [2366.46, 2078.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2346.74, 2481.34], [2349.55, 2478.29], [2347.89, 2476.77], [2348.67, 2475.93], [2343.12, 2470.83], [2340.76, 2473.39], [2338.6, 2471.41], [2336.06, 2474.17], [2343.47, 2481.01], [2344.81, 2479.56], [2346.74, 2481.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1155.25, 2251.01], [1160.61, 2248.46], [1158.98, 2245.03], [1153.62, 2247.57], [1155.25, 2251.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2197.96, 2371.72], [2185.72, 2360.67], [2181.02, 2365.88], [2193.27, 2376.93], [2197.96, 2371.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2096.89, 2040.39], [2090.21, 2033.98], [2087.6, 2036.7], [2088.06, 2037.13], [2084.65, 2040.68], [2090.87, 2046.65], [2096.89, 2040.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2021.08, 2030.49], [2024.9, 2026.24], [2024.07, 2025.49], [2025.72, 2023.67], [2021.52, 2019.9], [2019.62, 2022.02], [2018.01, 2020.57], [2014.66, 2024.29], [2016.28, 2025.75], [2014.89, 2027.3], [2017.92, 2030.01], [2019.1, 2028.7], [2021.08, 2030.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2014.03, 2244.96], [2008.46, 2239.66], [2003.17, 2245.24], [2008.74, 2250.54], [2014.03, 2244.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2611.32, 2289.93], [2620.05, 2278.78], [2613.96, 2274.01], [2611.46, 2277.19], [2609.63, 2275.75], [2601.87, 2285.65], [2605.58, 2288.56], [2607.1, 2286.63], [2611.32, 2289.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2052.19, 2360.24], [2063.84, 2347.94], [2057.08, 2341.22], [2045.03, 2353.46], [2052.19, 2360.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2158.62, 2090.53], [2153.49, 2086.06], [2150.12, 2089.92], [2155.25, 2094.39], [2158.62, 2090.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2225.3, 2600.95], [2231.49, 2594.33], [2220.86, 2584.39], [2214.67, 2591.01], [2216.7, 2592.9], [2215.42, 2594.27], [2218.9, 2597.52], [2220.18, 2596.15], [2225.3, 2600.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2022.71, 2181.53], [2028.41, 2176.07], [2029.21, 2176.91], [2034.15, 2172.15], [2030.62, 2168.49], [2028.6, 2170.43], [2025.02, 2166.7], [2017.93, 2173.5], [2020.53, 2176.19], [2019.0, 2177.67], [2022.71, 2181.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2011.21, 2073.37], [2015.77, 2068.67], [2010.98, 2064.0], [2006.48, 2068.67], [2011.21, 2073.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1941.8, 2186.55], [1943.09, 2185.15], [1944.3, 2186.28], [1952.07, 2177.88], [1950.39, 2176.32], [1951.75, 2174.84], [1947.67, 2171.07], [1949.32, 2169.27], [1947.27, 2167.38], [1939.02, 2176.28], [1939.88, 2177.08], [1937.53, 2179.62], [1938.33, 2180.38], [1936.85, 2181.97], [1941.8, 2186.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2082.78, 2170.82], [2079.27, 2167.28], [2074.94, 2171.57], [2078.44, 2175.12], [2082.78, 2170.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1825.88, 2001.82], [1821.77, 1997.68], [1817.35, 2002.06], [1821.45, 2006.2], [1825.88, 2001.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2282.93, 2108.62], [2275.45, 2100.65], [2264.99, 2110.47], [2272.47, 2118.44], [2282.93, 2108.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2073.44, 2095.67], [2068.8, 2090.91], [2064.22, 2095.39], [2068.86, 2100.15], [2073.44, 2095.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2266.98, 2289.54], [2262.52, 2285.12], [2259.93, 2287.74], [2264.39, 2292.16], [2266.98, 2289.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2211.53, 2357.3], [2198.55, 2344.81], [2195.0, 2348.51], [2196.47, 2349.92], [2194.74, 2351.71], [2206.24, 2362.79], [2211.53, 2357.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2554.99, 2268.47], [2560.2, 2263.19], [2555.56, 2258.74], [2550.41, 2263.91], [2554.99, 2268.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2172.1, 2368.63], [2168.36, 2364.73], [2163.7, 2369.2], [2167.43, 2373.1], [2172.1, 2368.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1847.12, 1920.45], [1838.42, 1911.44], [1833.19, 1916.49], [1843.32, 1926.99], [1847.92, 1922.54], [1846.49, 1921.06], [1847.12, 1920.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2237.44, 2230.32], [2232.48, 2225.1], [2220.18, 2236.78], [2226.89, 2243.86], [2237.84, 2233.48], [2236.08, 2231.62], [2237.44, 2230.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2150.21, 2227.75], [2143.96, 2221.35], [2136.56, 2228.57], [2142.82, 2234.97], [2150.21, 2227.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1889.17, 2033.26], [1883.13, 2027.42], [1873.99, 2036.85], [1880.03, 2042.71], [1889.17, 2033.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2301.21, 2125.77], [2295.35, 2120.26], [2283.49, 2132.87], [2289.34, 2138.37], [2301.21, 2125.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2109.28, 2249.62], [2105.64, 2245.7], [2100.82, 2250.18], [2104.45, 2254.1], [2109.28, 2249.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2028.38, 2228.31], [2024.17, 2223.9], [2019.05, 2228.76], [2023.27, 2233.19], [2028.38, 2228.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1448.43, 2802.74], [1452.85, 2802.65], [1452.52, 2796.62], [1448.1, 2796.71], [1448.43, 2802.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.017, "pop": 0, "jobs": 17}}, {"shape": {"outer": [[1925.05, 2071.26], [1918.34, 2064.67], [1911.48, 2071.67], [1913.92, 2074.06], [1908.82, 2079.26], [1913.09, 2083.45], [1925.05, 2071.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2099.96, 2098.99], [2095.27, 2093.86], [2086.58, 2101.79], [2091.26, 2106.93], [2099.96, 2098.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2454.54, 2204.66], [2462.31, 2196.89], [2456.48, 2191.06], [2447.46, 2200.08], [2451.05, 2203.67], [2452.3, 2202.42], [2454.54, 2204.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1981.86, 2071.3], [1973.38, 2063.3], [1968.64, 2068.32], [1977.12, 2076.32], [1981.86, 2071.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2151.36, 2005.89], [2147.16, 2001.75], [2142.25, 2006.73], [2146.46, 2010.87], [2151.36, 2005.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1878.91, 2529.2], [1873.86, 2501.77], [1857.09, 2424.43], [1835.54, 2429.12], [1852.41, 2506.45], [1852.62, 2506.4], [1857.78, 2533.86], [1878.91, 2529.2]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1502}}, {"shape": {"outer": [[2309.02, 2019.5], [2303.25, 2014.18], [2298.53, 2019.29], [2304.3, 2024.62], [2309.02, 2019.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2108.93, 2345.73], [2117.38, 2337.63], [2115.03, 2335.18], [2116.57, 2333.7], [2113.53, 2330.51], [2111.54, 2332.41], [2110.82, 2331.67], [2102.59, 2339.56], [2103.66, 2340.67], [2101.94, 2342.32], [2104.45, 2344.94], [2106.4, 2343.07], [2108.93, 2345.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1375.38, 2746.43], [1375.14, 2734.33], [1369.99, 2734.5], [1369.96, 2733.77], [1366.6, 2733.88], [1366.63, 2734.62], [1360.27, 2734.83], [1360.52, 2747.05], [1363.59, 2746.97], [1363.86, 2757.11], [1371.56, 2756.87], [1371.37, 2749.2], [1368.9, 2749.26], [1368.84, 2746.67], [1375.38, 2746.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[2123.63, 2056.9], [2118.98, 2052.17], [2115.18, 2055.89], [2119.82, 2060.63], [2123.63, 2056.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2226.89, 2162.44], [2221.93, 2157.24], [2220.72, 2158.39], [2220.67, 2158.34], [2212.87, 2165.77], [2219.24, 2172.45], [2226.99, 2165.06], [2225.64, 2163.65], [2226.89, 2162.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2197.06, 2344.0], [2192.83, 2340.11], [2187.7, 2345.68], [2191.93, 2349.57], [2197.06, 2344.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2163.73, 2223.63], [2167.88, 2219.4], [2163.57, 2215.17], [2159.42, 2219.4], [2163.73, 2223.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2244.47, 2312.39], [2240.87, 2308.65], [2236.13, 2313.21], [2239.72, 2316.95], [2244.47, 2312.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2166.91, 2161.51], [2160.69, 2155.62], [2148.5, 2168.48], [2154.72, 2174.38], [2166.91, 2161.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2233.8, 2572.52], [2227.58, 2566.31], [2225.61, 2568.29], [2231.83, 2574.48], [2233.8, 2572.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1929.95, 1932.85], [1924.37, 1927.27], [1914.79, 1936.87], [1920.37, 1942.44], [1929.95, 1932.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2325.37, 2041.8], [2330.31, 2036.37], [2322.44, 2028.81], [2317.44, 2034.02], [2325.37, 2041.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2187.82, 2207.8], [2183.91, 2204.36], [2178.63, 2210.35], [2182.54, 2213.79], [2187.82, 2207.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2097.01, 2147.01], [2092.52, 2142.54], [2087.13, 2147.96], [2091.62, 2152.42], [2097.01, 2147.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2354.48, 2210.94], [2345.37, 2201.87], [2339.58, 2207.68], [2348.69, 2216.75], [2354.48, 2210.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2624.34, 2287.74], [2619.69, 2283.27], [2610.53, 2292.81], [2615.19, 2297.28], [2624.34, 2287.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1730.02, 1811.17], [1757.58, 1776.59], [1763.26, 1781.41], [1770.1, 1773.72], [1757.82, 1763.59], [1723.83, 1806.25], [1730.02, 1811.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.326, "pop": 0, "jobs": 326}}, {"shape": {"outer": [[1800.99, 2615.3], [1819.61, 2611.19], [1816.68, 2597.92], [1798.05, 2602.02], [1800.99, 2615.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.166, "pop": 0, "jobs": 166}}, {"shape": {"outer": [[1953.1, 2095.86], [1954.76, 2094.08], [1951.45, 2091.02], [1947.48, 2095.33], [1945.61, 2093.6], [1943.9, 2095.46], [1945.09, 2096.56], [1943.42, 2098.37], [1950.1, 2104.54], [1955.81, 2098.36], [1953.1, 2095.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2308.12, 2031.09], [2305.35, 2028.48], [2300.7, 2033.38], [2303.46, 2035.99], [2308.12, 2031.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2144.09, 2195.84], [2133.22, 2185.77], [2130.72, 2188.49], [2131.22, 2188.95], [2128.86, 2191.49], [2130.31, 2192.83], [2129.31, 2193.92], [2138.22, 2202.17], [2144.09, 2195.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2273.2, 2007.18], [2269.13, 2003.48], [2268.34, 2004.35], [2267.1, 2003.22], [2264.53, 2006.05], [2263.3, 2004.94], [2260.38, 2008.14], [2261.38, 2009.05], [2257.62, 2013.17], [2263.17, 2018.21], [2273.2, 2007.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1885.6, 1963.29], [1882.09, 1960.01], [1878.6, 1963.75], [1882.12, 1967.03], [1885.6, 1963.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2310.05, 2514.76], [2300.57, 2506.26], [2297.64, 2509.54], [2299.27, 2511.0], [2297.19, 2513.33], [2305.05, 2520.35], [2310.05, 2514.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1252.82, 2419.36], [1244.58, 2411.05], [1244.12, 2411.51], [1241.89, 2409.27], [1238.71, 2412.42], [1240.94, 2414.67], [1237.15, 2418.42], [1240.88, 2422.18], [1235.29, 2427.73], [1241.28, 2433.79], [1245.1, 2430.0], [1246.88, 2428.24], [1251.18, 2423.97], [1249.69, 2422.47], [1252.82, 2419.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2273.87, 2031.74], [2279.04, 2036.54], [2292.61, 2021.49], [2287.45, 2016.5], [2273.87, 2031.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2132.56, 2040.74], [2126.94, 2035.24], [2121.48, 2040.81], [2127.11, 2046.31], [2132.56, 2040.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2205.52, 2033.58], [2203.65, 2031.6], [2202.62, 2032.58], [2198.73, 2028.45], [2192.36, 2034.45], [2198.11, 2040.56], [2205.52, 2033.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2277.97, 1946.91], [2274.98, 1944.0], [2273.92, 1945.11], [2272.08, 1943.33], [2270.51, 1944.94], [2269.69, 1944.14], [2266.98, 1946.92], [2267.31, 1947.24], [2265.61, 1948.99], [2270.92, 1954.16], [2277.97, 1946.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2395.26, 2126.21], [2390.76, 2122.17], [2387.07, 2126.29], [2386.09, 2125.42], [2380.15, 2132.04], [2385.63, 2136.95], [2395.26, 2126.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2407.08, 2419.49], [2398.79, 2411.11], [2393.61, 2416.24], [2401.91, 2424.62], [2407.08, 2419.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1313.01, 2701.67], [1312.97, 2700.75], [1317.24, 2700.6], [1317.12, 2697.07], [1320.94, 2696.94], [1320.68, 2689.0], [1311.36, 2689.33], [1311.31, 2687.95], [1305.99, 2688.14], [1306.03, 2689.51], [1306.23, 2695.44], [1303.44, 2695.53], [1303.6, 2700.56], [1306.39, 2700.47], [1306.41, 2700.98], [1309.96, 2700.86], [1310.0, 2701.77], [1313.01, 2701.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2140.99, 1994.54], [2137.48, 1991.51], [2133.83, 1995.72], [2137.34, 1998.77], [2140.99, 1994.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2223.2, 2300.32], [2221.22, 2298.39], [2219.9, 2299.74], [2217.83, 2297.72], [2209.81, 2305.96], [2215.62, 2311.63], [2223.39, 2303.64], [2221.64, 2301.92], [2223.2, 2300.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2230.09, 2051.93], [2220.93, 2042.83], [2208.25, 2055.99], [2217.24, 2065.02], [2230.09, 2051.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.15, "pop": 0, "jobs": 150}}, {"shape": {"outer": [[2248.56, 2543.11], [2259.81, 2531.35], [2253.05, 2525.11], [2241.84, 2536.6], [2248.56, 2543.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1809.8, 1955.16], [1807.32, 1952.82], [1806.54, 1953.64], [1804.2, 1951.42], [1798.5, 1957.45], [1805.01, 1963.62], [1810.54, 1957.78], [1808.84, 1956.18], [1809.8, 1955.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1935.87, 1976.71], [1931.8, 1972.85], [1926.33, 1978.63], [1930.4, 1982.48], [1935.87, 1976.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2309.0, 2071.01], [2311.28, 2068.8], [2312.78, 2070.35], [2325.2, 2058.32], [2323.38, 2056.45], [2325.34, 2054.55], [2321.16, 2050.22], [2309.2, 2061.81], [2309.62, 2062.24], [2306.55, 2065.21], [2308.03, 2066.72], [2306.38, 2068.31], [2309.0, 2071.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1301.76, 2503.77], [1309.75, 2500.21], [1306.86, 2493.75], [1302.18, 2495.84], [1300.83, 2492.83], [1297.16, 2494.47], [1297.03, 2494.17], [1297.46, 2493.17], [1296.62, 2491.41], [1295.76, 2491.34], [1295.26, 2490.23], [1292.07, 2491.69], [1291.09, 2489.42], [1286.32, 2491.55], [1287.82, 2494.8], [1284.36, 2496.31], [1288.2, 2504.94], [1292.14, 2503.17], [1295.48, 2510.59], [1303.24, 2507.07], [1301.76, 2503.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[2141.28, 2074.02], [2138.55, 2071.66], [2135.51, 2075.16], [2138.24, 2077.53], [2141.28, 2074.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2195.09, 2061.83], [2189.02, 2056.53], [2183.26, 2063.12], [2189.33, 2068.43], [2195.09, 2061.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2121.65, 2323.78], [2117.53, 2319.86], [2112.07, 2325.61], [2116.2, 2329.53], [2121.65, 2323.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2124.86, 2067.11], [2118.97, 2060.98], [2113.77, 2065.98], [2117.56, 2069.92], [2115.52, 2071.89], [2117.62, 2074.08], [2124.86, 2067.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2035.93, 2035.61], [2031.67, 2030.9], [2029.11, 2033.22], [2028.73, 2032.8], [2022.87, 2038.11], [2028.1, 2043.88], [2034.96, 2037.67], [2034.38, 2037.03], [2035.93, 2035.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2503.2, 2213.95], [2500.09, 2211.14], [2495.68, 2216.02], [2498.79, 2218.84], [2503.2, 2213.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2386.6, 2110.51], [2382.35, 2106.34], [2378.21, 2110.55], [2382.45, 2114.73], [2386.6, 2110.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2180.68, 2252.14], [2174.65, 2246.31], [2164.78, 2256.53], [2170.81, 2262.35], [2180.68, 2252.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1991.68, 2217.23], [1988.62, 2214.0], [1987.61, 2214.97], [1984.92, 2212.12], [1978.21, 2218.49], [1983.95, 2224.55], [1991.68, 2217.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2244.7, 2326.29], [2237.53, 2318.97], [2231.82, 2324.55], [2239.0, 2331.88], [2244.7, 2326.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1283.88, 2697.94], [1284.08, 2696.76], [1288.38, 2697.47], [1289.99, 2687.77], [1286.33, 2687.16], [1286.78, 2684.4], [1281.22, 2683.49], [1280.8, 2686.06], [1268.09, 2683.97], [1266.73, 2692.22], [1277.61, 2694.01], [1277.34, 2695.66], [1281.19, 2696.28], [1281.0, 2697.47], [1283.88, 2697.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1214.92, 2463.11], [1218.98, 2459.46], [1219.34, 2459.86], [1223.05, 2456.54], [1211.58, 2443.72], [1207.81, 2447.08], [1210.57, 2450.18], [1202.93, 2457.04], [1211.63, 2466.77], [1215.27, 2463.5], [1214.92, 2463.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2593.99, 2287.14], [2611.02, 2269.46], [2600.48, 2258.9], [2583.7, 2277.21], [2593.99, 2287.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.231, "pop": 0, "jobs": 231}}, {"shape": {"outer": [[2239.11, 2116.23], [2234.81, 2112.14], [2230.57, 2116.6], [2234.86, 2120.7], [2239.11, 2116.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2169.66, 2032.26], [2164.74, 2027.58], [2155.97, 2036.83], [2161.89, 2042.45], [2167.33, 2036.7], [2166.33, 2035.76], [2169.66, 2032.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2252.57, 2572.01], [2254.68, 2569.78], [2256.89, 2571.87], [2259.97, 2568.61], [2249.9, 2559.09], [2244.72, 2564.57], [2252.57, 2572.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2450.09, 2168.48], [2446.08, 2164.53], [2441.65, 2169.04], [2445.66, 2172.98], [2450.09, 2168.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2813.18, 2041.97], [2812.77, 2036.02], [2806.55, 2036.45], [2806.97, 2042.4], [2813.18, 2041.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2817.78, 2022.65], [2817.42, 2016.29], [2811.96, 2016.59], [2812.33, 2022.96], [2817.78, 2022.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2947.18, 2318.87], [2946.89, 2313.7], [2944.17, 2313.86], [2944.12, 2312.87], [2931.44, 2313.58], [2931.89, 2321.79], [2945.28, 2321.05], [2945.16, 2318.98], [2947.18, 2318.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2763.33, 2283.48], [2762.87, 2272.12], [2754.4, 2272.46], [2754.84, 2283.82], [2763.33, 2283.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2846.98, 2160.25], [2846.54, 2154.03], [2843.37, 2154.25], [2843.26, 2152.69], [2831.68, 2153.49], [2832.22, 2161.28], [2846.98, 2160.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2935.18, 2094.8], [2934.55, 2087.07], [2916.73, 2088.52], [2917.17, 2093.85], [2921.76, 2093.46], [2922.01, 2096.62], [2932.87, 2095.73], [2932.81, 2094.99], [2935.18, 2094.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2791.78, 1908.37], [2791.28, 1902.38], [2784.4, 1902.95], [2784.91, 1908.94], [2791.78, 1908.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2937.24, 1689.31], [2929.49, 1687.77], [2927.25, 1699.08], [2935.0, 1700.62], [2937.24, 1689.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2692.42, 1953.58], [2692.13, 1949.53], [2689.81, 1949.7], [2689.45, 1944.72], [2685.3, 1945.02], [2685.39, 1946.29], [2678.23, 1946.81], [2678.92, 1956.28], [2690.6, 1955.44], [2690.48, 1953.72], [2692.42, 1953.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2736.05, 2282.13], [2735.55, 2275.54], [2728.69, 2276.05], [2729.18, 2282.65], [2736.05, 2282.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2915.81, 1658.88], [2909.79, 1657.69], [2908.46, 1664.39], [2914.49, 1665.57], [2915.81, 1658.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2931.72, 1579.21], [2932.17, 1576.21], [2933.51, 1576.41], [2935.73, 1561.28], [2927.49, 1560.07], [2925.36, 1574.58], [2926.55, 1574.74], [2926.02, 1578.37], [2931.72, 1579.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2806.77, 2054.45], [2806.48, 2047.86], [2798.75, 2048.2], [2799.05, 2054.8], [2806.77, 2054.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2776.3, 1903.0], [2775.91, 1893.33], [2764.5, 1893.8], [2764.68, 1898.29], [2765.9, 1898.24], [2766.11, 1903.42], [2776.3, 1903.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2764.43, 2299.32], [2764.0, 2292.92], [2757.77, 2293.34], [2758.2, 2299.74], [2764.43, 2299.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2749.07, 2046.34], [2748.62, 2038.64], [2736.58, 2039.34], [2736.66, 2040.73], [2735.4, 2040.8], [2735.68, 2045.77], [2736.48, 2045.73], [2736.55, 2047.07], [2749.07, 2046.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2717.79, 1971.34], [2717.42, 1967.6], [2711.58, 1968.17], [2711.96, 1971.92], [2717.79, 1971.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2790.94, 2126.63], [2790.63, 2118.83], [2779.16, 2119.3], [2779.47, 2127.09], [2790.94, 2126.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2923.62, 1874.08], [2925.28, 1867.71], [2924.78, 1867.58], [2926.92, 1859.37], [2925.63, 1859.04], [2926.75, 1854.72], [2913.26, 1851.23], [2909.34, 1866.26], [2916.34, 1868.07], [2915.33, 1871.93], [2923.62, 1874.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.171, "pop": 0, "jobs": 171}}, {"shape": {"outer": [[2757.87, 2224.83], [2757.69, 2220.16], [2755.01, 2220.26], [2754.96, 2218.93], [2742.12, 2219.42], [2742.25, 2222.79], [2740.88, 2222.85], [2741.04, 2227.19], [2756.12, 2226.61], [2756.05, 2224.89], [2757.87, 2224.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2837.29, 1983.87], [2836.97, 1978.06], [2831.93, 1978.35], [2831.86, 1977.18], [2824.51, 1977.59], [2824.96, 1985.68], [2835.52, 1985.1], [2835.47, 1983.97], [2837.29, 1983.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2804.18, 2144.52], [2810.8, 2144.25], [2810.53, 2137.38], [2803.91, 2137.63], [2804.18, 2144.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2636.4, 2235.72], [2641.75, 2232.48], [2637.37, 2225.28], [2630.25, 2229.59], [2630.55, 2230.09], [2629.42, 2230.77], [2630.71, 2232.89], [2631.63, 2232.33], [2633.49, 2235.41], [2635.47, 2234.19], [2636.4, 2235.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2839.01, 2008.56], [2838.68, 2002.03], [2825.65, 2002.7], [2825.98, 2009.22], [2839.01, 2008.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2693.09, 2004.09], [2692.63, 1997.67], [2690.44, 1997.82], [2690.35, 1996.57], [2680.37, 1997.28], [2680.95, 2005.46], [2691.06, 2004.76], [2691.02, 2004.24], [2693.09, 2004.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2940.72, 2190.54], [2940.56, 2187.59], [2939.04, 2187.67], [2938.9, 2185.09], [2934.38, 2185.35], [2934.3, 2183.89], [2929.01, 2184.2], [2929.08, 2185.42], [2923.58, 2185.73], [2923.84, 2190.24], [2924.93, 2190.19], [2925.16, 2194.34], [2938.57, 2193.59], [2938.4, 2190.67], [2940.72, 2190.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2734.09, 2058.71], [2733.89, 2052.64], [2728.34, 2052.83], [2728.54, 2058.9], [2734.09, 2058.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2759.31, 2237.1], [2758.86, 2230.87], [2756.79, 2231.03], [2756.63, 2228.85], [2745.59, 2229.66], [2746.21, 2238.07], [2759.31, 2237.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2812.8, 2014.77], [2812.4, 2010.9], [2805.74, 2011.58], [2806.14, 2015.45], [2812.8, 2014.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2836.34, 1960.22], [2835.92, 1952.95], [2834.07, 1953.06], [2834.02, 1952.26], [2820.88, 1953.03], [2821.35, 1961.1], [2836.34, 1960.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2942.51, 2281.68], [2942.15, 2274.6], [2933.65, 2275.04], [2933.58, 2273.7], [2930.52, 2273.85], [2930.65, 2276.47], [2934.08, 2276.28], [2934.38, 2282.1], [2942.51, 2281.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2849.6, 2195.84], [2849.42, 2190.58], [2846.13, 2190.7], [2846.09, 2189.5], [2837.23, 2189.79], [2837.53, 2198.56], [2846.98, 2198.25], [2846.9, 2195.92], [2849.6, 2195.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2884.49, 2131.44], [2884.31, 2127.38], [2882.83, 2127.45], [2882.77, 2126.4], [2869.13, 2127.0], [2869.52, 2135.62], [2882.87, 2135.02], [2882.72, 2131.52], [2884.49, 2131.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2928.47, 1725.67], [2919.64, 1723.99], [2917.35, 1736.12], [2926.17, 1737.78], [2928.47, 1725.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2693.17, 2036.14], [2692.97, 2030.21], [2681.79, 2030.59], [2681.99, 2036.52], [2693.17, 2036.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2737.37, 2200.79], [2731.45, 2200.86], [2731.52, 2207.54], [2737.44, 2207.47], [2737.37, 2200.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2882.45, 1774.86], [2889.48, 1776.47], [2889.6, 1775.94], [2891.13, 1776.29], [2893.71, 1765.13], [2892.26, 1764.79], [2892.52, 1763.66], [2887.79, 1762.57], [2887.42, 1764.19], [2885.04, 1763.64], [2882.45, 1774.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2889.7, 2224.78], [2889.52, 2222.05], [2888.54, 2222.11], [2888.48, 2221.18], [2875.55, 2222.01], [2876.03, 2229.55], [2888.55, 2228.76], [2888.3, 2224.86], [2889.7, 2224.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2657.18, 2204.34], [2669.89, 2203.76], [2669.51, 2193.34], [2656.8, 2193.78], [2657.18, 2204.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2837.72, 1972.11], [2836.99, 1964.2], [2824.11, 1965.38], [2824.84, 1973.3], [2837.72, 1972.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2672.97, 2251.9], [2672.76, 2248.33], [2659.17, 2249.13], [2659.58, 2256.06], [2671.57, 2255.35], [2671.37, 2251.99], [2672.97, 2251.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2741.73, 2234.08], [2741.51, 2229.12], [2734.16, 2229.45], [2734.38, 2234.4], [2741.73, 2234.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2697.42, 2217.93], [2692.59, 2218.05], [2692.84, 2227.08], [2704.69, 2226.76], [2704.58, 2222.56], [2702.75, 2222.62], [2702.65, 2219.03], [2697.45, 2219.17], [2697.42, 2217.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2833.42, 2245.15], [2848.88, 2244.42], [2848.8, 2242.02], [2851.37, 2241.82], [2851.17, 2239.79], [2841.65, 2240.15], [2832.9, 2240.49], [2833.42, 2245.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2796.03, 2199.06], [2795.59, 2193.2], [2781.85, 2194.21], [2782.36, 2201.18], [2793.67, 2200.35], [2793.59, 2199.24], [2796.03, 2199.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2878.86, 1994.07], [2878.4, 1986.57], [2875.66, 1986.73], [2875.57, 1985.26], [2866.44, 1985.83], [2867.0, 1994.8], [2878.86, 1994.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2886.75, 1868.74], [2893.61, 1835.65], [2880.56, 1832.96], [2873.69, 1866.05], [2886.75, 1868.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.288, "pop": 0, "jobs": 288}}, {"shape": {"outer": [[2731.03, 2248.63], [2730.82, 2242.4], [2726.39, 2242.55], [2726.6, 2248.78], [2731.03, 2248.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2626.06, 2170.26], [2621.28, 2162.65], [2617.79, 2164.78], [2617.24, 2163.82], [2614.87, 2165.26], [2615.41, 2166.05], [2613.96, 2166.87], [2618.78, 2174.81], [2626.06, 2170.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2900.82, 1841.68], [2901.61, 1837.96], [2894.56, 1836.46], [2893.76, 1840.18], [2900.82, 1841.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.018, "pop": 0, "jobs": 18}}, {"shape": {"outer": [[2697.43, 1875.94], [2696.8, 1868.97], [2688.43, 1869.73], [2689.06, 1876.7], [2697.43, 1875.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2668.68, 1858.29], [2675.59, 1857.94], [2675.5, 1856.29], [2682.36, 1855.93], [2681.39, 1837.11], [2667.62, 1837.81], [2668.68, 1858.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.174, "pop": 0, "jobs": 174}}, {"shape": {"outer": [[2734.59, 2051.04], [2734.34, 2047.43], [2727.97, 2047.88], [2728.22, 2051.47], [2734.59, 2051.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2941.32, 1578.79], [2937.25, 1577.69], [2935.5, 1584.14], [2939.57, 1585.25], [2941.32, 1578.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2844.5, 2111.61], [2843.86, 2103.46], [2832.11, 2104.38], [2832.53, 2109.79], [2834.79, 2109.61], [2835.01, 2112.35], [2844.5, 2111.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2948.37, 1823.14], [2940.13, 1820.96], [2937.61, 1830.48], [2945.86, 1832.66], [2948.37, 1823.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2704.86, 2239.81], [2704.32, 2231.35], [2694.58, 2231.98], [2694.67, 2233.33], [2691.21, 2233.55], [2691.61, 2239.91], [2694.69, 2239.71], [2694.73, 2240.46], [2704.86, 2239.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2948.54, 1752.1], [2952.78, 1734.02], [2945.42, 1732.3], [2944.42, 1736.58], [2943.41, 1736.34], [2942.47, 1740.36], [2943.65, 1740.64], [2942.71, 1744.64], [2944.26, 1745.01], [2942.9, 1750.78], [2948.54, 1752.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2911.92, 2334.52], [2911.49, 2326.53], [2904.76, 2326.9], [2905.2, 2334.89], [2911.92, 2334.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2869.89, 1960.94], [2859.91, 1961.2], [2860.09, 1968.45], [2870.06, 1968.2], [2869.89, 1960.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2801.12, 2317.43], [2799.91, 2306.59], [2791.6, 2307.52], [2792.61, 2316.64], [2793.08, 2316.58], [2793.28, 2318.31], [2801.12, 2317.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2856.29, 2333.75], [2855.76, 2326.34], [2844.41, 2327.14], [2844.94, 2334.54], [2856.29, 2333.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2944.04, 2295.95], [2943.71, 2289.23], [2939.29, 2289.45], [2939.19, 2287.49], [2934.27, 2287.73], [2934.35, 2289.37], [2928.3, 2289.67], [2928.58, 2295.44], [2934.66, 2295.14], [2934.72, 2296.4], [2944.04, 2295.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2853.58, 2278.73], [2853.22, 2274.02], [2850.89, 2274.21], [2850.39, 2267.64], [2844.4, 2268.09], [2845.27, 2279.37], [2853.58, 2278.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2744.0, 1940.28], [2743.74, 1932.7], [2740.21, 1932.82], [2740.19, 1931.77], [2730.96, 1932.08], [2731.0, 1933.14], [2726.34, 1933.29], [2726.63, 1941.92], [2737.89, 1941.54], [2737.85, 1940.48], [2744.0, 1940.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2799.02, 2176.37], [2798.47, 2165.95], [2782.51, 2166.79], [2783.06, 2177.21], [2799.02, 2176.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2940.26, 1661.82], [2940.51, 1660.52], [2942.69, 1660.93], [2945.81, 1644.1], [2937.91, 1642.63], [2937.01, 1647.54], [2935.47, 1647.25], [2933.29, 1658.98], [2935.7, 1659.42], [2935.43, 1660.92], [2940.26, 1661.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2841.49, 2044.13], [2841.32, 2036.08], [2824.25, 2036.46], [2824.38, 2041.96], [2821.71, 2042.03], [2821.76, 2044.57], [2841.49, 2044.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2670.44, 2244.06], [2669.96, 2235.88], [2658.12, 2236.58], [2658.6, 2244.76], [2670.44, 2244.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2645.69, 2171.09], [2652.95, 2166.75], [2649.63, 2161.08], [2642.31, 2165.15], [2645.69, 2171.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2744.32, 2138.63], [2754.69, 2138.32], [2754.5, 2131.63], [2752.42, 2131.7], [2752.38, 2130.14], [2744.41, 2130.36], [2744.43, 2131.19], [2740.19, 2131.31], [2740.39, 2138.14], [2744.3, 2138.03], [2744.32, 2138.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2928.02, 1603.99], [2919.47, 1601.86], [2917.01, 1611.7], [2925.56, 1613.84], [2928.02, 1603.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2904.92, 1994.18], [2904.12, 1982.74], [2895.01, 1983.37], [2895.81, 1994.82], [2904.92, 1994.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2843.61, 2124.94], [2843.08, 2115.34], [2829.21, 2116.11], [2829.74, 2125.71], [2843.61, 2124.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2930.57, 1778.19], [2922.73, 1776.77], [2921.14, 1785.5], [2928.98, 1786.94], [2930.57, 1778.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2914.56, 1760.71], [2915.98, 1754.67], [2909.77, 1753.23], [2908.47, 1759.34], [2914.56, 1760.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2893.45, 2321.73], [2892.8, 2312.9], [2878.31, 2313.97], [2878.72, 2319.57], [2880.88, 2319.41], [2881.13, 2322.65], [2893.45, 2321.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2710.9, 2027.66], [2710.65, 2023.07], [2703.31, 2023.47], [2703.56, 2028.06], [2710.9, 2027.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2932.98, 2083.41], [2932.51, 2074.5], [2920.88, 2075.12], [2920.99, 2077.22], [2914.07, 2077.6], [2914.36, 2083.05], [2921.22, 2082.67], [2921.29, 2084.03], [2932.98, 2083.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2704.64, 2204.08], [2704.59, 2198.83], [2708.23, 2198.8], [2708.21, 2195.58], [2704.6, 2195.61], [2704.6, 2194.92], [2695.97, 2195.0], [2696.04, 2204.15], [2704.64, 2204.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2703.42, 2154.35], [2702.82, 2145.56], [2689.94, 2146.44], [2690.32, 2152.09], [2690.79, 2152.05], [2691.01, 2155.2], [2703.42, 2154.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2754.22, 2114.35], [2753.68, 2107.91], [2740.62, 2109.02], [2740.82, 2111.43], [2739.67, 2111.53], [2740.22, 2117.91], [2753.31, 2116.79], [2753.12, 2114.45], [2754.22, 2114.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2944.3, 2307.81], [2944.27, 2306.38], [2946.72, 2306.33], [2946.59, 2300.6], [2944.4, 2300.65], [2944.37, 2299.46], [2935.75, 2299.68], [2935.8, 2301.31], [2932.89, 2301.39], [2933.02, 2306.62], [2936.13, 2306.53], [2936.17, 2308.01], [2944.3, 2307.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2703.26, 2251.14], [2702.62, 2242.45], [2694.48, 2243.04], [2694.6, 2244.82], [2692.84, 2244.94], [2693.21, 2249.9], [2695.4, 2249.75], [2695.55, 2251.7], [2703.26, 2251.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2904.84, 1768.78], [2905.34, 1765.17], [2899.49, 1764.13], [2898.7, 1768.67], [2896.52, 1768.29], [2894.74, 1778.43], [2902.88, 1779.87], [2904.84, 1768.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2756.76, 2176.75], [2756.38, 2170.45], [2754.22, 2170.58], [2754.16, 2169.76], [2742.96, 2170.44], [2743.47, 2178.84], [2754.56, 2178.16], [2754.48, 2176.9], [2756.76, 2176.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2797.83, 2187.66], [2797.35, 2180.53], [2784.03, 2181.41], [2784.19, 2183.77], [2786.04, 2183.65], [2786.36, 2188.43], [2797.83, 2187.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2784.53, 1973.46], [2784.27, 1969.24], [2782.14, 1969.38], [2782.05, 1967.98], [2768.31, 1968.87], [2768.58, 1973.09], [2769.85, 1973.01], [2770.05, 1976.19], [2782.49, 1975.4], [2782.38, 1973.6], [2784.53, 1973.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2893.82, 1982.18], [2893.19, 1976.02], [2887.18, 1976.64], [2887.81, 1982.79], [2893.82, 1982.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2954.13, 1793.49], [2956.3, 1780.23], [2950.49, 1779.27], [2949.92, 1782.78], [2946.62, 1782.24], [2945.71, 1787.76], [2947.83, 1788.11], [2947.14, 1792.35], [2954.13, 1793.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2700.36, 2060.28], [2700.14, 2055.82], [2697.09, 2055.97], [2697.0, 2054.03], [2683.66, 2054.7], [2683.71, 2055.72], [2681.99, 2055.81], [2682.17, 2059.29], [2684.03, 2059.19], [2684.29, 2064.26], [2697.07, 2063.63], [2696.91, 2060.45], [2700.36, 2060.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2817.49, 2241.09], [2823.84, 2240.83], [2823.59, 2233.84], [2817.2, 2234.16], [2817.49, 2241.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2812.06, 2171.43], [2811.84, 2164.75], [2805.39, 2164.97], [2805.62, 2171.64], [2812.06, 2171.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2666.15, 2173.72], [2660.74, 2164.59], [2649.74, 2171.31], [2655.19, 2180.25], [2666.15, 2173.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2782.88, 1937.75], [2782.7, 1933.27], [2780.7, 1933.35], [2780.55, 1929.59], [2768.43, 1930.07], [2768.48, 1931.58], [2766.22, 1931.66], [2766.41, 1936.37], [2768.62, 1936.28], [2768.75, 1939.53], [2780.82, 1939.04], [2780.77, 1937.84], [2782.88, 1937.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2666.64, 2156.66], [2661.08, 2147.44], [2650.65, 2153.98], [2656.18, 2163.03], [2666.64, 2156.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2946.1, 1703.78], [2948.6, 1690.41], [2942.57, 1689.28], [2941.84, 1693.17], [2938.64, 1692.57], [2937.55, 1698.39], [2940.15, 1698.88], [2939.47, 1702.53], [2946.1, 1703.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2726.02, 2055.34], [2725.65, 2050.43], [2724.99, 2050.49], [2724.86, 2048.87], [2715.54, 2049.57], [2716.48, 2061.86], [2724.65, 2061.23], [2724.21, 2055.48], [2726.02, 2055.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2789.07, 2115.13], [2788.84, 2106.72], [2777.92, 2107.03], [2777.95, 2108.1], [2776.12, 2108.15], [2776.32, 2115.49], [2789.07, 2115.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2839.69, 2019.64], [2839.24, 2013.91], [2836.89, 2014.08], [2836.64, 2010.88], [2827.19, 2011.61], [2827.34, 2013.6], [2825.54, 2013.73], [2825.82, 2017.39], [2827.46, 2017.27], [2827.71, 2020.58], [2839.69, 2019.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2815.38, 1944.12], [2815.08, 1937.52], [2809.23, 1937.78], [2809.53, 1944.39], [2815.38, 1944.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2819.19, 1990.53], [2818.94, 1986.55], [2811.37, 1987.02], [2811.63, 1991.01], [2819.19, 1990.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2886.78, 2098.11], [2886.42, 2094.82], [2880.58, 2095.46], [2880.95, 2098.75], [2886.78, 2098.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2632.72, 2166.45], [2634.52, 2165.33], [2635.93, 2167.59], [2639.27, 2165.52], [2632.85, 2155.19], [2629.46, 2157.3], [2628.87, 2156.33], [2623.74, 2159.51], [2630.41, 2170.25], [2633.78, 2168.17], [2632.72, 2166.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2698.67, 2050.49], [2698.38, 2046.45], [2696.28, 2046.61], [2696.17, 2045.27], [2682.84, 2046.24], [2683.39, 2053.64], [2696.43, 2052.69], [2696.28, 2050.66], [2698.67, 2050.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2740.43, 2154.73], [2740.32, 2150.4], [2733.7, 2150.57], [2733.82, 2154.91], [2740.43, 2154.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2657.85, 2238.1], [2657.32, 2232.96], [2649.69, 2233.74], [2650.22, 2238.88], [2657.85, 2238.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2792.44, 1899.1], [2787.29, 1895.05], [2784.99, 1897.98], [2790.14, 1902.03], [2792.44, 1899.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2811.21, 2181.81], [2810.74, 2176.95], [2804.76, 2177.53], [2805.23, 2182.39], [2811.21, 2181.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2916.4, 1783.76], [2918.62, 1773.18], [2908.09, 1770.75], [2905.76, 1781.23], [2916.4, 1783.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2701.86, 2180.46], [2701.58, 2176.87], [2700.68, 2176.94], [2700.35, 2172.69], [2687.76, 2173.67], [2688.38, 2181.52], [2701.86, 2180.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2633.46, 2177.73], [2625.55, 2182.59], [2629.48, 2188.98], [2637.38, 2184.11], [2633.46, 2177.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2893.55, 2333.6], [2893.11, 2326.03], [2878.87, 2326.87], [2879.23, 2332.87], [2881.56, 2332.74], [2881.66, 2334.29], [2893.55, 2333.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2784.47, 2058.67], [2783.87, 2050.36], [2772.19, 2051.2], [2772.79, 2059.52], [2784.47, 2058.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2698.42, 2013.95], [2698.18, 2009.12], [2695.65, 2009.25], [2695.61, 2008.45], [2681.36, 2009.13], [2681.4, 2009.93], [2679.65, 2010.01], [2679.98, 2016.91], [2695.95, 2016.14], [2695.85, 2014.08], [2698.42, 2013.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2935.61, 2132.42], [2935.55, 2131.59], [2937.97, 2131.43], [2937.51, 2124.33], [2935.42, 2124.47], [2935.37, 2123.58], [2923.87, 2124.34], [2924.03, 2126.71], [2921.13, 2126.9], [2921.5, 2132.38], [2924.01, 2132.22], [2924.07, 2133.19], [2935.61, 2132.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2779.29, 1922.65], [2778.87, 1914.94], [2764.77, 1915.72], [2765.2, 1923.42], [2779.29, 1922.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2889.45, 2309.23], [2888.87, 2301.01], [2879.95, 2301.64], [2880.0, 2302.33], [2877.5, 2302.51], [2878.03, 2310.04], [2889.45, 2309.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2880.54, 2084.58], [2880.0, 2077.16], [2866.73, 2078.13], [2867.11, 2083.37], [2868.92, 2083.24], [2869.08, 2085.41], [2880.54, 2084.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2748.44, 2034.5], [2747.95, 2026.63], [2735.21, 2027.44], [2735.71, 2035.3], [2748.44, 2034.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2899.67, 2006.92], [2900.12, 2013.37], [2906.41, 2012.94], [2906.19, 2006.48], [2899.67, 2006.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2783.69, 1999.84], [2783.29, 1991.66], [2779.6, 1991.84], [2779.53, 1990.51], [2775.05, 1990.73], [2775.12, 1992.23], [2771.57, 1992.41], [2771.63, 1993.41], [2769.03, 1993.53], [2769.38, 2000.54], [2783.69, 1999.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2892.04, 2139.14], [2891.86, 2135.25], [2885.94, 2135.52], [2886.12, 2139.42], [2892.04, 2139.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2938.29, 1883.07], [2943.54, 1859.07], [2944.72, 1853.67], [2932.93, 1851.12], [2926.59, 1880.15], [2938.29, 1883.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[2698.5, 2119.6], [2698.3, 2115.02], [2695.71, 2115.13], [2695.54, 2111.01], [2686.69, 2111.38], [2686.91, 2116.49], [2689.09, 2116.4], [2689.21, 2119.19], [2691.74, 2119.08], [2691.78, 2119.89], [2698.5, 2119.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2719.76, 2163.79], [2719.39, 2157.33], [2713.03, 2157.7], [2713.4, 2164.15], [2719.76, 2163.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2885.48, 2242.38], [2885.18, 2237.77], [2886.69, 2237.68], [2886.49, 2234.64], [2885.11, 2234.72], [2885.05, 2233.87], [2876.47, 2234.43], [2876.53, 2235.26], [2873.46, 2235.46], [2873.93, 2242.54], [2876.38, 2242.38], [2876.42, 2242.98], [2885.48, 2242.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2935.94, 1664.93], [2930.71, 1663.72], [2929.27, 1669.92], [2934.51, 1671.13], [2935.94, 1664.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2795.22, 1978.65], [2794.91, 1975.36], [2788.55, 1975.95], [2788.86, 1979.24], [2795.22, 1978.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2802.33, 1991.55], [2801.95, 1986.37], [2796.41, 1986.78], [2796.79, 1991.96], [2802.33, 1991.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2784.82, 1950.77], [2784.32, 1942.75], [2781.77, 1942.91], [2781.67, 1941.25], [2768.44, 1942.07], [2768.57, 1944.03], [2766.35, 1944.17], [2766.67, 1949.5], [2768.56, 1949.38], [2768.71, 1951.76], [2784.82, 1950.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2900.65, 2196.6], [2892.1, 2196.8], [2892.22, 2201.68], [2900.77, 2201.47], [2900.65, 2196.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2846.76, 2209.44], [2846.29, 2201.36], [2837.07, 2201.9], [2837.54, 2209.98], [2846.76, 2209.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2718.02, 1941.09], [2717.42, 1934.29], [2709.51, 1934.99], [2710.11, 1941.79], [2718.02, 1941.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2794.07, 2149.17], [2793.59, 2140.62], [2784.73, 2141.17], [2784.79, 2142.43], [2780.56, 2142.74], [2781.01, 2149.94], [2794.07, 2149.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2915.57, 1724.76], [2907.39, 1722.82], [2904.23, 1736.15], [2912.41, 1738.09], [2915.57, 1724.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2896.76, 1750.04], [2889.9, 1748.24], [2888.29, 1755.77], [2895.19, 1757.48], [2896.76, 1750.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2921.28, 2175.18], [2920.95, 2171.05], [2914.4, 2171.58], [2914.48, 2172.55], [2912.46, 2172.7], [2912.66, 2175.24], [2914.72, 2175.08], [2914.77, 2175.69], [2921.28, 2175.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2909.84, 2274.29], [2909.46, 2266.41], [2904.02, 2266.68], [2903.9, 2264.27], [2897.67, 2264.58], [2897.77, 2266.71], [2894.23, 2266.88], [2894.62, 2275.03], [2909.84, 2274.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2916.38, 2127.67], [2916.07, 2121.73], [2908.07, 2122.15], [2908.18, 2124.26], [2905.59, 2124.39], [2905.7, 2126.37], [2908.26, 2126.24], [2908.36, 2128.08], [2916.38, 2127.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2917.53, 2139.56], [2917.27, 2134.01], [2911.43, 2134.29], [2911.68, 2139.84], [2917.53, 2139.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2844.13, 2100.22], [2844.02, 2092.35], [2830.88, 2092.53], [2830.89, 2093.16], [2829.41, 2093.18], [2829.46, 2096.66], [2828.03, 2096.68], [2828.08, 2100.43], [2844.13, 2100.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2921.88, 2342.69], [2921.37, 2335.68], [2914.44, 2336.19], [2914.95, 2343.19], [2921.88, 2342.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2794.42, 2102.01], [2794.15, 2096.95], [2791.62, 2097.08], [2791.53, 2095.31], [2776.65, 2096.1], [2777.06, 2103.75], [2792.57, 2102.93], [2792.52, 2102.11], [2794.42, 2102.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2812.88, 2034.94], [2812.52, 2028.67], [2806.3, 2029.02], [2806.66, 2035.29], [2812.88, 2034.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2894.95, 1823.86], [2898.9, 1806.32], [2890.23, 1804.37], [2889.56, 1807.31], [2888.47, 1807.07], [2886.66, 1815.12], [2888.08, 1815.44], [2887.19, 1819.36], [2887.91, 1819.52], [2887.59, 1820.94], [2891.16, 1821.74], [2890.89, 1822.95], [2894.95, 1823.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2714.69, 2062.22], [2714.49, 2056.29], [2708.34, 2056.5], [2708.54, 2062.43], [2714.69, 2062.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2879.09, 2017.91], [2878.43, 2009.33], [2864.92, 2010.36], [2865.58, 2018.95], [2879.09, 2017.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2722.36, 2026.97], [2721.58, 2019.51], [2714.18, 2020.28], [2714.95, 2027.75], [2722.36, 2026.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2934.92, 2107.52], [2934.44, 2100.84], [2928.8, 2101.26], [2928.68, 2099.53], [2918.88, 2100.25], [2919.49, 2108.64], [2934.92, 2107.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2879.82, 2096.69], [2879.43, 2091.67], [2877.86, 2091.79], [2877.61, 2088.58], [2867.03, 2089.42], [2867.44, 2094.64], [2869.7, 2094.45], [2869.94, 2097.47], [2879.82, 2096.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2854.88, 2320.45], [2854.49, 2313.81], [2843.48, 2314.45], [2843.87, 2321.09], [2854.88, 2320.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2665.4, 2144.38], [2660.97, 2136.86], [2650.81, 2142.86], [2655.24, 2150.38], [2665.4, 2144.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2704.98, 2165.4], [2704.29, 2157.69], [2701.52, 2157.93], [2701.44, 2157.08], [2689.91, 2158.09], [2690.76, 2167.68], [2701.87, 2166.69], [2701.78, 2165.69], [2704.98, 2165.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2719.24, 1983.27], [2718.88, 1979.27], [2712.07, 1979.87], [2712.43, 1983.87], [2719.24, 1983.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2628.11, 2192.52], [2620.83, 2181.21], [2614.99, 2184.96], [2622.28, 2196.27], [2628.11, 2192.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2889.26, 2297.98], [2889.01, 2294.83], [2887.1, 2294.97], [2886.5, 2287.49], [2889.14, 2287.28], [2888.88, 2284.01], [2879.49, 2284.75], [2879.86, 2289.42], [2877.94, 2289.57], [2878.12, 2291.84], [2879.85, 2291.71], [2880.06, 2294.4], [2882.46, 2294.21], [2882.8, 2298.49], [2889.26, 2297.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2810.51, 1913.14], [2803.72, 1924.4], [2813.68, 1930.38], [2820.21, 1919.16], [2810.51, 1913.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2743.58, 1989.3], [2743.11, 1980.92], [2733.15, 1981.49], [2733.62, 1989.86], [2743.58, 1989.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2840.19, 2283.11], [2839.78, 2270.78], [2839.08, 2270.8], [2838.98, 2267.79], [2832.03, 2268.02], [2832.55, 2283.37], [2840.19, 2283.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2920.8, 2169.63], [2920.31, 2164.16], [2914.84, 2164.64], [2915.33, 2170.12], [2920.8, 2169.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2944.03, 1754.83], [2938.02, 1753.62], [2936.83, 1759.57], [2942.84, 1760.76], [2944.03, 1754.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2931.99, 1640.22], [2925.41, 1638.61], [2922.46, 1650.68], [2929.03, 1652.29], [2931.99, 1640.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2900.89, 2109.12], [2899.89, 2099.21], [2889.43, 2100.27], [2889.59, 2101.91], [2887.69, 2102.11], [2888.37, 2108.77], [2889.85, 2108.62], [2890.01, 2110.21], [2900.89, 2109.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2919.64, 2043.51], [2919.34, 2040.95], [2910.6, 2041.95], [2911.42, 2049.11], [2917.17, 2048.45], [2916.64, 2043.86], [2919.64, 2043.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2799.97, 2003.86], [2799.57, 1999.68], [2793.44, 2000.26], [2793.83, 2004.44], [2799.97, 2003.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2838.44, 2029.26], [2838.22, 2024.94], [2835.59, 2025.07], [2835.46, 2022.55], [2822.24, 2023.21], [2822.72, 2032.97], [2836.59, 2032.29], [2836.44, 2029.36], [2838.44, 2029.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2895.31, 1994.84], [2889.7, 1994.95], [2889.81, 2000.39], [2895.41, 2000.28], [2895.31, 1994.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2902.94, 2228.94], [2902.93, 2227.95], [2900.26, 2227.99], [2900.27, 2228.95], [2897.19, 2228.99], [2897.37, 2241.14], [2905.86, 2241.02], [2905.68, 2228.91], [2902.94, 2228.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2817.65, 2278.76], [2816.93, 2267.96], [2812.03, 2268.3], [2812.1, 2269.32], [2808.59, 2269.55], [2809.25, 2279.31], [2817.65, 2278.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2785.0, 2029.91], [2784.65, 2026.08], [2782.18, 2026.3], [2782.1, 2025.33], [2771.31, 2026.29], [2771.58, 2029.26], [2772.96, 2029.15], [2773.33, 2033.29], [2782.84, 2032.45], [2782.63, 2030.11], [2785.0, 2029.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2782.14, 2006.82], [2781.86, 2002.97], [2769.1, 2003.88], [2769.69, 2012.09], [2781.52, 2011.25], [2781.21, 2006.89], [2782.14, 2006.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2693.23, 2026.69], [2692.89, 2023.1], [2694.39, 2022.96], [2694.08, 2019.72], [2693.29, 2019.8], [2693.18, 2018.49], [2682.1, 2019.55], [2682.16, 2020.28], [2679.71, 2020.51], [2680.31, 2026.79], [2682.41, 2026.58], [2682.52, 2027.71], [2693.23, 2026.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2919.64, 1636.37], [2910.8, 1634.77], [2908.25, 1648.88], [2917.09, 1650.48], [2919.64, 1636.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2692.81, 1978.57], [2692.25, 1971.0], [2679.81, 1971.92], [2679.88, 1972.68], [2677.53, 1972.86], [2677.98, 1978.97], [2680.2, 1978.81], [2680.25, 1979.52], [2688.71, 1978.88], [2692.81, 1978.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2804.82, 2158.94], [2804.28, 2152.25], [2794.79, 2153.03], [2794.9, 2154.38], [2787.56, 2154.97], [2788.21, 2162.91], [2796.05, 2162.28], [2795.84, 2159.65], [2804.82, 2158.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2850.5, 2233.49], [2850.27, 2230.22], [2848.58, 2230.33], [2848.32, 2226.35], [2838.7, 2227.0], [2839.18, 2234.25], [2850.5, 2233.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2750.34, 2059.44], [2749.78, 2051.26], [2735.83, 2052.2], [2736.12, 2056.5], [2736.96, 2056.44], [2737.22, 2060.33], [2750.34, 2059.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2801.35, 2236.72], [2801.0, 2232.08], [2799.12, 2232.22], [2798.84, 2228.57], [2788.29, 2229.36], [2788.4, 2230.78], [2785.81, 2230.98], [2786.28, 2237.1], [2788.79, 2236.92], [2788.84, 2237.67], [2801.35, 2236.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2752.49, 2084.31], [2736.18, 2084.78], [2736.31, 2089.28], [2737.92, 2089.23], [2738.04, 2093.5], [2752.75, 2093.09], [2752.49, 2084.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2898.0, 2128.21], [2897.58, 2122.83], [2890.91, 2123.36], [2891.34, 2128.74], [2898.0, 2128.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2880.66, 2052.45], [2880.38, 2045.11], [2864.38, 2045.73], [2864.67, 2053.07], [2880.66, 2052.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2701.18, 2216.07], [2700.66, 2208.64], [2692.34, 2209.21], [2692.86, 2216.66], [2701.18, 2216.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2841.84, 2137.08], [2841.8, 2135.74], [2844.94, 2135.63], [2844.74, 2129.48], [2840.61, 2129.61], [2840.57, 2128.41], [2833.68, 2128.65], [2833.72, 2129.93], [2830.49, 2130.03], [2830.68, 2135.44], [2832.92, 2135.35], [2832.96, 2136.41], [2836.34, 2136.29], [2836.36, 2137.27], [2841.84, 2137.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2744.89, 2001.41], [2744.53, 1993.35], [2728.45, 1994.08], [2728.82, 2002.14], [2744.89, 2001.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2890.48, 2344.73], [2890.42, 2344.1], [2893.84, 2343.81], [2893.59, 2340.94], [2895.51, 2340.77], [2895.24, 2337.64], [2893.04, 2337.84], [2892.99, 2337.2], [2879.96, 2338.34], [2880.44, 2343.74], [2882.35, 2343.57], [2882.46, 2344.77], [2886.11, 2344.45], [2886.17, 2345.11], [2890.48, 2344.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2946.61, 2341.08], [2946.09, 2334.69], [2938.67, 2335.28], [2939.19, 2341.68], [2946.61, 2341.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2701.27, 2130.46], [2700.92, 2122.51], [2686.9, 2123.19], [2687.2, 2131.14], [2701.27, 2130.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2811.38, 2005.88], [2810.88, 1999.16], [2805.19, 1999.58], [2805.69, 2006.3], [2811.38, 2005.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2916.0, 2017.39], [2928.41, 2016.84], [2928.18, 2009.18], [2915.63, 2009.65], [2916.0, 2017.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2915.01, 1666.62], [2908.31, 1665.11], [2906.76, 1672.1], [2913.45, 1673.6], [2915.01, 1666.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2937.36, 2227.89], [2941.2, 2227.6], [2940.78, 2221.83], [2935.94, 2222.18], [2935.81, 2220.41], [2930.47, 2220.8], [2930.66, 2223.35], [2928.55, 2223.5], [2928.62, 2224.4], [2926.85, 2224.53], [2927.13, 2228.36], [2932.97, 2227.93], [2933.08, 2229.43], [2937.45, 2229.11], [2937.36, 2227.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2758.01, 2201.15], [2757.53, 2192.85], [2741.72, 2193.76], [2741.82, 2195.52], [2740.15, 2195.63], [2740.49, 2201.42], [2741.96, 2201.33], [2742.0, 2202.08], [2758.01, 2201.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2804.98, 2244.11], [2804.47, 2237.97], [2799.09, 2238.42], [2799.61, 2244.55], [2804.98, 2244.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2816.87, 2120.36], [2816.62, 2114.88], [2810.47, 2115.16], [2810.72, 2120.65], [2816.87, 2120.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2937.66, 2166.84], [2937.09, 2158.5], [2926.3, 2159.24], [2926.87, 2167.57], [2937.66, 2166.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2683.61, 1879.94], [2683.05, 1874.28], [2681.42, 1874.43], [2680.86, 1868.79], [2669.18, 1869.96], [2670.3, 1881.27], [2683.61, 1879.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2922.88, 1687.7], [2914.03, 1686.4], [2912.63, 1695.97], [2921.48, 1697.27], [2922.88, 1687.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2669.72, 2216.03], [2669.32, 2205.59], [2657.08, 2206.06], [2657.48, 2216.49], [2669.72, 2216.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2907.11, 2084.28], [2906.73, 2077.91], [2901.1, 2078.25], [2901.49, 2084.63], [2907.11, 2084.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2758.57, 2214.67], [2758.08, 2205.29], [2741.98, 2206.13], [2742.14, 2209.22], [2740.42, 2209.31], [2740.65, 2213.69], [2742.35, 2213.6], [2742.46, 2215.51], [2758.57, 2214.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2820.08, 2303.58], [2819.79, 2298.55], [2810.75, 2299.07], [2811.04, 2304.09], [2820.08, 2303.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2806.85, 2195.03], [2806.49, 2188.74], [2800.65, 2189.07], [2801.01, 2195.36], [2806.85, 2195.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2902.67, 2155.38], [2902.06, 2147.23], [2894.8, 2147.77], [2895.41, 2155.93], [2902.67, 2155.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2949.3, 2349.9], [2948.94, 2344.15], [2939.13, 2344.76], [2939.49, 2350.52], [2949.3, 2349.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2938.46, 2203.88], [2937.73, 2197.39], [2928.37, 2198.45], [2929.12, 2204.95], [2938.46, 2203.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2913.13, 2153.76], [2912.76, 2147.39], [2906.47, 2147.74], [2906.83, 2154.12], [2913.13, 2153.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2737.71, 2130.61], [2737.31, 2126.01], [2729.3, 2126.73], [2729.71, 2131.32], [2737.71, 2130.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2752.04, 2286.71], [2750.85, 2272.21], [2741.84, 2272.95], [2743.03, 2287.44], [2752.04, 2286.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2841.88, 2054.39], [2841.6, 2049.55], [2839.4, 2049.68], [2839.24, 2046.91], [2829.51, 2047.47], [2830.05, 2056.68], [2839.52, 2056.13], [2839.44, 2054.54], [2841.88, 2054.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2939.6, 1734.73], [2940.18, 1731.65], [2932.9, 1730.31], [2932.3, 1733.6], [2930.77, 1733.31], [2929.92, 1737.9], [2931.5, 1738.19], [2930.89, 1741.48], [2938.4, 1742.86], [2939.9, 1734.78], [2939.6, 1734.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2910.1, 2346.57], [2909.88, 2342.41], [2903.27, 2342.76], [2903.5, 2346.93], [2910.1, 2346.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2873.08, 1981.64], [2872.67, 1974.96], [2870.31, 1975.1], [2870.11, 1971.91], [2860.88, 1972.48], [2861.06, 1975.34], [2858.91, 1975.48], [2859.21, 1980.44], [2861.01, 1980.32], [2861.13, 1982.37], [2873.08, 1981.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2726.95, 2285.26], [2726.13, 2273.39], [2718.69, 2273.89], [2719.31, 2282.88], [2714.53, 2283.2], [2714.94, 2289.16], [2720.36, 2288.79], [2720.15, 2285.72], [2726.95, 2285.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2744.49, 2013.45], [2744.09, 2005.51], [2730.3, 2006.21], [2730.7, 2014.14], [2744.49, 2013.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2932.5, 1840.91], [2927.14, 1839.65], [2925.88, 1845.04], [2931.24, 1846.3], [2932.5, 1840.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2926.8, 2269.72], [2926.57, 2262.77], [2918.64, 2263.03], [2918.88, 2269.98], [2926.8, 2269.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2742.32, 1882.52], [2740.92, 1853.56], [2713.88, 1847.04], [2705.11, 1848.15], [2708.26, 1884.12], [2732.36, 1882.99], [2742.32, 1882.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.938, "pop": 469, "jobs": 0}}, {"shape": {"outer": [[2886.82, 2195.48], [2886.27, 2187.23], [2870.76, 2188.27], [2871.32, 2196.53], [2886.82, 2195.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2653.39, 2250.79], [2652.8, 2245.28], [2646.74, 2245.93], [2647.34, 2251.44], [2653.39, 2250.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2917.56, 1829.96], [2918.19, 1826.52], [2919.2, 1826.7], [2920.03, 1822.25], [2921.4, 1822.5], [2922.34, 1817.41], [2921.44, 1817.25], [2921.73, 1815.68], [2919.98, 1815.35], [2920.36, 1813.3], [2916.25, 1812.54], [2915.88, 1814.56], [2914.16, 1814.24], [2913.08, 1820.12], [2911.38, 1819.8], [2909.77, 1828.52], [2917.56, 1829.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2907.34, 2050.7], [2906.56, 2039.75], [2899.24, 2040.27], [2900.02, 2051.22], [2907.34, 2050.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2743.13, 1952.55], [2742.78, 1946.01], [2740.73, 1946.12], [2740.69, 1945.27], [2737.12, 1945.46], [2737.06, 1944.42], [2731.08, 1944.73], [2731.12, 1945.29], [2726.98, 1945.51], [2727.39, 1953.38], [2743.13, 1952.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2919.13, 2306.4], [2918.58, 2298.41], [2912.34, 2298.84], [2912.89, 2306.83], [2919.13, 2306.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2938.62, 2143.74], [2937.79, 2135.09], [2924.4, 2136.38], [2925.22, 2145.01], [2938.62, 2143.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2742.68, 1976.81], [2741.89, 1968.45], [2733.13, 1969.27], [2733.92, 1977.64], [2742.68, 1976.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2902.93, 2208.08], [2889.35, 2208.32], [2889.49, 2216.64], [2903.07, 2216.41], [2902.93, 2208.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2905.39, 1829.66], [2909.61, 1810.21], [2906.05, 1809.43], [2905.58, 1811.6], [2899.75, 1810.34], [2896.75, 1824.18], [2900.08, 1824.9], [2899.34, 1828.35], [2905.39, 1829.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2699.85, 2107.55], [2699.25, 2099.14], [2687.27, 2099.99], [2687.87, 2108.41], [2699.85, 2107.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2701.73, 1998.17], [2701.34, 1992.85], [2695.5, 1993.28], [2695.88, 1998.59], [2701.73, 1998.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2647.36, 2197.84], [2653.57, 2197.61], [2653.43, 2193.55], [2647.22, 2193.77], [2647.36, 2197.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2939.2, 2214.44], [2938.68, 2206.63], [2929.32, 2207.24], [2929.83, 2215.05], [2939.2, 2214.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2705.52, 2191.64], [2704.91, 2181.71], [2692.62, 2182.35], [2693.23, 2192.37], [2705.52, 2191.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2671.3, 2189.05], [2671.04, 2183.81], [2655.39, 2184.59], [2655.81, 2193.12], [2670.57, 2192.4], [2670.41, 2189.1], [2671.3, 2189.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2716.89, 2094.14], [2716.67, 2087.54], [2710.3, 2087.75], [2710.52, 2094.36], [2716.89, 2094.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2890.0, 2146.3], [2889.74, 2140.41], [2884.29, 2140.65], [2884.26, 2139.92], [2881.01, 2140.05], [2880.92, 2137.81], [2872.11, 2138.19], [2872.49, 2147.07], [2890.0, 2146.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2756.14, 2151.28], [2755.62, 2142.56], [2742.27, 2143.35], [2742.44, 2146.26], [2740.88, 2146.35], [2741.22, 2152.15], [2756.14, 2151.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2787.11, 2090.05], [2786.63, 2083.62], [2785.69, 2083.69], [2785.52, 2081.48], [2775.45, 2082.22], [2776.09, 2090.88], [2787.11, 2090.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2753.63, 2125.86], [2753.3, 2121.55], [2752.34, 2121.62], [2752.09, 2118.28], [2741.57, 2119.07], [2741.62, 2119.73], [2737.65, 2120.03], [2738.23, 2127.69], [2748.28, 2126.93], [2748.23, 2126.27], [2753.63, 2125.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2712.54, 2124.8], [2717.99, 2124.56], [2717.75, 2119.18], [2712.3, 2119.42], [2712.54, 2124.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2890.05, 2271.8], [2889.57, 2265.99], [2880.57, 2266.73], [2881.05, 2272.54], [2890.05, 2271.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2794.55, 2210.46], [2794.16, 2206.1], [2792.16, 2206.28], [2791.99, 2204.5], [2782.61, 2205.35], [2782.67, 2205.97], [2780.08, 2206.2], [2780.38, 2209.66], [2782.66, 2209.45], [2782.99, 2213.02], [2792.27, 2212.18], [2792.13, 2210.68], [2794.55, 2210.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2922.18, 2330.05], [2921.51, 2323.18], [2913.88, 2323.93], [2914.55, 2330.8], [2922.18, 2330.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2854.63, 2299.14], [2853.95, 2292.64], [2851.33, 2292.92], [2851.11, 2290.81], [2838.76, 2292.13], [2839.28, 2296.99], [2842.7, 2296.63], [2843.09, 2300.36], [2854.63, 2299.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2937.99, 2180.77], [2937.92, 2179.42], [2939.36, 2179.35], [2939.11, 2174.2], [2937.54, 2174.28], [2937.44, 2172.22], [2927.95, 2172.7], [2928.02, 2174.2], [2924.25, 2174.38], [2924.55, 2180.4], [2928.56, 2180.2], [2928.62, 2181.24], [2937.99, 2180.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2948.15, 2332.55], [2947.88, 2329.18], [2945.05, 2329.4], [2944.97, 2328.46], [2945.95, 2328.39], [2945.58, 2323.89], [2933.15, 2324.89], [2933.87, 2333.72], [2948.15, 2332.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2794.67, 1969.21], [2794.23, 1962.92], [2788.09, 1963.35], [2788.53, 1969.64], [2794.67, 1969.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2739.99, 2171.21], [2739.51, 2163.88], [2732.47, 2164.34], [2732.71, 2167.97], [2733.38, 2167.93], [2733.62, 2171.62], [2739.99, 2171.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2851.95, 2302.95], [2843.46, 2303.08], [2843.58, 2309.89], [2852.07, 2309.74], [2851.95, 2302.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2757.56, 2247.77], [2756.87, 2239.23], [2751.61, 2239.74], [2751.79, 2238.34], [2749.92, 2238.3], [2750.18, 2247.86], [2750.24, 2249.98], [2752.29, 2249.77], [2752.38, 2247.75], [2757.56, 2247.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2946.55, 1566.3], [2943.26, 1565.66], [2941.37, 1575.43], [2950.04, 1577.1], [2951.66, 1568.72], [2946.29, 1567.68], [2946.55, 1566.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2930.77, 2028.15], [2930.29, 2021.3], [2925.4, 2021.65], [2925.33, 2020.63], [2922.78, 2020.8], [2922.59, 2018.05], [2916.52, 2018.48], [2917.27, 2029.09], [2930.77, 2028.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2709.56, 1963.03], [2708.86, 1955.95], [2701.9, 1956.64], [2702.6, 1963.71], [2709.56, 1963.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2684.09, 1868.37], [2692.71, 1867.74], [2691.58, 1840.2], [2682.02, 1837.74], [2684.09, 1868.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.168, "pop": 0, "jobs": 168}}, {"shape": {"outer": [[2943.27, 2237.4], [2943.03, 2231.73], [2940.61, 2231.83], [2940.54, 2230.31], [2925.64, 2230.95], [2925.99, 2239.29], [2941.51, 2238.61], [2941.46, 2237.49], [2943.27, 2237.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2896.36, 1734.76], [2896.79, 1732.62], [2900.61, 1733.39], [2903.0, 1721.51], [2902.16, 1721.34], [2902.42, 1720.04], [2893.94, 1718.33], [2891.21, 1731.97], [2893.07, 1732.34], [2892.73, 1734.04], [2896.36, 1734.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2909.36, 1683.92], [2901.02, 1682.33], [2899.28, 1691.5], [2907.61, 1693.09], [2909.36, 1683.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2886.26, 2025.03], [2885.91, 2019.9], [2878.82, 2020.38], [2879.18, 2025.51], [2886.26, 2025.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2705.19, 1985.13], [2704.81, 1980.49], [2698.66, 1980.99], [2699.05, 1985.64], [2705.19, 1985.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2806.15, 2280.77], [2805.08, 2269.04], [2796.38, 2269.83], [2796.58, 2272.09], [2795.67, 2272.17], [2796.78, 2284.23], [2804.06, 2283.56], [2803.81, 2280.99], [2806.15, 2280.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2930.55, 2053.33], [2930.08, 2042.86], [2924.35, 2043.11], [2924.61, 2048.9], [2923.01, 2048.97], [2923.21, 2053.66], [2930.55, 2053.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2726.54, 1964.21], [2742.99, 1963.19], [2742.56, 1956.3], [2739.74, 1956.39], [2739.73, 1955.51], [2726.05, 1956.35], [2726.54, 1964.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2709.75, 1973.49], [2709.58, 1968.09], [2704.1, 1968.28], [2704.28, 1973.68], [2709.75, 1973.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2671.74, 2231.02], [2671.46, 2225.45], [2669.75, 2225.54], [2669.72, 2224.94], [2656.61, 2225.61], [2656.96, 2232.72], [2669.89, 2232.06], [2669.85, 2231.12], [2671.74, 2231.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2844.93, 2147.01], [2844.51, 2141.9], [2842.17, 2142.1], [2841.97, 2139.74], [2832.12, 2140.57], [2832.88, 2149.7], [2842.47, 2148.9], [2842.33, 2147.23], [2844.93, 2147.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2804.64, 2023.51], [2804.38, 2018.95], [2797.41, 2019.34], [2797.67, 2023.9], [2804.64, 2023.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2691.41, 1968.25], [2691.33, 1965.39], [2693.79, 1965.34], [2693.68, 1961.57], [2686.98, 1961.76], [2686.95, 1960.67], [2682.07, 1960.81], [2682.09, 1961.66], [2679.06, 1961.75], [2679.26, 1968.59], [2691.41, 1968.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2923.6, 2038.04], [2923.01, 2029.71], [2911.65, 2030.51], [2912.23, 2038.84], [2923.6, 2038.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2783.06, 2047.82], [2782.76, 2040.63], [2773.23, 2041.02], [2773.53, 2048.22], [2783.06, 2047.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2825.62, 2281.9], [2825.52, 2279.34], [2829.53, 2279.17], [2829.32, 2274.01], [2827.74, 2274.07], [2827.54, 2268.96], [2820.28, 2269.26], [2820.7, 2279.56], [2821.61, 2279.52], [2821.71, 2282.05], [2825.62, 2281.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2835.97, 1947.12], [2835.52, 1939.59], [2833.61, 1939.71], [2833.52, 1938.23], [2819.82, 1939.06], [2820.42, 1948.97], [2834.43, 1948.12], [2834.38, 1947.22], [2835.97, 1947.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2943.31, 2269.86], [2942.7, 2261.39], [2929.81, 2262.32], [2930.42, 2270.78], [2943.31, 2269.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2950.17, 1666.59], [2943.49, 1665.25], [2942.09, 1672.26], [2948.77, 1673.6], [2950.17, 1666.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2686.39, 1891.12], [2685.62, 1883.15], [2674.49, 1884.23], [2675.03, 1889.82], [2676.04, 1889.72], [2676.26, 1892.1], [2686.39, 1891.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2756.35, 2164.44], [2755.8, 2155.59], [2738.65, 2156.64], [2739.01, 2162.47], [2742.83, 2162.24], [2743.01, 2165.26], [2756.35, 2164.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2709.95, 2039.7], [2709.36, 2032.26], [2703.86, 2032.71], [2704.03, 2034.79], [2699.94, 2035.12], [2700.37, 2040.47], [2709.95, 2039.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2783.34, 1962.6], [2782.77, 1954.68], [2768.99, 1955.67], [2769.56, 1963.6], [2783.34, 1962.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2884.54, 2183.01], [2884.14, 2175.97], [2870.73, 2176.73], [2871.18, 2184.62], [2882.26, 2184.0], [2882.21, 2183.14], [2884.54, 2183.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2935.52, 2116.18], [2935.04, 2108.87], [2918.48, 2109.95], [2918.92, 2116.69], [2921.41, 2116.54], [2921.57, 2118.92], [2933.0, 2118.17], [2932.88, 2116.36], [2935.52, 2116.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2838.89, 1995.58], [2838.59, 1990.84], [2835.87, 1991.01], [2835.74, 1988.75], [2825.31, 1989.4], [2825.8, 1997.37], [2836.51, 1996.7], [2836.45, 1995.72], [2838.89, 1995.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2944.5, 1778.4], [2936.76, 1776.81], [2936.38, 1778.62], [2934.59, 1778.25], [2932.47, 1788.49], [2942.01, 1790.45], [2944.5, 1778.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2702.23, 2093.5], [2702.0, 2089.45], [2698.95, 2089.63], [2698.85, 2087.85], [2686.62, 2088.56], [2687.1, 2096.65], [2699.16, 2095.95], [2699.03, 2093.69], [2702.23, 2093.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2889.27, 2035.9], [2889.04, 2032.11], [2882.7, 2032.48], [2882.93, 2036.28], [2889.27, 2035.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2757.6, 2179.88], [2743.49, 2180.13], [2743.63, 2188.14], [2757.74, 2187.89], [2757.6, 2179.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2882.83, 2118.86], [2882.6, 2114.23], [2880.56, 2114.33], [2880.47, 2112.58], [2866.35, 2113.28], [2866.81, 2122.66], [2881.5, 2121.93], [2881.35, 2118.94], [2882.83, 2118.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2745.41, 2022.37], [2745.25, 2020.28], [2747.21, 2020.12], [2746.93, 2016.45], [2744.69, 2016.62], [2744.57, 2014.95], [2734.83, 2015.69], [2734.9, 2016.5], [2733.47, 2016.6], [2733.78, 2020.71], [2734.58, 2020.65], [2734.77, 2023.18], [2745.41, 2022.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2876.04, 2005.78], [2875.58, 1997.07], [2863.14, 1997.73], [2863.2, 1998.95], [2862.2, 1999.0], [2862.37, 2002.16], [2863.54, 2002.1], [2863.77, 2006.45], [2876.04, 2005.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2881.81, 2208.4], [2881.76, 2207.68], [2886.33, 2207.34], [2885.77, 2199.65], [2872.51, 2200.62], [2872.86, 2205.32], [2874.06, 2205.23], [2874.29, 2208.34], [2877.84, 2208.08], [2877.89, 2208.69], [2881.81, 2208.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2922.6, 2003.28], [2922.26, 1997.31], [2919.02, 1997.49], [2918.9, 1995.27], [2915.25, 1995.48], [2915.11, 1993.04], [2909.13, 1993.38], [2909.74, 2004.01], [2922.6, 2003.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2847.25, 2172.68], [2846.69, 2165.45], [2845.12, 2165.58], [2845.02, 2164.38], [2832.18, 2165.37], [2832.9, 2174.62], [2844.88, 2173.7], [2844.82, 2172.87], [2847.25, 2172.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2960.46, 1826.09], [2951.26, 1824.07], [2948.94, 1834.64], [2958.14, 1836.65], [2960.46, 1826.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2792.88, 2281.21], [2791.76, 2270.78], [2784.69, 2271.54], [2785.82, 2281.96], [2792.88, 2281.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2935.12, 2155.86], [2934.5, 2147.69], [2922.07, 2148.63], [2922.69, 2156.81], [2935.12, 2155.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2938.13, 1615.71], [2940.14, 1602.19], [2934.68, 1601.39], [2934.49, 1602.7], [2932.52, 1602.41], [2930.71, 1614.61], [2938.13, 1615.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2815.32, 2054.3], [2814.94, 2047.49], [2807.23, 2047.91], [2807.61, 2054.74], [2815.32, 2054.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2777.04, 1914.04], [2776.4, 1905.92], [2766.59, 1906.71], [2766.7, 1908.13], [2764.78, 1908.28], [2765.16, 1913.05], [2766.73, 1912.93], [2766.89, 1914.86], [2777.04, 1914.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2694.29, 1941.56], [2693.94, 1936.54], [2691.4, 1936.72], [2691.23, 1934.46], [2677.02, 1935.46], [2677.15, 1937.35], [2676.39, 1937.4], [2676.86, 1944.07], [2691.99, 1943.0], [2691.89, 1941.73], [2694.29, 1941.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2723.29, 2038.95], [2722.64, 2032.6], [2715.01, 2033.38], [2715.67, 2039.73], [2723.29, 2038.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2798.11, 2247.65], [2797.45, 2239.19], [2787.2, 2240.0], [2787.45, 2243.16], [2784.3, 2243.4], [2784.71, 2248.69], [2798.11, 2247.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2932.39, 1827.19], [2934.07, 1819.37], [2927.88, 1818.04], [2927.25, 1821.01], [2925.45, 1820.62], [2923.48, 1829.79], [2931.93, 1831.6], [2932.86, 1827.29], [2932.39, 1827.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2634.17, 2211.94], [2631.26, 2207.79], [2621.17, 2214.84], [2627.96, 2224.55], [2634.27, 2220.12], [2630.39, 2214.59], [2634.17, 2211.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2938.29, 1883.07], [2948.21, 1885.75], [2952.31, 1867.05], [2948.55, 1866.25], [2949.82, 1860.43], [2943.54, 1859.07], [2938.29, 1883.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.149, "pop": 0, "jobs": 149}}, {"shape": {"outer": [[2785.38, 2020.73], [2784.93, 2013.89], [2781.1, 2014.15], [2780.99, 2012.3], [2775.7, 2012.64], [2775.8, 2014.17], [2772.91, 2014.35], [2773.39, 2021.88], [2782.91, 2021.25], [2782.89, 2020.89], [2785.38, 2020.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2899.94, 2085.21], [2899.49, 2078.88], [2893.34, 2079.32], [2893.79, 2085.63], [2899.94, 2085.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2878.35, 2030.53], [2878.0, 2026.28], [2874.75, 2026.55], [2874.48, 2023.02], [2862.29, 2024.01], [2862.79, 2030.25], [2865.12, 2030.06], [2865.24, 2031.58], [2878.35, 2030.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2776.21, 1891.15], [2775.92, 1887.48], [2772.05, 1887.77], [2771.73, 1883.63], [2768.1, 1883.91], [2767.83, 1880.38], [2763.58, 1880.7], [2763.81, 1883.73], [2762.67, 1883.81], [2763.09, 1889.41], [2763.79, 1889.36], [2764.0, 1892.08], [2776.21, 1891.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2902.07, 2159.01], [2896.66, 2159.05], [2896.7, 2165.34], [2902.11, 2165.31], [2902.07, 2159.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2839.41, 2082.47], [2839.13, 2077.33], [2830.53, 2077.8], [2830.61, 2079.19], [2826.45, 2079.42], [2826.58, 2081.66], [2823.08, 2081.85], [2823.48, 2089.13], [2837.5, 2088.35], [2837.18, 2082.58], [2839.41, 2082.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2946.1, 1841.95], [2939.3, 1840.11], [2937.24, 1847.7], [2944.04, 1849.53], [2946.1, 1841.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2880.01, 1823.15], [2880.83, 1819.36], [2882.57, 1819.74], [2885.82, 1804.76], [2876.74, 1802.78], [2874.74, 1811.94], [2876.06, 1812.23], [2873.96, 1821.84], [2880.01, 1823.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2903.43, 2177.8], [2903.23, 2171.96], [2895.43, 2172.21], [2895.63, 2178.06], [2903.43, 2177.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2805.76, 2300.27], [2805.54, 2294.47], [2790.89, 2295.03], [2791.17, 2302.33], [2802.14, 2301.9], [2802.09, 2300.41], [2805.76, 2300.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2796.33, 2223.53], [2795.91, 2216.25], [2793.46, 2216.38], [2793.4, 2215.44], [2788.85, 2215.7], [2788.88, 2216.2], [2782.78, 2216.54], [2783.21, 2224.27], [2796.33, 2223.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2694.28, 1990.98], [2693.86, 1985.46], [2691.91, 1985.6], [2691.78, 1983.84], [2679.34, 1984.78], [2679.9, 1992.07], [2694.28, 1990.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2916.62, 2120.27], [2916.21, 2115.96], [2908.95, 2116.65], [2909.36, 2120.97], [2916.62, 2120.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2882.34, 2040.92], [2882.15, 2035.48], [2878.86, 2035.59], [2878.82, 2034.6], [2866.29, 2035.02], [2866.36, 2037.16], [2864.22, 2037.24], [2864.43, 2043.5], [2879.93, 2042.99], [2879.87, 2041.0], [2882.34, 2040.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2753.08, 2102.98], [2752.35, 2096.39], [2750.47, 2096.6], [2750.29, 2094.96], [2740.43, 2096.04], [2741.33, 2104.28], [2753.08, 2102.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2723.95, 2087.04], [2718.02, 2087.23], [2718.27, 2095.18], [2724.2, 2094.99], [2723.95, 2087.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2898.25, 1872.65], [2902.47, 1851.33], [2891.03, 1849.09], [2887.04, 1869.23], [2898.25, 1872.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.158, "pop": 0, "jobs": 158}}, {"shape": {"outer": [[2845.66, 2185.83], [2845.41, 2182.61], [2847.57, 2182.43], [2847.31, 2179.11], [2845.44, 2179.25], [2845.25, 2176.69], [2829.75, 2177.9], [2830.01, 2181.26], [2831.3, 2181.16], [2831.48, 2183.6], [2831.85, 2183.56], [2832.11, 2186.89], [2845.66, 2185.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2850.15, 2220.79], [2849.91, 2216.34], [2847.41, 2216.47], [2847.28, 2213.93], [2835.59, 2214.55], [2836.0, 2222.28], [2848.68, 2221.61], [2848.64, 2220.88], [2850.15, 2220.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2921.87, 2188.07], [2921.53, 2182.9], [2914.27, 2183.37], [2914.6, 2188.54], [2921.87, 2188.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2783.57, 1987.23], [2783.3, 1983.77], [2784.87, 1983.64], [2784.62, 1980.28], [2783.5, 1980.37], [2783.34, 1978.13], [2770.97, 1979.09], [2771.04, 1979.97], [2768.85, 1980.15], [2769.18, 1984.39], [2771.13, 1984.25], [2771.44, 1988.15], [2783.57, 1987.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2386.17, 2794.46], [2380.03, 2788.57], [2370.35, 2798.67], [2376.49, 2804.57], [2386.17, 2794.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2427.14, 2695.21], [2420.55, 2688.56], [2414.7, 2694.35], [2416.43, 2696.1], [2415.77, 2696.76], [2420.62, 2701.66], [2427.14, 2695.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2449.71, 2513.88], [2443.26, 2507.51], [2431.48, 2519.45], [2437.93, 2525.81], [2449.71, 2513.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2384.76, 2736.67], [2379.11, 2731.48], [2370.82, 2740.48], [2376.45, 2745.68], [2384.76, 2736.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2810.32, 2743.83], [2829.78, 2750.03], [2831.35, 2745.01], [2830.46, 2744.74], [2831.57, 2741.26], [2828.08, 2740.15], [2828.39, 2739.15], [2813.25, 2734.19], [2810.32, 2743.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2250.98, 2669.06], [2243.46, 2662.34], [2236.6, 2670.02], [2244.11, 2676.75], [2250.98, 2669.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2600.55, 2444.09], [2596.27, 2440.03], [2587.95, 2448.79], [2592.24, 2452.85], [2600.55, 2444.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2966.48, 2512.24], [2966.14, 2506.99], [2960.89, 2507.32], [2960.66, 2503.73], [2955.84, 2504.04], [2956.47, 2513.69], [2964.21, 2513.2], [2964.15, 2512.39], [2966.48, 2512.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2185.77, 2696.9], [2191.69, 2690.41], [2184.91, 2684.24], [2179.24, 2690.45], [2181.08, 2692.12], [2180.17, 2693.13], [2183.35, 2696.04], [2184.02, 2695.31], [2185.77, 2696.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2374.34, 2564.27], [2370.58, 2560.54], [2366.55, 2564.6], [2370.3, 2568.32], [2374.34, 2564.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2676.39, 2737.77], [2670.33, 2731.86], [2662.4, 2740.0], [2668.46, 2745.91], [2676.39, 2737.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2136.36, 2687.76], [2130.88, 2682.54], [2121.9, 2691.96], [2127.37, 2697.18], [2136.36, 2687.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2670.97, 2653.64], [2664.92, 2648.12], [2656.07, 2657.81], [2659.27, 2660.72], [2657.76, 2662.36], [2660.62, 2664.97], [2670.97, 2653.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2542.92, 2384.67], [2539.42, 2380.83], [2534.59, 2385.24], [2538.08, 2389.07], [2542.92, 2384.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2400.24, 2581.98], [2393.86, 2575.7], [2389.28, 2580.34], [2395.66, 2586.62], [2400.24, 2581.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2623.33, 2742.81], [2618.53, 2737.7], [2611.63, 2744.17], [2616.44, 2749.28], [2623.33, 2742.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2804.99, 2672.5], [2795.04, 2663.49], [2789.14, 2669.99], [2801.5, 2681.18], [2806.76, 2675.37], [2804.37, 2673.2], [2804.99, 2672.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2469.03, 2484.0], [2466.23, 2481.1], [2461.5, 2485.67], [2464.3, 2488.57], [2469.03, 2484.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2411.56, 2740.39], [2407.83, 2736.52], [2401.78, 2742.34], [2405.52, 2746.21], [2411.56, 2740.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2811.31, 2665.14], [2801.24, 2655.15], [2794.84, 2661.61], [2804.92, 2671.58], [2811.31, 2665.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2707.24, 2583.03], [2702.58, 2578.07], [2697.16, 2583.16], [2701.82, 2588.12], [2707.24, 2583.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2752.14, 2693.15], [2753.97, 2691.38], [2755.49, 2692.96], [2763.57, 2685.16], [2757.89, 2679.28], [2747.99, 2688.84], [2752.14, 2693.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2469.21, 2459.07], [2462.42, 2452.49], [2456.5, 2458.59], [2463.29, 2465.18], [2469.21, 2459.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2134.04, 2736.29], [2132.24, 2734.5], [2130.21, 2736.52], [2132.01, 2738.33], [2134.04, 2736.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2192.58, 2747.76], [2187.37, 2743.13], [2178.1, 2753.54], [2183.31, 2758.17], [2192.58, 2747.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2399.72, 2528.54], [2393.88, 2522.8], [2384.35, 2532.51], [2390.19, 2538.25], [2399.72, 2528.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2586.75, 2783.56], [2581.46, 2778.49], [2578.72, 2781.36], [2584.01, 2786.42], [2586.75, 2783.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2739.64, 2741.83], [2743.03, 2738.39], [2745.38, 2740.72], [2750.41, 2735.61], [2748.39, 2733.62], [2750.23, 2731.76], [2748.95, 2730.5], [2750.19, 2729.23], [2748.39, 2727.46], [2747.28, 2728.59], [2745.01, 2726.37], [2738.02, 2733.45], [2739.72, 2735.14], [2736.33, 2738.58], [2739.64, 2741.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2478.04, 2467.57], [2471.38, 2461.68], [2465.9, 2467.87], [2472.56, 2473.76], [2478.04, 2467.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2375.33, 2784.88], [2370.3, 2780.14], [2361.25, 2789.74], [2366.28, 2794.48], [2375.33, 2784.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2480.03, 2551.53], [2473.98, 2545.87], [2467.84, 2552.46], [2473.88, 2558.1], [2480.03, 2551.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2468.61, 2666.92], [2464.59, 2662.44], [2460.95, 2665.71], [2464.97, 2670.19], [2468.61, 2666.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2514.93, 2499.42], [2509.06, 2493.71], [2499.3, 2503.73], [2505.17, 2509.44], [2514.93, 2499.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2673.91, 2527.92], [2693.47, 2507.74], [2685.83, 2500.34], [2665.21, 2521.62], [2670.15, 2526.41], [2664.36, 2532.39], [2676.49, 2544.15], [2683.35, 2537.06], [2673.91, 2527.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.38, "pop": 190, "jobs": 0}}, {"shape": {"outer": [[2405.95, 2608.87], [2398.82, 2601.74], [2385.57, 2615.02], [2392.69, 2622.13], [2405.95, 2608.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2560.37, 2398.52], [2562.33, 2396.78], [2563.22, 2397.78], [2569.73, 2392.0], [2564.02, 2385.58], [2557.4, 2391.46], [2560.58, 2395.03], [2558.73, 2396.67], [2560.37, 2398.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2622.72, 2782.27], [2627.52, 2786.85], [2632.27, 2781.85], [2627.47, 2777.35], [2622.72, 2782.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2332.6, 2644.62], [2327.79, 2639.88], [2323.24, 2644.51], [2328.05, 2649.24], [2332.6, 2644.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2283.76, 2635.0], [2275.96, 2627.59], [2266.21, 2637.86], [2274.01, 2645.26], [2283.76, 2635.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2945.61, 2736.55], [2944.41, 2732.99], [2939.66, 2734.59], [2940.86, 2738.15], [2945.61, 2736.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2667.55, 2731.76], [2664.87, 2728.84], [2663.21, 2730.34], [2660.58, 2727.46], [2654.91, 2732.64], [2660.22, 2738.45], [2667.55, 2731.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2440.39, 2437.03], [2431.96, 2429.45], [2426.9, 2435.08], [2435.34, 2442.65], [2440.39, 2437.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2598.61, 2416.4], [2592.8, 2410.3], [2580.71, 2421.81], [2586.53, 2427.91], [2598.61, 2416.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2382.13, 2539.32], [2377.22, 2535.43], [2373.38, 2540.28], [2378.28, 2544.17], [2382.13, 2539.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2415.85, 2709.38], [2409.5, 2702.1], [2404.09, 2706.84], [2410.44, 2714.11], [2415.85, 2709.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2462.97, 2799.48], [2460.0, 2796.53], [2455.24, 2801.33], [2458.22, 2804.28], [2462.97, 2799.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2285.84, 2615.52], [2281.49, 2611.13], [2276.37, 2616.2], [2280.72, 2620.59], [2285.84, 2615.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2230.85, 2784.94], [2225.68, 2780.31], [2224.39, 2781.74], [2224.03, 2781.42], [2215.12, 2791.4], [2220.66, 2796.34], [2230.85, 2784.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2954.23, 2724.78], [2953.92, 2715.47], [2945.27, 2715.75], [2945.59, 2725.07], [2954.23, 2724.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2472.73, 2537.19], [2470.62, 2535.11], [2469.83, 2535.91], [2469.01, 2535.11], [2456.93, 2547.37], [2462.92, 2553.27], [2474.68, 2541.34], [2471.63, 2538.31], [2472.73, 2537.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2302.34, 2609.73], [2303.99, 2608.08], [2305.06, 2609.14], [2309.33, 2604.83], [2302.7, 2598.24], [2298.22, 2602.75], [2300.68, 2605.19], [2299.66, 2606.21], [2300.51, 2607.05], [2300.08, 2607.49], [2302.34, 2609.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2794.28, 2711.75], [2788.4, 2705.75], [2785.38, 2708.71], [2783.45, 2706.75], [2781.22, 2708.93], [2791.17, 2719.07], [2795.25, 2715.07], [2793.12, 2712.89], [2794.28, 2711.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2360.14, 2631.48], [2354.34, 2625.51], [2346.89, 2632.73], [2352.69, 2638.71], [2360.14, 2631.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2746.74, 2792.12], [2743.62, 2788.65], [2739.01, 2792.8], [2742.13, 2796.26], [2746.74, 2792.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2413.5, 2764.27], [2407.25, 2757.85], [2396.38, 2768.45], [2402.63, 2774.87], [2413.5, 2764.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2311.17, 2662.41], [2308.31, 2659.5], [2305.44, 2662.31], [2304.9, 2661.76], [2300.88, 2665.69], [2306.27, 2671.21], [2312.03, 2665.57], [2310.04, 2663.52], [2311.17, 2662.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2667.8, 2722.35], [2660.85, 2715.09], [2658.73, 2717.11], [2663.29, 2721.88], [2659.9, 2725.11], [2662.29, 2727.62], [2667.8, 2722.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2290.25, 2726.62], [2286.37, 2722.52], [2281.63, 2727.01], [2285.52, 2731.11], [2290.25, 2726.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2528.28, 2345.59], [2523.1, 2340.68], [2514.91, 2349.31], [2520.08, 2354.22], [2528.28, 2345.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2192.41, 2766.68], [2199.8, 2758.77], [2198.81, 2757.86], [2201.28, 2755.21], [2197.27, 2751.45], [2194.48, 2754.43], [2193.41, 2753.43], [2186.76, 2760.54], [2188.45, 2762.13], [2186.94, 2763.74], [2189.26, 2765.9], [2190.34, 2764.75], [2192.41, 2766.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2282.31, 2693.69], [2278.55, 2690.39], [2276.44, 2692.81], [2275.17, 2691.7], [2269.52, 2698.16], [2274.56, 2702.57], [2282.31, 2693.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2648.48, 2789.44], [2658.76, 2780.46], [2652.67, 2773.5], [2640.19, 2784.4], [2644.46, 2789.28], [2646.67, 2787.37], [2648.48, 2789.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2478.81, 2399.67], [2469.96, 2392.48], [2466.27, 2397.03], [2468.4, 2398.76], [2467.08, 2400.39], [2473.8, 2405.85], [2478.81, 2399.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2571.44, 2796.4], [2581.58, 2786.48], [2574.97, 2779.73], [2563.49, 2790.97], [2568.27, 2795.85], [2569.61, 2794.53], [2571.44, 2796.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2577.96, 2432.44], [2573.12, 2427.08], [2568.57, 2431.9], [2573.62, 2437.26], [2577.96, 2432.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2367.17, 2513.85], [2357.23, 2504.33], [2351.12, 2510.71], [2361.05, 2520.23], [2367.17, 2513.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2747.11, 2644.44], [2741.58, 2639.52], [2736.06, 2645.72], [2741.59, 2650.64], [2747.11, 2644.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2433.33, 2485.89], [2430.06, 2482.56], [2425.17, 2487.38], [2428.45, 2490.7], [2433.33, 2485.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2795.19, 2703.45], [2799.4, 2699.39], [2796.92, 2696.83], [2798.0, 2695.78], [2791.38, 2688.93], [2784.87, 2695.21], [2792.11, 2702.7], [2793.33, 2701.53], [2795.19, 2703.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2769.46, 2772.14], [2780.71, 2760.89], [2773.6, 2753.79], [2771.37, 2755.98], [2766.48, 2751.47], [2760.04, 2758.4], [2764.48, 2762.7], [2762.0, 2765.19], [2769.46, 2772.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[2359.28, 2547.84], [2354.37, 2542.55], [2349.07, 2547.48], [2353.98, 2552.77], [2359.28, 2547.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2623.98, 2625.17], [2620.65, 2621.76], [2614.98, 2627.32], [2618.3, 2630.71], [2623.98, 2625.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2271.58, 2626.06], [2265.44, 2620.12], [2256.15, 2629.73], [2262.29, 2635.67], [2271.58, 2626.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2385.51, 2813.56], [2390.74, 2808.29], [2391.59, 2809.13], [2395.66, 2805.04], [2389.18, 2798.6], [2379.88, 2807.97], [2385.51, 2813.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2610.11, 2613.16], [2606.39, 2609.9], [2602.67, 2614.14], [2606.38, 2617.4], [2610.11, 2613.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2466.93, 2650.66], [2460.73, 2644.51], [2455.15, 2650.12], [2461.35, 2656.27], [2466.93, 2650.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2737.48, 2761.58], [2739.4, 2763.6], [2742.06, 2761.08], [2740.14, 2759.06], [2737.48, 2761.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2365.96, 2578.5], [2362.45, 2574.77], [2360.93, 2576.19], [2359.05, 2574.19], [2353.43, 2579.47], [2358.83, 2585.22], [2365.96, 2578.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2210.31, 2764.42], [2207.68, 2761.9], [2205.75, 2763.88], [2204.84, 2763.01], [2199.53, 2768.53], [2204.83, 2773.64], [2209.86, 2768.41], [2208.1, 2766.72], [2210.31, 2764.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2713.56, 2610.79], [2705.31, 2601.48], [2703.65, 2602.95], [2701.65, 2600.69], [2698.05, 2603.87], [2701.31, 2607.55], [2701.0, 2607.82], [2707.99, 2615.73], [2713.56, 2610.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2363.98, 2776.13], [2357.65, 2770.21], [2351.27, 2777.03], [2353.59, 2779.2], [2349.48, 2783.58], [2353.95, 2787.76], [2358.71, 2782.68], [2358.26, 2782.25], [2363.98, 2776.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2277.25, 2713.54], [2280.16, 2710.75], [2280.94, 2711.57], [2289.42, 2703.47], [2283.6, 2697.37], [2274.9, 2705.68], [2276.36, 2707.2], [2273.66, 2709.78], [2277.25, 2713.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2665.66, 2703.34], [2658.7, 2696.83], [2653.28, 2702.63], [2660.24, 2709.14], [2665.66, 2703.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2435.74, 2607.06], [2432.21, 2603.51], [2428.72, 2606.98], [2433.04, 2611.32], [2435.6, 2608.78], [2434.82, 2607.99], [2435.74, 2607.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2630.11, 2640.3], [2625.14, 2634.89], [2620.06, 2639.55], [2625.02, 2644.96], [2630.11, 2640.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2744.94, 2668.62], [2739.39, 2663.67], [2731.24, 2672.83], [2736.78, 2677.76], [2744.94, 2668.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2501.09, 2561.83], [2493.53, 2554.84], [2487.68, 2561.16], [2496.62, 2569.43], [2501.66, 2563.99], [2500.27, 2562.71], [2501.09, 2561.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2682.71, 2606.1], [2676.98, 2600.48], [2666.12, 2611.58], [2671.86, 2617.19], [2682.71, 2606.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2940.14, 2653.18], [2950.83, 2652.55], [2948.88, 2619.11], [2937.7, 2619.64], [2940.14, 2653.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.235, "pop": 0, "jobs": 235}}, {"shape": {"outer": [[2310.83, 2763.15], [2304.54, 2757.04], [2301.11, 2760.57], [2307.41, 2766.68], [2310.83, 2763.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2725.37, 2704.95], [2720.55, 2700.0], [2709.92, 2710.34], [2714.74, 2715.29], [2725.37, 2704.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2437.38, 2457.0], [2433.23, 2452.97], [2431.31, 2454.96], [2435.44, 2458.98], [2437.38, 2457.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2463.03, 2476.98], [2457.84, 2472.17], [2450.65, 2479.95], [2455.84, 2484.75], [2463.03, 2476.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2516.99, 2382.53], [2512.48, 2378.06], [2508.89, 2381.69], [2513.4, 2386.15], [2516.99, 2382.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2547.47, 2456.85], [2544.24, 2454.25], [2539.69, 2459.89], [2542.92, 2462.49], [2547.47, 2456.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2627.05, 2434.77], [2618.74, 2426.56], [2598.06, 2447.83], [2606.92, 2455.63], [2627.05, 2434.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.22, "pop": 0, "jobs": 220}}, {"shape": {"outer": [[2640.9, 2582.42], [2649.05, 2573.25], [2642.63, 2567.54], [2633.25, 2578.08], [2636.56, 2581.02], [2637.78, 2579.65], [2640.9, 2582.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2733.76, 2731.71], [2743.47, 2722.09], [2737.69, 2716.26], [2726.22, 2727.62], [2728.09, 2729.51], [2729.86, 2727.76], [2733.76, 2731.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2317.01, 2671.95], [2320.18, 2668.78], [2318.49, 2667.1], [2315.75, 2669.85], [2314.78, 2668.9], [2305.84, 2677.86], [2310.67, 2682.68], [2319.2, 2674.14], [2317.01, 2671.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2638.25, 2781.98], [2650.19, 2769.98], [2644.02, 2763.96], [2633.19, 2774.77], [2634.61, 2776.09], [2633.51, 2777.28], [2638.25, 2781.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2570.93, 2596.41], [2572.64, 2595.13], [2573.37, 2596.09], [2577.02, 2593.35], [2575.41, 2591.21], [2580.96, 2587.03], [2579.27, 2584.77], [2580.16, 2584.1], [2577.32, 2580.34], [2565.52, 2589.22], [2570.93, 2596.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2525.32, 2509.78], [2517.86, 2502.93], [2509.89, 2511.61], [2517.35, 2518.46], [2525.32, 2509.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2594.22, 2775.64], [2587.88, 2769.0], [2582.23, 2774.38], [2588.57, 2781.03], [2594.22, 2775.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2500.36, 2769.08], [2494.24, 2763.14], [2487.84, 2769.71], [2493.96, 2775.66], [2500.36, 2769.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2655.54, 2714.16], [2649.6, 2707.99], [2649.33, 2708.26], [2647.24, 2706.09], [2642.48, 2710.68], [2652.0, 2720.55], [2655.49, 2717.18], [2654.01, 2715.64], [2655.54, 2714.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2530.65, 2592.99], [2520.38, 2582.0], [2514.57, 2587.43], [2524.85, 2598.42], [2530.65, 2592.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2543.47, 2601.18], [2538.15, 2595.28], [2533.55, 2599.42], [2538.87, 2605.32], [2543.47, 2601.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2709.9, 2688.4], [2706.79, 2685.18], [2705.52, 2686.41], [2703.3, 2684.11], [2693.16, 2693.93], [2698.49, 2699.44], [2709.9, 2688.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2595.57, 2436.78], [2593.22, 2434.1], [2585.84, 2440.59], [2588.19, 2443.27], [2595.57, 2436.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2588.39, 2474.73], [2581.67, 2467.72], [2577.41, 2471.82], [2584.13, 2478.82], [2588.39, 2474.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2264.55, 2705.06], [2261.61, 2702.23], [2256.81, 2707.2], [2259.74, 2710.03], [2264.55, 2705.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2222.58, 2734.45], [2229.78, 2726.83], [2223.97, 2721.35], [2221.96, 2723.47], [2220.94, 2722.51], [2216.0, 2727.74], [2218.42, 2730.03], [2217.33, 2731.17], [2219.28, 2733.01], [2220.11, 2732.12], [2222.58, 2734.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2577.91, 2399.78], [2572.63, 2394.72], [2567.14, 2400.44], [2572.43, 2405.5], [2577.91, 2399.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2611.54, 2508.07], [2602.42, 2499.75], [2596.53, 2506.22], [2606.95, 2515.72], [2611.82, 2510.38], [2610.51, 2509.2], [2611.54, 2508.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2775.83, 2697.86], [2779.76, 2694.21], [2780.98, 2695.53], [2783.59, 2693.11], [2779.67, 2688.9], [2773.15, 2694.98], [2775.83, 2697.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2391.08, 2547.91], [2386.11, 2543.63], [2381.56, 2548.91], [2386.53, 2553.19], [2391.08, 2547.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2272.79, 2594.59], [2277.48, 2598.89], [2284.05, 2592.12], [2279.32, 2587.77], [2272.79, 2594.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2400.67, 2545.45], [2407.12, 2538.95], [2400.4, 2532.29], [2393.35, 2539.39], [2394.05, 2540.08], [2392.58, 2541.57], [2395.01, 2543.98], [2397.08, 2541.89], [2400.67, 2545.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2639.05, 2762.06], [2633.12, 2755.83], [2626.6, 2762.03], [2632.52, 2768.27], [2639.05, 2762.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2937.08, 2619.34], [2931.15, 2619.61], [2931.38, 2624.62], [2927.91, 2624.78], [2928.41, 2635.8], [2931.56, 2635.66], [2931.64, 2637.35], [2937.89, 2637.06], [2937.08, 2619.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.092, "pop": 0, "jobs": 92}}, {"shape": {"outer": [[2367.13, 2664.99], [2378.38, 2653.96], [2376.47, 2652.01], [2377.89, 2650.61], [2373.16, 2645.8], [2360.23, 2658.49], [2362.07, 2660.37], [2360.65, 2661.77], [2363.75, 2664.94], [2365.45, 2663.27], [2367.13, 2664.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2523.94, 2365.72], [2534.92, 2354.75], [2528.49, 2348.32], [2517.59, 2359.2], [2518.97, 2360.58], [2517.34, 2362.2], [2519.28, 2364.14], [2520.82, 2362.59], [2523.94, 2365.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2425.38, 2604.81], [2418.7, 2599.11], [2415.21, 2603.18], [2421.9, 2608.9], [2425.38, 2604.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2820.23, 2775.06], [2815.88, 2773.73], [2815.74, 2774.21], [2806.91, 2771.51], [2804.99, 2777.78], [2818.16, 2781.81], [2820.23, 2775.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2347.09, 2563.45], [2341.21, 2557.96], [2335.91, 2563.62], [2341.78, 2569.11], [2347.09, 2563.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2376.03, 2586.56], [2371.95, 2582.54], [2369.34, 2585.19], [2367.47, 2583.34], [2362.4, 2588.49], [2368.36, 2594.35], [2376.03, 2586.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2399.29, 2482.32], [2391.07, 2474.02], [2390.23, 2474.85], [2388.99, 2473.59], [2385.73, 2476.82], [2386.83, 2477.92], [2384.8, 2479.94], [2393.16, 2488.38], [2399.29, 2482.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2835.28, 2751.92], [2842.02, 2754.36], [2844.94, 2746.26], [2838.2, 2743.84], [2835.28, 2751.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2655.48, 2584.25], [2649.35, 2578.53], [2643.09, 2585.23], [2649.21, 2590.95], [2655.48, 2584.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2393.57, 2746.48], [2388.19, 2741.88], [2381.83, 2749.33], [2387.21, 2753.93], [2393.57, 2746.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2392.42, 2679.09], [2382.64, 2669.81], [2380.42, 2672.14], [2378.59, 2670.4], [2376.27, 2672.83], [2378.56, 2675.01], [2376.74, 2676.92], [2387.09, 2686.75], [2392.16, 2681.42], [2391.14, 2680.44], [2392.42, 2679.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2913.77, 2675.5], [2913.21, 2666.47], [2891.22, 2667.84], [2891.78, 2676.77], [2899.4, 2676.29], [2899.33, 2675.1], [2903.44, 2674.84], [2903.52, 2676.14], [2913.77, 2675.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.124, "pop": 0, "jobs": 124}}, {"shape": {"outer": [[2304.41, 2739.55], [2300.51, 2735.75], [2293.08, 2743.37], [2296.98, 2747.17], [2304.41, 2739.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2586.74, 2575.83], [2584.06, 2573.13], [2579.24, 2577.9], [2581.92, 2580.61], [2586.74, 2575.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2514.21, 2360.12], [2508.03, 2354.34], [2503.03, 2359.69], [2501.75, 2358.48], [2497.9, 2362.6], [2505.36, 2369.58], [2514.21, 2360.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2608.26, 2758.29], [2601.05, 2751.67], [2595.86, 2757.32], [2603.07, 2763.94], [2608.26, 2758.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2352.96, 2763.2], [2349.01, 2759.17], [2340.37, 2767.62], [2347.6, 2775.0], [2354.96, 2767.78], [2351.7, 2764.44], [2352.96, 2763.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2935.71, 2691.48], [2934.65, 2679.97], [2928.14, 2680.58], [2929.06, 2690.51], [2930.97, 2690.34], [2931.11, 2691.9], [2935.71, 2691.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2519.24, 2374.23], [2514.86, 2370.02], [2510.4, 2374.66], [2514.79, 2378.87], [2519.24, 2374.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2529.66, 2536.07], [2537.81, 2528.31], [2538.64, 2529.19], [2541.89, 2526.09], [2535.38, 2519.26], [2533.81, 2520.76], [2532.77, 2519.66], [2522.75, 2529.21], [2525.78, 2532.4], [2524.67, 2533.46], [2526.05, 2534.9], [2527.35, 2533.66], [2529.66, 2536.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2495.86, 2407.21], [2489.39, 2400.7], [2486.67, 2403.4], [2493.12, 2409.92], [2495.86, 2407.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2165.3, 2725.87], [2155.81, 2735.48], [2161.76, 2741.34], [2171.11, 2731.7], [2165.3, 2725.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2292.78, 2779.68], [2287.14, 2774.19], [2280.84, 2780.65], [2288.44, 2788.05], [2293.58, 2782.75], [2291.63, 2780.85], [2292.78, 2779.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2657.95, 2570.76], [2655.13, 2567.77], [2649.93, 2572.69], [2652.75, 2575.68], [2657.95, 2570.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2494.7, 2760.41], [2488.56, 2754.6], [2477.96, 2765.82], [2484.1, 2771.62], [2494.7, 2760.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2975.14, 2646.52], [2974.94, 2640.47], [2967.93, 2640.71], [2968.13, 2646.75], [2975.14, 2646.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2762.07, 2661.93], [2759.08, 2658.79], [2753.76, 2663.83], [2756.74, 2666.98], [2762.07, 2661.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2757.51, 2657.23], [2749.29, 2650.27], [2744.64, 2655.78], [2752.85, 2662.74], [2757.51, 2657.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2375.95, 2504.72], [2368.2, 2497.0], [2362.16, 2503.04], [2369.9, 2510.78], [2375.95, 2504.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2736.38, 2712.62], [2732.13, 2708.65], [2729.9, 2711.03], [2727.33, 2708.62], [2719.5, 2716.99], [2726.32, 2723.38], [2736.38, 2712.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2652.52, 2798.87], [2654.81, 2796.64], [2655.18, 2797.02], [2666.38, 2786.08], [2660.89, 2780.46], [2649.78, 2791.31], [2651.27, 2792.83], [2648.88, 2795.15], [2652.52, 2798.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2683.48, 2682.18], [2678.83, 2677.46], [2676.1, 2680.16], [2680.75, 2684.87], [2683.48, 2682.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2411.88, 2570.35], [2407.39, 2566.03], [2402.04, 2571.58], [2406.53, 2575.9], [2411.88, 2570.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2589.59, 2407.67], [2583.38, 2401.78], [2574.59, 2411.05], [2580.8, 2416.94], [2589.59, 2407.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2544.37, 2400.45], [2539.28, 2395.14], [2533.47, 2400.69], [2538.57, 2406.01], [2544.37, 2400.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2705.78, 2618.06], [2696.49, 2608.89], [2690.13, 2615.33], [2699.42, 2624.49], [2705.78, 2618.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2507.56, 2516.96], [2504.03, 2513.41], [2493.94, 2523.45], [2497.48, 2527.0], [2507.56, 2516.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2711.48, 2723.13], [2706.64, 2718.74], [2698.58, 2727.61], [2703.42, 2732.0], [2711.48, 2723.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2209.18, 2708.94], [2203.52, 2703.72], [2198.41, 2709.26], [2204.08, 2714.47], [2209.18, 2708.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2438.51, 2507.14], [2432.3, 2501.16], [2423.54, 2510.27], [2427.04, 2513.64], [2424.93, 2515.84], [2427.64, 2518.44], [2438.51, 2507.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2471.13, 2408.78], [2463.02, 2401.07], [2459.87, 2404.38], [2461.91, 2406.33], [2458.92, 2409.47], [2465.0, 2415.24], [2471.13, 2408.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2244.09, 2654.46], [2237.66, 2648.55], [2227.7, 2659.38], [2234.12, 2665.3], [2244.09, 2654.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2577.71, 2415.4], [2574.8, 2412.9], [2570.72, 2417.65], [2573.64, 2420.15], [2577.71, 2415.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2694.56, 2757.11], [2688.6, 2751.33], [2678.35, 2761.91], [2684.32, 2767.69], [2694.56, 2757.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2567.47, 2565.97], [2563.84, 2561.84], [2561.07, 2564.29], [2564.69, 2568.41], [2567.47, 2565.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2279.08, 2776.5], [2274.66, 2772.12], [2264.89, 2781.98], [2269.32, 2786.37], [2279.08, 2776.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2476.24, 2641.86], [2468.25, 2634.39], [2463.31, 2639.68], [2472.59, 2648.34], [2474.81, 2645.97], [2473.52, 2644.76], [2476.24, 2641.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2721.44, 2532.72], [2714.69, 2526.07], [2702.99, 2537.93], [2704.49, 2539.4], [2702.99, 2540.92], [2708.24, 2546.1], [2721.44, 2532.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2261.21, 2736.06], [2257.61, 2732.54], [2252.58, 2737.68], [2256.17, 2741.2], [2261.21, 2736.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2410.11, 2717.65], [2400.98, 2709.36], [2395.99, 2714.84], [2405.13, 2723.14], [2410.11, 2717.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2610.54, 2540.47], [2605.49, 2535.24], [2598.12, 2542.34], [2603.18, 2547.58], [2610.54, 2540.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2524.4, 2536.62], [2520.58, 2532.51], [2517.73, 2535.15], [2521.56, 2539.27], [2524.4, 2536.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2510.94, 2553.09], [2504.31, 2546.28], [2500.79, 2549.7], [2499.49, 2548.36], [2496.95, 2550.83], [2506.17, 2560.3], [2511.41, 2555.19], [2510.13, 2553.88], [2510.94, 2553.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2718.98, 2696.32], [2716.38, 2693.78], [2714.2, 2696.0], [2711.26, 2693.13], [2703.86, 2700.68], [2709.41, 2706.1], [2718.98, 2696.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2480.61, 2494.71], [2475.99, 2490.0], [2470.41, 2495.47], [2475.02, 2500.19], [2480.61, 2494.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2500.48, 2426.97], [2494.0, 2420.99], [2483.65, 2432.19], [2490.12, 2438.18], [2500.48, 2426.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2715.62, 2657.5], [2718.12, 2654.78], [2719.33, 2655.88], [2721.35, 2653.69], [2722.4, 2654.65], [2724.95, 2651.86], [2720.88, 2648.14], [2719.08, 2650.09], [2708.93, 2640.8], [2703.66, 2646.56], [2715.62, 2657.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2403.03, 2669.71], [2393.85, 2660.8], [2387.57, 2667.26], [2396.76, 2676.17], [2403.03, 2669.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2652.63, 2459.6], [2644.13, 2451.83], [2633.79, 2463.13], [2642.29, 2470.89], [2652.63, 2459.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2437.48, 2773.43], [2431.96, 2768.62], [2426.7, 2774.68], [2432.23, 2779.48], [2437.48, 2773.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2619.29, 2548.99], [2612.97, 2542.58], [2607.38, 2548.12], [2613.71, 2554.51], [2619.29, 2548.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2492.52, 2530.87], [2489.77, 2528.16], [2485.59, 2532.39], [2488.33, 2535.1], [2492.52, 2530.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2432.71, 2580.16], [2441.47, 2571.62], [2440.68, 2570.79], [2441.84, 2569.65], [2437.06, 2564.75], [2435.99, 2565.79], [2435.42, 2565.21], [2424.76, 2575.6], [2427.28, 2578.17], [2429.07, 2576.43], [2432.71, 2580.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2346.54, 2777.2], [2341.54, 2772.12], [2334.64, 2778.92], [2339.64, 2784.01], [2346.54, 2777.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2713.58, 2571.18], [2708.17, 2566.34], [2700.44, 2574.98], [2705.85, 2579.82], [2713.58, 2571.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2411.25, 2621.39], [2405.69, 2615.44], [2395.82, 2624.68], [2401.38, 2630.61], [2411.25, 2621.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2691.87, 2734.97], [2687.57, 2731.01], [2686.41, 2732.28], [2683.0, 2729.14], [2679.5, 2732.94], [2687.23, 2740.04], [2691.87, 2734.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2427.41, 2453.73], [2417.25, 2443.95], [2411.83, 2449.58], [2421.99, 2459.36], [2427.41, 2453.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2486.92, 2492.55], [2488.94, 2490.57], [2489.85, 2491.5], [2496.18, 2485.31], [2489.13, 2478.09], [2482.74, 2484.34], [2484.98, 2486.64], [2483.02, 2488.56], [2486.92, 2492.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2352.81, 2528.21], [2355.58, 2525.34], [2354.6, 2524.4], [2357.22, 2521.68], [2348.54, 2513.33], [2342.13, 2519.99], [2350.75, 2528.27], [2351.77, 2527.21], [2352.81, 2528.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2600.37, 2536.38], [2594.43, 2530.47], [2589.53, 2535.39], [2595.47, 2541.31], [2600.37, 2536.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2334.78, 2606.49], [2321.93, 2619.62], [2323.22, 2620.95], [2321.75, 2622.47], [2325.66, 2626.1], [2326.97, 2624.81], [2328.73, 2626.42], [2340.66, 2613.43], [2339.12, 2612.07], [2339.97, 2611.2], [2334.78, 2606.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2625.23, 2568.34], [2630.76, 2573.87], [2641.22, 2562.96], [2635.7, 2557.65], [2625.23, 2568.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2432.62, 2444.41], [2424.5, 2436.44], [2419.53, 2441.49], [2427.66, 2449.47], [2432.62, 2444.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2320.31, 2596.11], [2315.41, 2590.91], [2309.22, 2596.74], [2314.12, 2601.95], [2320.31, 2596.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2669.95, 2499.14], [2679.17, 2489.39], [2671.94, 2482.37], [2662.92, 2491.84], [2664.11, 2493.03], [2662.41, 2494.88], [2666.65, 2498.96], [2668.13, 2497.49], [2669.95, 2499.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2124.18, 2739.88], [2126.6, 2737.59], [2124.06, 2734.81], [2121.58, 2737.12], [2124.18, 2739.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2409.59, 2499.44], [2410.52, 2498.51], [2411.31, 2499.31], [2421.78, 2488.88], [2415.73, 2482.81], [2404.33, 2494.17], [2409.59, 2499.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2308.16, 2584.19], [2304.42, 2580.31], [2296.5, 2587.95], [2301.76, 2593.39], [2307.63, 2587.72], [2306.12, 2586.15], [2308.16, 2584.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2765.43, 2795.65], [2755.62, 2785.75], [2752.31, 2789.04], [2755.86, 2792.62], [2754.32, 2794.14], [2760.6, 2800.46], [2760.44, 2800.62], [2762.01, 2802.2], [2766.08, 2798.17], [2764.51, 2796.58], [2765.43, 2795.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2350.36, 2622.67], [2343.59, 2615.62], [2334.43, 2624.42], [2341.2, 2631.47], [2350.36, 2622.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2452.77, 2797.27], [2450.01, 2794.51], [2448.71, 2795.81], [2447.45, 2794.56], [2435.87, 2806.18], [2441.93, 2812.22], [2452.83, 2801.28], [2450.8, 2799.24], [2452.77, 2797.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2212.25, 2670.36], [2206.28, 2664.4], [2202.91, 2667.76], [2208.89, 2673.72], [2212.25, 2670.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2454.47, 2542.55], [2455.76, 2541.26], [2456.84, 2542.35], [2467.96, 2531.28], [2461.95, 2525.25], [2449.54, 2537.6], [2454.47, 2542.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2357.25, 2687.49], [2353.68, 2683.77], [2349.23, 2688.03], [2352.81, 2691.75], [2357.25, 2687.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2551.23, 2372.13], [2546.44, 2367.09], [2538.94, 2374.2], [2540.88, 2376.23], [2539.88, 2377.2], [2542.74, 2380.21], [2551.23, 2372.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2305.62, 2651.44], [2298.73, 2644.61], [2289.2, 2654.23], [2296.09, 2661.06], [2305.62, 2651.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2457.03, 2586.24], [2453.16, 2582.51], [2447.59, 2588.3], [2451.45, 2592.03], [2457.03, 2586.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2746.41, 2684.11], [2756.41, 2673.25], [2753.47, 2670.56], [2750.98, 2673.26], [2748.64, 2671.11], [2740.34, 2680.12], [2744.42, 2683.88], [2745.23, 2683.02], [2746.41, 2684.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2826.57, 2750.98], [2814.53, 2747.19], [2814.24, 2748.1], [2811.81, 2747.34], [2810.19, 2752.5], [2812.7, 2753.3], [2812.14, 2755.06], [2824.11, 2758.82], [2826.57, 2750.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2453.7, 2439.08], [2450.51, 2435.57], [2445.46, 2440.14], [2448.65, 2443.65], [2453.7, 2439.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2614.16, 2627.11], [2608.86, 2621.68], [2603.94, 2626.46], [2609.24, 2631.89], [2614.16, 2627.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2374.8, 2698.96], [2366.24, 2689.95], [2361.0, 2694.92], [2369.56, 2703.93], [2374.8, 2698.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2372.71, 2530.81], [2368.83, 2527.09], [2363.26, 2532.89], [2367.13, 2536.61], [2372.71, 2530.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2510.45, 2434.51], [2504.1, 2428.38], [2492.29, 2440.63], [2498.64, 2446.75], [2510.45, 2434.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2573.19, 2491.04], [2561.37, 2479.52], [2555.46, 2485.58], [2567.28, 2497.1], [2573.19, 2491.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2524.37, 2455.5], [2518.54, 2449.97], [2510.36, 2458.6], [2516.18, 2464.13], [2524.37, 2455.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2250.7, 2743.11], [2244.38, 2736.91], [2236.09, 2745.37], [2238.95, 2748.17], [2237.63, 2749.53], [2241.08, 2752.92], [2250.7, 2743.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2485.52, 2750.87], [2478.93, 2744.14], [2467.46, 2755.37], [2474.05, 2762.1], [2485.52, 2750.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2413.74, 2467.79], [2405.54, 2459.39], [2404.38, 2460.51], [2403.45, 2459.56], [2400.23, 2462.72], [2401.55, 2464.07], [2399.54, 2466.05], [2407.34, 2474.03], [2413.74, 2467.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2285.87, 2761.32], [2281.35, 2756.67], [2275.45, 2762.39], [2279.97, 2767.05], [2285.87, 2761.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2418.68, 2508.29], [2419.71, 2507.29], [2420.46, 2508.06], [2430.84, 2498.01], [2424.6, 2491.57], [2413.19, 2502.61], [2418.68, 2508.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2629.19, 2491.05], [2620.68, 2481.65], [2614.59, 2487.15], [2625.22, 2498.89], [2629.35, 2495.15], [2627.24, 2492.82], [2629.19, 2491.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2489.41, 2578.06], [2493.39, 2574.19], [2483.15, 2563.65], [2477.45, 2569.2], [2485.76, 2577.73], [2487.48, 2576.06], [2489.41, 2578.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2352.33, 2779.74], [2349.49, 2776.46], [2344.58, 2780.71], [2347.43, 2783.99], [2352.33, 2779.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2461.68, 2661.44], [2450.98, 2651.19], [2445.01, 2657.43], [2455.71, 2667.68], [2461.68, 2661.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2333.58, 2670.69], [2330.43, 2667.46], [2326.7, 2671.12], [2329.86, 2674.34], [2333.58, 2670.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2331.17, 2743.48], [2325.65, 2738.56], [2324.58, 2739.77], [2320.46, 2736.1], [2316.5, 2740.55], [2320.35, 2743.97], [2315.87, 2749.01], [2321.67, 2754.17], [2331.17, 2743.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2921.33, 2695.42], [2920.97, 2690.83], [2918.73, 2691.01], [2918.4, 2686.81], [2905.97, 2687.79], [2906.66, 2696.58], [2921.33, 2695.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2604.38, 2518.52], [2594.84, 2509.34], [2588.73, 2515.7], [2598.28, 2524.87], [2604.38, 2518.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2773.76, 2681.86], [2771.89, 2679.93], [2767.91, 2683.8], [2769.78, 2685.73], [2773.76, 2681.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2599.38, 2464.96], [2588.52, 2453.84], [2583.82, 2458.43], [2586.13, 2460.8], [2585.27, 2461.64], [2593.83, 2470.39], [2599.38, 2464.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2568.77, 2411.48], [2565.13, 2407.49], [2560.29, 2411.89], [2563.92, 2415.89], [2568.77, 2411.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2432.47, 2799.74], [2436.5, 2795.84], [2437.52, 2796.89], [2443.66, 2790.95], [2443.46, 2790.78], [2437.77, 2784.91], [2427.62, 2794.73], [2432.47, 2799.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2359.58, 2534.24], [2355.09, 2529.66], [2352.4, 2532.31], [2356.89, 2536.88], [2359.58, 2534.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2426.13, 2553.21], [2420.46, 2547.15], [2411.05, 2555.96], [2416.73, 2562.02], [2426.13, 2553.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2444.07, 2589.39], [2451.91, 2581.6], [2451.38, 2581.06], [2453.07, 2579.38], [2447.69, 2573.97], [2445.69, 2575.96], [2445.0, 2575.26], [2436.96, 2583.27], [2437.75, 2584.07], [2436.57, 2585.23], [2440.71, 2589.4], [2442.4, 2587.72], [2444.07, 2589.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2700.47, 2681.29], [2695.04, 2675.79], [2688.89, 2681.85], [2694.31, 2687.36], [2700.47, 2681.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2441.87, 2625.18], [2431.62, 2615.34], [2427.53, 2619.6], [2428.43, 2620.45], [2426.44, 2622.52], [2435.8, 2631.5], [2441.87, 2625.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2369.17, 2558.99], [2365.55, 2555.79], [2361.54, 2560.33], [2365.15, 2563.52], [2369.17, 2558.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2503.65, 2491.44], [2498.78, 2486.7], [2492.37, 2493.29], [2498.33, 2499.1], [2500.63, 2496.74], [2499.53, 2495.67], [2503.65, 2491.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2541.86, 2364.25], [2536.9, 2358.98], [2530.86, 2364.68], [2535.81, 2369.93], [2541.86, 2364.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2452.13, 2722.31], [2445.26, 2715.59], [2435.05, 2726.02], [2436.22, 2727.16], [2433.17, 2730.27], [2438.86, 2735.85], [2452.13, 2722.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2976.63, 2591.71], [2976.47, 2589.17], [2977.57, 2589.09], [2976.78, 2577.31], [2966.87, 2577.98], [2967.67, 2590.02], [2968.79, 2589.95], [2968.94, 2592.22], [2976.63, 2591.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2330.91, 2803.9], [2327.29, 2800.28], [2321.39, 2806.17], [2325.01, 2809.79], [2330.91, 2803.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2488.74, 2390.72], [2480.87, 2383.01], [2478.06, 2385.87], [2480.12, 2387.88], [2476.91, 2391.14], [2482.73, 2396.85], [2488.74, 2390.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2403.62, 2481.65], [2407.85, 2477.31], [2405.84, 2475.35], [2406.44, 2474.75], [2398.4, 2466.92], [2396.46, 2468.89], [2394.81, 2467.28], [2392.15, 2470.01], [2393.7, 2471.53], [2392.08, 2473.18], [2399.95, 2480.85], [2401.34, 2479.44], [2403.62, 2481.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2207.39, 2790.99], [2219.6, 2777.74], [2218.99, 2777.18], [2221.46, 2774.49], [2217.49, 2770.83], [2214.94, 2773.61], [2213.87, 2772.64], [2206.47, 2780.68], [2207.61, 2781.74], [2205.49, 2784.04], [2201.53, 2780.4], [2196.43, 2785.94], [2200.53, 2789.72], [2203.04, 2786.98], [2207.39, 2790.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2357.57, 2568.9], [2354.47, 2565.85], [2353.26, 2567.07], [2350.13, 2563.97], [2343.29, 2570.87], [2349.5, 2577.03], [2357.57, 2568.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2572.04, 2469.49], [2565.85, 2463.33], [2560.83, 2468.38], [2567.03, 2474.53], [2572.04, 2469.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2458.79, 2522.09], [2452.67, 2516.26], [2440.44, 2529.1], [2446.56, 2534.93], [2458.79, 2522.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2549.79, 2610.3], [2547.45, 2608.03], [2543.71, 2611.9], [2546.05, 2614.17], [2549.79, 2610.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2325.34, 2559.88], [2329.16, 2556.35], [2327.12, 2554.18], [2328.52, 2552.89], [2320.76, 2544.55], [2320.01, 2545.25], [2318.73, 2543.89], [2315.79, 2546.6], [2317.44, 2548.37], [2314.83, 2550.78], [2322.49, 2559.01], [2323.59, 2558.0], [2325.34, 2559.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2279.32, 2748.72], [2274.43, 2744.16], [2269.1, 2749.87], [2273.98, 2754.43], [2279.32, 2748.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2842.17, 2755.32], [2830.69, 2751.63], [2828.06, 2759.81], [2839.54, 2763.5], [2842.17, 2755.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2538.78, 2468.16], [2536.38, 2465.58], [2526.75, 2474.53], [2532.65, 2480.88], [2541.51, 2472.64], [2538.01, 2468.88], [2538.78, 2468.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2564.3, 2498.79], [2552.03, 2486.23], [2545.91, 2492.2], [2558.19, 2504.76], [2564.3, 2498.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2553.87, 2402.51], [2548.92, 2397.99], [2544.11, 2403.26], [2549.06, 2407.78], [2553.87, 2402.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2622.16, 2501.69], [2611.57, 2490.95], [2606.41, 2496.03], [2617.0, 2506.78], [2622.16, 2501.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2975.52, 2674.76], [2974.74, 2663.26], [2966.31, 2663.82], [2966.77, 2670.62], [2969.03, 2670.47], [2969.35, 2675.17], [2975.52, 2674.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2970.32, 2556.89], [2969.4, 2546.22], [2958.79, 2547.13], [2959.48, 2555.12], [2962.77, 2554.84], [2963.0, 2557.52], [2970.32, 2556.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2734.25, 2643.79], [2729.39, 2639.58], [2728.05, 2641.12], [2719.05, 2633.31], [2714.0, 2639.13], [2723.61, 2647.47], [2726.77, 2643.82], [2731.02, 2647.5], [2734.25, 2643.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2531.58, 2377.92], [2528.09, 2374.06], [2523.37, 2378.34], [2526.86, 2382.2], [2531.58, 2377.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2248.42, 2802.07], [2244.78, 2798.5], [2243.11, 2800.2], [2242.18, 2799.29], [2235.26, 2806.35], [2240.4, 2811.38], [2246.99, 2804.67], [2246.42, 2804.11], [2248.42, 2802.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2180.97, 2737.05], [2177.51, 2733.45], [2175.05, 2735.81], [2174.37, 2735.09], [2168.54, 2740.69], [2170.72, 2742.96], [2169.44, 2744.2], [2173.7, 2748.64], [2181.3, 2741.33], [2179.01, 2738.94], [2180.97, 2737.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2573.52, 2560.13], [2568.63, 2555.55], [2563.57, 2560.96], [2568.46, 2565.54], [2573.52, 2560.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2543.71, 2582.45], [2532.92, 2572.96], [2527.03, 2579.66], [2537.83, 2589.15], [2543.71, 2582.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2386.5, 2611.93], [2395.18, 2603.3], [2393.05, 2601.15], [2394.88, 2599.33], [2393.32, 2597.74], [2391.37, 2599.68], [2388.35, 2596.64], [2377.91, 2607.01], [2382.02, 2611.15], [2383.88, 2609.3], [2386.5, 2611.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2968.03, 2723.74], [2966.95, 2713.32], [2962.67, 2713.77], [2962.8, 2714.96], [2959.88, 2715.27], [2960.21, 2718.49], [2959.18, 2718.6], [2959.8, 2724.59], [2968.03, 2723.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2384.85, 2591.53], [2380.25, 2586.61], [2373.28, 2593.13], [2373.68, 2593.56], [2370.03, 2596.97], [2370.64, 2597.63], [2369.19, 2599.0], [2374.39, 2604.56], [2385.5, 2594.17], [2383.87, 2592.44], [2384.85, 2591.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2472.66, 2743.19], [2466.35, 2737.29], [2457.45, 2746.82], [2463.75, 2752.72], [2472.66, 2743.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2670.02, 2482.59], [2664.89, 2476.73], [2654.23, 2486.06], [2659.36, 2491.92], [2670.02, 2482.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2721.32, 2730.16], [2714.41, 2724.24], [2706.48, 2733.48], [2713.39, 2739.4], [2721.32, 2730.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2728.13, 2790.5], [2724.85, 2787.51], [2722.65, 2789.9], [2721.55, 2788.9], [2715.89, 2795.07], [2721.49, 2800.2], [2727.4, 2793.74], [2726.18, 2792.63], [2728.13, 2790.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2938.63, 2732.51], [2935.78, 2724.92], [2926.26, 2728.5], [2927.83, 2732.7], [2930.32, 2731.77], [2931.59, 2735.15], [2938.63, 2732.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2559.99, 2565.1], [2550.71, 2556.31], [2547.44, 2559.76], [2556.71, 2568.56], [2559.99, 2565.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2611.11, 2592.98], [2605.12, 2587.38], [2596.94, 2596.14], [2602.92, 2601.74], [2611.11, 2592.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2582.23, 2481.63], [2571.54, 2471.89], [2566.72, 2477.17], [2567.81, 2478.18], [2566.47, 2479.65], [2576.06, 2488.4], [2582.23, 2481.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2673.63, 2794.32], [2668.69, 2789.55], [2660.61, 2797.93], [2666.99, 2804.09], [2673.01, 2797.85], [2671.57, 2796.47], [2673.63, 2794.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2648.81, 2651.99], [2653.02, 2648.08], [2654.64, 2649.82], [2661.65, 2643.31], [2656.98, 2638.28], [2649.72, 2645.0], [2650.52, 2645.86], [2646.55, 2649.55], [2648.81, 2651.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2384.04, 2525.91], [2390.32, 2519.35], [2384.22, 2513.52], [2377.26, 2520.8], [2380.52, 2523.93], [2381.21, 2523.22], [2384.04, 2525.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2476.81, 2414.91], [2473.34, 2411.33], [2469.48, 2415.07], [2472.94, 2418.65], [2476.81, 2414.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2522.51, 2544.12], [2511.47, 2533.11], [2509.77, 2534.82], [2507.72, 2532.78], [2504.89, 2535.61], [2506.86, 2537.58], [2504.36, 2540.09], [2515.47, 2551.18], [2522.51, 2544.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2779.3, 2703.88], [2772.87, 2697.6], [2767.08, 2703.54], [2773.52, 2709.81], [2779.3, 2703.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2421.79, 2642.74], [2414.79, 2635.64], [2408.97, 2641.38], [2417.76, 2650.3], [2422.94, 2645.19], [2421.15, 2643.37], [2421.79, 2642.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2570.88, 2570.57], [2568.23, 2568.23], [2564.15, 2572.86], [2566.8, 2575.2], [2570.88, 2570.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2725.16, 2744.39], [2720.39, 2739.8], [2716.17, 2744.17], [2720.94, 2748.76], [2725.16, 2744.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2712.43, 2521.77], [2705.59, 2514.99], [2696.4, 2524.58], [2697.24, 2525.56], [2695.11, 2527.86], [2700.76, 2533.03], [2702.81, 2530.92], [2703.38, 2531.5], [2712.43, 2521.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2649.96, 2659.47], [2645.39, 2655.18], [2640.69, 2660.22], [2645.27, 2664.49], [2649.96, 2659.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2436.83, 2703.74], [2431.14, 2697.82], [2422.4, 2706.21], [2428.09, 2712.13], [2436.83, 2703.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2568.17, 2422.26], [2563.77, 2417.54], [2559.5, 2421.52], [2563.9, 2426.24], [2568.17, 2422.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2520.2, 2598.37], [2511.32, 2590.18], [2506.12, 2595.83], [2515.0, 2604.02], [2520.2, 2598.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2596.68, 2599.51], [2593.58, 2596.4], [2586.94, 2602.99], [2590.04, 2606.1], [2596.68, 2599.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2432.75, 2633.77], [2423.6, 2626.01], [2421.53, 2628.46], [2423.0, 2629.71], [2419.06, 2634.36], [2426.74, 2640.86], [2432.75, 2633.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2271.2, 2763.69], [2264.66, 2757.42], [2255.88, 2766.58], [2262.42, 2772.85], [2271.2, 2763.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2540.76, 2613.36], [2534.82, 2607.34], [2525.65, 2616.38], [2531.59, 2622.4], [2540.76, 2613.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2955.87, 2763.33], [2968.69, 2751.42], [2957.62, 2739.86], [2945.06, 2751.61], [2955.87, 2763.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.177, "pop": 0, "jobs": 177}}, {"shape": {"outer": [[2635.7, 2474.37], [2629.94, 2469.43], [2622.69, 2477.89], [2628.45, 2482.83], [2635.7, 2474.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2969.09, 2522.67], [2968.83, 2519.56], [2966.74, 2519.73], [2966.45, 2516.15], [2956.49, 2516.97], [2957.3, 2526.63], [2967.33, 2525.79], [2967.08, 2522.84], [2969.09, 2522.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2778.48, 2668.36], [2774.09, 2664.13], [2770.36, 2668.01], [2774.75, 2672.23], [2778.48, 2668.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2969.61, 2535.79], [2969.35, 2530.96], [2957.78, 2531.57], [2958.45, 2544.1], [2966.65, 2543.67], [2966.24, 2535.97], [2969.61, 2535.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2536.64, 2450.11], [2533.8, 2447.46], [2530.43, 2451.07], [2533.27, 2453.71], [2536.64, 2450.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2613.87, 2524.05], [2609.98, 2519.69], [2605.72, 2523.5], [2609.6, 2527.86], [2613.87, 2524.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2669.53, 2714.68], [2665.15, 2710.47], [2662.45, 2713.27], [2666.84, 2717.49], [2669.53, 2714.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2309.59, 2630.18], [2313.87, 2634.22], [2317.99, 2629.72], [2313.78, 2625.72], [2309.59, 2630.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2520.03, 2431.09], [2517.22, 2428.22], [2512.63, 2432.74], [2515.44, 2435.61], [2520.03, 2431.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2447.57, 2487.23], [2444.8, 2484.63], [2441.32, 2488.36], [2444.09, 2490.95], [2447.57, 2487.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2500.72, 2384.46], [2489.66, 2374.6], [2484.16, 2380.78], [2495.22, 2390.63], [2500.72, 2384.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2726.12, 2558.55], [2713.54, 2545.85], [2693.98, 2565.83], [2700.32, 2571.94], [2709.16, 2562.79], [2717.73, 2571.1], [2725.91, 2562.19], [2734.49, 2570.72], [2737.77, 2567.55], [2734.01, 2563.71], [2743.84, 2550.55], [2740.19, 2546.72], [2726.12, 2558.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.381, "pop": 0, "jobs": 381}}, {"shape": {"outer": [[2600.98, 2773.81], [2604.29, 2770.27], [2595.22, 2761.78], [2590.1, 2767.26], [2596.8, 2773.52], [2598.61, 2771.59], [2600.98, 2773.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2693.18, 2672.35], [2686.52, 2665.33], [2679.57, 2671.93], [2683.4, 2675.98], [2681.9, 2677.4], [2684.71, 2680.37], [2693.18, 2672.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2597.1, 2431.61], [2599.75, 2429.36], [2600.7, 2430.48], [2607.32, 2424.88], [2600.37, 2416.65], [2593.46, 2422.51], [2597.6, 2427.39], [2595.23, 2429.39], [2597.1, 2431.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2341.43, 2702.75], [2337.34, 2698.84], [2333.54, 2702.82], [2337.64, 2706.73], [2341.43, 2702.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2784.58, 2726.0], [2787.0, 2723.48], [2788.89, 2725.29], [2791.89, 2722.16], [2783.0, 2713.61], [2781.46, 2715.21], [2782.58, 2716.29], [2778.69, 2720.33], [2784.58, 2726.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2521.46, 2788.32], [2515.68, 2783.01], [2508.69, 2790.6], [2514.47, 2795.92], [2521.46, 2788.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2934.41, 2721.09], [2934.06, 2713.8], [2924.85, 2714.24], [2925.19, 2721.53], [2934.41, 2721.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2686.81, 2746.41], [2683.89, 2743.85], [2682.11, 2745.89], [2679.18, 2743.34], [2670.64, 2753.13], [2676.48, 2758.23], [2686.81, 2746.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2445.7, 2748.77], [2447.44, 2746.81], [2448.5, 2747.75], [2461.83, 2732.7], [2455.43, 2727.03], [2447.21, 2736.29], [2448.55, 2737.48], [2441.69, 2745.22], [2445.7, 2748.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2614.84, 2752.98], [2610.16, 2747.52], [2606.26, 2750.87], [2610.94, 2756.33], [2614.84, 2752.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2465.26, 2600.96], [2470.81, 2595.54], [2462.18, 2586.71], [2458.13, 2590.65], [2459.42, 2591.98], [2456.87, 2594.47], [2462.71, 2600.46], [2463.76, 2599.43], [2465.26, 2600.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2628.16, 2550.73], [2624.36, 2547.44], [2616.92, 2556.05], [2617.68, 2556.71], [2615.41, 2559.34], [2621.08, 2564.25], [2628.02, 2556.23], [2625.38, 2553.94], [2628.16, 2550.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2418.28, 2597.42], [2411.79, 2592.43], [2408.58, 2596.6], [2415.08, 2601.59], [2418.28, 2597.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2647.0, 2627.01], [2641.52, 2621.32], [2633.68, 2628.86], [2635.66, 2630.92], [2631.54, 2634.88], [2635.03, 2638.51], [2647.0, 2627.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2259.67, 2757.96], [2254.54, 2752.92], [2248.64, 2758.94], [2249.02, 2759.31], [2247.37, 2760.99], [2252.13, 2765.66], [2259.67, 2757.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2215.62, 2667.09], [2218.91, 2663.57], [2217.3, 2662.06], [2222.52, 2656.47], [2217.22, 2651.53], [2209.02, 2660.29], [2209.85, 2661.07], [2207.65, 2663.42], [2211.5, 2667.03], [2213.39, 2665.0], [2215.62, 2667.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2370.79, 2642.91], [2364.08, 2636.37], [2349.82, 2651.05], [2356.54, 2657.57], [2370.79, 2642.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2332.04, 2682.16], [2326.06, 2675.83], [2315.5, 2685.8], [2321.47, 2692.12], [2332.04, 2682.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2640.72, 2651.67], [2636.28, 2647.77], [2632.67, 2651.88], [2637.11, 2655.78], [2640.72, 2651.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2956.62, 2690.2], [2956.05, 2678.87], [2948.18, 2679.27], [2948.75, 2690.59], [2956.62, 2690.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2200.42, 2699.81], [2193.18, 2693.35], [2187.46, 2699.77], [2191.28, 2703.18], [2190.37, 2704.21], [2193.78, 2707.26], [2200.42, 2699.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2676.31, 2597.33], [2670.05, 2591.17], [2660.11, 2601.26], [2661.81, 2602.94], [2660.18, 2604.59], [2664.73, 2609.07], [2676.31, 2597.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2348.5, 2661.45], [2341.8, 2655.18], [2337.54, 2659.74], [2341.77, 2663.68], [2340.64, 2664.87], [2343.12, 2667.19], [2348.5, 2661.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2235.31, 2735.4], [2231.11, 2731.74], [2223.87, 2740.06], [2229.76, 2745.18], [2235.08, 2739.07], [2233.39, 2737.6], [2235.31, 2735.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2351.22, 2722.46], [2355.09, 2718.62], [2353.59, 2717.12], [2354.54, 2716.18], [2347.04, 2708.63], [2341.46, 2714.18], [2349.01, 2721.77], [2349.78, 2721.0], [2351.22, 2722.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2752.98, 2792.57], [2748.09, 2788.0], [2746.28, 2789.94], [2751.17, 2794.52], [2752.98, 2792.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2560.81, 2627.17], [2557.0, 2623.87], [2555.17, 2625.97], [2552.36, 2623.53], [2546.39, 2630.42], [2553.01, 2636.16], [2560.81, 2627.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2551.06, 2574.48], [2541.48, 2564.21], [2535.54, 2569.73], [2547.15, 2582.2], [2550.22, 2579.35], [2548.18, 2577.17], [2551.06, 2574.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2833.94, 2780.28], [2828.1, 2778.0], [2825.9, 2783.63], [2831.74, 2785.91], [2833.94, 2780.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2638.84, 2618.18], [2632.93, 2612.5], [2623.64, 2622.16], [2629.56, 2627.84], [2638.84, 2618.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2515.42, 2635.34], [2510.18, 2630.03], [2507.04, 2633.12], [2505.69, 2631.74], [2503.11, 2634.28], [2502.06, 2633.21], [2499.12, 2636.11], [2508.16, 2645.28], [2514.25, 2639.27], [2512.86, 2637.85], [2515.42, 2635.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2291.52, 2642.46], [2290.12, 2641.01], [2292.69, 2638.56], [2289.82, 2635.49], [2287.16, 2638.07], [2285.37, 2636.2], [2278.81, 2642.44], [2285.02, 2648.79], [2291.52, 2642.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2746.28, 2623.29], [2736.77, 2614.75], [2732.05, 2620.01], [2741.58, 2628.55], [2746.28, 2623.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2516.47, 2526.22], [2512.57, 2522.5], [2508.32, 2526.97], [2512.22, 2530.68], [2516.47, 2526.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2663.42, 2592.4], [2657.43, 2586.46], [2651.15, 2592.78], [2657.14, 2598.73], [2663.42, 2592.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2349.95, 2691.93], [2347.14, 2689.47], [2345.03, 2691.86], [2347.84, 2694.33], [2349.95, 2691.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2512.09, 2780.53], [2506.48, 2775.3], [2500.23, 2782.0], [2505.83, 2787.23], [2512.09, 2780.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2451.75, 2615.02], [2443.14, 2606.81], [2440.83, 2609.24], [2440.27, 2608.72], [2436.41, 2612.76], [2445.58, 2621.5], [2451.75, 2615.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2484.04, 2560.24], [2479.19, 2555.32], [2475.16, 2559.31], [2480.01, 2564.22], [2484.04, 2560.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2734.73, 2629.98], [2728.93, 2624.43], [2723.2, 2630.43], [2729.0, 2635.97], [2734.73, 2629.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2560.35, 2576.54], [2556.11, 2572.69], [2552.98, 2576.14], [2557.22, 2579.99], [2560.35, 2576.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2659.23, 2475.42], [2652.78, 2468.63], [2645.7, 2475.37], [2649.08, 2478.94], [2647.47, 2480.47], [2650.53, 2483.7], [2659.23, 2475.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2697.07, 2629.26], [2687.73, 2618.72], [2681.82, 2623.96], [2691.16, 2634.51], [2697.07, 2629.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2648.0, 2719.9], [2642.12, 2714.09], [2640.78, 2715.44], [2639.4, 2714.07], [2634.71, 2718.81], [2636.43, 2720.51], [2635.69, 2721.25], [2641.25, 2726.74], [2648.0, 2719.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2486.77, 2411.74], [2482.75, 2407.13], [2477.84, 2411.42], [2481.86, 2416.04], [2486.77, 2411.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2319.1, 2733.11], [2312.81, 2727.01], [2306.77, 2733.21], [2313.06, 2739.33], [2319.1, 2733.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2592.8, 2592.99], [2602.2, 2583.14], [2596.78, 2577.97], [2587.38, 2587.81], [2592.8, 2592.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2434.27, 2784.77], [2431.2, 2781.36], [2428.38, 2783.89], [2426.21, 2781.48], [2418.38, 2788.54], [2423.62, 2794.36], [2434.27, 2784.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2485.27, 2522.86], [2480.55, 2518.52], [2476.61, 2522.83], [2481.33, 2527.16], [2485.27, 2522.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2316.91, 2651.54], [2312.27, 2646.87], [2307.93, 2651.18], [2312.57, 2655.85], [2316.91, 2651.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2679.94, 2686.77], [2672.6, 2680.03], [2667.07, 2686.06], [2674.4, 2692.8], [2679.94, 2686.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2487.22, 2475.99], [2480.69, 2469.96], [2474.34, 2476.82], [2480.88, 2482.86], [2487.22, 2475.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2726.61, 2659.3], [2721.71, 2654.48], [2716.94, 2659.34], [2721.84, 2664.15], [2726.61, 2659.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2406.65, 2588.11], [2400.42, 2582.53], [2395.24, 2588.32], [2403.09, 2595.34], [2406.18, 2591.88], [2404.57, 2590.44], [2406.65, 2588.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2350.19, 2536.48], [2347.93, 2534.24], [2349.75, 2532.41], [2341.21, 2523.93], [2338.89, 2526.27], [2337.53, 2524.92], [2334.78, 2527.69], [2336.46, 2529.35], [2335.51, 2530.3], [2343.47, 2538.21], [2345.52, 2536.14], [2348.04, 2538.65], [2350.19, 2536.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2533.93, 2458.94], [2530.64, 2455.97], [2529.84, 2456.87], [2528.59, 2455.75], [2518.37, 2467.07], [2524.96, 2473.01], [2534.52, 2462.42], [2532.46, 2460.56], [2533.93, 2458.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2740.53, 2583.01], [2732.14, 2574.56], [2726.61, 2580.05], [2735.01, 2588.5], [2740.53, 2583.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2815.23, 2793.95], [2800.45, 2787.33], [2796.94, 2795.17], [2811.72, 2801.79], [2815.23, 2793.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2478.94, 2676.01], [2474.88, 2671.72], [2468.47, 2677.8], [2472.54, 2682.09], [2478.94, 2676.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2510.12, 2453.68], [2518.11, 2445.02], [2511.05, 2438.5], [2501.06, 2449.31], [2504.57, 2452.54], [2506.56, 2450.39], [2510.12, 2453.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2335.7, 2546.52], [2327.93, 2538.18], [2324.55, 2541.33], [2322.97, 2539.65], [2320.95, 2541.52], [2322.41, 2543.1], [2321.07, 2544.33], [2328.97, 2552.8], [2335.7, 2546.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2432.53, 2563.02], [2425.99, 2556.91], [2417.18, 2566.34], [2423.71, 2572.45], [2432.53, 2563.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2329.39, 2700.47], [2330.95, 2698.95], [2331.68, 2699.68], [2339.25, 2692.31], [2336.91, 2689.9], [2338.29, 2688.56], [2334.12, 2684.26], [2325.04, 2693.09], [2325.78, 2693.85], [2324.33, 2695.26], [2329.39, 2700.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2349.12, 2545.46], [2344.87, 2540.71], [2341.88, 2543.39], [2346.13, 2548.14], [2349.12, 2545.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2515.79, 2421.67], [2512.09, 2417.39], [2507.12, 2421.66], [2510.82, 2425.96], [2515.79, 2421.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2303.13, 2818.4], [2304.57, 2816.98], [2305.27, 2817.69], [2317.3, 2805.83], [2311.37, 2799.82], [2298.9, 2812.11], [2300.08, 2813.3], [2299.07, 2814.3], [2303.13, 2818.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2486.27, 2632.96], [2477.71, 2624.65], [2471.63, 2630.92], [2481.82, 2640.8], [2484.37, 2638.18], [2482.74, 2636.6], [2486.27, 2632.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2447.3, 2430.38], [2439.34, 2422.4], [2434.14, 2427.57], [2442.1, 2435.56], [2447.3, 2430.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2772.63, 2694.26], [2766.18, 2687.99], [2757.01, 2697.4], [2763.46, 2703.68], [2772.63, 2694.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2655.14, 2728.03], [2651.0, 2723.67], [2646.77, 2727.68], [2650.91, 2732.04], [2655.14, 2728.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2675.15, 2696.41], [2664.73, 2686.91], [2659.45, 2692.7], [2669.87, 2702.2], [2675.15, 2696.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2289.35, 2589.89], [2300.43, 2578.55], [2292.91, 2571.5], [2281.88, 2582.72], [2289.35, 2589.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2367.9, 2807.01], [2363.25, 2802.37], [2358.37, 2807.26], [2363.02, 2811.9], [2367.9, 2807.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2569.79, 2551.89], [2564.28, 2547.07], [2563.51, 2547.96], [2561.04, 2545.81], [2555.3, 2552.38], [2563.26, 2559.35], [2569.79, 2551.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2139.75, 2748.1], [2141.63, 2749.95], [2142.92, 2748.64], [2141.05, 2746.79], [2139.75, 2748.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2617.29, 2601.1], [2612.26, 2595.62], [2604.64, 2602.61], [2609.66, 2608.1], [2617.29, 2601.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2249.12, 2700.26], [2256.19, 2692.68], [2260.74, 2696.94], [2271.8, 2685.1], [2267.21, 2680.81], [2256.66, 2692.11], [2253.26, 2688.94], [2245.68, 2697.04], [2249.12, 2700.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2300.93, 2712.57], [2295.77, 2707.43], [2288.1, 2715.14], [2293.26, 2720.29], [2300.93, 2712.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2506.71, 2374.57], [2497.72, 2366.9], [2492.38, 2373.14], [2501.38, 2380.82], [2506.71, 2374.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2198.3, 2769.67], [2195.96, 2767.36], [2191.47, 2771.92], [2193.81, 2774.23], [2198.3, 2769.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2354.86, 2713.9], [2357.55, 2711.22], [2358.59, 2712.28], [2358.76, 2712.1], [2360.27, 2713.62], [2365.78, 2708.15], [2353.59, 2695.9], [2348.16, 2701.31], [2350.96, 2704.13], [2350.16, 2704.94], [2352.48, 2707.28], [2350.36, 2709.38], [2354.86, 2713.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2803.37, 2687.28], [2792.71, 2676.93], [2792.12, 2677.53], [2789.62, 2675.11], [2784.63, 2680.25], [2797.78, 2693.03], [2803.37, 2687.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2533.22, 2442.6], [2525.91, 2436.62], [2522.12, 2441.25], [2529.43, 2447.23], [2533.22, 2442.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2254.65, 2623.1], [2264.31, 2612.89], [2265.1, 2613.65], [2269.43, 2609.08], [2264.34, 2604.28], [2258.91, 2610.02], [2255.98, 2607.25], [2247.44, 2616.28], [2254.65, 2623.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2583.83, 2795.43], [2585.95, 2793.22], [2583.9, 2791.26], [2581.39, 2793.9], [2579.12, 2791.73], [2571.49, 2799.72], [2577.54, 2805.51], [2585.57, 2797.09], [2583.83, 2795.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2214.14, 2726.6], [2223.91, 2716.89], [2216.7, 2709.64], [2206.2, 2720.23], [2209.66, 2723.71], [2210.46, 2722.91], [2214.14, 2726.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2391.56, 2731.08], [2387.95, 2727.71], [2384.94, 2730.93], [2388.54, 2734.29], [2391.56, 2731.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2532.69, 2517.42], [2526.97, 2511.84], [2519.15, 2519.89], [2524.86, 2525.45], [2532.69, 2517.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2652.71, 2631.52], [2648.7, 2627.65], [2638.95, 2637.77], [2644.8, 2643.42], [2652.88, 2635.05], [2651.04, 2633.26], [2652.71, 2631.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2846.28, 2785.32], [2840.61, 2783.22], [2838.26, 2789.54], [2843.93, 2791.64], [2846.28, 2785.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2576.44, 2612.15], [2569.59, 2605.15], [2563.63, 2610.98], [2570.48, 2617.99], [2576.44, 2612.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2638.25, 2550.16], [2642.96, 2554.58], [2647.29, 2550.18], [2642.57, 2545.65], [2638.25, 2550.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2627.71, 2606.76], [2622.77, 2601.64], [2613.66, 2610.44], [2619.58, 2616.59], [2625.74, 2610.63], [2624.75, 2609.61], [2627.71, 2606.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2450.71, 2669.04], [2441.19, 2660.38], [2435.79, 2666.33], [2445.31, 2674.98], [2450.71, 2669.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2455.97, 2610.72], [2461.33, 2604.96], [2450.88, 2595.31], [2445.52, 2600.97], [2455.97, 2610.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2967.73, 2570.35], [2967.22, 2563.08], [2960.6, 2563.55], [2961.1, 2570.8], [2967.73, 2570.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2944.6, 2693.48], [2944.4, 2689.88], [2947.15, 2689.73], [2946.53, 2678.73], [2938.37, 2679.18], [2939.1, 2692.23], [2941.96, 2692.07], [2942.04, 2693.62], [2944.6, 2693.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2726.95, 2596.57], [2731.3, 2592.5], [2721.44, 2581.96], [2716.61, 2586.5], [2719.1, 2589.15], [2718.12, 2590.08], [2723.28, 2595.61], [2724.76, 2594.22], [2726.95, 2596.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2721.63, 2765.19], [2714.88, 2757.69], [2708.31, 2763.6], [2711.45, 2767.09], [2704.41, 2773.41], [2708.95, 2778.46], [2715.85, 2772.28], [2714.9, 2771.23], [2721.63, 2765.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2574.86, 2605.3], [2578.55, 2601.27], [2579.46, 2602.1], [2580.41, 2601.06], [2583.26, 2603.66], [2588.42, 2598.0], [2583.96, 2593.93], [2579.88, 2598.39], [2578.92, 2597.52], [2576.77, 2599.88], [2573.51, 2596.91], [2569.94, 2600.82], [2574.86, 2605.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2712.72, 2790.66], [2718.75, 2784.4], [2712.59, 2778.47], [2704.39, 2786.98], [2707.35, 2789.82], [2709.52, 2787.57], [2712.72, 2790.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2959.4, 2672.21], [2958.92, 2666.47], [2954.87, 2666.8], [2955.35, 2672.56], [2959.4, 2672.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2509.79, 2399.44], [2505.04, 2395.48], [2501.03, 2400.29], [2505.78, 2404.25], [2509.79, 2399.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2970.69, 2632.65], [2969.86, 2622.49], [2962.05, 2623.12], [2962.87, 2633.28], [2970.69, 2632.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2550.39, 2621.53], [2544.18, 2614.88], [2537.53, 2621.09], [2543.74, 2627.74], [2550.39, 2621.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2262.13, 2676.14], [2255.68, 2670.41], [2246.73, 2680.49], [2253.17, 2686.22], [2262.13, 2676.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2420.07, 2577.74], [2414.67, 2572.76], [2409.11, 2578.79], [2414.51, 2583.78], [2420.07, 2577.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2424.8, 2773.99], [2417.96, 2767.5], [2409.3, 2776.64], [2413.79, 2780.88], [2413.04, 2781.67], [2415.41, 2783.91], [2424.8, 2773.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2462.86, 2447.4], [2457.23, 2442.15], [2449.57, 2450.34], [2455.2, 2455.6], [2462.86, 2447.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2420.93, 2461.16], [2410.31, 2450.53], [2404.5, 2456.34], [2415.11, 2466.96], [2420.93, 2461.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2150.75, 2731.82], [2160.22, 2721.76], [2153.46, 2715.35], [2143.86, 2725.24], [2150.75, 2731.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2672.9, 2576.57], [2667.85, 2572.17], [2662.93, 2577.83], [2667.98, 2582.23], [2672.9, 2576.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2399.31, 2724.46], [2391.84, 2717.01], [2385.92, 2722.94], [2393.4, 2730.39], [2399.31, 2724.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2403.89, 2756.86], [2396.92, 2750.13], [2391.63, 2755.61], [2393.55, 2757.47], [2391.26, 2759.85], [2396.3, 2764.72], [2403.89, 2756.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2633.1, 2751.34], [2627.33, 2745.5], [2620.02, 2752.73], [2622.04, 2754.78], [2620.06, 2756.73], [2623.8, 2760.51], [2633.1, 2751.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2342.53, 2538.96], [2334.26, 2531.23], [2332.44, 2533.18], [2330.58, 2531.43], [2328.03, 2534.17], [2329.84, 2535.86], [2328.34, 2537.48], [2336.65, 2545.25], [2342.53, 2538.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2419.39, 2751.54], [2414.37, 2746.97], [2410.8, 2750.89], [2415.83, 2755.46], [2419.39, 2751.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2977.49, 2724.77], [2976.63, 2710.66], [2970.1, 2711.07], [2970.96, 2725.16], [2977.49, 2724.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2407.8, 2554.31], [2417.22, 2543.9], [2411.05, 2538.32], [2409.12, 2540.44], [2408.75, 2540.11], [2399.86, 2549.93], [2403.27, 2553.02], [2404.67, 2551.49], [2407.8, 2554.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2583.6, 2569.26], [2578.28, 2563.08], [2572.54, 2568.02], [2577.86, 2574.2], [2583.6, 2569.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2330.55, 2604.12], [2324.65, 2598.15], [2317.59, 2605.12], [2323.49, 2611.09], [2330.55, 2604.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2478.68, 2656.6], [2472.54, 2651.93], [2469.6, 2655.81], [2475.74, 2660.47], [2478.68, 2656.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2722.45, 2600.76], [2713.64, 2591.21], [2709.54, 2595.0], [2711.03, 2596.62], [2708.93, 2598.54], [2716.25, 2606.48], [2722.45, 2600.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2176.6, 2755.13], [2173.25, 2751.94], [2165.43, 2760.14], [2168.79, 2763.33], [2176.6, 2755.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2561.87, 2381.06], [2555.16, 2374.02], [2544.03, 2384.63], [2550.75, 2391.66], [2561.87, 2381.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2495.73, 2627.86], [2499.22, 2624.37], [2497.2, 2622.36], [2498.75, 2620.79], [2490.6, 2612.69], [2484.44, 2618.89], [2492.85, 2627.23], [2493.96, 2626.11], [2495.73, 2627.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2380.05, 2514.15], [2375.75, 2509.48], [2367.52, 2517.04], [2371.8, 2521.71], [2380.05, 2514.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2588.48, 2530.31], [2591.25, 2527.58], [2593.2, 2529.56], [2595.47, 2527.3], [2594.32, 2526.15], [2595.64, 2524.84], [2588.64, 2517.76], [2582.29, 2524.04], [2588.48, 2530.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1985.47, 2834.51], [1981.33, 2815.33], [1966.89, 2818.43], [1965.76, 2813.13], [1921.2, 2822.57], [1923.43, 2832.99], [1921.06, 2833.56], [1924.14, 2847.6], [1985.47, 2834.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.938, "pop": 0, "jobs": 938}}, {"shape": {"outer": [[2818.14, -1239.09], [2819.24, -1240.16], [2819.65, -1239.73], [2825.62, -1245.65], [2826.84, -1244.36], [2829.49, -1246.9], [2828.18, -1248.27], [2829.05, -1249.1], [2828.31, -1249.87], [2836.6, -1258.15], [2831.23, -1263.8], [2828.24, -1260.96], [2827.56, -1261.68], [2821.77, -1256.19], [2821.01, -1256.99], [2818.07, -1254.19], [2816.82, -1255.43], [2818.01, -1256.55], [2818.12, -1258.84], [2816.69, -1260.31], [2814.34, -1260.25], [2813.59, -1259.55], [2812.14, -1261.09], [2811.24, -1260.23], [2805.78, -1265.98], [2801.65, -1262.05], [2804.32, -1259.23], [2802.31, -1257.32], [2807.9, -1251.44], [2807.33, -1250.85], [2807.44, -1249.85], [2810.27, -1247.04], [2808.75, -1245.61], [2813.5, -1240.61], [2815.14, -1242.17], [2818.14, -1239.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.362, "pop": 181, "jobs": 0}}, {"shape": {"outer": [[2797.31, -1485.45], [2801.77, -1471.21], [2809.74, -1473.7], [2809.58, -1474.23], [2812.69, -1475.2], [2810.07, -1483.57], [2805.6, -1482.17], [2803.93, -1487.52], [2797.31, -1485.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2843.75, -1374.45], [2842.27, -1378.33], [2843.86, -1378.94], [2840.28, -1388.11], [2833.27, -1385.43], [2838.33, -1372.37], [2843.75, -1374.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2809.58, -1516.13], [2808.01, -1520.34], [2807.57, -1520.18], [2805.62, -1525.45], [2797.03, -1522.31], [2798.14, -1519.35], [2794.41, -1517.95], [2798.09, -1508.06], [2810.41, -1512.58], [2809.14, -1515.96], [2809.58, -1516.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2845.69, -1416.24], [2842.42, -1427.44], [2834.54, -1425.14], [2837.82, -1413.95], [2845.69, -1416.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2800.55, -1398.22], [2799.43, -1402.05], [2795.43, -1400.9], [2796.54, -1397.09], [2800.55, -1398.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2677.54, -1535.07], [2685.61, -1536.36], [2684.45, -1543.64], [2676.38, -1542.35], [2677.54, -1535.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2673.4, -1551.3], [2673.01, -1554.69], [2669.22, -1554.25], [2668.99, -1556.25], [2655.09, -1554.65], [2656.07, -1546.15], [2670.18, -1547.78], [2669.83, -1550.88], [2673.4, -1551.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2846.87, -1551.65], [2855.07, -1552.56], [2854.5, -1557.66], [2846.3, -1556.74], [2846.87, -1551.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2817.61, -1476.48], [2828.73, -1479.87], [2826.12, -1488.36], [2822.59, -1487.28], [2821.3, -1491.46], [2813.72, -1489.15], [2817.61, -1476.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2770.17, -1483.01], [2762.02, -1479.77], [2767.3, -1466.56], [2768.3, -1466.93], [2770.74, -1460.85], [2777.89, -1463.73], [2770.17, -1483.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2780.17, -1558.81], [2777.37, -1565.75], [2769.86, -1562.68], [2772.65, -1555.73], [2780.17, -1558.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2674.84, -1533.7], [2674.24, -1537.5], [2671.37, -1537.07], [2670.74, -1541.06], [2659.74, -1539.31], [2660.98, -1531.51], [2674.84, -1533.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2800.17, -1239.2], [2795.12, -1243.66], [2790.17, -1238.15], [2795.22, -1233.69], [2800.17, -1239.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2821.47, -1572.65], [2831.31, -1576.48], [2828.38, -1583.98], [2818.54, -1580.14], [2821.47, -1572.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2652.16, -1517.91], [2650.23, -1522.47], [2642.83, -1519.33], [2644.76, -1514.77], [2652.16, -1517.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2705.45, -1467.28], [2708.18, -1468.1], [2708.38, -1467.41], [2717.4, -1470.22], [2715.14, -1477.69], [2706.14, -1474.88], [2706.24, -1474.52], [2703.52, -1473.69], [2705.45, -1467.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2621.49, -1574.59], [2620.03, -1579.21], [2612.58, -1576.87], [2614.03, -1572.25], [2621.49, -1574.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2704.28, -1392.35], [2702.96, -1396.38], [2696.74, -1394.41], [2698.06, -1390.4], [2704.28, -1392.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2782.09, -1428.64], [2785.84, -1416.66], [2787.76, -1417.27], [2791.62, -1404.95], [2807.57, -1409.9], [2803.66, -1422.38], [2796.12, -1420.07], [2792.43, -1431.88], [2782.09, -1428.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[2814.02, -1384.75], [2810.19, -1395.16], [2801.09, -1391.76], [2804.92, -1381.34], [2814.02, -1384.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2823.61, -1221.7], [2816.87, -1227.99], [2810.21, -1220.93], [2816.96, -1214.64], [2823.61, -1221.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2835.53, -1350.09], [2843.65, -1358.74], [2835.12, -1366.74], [2827.01, -1358.08], [2835.53, -1350.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2794.18, -1528.08], [2803.35, -1531.71], [2798.4, -1544.24], [2789.47, -1540.71], [2790.25, -1538.67], [2784.7, -1536.47], [2786.76, -1531.27], [2792.09, -1533.38], [2794.18, -1528.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2740.52, -1529.39], [2741.46, -1524.69], [2741.06, -1524.6], [2742.69, -1516.58], [2751.8, -1518.34], [2751.05, -1522.22], [2754.47, -1522.91], [2753.5, -1527.76], [2756.52, -1528.37], [2755.71, -1532.42], [2740.52, -1529.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2755.78, -1325.2], [2750.21, -1322.72], [2750.8, -1321.43], [2747.12, -1319.78], [2749.71, -1313.92], [2748.47, -1313.38], [2751.41, -1306.77], [2748.01, -1305.27], [2750.25, -1300.21], [2754.39, -1302.05], [2755.26, -1300.07], [2761.95, -1303.04], [2762.42, -1301.97], [2773.04, -1306.68], [2769.59, -1314.48], [2762.05, -1311.13], [2755.78, -1325.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[2825.96, -1431.19], [2823.51, -1439.23], [2821.28, -1438.55], [2820.97, -1439.57], [2817.42, -1438.48], [2817.73, -1437.46], [2813.4, -1436.15], [2817.63, -1422.26], [2822.36, -1423.7], [2820.57, -1429.54], [2825.96, -1431.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2786.16, -1548.22], [2794.32, -1551.71], [2788.98, -1564.17], [2780.81, -1560.67], [2786.16, -1548.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2845.32, -1539.3], [2837.12, -1536.5], [2841.14, -1524.73], [2842.29, -1525.12], [2843.04, -1522.93], [2850.1, -1525.33], [2845.32, -1539.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2792.58, -1519.49], [2790.82, -1524.48], [2784.24, -1522.13], [2786.01, -1517.16], [2792.58, -1519.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2856.39, -1498.11], [2854.98, -1503.11], [2849.41, -1501.51], [2850.82, -1496.51], [2856.39, -1498.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2834.05, -1407.95], [2832.85, -1414.68], [2826.38, -1413.47], [2827.59, -1406.75], [2834.05, -1407.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2788.04, -1540.19], [2787.1, -1546.57], [2779.82, -1545.53], [2780.76, -1539.15], [2788.04, -1540.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2842.25, -1215.41], [2859.8, -1226.22], [2855.77, -1232.76], [2848.52, -1228.31], [2848.17, -1228.87], [2852.09, -1231.28], [2848.81, -1236.6], [2844.96, -1234.23], [2843.99, -1235.79], [2852.75, -1241.18], [2853.85, -1239.4], [2864.31, -1245.84], [2859.68, -1253.36], [2850.06, -1247.42], [2849.81, -1247.81], [2828.28, -1234.56], [2828.53, -1234.17], [2832.09, -1228.38], [2833.48, -1229.23], [2834.8, -1227.07], [2833.93, -1223.68], [2836.94, -1218.79], [2840.69, -1217.83], [2840.74, -1217.86], [2842.25, -1215.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[2655.65, -1558.39], [2677.72, -1560.74], [2679.07, -1560.89], [2678.49, -1566.0], [2677.14, -1565.84], [2676.75, -1569.34], [2657.97, -1567.37], [2657.75, -1568.83], [2651.81, -1568.15], [2652.08, -1565.75], [2649.88, -1565.5], [2650.72, -1558.25], [2655.58, -1558.81], [2655.65, -1558.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2734.3, -1450.61], [2731.99, -1457.49], [2726.41, -1455.61], [2725.1, -1455.17], [2699.81, -1446.67], [2704.44, -1432.88], [2718.0, -1437.42], [2724.16, -1439.5], [2722.19, -1445.38], [2727.76, -1447.25], [2729.07, -1447.69], [2728.72, -1448.73], [2734.3, -1450.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.324, "pop": 162, "jobs": 0}}, {"shape": {"outer": [[2684.13, -1549.86], [2683.23, -1557.36], [2675.22, -1556.4], [2676.13, -1548.89], [2684.13, -1549.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2714.17, -1332.07], [2720.78, -1334.28], [2719.37, -1338.5], [2712.76, -1336.29], [2714.17, -1332.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2786.07, -1467.56], [2794.47, -1470.4], [2791.64, -1478.7], [2783.23, -1475.86], [2786.07, -1467.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2853.34, -1209.08], [2868.51, -1204.57], [2871.02, -1194.27], [2881.44, -1196.81], [2880.39, -1201.12], [2881.62, -1201.42], [2878.96, -1212.35], [2877.53, -1212.0], [2875.85, -1218.92], [2865.02, -1216.29], [2856.26, -1218.89], [2853.34, -1209.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[2699.63, -1466.47], [2698.53, -1470.18], [2701.87, -1471.33], [2700.08, -1477.4], [2684.87, -1472.59], [2687.96, -1462.79], [2699.63, -1466.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2743.32, -1324.65], [2762.41, -1332.7], [2762.87, -1331.59], [2770.38, -1334.76], [2766.93, -1342.9], [2760.45, -1340.17], [2760.26, -1340.68], [2753.12, -1337.66], [2748.45, -1348.72], [2735.48, -1343.25], [2743.32, -1324.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.328, "pop": 164, "jobs": 0}}, {"shape": {"outer": [[2742.94, -1390.87], [2752.57, -1394.45], [2749.84, -1401.82], [2740.21, -1398.24], [2742.94, -1390.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2845.51, -1553.86], [2832.19, -1549.43], [2835.29, -1540.09], [2848.62, -1544.52], [2845.51, -1553.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2709.93, -1492.5], [2703.62, -1490.84], [2703.53, -1491.21], [2701.5, -1490.69], [2701.0, -1492.73], [2681.89, -1487.83], [2683.19, -1482.59], [2684.34, -1482.9], [2685.62, -1477.94], [2711.92, -1484.72], [2709.93, -1492.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[2720.35, -1344.06], [2717.52, -1352.77], [2709.01, -1350.0], [2711.84, -1341.29], [2720.35, -1344.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2843.55, -1391.84], [2842.2, -1404.96], [2831.53, -1403.8], [2832.2, -1397.62], [2833.9, -1397.81], [2834.06, -1396.29], [2832.1, -1396.09], [2832.72, -1390.02], [2840.02, -1390.77], [2839.94, -1391.45], [2843.55, -1391.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2772.12, -1278.88], [2783.93, -1285.66], [2775.6, -1300.15], [2763.81, -1293.37], [2772.12, -1278.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[2844.66, -1434.82], [2841.87, -1443.79], [2831.59, -1440.58], [2834.39, -1431.6], [2844.66, -1434.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2699.1, -1450.7], [2704.73, -1452.46], [2704.99, -1451.64], [2720.55, -1456.5], [2720.29, -1457.33], [2718.31, -1463.74], [2710.98, -1461.46], [2710.13, -1464.19], [2708.31, -1463.59], [2707.56, -1465.97], [2701.87, -1464.19], [2702.6, -1461.91], [2700.25, -1461.18], [2700.95, -1458.92], [2696.95, -1457.66], [2697.49, -1455.9], [2697.08, -1455.09], [2697.8, -1452.57], [2698.68, -1452.04], [2699.1, -1450.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2629.01, -1561.41], [2627.25, -1565.78], [2619.89, -1562.82], [2621.66, -1558.45], [2629.01, -1561.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2660.29, -1499.59], [2658.11, -1505.35], [2650.55, -1502.51], [2652.72, -1496.75], [2660.29, -1499.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2875.62, -1161.44], [2871.33, -1166.26], [2865.27, -1160.89], [2869.57, -1156.07], [2875.62, -1161.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2688.86, -1438.24], [2687.32, -1442.51], [2679.43, -1439.69], [2680.97, -1435.42], [2688.86, -1438.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2661.92, -1571.59], [2661.94, -1581.42], [2638.18, -1581.23], [2638.16, -1571.4], [2661.92, -1571.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2741.69, -1541.75], [2752.54, -1545.34], [2750.16, -1552.49], [2747.39, -1551.49], [2744.96, -1557.4], [2742.19, -1557.3], [2741.88, -1564.12], [2735.09, -1563.89], [2734.98, -1566.57], [2728.35, -1566.25], [2728.58, -1562.84], [2727.71, -1562.81], [2727.84, -1559.27], [2727.18, -1559.25], [2727.28, -1555.73], [2728.68, -1555.82], [2728.79, -1551.96], [2740.82, -1552.42], [2741.77, -1549.97], [2738.86, -1548.89], [2741.69, -1541.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[2811.31, -1489.94], [2819.12, -1492.34], [2816.61, -1500.89], [2808.79, -1498.49], [2811.31, -1489.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2736.45, -1399.09], [2729.7, -1396.64], [2729.22, -1398.0], [2722.09, -1395.44], [2722.63, -1393.88], [2714.11, -1390.76], [2716.81, -1383.35], [2739.2, -1391.5], [2736.45, -1399.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2778.15, -1567.28], [2786.2, -1570.78], [2781.04, -1582.64], [2773.89, -1579.51], [2772.21, -1583.29], [2765.89, -1580.56], [2767.79, -1576.26], [2769.32, -1576.92], [2771.88, -1570.97], [2775.78, -1572.67], [2778.15, -1567.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2707.72, -1373.07], [2700.33, -1370.95], [2701.85, -1365.62], [2709.24, -1367.74], [2707.72, -1373.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2813.02, -1395.04], [2819.6, -1397.08], [2818.26, -1401.56], [2811.68, -1399.52], [2813.02, -1395.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2723.77, -1299.48], [2732.44, -1303.43], [2728.34, -1312.41], [2719.67, -1308.44], [2723.77, -1299.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2675.85, -1458.93], [2674.34, -1462.65], [2667.26, -1459.76], [2668.78, -1456.04], [2675.85, -1458.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2835.87, -1570.58], [2838.54, -1571.35], [2837.8, -1573.99], [2835.13, -1573.22], [2835.87, -1570.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2685.91, -1528.47], [2665.25, -1524.4], [2666.41, -1518.46], [2670.66, -1519.29], [2670.8, -1518.64], [2687.21, -1521.86], [2685.91, -1528.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2765.26, -1515.29], [2753.76, -1511.7], [2755.39, -1506.64], [2754.16, -1506.27], [2754.72, -1504.33], [2751.92, -1503.37], [2754.1, -1496.27], [2767.72, -1500.6], [2765.42, -1508.06], [2764.87, -1507.88], [2764.34, -1509.59], [2766.8, -1510.35], [2765.26, -1515.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2814.73, -1379.31], [2816.2, -1375.28], [2815.33, -1374.96], [2816.13, -1372.75], [2817.06, -1373.09], [2819.73, -1365.77], [2827.46, -1368.61], [2824.61, -1376.43], [2823.04, -1375.86], [2820.87, -1381.56], [2814.73, -1379.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2831.58, -1569.42], [2823.61, -1566.06], [2827.68, -1556.39], [2835.66, -1559.74], [2831.58, -1569.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2856.53, -1489.06], [2860.86, -1490.35], [2861.07, -1489.61], [2868.35, -1491.77], [2868.13, -1492.5], [2865.92, -1499.96], [2852.59, -1495.98], [2853.98, -1491.3], [2855.7, -1491.84], [2856.53, -1489.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2746.87, -1584.61], [2749.8, -1586.77], [2747.9, -1589.4], [2744.96, -1587.24], [2746.87, -1584.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2670.69, -1472.75], [2669.73, -1476.59], [2662.8, -1474.88], [2663.75, -1471.02], [2670.69, -1472.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2707.33, -1378.73], [2704.52, -1387.5], [2695.75, -1384.67], [2698.57, -1375.92], [2707.33, -1378.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2733.31, -1404.45], [2731.0, -1411.3], [2728.11, -1410.32], [2727.59, -1411.94], [2728.43, -1412.72], [2728.83, -1414.36], [2728.27, -1415.92], [2727.21, -1416.82], [2726.1, -1417.25], [2724.98, -1417.32], [2719.99, -1415.64], [2720.5, -1414.1], [2717.75, -1413.16], [2717.28, -1414.56], [2711.8, -1412.71], [2713.36, -1408.07], [2712.68, -1406.61], [2713.3, -1404.81], [2714.75, -1404.23], [2716.58, -1398.81], [2733.31, -1404.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[2646.22, -1613.07], [2643.46, -1621.61], [2634.01, -1618.17], [2631.9, -1624.53], [2630.01, -1623.92], [2628.1, -1630.43], [2623.06, -1629.1], [2614.21, -1633.71], [2610.84, -1627.0], [2617.6, -1623.85], [2618.12, -1625.01], [2618.53, -1623.4], [2613.81, -1621.66], [2615.88, -1616.05], [2620.56, -1617.79], [2622.38, -1612.74], [2623.78, -1613.22], [2624.2, -1612.01], [2621.75, -1608.11], [2624.35, -1600.91], [2626.34, -1599.21], [2627.1, -1599.49], [2628.32, -1595.97], [2637.87, -1599.49], [2636.02, -1605.04], [2637.72, -1605.67], [2636.47, -1609.33], [2642.8, -1611.4], [2642.64, -1611.88], [2646.22, -1613.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.468, "pop": 234, "jobs": 0}}, {"shape": {"outer": [[2774.55, -1757.66], [2774.04, -1769.14], [2765.12, -1768.71], [2765.14, -1768.29], [2759.31, -1768.02], [2759.79, -1756.95], [2774.55, -1757.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2626.36, -2225.82], [2630.44, -2228.6], [2626.44, -2234.44], [2622.36, -2231.66], [2626.36, -2225.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2744.47, -2081.52], [2750.49, -2086.77], [2744.19, -2093.99], [2738.17, -2088.73], [2744.47, -2081.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2710.71, -1681.3], [2710.49, -1690.5], [2697.87, -1690.19], [2697.97, -1686.18], [2700.15, -1686.23], [2700.18, -1684.94], [2702.83, -1685.0], [2702.93, -1681.1], [2710.71, -1681.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2668.9, -1664.66], [2668.84, -1668.03], [2674.38, -1668.13], [2674.25, -1675.1], [2668.7, -1675.0], [2668.68, -1675.81], [2652.74, -1675.51], [2652.95, -1664.36], [2668.9, -1664.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2613.54, -1820.53], [2613.53, -1830.84], [2599.65, -1830.8], [2599.66, -1820.49], [2613.54, -1820.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2564.11, -1703.18], [2564.2, -1704.45], [2565.95, -1704.34], [2566.2, -1707.7], [2555.66, -1708.43], [2555.73, -1709.47], [2551.98, -1709.73], [2551.91, -1708.69], [2551.57, -1704.06], [2564.11, -1703.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2606.66, -1699.38], [2606.86, -1703.94], [2600.2, -1704.22], [2600.0, -1699.66], [2606.66, -1699.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2547.75, -1856.59], [2547.73, -1857.69], [2550.27, -1857.72], [2550.24, -1859.95], [2553.22, -1860.02], [2553.18, -1863.1], [2555.95, -1863.1], [2555.89, -1867.24], [2555.37, -1867.22], [2555.32, -1871.16], [2554.3, -1871.15], [2554.25, -1874.74], [2529.93, -1874.46], [2530.08, -1869.32], [2531.73, -1869.27], [2531.78, -1862.68], [2534.36, -1862.72], [2534.42, -1856.39], [2547.75, -1856.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.314, "pop": 157, "jobs": 0}}, {"shape": {"outer": [[2681.71, -1764.33], [2681.61, -1768.78], [2685.59, -1768.91], [2685.5, -1773.22], [2681.3, -1773.08], [2681.28, -1773.85], [2666.56, -1773.5], [2666.66, -1768.85], [2663.74, -1768.78], [2663.85, -1763.92], [2681.71, -1764.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2770.77, -1591.46], [2762.85, -1602.55], [2758.94, -1599.76], [2754.51, -1605.99], [2747.91, -1601.27], [2755.8, -1590.2], [2757.9, -1591.68], [2762.35, -1585.44], [2770.77, -1591.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2866.23, -1593.66], [2863.97, -1600.9], [2863.13, -1600.64], [2861.09, -1607.18], [2851.92, -1604.31], [2856.23, -1590.54], [2866.23, -1593.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2633.68, -1792.45], [2633.63, -1801.38], [2626.07, -1801.33], [2626.06, -1802.74], [2606.55, -1802.61], [2606.61, -1793.38], [2624.89, -1793.52], [2624.89, -1792.4], [2633.68, -1792.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2787.95, -1841.26], [2790.31, -1841.33], [2790.24, -1843.45], [2787.88, -1843.37], [2787.95, -1841.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2721.93, -1653.37], [2721.73, -1661.69], [2712.54, -1661.47], [2712.67, -1656.38], [2713.84, -1656.41], [2713.91, -1653.18], [2721.93, -1653.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2704.63, -2031.03], [2717.4, -2044.27], [2711.67, -2049.63], [2708.27, -2046.09], [2707.11, -2047.2], [2697.72, -2037.52], [2704.63, -2031.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2503.98, -1875.48], [2513.74, -1876.97], [2512.22, -1886.9], [2502.46, -1885.4], [2503.98, -1875.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2704.0, -1812.21], [2703.93, -1818.75], [2695.9, -1818.66], [2695.97, -1812.11], [2704.0, -1812.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2706.39, -2150.96], [2707.98, -2148.08], [2705.99, -2146.98], [2709.91, -2139.89], [2725.69, -2148.61], [2724.96, -2149.9], [2727.22, -2151.15], [2723.18, -2158.46], [2720.86, -2157.18], [2720.1, -2158.54], [2706.39, -2150.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2623.81, -1815.67], [2623.52, -1818.31], [2620.89, -1818.03], [2621.17, -1815.39], [2623.81, -1815.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2732.44, -1857.17], [2732.52, -1860.86], [2733.25, -1860.83], [2733.37, -1868.7], [2733.5, -1868.69], [2733.64, -1868.7], [2733.78, -1878.61], [2725.64, -1878.76], [2725.66, -1879.86], [2720.7, -1879.96], [2720.67, -1878.65], [2714.73, -1878.76], [2714.47, -1861.76], [2722.55, -1861.62], [2722.66, -1868.49], [2726.58, -1868.42], [2726.45, -1860.94], [2726.9, -1860.94], [2726.83, -1857.27], [2732.44, -1857.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[2735.67, -1711.41], [2742.12, -1714.67], [2738.82, -1721.16], [2732.38, -1717.91], [2735.67, -1711.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2826.73, -1719.59], [2818.19, -1719.32], [2818.63, -1705.28], [2824.06, -1705.46], [2824.09, -1704.84], [2834.34, -1705.16], [2833.99, -1716.44], [2826.83, -1716.2], [2826.73, -1719.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2612.67, -2033.5], [2614.43, -2038.92], [2610.69, -2040.14], [2612.91, -2047.16], [2603.81, -2050.1], [2599.83, -2037.65], [2612.67, -2033.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2811.95, -2266.78], [2812.05, -2276.6], [2807.56, -2276.65], [2807.55, -2275.76], [2798.77, -2275.86], [2798.68, -2266.92], [2811.95, -2266.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2821.95, -2368.82], [2826.16, -2376.36], [2805.08, -2388.13], [2800.41, -2379.76], [2807.11, -2376.02], [2807.19, -2376.18], [2815.98, -2371.27], [2816.36, -2371.94], [2821.95, -2368.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[2654.83, -1887.13], [2638.04, -1882.9], [2638.17, -1882.57], [2634.86, -1881.71], [2636.66, -1874.53], [2640.1, -1875.47], [2642.21, -1866.95], [2651.81, -1869.33], [2649.8, -1877.42], [2656.88, -1879.18], [2654.83, -1887.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[2636.31, -2183.94], [2630.7, -2193.34], [2629.77, -2192.78], [2626.41, -2198.42], [2625.83, -2198.07], [2623.23, -2202.44], [2612.13, -2195.84], [2614.84, -2191.32], [2614.37, -2191.06], [2618.9, -2183.45], [2619.42, -2183.73], [2622.01, -2179.38], [2627.24, -2182.5], [2629.0, -2179.59], [2636.31, -2183.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[2599.4, -1852.46], [2605.2, -1854.73], [2604.19, -1857.36], [2606.72, -1858.32], [2602.69, -1868.73], [2593.54, -1865.19], [2597.49, -1855.01], [2598.31, -1855.32], [2599.4, -1852.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2773.35, -1982.14], [2770.14, -1979.1], [2774.84, -1974.05], [2785.07, -1983.65], [2774.9, -1994.61], [2767.87, -1988.05], [2773.35, -1982.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2730.09, -2099.93], [2741.29, -2105.7], [2730.73, -2126.19], [2722.29, -2121.84], [2728.71, -2109.4], [2725.93, -2107.97], [2730.09, -2099.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2739.9, -1837.76], [2742.61, -1837.69], [2742.67, -1840.26], [2739.97, -1840.33], [2739.9, -1837.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2640.38, -2188.87], [2647.91, -2192.48], [2643.35, -2202.12], [2645.13, -2202.96], [2641.32, -2211.0], [2639.16, -2209.97], [2637.46, -2213.49], [2629.44, -2209.68], [2635.28, -2197.47], [2636.14, -2197.87], [2640.38, -2188.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[2693.23, -1625.44], [2693.22, -1626.65], [2698.44, -1626.69], [2698.41, -1632.95], [2694.65, -1632.93], [2694.64, -1633.49], [2683.35, -1633.42], [2683.37, -1630.6], [2676.76, -1630.56], [2676.79, -1625.33], [2693.23, -1625.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2672.98, -2053.26], [2674.76, -2054.97], [2673.38, -2056.42], [2671.6, -2054.71], [2672.98, -2053.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2809.16, -1826.02], [2811.49, -1826.07], [2811.43, -1828.57], [2809.1, -1828.52], [2809.16, -1826.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2724.14, -1930.88], [2735.33, -1930.28], [2735.13, -1927.42], [2745.28, -1926.89], [2746.16, -1939.99], [2730.76, -1940.98], [2730.66, -1939.7], [2724.74, -1940.07], [2724.14, -1930.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[2733.64, -2121.63], [2738.59, -2124.0], [2736.37, -2128.66], [2731.41, -2126.3], [2733.64, -2121.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2774.91, -1703.69], [2780.32, -1703.86], [2780.13, -1710.3], [2782.26, -1710.36], [2782.44, -1704.0], [2792.35, -1704.29], [2791.91, -1718.75], [2782.07, -1718.46], [2782.19, -1715.09], [2774.58, -1714.86], [2774.91, -1703.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2555.82, -2033.9], [2558.44, -2042.55], [2549.18, -2045.12], [2546.55, -2036.47], [2555.82, -2033.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2616.17, -1807.06], [2615.71, -1812.83], [2612.3, -1812.55], [2612.01, -1815.82], [2603.71, -1815.15], [2604.0, -1812.07], [2602.9, -1811.98], [2603.06, -1809.96], [2604.13, -1810.04], [2604.44, -1806.1], [2616.17, -1807.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2841.84, -2260.44], [2841.89, -2263.72], [2842.45, -2263.71], [2842.62, -2274.66], [2837.8, -2274.74], [2837.77, -2272.68], [2830.33, -2272.79], [2830.19, -2264.12], [2834.46, -2264.06], [2834.41, -2260.55], [2841.84, -2260.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2620.51, -1645.56], [2619.38, -1648.18], [2620.93, -1649.12], [2621.8, -1647.72], [2621.88, -1649.2], [2627.71, -1649.4], [2627.68, -1649.84], [2628.09, -1649.85], [2628.1, -1651.01], [2628.02, -1652.15], [2627.83, -1653.28], [2627.56, -1654.4], [2627.19, -1655.49], [2626.72, -1656.54], [2626.17, -1657.55], [2625.54, -1658.51], [2624.82, -1659.4], [2624.84, -1658.67], [2618.47, -1658.45], [2618.46, -1658.92], [2614.97, -1658.81], [2614.96, -1659.09], [2611.15, -1658.96], [2611.16, -1658.68], [2611.17, -1658.22], [2611.18, -1657.71], [2609.57, -1657.66], [2609.55, -1658.46], [2606.93, -1658.4], [2606.92, -1658.93], [2601.81, -1658.82], [2601.83, -1658.29], [2601.87, -1656.03], [2601.26, -1655.74], [2600.69, -1655.39], [2600.14, -1654.98], [2599.63, -1654.54], [2599.17, -1654.06], [2600.39, -1654.09], [2600.47, -1652.93], [2600.66, -1651.76], [2600.95, -1650.64], [2601.35, -1649.54], [2601.86, -1648.49], [2602.46, -1647.48], [2603.72, -1648.16], [2604.04, -1647.62], [2605.0, -1648.16], [2608.29, -1644.44], [2610.63, -1645.6], [2613.27, -1642.36], [2620.51, -1645.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[2843.46, -1804.94], [2856.25, -1805.44], [2855.84, -1815.84], [2843.28, -1815.36], [2843.11, -1819.45], [2837.14, -1819.21], [2837.56, -1808.38], [2843.31, -1808.61], [2843.46, -1804.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2842.42, -2310.53], [2842.58, -2316.31], [2844.13, -2316.26], [2844.3, -2322.56], [2832.06, -2322.91], [2831.73, -2310.86], [2842.42, -2310.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2814.42, -2180.31], [2815.14, -2192.47], [2805.45, -2193.05], [2804.74, -2180.9], [2814.42, -2180.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2756.73, -2309.49], [2744.11, -2320.57], [2738.42, -2313.97], [2739.4, -2313.12], [2737.6, -2311.06], [2743.06, -2306.27], [2744.48, -2307.91], [2750.66, -2302.47], [2756.73, -2309.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2855.39, -1656.84], [2854.98, -1668.21], [2846.18, -1667.89], [2846.21, -1667.24], [2839.96, -1667.01], [2840.37, -1656.27], [2842.38, -1656.37], [2842.5, -1653.5], [2847.78, -1653.65], [2847.65, -1656.54], [2855.39, -1656.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2680.29, -1964.6], [2694.03, -1979.11], [2687.21, -1985.57], [2683.36, -1981.5], [2682.43, -1982.37], [2677.22, -1976.88], [2678.78, -1975.36], [2674.11, -1970.42], [2680.29, -1964.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2809.38, -1656.99], [2808.95, -1667.35], [2801.62, -1667.05], [2801.65, -1666.42], [2794.7, -1666.14], [2795.11, -1656.41], [2809.38, -1656.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2697.38, -2163.91], [2703.66, -2153.32], [2718.62, -2162.18], [2712.85, -2171.91], [2705.69, -2167.67], [2705.18, -2168.54], [2697.38, -2163.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2729.74, -2017.33], [2723.02, -2024.53], [2726.09, -2027.47], [2720.54, -2033.48], [2714.32, -2027.62], [2719.46, -2022.1], [2714.98, -2017.93], [2722.1, -2010.24], [2729.74, -2017.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2600.56, -2150.37], [2609.26, -2149.64], [2609.94, -2157.65], [2601.24, -2158.38], [2600.56, -2150.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2605.66, -2032.77], [2596.69, -2035.35], [2594.78, -2028.59], [2595.08, -2028.48], [2592.85, -2020.62], [2604.71, -2017.24], [2605.94, -2021.56], [2606.79, -2021.32], [2608.44, -2027.11], [2604.39, -2028.24], [2605.66, -2032.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2586.38, -2136.04], [2569.83, -2147.84], [2564.84, -2140.86], [2567.76, -2138.77], [2563.65, -2133.01], [2583.82, -2118.63], [2588.39, -2125.05], [2586.67, -2126.26], [2587.79, -2127.84], [2584.52, -2130.17], [2587.07, -2133.74], [2585.53, -2134.85], [2586.38, -2136.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[2754.13, -1921.54], [2773.23, -1927.21], [2769.69, -1939.1], [2750.59, -1933.43], [2754.13, -1921.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2606.9, -2001.03], [2606.41, -2008.57], [2601.8, -2008.28], [2601.41, -2014.8], [2591.08, -2014.16], [2591.63, -2005.41], [2592.21, -2005.45], [2592.54, -2000.12], [2606.9, -2001.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2582.04, -1721.86], [2585.09, -1721.96], [2585.05, -1722.87], [2592.84, -1723.1], [2592.66, -1729.32], [2584.99, -1729.09], [2584.92, -1731.16], [2575.15, -1730.86], [2575.5, -1719.12], [2582.12, -1719.32], [2582.04, -1721.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2795.91, -1705.55], [2800.11, -1705.7], [2800.17, -1704.4], [2813.46, -1704.89], [2813.09, -1715.1], [2799.7, -1714.61], [2799.74, -1713.01], [2795.61, -1712.86], [2795.91, -1705.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2746.59, -1718.53], [2753.84, -1718.67], [2753.74, -1723.96], [2746.48, -1723.8], [2746.59, -1718.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2844.43, -1719.95], [2844.23, -1727.65], [2837.53, -1727.44], [2837.74, -1719.74], [2844.43, -1719.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2848.47, -1738.29], [2848.55, -1742.19], [2846.16, -1742.24], [2846.07, -1738.35], [2848.47, -1738.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2845.46, -1980.85], [2838.09, -1989.11], [2840.35, -1991.13], [2836.86, -1995.01], [2830.5, -1989.31], [2833.02, -1986.5], [2829.98, -1983.75], [2838.31, -1974.41], [2845.46, -1980.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2775.78, -2097.84], [2777.33, -2099.13], [2775.52, -2101.3], [2773.97, -2100.01], [2775.78, -2097.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2748.58, -1757.43], [2748.23, -1767.33], [2735.12, -1766.86], [2735.48, -1756.96], [2748.58, -1757.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2846.76, -1751.02], [2859.12, -1751.34], [2858.94, -1758.5], [2865.73, -1758.72], [2865.45, -1769.42], [2855.96, -1769.13], [2855.98, -1768.36], [2850.1, -1768.22], [2850.3, -1760.29], [2846.53, -1760.18], [2846.76, -1751.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[2499.44, -1954.46], [2498.42, -1960.96], [2490.11, -1959.64], [2491.14, -1953.15], [2499.44, -1954.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2744.82, -1606.62], [2752.16, -1611.5], [2749.44, -1615.6], [2751.96, -1617.25], [2743.55, -1629.96], [2735.4, -1624.57], [2740.77, -1616.46], [2739.05, -1615.32], [2744.82, -1606.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2728.52, -1687.74], [2728.37, -1691.49], [2721.71, -1691.23], [2721.85, -1687.49], [2728.52, -1687.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2610.34, -1673.01], [2596.55, -1672.53], [2596.81, -1665.49], [2596.94, -1665.51], [2597.01, -1662.99], [2602.12, -1663.15], [2602.04, -1665.63], [2610.59, -1665.94], [2610.34, -1673.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2764.32, -2192.05], [2763.3, -2199.34], [2764.62, -2199.64], [2764.84, -2202.54], [2770.14, -2203.96], [2770.4, -2212.61], [2765.2, -2212.76], [2765.28, -2215.63], [2754.49, -2215.92], [2754.47, -2209.84], [2758.72, -2209.78], [2758.55, -2203.94], [2755.61, -2203.53], [2756.81, -2194.55], [2757.32, -2194.63], [2757.83, -2191.17], [2764.32, -2192.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[2757.74, -2068.01], [2768.83, -2078.08], [2760.29, -2087.55], [2749.2, -2077.47], [2757.74, -2068.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2737.46, -1664.97], [2737.5, -1669.47], [2731.23, -1669.49], [2731.19, -1664.98], [2737.46, -1664.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2625.75, -2061.45], [2608.31, -2070.23], [2601.64, -2056.7], [2609.46, -2052.74], [2611.24, -2056.29], [2613.27, -2055.27], [2614.08, -2056.88], [2621.66, -2053.08], [2625.75, -2061.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[2808.88, -1731.17], [2812.47, -1731.25], [2812.42, -1733.77], [2808.83, -1733.69], [2808.88, -1731.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2547.23, -1878.07], [2547.27, -1882.17], [2552.35, -1882.53], [2550.64, -1890.19], [2538.27, -1889.71], [2538.19, -1891.06], [2530.85, -1890.84], [2530.89, -1888.14], [2524.32, -1887.4], [2525.81, -1879.78], [2529.69, -1880.25], [2531.16, -1877.35], [2535.44, -1878.3], [2535.97, -1877.32], [2547.23, -1878.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[2669.86, -2120.26], [2676.72, -2124.89], [2672.25, -2131.6], [2665.39, -2126.97], [2669.86, -2120.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2721.47, -1704.95], [2721.38, -1707.32], [2717.59, -1707.19], [2717.67, -1704.82], [2721.47, -1704.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2809.0, -1883.06], [2806.51, -1886.98], [2807.84, -1887.83], [2802.51, -1896.28], [2786.09, -1885.85], [2791.82, -1876.89], [2801.56, -1883.09], [2803.66, -1879.67], [2809.0, -1883.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[2740.21, -1695.82], [2742.77, -1697.12], [2743.35, -1695.98], [2750.36, -1699.55], [2744.0, -1712.15], [2734.41, -1707.28], [2740.21, -1695.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2829.34, -2385.49], [2835.97, -2392.08], [2823.27, -2404.85], [2811.02, -2392.67], [2817.76, -2385.89], [2823.39, -2391.48], [2829.34, -2385.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[2649.84, -1583.54], [2649.78, -1593.82], [2630.09, -1593.71], [2630.16, -1583.43], [2649.84, -1583.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2575.98, -2099.58], [2549.4, -2112.11], [2547.04, -2107.09], [2550.31, -2105.55], [2547.75, -2100.11], [2555.17, -2096.62], [2556.27, -2098.89], [2572.09, -2091.28], [2575.98, -2099.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[2672.25, -1813.03], [2656.43, -1812.41], [2656.57, -1808.79], [2649.11, -1808.49], [2649.52, -1798.22], [2672.81, -1799.15], [2672.25, -1813.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[2517.45, -1841.14], [2515.77, -1846.63], [2509.23, -1844.79], [2510.92, -1839.3], [2517.45, -1841.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2702.22, -2232.82], [2705.02, -2234.1], [2703.49, -2237.58], [2700.69, -2236.3], [2702.22, -2232.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2625.12, -2037.39], [2617.16, -2040.23], [2614.49, -2032.6], [2622.45, -2029.77], [2625.12, -2037.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2863.55, -1630.49], [2852.84, -1631.63], [2852.72, -1631.1], [2845.24, -1631.87], [2844.49, -1624.04], [2852.7, -1623.2], [2851.94, -1616.18], [2862.43, -1615.06], [2863.39, -1624.06], [2862.9, -1624.11], [2863.55, -1630.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[2634.91, -2097.21], [2626.0, -2103.44], [2621.13, -2096.23], [2621.81, -2095.81], [2618.13, -2090.26], [2626.72, -2084.5], [2627.02, -2084.95], [2629.88, -2083.04], [2632.34, -2086.69], [2629.32, -2088.72], [2634.91, -2097.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2566.43, -1826.09], [2566.25, -1833.88], [2558.18, -1833.68], [2558.37, -1825.91], [2566.43, -1826.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2631.81, -2165.13], [2636.86, -2168.77], [2632.72, -2174.52], [2627.68, -2170.87], [2631.81, -2165.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2594.75, -1947.08], [2595.69, -1959.3], [2591.71, -1959.62], [2592.29, -1966.71], [2583.14, -1967.44], [2582.21, -1955.39], [2580.02, -1955.56], [2579.8, -1952.78], [2581.94, -1952.6], [2581.59, -1948.14], [2594.75, -1947.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2619.07, -2153.17], [2624.74, -2157.68], [2619.71, -2163.75], [2614.19, -2159.3], [2619.07, -2153.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2804.14, -2195.0], [2804.78, -2205.58], [2797.5, -2206.01], [2796.88, -2195.44], [2804.14, -2195.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2582.09, -2149.05], [2582.45, -2151.73], [2583.85, -2151.47], [2589.81, -2153.49], [2589.74, -2153.77], [2600.24, -2157.37], [2596.6, -2167.92], [2585.79, -2164.22], [2586.18, -2163.45], [2584.04, -2162.71], [2577.37, -2163.38], [2575.55, -2149.86], [2582.09, -2149.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[2799.31, -2018.83], [2812.75, -2030.37], [2804.89, -2039.53], [2792.69, -2029.06], [2795.43, -2025.87], [2794.19, -2024.8], [2799.31, -2018.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2716.88, -2126.68], [2730.62, -2134.08], [2724.99, -2144.67], [2711.24, -2137.27], [2716.88, -2126.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2775.36, -2045.7], [2782.11, -2051.49], [2772.32, -2062.86], [2764.84, -2056.43], [2770.62, -2049.68], [2771.36, -2050.31], [2775.36, -2045.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2773.41, -2248.54], [2780.57, -2247.8], [2781.05, -2252.09], [2773.89, -2252.83], [2773.41, -2248.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2709.0, -1695.87], [2708.66, -1705.44], [2702.7, -1705.22], [2702.71, -1704.67], [2697.31, -1704.48], [2697.42, -1701.36], [2692.89, -1701.2], [2693.11, -1695.29], [2709.0, -1695.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2623.29, -1762.49], [2623.06, -1771.56], [2607.77, -1771.16], [2608.0, -1762.09], [2623.29, -1762.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2684.31, -1634.56], [2684.15, -1642.71], [2678.65, -1642.32], [2678.46, -1646.24], [2662.61, -1645.71], [2662.99, -1633.39], [2684.31, -1634.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[2741.58, -2093.63], [2746.27, -2097.64], [2743.35, -2101.03], [2738.67, -2097.04], [2741.58, -2093.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2661.39, -1862.18], [2651.59, -1860.41], [2655.05, -1841.75], [2664.71, -1843.5], [2661.39, -1862.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2559.42, -2089.54], [2547.45, -2093.79], [2543.35, -2090.62], [2544.37, -2086.08], [2547.21, -2085.05], [2546.61, -2083.23], [2547.6, -2082.9], [2545.67, -2077.58], [2551.98, -2075.33], [2551.86, -2074.97], [2564.55, -2070.46], [2564.68, -2070.82], [2567.46, -2078.65], [2556.89, -2082.41], [2559.42, -2089.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[2686.32, -1746.37], [2686.06, -1758.6], [2672.52, -1758.32], [2672.77, -1746.09], [2686.32, -1746.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2819.4, -1630.13], [2824.0, -1630.91], [2823.4, -1634.75], [2818.81, -1633.96], [2819.4, -1630.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2768.52, -1816.26], [2776.46, -1816.6], [2776.11, -1825.01], [2768.18, -1824.67], [2768.52, -1816.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2537.73, -1937.86], [2536.96, -1944.11], [2529.16, -1943.18], [2529.92, -1936.93], [2537.73, -1937.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2701.3, -1721.67], [2710.18, -1721.94], [2709.94, -1729.71], [2701.07, -1729.45], [2701.3, -1721.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2826.91, -2257.68], [2827.52, -2276.36], [2819.63, -2276.64], [2819.42, -2270.12], [2814.74, -2270.28], [2814.34, -2258.11], [2826.91, -2257.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2812.42, -2320.85], [2813.36, -2327.01], [2807.48, -2327.92], [2806.64, -2322.44], [2804.91, -2322.7], [2803.21, -2311.65], [2811.88, -2310.32], [2813.46, -2320.69], [2812.42, -2320.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2757.84, -1866.27], [2757.3, -1877.52], [2746.93, -1877.06], [2746.97, -1876.59], [2739.43, -1876.2], [2739.99, -1861.54], [2745.49, -1861.78], [2745.32, -1865.72], [2757.84, -1866.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2630.0, -1762.6], [2633.74, -1762.6], [2633.73, -1765.6], [2630.0, -1765.6], [2630.0, -1762.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2561.21, -1797.17], [2560.39, -1804.54], [2561.78, -1804.69], [2561.25, -1809.45], [2559.89, -1809.3], [2559.35, -1813.98], [2566.22, -1814.75], [2565.28, -1823.2], [2553.13, -1821.83], [2553.47, -1818.87], [2551.97, -1818.72], [2552.43, -1814.78], [2545.9, -1814.05], [2546.65, -1807.01], [2547.88, -1807.14], [2549.15, -1795.82], [2561.21, -1797.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.274, "pop": 137, "jobs": 0}}, {"shape": {"outer": [[2825.29, -1989.25], [2833.22, -1996.84], [2829.61, -2000.62], [2830.72, -2001.68], [2827.57, -2004.97], [2825.79, -2003.27], [2822.05, -2007.18], [2814.78, -2000.22], [2825.29, -1989.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2584.7, -1734.23], [2584.67, -1736.72], [2592.32, -1736.84], [2592.16, -1746.62], [2580.63, -1746.43], [2580.67, -1745.85], [2569.18, -1745.68], [2569.34, -1733.99], [2584.7, -1734.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[2815.93, -2309.56], [2827.0, -2309.35], [2827.51, -2328.07], [2816.45, -2328.27], [2815.93, -2309.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2590.08, -1841.25], [2590.05, -1846.06], [2583.71, -1846.01], [2583.74, -1841.2], [2590.08, -1841.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2632.26, -1835.71], [2631.76, -1838.02], [2628.76, -1837.37], [2629.26, -1835.06], [2632.26, -1835.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2659.24, -1660.43], [2659.56, -1651.33], [2679.03, -1651.98], [2678.72, -1659.21], [2672.46, -1658.99], [2672.4, -1660.9], [2659.24, -1660.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2502.9, -2011.36], [2495.36, -2011.94], [2494.7, -2003.21], [2502.24, -2002.63], [2502.9, -2011.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2788.06, -2030.77], [2800.22, -2041.59], [2792.63, -2050.11], [2780.47, -2039.29], [2788.06, -2030.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2713.14, -1694.16], [2721.27, -1694.5], [2720.98, -1701.48], [2712.85, -1701.13], [2713.14, -1694.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2754.43, -2196.59], [2749.71, -2213.56], [2749.65, -2213.54], [2747.84, -2221.39], [2739.51, -2219.49], [2739.98, -2217.45], [2730.14, -2215.22], [2733.45, -2201.24], [2740.47, -2202.82], [2740.09, -2204.16], [2742.06, -2204.63], [2745.03, -2193.97], [2754.43, -2196.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[2500.03, -1924.92], [2499.51, -1931.23], [2491.56, -1930.58], [2492.08, -1924.26], [2500.03, -1924.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2783.25, -2210.45], [2775.01, -2210.8], [2774.67, -2200.31], [2781.3, -2200.02], [2781.28, -2199.38], [2785.24, -2199.26], [2785.14, -2196.11], [2792.07, -2195.89], [2792.16, -2199.03], [2792.45, -2207.87], [2783.17, -2208.18], [2783.25, -2210.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2640.79, -1946.96], [2638.3, -1957.64], [2637.31, -1957.43], [2636.7, -1959.76], [2638.21, -1960.12], [2636.01, -1969.81], [2625.88, -1967.38], [2627.1, -1962.43], [2624.49, -1961.8], [2627.55, -1948.59], [2630.65, -1949.35], [2631.67, -1944.82], [2640.79, -1946.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[2745.15, -2154.91], [2752.45, -2158.45], [2749.18, -2165.18], [2741.88, -2161.64], [2745.15, -2154.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2639.2, -2017.93], [2642.62, -2017.13], [2643.24, -2019.79], [2639.82, -2020.58], [2639.2, -2017.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2642.51, -1940.64], [2631.12, -1937.97], [2632.98, -1929.73], [2631.17, -1929.32], [2634.41, -1915.45], [2647.61, -1918.55], [2642.51, -1940.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[2704.3, -1882.39], [2696.38, -1891.73], [2689.02, -1885.47], [2698.05, -1874.83], [2695.23, -1872.47], [2698.58, -1868.49], [2707.98, -1876.43], [2703.5, -1881.71], [2704.3, -1882.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2545.16, -2045.56], [2544.08, -2045.88], [2546.46, -2053.77], [2535.11, -2057.19], [2530.68, -2042.46], [2543.11, -2038.72], [2545.16, -2045.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2498.09, -1978.85], [2497.19, -1984.12], [2490.28, -1982.94], [2491.17, -1977.68], [2498.09, -1978.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2720.18, -1707.68], [2719.83, -1715.25], [2713.65, -1715.04], [2713.67, -1714.5], [2711.24, -1714.41], [2711.58, -1707.38], [2720.18, -1707.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2694.51, -1897.06], [2695.96, -1903.75], [2696.83, -1903.61], [2700.18, -1918.68], [2689.32, -1921.14], [2686.14, -1906.42], [2687.1, -1906.16], [2685.53, -1899.0], [2694.51, -1897.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[2784.97, -1868.43], [2784.02, -1873.23], [2784.51, -1873.33], [2782.72, -1882.06], [2776.08, -1880.7], [2775.95, -1881.32], [2761.64, -1878.39], [2761.77, -1877.77], [2763.78, -1867.96], [2775.96, -1870.45], [2776.13, -1869.6], [2778.76, -1870.14], [2780.85, -1867.56], [2784.97, -1868.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[2788.27, -1814.11], [2785.65, -1814.07], [2785.53, -1818.58], [2777.91, -1818.34], [2778.02, -1813.92], [2773.28, -1813.79], [2773.53, -1804.32], [2788.52, -1804.72], [2788.27, -1814.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2671.6, -2000.99], [2663.91, -2006.74], [2658.48, -1999.5], [2663.4, -1995.84], [2661.93, -1993.83], [2671.07, -1987.4], [2677.14, -1996.03], [2671.08, -2000.29], [2671.6, -2000.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2717.5, -1586.61], [2717.4, -1598.63], [2716.79, -1598.62], [2716.82, -1601.55], [2709.39, -1601.53], [2709.37, -1598.72], [2705.73, -1598.65], [2705.74, -1598.13], [2702.02, -1598.09], [2705.82, -1587.31], [2705.83, -1586.51], [2717.5, -1586.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2662.45, -2128.6], [2674.39, -2136.55], [2668.65, -2145.11], [2661.07, -2140.09], [2661.48, -2139.46], [2657.12, -2136.54], [2662.45, -2128.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2581.3, -2101.61], [2586.02, -2109.05], [2576.32, -2115.22], [2578.27, -2118.24], [2561.62, -2130.03], [2558.71, -2126.41], [2557.47, -2127.21], [2552.76, -2119.45], [2581.3, -2101.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.31, "pop": 155, "jobs": 0}}, {"shape": {"outer": [[2645.31, -2108.91], [2638.74, -2114.45], [2636.55, -2111.8], [2635.33, -2112.79], [2629.06, -2105.38], [2643.62, -2093.16], [2645.76, -2095.72], [2642.39, -2098.57], [2646.48, -2103.44], [2643.09, -2106.28], [2645.31, -2108.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2819.42, -1753.2], [2819.26, -1756.76], [2819.93, -1756.79], [2819.45, -1769.05], [2802.05, -1768.29], [2802.54, -1756.03], [2803.18, -1756.05], [2803.34, -1752.5], [2819.42, -1753.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[2793.5, -1958.4], [2798.17, -1962.65], [2795.47, -1965.53], [2792.05, -1962.42], [2790.14, -1964.58], [2796.14, -1970.1], [2788.97, -1977.96], [2778.73, -1968.61], [2787.93, -1958.5], [2790.92, -1961.23], [2793.5, -1958.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2611.53, -1935.98], [2611.35, -1939.92], [2606.26, -1939.7], [2606.44, -1935.75], [2611.53, -1935.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2849.41, -1894.74], [2857.48, -1902.0], [2854.74, -1905.05], [2853.7, -1904.12], [2844.54, -1914.08], [2837.15, -1907.43], [2844.84, -1899.11], [2845.2, -1899.43], [2849.41, -1894.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2782.97, -1767.47], [2783.3, -1758.6], [2779.17, -1758.46], [2779.46, -1748.27], [2783.83, -1748.41], [2783.82, -1748.82], [2791.1, -1749.06], [2790.94, -1753.87], [2797.0, -1754.1], [2796.54, -1767.96], [2782.97, -1767.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[2747.25, -1814.15], [2752.31, -1814.29], [2752.14, -1821.04], [2747.08, -1820.91], [2747.25, -1814.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2604.24, -2209.25], [2608.03, -2211.84], [2604.23, -2217.41], [2600.44, -2214.8], [2604.24, -2209.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2628.17, -2079.45], [2624.68, -2074.0], [2631.79, -2069.35], [2635.27, -2074.79], [2628.17, -2079.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2602.56, -1883.01], [2600.88, -1888.02], [2597.03, -1886.7], [2595.87, -1890.18], [2589.28, -1887.94], [2588.45, -1890.34], [2581.94, -1888.22], [2584.75, -1879.88], [2590.64, -1881.86], [2591.5, -1879.28], [2602.56, -1883.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2818.7, -1828.54], [2813.08, -1828.39], [2813.38, -1817.46], [2819.0, -1817.6], [2820.94, -1817.66], [2820.74, -1825.2], [2818.79, -1825.14], [2818.7, -1828.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2612.64, -1979.02], [2613.41, -1994.98], [2592.03, -1996.07], [2591.64, -1987.62], [2599.24, -1987.23], [2598.86, -1979.72], [2612.64, -1979.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[2722.36, -2271.91], [2724.22, -2274.15], [2727.05, -2271.8], [2732.07, -2278.18], [2730.4, -2279.57], [2731.81, -2281.33], [2734.27, -2279.36], [2739.29, -2285.73], [2728.66, -2294.61], [2717.04, -2280.09], [2719.73, -2277.93], [2717.88, -2275.69], [2722.36, -2271.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[2763.65, -1992.9], [2770.71, -1999.56], [2765.46, -2005.14], [2765.01, -2004.78], [2760.09, -2010.0], [2753.47, -2003.71], [2763.65, -1992.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2656.8, -2001.12], [2650.54, -2008.86], [2645.25, -2004.49], [2644.72, -2005.08], [2637.01, -1998.72], [2637.32, -1998.29], [2630.32, -1992.49], [2636.69, -1984.79], [2643.53, -1990.44], [2643.98, -1989.9], [2651.82, -1996.36], [2651.49, -1996.77], [2656.8, -2001.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[2821.06, -1738.26], [2820.93, -1740.38], [2818.92, -1740.26], [2819.05, -1738.14], [2821.06, -1738.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2627.82, -1758.67], [2619.54, -1758.64], [2617.34, -1758.63], [2617.35, -1758.57], [2610.83, -1758.39], [2611.02, -1751.46], [2617.34, -1751.65], [2617.34, -1747.87], [2627.81, -1747.91], [2627.82, -1758.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2613.52, -1836.57], [2613.35, -1845.02], [2607.35, -1844.93], [2607.36, -1846.59], [2599.2, -1846.48], [2599.26, -1842.85], [2598.24, -1842.83], [2598.31, -1837.46], [2599.6, -1837.48], [2599.64, -1834.27], [2607.58, -1834.41], [2607.55, -1836.51], [2613.52, -1836.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2657.64, -2119.71], [2662.27, -2123.9], [2654.06, -2132.94], [2640.22, -2120.37], [2646.38, -2113.59], [2655.6, -2121.96], [2657.64, -2119.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2602.29, -1611.8], [2600.18, -1619.13], [2591.13, -1616.52], [2593.24, -1609.19], [2602.29, -1611.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2728.82, -1750.96], [2728.33, -1766.8], [2721.44, -1766.62], [2721.42, -1767.4], [2713.12, -1767.15], [2713.43, -1756.99], [2720.73, -1757.2], [2720.93, -1750.76], [2728.82, -1750.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2598.65, -2182.19], [2613.67, -2162.15], [2619.7, -2166.8], [2621.62, -2164.34], [2623.62, -2165.94], [2613.16, -2180.06], [2615.61, -2181.74], [2608.48, -2190.94], [2602.74, -2187.71], [2598.65, -2182.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[2701.89, -1605.74], [2701.51, -1613.93], [2703.97, -1614.05], [2703.57, -1622.52], [2692.82, -1622.0], [2693.61, -1605.35], [2701.89, -1605.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2658.28, -1681.71], [2658.22, -1687.21], [2651.97, -1687.12], [2651.96, -1688.23], [2650.72, -1688.22], [2650.71, -1688.94], [2645.69, -1688.88], [2645.81, -1678.8], [2655.47, -1678.93], [2655.43, -1681.67], [2658.28, -1681.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2548.33, -2149.84], [2552.34, -2155.54], [2546.05, -2159.98], [2542.03, -2154.28], [2548.33, -2149.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2542.51, -1925.34], [2542.09, -1934.22], [2532.54, -1933.74], [2532.49, -1934.54], [2526.6, -1934.24], [2526.62, -1933.49], [2521.67, -1933.24], [2522.07, -1925.02], [2534.56, -1925.64], [2534.62, -1924.94], [2542.51, -1925.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2693.75, -2042.07], [2707.18, -2055.15], [2700.41, -2062.11], [2693.78, -2055.66], [2691.96, -2057.54], [2685.17, -2050.9], [2693.75, -2042.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2826.73, -1877.97], [2829.26, -1879.84], [2827.13, -1882.75], [2824.61, -1880.88], [2826.73, -1877.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2789.46, -2256.31], [2789.54, -2259.17], [2794.84, -2259.02], [2795.23, -2278.33], [2785.99, -2278.52], [2785.84, -2270.86], [2784.7, -2270.9], [2784.42, -2256.45], [2789.46, -2256.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2548.48, -1893.38], [2548.33, -1901.87], [2541.63, -1901.73], [2541.52, -1905.39], [2527.59, -1905.09], [2527.84, -1893.48], [2537.33, -1893.69], [2537.35, -1893.14], [2548.48, -1893.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2810.39, -1814.95], [2809.78, -1814.94], [2809.75, -1817.97], [2797.65, -1817.86], [2797.67, -1814.68], [2797.0, -1814.68], [2797.08, -1805.43], [2810.46, -1805.55], [2810.39, -1814.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2653.75, -1698.57], [2652.65, -1701.37], [2653.4, -1701.67], [2650.31, -1709.54], [2651.4, -1709.97], [2649.03, -1716.0], [2647.94, -1715.57], [2637.89, -1711.64], [2643.35, -1697.73], [2647.82, -1699.48], [2648.92, -1696.67], [2653.75, -1698.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2788.14, -1647.77], [2787.74, -1666.41], [2771.48, -1665.83], [2771.58, -1661.77], [2772.86, -1661.78], [2772.93, -1658.6], [2777.31, -1658.66], [2777.55, -1647.53], [2788.14, -1647.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[2774.87, -2351.45], [2770.74, -2348.43], [2764.39, -2347.34], [2760.17, -2339.94], [2767.85, -2328.96], [2770.52, -2330.85], [2772.53, -2327.95], [2773.89, -2328.92], [2779.34, -2321.12], [2786.76, -2326.3], [2783.02, -2331.67], [2783.28, -2334.24], [2778.55, -2341.01], [2780.95, -2342.74], [2774.87, -2351.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[2687.8, -2187.56], [2692.71, -2177.29], [2702.6, -2181.99], [2697.71, -2192.26], [2687.8, -2187.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2749.35, -2297.31], [2735.74, -2307.99], [2728.69, -2299.01], [2742.3, -2288.32], [2749.35, -2297.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2629.54, -1847.3], [2629.07, -1850.52], [2626.38, -1849.99], [2626.85, -1846.77], [2629.54, -1847.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2778.68, -1960.34], [2781.29, -1962.77], [2779.05, -1965.16], [2776.44, -1962.73], [2778.68, -1960.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2746.02, -1640.05], [2741.58, -1646.32], [2736.07, -1641.9], [2740.07, -1635.94], [2746.02, -1640.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2694.76, -2176.28], [2697.4, -2170.77], [2705.07, -2174.45], [2702.43, -2179.97], [2694.76, -2176.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2569.36, -1809.86], [2575.98, -1810.02], [2575.81, -1816.72], [2569.19, -1816.55], [2569.36, -1809.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2527.11, -1944.34], [2526.31, -1957.97], [2521.61, -1957.68], [2521.68, -1956.41], [2515.37, -1956.04], [2515.77, -1949.17], [2512.99, -1949.02], [2513.27, -1944.1], [2515.97, -1944.26], [2516.01, -1943.69], [2527.11, -1944.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2801.06, -1938.18], [2813.72, -1950.08], [2806.83, -1957.38], [2798.02, -1949.14], [2795.36, -1951.88], [2791.05, -1947.78], [2795.13, -1943.53], [2795.59, -1943.98], [2801.06, -1938.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2622.34, -2023.07], [2627.42, -2021.49], [2628.67, -2025.55], [2623.6, -2027.13], [2622.34, -2023.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2621.53, -2080.28], [2614.54, -2083.8], [2612.94, -2080.63], [2612.55, -2080.83], [2609.01, -2073.81], [2616.4, -2070.09], [2621.53, -2080.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2791.84, -1821.11], [2800.71, -1821.34], [2800.51, -1829.27], [2791.63, -1829.04], [2791.84, -1821.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2562.65, -2055.05], [2565.88, -2065.27], [2563.1, -2066.08], [2562.62, -2064.8], [2549.06, -2069.02], [2550.04, -2072.22], [2549.83, -2072.27], [2549.88, -2072.44], [2542.32, -2074.69], [2541.61, -2076.07], [2536.41, -2073.42], [2536.69, -2072.89], [2536.16, -2072.61], [2539.24, -2067.05], [2535.73, -2065.3], [2540.87, -2064.11], [2542.8, -2060.63], [2550.44, -2058.36], [2550.53, -2058.64], [2562.65, -2055.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[2547.27, -2002.29], [2546.57, -2008.91], [2545.77, -2008.82], [2541.23, -2008.34], [2541.22, -2008.42], [2539.58, -2008.25], [2539.23, -2011.5], [2535.86, -2011.14], [2535.78, -2011.86], [2524.54, -2010.65], [2524.62, -2009.93], [2524.97, -2006.67], [2523.86, -2006.55], [2525.17, -1994.46], [2542.53, -1996.34], [2542.37, -1997.86], [2546.89, -1998.36], [2546.48, -2002.21], [2547.27, -2002.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[2820.35, -1901.69], [2823.03, -1904.16], [2823.53, -1903.62], [2829.05, -1908.69], [2827.85, -1910.03], [2840.32, -1921.47], [2833.51, -1928.86], [2824.14, -1920.27], [2825.01, -1919.31], [2821.78, -1916.34], [2822.94, -1915.07], [2817.55, -1910.13], [2819.05, -1908.51], [2816.36, -1906.03], [2820.35, -1901.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[2681.11, -2202.42], [2685.85, -2194.34], [2699.66, -2202.68], [2700.51, -2203.89], [2703.09, -2202.37], [2706.68, -2208.05], [2694.43, -2215.69], [2690.57, -2209.83], [2688.38, -2208.64], [2689.13, -2207.31], [2681.11, -2202.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2842.36, -1718.43], [2842.46, -1715.14], [2841.23, -1715.11], [2841.52, -1705.62], [2846.95, -1705.8], [2846.96, -1705.29], [2856.49, -1705.64], [2856.17, -1715.65], [2849.78, -1715.39], [2849.67, -1718.67], [2842.36, -1718.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2545.38, -1911.8], [2543.95, -1918.93], [2536.9, -1917.9], [2536.83, -1920.52], [2521.5, -1920.31], [2524.44, -1909.26], [2529.69, -1910.67], [2529.93, -1909.89], [2537.18, -1909.97], [2537.17, -1910.34], [2545.38, -1911.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2762.17, -1986.44], [2757.09, -1991.68], [2750.64, -1985.43], [2755.72, -1980.19], [2762.17, -1986.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2842.75, -1754.62], [2842.47, -1769.09], [2825.21, -1768.8], [2825.39, -1760.5], [2832.59, -1760.62], [2832.69, -1754.45], [2842.75, -1754.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2555.56, -1835.45], [2555.34, -1840.48], [2553.24, -1840.39], [2553.03, -1846.05], [2542.72, -1845.69], [2542.77, -1844.23], [2538.33, -1844.06], [2538.61, -1836.69], [2543.06, -1836.86], [2543.13, -1835.04], [2555.56, -1835.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2772.11, -1964.5], [2777.75, -1969.98], [2773.36, -1974.5], [2767.71, -1969.02], [2772.11, -1964.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2692.96, -2029.78], [2698.28, -2035.3], [2694.55, -2038.88], [2689.24, -2033.37], [2692.96, -2029.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2810.06, -1620.07], [2806.98, -1624.6], [2805.85, -1623.84], [2798.05, -1635.4], [2790.93, -1630.72], [2797.73, -1620.57], [2796.87, -1619.99], [2800.95, -1613.96], [2810.06, -1620.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2717.83, -1844.9], [2718.07, -1848.89], [2714.93, -1849.08], [2714.68, -1845.1], [2717.83, -1844.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2596.03, -1677.18], [2607.5, -1680.38], [2606.24, -1684.91], [2606.58, -1685.0], [2606.18, -1686.38], [2607.01, -1687.89], [2606.67, -1689.2], [2605.12, -1690.11], [2602.98, -1689.52], [2602.03, -1693.07], [2598.35, -1691.98], [2597.82, -1693.91], [2592.83, -1692.52], [2595.44, -1684.12], [2594.19, -1683.77], [2596.03, -1677.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2662.75, -2075.94], [2663.97, -2077.04], [2661.68, -2079.6], [2660.45, -2078.51], [2662.75, -2075.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2717.54, -1665.89], [2717.36, -1675.84], [2708.17, -1675.67], [2708.35, -1665.72], [2717.54, -1665.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2710.79, -1927.42], [2710.65, -1932.11], [2711.44, -1932.14], [2711.41, -1933.24], [2719.07, -1933.46], [2718.75, -1944.47], [2712.34, -1944.28], [2712.32, -1945.3], [2709.56, -1945.22], [2709.45, -1948.77], [2700.56, -1948.51], [2700.83, -1939.12], [2699.79, -1939.09], [2700.14, -1927.1], [2710.79, -1927.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[2694.54, -1723.93], [2694.42, -1733.34], [2697.92, -1733.38], [2697.83, -1740.69], [2684.76, -1740.53], [2684.96, -1723.81], [2694.54, -1723.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2685.51, -2057.07], [2695.19, -2065.91], [2695.84, -2065.2], [2699.99, -2068.94], [2694.66, -2074.79], [2692.33, -2072.73], [2684.89, -2080.84], [2676.89, -2073.5], [2683.76, -2066.02], [2680.25, -2062.85], [2685.51, -2057.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[2595.15, -1915.96], [2592.04, -1934.86], [2580.63, -1932.97], [2582.65, -1920.88], [2583.53, -1921.02], [2584.62, -1914.22], [2595.15, -1915.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[2811.49, -2004.34], [2818.35, -2010.53], [2818.67, -2010.18], [2822.31, -2013.47], [2815.21, -2021.3], [2811.95, -2018.36], [2808.99, -2021.68], [2802.17, -2015.52], [2805.82, -2011.47], [2805.4, -2011.09], [2811.49, -2004.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2525.53, -1811.63], [2524.68, -1815.71], [2518.03, -1814.31], [2518.88, -1810.23], [2525.53, -1811.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2834.96, -2401.63], [2841.47, -2408.23], [2843.3, -2406.44], [2847.55, -2410.75], [2837.27, -2420.88], [2826.51, -2409.95], [2834.96, -2401.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2699.85, -1708.06], [2699.83, -1713.78], [2702.39, -1713.82], [2702.36, -1719.98], [2690.24, -1719.89], [2690.3, -1708.02], [2699.85, -1708.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2630.74, -1718.72], [2648.9, -1726.17], [2644.28, -1736.88], [2642.03, -1735.9], [2638.07, -1744.93], [2625.73, -1739.86], [2628.3, -1734.02], [2631.45, -1735.34], [2632.78, -1732.24], [2626.13, -1729.38], [2630.74, -1718.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[2828.1, -2179.83], [2828.82, -2189.68], [2832.06, -2189.45], [2832.22, -2191.97], [2836.8, -2191.71], [2837.53, -2202.5], [2833.14, -2202.74], [2833.24, -2204.37], [2827.37, -2204.73], [2827.23, -2202.78], [2820.06, -2203.25], [2819.41, -2192.91], [2818.13, -2193.0], [2817.31, -2180.46], [2820.95, -2180.25], [2820.9, -2179.47], [2828.05, -2179.05], [2828.1, -2179.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[2596.19, -1894.04], [2595.93, -1904.19], [2597.78, -1904.23], [2597.56, -1909.62], [2587.2, -1909.36], [2587.67, -1893.83], [2596.19, -1894.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2725.32, -1999.69], [2727.08, -2001.45], [2724.64, -2003.89], [2722.87, -2002.13], [2725.32, -1999.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2833.85, -1814.23], [2833.63, -1821.47], [2826.99, -1821.27], [2827.08, -1818.36], [2822.75, -1818.23], [2822.89, -1814.74], [2820.27, -1814.66], [2820.47, -1806.34], [2819.69, -1806.31], [2819.79, -1803.73], [2823.29, -1803.88], [2823.22, -1805.46], [2833.63, -1805.78], [2833.41, -1814.22], [2833.85, -1814.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2814.01, -1589.55], [2821.34, -1593.56], [2812.82, -1609.12], [2806.19, -1605.47], [2807.84, -1602.46], [2807.15, -1602.08], [2814.01, -1589.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2692.58, -1743.03], [2702.55, -1743.28], [2702.43, -1748.11], [2699.79, -1751.14], [2692.36, -1750.97], [2692.58, -1743.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2578.9, -1762.89], [2578.84, -1770.6], [2577.96, -1770.59], [2577.91, -1774.35], [2577.21, -1774.33], [2577.24, -1776.01], [2576.41, -1776.07], [2576.32, -1781.15], [2575.06, -1781.12], [2575.07, -1782.31], [2575.29, -1782.34], [2575.22, -1786.03], [2573.87, -1786.02], [2573.88, -1786.64], [2562.66, -1786.47], [2562.88, -1775.79], [2561.68, -1775.82], [2561.75, -1762.68], [2578.9, -1762.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.286, "pop": 143, "jobs": 0}}, {"shape": {"outer": [[2802.51, -2247.22], [2802.41, -2252.91], [2798.38, -2252.84], [2798.48, -2247.15], [2802.51, -2247.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2621.71, -1666.67], [2621.69, -1667.21], [2623.51, -1667.22], [2623.45, -1675.48], [2613.45, -1675.42], [2613.53, -1667.21], [2615.87, -1667.22], [2615.86, -1666.63], [2621.71, -1666.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2536.88, -2017.57], [2537.31, -2024.17], [2553.53, -2023.1], [2554.07, -2031.32], [2544.03, -2031.84], [2544.16, -2033.71], [2523.52, -2035.24], [2522.41, -2018.53], [2536.88, -2017.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.308, "pop": 154, "jobs": 0}}, {"shape": {"outer": [[2730.06, -1638.94], [2729.92, -1643.62], [2728.51, -1643.58], [2728.36, -1648.66], [2720.26, -1648.41], [2720.55, -1638.65], [2730.06, -1638.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2673.52, -2096.96], [2675.89, -2098.04], [2679.78, -2089.83], [2689.12, -2094.15], [2684.89, -2102.93], [2684.28, -2102.65], [2680.24, -2111.24], [2671.71, -2107.05], [2673.31, -2103.81], [2670.71, -2102.58], [2673.52, -2096.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2648.85, -1912.72], [2628.2, -1907.93], [2628.54, -1906.44], [2624.33, -1905.47], [2625.62, -1899.92], [2630.07, -1900.95], [2630.86, -1897.55], [2632.42, -1897.9], [2634.18, -1890.32], [2644.64, -1892.74], [2642.42, -1902.34], [2650.81, -1904.29], [2648.85, -1912.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[2588.29, -1748.3], [2588.3, -1757.82], [2580.42, -1757.84], [2580.42, -1759.78], [2565.71, -1759.72], [2565.74, -1754.95], [2563.77, -1754.94], [2563.75, -1748.3], [2588.29, -1748.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[2832.85, -1656.73], [2832.53, -1666.68], [2816.62, -1666.16], [2816.94, -1656.22], [2832.85, -1656.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2689.26, -2218.05], [2686.39, -2225.14], [2681.32, -2223.11], [2679.97, -2226.52], [2681.5, -2227.09], [2680.97, -2228.04], [2683.84, -2229.25], [2680.05, -2239.23], [2673.51, -2236.58], [2673.84, -2235.74], [2666.96, -2233.0], [2669.71, -2226.1], [2669.3, -2225.93], [2670.72, -2222.39], [2671.13, -2222.55], [2675.18, -2212.42], [2689.26, -2218.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[2666.3, -1838.85], [2649.2, -1838.53], [2649.39, -1828.54], [2650.0, -1828.55], [2650.09, -1824.17], [2653.03, -1824.21], [2653.09, -1821.17], [2663.72, -1821.36], [2663.59, -1828.77], [2666.48, -1828.81], [2666.3, -1838.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[2760.64, -1703.39], [2771.03, -1703.59], [2770.84, -1718.54], [2760.5, -1718.35], [2760.64, -1703.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2512.72, -1863.84], [2511.88, -1869.9], [2505.0, -1868.95], [2505.83, -1862.89], [2512.72, -1863.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2772.26, -2256.02], [2781.4, -2264.89], [2781.6, -2275.49], [2773.18, -2275.7], [2773.15, -2274.38], [2763.52, -2264.87], [2772.26, -2256.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[2751.72, -1813.92], [2751.98, -1804.04], [2757.79, -1804.19], [2757.8, -1803.86], [2765.1, -1804.06], [2764.82, -1814.28], [2751.72, -1813.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2730.42, -3172.01], [2735.27, -3172.18], [2735.09, -3177.14], [2730.24, -3176.96], [2730.42, -3172.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2804.56, -3110.71], [2815.08, -3110.46], [2815.55, -3130.16], [2805.03, -3130.4], [2804.56, -3110.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2685.52, -3159.67], [2683.63, -3173.59], [2678.33, -3172.78], [2678.68, -3170.49], [2673.34, -3169.66], [2672.99, -3171.96], [2667.8, -3171.16], [2669.76, -3157.3], [2685.52, -3159.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2681.46, -3101.91], [2678.76, -3122.52], [2661.07, -3120.2], [2663.76, -3099.6], [2681.46, -3101.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[2633.86, -3155.97], [2651.97, -3156.62], [2651.23, -3177.26], [2633.12, -3176.61], [2633.86, -3155.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[2692.2, -3161.78], [2709.92, -3163.35], [2708.96, -3174.43], [2691.2, -3172.81], [2692.2, -3161.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2715.81, -3161.2], [2725.44, -3161.41], [2725.05, -3176.44], [2715.42, -3176.23], [2715.81, -3161.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2946.83, -1180.73], [-2928.67, -1202.25], [-2935.02, -1207.56], [-2946.39, -1194.08], [-2953.18, -1186.04], [-2946.83, -1180.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.149, "pop": 0, "jobs": 149}}, {"shape": {"outer": [[432.52, -2952.04], [442.55, -2947.19], [446.96, -2956.23], [436.93, -2961.08], [432.52, -2952.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1025.17, -241.4], [-1023.81, -240.17], [-1019.18, -236.03], [-1006.64, -249.91], [-1006.81, -253.38], [-1014.69, -252.99], [-1025.17, -241.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1025.17, -241.4], [-1028.52, -244.41], [-1027.88, -245.1], [-1027.31, -245.73], [-1021.06, -252.65], [-1014.69, -252.99], [-1025.17, -241.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.038, "pop": 0, "jobs": 38}}, {"shape": {"outer": [[430.03, -2416.79], [432.35, -2420.78], [435.34, -2419.06], [436.25, -2420.63], [446.57, -2414.7], [442.49, -2407.67], [431.63, -2413.91], [432.48, -2415.38], [430.03, -2416.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.073, "pop": 0, "jobs": 73}}, {"shape": {"outer": [[-2991.02, -140.53], [-2989.23, -150.03], [-3005.39, -153.05], [-3007.17, -143.55], [-2991.02, -140.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2679.09, 2423.75], [2690.82, 2435.12], [2692.66, 2433.23], [2707.78, 2447.88], [2704.95, 2450.8], [2710.76, 2456.43], [2712.29, 2454.85], [2720.24, 2462.55], [2737.18, 2445.23], [2733.35, 2441.51], [2742.9, 2431.74], [2736.8, 2425.83], [2734.17, 2423.27], [2737.17, 2420.21], [2756.53, 2400.38], [2732.64, 2377.21], [2702.42, 2408.13], [2699.8, 2405.6], [2695.55, 2409.94], [2694.02, 2408.46], [2679.09, 2423.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1952}}, {"shape": {"outer": [[2736.8, 2425.83], [2754.14, 2425.43], [2754.47, 2420.21], [2737.17, 2420.21], [2734.17, 2423.27], [2736.8, 2425.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2725.25, 2466.45], [2730.5, 2461.21], [2760.32, 2490.9], [2757.54, 2493.67], [2755.07, 2496.13], [2725.25, 2466.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.2, "pop": 0, "jobs": 200}}, {"shape": {"outer": [[2835.94, 2461.07], [2850.08, 2446.64], [2842.29, 2439.06], [2841.74, 2439.62], [2805.97, 2404.83], [2807.26, 2403.51], [2800.9, 2397.33], [2799.7, 2398.54], [2790.62, 2389.7], [2791.67, 2388.63], [2787.6, 2384.68], [2783.58, 2388.79], [2784.02, 2389.62], [2776.94, 2396.84], [2776.21, 2396.13], [2771.18, 2401.25], [2775.5, 2405.45], [2776.65, 2404.26], [2780.76, 2408.26], [2779.96, 2409.07], [2785.88, 2414.83], [2787.11, 2413.58], [2835.94, 2461.07]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1238, "jobs": 0}}, {"shape": {"outer": [[2849.1, 2475.35], [2864.18, 2459.21], [2873.39, 2467.75], [2872.27, 2468.95], [2889.98, 2485.38], [2891.12, 2484.16], [2898.22, 2490.75], [2897.0, 2492.06], [2905.74, 2500.18], [2906.61, 2499.25], [2911.08, 2503.4], [2907.24, 2507.51], [2905.93, 2506.31], [2903.36, 2509.06], [2897.87, 2514.92], [2899.29, 2516.25], [2895.53, 2520.28], [2890.74, 2515.84], [2891.69, 2514.83], [2887.81, 2511.23], [2886.82, 2512.29], [2879.96, 2505.93], [2880.94, 2504.88], [2849.1, 2475.35]], "holes": []}, "height": 4.0, "data": {"type": "residential", "density": 0.544, "pop": 272, "jobs": 0}}, {"shape": {"outer": [[1965.52, 2424.65], [1976.88, 2422.33], [1975.67, 2416.42], [1974.03, 2408.47], [1972.53, 2401.16], [1972.02, 2398.67], [1979.34, 2397.18], [1990.61, 2394.87], [1988.91, 2386.75], [1977.55, 2389.07], [1971.38, 2390.32], [1970.98, 2388.39], [1969.82, 2382.74], [1957.43, 2385.27], [1958.62, 2391.08], [1961.27, 2403.94], [1962.68, 2410.82], [1964.32, 2418.84], [1965.52, 2424.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.404, "pop": 0, "jobs": 404}}, {"shape": {"outer": [[2314.94, 1859.83], [2345.58, 1828.08], [2336.85, 1820.37], [2338.03, 1818.15], [2335.21, 1815.77], [2321.6, 1829.91], [2311.5, 1840.37], [2304.89, 1847.24], [2314.94, 1859.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.444, "pop": 0, "jobs": 444}}, {"shape": {"outer": [[469.97, -2970.97], [487.51, -2962.29], [521.01, -3029.5], [503.46, -3038.19], [469.97, -2970.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.941, "pop": 0, "jobs": 941}}, {"shape": {"outer": [[-1307.17, -2291.84], [-1305.69, -2294.57], [-1310.7, -2297.33], [-1313.97, -2299.13], [-1314.32, -2306.8], [-1314.55, -2311.69], [-1317.31, -2311.62], [-1317.09, -2306.67], [-1316.67, -2297.24], [-1312.33, -2294.77], [-1307.17, -2291.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1192.65, 1167.19], [1227.33, 1128.09], [1270.26, 1165.9], [1247.58, 1191.47], [1239.64, 1184.48], [1242.03, 1181.78], [1237.9, 1178.14], [1240.33, 1175.4], [1238.03, 1173.38], [1241.17, 1169.85], [1237.56, 1166.67], [1239.4, 1164.59], [1228.0, 1154.55], [1225.78, 1157.04], [1226.88, 1158.01], [1222.3, 1163.18], [1221.3, 1162.28], [1219.2, 1164.65], [1231.65, 1175.62], [1229.62, 1177.91], [1232.24, 1180.21], [1221.35, 1192.48], [1192.65, 1167.19]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 1234, "jobs": 0}}, {"shape": {"outer": [[1186.91, 176.7], [1189.45, 166.42], [1168.11, 161.18], [1165.57, 171.45], [1186.91, 176.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.149, "pop": 0, "jobs": 149}}, {"shape": {"outer": [[-1542.46, -1431.39], [-1543.35, -1466.28], [-1546.11, -1466.21], [-1546.37, -1476.28], [-1523.36, -1476.86], [-1522.22, -1431.9], [-1542.46, -1431.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.75, "pop": 375, "jobs": 0}}, {"shape": {"outer": [[-1478.81, -1411.35], [-1479.27, -1424.64], [-1469.89, -1424.95], [-1469.44, -1411.67], [-1478.81, -1411.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.08, "pop": 0, "jobs": 80}}, {"shape": {"outer": [[-1479.31, -1426.9], [-1479.43, -1431.9], [-1479.54, -1436.73], [-1477.06, -1436.79], [-1477.12, -1439.55], [-1472.13, -1439.67], [-1472.07, -1436.87], [-1471.08, -1436.89], [-1470.86, -1427.09], [-1479.31, -1426.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1527.68, -1527.8], [-1527.79, -1532.91], [-1537.66, -1532.68], [-1537.5, -1525.17], [-1536.04, -1525.21], [-1536.09, -1527.61], [-1527.68, -1527.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1524.67, -1534.19], [-1524.72, -1536.8], [-1524.07, -1536.82], [-1524.13, -1539.3], [-1524.98, -1539.29], [-1525.0, -1540.58], [-1539.53, -1540.25], [-1539.5, -1538.81], [-1537.51, -1538.85], [-1537.4, -1533.9], [-1524.67, -1534.19]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.055, "pop": 0, "jobs": 55}}, {"shape": {"outer": [[-2250.4, -1682.46], [-2245.6, -1684.19], [-2253.96, -1692.75], [-2257.5, -1691.84], [-2258.73, -1690.52], [-2250.4, -1682.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2254.88, -625.27], [-2252.49, -628.32], [-2248.96, -625.58], [-2251.34, -622.52], [-2254.88, -625.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2261.38, 261.07], [-2244.32, 260.56], [-2244.59, 251.7], [-2261.65, 252.21], [-2261.38, 261.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2407.34, 1958.95], [2414.6, 1955.12], [2417.53, 1960.63], [2410.27, 1964.47], [2407.34, 1958.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2417.19, 1974.53], [2420.48, 1980.54], [2427.87, 1976.52], [2424.58, 1970.5], [2417.19, 1974.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2421.55, 1981.6], [2424.66, 1987.27], [2432.07, 1983.23], [2428.94, 1977.56], [2421.55, 1981.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2353.2, 1733.11], [2357.93, 1716.0], [2346.47, 1712.85], [2341.73, 1729.95], [2353.2, 1733.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.135, "pop": 0, "jobs": 135}}, {"shape": {"outer": [[-890.91, -407.34], [-878.64, -396.25], [-884.99, -389.29], [-897.25, -400.38], [-890.91, -407.34]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-890.82, -407.93], [-883.77, -401.54], [-871.69, -414.75], [-878.74, -421.14], [-890.82, -407.93]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.048, "pop": 0, "jobs": 48}}, {"shape": {"outer": [[-640.32, -1067.76], [-590.54, -1022.88], [-587.89, -1025.79], [-584.15, -1022.42], [-574.04, -1033.57], [-579.54, -1038.52], [-585.94, -1044.29], [-615.99, -1071.36], [-618.85, -1068.21], [-625.3, -1074.03], [-630.43, -1078.65], [-640.32, -1067.76]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1435}}, {"shape": {"outer": [[933.68, 982.09], [995.12, 915.85], [949.96, 874.62], [948.56, 876.17], [943.52, 871.78], [944.69, 870.42], [929.57, 856.13], [868.23, 923.81], [933.68, 982.09]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 15384, "jobs": 0}}, {"shape": {"outer": [[171.75, -2634.78], [183.07, -2642.17], [192.26, -2628.2], [184.65, -2623.23], [182.37, -2626.69], [181.04, -2625.82], [178.48, -2629.72], [176.87, -2628.67], [176.32, -2629.51], [175.55, -2629.01], [171.75, -2634.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-874.5, 107.35], [-894.85, 129.77], [-905.0, 120.63], [-884.65, 98.21], [-874.5, 107.35]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.724, "pop": 362, "jobs": 0}}, {"shape": {"outer": [[-1850.45, -468.59], [-1846.46, -460.37], [-1861.49, -453.16], [-1865.48, -461.38], [-1850.45, -468.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-480.8, -327.14], [-447.6, -362.54], [-490.7, -401.69], [-493.17, -401.57], [-493.99, -395.11], [-497.96, -390.74], [-511.24, -403.5], [-528.93, -383.43], [-533.77, -388.03], [-533.59, -385.97], [-532.53, -373.06], [-499.0, -341.96], [-494.95, -346.29], [-483.38, -335.99], [-483.33, -333.1], [-485.31, -330.95], [-480.8, -327.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2148}}, {"shape": {"outer": [[-678.28, -504.31], [-691.05, -490.5], [-667.32, -468.69], [-639.63, -498.57], [-654.6, -512.34], [-669.51, -496.24], [-678.28, -504.31]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 737, "jobs": 0}}, {"shape": {"outer": [[-375.17, -429.23], [-355.81, -411.37], [-346.43, -421.47], [-365.79, -439.32], [-375.17, -429.23]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.38, "pop": 190, "jobs": 0}}, {"shape": {"outer": [[30.79, 103.85], [19.65, 116.51], [12.55, 110.31], [9.81, 113.43], [16.79, 119.52], [13.34, 123.44], [10.34, 120.83], [4.45, 127.52], [3.56, 126.75], [-4.16, 135.55], [-16.73, 124.58], [-1.97, 107.79], [-0.77, 108.83], [2.67, 104.92], [6.13, 107.93], [7.75, 106.09], [3.9, 102.73], [9.5, 96.36], [10.29, 97.04], [15.81, 90.76], [30.79, 103.85]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 736, "jobs": 0}}, {"shape": {"outer": [[1296.22, 1394.68], [1287.02, 1386.27], [1295.87, 1376.8], [1304.99, 1385.1], [1296.22, 1394.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-33.5, 261.41], [-48.99, 247.23], [-47.48, 245.59], [-48.81, 244.37], [-46.96, 242.36], [-45.63, 243.58], [-43.07, 240.81], [-27.57, 254.98], [-33.5, 261.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-53.94, 256.56], [-48.39, 250.65], [-35.0, 263.13], [-40.54, 269.04], [-53.94, 256.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-56.41, 256.66], [-57.65, 258.01], [-58.26, 257.47], [-61.79, 261.33], [-61.18, 261.89], [-63.11, 264.01], [-48.6, 277.14], [-42.29, 270.22], [-46.58, 266.34], [-46.18, 265.9], [-56.41, 256.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-61.48, 266.85], [-67.04, 272.79], [-56.23, 282.84], [-50.67, 276.89], [-61.48, 266.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-80.03, 285.97], [-73.8, 279.51], [-67.72, 285.34], [-68.6, 286.25], [-65.04, 289.66], [-70.39, 295.2], [-75.32, 290.48], [-76.01, 291.2], [-77.8, 289.48], [-77.11, 288.77], [-80.03, 285.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-71.63, 278.92], [-66.9, 273.89], [-55.61, 284.45], [-60.34, 289.48], [-71.63, 278.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-46.29, 334.27], [-51.68, 339.96], [-55.3, 336.55], [-56.27, 337.56], [-64.78, 329.54], [-58.43, 322.85], [-46.29, 334.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-81.77, 317.03], [-85.59, 313.59], [-83.38, 311.14], [-85.67, 309.08], [-83.72, 306.94], [-84.94, 305.83], [-81.29, 301.79], [-73.95, 308.37], [-81.77, 317.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[104.11, -254.27], [113.89, -244.73], [135.16, -223.58], [139.38, -228.17], [140.63, -227.43], [147.04, -238.4], [159.31, -254.51], [174.05, -267.85], [179.19, -272.62], [186.18, -277.72], [185.56, -279.25], [189.55, -283.48], [163.09, -307.49], [158.34, -311.99], [157.55, -311.15], [133.27, -285.36], [125.15, -276.39], [104.11, -254.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1341, "jobs": 0}}, {"shape": {"outer": [[2885.85, 2440.48], [2924.57, 2476.67], [2926.02, 2475.13], [2927.59, 2476.59], [2930.97, 2473.01], [2928.65, 2470.84], [2938.84, 2460.01], [2915.07, 2437.78], [2931.72, 2420.1], [2931.1, 2418.0], [2933.57, 2415.37], [2926.74, 2408.98], [2924.17, 2411.71], [2918.19, 2406.12], [2885.85, 2440.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 673, "jobs": 0}}, {"shape": {"outer": [[2836.1, 2391.82], [2871.86, 2426.06], [2886.22, 2411.16], [2860.09, 2386.13], [2850.47, 2376.92], [2836.1, 2391.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.82, "pop": 410, "jobs": 0}}, {"shape": {"outer": [[391.6, 306.73], [374.38, 291.32], [384.65, 279.91], [389.33, 284.0], [401.81, 270.09], [405.57, 273.43], [408.34, 270.46], [416.78, 278.0], [411.8, 283.59], [391.6, 306.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.454, "pop": 0, "jobs": 454}}, {"shape": {"outer": [[398.09, 243.18], [403.83, 236.81], [407.41, 240.01], [407.9, 239.45], [414.29, 245.15], [413.8, 245.71], [416.63, 248.24], [410.9, 254.61], [398.09, 243.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[410.19, 191.12], [401.41, 200.55], [394.92, 194.56], [398.33, 190.89], [398.1, 190.68], [401.24, 187.3], [401.48, 187.51], [403.7, 185.13], [410.19, 191.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[375.98, 161.32], [376.73, 161.96], [377.53, 161.04], [379.24, 162.53], [378.3, 163.61], [380.73, 165.71], [371.77, 176.05], [366.86, 171.82], [375.98, 161.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[366.36, 153.37], [373.02, 159.55], [361.49, 171.88], [354.83, 165.7], [366.36, 153.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[353.42, 140.77], [364.63, 151.14], [352.19, 164.49], [340.99, 154.13], [353.42, 140.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[509.37, 172.82], [513.02, 168.88], [533.26, 187.5], [529.61, 191.44], [509.37, 172.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2947.97, -1506.36], [-2939.35, -1499.08], [-2932.42, -1507.23], [-2933.44, -1508.09], [-2932.36, -1509.36], [-2939.05, -1515.0], [-2940.19, -1513.65], [-2941.11, -1514.43], [-2947.97, -1506.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2759.55, -1347.73], [-2752.3, -1341.54], [-2742.51, -1352.95], [-2749.75, -1359.12], [-2759.55, -1347.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2749.09, -1338.87], [-2745.54, -1335.84], [-2746.94, -1334.2], [-2742.98, -1330.93], [-2739.35, -1331.04], [-2735.5, -1334.36], [-2736.91, -1335.61], [-2732.14, -1340.8], [-2734.46, -1342.74], [-2732.11, -1345.37], [-2738.31, -1350.65], [-2749.09, -1338.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2742.25, -1361.94], [-2736.83, -1357.52], [-2732.56, -1362.72], [-2737.97, -1367.14], [-2742.25, -1361.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2736.08, -1356.5], [-2734.93, -1355.49], [-2735.87, -1354.42], [-2732.36, -1351.35], [-2731.43, -1352.4], [-2730.35, -1351.47], [-2725.65, -1356.81], [-2731.38, -1361.83], [-2736.08, -1356.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-369.77, -453.93], [-368.29, -452.61], [-370.76, -449.87], [-372.61, -447.81], [-374.1, -449.14], [-372.05, -451.41], [-369.77, -453.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[411.8, 283.59], [426.6, 296.95], [406.15, 319.76], [391.6, 306.73], [411.8, 283.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.387, "pop": 0, "jobs": 387}}, {"shape": {"outer": [[-1559.08, -1021.07], [-1558.99, -1016.47], [-1558.63, -1005.23], [-1532.14, -1005.49], [-1532.18, -1017.35], [-1532.2, -1020.77], [-1532.21, -1025.23], [-1535.64, -1025.01], [-1535.64, -1021.78], [-1540.89, -1021.62], [-1557.7, -1021.11], [-1559.08, -1021.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.354, "pop": 177, "jobs": 0}}, {"shape": {"outer": [[-760.55, 51.12], [-774.28, 39.04], [-778.71, 44.01], [-764.98, 56.1], [-760.55, 51.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-972.41, 90.21], [-971.82, 102.1], [-977.0, 102.36], [-977.6, 90.47], [-972.41, 90.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-870.49, -76.25], [-872.46, -77.08], [-874.74, -77.72], [-878.77, -77.55], [-877.46, -46.07], [-875.1, -46.17], [-857.97, -64.91], [-870.49, -76.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-896.04, -45.48], [-905.64, -39.35], [-901.69, -33.19], [-897.2, -36.06], [-892.67, -32.01], [-887.7, -37.54], [-896.04, -45.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.082, "pop": 0, "jobs": 82}}, {"shape": {"outer": [[-671.95, 148.01], [-676.39, 153.01], [-671.85, 157.01], [-667.41, 152.02], [-671.95, 148.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-617.77, 98.16], [-627.11, 108.69], [-621.49, 113.64], [-612.14, 103.11], [-617.77, 98.16]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-13.02, 356.36], [-8.95, 351.83], [-13.85, 347.44], [-17.92, 351.97], [-13.02, 356.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[57.29, 253.24], [58.97, 251.42], [54.55, 247.36], [48.44, 253.95], [52.86, 258.02], [57.29, 253.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[57.52, 262.29], [61.93, 257.52], [57.29, 253.24], [52.86, 258.02], [57.52, 262.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[21.21, 284.45], [15.07, 291.48], [25.01, 300.1], [31.15, 293.07], [21.21, 284.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-7.56, 324.89], [-2.28, 329.5], [2.61, 323.95], [-2.65, 319.34], [-7.56, 324.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-48.43, 340.65], [-60.12, 353.2], [-54.08, 358.78], [-48.91, 353.23], [-48.49, 353.62], [-41.97, 346.62], [-48.43, 340.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-60.59, 233.97], [-54.43, 239.45], [-49.98, 234.48], [-56.14, 229.0], [-60.59, 233.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-313.74, 347.15], [-318.84, 352.64], [-314.35, 356.77], [-318.2, 360.91], [-315.43, 363.46], [-306.49, 353.83], [-313.74, 347.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-304.72, 366.54], [-297.96, 372.66], [-292.79, 366.99], [-299.56, 360.87], [-304.72, 366.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1077.47, -228.43], [-1084.88, -228.07], [-1091.07, -227.76], [-1097.42, -227.43], [-1102.74, -227.22], [-1102.34, -219.06], [-1077.03, -220.27], [-1077.47, -228.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.132, "pop": 0, "jobs": 132}}, {"shape": {"outer": [[-1086.01, -248.81], [-1084.88, -228.07], [-1077.47, -228.43], [-1077.78, -233.96], [-1076.96, -234.95], [-1077.12, -237.12], [-1078.0, -237.99], [-1078.25, -242.42], [-1077.56, -243.3], [-1077.72, -245.58], [-1078.44, -246.26], [-1078.61, -249.28], [-1079.14, -249.24], [-1079.73, -249.2], [-1080.68, -250.16], [-1083.39, -250.09], [-1084.61, -248.9], [-1086.01, -248.81]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.137, "pop": 0, "jobs": 137}}, {"shape": {"outer": [[-1098.94, -248.0], [-1097.91, -229.01], [-1097.42, -227.43], [-1091.07, -227.76], [-1084.88, -228.07], [-1086.01, -248.81], [-1092.07, -248.43], [-1098.94, -248.0]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-1105.39, -247.59], [-1104.29, -228.64], [-1097.91, -229.01], [-1098.94, -248.0], [-1105.39, -247.59]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.034, "pop": 0, "jobs": 34}}, {"shape": {"outer": [[-1118.16, -246.78], [-1117.05, -227.91], [-1112.37, -228.19], [-1109.17, -228.37], [-1104.29, -228.64], [-1105.39, -247.59], [-1110.25, -247.29], [-1113.47, -247.08], [-1118.16, -246.78]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[-1131.18, -245.96], [-1130.06, -226.97], [-1126.58, -227.17], [-1117.03, -227.73], [-1117.05, -227.91], [-1118.16, -246.78], [-1131.18, -245.96]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.07, "pop": 0, "jobs": 70}}, {"shape": {"outer": [[-790.56, -119.64], [-790.52, -119.13], [-790.23, -114.51], [-789.1, -114.58], [-788.95, -112.13], [-790.2, -112.05], [-789.85, -106.31], [-789.54, -101.45], [-789.52, -101.14], [-778.12, -101.85], [-779.2, -119.04], [-774.85, -123.94], [-782.69, -130.85], [-789.33, -123.37], [-788.16, -122.34], [-790.56, -119.64]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[-771.3, -116.3], [-767.56, -117.35], [-774.85, -123.94], [-779.2, -119.04], [-778.12, -101.85], [-770.57, -102.34], [-771.3, -116.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-770.48, -101.52], [-770.57, -102.34], [-771.3, -116.3], [-767.56, -117.35], [-766.46, -116.5], [-765.91, -116.33], [-764.52, -114.96], [-764.4, -114.4], [-754.3, -105.4], [-753.34, -104.95], [-753.03, -104.47], [-752.88, -103.94], [-753.03, -103.32], [-753.24, -102.92], [-753.69, -102.57], [-759.46, -102.27], [-760.11, -101.79], [-761.58, -101.69], [-762.92, -101.61], [-763.6, -101.96], [-767.79, -101.68], [-770.48, -101.52]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-712.67, -68.08], [-727.45, -81.59], [-736.13, -72.16], [-739.92, -68.05], [-750.72, -56.33], [-743.21, -49.45], [-746.43, -45.97], [-746.19, -43.79], [-740.14, -38.26], [-712.67, -68.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.478, "pop": 0, "jobs": 478}}, {"shape": {"outer": [[-737.51, -84.46], [-737.0, -72.13], [-736.13, -72.16], [-727.45, -81.59], [-730.59, -84.81], [-734.86, -84.59], [-737.51, -84.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-746.13, -84.0], [-745.73, -74.51], [-744.56, -74.57], [-744.27, -67.91], [-739.92, -68.05], [-740.12, -71.99], [-738.21, -72.07], [-737.0, -72.13], [-737.51, -84.46], [-737.99, -84.44], [-738.74, -84.39], [-740.96, -84.27], [-743.79, -84.13], [-744.97, -84.07], [-745.52, -84.04], [-746.13, -84.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-752.04, -83.67], [-751.04, -60.2], [-745.27, -62.99], [-745.73, -74.51], [-746.13, -84.0], [-748.56, -83.88], [-752.04, -83.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-760.02, -83.24], [-759.24, -64.88], [-763.3, -58.25], [-750.97, -58.78], [-751.04, -60.2], [-752.04, -83.67], [-757.94, -83.34], [-760.02, -83.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-770.95, -82.65], [-770.24, -64.87], [-763.3, -58.25], [-759.24, -64.88], [-760.02, -83.24], [-768.32, -82.79], [-770.95, -82.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-776.86, -82.27], [-776.18, -65.75], [-776.08, -62.53], [-771.61, -62.72], [-771.69, -64.8], [-770.24, -64.87], [-770.95, -82.65], [-772.09, -82.59], [-776.86, -82.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-787.46, -81.6], [-786.78, -66.34], [-786.73, -65.32], [-776.18, -65.75], [-776.86, -82.27], [-781.82, -82.06], [-781.9, -83.78], [-781.93, -84.56], [-786.32, -84.38], [-786.64, -83.58], [-787.46, -81.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-798.86, -81.1], [-798.29, -68.31], [-797.17, -67.38], [-793.19, -67.63], [-793.13, -66.76], [-789.82, -66.96], [-788.93, -66.24], [-786.78, -66.34], [-787.46, -81.6], [-791.16, -81.44], [-795.53, -81.25], [-798.86, -81.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[402.65, 183.65], [396.94, 178.5], [387.26, 189.15], [392.96, 194.29], [402.65, 183.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[223.53, 563.59], [217.83, 558.72], [211.28, 566.31], [216.97, 571.18], [223.53, 563.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[221.91, 462.78], [216.31, 469.37], [218.34, 471.09], [217.44, 472.15], [219.47, 473.86], [222.18, 470.68], [224.0, 472.22], [227.8, 467.74], [221.91, 462.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[319.87, 563.86], [329.9, 552.95], [324.06, 547.62], [320.03, 552.01], [320.72, 552.64], [314.73, 559.16], [319.87, 563.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[319.07, 565.48], [323.56, 569.58], [327.91, 564.85], [323.41, 560.76], [319.07, 565.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[333.11, 576.13], [338.71, 570.05], [334.95, 566.61], [333.97, 567.68], [330.85, 564.82], [326.23, 569.86], [333.11, 576.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[345.54, 562.58], [351.26, 556.37], [341.89, 547.82], [339.77, 550.13], [334.05, 544.92], [331.11, 548.1], [336.83, 553.32], [336.38, 553.81], [340.16, 557.26], [339.96, 557.49], [345.54, 562.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[308.6, 494.12], [305.93, 491.68], [302.23, 495.68], [304.9, 498.13], [308.6, 494.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[327.99, 506.46], [322.74, 501.66], [317.81, 507.01], [323.07, 511.82], [327.99, 506.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[340.03, 482.69], [332.2, 491.69], [338.46, 497.09], [346.28, 488.1], [345.87, 487.74], [347.28, 486.12], [341.69, 481.3], [340.29, 482.92], [340.03, 482.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[288.47, 436.16], [279.26, 446.45], [285.74, 452.22], [294.96, 441.95], [288.47, 436.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[252.54, 442.82], [248.45, 447.65], [251.52, 450.24], [255.61, 445.41], [252.54, 442.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[251.25, 442.34], [245.84, 437.46], [241.91, 441.79], [247.32, 446.67], [251.25, 442.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[271.24, 420.0], [265.94, 415.09], [259.6, 421.88], [261.87, 423.98], [258.26, 427.85], [261.29, 430.66], [271.24, 420.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[231.11, 344.93], [232.78, 346.45], [231.64, 347.69], [234.55, 350.33], [235.69, 349.09], [237.42, 350.66], [244.58, 342.82], [239.85, 338.54], [237.1, 341.56], [235.5, 340.13], [231.11, 344.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[208.33, 327.72], [209.05, 328.36], [207.88, 329.66], [212.29, 333.56], [213.45, 332.26], [214.19, 332.92], [220.27, 326.11], [219.45, 325.38], [221.54, 323.05], [217.34, 319.32], [215.26, 321.65], [214.42, 320.91], [208.33, 327.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[250.3, 250.86], [251.06, 251.56], [248.02, 254.87], [253.54, 259.9], [264.1, 248.43], [257.81, 242.68], [250.3, 250.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[238.45, 263.72], [245.91, 270.5], [249.4, 266.68], [241.94, 259.9], [238.45, 263.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[94.77, 460.26], [92.41, 462.94], [96.17, 466.23], [98.54, 463.55], [94.77, 460.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[112.61, 457.2], [111.04, 458.93], [112.86, 460.57], [114.43, 458.83], [112.61, 457.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[126.57, 391.46], [133.52, 397.98], [134.01, 397.46], [142.64, 405.56], [146.71, 401.24], [138.09, 393.15], [138.44, 392.76], [131.5, 386.25], [126.57, 391.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[43.85, 499.51], [41.05, 497.04], [36.47, 502.2], [39.28, 504.66], [43.85, 499.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[94.03, 532.24], [84.23, 543.11], [89.6, 547.91], [99.4, 537.05], [94.03, 532.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[38.43, 534.46], [36.07, 537.06], [40.72, 541.24], [43.07, 538.65], [38.43, 534.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[112.64, 462.31], [106.27, 456.72], [100.52, 463.23], [106.9, 468.82], [112.64, 462.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[65.32, 336.72], [72.8, 343.45], [73.26, 342.94], [78.66, 347.8], [82.03, 344.08], [76.57, 339.17], [77.08, 338.6], [70.98, 333.13], [70.6, 333.55], [69.28, 332.35], [65.32, 336.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[112.24, 338.66], [107.62, 334.35], [104.83, 337.33], [109.45, 341.64], [112.24, 338.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[55.25, 401.6], [50.07, 397.0], [46.49, 400.99], [51.68, 405.6], [55.25, 401.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-596.45, -460.17], [-599.44, -456.78], [-594.76, -452.68], [-591.77, -456.08], [-596.45, -460.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-713.61, -422.26], [-717.11, -418.52], [-712.84, -414.56], [-709.35, -418.3], [-713.61, -422.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-913.84, -549.64], [-925.44, -549.3], [-925.43, -548.85], [-927.49, -548.79], [-927.27, -540.98], [-925.21, -541.04], [-925.18, -540.2], [-914.89, -540.49], [-915.05, -545.88], [-913.73, -545.92], [-913.84, -549.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-730.32, -469.38], [-730.77, -469.79], [-731.62, -468.84], [-735.48, -472.32], [-734.62, -473.26], [-736.74, -475.19], [-727.14, -485.73], [-720.72, -479.92], [-730.32, -469.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-526.88, -867.52], [-525.29, -866.07], [-526.48, -864.78], [-523.47, -862.02], [-522.27, -863.31], [-521.86, -862.92], [-517.59, -867.54], [-522.62, -872.15], [-526.88, -867.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-664.55, -718.68], [-669.81, -712.79], [-664.41, -708.0], [-659.15, -713.89], [-664.55, -718.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-277.42, -793.47], [-287.12, -802.18], [-279.14, -811.01], [-278.92, -810.82], [-276.29, -813.73], [-269.15, -807.33], [-271.02, -805.27], [-268.67, -803.15], [-277.42, -793.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-710.68, -236.36], [-713.51, -233.26], [-709.79, -229.89], [-706.95, -233.0], [-708.95, -234.8], [-710.68, -236.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-658.79, -289.46], [-663.58, -284.23], [-664.78, -285.32], [-666.91, -283.02], [-665.7, -281.92], [-670.23, -276.99], [-672.16, -278.75], [-674.08, -276.65], [-668.27, -271.36], [-666.38, -273.42], [-653.84, -261.99], [-653.11, -262.78], [-637.33, -248.39], [-620.25, -232.84], [-615.25, -238.3], [-618.06, -240.86], [-616.87, -242.16], [-617.45, -242.69], [-614.42, -245.99], [-616.41, -247.8], [-614.89, -249.47], [-629.46, -262.73], [-635.29, -268.05], [-654.49, -285.55], [-658.79, -289.46]], "holes": []}, "height": 56.0, "data": {"type": "residential", "density": 1.0, "pop": 2989, "jobs": 0}}, {"shape": {"outer": [[-656.84, -181.06], [-651.37, -176.12], [-623.61, -151.05], [-621.66, -153.2], [-615.43, -147.56], [-609.09, -141.84], [-611.3, -139.42], [-601.0, -130.1], [-597.12, -134.37], [-595.81, -133.17], [-593.52, -135.68], [-592.98, -135.2], [-587.36, -141.39], [-587.94, -141.91], [-586.44, -143.56], [-589.55, -146.38], [-585.41, -150.94], [-586.7, -152.1], [-566.42, -174.4], [-565.89, -173.92], [-549.55, -191.88], [-556.41, -198.07], [-563.28, -204.28], [-577.01, -216.68], [-579.46, -213.99], [-582.09, -216.36], [-604.38, -191.85], [-601.98, -189.68], [-606.46, -184.76], [-632.27, -208.07], [-656.84, -181.06]], "holes": []}, "height": 45.5, "data": {"type": "residential", "density": 1.0, "pop": 10005, "jobs": 0}}, {"shape": {"outer": [[-1105.21, 39.04], [-1108.29, 39.16], [-1110.35, 39.28], [-1114.26, 39.49], [-1114.1, 42.73], [-1118.34, 41.27], [-1118.67, 42.2], [-1123.95, 42.76], [-1124.5, 41.48], [-1129.09, 43.47], [-1129.67, 43.72], [-1129.16, 44.89], [-1132.34, 48.96], [-1133.41, 48.44], [-1135.28, 53.29], [-1133.88, 53.92], [-1133.67, 58.98], [-1135.09, 59.82], [-1132.53, 64.13], [-1131.49, 63.51], [-1127.59, 66.98], [-1128.06, 68.36], [-1123.31, 69.99], [-1122.85, 68.69], [-1117.64, 68.45], [-1116.95, 69.89], [-1112.01, 67.52], [-1112.69, 66.13], [-1109.54, 62.47], [-1103.22, 64.9], [-1103.19, 65.48], [-1091.67, 64.9], [-1093.03, 38.42], [-1093.23, 38.43], [-1105.21, 39.04]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 2557, "jobs": 0}}, {"shape": {"outer": [[-1099.63, -125.6], [-1105.68, -125.31], [-1105.07, -113.03], [-1099.03, -113.33], [-1099.63, -125.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1084.72, -86.35], [-1079.41, -86.61], [-1073.72, -86.9], [-1070.44, -87.06], [-1070.57, -89.89], [-1071.57, -111.5], [-1085.86, -110.84], [-1085.83, -110.02], [-1084.72, -86.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.224, "pop": 0, "jobs": 224}}, {"shape": {"outer": [[-1097.52, -85.71], [-1093.83, -85.9], [-1091.52, -86.01], [-1091.58, -87.29], [-1090.99, -87.32], [-1090.48, -87.34], [-1090.42, -86.07], [-1089.2, -86.12], [-1084.72, -86.35], [-1085.83, -110.02], [-1087.83, -109.93], [-1087.85, -110.51], [-1092.16, -110.31], [-1098.68, -110.0], [-1098.66, -109.63], [-1098.43, -104.77], [-1097.58, -104.8], [-1096.88, -90.21], [-1097.73, -90.17], [-1097.52, -85.71]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[-1109.88, -85.1], [-1105.59, -85.31], [-1104.7, -85.36], [-1104.08, -85.39], [-1102.6, -85.46], [-1100.43, -85.57], [-1097.52, -85.71], [-1097.73, -90.17], [-1098.43, -104.77], [-1098.66, -109.63], [-1099.36, -109.59], [-1099.5, -112.5], [-1105.03, -112.26], [-1110.93, -111.97], [-1110.88, -110.88], [-1110.8, -109.53], [-1110.77, -109.05], [-1110.27, -98.39], [-1110.51, -98.39], [-1110.13, -90.34], [-1109.88, -85.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[1314.73, 694.52], [1319.87, 689.03], [1309.11, 679.03], [1303.97, 684.53], [1314.73, 694.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2976.32, 64.23], [-2999.26, 64.92], [-3032.41, 65.92], [-3032.41, 66.89], [-3032.17, 71.8], [-3032.19, 73.42], [-3027.07, 73.26], [-3025.43, 127.74], [-3025.07, 139.56], [-2965.44, 137.76], [-2966.65, 97.78], [-2962.46, 97.65], [-2962.76, 90.75], [-2966.42, 91.05], [-2966.79, 78.79], [-2975.83, 79.09], [-2976.32, 64.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2782}}, {"shape": {"outer": [[-665.7, -197.44], [-668.67, -194.13], [-665.31, -191.13], [-662.34, -194.45], [-665.7, -197.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1592.55, -483.6], [-1592.15, -475.74], [-1589.68, -475.87], [-1589.62, -474.65], [-1584.46, -474.91], [-1584.53, -476.13], [-1583.38, -476.18], [-1583.81, -484.72], [-1588.57, -484.48], [-1588.55, -483.79], [-1592.55, -483.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1603.34, -482.58], [-1603.07, -477.14], [-1603.73, -477.11], [-1603.53, -473.24], [-1604.4, -473.19], [-1604.11, -467.43], [-1594.67, -467.91], [-1595.43, -482.97], [-1603.34, -482.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1578.43, -475.18], [-1570.21, -475.59], [-1570.74, -485.94], [-1575.89, -485.67], [-1575.83, -484.56], [-1580.02, -484.35], [-1579.61, -476.19], [-1578.49, -476.24], [-1578.43, -475.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1567.24, -464.43], [-1556.41, -464.97], [-1556.43, -465.32], [-1551.85, -465.55], [-1552.29, -474.29], [-1567.7, -473.52], [-1567.24, -464.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1587.84, -460.48], [-1601.81, -459.66], [-1601.29, -450.91], [-1590.77, -451.53], [-1590.87, -453.09], [-1587.18, -453.31], [-1586.96, -449.6], [-1581.12, -449.95], [-1581.41, -454.73], [-1586.2, -454.45], [-1586.45, -458.88], [-1587.75, -458.8], [-1587.84, -460.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1572.42, -440.94], [-1573.01, -453.67], [-1580.65, -453.32], [-1580.06, -440.6], [-1572.42, -440.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1564.8, -438.0], [-1548.86, -438.95], [-1549.52, -450.04], [-1557.18, -449.59], [-1557.07, -447.84], [-1561.73, -447.56], [-1561.7, -447.08], [-1565.32, -446.87], [-1564.8, -438.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2663.8, -600.15], [-2648.99, -600.58], [-2648.64, -588.7], [-2663.46, -588.27], [-2663.8, -600.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-3054.55, -175.74], [-3068.82, -177.89], [-3070.18, -168.99], [-3055.91, -166.84], [-3054.55, -175.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3065.91, -189.72], [-3066.13, -188.27], [-3067.38, -188.47], [-3068.3, -182.51], [-3067.04, -182.32], [-3067.27, -180.83], [-3054.29, -178.87], [-3052.93, -187.76], [-3065.91, -189.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-3050.19, -196.81], [-3056.41, -197.76], [-3057.44, -190.98], [-3051.22, -190.04], [-3050.19, -196.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-843.49, -3096.79], [-836.56, -3097.1], [-836.87, -3104.29], [-843.81, -3103.98], [-843.49, -3096.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2954.12, 62.38], [-2909.82, 60.73], [-2909.7, 64.15], [-2916.98, 64.42], [-2916.8, 69.11], [-2925.93, 69.45], [-2925.72, 75.31], [-2933.06, 75.58], [-2932.29, 96.11], [-2937.76, 96.31], [-2937.01, 116.62], [-2952.07, 117.19], [-2952.26, 112.27], [-2954.12, 62.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.779, "pop": 0, "jobs": 779}}, {"shape": {"outer": [[1050.96, 1531.32], [1054.05, 1534.13], [1057.99, 1529.83], [1054.88, 1527.02], [1050.96, 1531.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1054.16, 1541.36], [1058.05, 1537.27], [1054.43, 1533.85], [1050.54, 1537.93], [1054.16, 1541.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[708.13, 1314.0], [703.95, 1318.47], [708.7, 1322.86], [712.87, 1318.38], [708.13, 1314.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[743.24, 1178.56], [747.55, 1182.16], [750.98, 1178.1], [746.68, 1174.49], [743.24, 1178.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[760.26, 1175.06], [756.1, 1179.31], [759.6, 1182.72], [763.77, 1178.47], [760.26, 1175.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[787.72, 1218.58], [791.5, 1214.4], [788.73, 1211.92], [784.96, 1216.1], [787.72, 1218.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[473.11, 1060.32], [481.93, 1068.16], [486.9, 1062.62], [482.74, 1058.93], [483.92, 1057.6], [479.25, 1053.46], [473.11, 1060.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[444.08, 1132.22], [440.82, 1136.1], [445.75, 1140.21], [449.01, 1136.33], [444.08, 1132.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[489.29, 1096.95], [493.37, 1092.42], [489.05, 1088.57], [484.98, 1093.1], [489.29, 1096.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[329.59, 994.88], [337.79, 985.97], [328.89, 977.83], [320.68, 986.74], [329.59, 994.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[336.75, 1003.57], [346.06, 993.47], [339.48, 987.47], [330.18, 997.57], [336.75, 1003.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[339.31, 1007.37], [345.26, 1012.8], [347.13, 1010.77], [347.81, 1011.41], [348.55, 1010.61], [349.0, 1011.02], [352.2, 1007.55], [351.74, 1007.13], [354.04, 1004.64], [354.37, 1004.94], [357.63, 1001.39], [357.3, 1001.09], [358.21, 1000.1], [352.27, 994.66], [353.62, 993.19], [351.53, 991.28], [343.19, 1000.34], [344.1, 1001.19], [340.64, 1004.95], [341.13, 1005.39], [339.31, 1007.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[366.43, 985.24], [359.98, 979.34], [355.01, 984.74], [357.12, 986.68], [355.49, 988.45], [358.47, 991.17], [360.1, 989.39], [361.46, 990.64], [366.43, 985.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[375.33, 977.09], [372.46, 974.46], [374.47, 972.27], [369.6, 967.82], [367.58, 970.01], [367.31, 969.76], [360.74, 976.91], [368.76, 984.22], [375.33, 977.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[385.77, 965.75], [377.85, 958.5], [372.16, 964.69], [380.08, 971.92], [385.77, 965.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[309.29, 882.66], [306.12, 886.13], [300.84, 881.34], [296.53, 886.07], [305.83, 894.48], [304.57, 895.85], [306.31, 897.42], [305.53, 898.28], [309.39, 901.78], [312.98, 897.84], [313.26, 898.08], [317.98, 892.9], [312.75, 888.17], [313.94, 886.87], [309.29, 882.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[288.11, 884.49], [285.02, 887.84], [288.54, 891.07], [291.63, 887.74], [288.11, 884.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[761.19, 926.94], [763.95, 929.45], [770.01, 922.84], [767.25, 920.32], [761.19, 926.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1616.49, 791.27], [1621.2, 795.43], [1624.84, 791.35], [1620.13, 787.18], [1616.49, 791.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1895.51, 772.27], [1899.66, 767.75], [1894.44, 763.0], [1890.29, 767.51], [1895.51, 772.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1894.16, 774.43], [1888.42, 769.21], [1883.66, 774.4], [1889.41, 779.62], [1894.16, 774.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1934.42, 810.36], [1930.02, 815.22], [1935.65, 820.3], [1940.05, 815.44], [1934.42, 810.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1903.89, 783.71], [1899.75, 788.23], [1905.76, 793.7], [1909.9, 789.18], [1903.89, 783.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1899.99, 778.08], [1896.09, 782.33], [1900.78, 786.6], [1904.68, 782.35], [1899.99, 778.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1909.58, 776.15], [1904.69, 771.7], [1900.31, 776.49], [1905.19, 780.94], [1909.58, 776.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1645.66, 414.11], [1650.74, 408.36], [1647.71, 405.7], [1642.64, 411.46], [1645.66, 414.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1298.77, 351.76], [1309.37, 339.88], [1304.12, 335.23], [1300.06, 339.78], [1297.82, 337.78], [1293.5, 342.63], [1295.34, 344.25], [1293.11, 346.75], [1298.77, 351.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1258.46, 308.65], [1268.72, 297.29], [1267.96, 296.61], [1268.93, 295.54], [1264.44, 291.51], [1263.47, 292.58], [1262.8, 291.98], [1255.75, 299.78], [1257.8, 301.61], [1254.57, 305.17], [1258.46, 308.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1086.27, 324.84], [1081.02, 330.32], [1086.8, 335.82], [1092.06, 330.33], [1086.27, 324.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1137.65, 232.96], [1132.69, 228.52], [1128.7, 232.95], [1133.67, 237.4], [1137.65, 232.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1140.25, 230.93], [1136.28, 235.33], [1141.07, 239.62], [1145.03, 235.22], [1140.25, 230.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1111.81, 305.45], [1106.9, 300.96], [1103.36, 304.81], [1108.28, 309.29], [1111.81, 305.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1085.34, 299.42], [1080.25, 304.93], [1086.68, 310.81], [1091.76, 305.3], [1085.34, 299.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1036.35, 265.36], [1040.35, 268.96], [1044.91, 263.92], [1040.91, 260.34], [1036.35, 265.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1024.37, 270.2], [1030.7, 275.81], [1036.23, 269.61], [1029.89, 263.99], [1024.37, 270.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1058.56, 275.81], [1053.7, 271.52], [1049.82, 275.9], [1054.68, 280.18], [1058.56, 275.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1065.95, 291.94], [1073.83, 298.65], [1078.29, 293.46], [1070.42, 286.73], [1065.95, 291.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[996.69, 229.65], [1001.06, 233.59], [1004.4, 229.9], [1000.03, 225.97], [996.69, 229.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[983.09, 238.53], [991.99, 228.49], [984.73, 222.1], [975.83, 232.16], [983.09, 238.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[1300.49, 233.73], [1303.33, 236.23], [1307.83, 231.15], [1304.99, 228.65], [1300.49, 233.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1259.68, 206.6], [1265.55, 211.95], [1272.87, 203.98], [1266.99, 198.63], [1259.68, 206.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1291.45, 497.27], [1295.52, 500.92], [1298.8, 497.3], [1294.74, 493.64], [1291.45, 497.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1271.47, 478.31], [1281.93, 487.74], [1286.72, 482.46], [1283.18, 479.27], [1283.77, 478.63], [1279.58, 474.86], [1279.0, 475.5], [1276.26, 473.04], [1271.47, 478.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1288.38, 470.73], [1284.93, 474.44], [1289.87, 479.02], [1293.33, 475.32], [1288.38, 470.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[734.05, 616.81], [784.33, 561.01], [772.1, 549.77], [721.39, 605.34], [734.05, 616.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 507, "jobs": 0}}, {"shape": {"outer": [[875.98, 579.34], [923.81, 527.23], [889.03, 495.55], [879.04, 506.42], [892.37, 518.57], [880.98, 530.97], [884.67, 534.34], [881.62, 537.66], [868.92, 551.49], [871.99, 554.28], [867.9, 558.73], [866.02, 557.02], [859.4, 564.23], [875.98, 579.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1333}}, {"shape": {"outer": [[-642.57, -699.46], [-635.08, -693.04], [-630.79, -698.02], [-638.27, -704.43], [-642.57, -699.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2982.88, -284.04], [-2984.74, -271.6], [-2976.24, -270.34], [-2974.38, -282.78], [-2982.88, -284.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1695.5, 877.29], [1701.79, 870.29], [1699.24, 868.02], [1700.97, 866.1], [1696.45, 862.07], [1694.72, 863.99], [1692.14, 861.69], [1690.62, 863.38], [1688.7, 861.66], [1683.94, 866.97], [1695.5, 877.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[889.57, 163.63], [895.69, 168.87], [901.39, 162.26], [898.71, 159.97], [895.27, 157.02], [889.57, 163.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[877.87, 175.7], [882.2, 179.61], [883.58, 178.1], [885.06, 179.45], [888.15, 176.05], [886.67, 174.72], [890.22, 170.83], [885.88, 166.9], [877.87, 175.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[886.99, 182.75], [895.34, 190.05], [896.96, 188.22], [899.23, 190.22], [910.48, 177.47], [899.86, 168.16], [886.99, 182.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-3105.36, 230.4], [-3103.33, 234.66], [-3099.86, 236.71], [-3093.86, 237.43], [-3081.87, 239.3], [-3070.79, 243.6], [-3059.53, 250.81], [-3053.17, 256.97], [-3048.1, 263.16], [-3044.13, 264.83], [-2948.97, 261.22], [-2950.25, 219.96], [-2956.15, 220.04], [-2956.82, 171.65], [-3029.09, 175.02], [-3033.32, 176.65], [-3037.5, 180.44], [-3040.73, 185.16], [-3041.58, 191.47], [-3042.0, 198.6], [-3043.43, 201.44], [-3045.53, 203.01], [-3049.14, 204.42], [-3053.98, 203.92], [-3056.93, 201.23], [-3059.63, 191.48], [-3061.69, 181.08], [-3062.53, 177.14], [-3065.79, 176.03], [-3107.18, 177.69], [-3105.36, 230.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7573}}, {"shape": {"outer": [[-2916.92, -1257.74], [-2912.13, -1263.25], [-2912.77, -1263.8], [-2912.52, -1264.09], [-2922.95, -1273.09], [-2923.2, -1272.8], [-2924.77, -1274.15], [-2929.56, -1268.64], [-2916.92, -1257.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2755.83, -875.16], [-2751.36, -875.26], [-2751.47, -880.1], [-2755.94, -880.01], [-2755.83, -875.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2748.88, -1241.78], [-2742.75, -1236.65], [-2738.7, -1241.46], [-2744.83, -1246.58], [-2748.88, -1241.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2699.15, -1200.79], [-2694.24, -1206.69], [-2699.53, -1211.06], [-2704.44, -1205.16], [-2699.15, -1200.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2691.75, -1192.68], [-2690.33, -1191.49], [-2684.77, -1198.04], [-2691.42, -1203.66], [-2697.0, -1197.12], [-2691.75, -1192.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2712.18, -1184.79], [-2704.28, -1178.06], [-2691.75, -1192.68], [-2697.0, -1197.12], [-2698.38, -1198.33], [-2699.92, -1196.54], [-2700.77, -1197.26], [-2703.68, -1193.87], [-2704.09, -1194.23], [-2712.18, -1184.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2744.33, -1226.93], [-2751.67, -1217.91], [-2751.0, -1217.37], [-2752.89, -1215.04], [-2744.77, -1208.49], [-2742.88, -1210.83], [-2742.56, -1210.57], [-2734.09, -1220.99], [-2739.84, -1225.63], [-2740.97, -1224.23], [-2744.33, -1226.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2833.52, -1236.81], [-2841.74, -1227.26], [-2840.9, -1226.55], [-2843.09, -1224.01], [-2835.63, -1217.65], [-2825.23, -1229.73], [-2833.52, -1236.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2846.56, -1226.3], [-2851.97, -1219.55], [-2845.08, -1214.07], [-2839.67, -1220.82], [-2846.56, -1226.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2908.81, -1267.59], [-2902.95, -1274.36], [-2908.77, -1279.37], [-2914.65, -1272.6], [-2908.81, -1267.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2902.64, -1281.38], [-2898.62, -1286.0], [-2898.35, -1285.77], [-2892.3, -1292.75], [-2893.76, -1294.01], [-2892.76, -1295.16], [-2898.71, -1300.28], [-2905.73, -1292.17], [-2904.66, -1291.25], [-2907.83, -1287.6], [-2907.48, -1287.3], [-2908.35, -1286.31], [-2902.64, -1281.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3091.47, -1294.35], [-3095.2, -1290.0], [-3092.04, -1287.32], [-3088.32, -1291.67], [-3091.47, -1294.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3087.77, -743.27], [-3080.85, -743.51], [-3081.15, -751.68], [-3088.06, -751.43], [-3087.77, -743.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-3096.0, -742.98], [-3088.15, -743.26], [-3088.41, -750.77], [-3096.28, -750.48], [-3096.0, -742.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-3127.69, -655.45], [-3127.41, -657.17], [-3127.84, -658.86], [-3128.72, -660.06], [-3129.97, -660.89], [-3130.87, -661.02], [-3131.75, -660.82], [-3132.5, -660.3], [-3133.0, -659.53], [-3133.42, -657.37], [-3132.93, -655.23], [-3131.53, -654.31], [-3129.11, -653.49], [-3128.49, -653.25], [-3128.34, -652.61], [-3128.57, -652.26], [-3128.96, -652.11], [-3131.47, -652.17], [-3132.38, -651.44], [-3132.92, -650.41], [-3133.04, -649.48], [-3132.84, -648.56], [-3129.3, -646.24], [-3127.77, -646.28], [-3121.42, -647.39], [-3120.51, -648.31], [-3120.4, -649.22], [-3120.75, -650.05], [-3122.16, -652.11], [-3122.34, -652.92], [-3121.97, -653.42], [-3120.65, -653.84], [-3120.08, -653.76], [-3119.61, -653.47], [-3119.25, -652.72], [-3119.44, -650.41], [-3119.34, -649.6], [-3118.58, -648.47], [-3117.65, -647.44], [-3116.35, -646.98], [-3115.15, -647.12], [-3114.13, -647.75], [-3113.45, -648.75], [-3113.19, -650.54], [-3113.36, -654.53], [-3113.7, -655.24], [-3114.25, -655.78], [-3115.36, -656.2], [-3116.54, -656.01], [-3118.72, -655.34], [-3119.32, -655.3], [-3119.91, -655.43], [-3120.72, -656.1], [-3121.21, -657.75], [-3121.21, -658.36], [-3120.92, -658.9], [-3120.3, -659.24], [-3119.6, -659.17], [-3117.81, -658.39], [-3117.1, -658.38], [-3116.39, -658.56], [-3113.88, -660.5], [-3113.63, -660.92], [-3113.64, -661.35], [-3113.87, -663.3], [-3114.71, -664.47], [-3114.64, -665.87], [-3115.1, -666.48], [-3116.44, -667.32], [-3119.21, -668.23], [-3121.61, -668.7], [-3122.32, -668.79], [-3122.97, -668.5], [-3123.27, -668.14], [-3126.91, -667.74], [-3126.46, -663.7], [-3126.04, -663.75], [-3126.76, -663.18], [-3127.06, -662.33], [-3126.94, -661.6], [-3126.52, -661.0], [-3125.3, -660.11], [-3124.3, -658.93], [-3123.48, -656.67], [-3123.41, -656.18], [-3123.54, -655.7], [-3124.07, -655.18], [-3125.57, -654.2], [-3126.27, -654.01], [-3126.97, -654.19], [-3127.5, -654.73], [-3127.69, -655.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-3110.03, -667.22], [-3109.67, -659.16], [-3103.23, -659.45], [-3103.58, -667.5], [-3110.03, -667.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2219.95, -1186.4], [-2213.87, -1186.81], [-2214.26, -1192.54], [-2220.32, -1192.14], [-2219.95, -1186.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2073.44, -1181.6], [-2067.7, -1181.76], [-2067.9, -1188.46], [-2073.63, -1188.29], [-2073.44, -1181.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2224.0, -951.06], [-2226.87, -953.56], [-2230.83, -949.05], [-2227.96, -946.55], [-2224.0, -951.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2276.09, -963.86], [-2272.33, -967.9], [-2275.98, -971.27], [-2279.73, -967.21], [-2276.09, -963.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2279.34, -998.06], [-2283.82, -1001.98], [-2287.98, -997.27], [-2283.5, -993.35], [-2279.34, -998.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2270.21, -989.24], [-2274.65, -984.21], [-2270.62, -980.68], [-2266.18, -985.71], [-2270.21, -989.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2323.42, -901.35], [-2318.43, -897.1], [-2314.37, -901.83], [-2319.36, -906.09], [-2323.42, -901.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2772.98, -1420.34], [-2779.04, -1413.08], [-2771.72, -1407.02], [-2765.65, -1414.28], [-2772.98, -1420.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2770.27, -1423.8], [-2760.66, -1415.82], [-2750.25, -1428.25], [-2752.38, -1430.03], [-2750.76, -1431.96], [-2756.24, -1436.51], [-2757.85, -1434.57], [-2759.86, -1436.24], [-2770.27, -1423.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-2870.66, -1483.2], [-2874.88, -1478.27], [-2868.92, -1473.2], [-2864.69, -1478.12], [-2870.66, -1483.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2867.8, -1487.23], [-2860.13, -1480.77], [-2856.21, -1485.39], [-2857.88, -1486.8], [-2856.79, -1488.08], [-2862.78, -1493.13], [-2867.8, -1487.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2991.83, -1068.91], [-2987.16, -1064.93], [-2982.56, -1070.27], [-2987.22, -1074.27], [-2991.83, -1068.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2998.19, -1071.61], [-2993.62, -1067.7], [-2989.61, -1072.35], [-2994.18, -1076.26], [-2998.19, -1071.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2980.99, -1092.1], [-2985.34, -1087.04], [-2980.28, -1082.72], [-2975.92, -1087.77], [-2980.99, -1092.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3001.2, -1087.71], [-2996.65, -1084.09], [-2992.04, -1089.86], [-2996.58, -1093.48], [-3001.2, -1087.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-3014.49, -1103.06], [-3019.31, -1107.04], [-3024.13, -1101.23], [-3019.32, -1097.25], [-3014.49, -1103.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-3070.39, -836.11], [-3064.18, -836.5], [-3064.68, -844.23], [-3070.88, -843.82], [-3070.39, -836.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2938.04, -860.0], [-2937.77, -852.36], [-2930.4, -852.61], [-2930.67, -860.26], [-2938.04, -860.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2875.15, -860.99], [-2879.98, -860.84], [-2879.77, -854.48], [-2874.94, -854.65], [-2875.15, -860.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2874.42, -861.12], [-2874.21, -854.7], [-2867.35, -854.93], [-2867.56, -861.35], [-2874.42, -861.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1783.39, -1375.37], [-1783.46, -1381.49], [-1784.24, -1381.48], [-1784.25, -1382.42], [-1791.34, -1382.34], [-1791.35, -1383.51], [-1797.38, -1383.44], [-1797.28, -1375.2], [-1783.39, -1375.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1815.34, -1394.94], [-1807.36, -1394.92], [-1807.34, -1402.42], [-1808.67, -1402.43], [-1808.65, -1406.17], [-1814.06, -1406.18], [-1814.07, -1404.02], [-1816.47, -1404.03], [-1816.48, -1399.84], [-1815.33, -1399.84], [-1815.34, -1394.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1826.29, -1401.21], [-1818.62, -1401.2], [-1818.61, -1410.19], [-1826.27, -1410.2], [-1826.29, -1401.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2099.51, -1433.18], [-2092.8, -1433.42], [-2093.06, -1440.55], [-2099.77, -1440.3], [-2099.51, -1433.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-579.29, -2665.99], [-569.44, -2666.37], [-569.94, -2679.12], [-579.78, -2678.74], [-579.29, -2665.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-758.77, -2579.14], [-758.23, -2571.85], [-752.59, -2572.27], [-753.12, -2579.54], [-758.77, -2579.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-824.04, -2577.77], [-823.4, -2569.56], [-815.68, -2570.16], [-816.32, -2578.37], [-824.04, -2577.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-813.52, -2578.77], [-812.92, -2571.12], [-804.45, -2571.77], [-805.05, -2579.43], [-813.52, -2578.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-909.21, -2572.64], [-909.0, -2566.5], [-902.74, -2566.72], [-902.95, -2572.86], [-909.21, -2572.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-918.71, -2569.4], [-918.45, -2561.84], [-910.89, -2562.11], [-911.15, -2569.67], [-918.71, -2569.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-929.07, -2555.92], [-928.89, -2550.84], [-924.83, -2550.98], [-925.01, -2556.07], [-929.07, -2555.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-953.99, -2561.26], [-947.82, -2561.48], [-948.06, -2568.39], [-954.23, -2568.18], [-953.99, -2561.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1048.15, -2559.06], [-1048.43, -2565.01], [-1052.5, -2564.82], [-1052.21, -2558.87], [-1048.15, -2559.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1028.61, -2559.05], [-1023.35, -2559.3], [-1023.67, -2566.05], [-1028.93, -2565.81], [-1028.61, -2559.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1043.75, -2557.17], [-1031.58, -2557.74], [-1031.94, -2565.46], [-1039.16, -2565.12], [-1039.21, -2566.25], [-1044.17, -2566.01], [-1043.75, -2557.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1007.42, -2577.81], [-1003.14, -2577.84], [-1003.17, -2584.75], [-1007.45, -2584.73], [-1007.42, -2577.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-977.33, -2593.32], [-972.29, -2593.53], [-972.56, -2600.25], [-977.61, -2600.04], [-977.33, -2593.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-946.18, -2599.96], [-945.95, -2594.85], [-941.2, -2595.06], [-941.43, -2600.17], [-946.18, -2599.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-941.33, -2606.14], [-941.0, -2598.84], [-934.84, -2599.11], [-935.17, -2606.42], [-941.33, -2606.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-899.5, -2699.73], [-890.07, -2700.06], [-890.33, -2707.67], [-899.77, -2707.34], [-899.5, -2699.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-869.46, -2799.82], [-861.12, -2800.25], [-861.46, -2806.96], [-869.81, -2806.53], [-869.46, -2799.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-810.25, -2847.51], [-807.06, -2840.37], [-793.13, -2846.53], [-796.32, -2853.68], [-810.25, -2847.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-812.64, -2857.56], [-809.41, -2849.89], [-799.7, -2853.95], [-802.93, -2861.61], [-812.64, -2857.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-19.24, 329.66], [-23.56, 334.33], [-19.38, 338.16], [-15.07, 333.5], [-19.24, 329.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[355.01, -68.44], [346.22, -58.74], [349.72, -55.59], [358.51, -65.29], [355.01, -68.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[363.23, -77.13], [355.49, -68.59], [358.97, -65.47], [366.71, -74.0], [363.23, -77.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[372.25, -87.43], [363.61, -77.91], [367.32, -74.58], [375.95, -84.1], [372.25, -87.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[375.41, -106.37], [366.64, -96.35], [371.37, -92.19], [372.24, -91.54], [381.0, -101.44], [375.41, -106.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[369.81, -111.12], [361.8, -102.08], [360.01, -99.93], [365.51, -95.09], [366.64, -96.35], [375.41, -106.37], [369.81, -111.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[352.2, -34.47], [362.22, -25.96], [365.64, -29.97], [368.01, -32.74], [370.28, -35.39], [374.34, -40.14], [375.91, -41.98], [375.18, -42.59], [382.44, -51.06], [373.15, -58.96], [352.2, -34.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.33, "pop": 165, "jobs": 0}}, {"shape": {"outer": [[354.16, -15.35], [359.86, -21.55], [344.25, -35.81], [338.55, -29.6], [354.16, -15.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[344.65, -7.96], [351.1, -14.51], [343.45, -21.97], [341.7, -20.19], [338.14, -23.67], [334.04, -19.49], [337.6, -16.02], [337.01, -15.42], [344.65, -7.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[318.15, -31.18], [305.53, -17.45], [312.4, -11.19], [316.36, -15.49], [317.12, -14.8], [320.71, -18.7], [324.76, -15.02], [329.82, -20.54], [318.15, -31.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[327.88, -8.74], [322.04, -2.37], [330.92, 5.71], [331.14, 5.47], [333.06, 7.23], [338.11, 1.72], [336.19, -0.04], [336.75, -0.64], [327.88, -8.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[306.96, 0.19], [322.29, 14.16], [322.55, 13.87], [324.13, 15.3], [328.84, 10.15], [327.27, 8.72], [329.09, 6.74], [313.77, -7.21], [306.96, 0.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[314.07, 25.7], [319.77, 19.48], [315.8, 15.86], [316.37, 15.23], [312.67, 11.86], [312.1, 12.48], [305.6, 6.56], [299.37, 13.35], [308.84, 21.98], [309.36, 21.41], [314.07, 25.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[293.71, -60.52], [297.98, -56.66], [297.43, -56.07], [305.62, -48.66], [311.83, -55.47], [308.9, -58.13], [310.28, -59.63], [304.46, -64.89], [303.08, -63.38], [299.38, -66.74], [296.71, -63.8], [295.39, -65.01], [292.77, -62.14], [294.09, -60.93], [293.71, -60.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[281.63, -48.3], [282.67, -47.37], [281.16, -45.7], [290.22, -37.5], [291.73, -39.17], [293.53, -37.54], [299.77, -44.38], [295.49, -48.25], [296.04, -48.85], [291.89, -52.6], [291.35, -52.0], [287.87, -55.15], [285.04, -52.04], [284.22, -52.78], [281.76, -50.09], [282.58, -49.34], [281.63, -48.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[283.53, -22.87], [288.88, -28.76], [282.76, -34.29], [283.7, -35.33], [274.05, -44.05], [267.75, -37.14], [283.53, -22.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[410.59, 255.02], [397.85, 243.65], [392.76, 249.31], [395.98, 252.19], [395.66, 252.56], [399.76, 256.21], [400.08, 255.85], [405.5, 260.69], [410.59, 255.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1993.45, 911.74], [1996.54, 914.62], [2000.91, 909.99], [1997.83, 907.1], [1993.45, 911.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1679.86, 1105.1], [1673.86, 1111.59], [1679.95, 1117.18], [1685.94, 1110.68], [1679.86, 1105.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1648.99, 1062.21], [1646.79, 1064.56], [1645.32, 1063.2], [1643.24, 1065.45], [1644.7, 1066.8], [1644.34, 1067.19], [1650.26, 1072.68], [1654.91, 1067.69], [1648.99, 1062.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1654.44, 1056.23], [1652.41, 1058.41], [1651.08, 1057.18], [1648.63, 1059.8], [1649.96, 1061.04], [1649.84, 1061.16], [1654.68, 1065.64], [1659.28, 1060.71], [1654.44, 1056.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1621.0, 1093.51], [1620.65, 1093.19], [1621.82, 1091.89], [1617.34, 1087.88], [1616.17, 1089.16], [1615.74, 1088.79], [1610.08, 1095.04], [1615.34, 1099.76], [1621.0, 1093.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1780.51, 694.24], [1779.84, 693.63], [1781.21, 692.12], [1775.93, 687.4], [1774.56, 688.92], [1773.5, 687.97], [1766.27, 695.98], [1766.93, 696.57], [1763.81, 700.03], [1768.53, 704.26], [1769.58, 705.2], [1770.16, 705.72], [1780.51, 694.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1519.4, 428.56], [1523.69, 423.9], [1518.93, 419.56], [1514.64, 424.21], [1519.4, 428.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1504.96, 443.48], [1509.56, 438.41], [1505.23, 434.51], [1500.63, 439.59], [1504.96, 443.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1500.36, 456.62], [1508.05, 448.12], [1499.9, 440.79], [1492.21, 449.29], [1492.62, 449.65], [1490.7, 451.76], [1497.59, 457.95], [1499.5, 455.84], [1500.36, 456.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1606.3, 646.3], [1603.92, 649.03], [1608.44, 652.93], [1610.82, 650.19], [1606.3, 646.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1591.71, 632.88], [1595.4, 629.0], [1591.38, 625.21], [1587.69, 629.11], [1591.71, 632.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1579.86, 615.86], [1576.58, 619.39], [1581.48, 623.91], [1584.77, 620.37], [1579.86, 615.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1566.27, 609.76], [1572.15, 615.08], [1576.89, 609.88], [1571.0, 604.56], [1566.27, 609.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1552.4, 551.58], [1546.73, 557.68], [1547.47, 558.36], [1541.8, 564.47], [1547.06, 569.32], [1558.4, 557.11], [1552.4, 551.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1497.15, 723.76], [1490.36, 731.27], [1495.68, 736.04], [1502.47, 728.54], [1497.15, 723.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1469.36, 679.28], [1475.65, 685.0], [1481.15, 679.0], [1474.86, 673.28], [1469.36, 679.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1461.73, 515.31], [1455.87, 521.57], [1465.71, 530.73], [1471.41, 524.64], [1469.58, 522.94], [1469.75, 522.77], [1461.73, 515.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1468.92, 496.47], [1465.09, 492.97], [1460.71, 497.71], [1464.55, 501.23], [1468.92, 496.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1363.7, 399.39], [1359.92, 403.61], [1362.77, 406.14], [1366.55, 401.93], [1363.7, 399.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1214.2, 270.84], [1210.55, 274.79], [1214.97, 278.85], [1218.63, 274.9], [1214.2, 270.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1135.38, 386.29], [1137.91, 388.54], [1140.84, 385.24], [1138.31, 383.01], [1135.38, 386.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[1206.72, 418.98], [1212.53, 424.33], [1218.49, 417.89], [1212.68, 412.55], [1206.72, 418.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[994.86, 241.39], [1000.42, 246.17], [1004.71, 241.23], [999.15, 236.44], [994.86, 241.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[923.94, 169.3], [928.17, 173.27], [933.45, 167.7], [931.37, 165.75], [929.21, 163.72], [923.94, 169.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1153.14, 493.66], [1147.87, 499.51], [1157.14, 507.78], [1162.4, 501.93], [1153.14, 493.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1096.52, 403.21], [1081.33, 389.32], [1073.52, 397.8], [1072.24, 396.64], [1057.65, 412.48], [1077.11, 430.27], [1085.33, 421.32], [1086.16, 422.07], [1093.1, 414.54], [1089.29, 411.07], [1096.52, 403.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.656, "pop": 328, "jobs": 0}}, {"shape": {"outer": [[1241.77, 586.45], [1248.28, 579.57], [1244.02, 575.56], [1243.58, 576.02], [1240.64, 573.27], [1234.43, 579.83], [1237.96, 583.14], [1238.08, 583.0], [1241.77, 586.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1276.97, 590.06], [1283.31, 595.85], [1290.75, 587.77], [1290.31, 587.36], [1294.09, 583.26], [1288.19, 577.87], [1287.54, 578.57], [1280.89, 585.8], [1276.97, 590.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1288.65, 675.62], [1294.4, 669.27], [1294.22, 669.11], [1296.72, 666.35], [1292.55, 662.61], [1284.31, 671.73], [1284.71, 672.09], [1283.58, 673.35], [1285.66, 675.22], [1286.8, 673.95], [1288.65, 675.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1666.7, 885.51], [1669.18, 887.74], [1677.33, 878.77], [1674.85, 876.54], [1666.7, 885.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.026, "pop": 0, "jobs": 26}}, {"shape": {"outer": [[1769.32, 976.57], [1777.88, 967.08], [1772.22, 962.02], [1769.81, 964.7], [1769.34, 964.28], [1765.77, 968.26], [1766.23, 968.68], [1763.67, 971.52], [1769.32, 976.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1784.82, 944.31], [1790.53, 949.5], [1794.2, 945.5], [1788.49, 940.31], [1784.82, 944.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1773.93, 933.95], [1776.69, 936.46], [1779.73, 933.14], [1776.97, 930.63], [1773.93, 933.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[1770.83, 929.34], [1773.57, 926.34], [1773.1, 925.91], [1775.88, 922.88], [1770.78, 918.25], [1765.26, 924.28], [1770.83, 929.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1784.8, 899.71], [1778.67, 894.14], [1768.34, 905.42], [1770.56, 907.44], [1768.16, 910.06], [1771.8, 913.37], [1773.64, 911.36], [1773.91, 911.61], [1784.8, 899.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1840.64, 889.48], [1844.6, 892.79], [1848.96, 887.6], [1844.99, 884.3], [1840.64, 889.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1873.15, 876.16], [1870.88, 874.08], [1868.41, 876.75], [1870.68, 878.83], [1873.15, 876.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[1838.72, 856.3], [1844.88, 861.7], [1849.56, 856.39], [1843.41, 850.99], [1838.72, 856.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1843.56, 835.33], [1850.56, 841.67], [1859.76, 831.57], [1858.69, 830.6], [1861.78, 827.21], [1855.87, 821.84], [1843.56, 835.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1809.35, 830.03], [1815.34, 835.03], [1819.99, 829.51], [1814.01, 824.51], [1809.35, 830.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1797.56, 803.82], [1804.81, 810.18], [1804.94, 810.03], [1807.87, 812.59], [1812.7, 807.13], [1809.51, 804.33], [1809.93, 803.87], [1805.59, 800.08], [1805.18, 800.54], [1802.09, 797.83], [1798.66, 801.72], [1799.09, 802.09], [1797.56, 803.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1731.66, 1033.05], [1727.28, 1038.09], [1731.27, 1041.54], [1735.66, 1036.5], [1731.66, 1033.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1726.79, 1028.87], [1721.98, 1034.4], [1726.64, 1038.44], [1731.46, 1032.91], [1726.79, 1028.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1671.67, 979.43], [1666.18, 985.42], [1672.01, 990.74], [1677.51, 984.75], [1671.67, 979.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-744.52, 55.08], [-759.31, 42.26], [-760.61, 43.74], [-761.97, 42.55], [-764.42, 45.36], [-763.11, 46.5], [-763.92, 47.42], [-758.9, 51.77], [-759.41, 52.36], [-749.59, 60.87], [-744.52, 55.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-670.46, 38.23], [-662.66, 45.1], [-680.92, 65.68], [-682.81, 65.72], [-683.8, 64.83], [-683.93, 63.05], [-683.04, 62.04], [-684.96, 60.34], [-685.9, 61.39], [-687.43, 61.42], [-688.61, 60.38], [-688.85, 58.96], [-670.46, 38.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[268.71, -3138.43], [271.9, -3137.67], [274.75, -3136.06], [277.04, -3133.74], [278.6, -3130.87], [279.3, -3127.69], [279.1, -3124.44], [278.01, -3121.36], [276.1, -3118.71], [273.24, -3116.51], [269.85, -3115.28], [266.24, -3115.15], [262.77, -3116.1], [259.74, -3118.07], [257.46, -3120.85], [256.22, -3123.81], [255.84, -3126.99], [256.34, -3130.15], [257.68, -3133.07], [259.77, -3135.52], [262.44, -3137.29], [265.5, -3138.29], [268.71, -3138.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.342, "pop": 171, "jobs": 0}}, {"shape": {"outer": [[251.81, -3065.4], [252.59, -3069.25], [254.4, -3072.72], [257.11, -3075.57], [260.49, -3077.56], [264.29, -3078.56], [268.22, -3078.47], [271.97, -3077.31], [275.07, -3075.33], [277.54, -3072.62], [279.23, -3069.38], [280.03, -3065.81], [279.88, -3062.15], [278.79, -3058.65], [276.83, -3055.56], [274.15, -3053.07], [270.9, -3051.35], [267.49, -3050.54], [263.98, -3050.59], [260.59, -3051.49], [257.52, -3053.21], [254.99, -3055.62], [253.12, -3058.58], [252.04, -3061.92], [251.81, -3065.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.496, "pop": 248, "jobs": 0}}, {"shape": {"outer": [[217.48, -3071.98], [218.02, -3075.6], [219.48, -3078.97], [221.77, -3081.86], [224.7, -3084.06], [228.12, -3085.44], [231.77, -3085.91], [235.43, -3085.42], [238.82, -3084.02], [241.76, -3081.8], [244.05, -3078.84], [245.49, -3075.39], [245.98, -3071.68], [245.47, -3067.98], [244.02, -3064.54], [241.72, -3061.58], [238.73, -3059.34], [235.27, -3057.95], [231.56, -3057.52], [227.86, -3058.04], [224.43, -3059.51], [221.5, -3061.82], [219.27, -3064.81], [217.9, -3068.28], [217.48, -3071.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.402, "pop": 0, "jobs": 402}}, {"shape": {"outer": [[-1331.68, -2171.65], [-1340.76, -2176.75], [-1324.27, -2205.88], [-1315.18, -2200.77], [-1331.68, -2171.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[-216.89, 269.36], [-213.56, 265.61], [-213.82, 265.37], [-210.52, 261.65], [-209.92, 262.18], [-206.85, 258.72], [-206.34, 259.18], [-204.55, 257.16], [-200.05, 261.13], [-201.86, 263.17], [-201.23, 263.74], [-210.9, 274.63], [-216.89, 269.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2937.16, -1039.9], [-2936.56, -1045.01], [-2941.91, -1045.64], [-2942.51, -1040.53], [-2937.16, -1039.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1197.52, -2228.06], [-1204.84, -2227.67], [-1204.4, -2219.7], [-1197.08, -2220.1], [-1197.52, -2228.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1197.07, -2199.89], [-1196.75, -2192.5], [-1190.09, -2192.79], [-1190.4, -2200.17], [-1197.07, -2199.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1213.26, -2206.73], [-1206.29, -2206.91], [-1206.44, -2213.07], [-1213.41, -2212.91], [-1213.26, -2206.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1472.6, -1787.7], [-1479.99, -1787.49], [-1479.79, -1780.25], [-1472.38, -1780.47], [-1472.6, -1787.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1526.99, -1660.39], [-1527.25, -1670.19], [-1547.4, -1669.66], [-1547.14, -1659.86], [-1526.99, -1660.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.126, "pop": 0, "jobs": 126}}, {"shape": {"outer": [[-1526.5, -1641.82], [-1526.99, -1660.39], [-1547.14, -1659.86], [-1549.69, -1659.8], [-1549.2, -1641.23], [-1526.5, -1641.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.27, "pop": 0, "jobs": 270}}, {"shape": {"outer": [[-1549.2, -1641.23], [-1526.5, -1641.82], [-1526.01, -1623.42], [-1548.72, -1622.83], [-1549.2, -1641.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.268, "pop": 0, "jobs": 268}}, {"shape": {"outer": [[-1460.49, -1561.28], [-1467.5, -1561.2], [-1467.42, -1553.49], [-1460.4, -1553.55], [-1460.49, -1561.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1467.59, -1563.91], [-1461.57, -1563.97], [-1461.64, -1570.51], [-1467.65, -1570.45], [-1467.59, -1563.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1463.44, -1685.45], [-1463.45, -1690.03], [-1469.6, -1690.02], [-1469.59, -1685.44], [-1463.44, -1685.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1604.45, -1336.57], [-1604.35, -1330.66], [-1600.43, -1330.72], [-1600.51, -1336.63], [-1604.45, -1336.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1562.39, -1292.42], [-1555.4, -1292.66], [-1555.69, -1300.77], [-1562.68, -1300.52], [-1562.39, -1292.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1525.0, -1540.58], [-1525.19, -1548.41], [-1544.69, -1547.96], [-1544.59, -1543.79], [-1541.15, -1543.87], [-1541.12, -1542.64], [-1539.59, -1542.67], [-1539.53, -1540.25], [-1525.0, -1540.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.087, "pop": 0, "jobs": 87}}, {"shape": {"outer": [[-1525.63, -1583.1], [-1526.02, -1597.83], [-1548.9, -1597.24], [-1548.5, -1582.49], [-1525.63, -1583.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.216, "pop": 0, "jobs": 216}}, {"shape": {"outer": [[-1525.39, -1574.17], [-1525.63, -1583.1], [-1548.5, -1582.49], [-1552.32, -1582.39], [-1552.08, -1573.46], [-1543.82, -1573.67], [-1525.39, -1574.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.153, "pop": 0, "jobs": 153}}, {"shape": {"outer": [[-1543.49, -1560.89], [-1525.06, -1561.37], [-1525.39, -1574.17], [-1543.82, -1573.67], [-1543.49, -1560.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.151, "pop": 0, "jobs": 151}}, {"shape": {"outer": [[-1522.08, -1418.22], [-1522.32, -1427.5], [-1530.79, -1427.28], [-1530.55, -1418.0], [-1522.08, -1418.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.05, "pop": 0, "jobs": 50}}, {"shape": {"outer": [[-1537.88, -1411.52], [-1521.92, -1411.94], [-1522.08, -1418.22], [-1530.55, -1418.0], [-1539.33, -1417.77], [-1539.16, -1411.49], [-1537.88, -1411.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.069, "pop": 0, "jobs": 69}}, {"shape": {"outer": [[-1521.68, -1403.01], [-1521.92, -1411.94], [-1537.88, -1411.52], [-1537.64, -1402.59], [-1521.68, -1403.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[-1521.51, -1396.4], [-1521.68, -1403.01], [-1537.64, -1402.59], [-1545.42, -1402.39], [-1545.24, -1395.77], [-1539.89, -1395.92], [-1521.51, -1396.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.101, "pop": 0, "jobs": 101}}, {"shape": {"outer": [[-1521.36, -1390.65], [-1521.51, -1396.4], [-1539.89, -1395.92], [-1539.74, -1390.16], [-1521.36, -1390.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.068, "pop": 0, "jobs": 68}}, {"shape": {"outer": [[-1521.36, -1390.65], [-1521.12, -1381.35], [-1540.48, -1380.85], [-1540.72, -1390.14], [-1539.74, -1390.16], [-1521.36, -1390.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.115, "pop": 0, "jobs": 115}}, {"shape": {"outer": [[-1578.95, -813.06], [-1577.96, -813.08], [-1577.91, -811.43], [-1574.59, -811.51], [-1574.64, -813.2], [-1570.51, -813.31], [-1570.72, -821.22], [-1572.45, -821.19], [-1572.48, -822.53], [-1575.95, -822.44], [-1575.91, -820.99], [-1579.15, -820.89], [-1578.95, -813.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1524.9, -474.94], [-1525.52, -487.56], [-1532.15, -487.24], [-1531.93, -482.67], [-1532.55, -482.64], [-1532.32, -477.93], [-1531.7, -477.96], [-1531.54, -474.62], [-1524.9, -474.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1523.08, -487.43], [-1522.37, -472.85], [-1513.02, -473.3], [-1513.74, -487.89], [-1523.08, -487.43]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-1508.94, -469.71], [-1518.49, -469.25], [-1518.01, -459.16], [-1508.45, -459.62], [-1508.94, -469.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1519.15, -442.77], [-1508.53, -443.28], [-1509.01, -453.08], [-1519.62, -452.57], [-1519.15, -442.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1536.35, -439.23], [-1526.02, -439.73], [-1526.56, -450.71], [-1536.87, -450.21], [-1536.85, -449.62], [-1538.73, -449.52], [-1538.27, -440.2], [-1536.39, -440.29], [-1536.35, -439.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1593.72, -723.44], [-1587.61, -723.71], [-1587.75, -726.97], [-1593.85, -726.71], [-1593.72, -723.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1681.72, -700.86], [-1680.98, -690.16], [-1679.92, -690.23], [-1679.79, -688.35], [-1670.57, -688.98], [-1670.7, -690.87], [-1669.74, -690.93], [-1670.49, -701.64], [-1681.72, -700.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1694.24, -698.22], [-1693.78, -687.04], [-1684.91, -687.41], [-1685.37, -698.58], [-1694.24, -698.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1705.6, -685.78], [-1697.27, -685.97], [-1697.72, -706.34], [-1706.06, -706.15], [-1705.6, -685.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1406.43, -1225.16], [-1422.03, -1224.77], [-1422.29, -1235.55], [-1406.7, -1235.93], [-1406.43, -1225.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[661.46, 67.93], [663.41, 65.78], [702.06, 100.57], [722.66, 119.12], [697.3, 147.08], [623.41, 80.53], [646.81, 54.73], [656.38, 63.35], [661.46, 67.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2365}}, {"shape": {"outer": [[1868.14, 1608.93], [1869.69, 1610.35], [1894.12, 1632.62], [1919.1, 1605.41], [1935.05, 1588.05], [1913.68, 1568.56], [1911.61, 1570.81], [1907.0, 1566.6], [1868.14, 1608.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1350}}, {"shape": {"outer": [[1002.24, 1039.66], [1044.39, 993.0], [1041.27, 989.86], [1054.72, 975.78], [1043.67, 966.15], [1046.92, 962.82], [1005.49, 925.72], [938.49, 992.86], [980.72, 1031.05], [991.59, 1040.13], [996.16, 1044.48], [1001.05, 1039.65], [1001.52, 1039.0], [1002.24, 1039.66]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 13597, "jobs": 0}}, {"shape": {"outer": [[854.38, 720.69], [830.89, 699.8], [831.68, 698.97], [827.58, 695.54], [824.31, 699.53], [808.71, 686.16], [835.49, 656.09], [839.61, 659.78], [841.56, 657.64], [847.16, 662.21], [845.32, 665.08], [850.59, 670.39], [837.57, 684.57], [841.13, 687.47], [843.43, 685.23], [848.02, 689.19], [849.8, 687.77], [856.63, 693.76], [858.65, 691.61], [862.09, 687.95], [866.55, 683.21], [872.73, 688.85], [868.29, 693.66], [864.8, 697.45], [863.08, 699.31], [866.65, 702.66], [864.24, 704.91], [867.04, 707.19], [854.38, 720.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1090}}, {"shape": {"outer": [[-721.86, -569.5], [-725.46, -565.55], [-727.21, -567.13], [-728.99, -565.17], [-735.42, -570.98], [-730.03, -576.9], [-721.86, -569.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-588.86, -762.77], [-603.27, -775.94], [-592.7, -787.75], [-577.95, -774.34], [-588.86, -762.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[-1042.24, -423.77], [-1029.99, -424.24], [-1029.5, -411.43], [-1041.76, -410.96], [-1042.24, -423.77]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.088, "pop": 0, "jobs": 88}}, {"shape": {"outer": [[-639.95, -386.76], [-640.47, -387.22], [-644.05, -383.2], [-650.55, -388.95], [-640.14, -400.63], [-634.05, -395.24], [-637.8, -391.04], [-636.88, -390.22], [-639.95, -386.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-169.96, -532.36], [-144.87, -533.7], [-146.48, -570.3], [-176.98, -537.08], [-173.52, -533.86], [-172.62, -534.91], [-169.96, -532.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.52, "pop": 260, "jobs": 0}}, {"shape": {"outer": [[-1752.8, -187.79], [-1750.47, -185.99], [-1747.6, -187.23], [-1747.25, -190.03], [-1749.87, -191.73], [-1752.33, -190.59], [-1752.8, -187.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.014, "pop": 0, "jobs": 14}}, {"shape": {"outer": [[-1314.27, -580.06], [-1337.39, -578.91], [-1337.78, -578.59], [-1338.21, -577.88], [-1336.41, -550.26], [-1339.69, -550.12], [-1340.04, -549.66], [-1338.62, -524.66], [-1286.42, -522.33], [-1213.51, -531.22], [-1216.02, -588.85], [-1279.56, -585.6], [-1294.09, -584.86], [-1308.93, -583.95], [-1308.78, -580.23], [-1314.27, -580.06]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8231}}, {"shape": {"outer": [[-1248.31, -767.45], [-1258.71, -790.37], [-1261.45, -789.13], [-1262.99, -792.51], [-1273.97, -787.53], [-1280.37, -784.62], [-1280.56, -785.04], [-1280.87, -785.71], [-1298.16, -777.86], [-1297.7, -776.86], [-1346.61, -754.68], [-1343.9, -748.76], [-1346.75, -747.46], [-1342.6, -738.39], [-1339.96, -739.59], [-1331.26, -720.55], [-1263.19, -751.42], [-1264.65, -754.64], [-1255.62, -758.7], [-1257.68, -763.24], [-1248.31, -767.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2219}}, {"shape": {"outer": [[2045.94, 872.88], [2041.3, 868.55], [2036.71, 873.46], [2041.34, 877.8], [2045.94, 872.88]], "holes": []}, "height": 5.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1052.02, 328.07], [1061.28, 317.39], [1056.91, 313.63], [1057.93, 312.45], [1056.04, 310.82], [1055.02, 312.01], [1054.68, 311.71], [1045.43, 322.38], [1052.02, 328.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[566.85, 656.86], [576.54, 646.06], [630.23, 694.2], [626.3, 698.19], [627.17, 698.82], [621.98, 704.3], [604.8, 688.83], [603.72, 689.86], [583.23, 671.56], [584.36, 670.41], [576.48, 663.39], [575.4, 664.22], [566.85, 656.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.798, "pop": 399, "jobs": 0}}, {"shape": {"outer": [[630.7, 714.5], [636.55, 707.93], [637.46, 708.88], [638.25, 708.21], [700.22, 764.25], [700.98, 763.57], [705.16, 767.36], [698.02, 775.27], [652.46, 734.07], [630.7, 714.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.706, "pop": 353, "jobs": 0}}, {"shape": {"outer": [[-2947.46, -2908.58], [-2929.4, -2903.44], [-2927.0, -2911.85], [-2943.87, -2916.64], [-2943.02, -2919.57], [-2947.55, -2920.86], [-2949.12, -2915.4], [-2945.78, -2914.45], [-2947.46, -2908.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2174.81, 1730.12], [2182.28, 1739.78], [2182.87, 1739.49], [2184.07, 1741.14], [2183.74, 1741.43], [2189.4, 1748.34], [2190.74, 1747.44], [2192.38, 1749.35], [2191.15, 1750.41], [2195.97, 1756.59], [2197.25, 1755.63], [2199.17, 1757.65], [2197.83, 1758.83], [2205.63, 1768.25], [2210.23, 1764.53], [2210.72, 1764.83], [2218.91, 1756.66], [2217.5, 1755.12], [2219.84, 1752.66], [2218.54, 1751.5], [2220.73, 1749.48], [2221.85, 1750.64], [2227.42, 1744.83], [2226.19, 1743.6], [2228.37, 1741.59], [2229.61, 1742.86], [2231.84, 1740.46], [2233.35, 1741.73], [2244.7, 1729.81], [2240.88, 1726.16], [2239.54, 1726.96], [2237.52, 1725.0], [2238.96, 1723.71], [2231.27, 1716.48], [2230.32, 1717.54], [2228.29, 1715.57], [2229.52, 1714.35], [2219.24, 1704.57], [2218.13, 1705.63], [2215.84, 1703.68], [2217.23, 1702.61], [2205.77, 1691.44], [2191.49, 1706.32], [2197.23, 1712.1], [2199.24, 1709.92], [2201.49, 1712.08], [2200.26, 1713.2], [2209.76, 1722.74], [2211.26, 1721.44], [2213.28, 1723.56], [2211.95, 1724.69], [2214.35, 1726.8], [2204.91, 1736.64], [2202.65, 1734.15], [2201.44, 1735.49], [2199.36, 1733.37], [2201.43, 1731.3], [2188.01, 1718.24], [2180.8, 1724.26], [2181.15, 1724.79], [2174.81, 1730.12]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1604, "jobs": 0}}, {"shape": {"outer": [[2311.5, 1840.37], [2291.35, 1820.63], [2300.33, 1811.75], [2302.41, 1813.71], [2303.43, 1812.03], [2321.6, 1829.91], [2311.5, 1840.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[1394.81, 1613.6], [1397.98, 1616.56], [1401.94, 1612.33], [1398.76, 1609.38], [1394.81, 1613.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1446.79, 1589.49], [1453.42, 1595.5], [1468.07, 1579.4], [1461.44, 1573.41], [1446.79, 1589.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[1501.23, 1531.19], [1494.25, 1524.9], [1469.37, 1552.32], [1476.36, 1558.62], [1501.23, 1531.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[1482.86, 1564.48], [1507.74, 1537.06], [1501.23, 1531.19], [1476.36, 1558.62], [1482.86, 1564.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[1514.53, 1543.18], [1507.74, 1537.06], [1482.86, 1564.48], [1489.66, 1570.6], [1514.53, 1543.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[1496.68, 1576.91], [1521.55, 1549.5], [1514.53, 1543.18], [1489.66, 1570.6], [1496.68, 1576.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[1993.51, 1212.3], [1986.28, 1218.18], [1992.28, 1225.52], [1999.52, 1219.64], [1993.51, 1212.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1817.62, 669.75], [1817.71, 669.83], [1815.19, 672.58], [1821.73, 678.53], [1830.78, 668.65], [1830.36, 668.27], [1831.62, 666.89], [1826.7, 662.42], [1825.44, 663.8], [1825.0, 663.4], [1822.17, 666.48], [1821.32, 665.71], [1817.62, 669.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1306.04, 1295.42], [1310.31, 1299.33], [1314.44, 1294.86], [1310.18, 1290.95], [1306.04, 1295.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1095.47, 1374.53], [1098.99, 1377.63], [1102.59, 1373.56], [1099.06, 1370.46], [1095.47, 1374.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1159.54, 1393.0], [1161.88, 1390.48], [1162.25, 1390.82], [1164.22, 1388.69], [1164.9, 1389.31], [1165.62, 1388.52], [1165.95, 1388.83], [1169.59, 1384.89], [1168.6, 1383.97], [1171.35, 1380.99], [1166.21, 1376.28], [1159.76, 1383.26], [1160.61, 1384.04], [1155.64, 1389.42], [1159.54, 1393.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[980.75, 1149.41], [974.17, 1143.44], [966.55, 1151.77], [973.14, 1157.75], [980.75, 1149.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1135.45, 1252.95], [1139.12, 1249.06], [1127.05, 1237.77], [1123.39, 1241.66], [1135.45, 1252.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1102.02, 1215.05], [1109.23, 1221.34], [1113.96, 1215.97], [1106.76, 1209.68], [1105.49, 1211.1], [1101.16, 1207.31], [1097.94, 1210.96], [1102.29, 1214.75], [1102.02, 1215.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1113.97, 1215.79], [1117.82, 1211.41], [1110.72, 1205.2], [1110.1, 1205.9], [1107.37, 1203.51], [1105.0, 1206.22], [1107.81, 1208.68], [1106.95, 1209.65], [1113.97, 1215.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1124.86, 1192.22], [1117.76, 1186.18], [1110.94, 1194.14], [1118.04, 1200.19], [1124.86, 1192.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-693.77, -105.98], [-695.02, -130.65], [-697.82, -130.46], [-698.63, -146.35], [-680.79, -147.27], [-673.0, -140.53], [-668.28, -140.73], [-658.48, -151.36], [-658.29, -151.89], [-658.3, -152.54], [-658.56, -153.11], [-712.69, -202.01], [-716.69, -205.62], [-717.81, -206.63], [-718.42, -206.9], [-719.06, -206.96], [-719.6, -206.79], [-721.89, -208.86], [-734.69, -194.78], [-747.69, -180.47], [-759.97, -191.55], [-760.53, -192.05], [-762.79, -189.56], [-764.73, -191.3], [-773.64, -181.47], [-772.22, -180.19], [-777.45, -174.44], [-778.85, -175.69], [-788.55, -165.02], [-742.99, -123.93], [-741.36, -125.73], [-740.16, -124.65], [-741.73, -122.93], [-721.37, -104.63], [-715.55, -104.92], [-715.58, -105.64], [-707.9, -106.03], [-707.87, -105.29], [-693.77, -105.98]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 11865, "jobs": 0}}, {"shape": {"outer": [[2133.98, 2321.59], [2130.16, 2317.75], [2125.91, 2321.95], [2129.73, 2325.79], [2133.98, 2321.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[801.14, 544.64], [807.69, 550.61], [800.98, 557.9], [806.37, 562.83], [798.17, 571.74], [800.83, 574.18], [784.01, 592.48], [769.41, 579.16], [801.14, 544.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.496, "pop": 0, "jobs": 496}}, {"shape": {"outer": [[505.53, 1098.16], [513.89, 1105.8], [507.25, 1113.0], [498.89, 1105.36], [505.53, 1098.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[319.8, 1008.68], [310.47, 1018.73], [318.98, 1025.91], [328.09, 1015.84], [319.8, 1008.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[401.86, 776.83], [414.66, 762.54], [420.56, 767.8], [407.76, 782.08], [401.86, 776.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[560.45, 760.55], [566.5, 753.46], [570.45, 756.8], [564.41, 763.91], [560.45, 760.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[601.19, 928.83], [605.49, 924.12], [598.69, 917.96], [594.4, 922.68], [601.19, 928.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[425.37, 932.28], [437.05, 919.8], [441.33, 923.77], [429.65, 936.25], [425.37, 932.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[431.51, 937.74], [438.42, 929.71], [439.15, 930.33], [443.36, 925.42], [448.18, 929.53], [437.07, 942.47], [431.51, 937.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[476.5, 846.38], [488.19, 833.6], [491.46, 836.67], [479.56, 848.99], [476.5, 846.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.047, "pop": 0, "jobs": 47}}, {"shape": {"outer": [[377.67, 751.72], [393.32, 734.51], [378.33, 720.98], [373.88, 725.88], [367.26, 719.91], [371.93, 714.76], [364.87, 708.4], [355.24, 718.93], [354.02, 720.3], [351.67, 722.94], [353.52, 724.61], [350.54, 727.88], [355.03, 731.91], [356.31, 730.51], [358.58, 732.56], [356.96, 734.35], [362.24, 739.09], [363.41, 737.8], [365.13, 739.34], [363.92, 740.69], [369.29, 745.5], [370.57, 744.09], [372.69, 745.98], [371.27, 747.55], [374.47, 750.4], [377.67, 751.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.543, "pop": 0, "jobs": 543}}, {"shape": {"outer": [[361.23, 704.61], [353.51, 697.55], [348.75, 702.72], [343.52, 697.93], [346.51, 694.69], [345.24, 693.53], [346.39, 692.29], [331.91, 679.04], [329.71, 681.44], [330.39, 682.06], [327.5, 685.2], [326.37, 684.17], [317.82, 693.45], [318.62, 694.18], [315.71, 697.34], [321.21, 702.37], [322.81, 700.64], [324.36, 702.06], [322.91, 703.64], [328.38, 708.65], [330.04, 706.84], [331.86, 708.5], [330.41, 710.07], [335.65, 714.89], [337.03, 713.4], [338.84, 715.04], [337.5, 716.49], [342.49, 721.09], [343.46, 720.04], [342.78, 719.4], [344.56, 717.46], [347.16, 719.84], [349.98, 716.77], [351.19, 715.39], [361.23, 704.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.559, "pop": 0, "jobs": 559}}, {"shape": {"outer": [[349.98, 716.77], [354.02, 720.3], [355.24, 718.93], [351.19, 715.39], [349.98, 716.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[237.52, 681.72], [246.85, 671.84], [240.29, 665.69], [230.95, 675.56], [237.52, 681.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1803.66, -530.62], [-1772.89, -531.73], [-1772.67, -526.84], [-1769.08, -526.94], [-1768.76, -518.4], [-1771.93, -518.3], [-1771.36, -501.32], [-1824.44, -499.57], [-1824.54, -503.01], [-1848.4, -502.22], [-1848.87, -515.88], [-1856.68, -515.65], [-1858.54, -568.95], [-1868.63, -568.55], [-1869.48, -592.31], [-1836.02, -593.49], [-1835.31, -574.28], [-1824.32, -574.71], [-1824.04, -567.72], [-1804.99, -568.37], [-1803.66, -530.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3412}}, {"shape": {"outer": [[-1840.79, -597.8], [-1849.74, -597.54], [-1849.69, -595.77], [-1868.91, -595.22], [-1869.43, -613.43], [-1841.26, -614.35], [-1840.79, -597.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.319, "pop": 0, "jobs": 319}}, {"shape": {"outer": [[-915.78, -820.1], [-881.38, -789.15], [-901.54, -766.91], [-935.94, -797.85], [-915.78, -820.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 556, "jobs": 0}}, {"shape": {"outer": [[1429.52, 871.88], [1428.44, 870.23], [1430.11, 869.16], [1431.18, 870.77], [1429.52, 871.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2385.51, 1218.97], [2389.8, 1222.84], [2392.37, 1220.02], [2388.07, 1216.15], [2385.51, 1218.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2387.04, 1215.1], [2392.08, 1219.63], [2394.5, 1216.84], [2389.52, 1212.36], [2387.04, 1215.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2254.05, 1247.95], [2258.04, 1251.43], [2260.78, 1248.32], [2256.79, 1244.84], [2254.05, 1247.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2254.0, 1235.52], [2262.85, 1243.38], [2266.92, 1238.83], [2258.07, 1230.97], [2254.0, 1235.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2294.01, 1196.51], [2289.49, 1201.68], [2294.08, 1205.67], [2298.6, 1200.51], [2294.01, 1196.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2316.01, 1150.39], [2320.92, 1154.8], [2325.37, 1149.89], [2320.46, 1145.48], [2316.01, 1150.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[591.68, 478.68], [599.48, 476.4], [623.5, 497.72], [615.4, 500.43], [591.68, 478.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[2160.1, 1891.87], [2163.55, 1895.41], [2168.18, 1890.93], [2164.72, 1887.39], [2160.1, 1891.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2155.13, 1880.31], [2160.23, 1885.18], [2164.37, 1880.87], [2159.27, 1876.0], [2155.13, 1880.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1963.66, 1872.83], [1970.34, 1879.01], [1975.04, 1873.96], [1968.37, 1867.78], [1963.66, 1872.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1683.37, 1146.31], [1668.74, 1132.82], [1652.4, 1150.43], [1667.03, 1163.91], [1683.37, 1146.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.306, "pop": 0, "jobs": 306}}, {"shape": {"outer": [[1691.1, 1153.43], [1683.37, 1146.31], [1667.03, 1163.91], [1674.75, 1171.03], [1676.99, 1168.63], [1691.1, 1153.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.162, "pop": 0, "jobs": 162}}, {"shape": {"outer": [[1698.03, 1159.82], [1691.1, 1153.43], [1676.99, 1168.63], [1683.92, 1175.03], [1698.03, 1159.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[1698.03, 1159.82], [1683.92, 1175.03], [1681.76, 1177.34], [1689.11, 1184.12], [1705.38, 1166.6], [1698.03, 1159.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.153, "pop": 0, "jobs": 153}}, {"shape": {"outer": [[-714.75, -580.46], [-686.84, -610.46], [-730.95, -651.21], [-759.06, -621.0], [-746.21, -609.13], [-743.06, -612.52], [-727.89, -598.5], [-730.85, -595.33], [-714.75, -580.46]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 2079, "jobs": 0}}, {"shape": {"outer": [[1925.66, 1195.79], [1930.18, 1200.86], [1921.26, 1208.76], [1916.73, 1203.7], [1925.66, 1195.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-969.06, -343.79], [-969.76, -360.86], [-960.74, -361.26], [-962.13, -390.22], [-943.12, -390.78], [-943.11, -388.66], [-939.17, -387.86], [-935.78, -386.99], [-932.94, -386.0], [-929.9, -384.75], [-926.54, -383.24], [-923.78, -381.93], [-921.95, -380.76], [-919.97, -379.45], [-918.63, -380.99], [-903.73, -368.72], [-924.95, -345.36], [-969.06, -343.79]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 4501, "jobs": 0}}, {"shape": {"outer": [[-674.62, -1065.76], [-640.74, -1035.77], [-640.0, -1026.65], [-659.81, -1025.43], [-667.3, -1032.12], [-673.92, -1024.84], [-694.58, -1043.65], [-674.62, -1065.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.966, "pop": 483, "jobs": 0}}, {"shape": {"outer": [[-1117.51, -821.83], [-1124.68, -837.64], [-1195.21, -805.86], [-1202.74, -822.44], [-1217.67, -815.71], [-1218.06, -816.58], [-1220.71, -815.39], [-1220.36, -814.64], [-1229.84, -810.36], [-1230.21, -811.16], [-1232.61, -810.08], [-1232.28, -809.35], [-1246.31, -802.99], [-1236.64, -781.8], [-1229.95, -767.17], [-1229.39, -765.92], [-1218.99, -770.63], [-1196.93, -780.63], [-1187.7, -784.81], [-1176.9, -789.71], [-1175.94, -792.48], [-1173.21, -791.55], [-1146.19, -804.05], [-1125.99, -813.4], [-1124.17, -818.84], [-1117.51, -821.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1436, "jobs": 0}}, {"shape": {"outer": [[-510.49, 358.32], [-506.81, 354.01], [-500.38, 359.46], [-504.06, 363.77], [-510.49, 358.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2700.81, 2766.46], [2693.73, 2773.51], [2687.78, 2767.57], [2694.86, 2760.53], [2700.81, 2766.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2700.38, 2743.41], [2694.28, 2750.1], [2690.01, 2746.23], [2696.11, 2739.54], [2700.38, 2743.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2792.56, 1568.01], [2792.49, 1574.87], [2788.43, 1574.82], [2788.51, 1567.96], [2792.56, 1568.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2866.63, 2610.86], [2875.58, 2605.94], [2875.01, 2603.73], [2878.36, 2602.42], [2879.67, 2605.25], [2897.49, 2598.36], [2920.94, 2589.02], [2917.06, 2579.37], [2913.66, 2570.91], [2873.33, 2587.26], [2857.99, 2561.91], [2825.33, 2530.94], [2823.01, 2533.3], [2820.33, 2530.14], [2809.48, 2541.44], [2844.98, 2574.12], [2855.55, 2591.05], [2866.63, 2610.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 986, "jobs": 0}}, {"shape": {"outer": [[219.18, 252.15], [203.7, 238.57], [211.24, 230.05], [200.66, 220.77], [193.75, 228.6], [179.09, 215.74], [201.26, 190.65], [214.02, 201.85], [212.17, 203.93], [226.11, 216.17], [228.08, 213.94], [242.08, 226.23], [219.18, 252.15]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 2864, "jobs": 0}}, {"shape": {"outer": [[758.67, 204.41], [774.39, 218.36], [775.66, 216.92], [776.88, 217.86], [775.94, 219.18], [795.34, 236.72], [796.4, 235.72], [797.05, 236.28], [797.74, 236.87], [796.9, 238.09], [813.52, 253.21], [815.6, 250.88], [820.69, 245.24], [823.31, 242.32], [822.19, 240.94], [824.93, 237.84], [816.91, 230.26], [816.11, 229.53], [817.8, 227.64], [816.64, 226.63], [806.21, 217.57], [818.96, 203.67], [816.12, 200.91], [813.89, 198.74], [839.09, 170.46], [813.0, 145.78], [758.67, 204.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1507, "jobs": 0}}, {"shape": {"outer": [[-2862.9, -549.88], [-2865.79, -546.31], [-2867.09, -547.35], [-2868.13, -546.04], [-2868.55, -546.38], [-2870.05, -544.53], [-2869.63, -544.19], [-2875.18, -537.3], [-2871.85, -534.63], [-2868.6, -538.64], [-2867.39, -537.67], [-2866.55, -538.71], [-2864.69, -537.22], [-2863.55, -538.63], [-2862.68, -537.94], [-2859.87, -541.42], [-2860.74, -542.12], [-2857.79, -545.78], [-2862.9, -549.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[615.74, 460.52], [626.35, 470.33], [624.69, 472.17], [622.57, 474.49], [612.16, 464.95], [613.94, 462.75], [615.74, 460.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.052, "pop": 0, "jobs": 52}}, {"shape": {"outer": [[-1487.87, -855.67], [-1373.78, -860.98], [-1373.11, -848.33], [-1374.7, -848.21], [-1374.4, -845.58], [-1386.73, -844.58], [-1386.75, -842.87], [-1401.19, -841.69], [-1410.03, -839.43], [-1433.83, -838.53], [-1433.58, -835.27], [-1445.46, -834.8], [-1485.63, -826.34], [-1487.83, -851.87], [-1487.87, -855.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1569}}, {"shape": {"outer": [[-72.67, -650.78], [-43.87, -624.5], [-54.77, -612.64], [-93.11, -570.89], [-121.91, -597.16], [-72.67, -650.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1135, "jobs": 0}}, {"shape": {"outer": [[-1119.99, -979.9], [-1107.72, -992.88], [-1080.1, -967.83], [-1100.29, -944.05], [-1135.48, -929.7], [-1143.12, -948.3], [-1112.46, -960.8], [-1106.96, -967.28], [-1119.99, -979.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 648, "jobs": 0}}, {"shape": {"outer": [[-1190.14, -2347.77], [-1163.61, -2332.43], [-1171.6, -2318.06], [-1177.11, -2321.37], [-1200.07, -2283.9], [-1226.66, -2283.02], [-1190.14, -2347.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 678, "jobs": 0}}, {"shape": {"outer": [[-1197.91, -2469.74], [-1170.88, -2454.85], [-1161.88, -2470.87], [-1152.28, -2487.95], [-1143.0, -2504.45], [-1168.93, -2519.73], [-1197.91, -2469.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 699, "jobs": 0}}, {"shape": {"outer": [[772.19, 588.92], [752.81, 610.31], [749.07, 606.94], [747.14, 609.08], [744.01, 606.25], [734.31, 616.96], [749.52, 630.64], [780.52, 596.4], [772.19, 588.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.426, "pop": 0, "jobs": 426}}, {"shape": {"outer": [[765.74, 644.97], [832.45, 571.67], [860.91, 597.39], [794.2, 670.68], [765.74, 644.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1521, "jobs": 0}}, {"shape": {"outer": [[2044.35, 1975.8], [2030.64, 1989.97], [2062.91, 2021.07], [2076.51, 2006.18], [2044.35, 1975.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.71, "pop": 355, "jobs": 0}}, {"shape": {"outer": [[-1233.93, -2690.03], [-1230.11, -2693.89], [-1223.15, -2694.86], [-1222.73, -2697.81], [-1052.53, -2705.33], [-1063.83, -2666.98], [-1149.78, -2663.02], [-1149.58, -2658.1], [-1231.6, -2651.65], [-1233.93, -2690.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 2849, "jobs": 0}}, {"shape": {"outer": [[-92.76, -2288.82], [-90.75, -2245.2], [-80.62, -2245.79], [-78.96, -2214.78], [-61.58, -2215.58], [-25.64, -2277.19], [-35.08, -2283.67], [-46.37, -2291.43], [-92.76, -2288.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2145}}, {"shape": {"outer": [[226.77, -246.56], [204.74, -265.85], [194.19, -250.2], [181.14, -236.27], [169.0, -222.05], [154.62, -210.43], [176.64, -191.39], [201.24, -216.8], [226.77, -246.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 829, "jobs": 0}}, {"shape": {"outer": [[876.02, 613.68], [916.95, 650.11], [899.66, 669.67], [908.31, 678.0], [906.4, 680.15], [897.29, 672.36], [892.88, 677.35], [852.33, 641.45], [876.02, 613.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1295}}, {"shape": {"outer": [[885.47, 703.76], [893.1, 695.15], [906.4, 680.15], [908.31, 678.0], [975.15, 738.88], [971.31, 743.16], [952.34, 764.71], [885.47, 703.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1993}}, {"shape": {"outer": [[368.92, 438.43], [389.48, 457.19], [416.77, 482.11], [400.06, 500.3], [352.2, 456.62], [368.92, 438.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1024}}, {"shape": {"outer": [[1867.49, 1714.45], [1874.54, 1721.24], [1888.21, 1734.44], [1894.3, 1740.32], [1917.29, 1762.5], [1907.62, 1779.85], [1890.06, 1798.64], [1892.7, 1801.3], [1857.42, 1838.41], [1855.24, 1836.07], [1851.59, 1839.68], [1837.42, 1825.51], [1838.99, 1823.78], [1786.96, 1774.27], [1800.5, 1760.22], [1803.22, 1762.18], [1812.15, 1752.92], [1822.76, 1745.73], [1820.22, 1743.37], [1837.72, 1732.93], [1867.49, 1714.45]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 10495, "jobs": 0}}, {"shape": {"outer": [[-1187.09, -283.26], [-1183.84, -283.44], [-1183.66, -280.09], [-1186.87, -279.88], [-1187.09, -283.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[-1189.0, -319.54], [-1182.85, -319.79], [-1183.0, -323.48], [-1188.12, -323.26], [-1189.16, -323.22], [-1189.0, -319.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1800.52, -592.35], [-1801.61, -594.91], [-1803.5, -596.97], [-1805.97, -598.29], [-1808.73, -598.72], [-1811.35, -598.25], [-1813.69, -596.98], [-1815.51, -595.04], [-1816.62, -592.61], [-1816.9, -589.97], [-1816.32, -587.38], [-1814.95, -585.1], [-1812.93, -583.37], [-1810.46, -582.37], [-1807.67, -582.21], [-1804.98, -582.99], [-1802.71, -584.61], [-1801.09, -586.89], [-1800.34, -589.57], [-1800.52, -592.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1824.25, -594.34], [-1816.08, -602.19], [-1813.02, -599.18], [-1821.13, -591.1], [-1824.25, -594.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1797.46, -596.67], [-1793.5, -596.78], [-1793.43, -592.6], [-1797.42, -592.52], [-1797.46, -596.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2431.33, -71.72], [-2431.6, -82.22], [-2413.23, -83.06], [-2412.71, -72.23], [-2431.33, -71.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[485.93, 176.06], [540.66, 226.94], [528.38, 240.69], [487.95, 203.52], [499.15, 191.37], [486.7, 179.85], [484.34, 177.74], [485.93, 176.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.68, "pop": 0, "jobs": 680}}, {"shape": {"outer": [[724.35, 322.93], [729.12, 315.67], [759.53, 336.68], [754.45, 343.74], [724.35, 322.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[579.95, 356.99], [588.01, 364.22], [578.88, 374.33], [570.82, 367.1], [579.95, 356.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[626.64, 420.87], [633.63, 427.05], [625.19, 436.53], [618.2, 430.35], [626.64, 420.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[624.53, 417.42], [615.07, 408.92], [613.74, 410.39], [609.53, 406.61], [606.2, 410.28], [610.48, 414.12], [609.56, 415.13], [618.96, 423.58], [624.53, 417.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[989.7, 616.45], [999.38, 624.52], [966.0, 661.92], [956.79, 653.48], [989.7, 616.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.4, "pop": 0, "jobs": 400}}, {"shape": {"outer": [[1298.2, 1280.74], [1301.11, 1283.13], [1297.9, 1287.12], [1294.88, 1284.96], [1298.2, 1280.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1300.7, 1267.34], [1294.8, 1262.19], [1289.05, 1268.78], [1294.96, 1273.93], [1300.7, 1267.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1307.79, 1275.85], [1301.93, 1282.52], [1314.09, 1293.06], [1320.21, 1286.73], [1307.79, 1275.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1038.98, 1178.75], [1046.57, 1185.5], [1051.62, 1179.77], [1043.93, 1172.84], [1038.98, 1178.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1114.27, 1097.58], [1108.89, 1092.96], [1103.5, 1099.27], [1108.87, 1103.87], [1114.27, 1097.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[967.89, 1223.03], [963.48, 1219.02], [959.07, 1223.87], [963.48, 1227.88], [967.89, 1223.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[643.05, 1213.59], [647.11, 1217.11], [651.98, 1211.68], [647.8, 1208.16], [643.05, 1213.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[513.44, 731.37], [549.78, 764.51], [590.48, 720.25], [554.35, 686.65], [533.32, 709.64], [513.44, 731.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1903}}, {"shape": {"outer": [[-979.8, -1173.7], [-974.29, -1179.45], [-968.37, -1174.26], [-974.19, -1168.19], [-979.8, -1173.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2956.43, -1639.47], [-2941.83, -1626.81], [-2935.96, -1633.89], [-2950.94, -1646.55], [-2956.43, -1639.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2930.63, -1629.48], [-2925.03, -1624.22], [-2928.95, -1618.18], [-2935.66, -1623.53], [-2930.63, -1629.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2899.58, -1677.88], [-2888.54, -1668.45], [-2898.01, -1657.44], [-2908.67, -1666.64], [-2899.58, -1677.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[981.93, 270.97], [1005.87, 244.67], [1020.77, 258.13], [1015.59, 263.82], [996.82, 284.43], [981.93, 270.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.572, "pop": 286, "jobs": 0}}, {"shape": {"outer": [[1029.26, 393.75], [1034.47, 387.99], [1042.05, 394.79], [1036.83, 400.55], [1029.26, 393.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-357.52, -712.6], [-351.98, -707.22], [-346.51, -713.18], [-352.03, -718.11], [-357.52, -712.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-335.53, -749.41], [-354.13, -729.15], [-339.06, -715.41], [-349.43, -704.12], [-337.06, -692.86], [-319.49, -712.0], [-321.32, -713.67], [-307.36, -728.89], [-328.16, -747.85], [-330.74, -745.05], [-332.68, -746.81], [-335.53, -749.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 537, "jobs": 0}}, {"shape": {"outer": [[969.92, 1630.73], [978.18, 1639.73], [971.98, 1645.61], [963.63, 1636.52], [969.92, 1630.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[985.38, 1706.66], [980.41, 1711.07], [976.19, 1706.33], [981.17, 1701.94], [985.38, 1706.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[885.81, 1688.45], [891.82, 1694.94], [887.2, 1699.24], [886.16, 1698.19], [882.76, 1701.22], [878.03, 1695.86], [885.81, 1688.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2248.68, 1761.82], [2262.22, 1774.69], [2256.59, 1780.62], [2243.74, 1767.96], [2248.68, 1761.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1682.61, 683.09], [1689.63, 689.36], [1696.53, 681.69], [1689.51, 675.43], [1682.61, 683.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1649.47, 735.89], [1652.76, 738.86], [1653.88, 737.63], [1656.91, 740.38], [1664.87, 731.66], [1658.29, 725.69], [1650.3, 734.44], [1650.57, 734.68], [1649.47, 735.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1709.64, 790.07], [1715.25, 795.11], [1724.67, 784.7], [1719.06, 779.66], [1709.64, 790.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1718.61, 660.32], [1722.86, 664.04], [1723.95, 665.0], [1724.58, 665.55], [1733.97, 654.94], [1732.49, 653.63], [1734.29, 651.6], [1729.79, 647.66], [1718.61, 660.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1732.6, 672.66], [1739.21, 678.71], [1748.65, 668.48], [1742.05, 662.43], [1732.6, 672.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1761.31, 684.35], [1755.23, 678.8], [1748.85, 685.73], [1754.93, 691.28], [1761.31, 684.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1782.8, 721.97], [1788.83, 727.5], [1797.01, 718.65], [1790.98, 713.13], [1782.8, 721.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1777.49, 715.46], [1781.53, 719.12], [1782.98, 717.52], [1783.57, 718.06], [1786.37, 714.98], [1787.65, 716.13], [1791.58, 711.81], [1791.07, 711.35], [1793.94, 708.2], [1787.9, 702.74], [1784.96, 705.97], [1784.52, 705.57], [1780.93, 709.52], [1781.6, 710.12], [1778.65, 713.36], [1779.06, 713.74], [1777.49, 715.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2753.32, -3175.14], [2752.98, -3162.38], [2744.56, -3162.6], [2744.9, -3175.35], [2753.32, -3175.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2767.59, -3180.14], [2767.32, -3187.81], [2760.17, -3187.57], [2760.44, -3179.9], [2767.59, -3180.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2774.5, -3167.44], [2774.1, -3178.49], [2764.6, -3178.15], [2765.0, -3167.1], [2774.5, -3167.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2803.96, -3092.15], [2803.5, -3080.91], [2802.54, -3080.95], [2802.23, -3073.3], [2812.61, -3072.88], [2813.38, -3091.78], [2803.96, -3092.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1546.3, -3195.44], [1553.38, -3193.4], [1553.21, -3192.8], [1554.83, -3192.33], [1552.59, -3184.59], [1562.06, -3178.86], [1556.21, -3169.24], [1551.93, -3171.82], [1549.81, -3168.33], [1542.07, -3173.45], [1543.23, -3177.42], [1542.05, -3177.77], [1543.23, -3181.86], [1542.43, -3182.09], [1546.3, -3195.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[1642.95, -3148.16], [1643.28, -3159.0], [1651.22, -3158.77], [1651.15, -3156.35], [1661.47, -3156.04], [1661.42, -3154.36], [1664.15, -3154.28], [1663.91, -3146.38], [1661.18, -3146.45], [1661.12, -3144.54], [1648.03, -3144.93], [1648.12, -3148.01], [1642.95, -3148.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[1623.21, -3129.95], [1623.69, -3134.78], [1621.47, -3135.0], [1621.91, -3139.47], [1622.83, -3139.37], [1623.6, -3147.15], [1629.63, -3146.57], [1630.14, -3151.77], [1638.54, -3150.94], [1637.56, -3141.15], [1636.71, -3141.24], [1635.95, -3133.52], [1632.9, -3133.82], [1632.87, -3133.54], [1631.44, -3133.69], [1631.0, -3129.18], [1623.21, -3129.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[1590.55, -3148.49], [1589.54, -3137.29], [1609.81, -3135.48], [1611.16, -3150.38], [1605.66, -3150.87], [1605.86, -3152.99], [1609.29, -3152.68], [1610.08, -3161.49], [1600.9, -3162.31], [1600.11, -3153.54], [1602.02, -3153.37], [1601.49, -3147.51], [1590.55, -3148.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[1573.9, -3149.02], [1575.8, -3161.24], [1585.7, -3159.73], [1583.81, -3147.5], [1573.9, -3149.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1574.06, -3169.58], [1571.26, -3152.87], [1565.07, -3153.9], [1565.49, -3156.42], [1562.36, -3156.94], [1564.3, -3168.49], [1568.05, -3167.87], [1568.49, -3170.5], [1574.06, -3169.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1570.1, -3181.65], [1568.32, -3171.55], [1575.88, -3170.23], [1577.66, -3180.32], [1570.1, -3181.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1516.72, -3179.43], [1524.18, -3176.56], [1523.39, -3174.52], [1524.22, -3171.97], [1527.14, -3170.86], [1529.25, -3171.91], [1530.16, -3174.27], [1533.84, -3172.86], [1539.72, -3188.07], [1532.73, -3190.75], [1531.72, -3192.85], [1528.74, -3193.98], [1526.25, -3192.81], [1524.94, -3189.42], [1521.15, -3190.87], [1516.72, -3179.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[1597.27, 961.19], [1606.88, 970.35], [1612.12, 964.89], [1602.51, 955.74], [1597.27, 961.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1321.28, 689.38], [1327.34, 682.87], [1315.25, 672.21], [1309.62, 678.61], [1321.28, 689.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.089, "pop": 0, "jobs": 89}}, {"shape": {"outer": [[2511.37, 1472.59], [2517.54, 1476.8], [2521.91, 1470.94], [2515.6, 1466.29], [2511.37, 1472.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2299.68, 1690.54], [2306.71, 1686.4], [2302.33, 1679.44], [2295.37, 1683.75], [2299.68, 1690.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2306.71, 1686.4], [2308.56, 1685.31], [2314.01, 1681.85], [2314.14, 1678.76], [2311.5, 1674.08], [2302.33, 1679.44], [2306.71, 1686.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2494.62, 2115.39], [2499.38, 2110.89], [2493.18, 2105.2], [2488.82, 2109.36], [2494.62, 2115.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2513.83, 2051.23], [2525.78, 2043.51], [2521.35, 2037.64], [2509.37, 2044.48], [2513.83, 2051.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2654.53, 2091.05], [2662.92, 2090.59], [2662.44, 2081.14], [2654.03, 2081.26], [2654.53, 2091.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2627.49, 1830.11], [2628.67, 1825.71], [2630.37, 1826.18], [2630.53, 1825.91], [2639.67, 1828.12], [2639.53, 1828.67], [2642.76, 1829.38], [2642.83, 1828.83], [2647.4, 1829.9], [2647.69, 1834.29], [2646.92, 1834.42], [2627.49, 1830.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2749.92, 2238.3], [2748.11, 2238.39], [2748.27, 2240.08], [2743.63, 2240.36], [2743.81, 2244.49], [2745.77, 2244.44], [2746.32, 2248.35], [2750.18, 2247.86], [2749.92, 2238.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2779.34, 2139.69], [2787.69, 2139.13], [2787.21, 2130.98], [2778.61, 2131.05], [2779.34, 2139.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2832.9, 2240.49], [2832.7, 2239.18], [2836.5, 2238.99], [2836.36, 2236.85], [2841.16, 2236.72], [2841.65, 2240.15], [2832.9, 2240.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2851.17, 2239.79], [2850.92, 2237.75], [2847.4, 2237.84], [2847.36, 2236.29], [2841.16, 2236.72], [2841.65, 2240.15], [2851.17, 2239.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2870.72, 2171.35], [2888.91, 2170.35], [2888.65, 2161.28], [2870.14, 2162.62], [2870.72, 2171.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2870.18, 2158.0], [2887.36, 2156.7], [2887.66, 2149.59], [2869.64, 2150.43], [2870.18, 2158.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1459.06, 808.9], [1467.33, 799.96], [1445.88, 780.53], [1438.17, 789.69], [1459.06, 808.9]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.221, "pop": 0, "jobs": 221}}, {"shape": {"outer": [[2693.76, 1723.44], [2700.32, 1724.76], [2702.22, 1716.58], [2695.16, 1715.28], [2693.76, 1723.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2660.13, 2401.56], [2679.54, 2383.08], [2686.44, 2375.26], [2688.59, 2372.36], [2688.95, 2370.23], [2691.36, 2366.87], [2678.73, 2352.2], [2676.61, 2354.49], [2669.75, 2348.43], [2657.23, 2362.39], [2643.26, 2349.12], [2624.67, 2368.23], [2628.16, 2371.56], [2626.19, 2373.16], [2633.85, 2381.09], [2636.08, 2379.08], [2640.61, 2383.66], [2638.38, 2385.52], [2644.44, 2391.28], [2646.52, 2389.42], [2651.48, 2394.05], [2649.08, 2395.7], [2652.26, 2398.99], [2655.11, 2396.9], [2660.13, 2401.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 798, "jobs": 0}}, {"shape": {"outer": [[2447.79, -3163.99], [2468.36, -3164.39], [2468.19, -3173.56], [2447.62, -3173.17], [2447.79, -3163.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2431.84, -3168.38], [2432.0, -3161.36], [2439.51, -3161.53], [2439.35, -3168.55], [2431.84, -3168.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2422.85, -3158.72], [2422.78, -3168.33], [2429.4, -3168.37], [2429.46, -3158.76], [2422.85, -3158.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2423.12, -3187.72], [2419.9, -3187.5], [2420.13, -3184.21], [2423.35, -3184.44], [2423.12, -3187.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2231.46, -3198.95], [2231.48, -3196.76], [2230.36, -3196.75], [2230.4, -3193.27], [2231.51, -3193.28], [2231.54, -3189.98], [2239.53, -3190.06], [2239.51, -3193.28], [2242.07, -3193.31], [2242.01, -3199.7], [2238.45, -3199.67], [2238.45, -3199.01], [2231.46, -3198.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2337.5, -3191.03], [2337.43, -3201.38], [2345.66, -3201.44], [2345.73, -3191.1], [2337.5, -3191.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2200.19, -3186.92], [2190.73, -3186.84], [2190.63, -3199.61], [2186.67, -3199.58], [2186.6, -3206.74], [2200.9, -3206.86], [2200.97, -3198.58], [2200.09, -3198.58], [2200.19, -3186.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[2200.28, -3163.94], [2200.57, -3182.12], [2191.81, -3182.27], [2191.5, -3164.08], [2200.28, -3163.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2192.4, -3143.4], [2200.03, -3143.31], [2200.26, -3159.73], [2190.97, -3159.86], [2190.83, -3150.45], [2192.5, -3150.43], [2192.4, -3143.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2172.73, -3142.68], [2170.06, -3142.58], [2169.93, -3145.43], [2172.61, -3145.55], [2172.73, -3142.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2186.7, -3112.58], [2187.05, -3121.28], [2180.88, -3121.53], [2180.63, -3115.69], [2178.45, -3115.78], [2178.08, -3107.04], [2184.59, -3106.77], [2184.83, -3112.65], [2186.7, -3112.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2194.4, -3072.55], [2194.44, -3063.33], [2195.89, -3063.33], [2195.96, -3049.93], [2202.99, -3049.97], [2202.97, -3052.21], [2204.63, -3052.22], [2204.56, -3064.68], [2202.02, -3064.66], [2201.98, -3072.6], [2194.4, -3072.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2169.55, -3096.15], [2171.09, -3089.62], [2172.33, -3089.91], [2174.82, -3079.33], [2182.13, -3081.04], [2180.61, -3087.45], [2192.15, -3090.15], [2192.81, -3087.35], [2195.35, -3087.95], [2195.82, -3085.97], [2200.72, -3087.11], [2198.37, -3097.06], [2190.34, -3095.18], [2189.03, -3100.71], [2169.55, -3096.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[2156.39, -3112.66], [2159.03, -3102.78], [2168.2, -3105.2], [2164.5, -3119.1], [2156.95, -3117.11], [2158.03, -3113.1], [2156.39, -3112.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2162.88, -3135.57], [2153.61, -3134.47], [2155.01, -3122.74], [2164.27, -3123.84], [2162.88, -3135.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2145.07, -3158.59], [2146.94, -3150.16], [2150.36, -3150.93], [2152.62, -3140.74], [2161.38, -3142.69], [2157.25, -3161.28], [2145.07, -3158.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2147.82, -3179.53], [2135.39, -3176.04], [2138.74, -3164.17], [2151.18, -3167.67], [2147.82, -3179.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2156.16, -3186.8], [2159.66, -3186.81], [2159.67, -3183.97], [2156.17, -3183.97], [2156.16, -3186.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2125.52, -3201.09], [2128.52, -3184.5], [2139.28, -3186.44], [2136.27, -3203.02], [2132.7, -3202.38], [2132.12, -3205.55], [2125.81, -3204.42], [2126.38, -3201.25], [2125.52, -3201.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2630.17, -3086.43], [2632.51, -3086.38], [2632.58, -3089.53], [2630.22, -3089.57], [2630.17, -3086.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2646.78, -3085.98], [2649.75, -3086.42], [2649.4, -3088.74], [2646.43, -3088.31], [2646.78, -3085.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2712.15, -3104.68], [2699.17, -3103.84], [2697.61, -3127.65], [2710.61, -3128.49], [2712.15, -3104.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[2725.93, -3127.0], [2716.89, -3127.29], [2716.04, -3101.18], [2725.07, -3100.89], [2725.33, -3108.78], [2728.56, -3108.67], [2728.89, -3118.54], [2725.65, -3118.65], [2725.93, -3127.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[2749.92, -3122.14], [2750.31, -3129.08], [2761.02, -3128.48], [2761.25, -3132.54], [2770.3, -3132.04], [2769.44, -3116.81], [2760.5, -3117.3], [2760.74, -3121.53], [2749.92, -3122.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2761.15, -3109.29], [2768.8, -3109.05], [2768.49, -3099.5], [2764.43, -3099.62], [2764.38, -3098.06], [2757.46, -3098.28], [2757.63, -3103.72], [2760.97, -3103.61], [2761.15, -3109.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2747.84, -3067.0], [2747.57, -3077.62], [2750.81, -3077.7], [2750.74, -3080.14], [2759.04, -3080.36], [2759.37, -3067.3], [2747.84, -3067.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2745.66, -3045.38], [2745.95, -3053.56], [2756.78, -3053.18], [2756.5, -3045.0], [2745.66, -3045.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2756.47, -2978.25], [2762.78, -2977.92], [2762.87, -2979.7], [2770.25, -2979.32], [2769.75, -2969.98], [2768.73, -2970.03], [2768.44, -2964.62], [2764.14, -2964.84], [2764.07, -2963.72], [2755.71, -2964.16], [2756.47, -2978.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[2737.61, -2989.22], [2738.21, -2996.89], [2744.85, -2996.39], [2744.26, -2988.7], [2737.61, -2989.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2727.76, -2960.57], [2736.9, -2959.81], [2738.24, -2975.9], [2729.11, -2976.65], [2727.76, -2960.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2694.95, -2979.49], [2692.81, -2967.49], [2701.05, -2966.04], [2701.17, -2966.71], [2704.96, -2966.04], [2705.09, -2966.83], [2710.12, -2965.94], [2711.89, -2975.91], [2703.07, -2977.47], [2703.18, -2978.04], [2694.95, -2979.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[2632.39, -3007.33], [2631.1, -2999.72], [2643.27, -2997.68], [2643.37, -2998.24], [2646.77, -2997.68], [2645.48, -2989.99], [2656.72, -2988.11], [2658.49, -2998.6], [2655.12, -2999.18], [2655.84, -3003.42], [2632.39, -3007.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[2610.11, -3003.24], [2623.59, -3001.17], [2625.77, -3015.34], [2619.28, -3016.32], [2618.72, -3012.69], [2604.53, -3014.88], [2603.22, -3006.38], [2610.42, -3005.27], [2610.11, -3003.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2604.42, -3031.14], [2603.4, -3023.61], [2611.62, -3022.5], [2612.64, -3030.03], [2604.42, -3031.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2599.16, -3046.37], [2600.06, -3050.89], [2603.21, -3050.27], [2602.3, -3045.73], [2599.16, -3046.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2577.93, -3029.01], [2575.92, -3014.57], [2582.33, -3013.7], [2582.22, -3012.93], [2596.78, -3010.92], [2598.1, -3020.39], [2587.28, -3021.88], [2587.54, -3023.74], [2581.85, -3024.52], [2582.39, -3028.39], [2577.93, -3029.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[2573.48, -3034.3], [2573.89, -3037.59], [2579.31, -3036.93], [2578.91, -3033.64], [2573.48, -3034.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2554.42, -3023.3], [2568.74, -3021.94], [2569.49, -3029.8], [2565.42, -3030.18], [2566.21, -3038.4], [2569.05, -3038.12], [2569.42, -3042.04], [2563.94, -3042.56], [2563.6, -3038.94], [2555.98, -3039.66], [2554.42, -3023.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[2525.66, -3038.04], [2538.1, -3037.02], [2537.61, -3031.03], [2544.49, -3030.47], [2543.89, -3023.24], [2536.43, -3023.85], [2536.6, -3025.99], [2526.28, -3026.83], [2526.17, -3025.48], [2517.25, -3026.21], [2518.17, -3037.33], [2525.55, -3036.73], [2525.66, -3038.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[2486.75, -3032.36], [2486.19, -3022.32], [2498.69, -3021.62], [2498.63, -3020.52], [2506.08, -3020.11], [2506.53, -3028.18], [2500.48, -3028.52], [2500.66, -3031.58], [2486.75, -3032.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2503.4, -3064.48], [2502.58, -3050.14], [2492.55, -3050.72], [2493.57, -3068.38], [2495.21, -3068.3], [2495.44, -3072.4], [2502.98, -3071.97], [2502.72, -3067.41], [2500.71, -3067.53], [2500.54, -3064.64], [2503.4, -3064.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2524.23, -3078.71], [2518.64, -3079.19], [2518.21, -3074.33], [2523.8, -3073.85], [2524.23, -3078.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2506.92, -3096.98], [2506.38, -3086.49], [2517.31, -3085.94], [2517.54, -3090.38], [2515.32, -3090.5], [2515.63, -3096.54], [2506.92, -3096.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2496.44, -3103.28], [2495.74, -3093.95], [2503.79, -3093.34], [2504.5, -3102.68], [2496.44, -3103.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2510.1, -3117.07], [2502.44, -3117.32], [2502.72, -3125.56], [2510.39, -3125.29], [2510.37, -3124.85], [2516.0, -3124.66], [2515.83, -3119.62], [2513.28, -3119.71], [2513.2, -3117.4], [2510.12, -3117.5], [2510.1, -3117.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2525.01, -3109.91], [2518.22, -3110.1], [2518.42, -3117.23], [2525.21, -3117.05], [2525.01, -3109.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2533.02, -3093.03], [2529.74, -3093.44], [2529.21, -3089.28], [2532.49, -3088.86], [2533.02, -3093.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2539.08, -3095.49], [2534.38, -3095.68], [2534.25, -3092.35], [2538.96, -3092.16], [2539.08, -3095.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2546.89, -3106.47], [2546.57, -3120.13], [2538.1, -3119.93], [2538.42, -3106.27], [2546.89, -3106.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2550.2, -3095.08], [2550.39, -3103.36], [2543.55, -3103.52], [2543.36, -3095.23], [2550.2, -3095.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2559.62, -3103.34], [2559.72, -3095.12], [2551.68, -3095.03], [2551.59, -3103.25], [2559.62, -3103.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2566.42, -3106.45], [2566.0, -3120.59], [2556.05, -3120.29], [2556.48, -3106.14], [2566.42, -3106.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2571.79, -3087.88], [2571.67, -3084.18], [2567.4, -3084.32], [2567.53, -3088.03], [2571.79, -3087.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2575.72, -3105.69], [2575.87, -3098.23], [2568.99, -3098.09], [2568.84, -3105.55], [2575.72, -3105.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2583.91, -3107.72], [2583.49, -3121.27], [2579.52, -3121.15], [2579.44, -3124.16], [2575.77, -3124.05], [2575.85, -3121.61], [2574.03, -3121.56], [2574.46, -3107.44], [2583.91, -3107.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2599.3, -3120.1], [2598.02, -3102.71], [2587.93, -3103.44], [2589.21, -3120.84], [2599.3, -3120.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2613.44, -3101.64], [2614.27, -3119.41], [2604.19, -3119.87], [2603.36, -3102.1], [2613.44, -3101.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2641.71, -3118.75], [2641.87, -3109.23], [2620.4, -3108.85], [2620.23, -3118.38], [2626.93, -3118.49], [2626.92, -3119.43], [2635.25, -3119.58], [2635.26, -3118.64], [2641.71, -3118.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2604.21, -3164.63], [2608.82, -3164.39], [2608.91, -3166.14], [2612.09, -3165.98], [2612.0, -3164.24], [2616.2, -3164.03], [2615.75, -3155.09], [2611.09, -3155.32], [2610.98, -3153.15], [2603.65, -3153.51], [2604.21, -3164.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2588.39, -3168.19], [2587.88, -3153.9], [2600.43, -3153.46], [2600.8, -3163.55], [2596.94, -3163.68], [2597.09, -3167.88], [2596.11, -3167.92], [2596.27, -3172.32], [2591.72, -3172.48], [2591.56, -3168.08], [2588.39, -3168.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2588.95, -3181.78], [2589.01, -3184.92], [2591.59, -3184.87], [2591.53, -3181.73], [2588.95, -3181.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2583.01, -3185.03], [2583.19, -3188.14], [2586.48, -3187.95], [2586.29, -3184.85], [2583.01, -3185.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2572.72, -3171.67], [2571.98, -3153.73], [2582.37, -3153.31], [2583.11, -3171.25], [2572.72, -3171.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2563.77, -3169.8], [2569.36, -3169.66], [2569.58, -3178.1], [2564.0, -3178.24], [2563.77, -3169.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2557.01, -3168.51], [2556.8, -3154.85], [2560.41, -3154.79], [2560.38, -3152.87], [2569.55, -3152.74], [2569.66, -3159.83], [2565.08, -3159.9], [2565.21, -3168.4], [2557.01, -3168.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2551.76, -3166.99], [2541.52, -3167.2], [2541.22, -3152.88], [2551.46, -3152.66], [2551.76, -3166.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2538.83, -3180.55], [2538.74, -3174.12], [2545.69, -3174.02], [2545.78, -3180.44], [2538.83, -3180.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2535.42, -3178.83], [2535.47, -3181.28], [2538.51, -3181.22], [2538.45, -3178.76], [2535.42, -3178.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2524.8, -3159.96], [2534.78, -3159.24], [2534.05, -3149.36], [2524.08, -3150.08], [2524.8, -3159.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2517.08, -3168.6], [2516.45, -3161.46], [2523.97, -3160.82], [2524.21, -3163.48], [2527.49, -3163.19], [2527.88, -3167.66], [2517.08, -3168.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2504.32, -3151.17], [2494.25, -3151.56], [2494.82, -3166.38], [2495.97, -3166.34], [2496.13, -3170.82], [2505.05, -3170.48], [2504.79, -3163.61], [2512.03, -3163.34], [2511.65, -3153.42], [2504.41, -3153.7], [2504.32, -3151.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[1203.41, 1344.99], [1194.05, 1355.18], [1200.54, 1361.11], [1209.91, 1350.92], [1203.41, 1344.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[972.88, 1194.14], [978.0, 1198.38], [970.78, 1207.1], [965.66, 1202.9], [972.88, 1194.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2435.83, -3129.54], [2435.43, -3120.6], [2448.24, -3120.04], [2448.53, -3126.46], [2447.59, -3126.5], [2447.81, -3131.43], [2440.49, -3131.76], [2440.38, -3129.34], [2435.83, -3129.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2434.91, -3108.06], [2426.71, -3108.11], [2426.76, -3117.8], [2434.96, -3117.75], [2434.91, -3108.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2461.39, -3070.28], [2462.93, -3088.46], [2460.77, -3088.65], [2460.92, -3090.44], [2456.53, -3090.82], [2456.37, -3089.01], [2454.45, -3089.18], [2454.22, -3086.59], [2446.9, -3087.2], [2446.57, -3083.26], [2444.17, -3083.47], [2443.79, -3078.99], [2446.19, -3078.79], [2445.83, -3074.65], [2453.16, -3074.03], [2452.9, -3071.0], [2461.39, -3070.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[2461.58, -3045.58], [2454.92, -3045.33], [2454.75, -3049.96], [2461.41, -3050.21], [2461.58, -3045.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2447.03, -3017.75], [2459.93, -3019.58], [2458.04, -3032.87], [2449.35, -3031.63], [2449.99, -3027.09], [2445.78, -3026.5], [2447.03, -3017.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2415.92, -3032.1], [2415.14, -3021.75], [2422.53, -3021.19], [2422.22, -3017.09], [2431.1, -3016.43], [2432.2, -3030.87], [2430.47, -3031.0], [2430.64, -3033.3], [2421.85, -3033.95], [2421.68, -3031.67], [2415.92, -3032.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[2405.33, -3025.8], [2412.34, -3025.42], [2412.83, -3034.37], [2405.82, -3034.74], [2405.33, -3025.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2397.2, -3028.55], [2397.37, -3032.79], [2402.02, -3032.61], [2401.86, -3028.37], [2397.2, -3028.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2395.57, -3011.81], [2395.96, -3021.41], [2399.09, -3021.28], [2399.21, -3024.3], [2405.0, -3024.07], [2404.87, -3021.05], [2409.59, -3020.86], [2409.2, -3011.27], [2395.57, -3011.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2378.73, -3023.6], [2378.07, -3008.22], [2386.61, -3007.86], [2386.68, -3009.57], [2392.02, -3009.34], [2392.4, -3018.04], [2387.06, -3018.26], [2387.27, -3023.24], [2378.73, -3023.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2367.83, -3022.46], [2367.84, -3032.32], [2376.0, -3032.3], [2375.97, -3022.44], [2367.83, -3022.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2361.36, -3017.76], [2361.5, -3004.64], [2372.97, -3004.76], [2372.88, -3013.05], [2368.52, -3013.01], [2368.46, -3017.84], [2361.36, -3017.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2342.86, -3006.52], [2345.16, -3006.52], [2345.16, -3005.5], [2348.85, -3005.5], [2348.86, -3006.51], [2351.88, -3006.52], [2351.89, -3014.51], [2342.86, -3014.52], [2342.86, -3006.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2328.57, -3023.23], [2328.89, -3030.97], [2337.1, -3030.64], [2336.79, -3022.9], [2328.57, -3023.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2320.6, -3016.57], [2325.59, -3016.26], [2325.63, -3017.0], [2332.75, -3016.56], [2332.52, -3012.92], [2334.29, -3012.81], [2333.67, -3003.06], [2319.81, -3003.92], [2320.6, -3016.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2299.73, -3016.86], [2309.52, -3016.53], [2309.22, -3007.49], [2299.43, -3007.8], [2299.73, -3016.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2282.75, -3019.08], [2282.71, -3008.62], [2293.27, -3008.58], [2293.3, -3019.04], [2282.75, -3019.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2278.18, -3027.61], [2277.99, -3021.03], [2285.88, -3020.8], [2286.07, -3027.39], [2278.18, -3027.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2262.45, -3030.65], [2261.95, -3018.24], [2264.75, -3018.13], [2264.71, -3017.09], [2268.4, -3016.94], [2268.43, -3017.99], [2274.73, -3017.73], [2274.99, -3024.09], [2271.42, -3024.23], [2271.67, -3030.28], [2262.45, -3030.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2240.32, -3025.97], [2240.24, -3033.87], [2253.76, -3034.02], [2253.83, -3027.59], [2250.97, -3027.57], [2250.99, -3026.08], [2240.32, -3025.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2226.19, -3036.18], [2235.7, -3036.32], [2235.45, -3052.6], [2225.94, -3052.45], [2226.07, -3044.25], [2220.37, -3044.16], [2220.48, -3037.02], [2224.38, -3037.08], [2224.36, -3037.96], [2226.16, -3037.99], [2226.19, -3036.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[2226.46, -3094.03], [2233.13, -3093.85], [2233.01, -3089.46], [2237.23, -3089.35], [2237.11, -3084.54], [2232.87, -3084.66], [2232.77, -3080.94], [2226.75, -3081.11], [2226.84, -3084.59], [2226.19, -3084.6], [2226.46, -3094.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2233.66, -3125.36], [2227.33, -3125.38], [2227.28, -3113.06], [2235.19, -3113.03], [2235.21, -3116.83], [2234.64, -3116.84], [2234.65, -3117.7], [2237.38, -3117.69], [2237.39, -3123.71], [2233.66, -3123.71], [2233.66, -3125.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2247.97, -3129.56], [2240.21, -3129.72], [2240.04, -3121.66], [2247.81, -3121.5], [2247.97, -3129.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2803.83, -3025.35], [2804.78, -3042.62], [2814.04, -3042.13], [2813.1, -3024.85], [2803.83, -3025.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2812.08, -3002.6], [2802.97, -3003.05], [2803.58, -3015.36], [2804.96, -3015.29], [2805.14, -3019.08], [2812.86, -3018.71], [2812.08, -3002.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2814.69, -2973.41], [2827.12, -2972.63], [2827.67, -2981.14], [2831.49, -2980.91], [2832.08, -2990.24], [2822.58, -2990.85], [2822.05, -2982.61], [2815.31, -2983.04], [2814.69, -2973.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2798.56, -2985.02], [2798.01, -2960.82], [2808.24, -2960.6], [2808.79, -2984.78], [2798.56, -2985.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2552.06, -2944.45], [2570.57, -2932.73], [2575.26, -2935.18], [2575.65, -2944.25], [2571.49, -2946.56], [2571.96, -2947.4], [2569.72, -2948.65], [2564.65, -2945.64], [2558.26, -2949.21], [2558.02, -2948.78], [2556.0, -2949.9], [2554.97, -2949.89], [2552.01, -2948.14], [2552.06, -2944.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2801.28, -2885.87], [2801.28, -2877.48], [2806.19, -2877.48], [2806.2, -2885.86], [2801.28, -2885.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2802.86, -2893.1], [2817.31, -2892.71], [2817.72, -2907.75], [2816.27, -2907.78], [2816.36, -2911.05], [2803.36, -2911.4], [2802.86, -2893.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[2793.26, -2920.43], [2793.54, -2928.7], [2800.55, -2928.47], [2800.29, -2920.21], [2793.26, -2920.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2785.43, -2891.63], [2785.16, -2883.08], [2792.95, -2882.83], [2792.81, -2878.5], [2798.05, -2878.33], [2798.79, -2901.19], [2790.81, -2901.45], [2790.49, -2891.47], [2785.43, -2891.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[2763.56, -2915.89], [2763.15, -2926.88], [2771.56, -2927.18], [2771.96, -2916.19], [2763.56, -2915.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2766.79, -2895.85], [2767.32, -2883.61], [2771.92, -2883.8], [2772.07, -2880.35], [2777.07, -2880.57], [2776.4, -2896.25], [2766.79, -2895.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2746.09, -2895.59], [2746.36, -2882.69], [2757.01, -2882.92], [2756.73, -2895.81], [2746.09, -2895.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2714.56, -2878.35], [2715.49, -2903.17], [2723.15, -2902.89], [2722.91, -2896.33], [2726.98, -2896.18], [2726.47, -2882.6], [2721.0, -2882.8], [2720.83, -2878.11], [2714.56, -2878.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[2694.21, -2924.17], [2693.8, -2913.98], [2702.06, -2913.64], [2702.47, -2923.85], [2694.21, -2924.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2681.46, -2923.73], [2682.39, -2933.77], [2691.05, -2932.97], [2690.13, -2922.93], [2681.46, -2923.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2692.68, -2897.53], [2691.98, -2884.71], [2696.29, -2884.47], [2696.03, -2879.75], [2707.21, -2879.14], [2707.66, -2887.45], [2711.19, -2887.26], [2711.59, -2894.47], [2708.06, -2894.66], [2708.18, -2896.69], [2705.96, -2896.8], [2706.03, -2898.05], [2698.73, -2898.46], [2698.66, -2897.2], [2692.68, -2897.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[2670.84, -2905.66], [2669.79, -2891.49], [2674.39, -2891.15], [2674.34, -2890.59], [2680.87, -2890.11], [2681.02, -2892.18], [2685.13, -2891.89], [2686.15, -2905.6], [2687.12, -2905.53], [2687.7, -2913.3], [2679.63, -2913.88], [2678.98, -2905.05], [2670.84, -2905.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[2653.81, -2920.1], [2655.84, -2919.8], [2655.8, -2919.5], [2653.65, -2916.85], [2651.98, -2913.89], [2650.82, -2910.7], [2650.14, -2906.57], [2650.31, -2902.38], [2653.27, -2902.19], [2653.01, -2900.38], [2653.79, -2900.27], [2652.74, -2898.44], [2658.99, -2894.86], [2661.48, -2899.15], [2666.64, -2898.4], [2667.68, -2911.28], [2660.29, -2916.6], [2660.65, -2919.11], [2662.23, -2918.87], [2663.8, -2929.68], [2655.39, -2930.9], [2653.81, -2920.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[2604.56, -2955.98], [2606.71, -2963.37], [2614.1, -2961.22], [2611.94, -2953.84], [2604.56, -2955.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2619.74, -2903.24], [2618.47, -2898.54], [2623.79, -2897.14], [2625.04, -2901.83], [2619.74, -2903.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2631.46, -2918.55], [2630.58, -2905.1], [2644.28, -2904.21], [2645.36, -2920.9], [2634.86, -2921.59], [2634.65, -2918.35], [2631.46, -2918.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2614.41, -2917.6], [2628.21, -2916.73], [2629.16, -2931.56], [2622.97, -2931.96], [2623.07, -2933.5], [2626.16, -2933.31], [2626.27, -2935.08], [2629.58, -2934.88], [2630.31, -2946.31], [2622.31, -2946.82], [2621.59, -2935.49], [2620.49, -2935.56], [2620.51, -2935.99], [2615.61, -2936.3], [2614.41, -2917.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[2598.52, -2932.46], [2598.09, -2919.0], [2609.25, -2918.65], [2609.68, -2932.12], [2598.52, -2932.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2587.56, -2952.8], [2587.24, -2961.29], [2579.38, -2960.99], [2579.7, -2952.51], [2587.56, -2952.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2581.16, -2941.72], [2581.19, -2931.04], [2585.2, -2931.05], [2585.21, -2930.6], [2592.63, -2930.62], [2592.59, -2944.55], [2591.81, -2944.54], [2591.81, -2945.57], [2586.33, -2945.56], [2586.33, -2944.53], [2582.8, -2944.52], [2582.8, -2941.72], [2581.16, -2941.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2518.48, -2936.55], [2518.82, -2928.02], [2524.01, -2928.22], [2523.67, -2936.77], [2518.48, -2936.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2513.67, -2963.3], [2512.06, -2957.8], [2509.73, -2958.48], [2508.06, -2952.72], [2509.05, -2952.43], [2507.99, -2948.8], [2522.86, -2944.49], [2523.55, -2946.84], [2524.85, -2946.47], [2527.74, -2956.4], [2521.66, -2958.16], [2522.42, -2960.77], [2513.67, -2963.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[2489.45, -2954.18], [2488.11, -2972.77], [2496.2, -2973.35], [2496.32, -2971.71], [2497.07, -2971.75], [2496.89, -2974.1], [2501.0, -2974.4], [2502.39, -2955.11], [2501.48, -2955.05], [2501.81, -2950.48], [2490.92, -2949.7], [2490.59, -2954.27], [2489.45, -2954.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[2488.39, -2941.27], [2489.2, -2932.71], [2494.28, -2933.19], [2493.47, -2941.74], [2488.39, -2941.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2458.88, -2980.91], [2468.39, -2982.09], [2467.23, -2991.49], [2457.71, -2990.32], [2458.88, -2980.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2455.8, -2954.06], [2456.91, -2942.66], [2462.19, -2943.17], [2462.29, -2942.1], [2470.84, -2942.92], [2469.8, -2953.65], [2464.14, -2953.11], [2463.98, -2954.84], [2455.8, -2954.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2438.6, -2944.87], [2447.56, -2945.04], [2447.46, -2950.36], [2449.92, -2950.4], [2449.79, -2957.24], [2443.87, -2957.12], [2443.91, -2954.81], [2438.42, -2954.72], [2438.6, -2944.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2419.65, -2950.24], [2420.91, -2936.15], [2425.13, -2936.53], [2424.78, -2940.52], [2431.89, -2941.15], [2430.99, -2951.25], [2419.65, -2950.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2401.32, -2951.7], [2400.91, -2957.68], [2405.65, -2958.01], [2406.06, -2952.02], [2401.32, -2951.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2401.15, -2947.81], [2402.46, -2935.91], [2415.31, -2937.32], [2414.11, -2948.2], [2410.56, -2947.81], [2410.45, -2948.83], [2401.15, -2947.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2365.62, -2943.83], [2367.46, -2932.02], [2371.51, -2932.66], [2372.18, -2928.33], [2396.02, -2932.03], [2393.66, -2947.18], [2374.1, -2944.14], [2373.95, -2945.12], [2365.62, -2943.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.338, "pop": 169, "jobs": 0}}, {"shape": {"outer": [[2352.71, -2953.08], [2352.04, -2961.12], [2358.68, -2961.67], [2359.36, -2953.63], [2352.71, -2953.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2347.16, -2930.42], [2346.91, -2941.41], [2356.9, -2941.64], [2357.22, -2927.72], [2349.0, -2927.52], [2348.94, -2930.47], [2347.16, -2930.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2330.33, -2943.19], [2331.82, -2926.25], [2342.78, -2927.22], [2341.91, -2937.08], [2341.12, -2937.0], [2340.83, -2940.18], [2340.06, -2940.11], [2339.71, -2944.02], [2330.33, -2943.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2327.61, -2948.42], [2327.1, -2958.6], [2334.3, -2958.95], [2334.82, -2948.78], [2327.61, -2948.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2312.38, -2944.63], [2312.17, -2928.57], [2325.47, -2928.41], [2325.68, -2944.46], [2324.33, -2944.48], [2324.35, -2946.73], [2316.31, -2946.83], [2316.29, -2944.59], [2312.38, -2944.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2301.21, -2947.54], [2301.4, -2956.04], [2310.0, -2955.84], [2309.79, -2947.35], [2301.21, -2947.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2291.62, -2938.67], [2291.5, -2925.27], [2305.44, -2925.16], [2305.53, -2935.33], [2300.54, -2935.37], [2300.57, -2938.6], [2291.62, -2938.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2262.2, -2945.18], [2261.88, -2934.5], [2270.8, -2934.23], [2270.71, -2931.23], [2278.12, -2931.01], [2278.51, -2944.08], [2281.19, -2944.0], [2281.42, -2951.85], [2273.53, -2952.08], [2273.4, -2947.86], [2271.32, -2947.93], [2271.35, -2949.04], [2262.81, -2949.3], [2262.68, -2945.16], [2262.2, -2945.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[2246.36, -2969.8], [2246.33, -2978.57], [2254.86, -2978.59], [2254.88, -2969.83], [2246.36, -2969.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2242.5, -2943.34], [2242.67, -2957.17], [2253.66, -2957.05], [2253.46, -2939.46], [2248.07, -2939.52], [2248.11, -2943.28], [2242.5, -2943.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2232.37, -2982.46], [2232.5, -2991.39], [2240.21, -2991.28], [2240.08, -2982.34], [2232.37, -2982.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2228.26, -2961.85], [2228.2, -2953.62], [2226.53, -2953.63], [2226.49, -2947.66], [2228.17, -2947.65], [2228.14, -2942.02], [2238.79, -2941.96], [2238.91, -2961.79], [2228.26, -2961.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[2207.91, -2970.54], [2207.8, -2956.09], [2210.6, -2956.08], [2210.57, -2951.28], [2217.23, -2951.23], [2217.26, -2956.03], [2221.13, -2956.0], [2221.18, -2963.89], [2216.11, -2963.93], [2216.16, -2970.48], [2207.91, -2970.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2194.61, -2976.38], [2192.96, -2974.35], [2191.81, -2975.28], [2189.72, -2972.7], [2190.86, -2971.78], [2187.21, -2967.3], [2193.19, -2962.45], [2194.03, -2963.5], [2198.29, -2960.06], [2204.0, -2967.08], [2199.76, -2970.52], [2200.59, -2971.54], [2194.61, -2976.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2191.15, -3006.02], [2193.05, -3012.65], [2199.27, -3010.88], [2197.37, -3004.25], [2191.15, -3006.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2166.55, -2996.42], [2179.84, -2985.23], [2172.25, -2976.28], [2166.13, -2981.43], [2168.73, -2984.5], [2161.56, -2990.54], [2166.55, -2996.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2181.89, -3020.98], [2188.03, -3016.83], [2185.42, -3013.01], [2179.28, -3017.17], [2181.89, -3020.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2164.71, -3023.91], [2168.11, -3032.08], [2175.34, -3029.09], [2171.94, -3020.93], [2164.71, -3023.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2152.43, -3016.49], [2147.09, -3004.57], [2154.9, -3001.1], [2153.9, -2998.88], [2159.18, -2996.53], [2164.8, -3009.07], [2160.62, -3010.92], [2161.34, -3012.53], [2152.43, -3016.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2148.5, -3033.74], [2137.55, -3021.37], [2142.02, -3017.44], [2140.29, -3015.48], [2144.07, -3012.14], [2147.59, -3016.11], [2146.78, -3016.82], [2155.96, -3027.18], [2148.5, -3033.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2133.2, -3043.8], [2124.33, -3033.71], [2133.3, -3025.88], [2142.18, -3035.97], [2139.84, -3038.01], [2142.08, -3040.55], [2139.61, -3042.7], [2137.38, -3040.16], [2133.2, -3043.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2100.41, -3037.08], [2096.3, -3033.71], [2098.47, -3031.09], [2102.58, -3034.45], [2100.41, -3037.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2143.95, -3061.18], [2148.92, -3065.77], [2153.16, -3061.21], [2148.19, -3056.63], [2143.95, -3061.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2125.22, -3061.35], [2112.48, -3052.87], [2119.26, -3042.74], [2124.95, -3046.53], [2124.1, -3047.79], [2131.16, -3052.49], [2125.22, -3061.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2143.76, -3074.44], [2134.84, -3067.99], [2140.26, -3060.55], [2149.18, -3066.99], [2143.76, -3074.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2130.64, -3086.34], [2136.79, -3090.77], [2141.67, -3084.04], [2135.52, -3079.61], [2130.64, -3086.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2102.75, -3065.64], [2107.05, -3058.65], [2116.95, -3064.7], [2116.21, -3065.91], [2118.56, -3067.34], [2117.53, -3069.01], [2119.31, -3070.1], [2116.45, -3074.75], [2109.37, -3070.44], [2109.7, -3069.89], [2102.75, -3065.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2112.49, -3090.19], [2098.76, -3082.61], [2104.74, -3071.83], [2111.37, -3075.5], [2109.93, -3078.09], [2117.03, -3082.01], [2112.49, -3090.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2130.43, -3099.04], [2121.2, -3093.65], [2124.74, -3087.63], [2133.98, -3093.03], [2130.43, -3099.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2101.98, -3098.84], [2107.16, -3089.43], [2116.18, -3094.36], [2115.76, -3095.13], [2119.58, -3097.21], [2118.62, -3098.94], [2120.11, -3099.76], [2118.26, -3103.11], [2116.78, -3102.29], [2114.81, -3105.86], [2101.98, -3098.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2124.77, -3114.21], [2130.55, -3117.06], [2133.59, -3110.96], [2127.81, -3108.09], [2124.77, -3114.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2123.58, -3122.69], [2117.55, -3119.6], [2120.53, -3113.84], [2126.56, -3116.93], [2123.58, -3122.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2111.77, -3127.21], [2107.93, -3134.5], [2117.56, -3139.54], [2121.4, -3132.25], [2111.77, -3127.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2091.76, -3112.87], [2096.64, -3103.94], [2106.73, -3109.41], [2105.84, -3111.04], [2113.36, -3115.12], [2109.37, -3122.42], [2091.76, -3112.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2099.61, -3136.25], [2101.51, -3133.47], [2104.89, -3135.77], [2109.17, -3129.51], [2105.78, -3127.21], [2107.0, -3125.45], [2095.76, -3117.82], [2088.37, -3128.62], [2099.61, -3136.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2085.11, -3146.24], [2097.37, -3154.41], [2100.96, -3149.05], [2098.59, -3147.47], [2098.86, -3147.07], [2097.94, -3146.45], [2101.22, -3141.54], [2092.27, -3135.57], [2091.26, -3137.07], [2086.13, -3133.65], [2081.01, -3141.3], [2086.13, -3144.71], [2085.11, -3146.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2084.24, -3162.75], [2082.3, -3164.63], [2081.11, -3163.41], [2078.53, -3165.9], [2079.72, -3167.13], [2079.01, -3167.83], [2084.4, -3173.37], [2089.65, -3168.3], [2084.24, -3162.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2068.46, -3153.22], [2079.67, -3162.85], [2086.11, -3155.4], [2074.9, -3145.77], [2068.46, -3153.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2063.19, -3173.75], [2057.49, -3167.83], [2063.57, -3162.03], [2064.6, -3163.09], [2067.28, -3160.53], [2076.72, -3170.35], [2073.67, -3173.27], [2068.89, -3168.3], [2063.19, -3173.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2049.06, -3184.98], [2060.08, -3177.97], [2066.75, -3188.38], [2068.73, -3187.12], [2073.17, -3194.04], [2065.89, -3198.67], [2061.86, -3192.4], [2056.15, -3196.04], [2049.06, -3184.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[2031.85, -3184.72], [2040.6, -3204.64], [2049.95, -3200.55], [2041.2, -3180.65], [2031.85, -3184.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[2959.18, 2622.17], [2959.98, 2636.07], [2952.14, 2636.53], [2951.33, 2622.62], [2959.18, 2622.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[771.12, 682.47], [772.76, 680.99], [774.17, 679.69], [759.03, 666.28], [756.57, 668.84], [771.12, 682.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[-1434.98, 174.04], [-1435.16, 171.16], [-1435.48, 167.92], [-1435.61, 165.34], [-1436.11, 155.62], [-1435.9, 152.97], [-1434.3, 152.91], [-1433.99, 160.26], [-1429.89, 160.1], [-1410.28, 159.27], [-1410.49, 154.29], [-1407.56, 154.18], [-1399.55, 153.87], [-1397.82, 153.68], [-1397.03, 153.53], [-1396.07, 155.27], [-1395.82, 155.77], [-1395.02, 157.19], [-1394.31, 158.46], [-1394.01, 158.95], [-1391.99, 162.34], [-1393.0, 162.82], [-1395.45, 164.01], [-1405.08, 168.12], [-1413.43, 170.85], [-1421.59, 172.39], [-1428.57, 173.29], [-1434.98, 174.04]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.343, "pop": 0, "jobs": 343}}, {"shape": {"outer": [[-1240.91, 53.67], [-1240.94, 52.67], [-1241.0, 51.08], [-1241.08, 48.88], [-1236.52, 48.71], [-1231.76, 48.54], [-1231.59, 53.34], [-1236.3, 53.5], [-1240.91, 53.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3032.17, 71.8], [-3032.41, 66.89], [-3053.54, 67.89], [-3053.36, 72.76], [-3032.17, 71.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-3059.78, 62.34], [-3060.52, 36.87], [-3066.96, 37.04], [-3066.25, 62.55], [-3059.78, 62.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-374.67, -170.23], [-365.79, -162.2], [-381.03, -145.48], [-389.9, -153.51], [-374.67, -170.23]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-381.03, -145.48], [-376.28, -141.19], [-362.19, -156.67], [-360.54, -158.48], [-365.28, -162.77], [-365.79, -162.2], [-381.03, -145.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1165.27, -82.43], [-1162.56, -82.54], [-1155.04, -82.92], [-1155.95, -102.4], [-1156.19, -106.76], [-1166.43, -106.26], [-1165.27, -82.43]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.137, "pop": 0, "jobs": 137}}, {"shape": {"outer": [[-994.26, -37.96], [-993.86, -30.63], [-990.16, -30.82], [-985.77, -31.06], [-985.73, -30.19], [-973.79, -30.9], [-975.99, -72.22], [-996.04, -71.23], [-995.46, -60.41], [-994.26, -37.96]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.866, "pop": 433, "jobs": 0}}, {"shape": {"outer": [[-973.79, -30.9], [-964.73, -31.38], [-966.92, -72.7], [-975.99, -72.22], [-973.79, -30.9]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.24, "pop": 0, "jobs": 240}}, {"shape": {"outer": [[-65.23, 109.81], [-78.18, 124.37], [-79.73, 123.19], [-93.03, 123.78], [-95.2, 91.45], [-81.01, 104.72], [-76.29, 99.47], [-65.23, 109.81]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.58, "pop": 290, "jobs": 0}}, {"shape": {"outer": [[1083.0, 1044.8], [1110.7, 1015.3], [1153.34, 1055.05], [1125.65, 1084.55], [1083.0, 1044.8]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1982}}, {"shape": {"outer": [[-1299.07, -394.24], [-1323.06, -393.17], [-1322.91, -390.24], [-1299.02, -391.58], [-1299.07, -394.24]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.043, "pop": 0, "jobs": 43}}, {"shape": {"outer": [[-1348.34, -241.1], [-1364.9, -240.2], [-1371.0, -239.86], [-1370.8, -237.02], [-1348.14, -238.05], [-1348.34, -241.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.043, "pop": 0, "jobs": 43}}, {"shape": {"outer": [[-690.12, -90.09], [-683.1, -90.38], [-683.13, -91.4], [-683.21, -93.43], [-690.25, -93.15], [-690.16, -91.12], [-690.12, -90.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.014, "pop": 0, "jobs": 14}}, {"shape": {"outer": [[-531.56, -107.34], [-524.29, -107.69], [-524.35, -110.5], [-531.68, -110.24], [-531.56, -107.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.013, "pop": 0, "jobs": 13}}, {"shape": {"outer": [[1369.58, 1225.25], [1370.94, 1223.87], [1372.18, 1222.61], [1357.51, 1209.03], [1354.57, 1211.82], [1369.58, 1225.25]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.05, "pop": 0, "jobs": 50}}, {"shape": {"outer": [[1937.9, 1751.44], [1939.28, 1750.1], [1940.51, 1748.92], [1923.48, 1733.36], [1921.25, 1735.96], [1937.9, 1751.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.052, "pop": 0, "jobs": 52}}, {"shape": {"outer": [[2424.99, 2213.77], [2427.5, 2211.29], [2414.35, 2197.98], [2412.97, 2199.34], [2411.37, 2200.94], [2424.99, 2213.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.046, "pop": 0, "jobs": 46}}, {"shape": {"outer": [[2826.31, 2613.72], [2827.72, 2612.98], [2829.16, 2612.22], [2815.91, 2592.41], [2813.68, 2593.94], [2826.31, 2613.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.045, "pop": 0, "jobs": 45}}, {"shape": {"outer": [[2873.02, 2684.69], [2875.62, 2683.17], [2865.78, 2666.98], [2864.52, 2667.81], [2863.08, 2668.76], [2873.02, 2684.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.038, "pop": 0, "jobs": 38}}, {"shape": {"outer": [[-179.68, -7.23], [-166.07, 4.99], [-164.11, 2.84], [-177.64, -9.4], [-178.16, -8.83], [-179.68, -7.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.034, "pop": 0, "jobs": 34}}, {"shape": {"outer": [[-77.96, -262.96], [-64.45, -250.65], [-62.41, -252.88], [-75.92, -265.19], [-77.96, -262.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.035, "pop": 0, "jobs": 35}}, {"shape": {"outer": [[-1969.52, -212.88], [-1988.94, -212.07], [-1988.7, -208.52], [-1969.37, -209.36], [-1969.52, -212.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.044, "pop": 0, "jobs": 44}}, {"shape": {"outer": [[-1979.6, -358.22], [-2000.54, -353.13], [-1999.83, -350.36], [-1978.89, -355.2], [-1979.6, -358.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.041, "pop": 0, "jobs": 41}}, {"shape": {"outer": [[320.98, 272.79], [304.17, 257.85], [306.97, 254.69], [323.96, 269.69], [322.47, 271.24], [320.98, 272.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.062, "pop": 0, "jobs": 62}}, {"shape": {"outer": [[-1203.14, -1028.54], [-1202.38, -1003.21], [-1231.68, -1002.33], [-1232.02, -1013.71], [-1251.93, -1013.12], [-1251.99, -1015.03], [-1248.48, -1015.14], [-1248.97, -1031.95], [-1229.86, -1032.52], [-1229.8, -1030.63], [-1227.57, -1030.7], [-1227.48, -1027.81], [-1203.14, -1028.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.689, "pop": 0, "jobs": 689}}, {"shape": {"outer": [[-1250.8, -1044.1], [-1245.09, -1044.25], [-1245.11, -1045.16], [-1236.8, -1045.35], [-1236.78, -1044.62], [-1229.43, -1044.78], [-1229.54, -1049.27], [-1227.39, -1049.32], [-1227.43, -1051.14], [-1227.48, -1053.24], [-1229.69, -1053.19], [-1229.76, -1056.29], [-1227.77, -1056.33], [-1227.81, -1058.33], [-1227.86, -1060.51], [-1229.64, -1060.47], [-1229.71, -1063.57], [-1228.08, -1063.6], [-1228.12, -1065.72], [-1228.28, -1072.75], [-1228.34, -1075.39], [-1227.54, -1076.26], [-1226.49, -1077.4], [-1228.02, -1078.81], [-1223.58, -1083.61], [-1222.25, -1082.39], [-1221.13, -1083.6], [-1216.66, -1088.44], [-1215.64, -1089.54], [-1222.27, -1095.64], [-1223.99, -1093.79], [-1227.01, -1096.56], [-1224.64, -1099.11], [-1227.6, -1101.83], [-1229.69, -1099.57], [-1233.76, -1103.31], [-1236.37, -1100.49], [-1237.75, -1101.76], [-1240.15, -1099.17], [-1238.71, -1097.83], [-1241.03, -1095.32], [-1245.28, -1090.73], [-1246.79, -1092.11], [-1251.81, -1086.69], [-1250.5, -1085.48], [-1251.67, -1084.21], [-1251.55, -1079.53], [-1253.49, -1079.47], [-1253.07, -1063.52], [-1251.19, -1063.57], [-1250.98, -1055.65], [-1252.65, -1055.61], [-1252.46, -1048.11], [-1250.9, -1048.15], [-1250.8, -1044.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 545, "jobs": 0}}, {"shape": {"outer": [[-1247.79, -895.22], [-1249.27, -949.45], [-1227.11, -950.06], [-1225.61, -895.83], [-1247.79, -895.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.962, "pop": 481, "jobs": 0}}, {"shape": {"outer": [[-1198.43, -901.7], [-1183.76, -907.98], [-1199.33, -944.14], [-1214.0, -937.87], [-1198.43, -901.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.502, "pop": 251, "jobs": 0}}, {"shape": {"outer": [[-1176.49, -910.18], [-1161.56, -916.68], [-1177.46, -952.99], [-1192.39, -946.49], [-1176.49, -910.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.516, "pop": 258, "jobs": 0}}, {"shape": {"outer": [[-1155.03, -919.41], [-1142.43, -924.97], [-1158.7, -961.53], [-1171.28, -955.97], [-1155.03, -919.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.44, "pop": 220, "jobs": 0}}, {"shape": {"outer": [[-1153.69, -981.16], [-1164.06, -990.48], [-1137.82, -1019.45], [-1127.45, -1010.12], [-1153.69, -981.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.436, "pop": 218, "jobs": 0}}, {"shape": {"outer": [[-1186.7, -1013.82], [-1188.95, -1015.84], [-1189.34, -1015.42], [-1189.66, -1015.7], [-1191.05, -1014.16], [-1195.42, -1018.09], [-1193.85, -1019.82], [-1194.17, -1020.12], [-1193.84, -1020.47], [-1195.62, -1022.06], [-1194.79, -1022.98], [-1195.35, -1023.48], [-1192.2, -1026.96], [-1191.57, -1026.39], [-1191.17, -1026.83], [-1190.66, -1026.36], [-1189.38, -1027.78], [-1189.93, -1028.27], [-1189.6, -1028.63], [-1191.12, -1030.01], [-1187.17, -1034.33], [-1185.55, -1032.87], [-1185.0, -1033.47], [-1185.38, -1033.82], [-1183.17, -1036.22], [-1182.87, -1035.94], [-1182.35, -1036.5], [-1183.78, -1037.81], [-1179.77, -1042.17], [-1178.44, -1040.95], [-1178.23, -1041.17], [-1177.79, -1040.76], [-1176.43, -1042.23], [-1176.97, -1042.74], [-1176.1, -1043.67], [-1176.68, -1044.2], [-1173.01, -1048.16], [-1170.02, -1045.41], [-1168.3, -1047.27], [-1163.96, -1043.27], [-1165.64, -1041.46], [-1163.66, -1039.64], [-1164.54, -1038.69], [-1163.77, -1037.99], [-1166.85, -1034.68], [-1167.41, -1035.2], [-1168.02, -1034.54], [-1168.59, -1035.07], [-1169.69, -1033.9], [-1169.14, -1033.39], [-1169.47, -1033.05], [-1167.93, -1031.62], [-1172.21, -1027.02], [-1173.79, -1028.48], [-1174.14, -1028.1], [-1173.75, -1027.75], [-1176.0, -1025.3], [-1176.35, -1025.63], [-1176.8, -1025.15], [-1175.11, -1023.59], [-1179.34, -1019.02], [-1180.8, -1020.35], [-1180.98, -1020.15], [-1181.48, -1020.6], [-1182.54, -1019.44], [-1181.96, -1018.91], [-1182.87, -1017.93], [-1182.15, -1017.28], [-1185.3, -1013.82], [-1186.06, -1014.51], [-1186.7, -1013.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-1185.79, -1046.32], [-1177.21, -1055.51], [-1209.68, -1085.6], [-1218.26, -1076.41], [-1185.79, -1046.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.446, "pop": 223, "jobs": 0}}, {"shape": {"outer": [[-2356.25, -1181.27], [-2348.41, -1181.4], [-2348.47, -1185.18], [-2348.53, -1188.34], [-2356.37, -1188.21], [-2356.25, -1181.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1569.6, -1115.32], [-1572.34, -1115.23], [-1572.29, -1113.55], [-1585.96, -1113.13], [-1585.4, -1094.95], [-1571.61, -1095.38], [-1571.57, -1093.91], [-1568.93, -1093.99], [-1569.14, -1100.79], [-1569.26, -1104.36], [-1569.44, -1110.24], [-1569.6, -1115.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[-3066.01, -349.9], [-3058.45, -348.99], [-3057.57, -356.25], [-3065.12, -357.17], [-3066.01, -349.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-3084.54, -349.06], [-3070.7, -347.39], [-3069.55, -356.82], [-3078.43, -357.9], [-3078.16, -360.07], [-3083.12, -360.67], [-3084.54, -349.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2694.36, -369.02], [-2689.52, -365.54], [-2685.28, -371.4], [-2690.13, -374.89], [-2694.36, -369.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2681.74, -339.46], [-2673.13, -339.61], [-2673.26, -346.98], [-2681.87, -346.84], [-2681.74, -339.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[853.03, 861.02], [858.21, 865.6], [891.14, 828.57], [885.95, 823.98], [853.03, 861.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.274, "pop": 137, "jobs": 0}}, {"shape": {"outer": [[883.64, 842.66], [895.44, 853.1], [909.1, 837.77], [897.3, 827.34], [883.64, 842.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[868.85, 858.63], [880.64, 869.08], [894.31, 853.75], [882.52, 843.31], [868.85, 858.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[809.71, 744.27], [861.1, 790.93], [856.65, 795.79], [805.26, 749.12], [809.71, 744.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[-585.35, -2199.9], [-578.15, -2200.49], [-578.67, -2206.93], [-585.89, -2206.35], [-585.35, -2199.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[934.87, 1166.55], [938.36, 1162.6], [934.14, 1158.9], [937.0, 1155.66], [932.7, 1151.89], [926.36, 1159.07], [934.87, 1166.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-665.06, -721.72], [-697.47, -686.53], [-713.58, -700.89], [-702.14, -713.53], [-710.18, -720.09], [-721.23, -707.69], [-737.52, -722.21], [-727.11, -733.91], [-735.68, -740.91], [-745.49, -729.31], [-762.78, -744.71], [-729.62, -780.74], [-665.06, -721.72]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 4088, "jobs": 0}}, {"shape": {"outer": [[2672.5, 1915.36], [2744.73, 1911.9], [2743.74, 1891.41], [2709.42, 1893.06], [2671.52, 1894.87], [2672.5, 1915.36]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 779, "jobs": 0}}, {"shape": {"outer": [[-782.85, -681.53], [-783.92, -680.35], [-775.88, -673.12], [-774.88, -674.23], [-772.38, -671.99], [-761.18, -684.35], [-773.97, -695.84], [-785.11, -683.55], [-782.85, -681.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[-1993.98, -239.0], [-1930.86, -240.89], [-1926.51, -245.3], [-1915.49, -245.38], [-1904.61, -261.68], [-1929.71, -276.98], [-1952.33, -292.71], [-1953.49, -333.54], [-1997.1, -332.08], [-1995.7, -290.53], [-1993.98, -239.0]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 10828}}, {"shape": {"outer": [[334.26, 174.82], [339.11, 169.67], [332.38, 163.36], [327.53, 168.51], [334.26, 174.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-959.91, -112.37], [-965.65, -112.07], [-965.71, -113.13], [-970.32, -112.88], [-970.35, -113.53], [-975.46, -113.27], [-975.11, -107.03], [-974.33, -91.99], [-974.36, -91.82], [-969.25, -92.08], [-958.89, -92.61], [-959.91, -112.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-996.61, -215.44], [-997.45, -216.2], [-999.69, -217.92], [-991.82, -226.69], [-988.12, -223.44], [-990.14, -221.16], [-991.3, -221.44], [-996.61, -215.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2759.66, -844.5], [-2754.64, -845.16], [-2755.5, -851.74], [-2760.53, -851.09], [-2759.66, -844.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[624.79, -62.54], [628.27, -73.83], [634.42, -71.94], [630.94, -60.65], [624.79, -62.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[254.06, -254.01], [271.87, -237.93], [274.53, -240.86], [286.21, -230.3], [293.49, -238.3], [298.94, -233.38], [288.74, -222.17], [309.66, -203.26], [310.79, -204.5], [342.93, -239.81], [344.24, -241.25], [288.39, -291.73], [254.06, -254.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1471, "jobs": 0}}, {"shape": {"outer": [[-819.05, -99.63], [-820.07, -115.87], [-815.8, -116.13], [-815.88, -117.45], [-815.93, -118.16], [-813.99, -119.82], [-808.1, -120.19], [-806.9, -100.39], [-819.05, -99.63]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1942.19, -120.32], [-1939.63, -120.42], [-1939.8, -124.49], [-1939.99, -129.36], [-1942.55, -129.25], [-1942.35, -124.39], [-1942.19, -120.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1162.18, -216.12], [-1173.08, -215.62], [-1174.34, -243.02], [-1174.39, -244.26], [-1171.56, -244.39], [-1163.49, -244.75], [-1162.18, -216.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[-1510.19, -1844.05], [-1495.85, -1870.51], [-1513.65, -1880.09], [-1518.09, -1871.9], [-1536.33, -1881.71], [-1528.06, -1896.98], [-1518.47, -1891.82], [-1509.69, -1908.02], [-1536.54, -1922.46], [-1554.05, -1890.42], [-1560.32, -1893.82], [-1561.06, -1892.45], [-1569.88, -1876.17], [-1510.19, -1844.05]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 2184, "jobs": 0}}, {"shape": {"outer": [[-1175.62, -24.18], [-1175.29, -17.54], [-1174.91, -9.88], [-1173.0, -9.97], [-1172.95, -8.85], [-1172.89, -7.84], [-1170.53, -7.95], [-1149.93, -8.97], [-1146.44, -9.14], [-1146.83, -17.39], [-1147.38, -28.28], [-1165.17, -27.41], [-1173.43, -27.01], [-1173.3, -24.3], [-1175.62, -24.18]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 748, "jobs": 0}}, {"shape": {"outer": [[950.58, 330.98], [927.15, 356.46], [937.38, 365.58], [938.5, 364.23], [969.55, 392.43], [975.82, 385.23], [1012.98, 418.95], [1026.39, 405.04], [993.71, 375.04], [1000.89, 367.42], [1006.76, 371.81], [1030.19, 346.78], [1014.67, 332.32], [1013.24, 333.92], [1012.07, 332.9], [1010.39, 331.41], [1011.63, 329.71], [999.05, 318.12], [968.1, 353.06], [962.25, 347.98], [965.62, 344.28], [950.58, 330.98]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 3937, "jobs": 0}}, {"shape": {"outer": [[-1560.74, 65.98], [-1562.06, 66.04], [-1562.88, 66.08], [-1565.26, 66.19], [-1565.32, 64.9], [-1565.36, 63.95], [-1565.43, 62.46], [-1565.49, 61.19], [-1575.33, 61.64], [-1598.49, 62.69], [-1596.78, 100.05], [-1582.69, 99.4], [-1582.98, 92.94], [-1583.13, 89.76], [-1583.35, 85.03], [-1581.08, 84.93], [-1574.77, 84.63], [-1572.56, 84.54], [-1564.38, 84.16], [-1564.25, 86.8], [-1559.79, 86.59], [-1559.9, 84.4], [-1560.0, 82.23], [-1560.74, 65.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.676, "pop": 0, "jobs": 676}}, {"shape": {"outer": [[-468.33, 207.27], [-457.05, 217.71], [-453.44, 213.84], [-451.79, 212.07], [-453.36, 210.64], [-451.15, 208.27], [-459.71, 200.34], [-462.91, 203.79], [-463.89, 202.89], [-466.33, 205.53], [-468.33, 207.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-525.14, 290.82], [-515.03, 279.31], [-537.12, 260.04], [-539.01, 262.2], [-536.83, 264.11], [-540.03, 267.74], [-537.09, 270.31], [-539.64, 273.2], [-538.86, 273.89], [-539.88, 275.05], [-533.59, 280.53], [-535.04, 282.17], [-525.14, 290.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[-468.0, 369.21], [-467.54, 369.63], [-466.79, 370.31], [-466.17, 370.88], [-467.59, 372.43], [-465.2, 374.59], [-461.05, 370.06], [-465.27, 366.24], [-468.0, 369.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-262.82, -1989.67], [-254.33, -1990.12], [-254.78, -1998.41], [-263.26, -1997.96], [-262.82, -1989.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1139.14, -2105.18], [-1130.46, -2105.52], [-1130.77, -2113.37], [-1139.45, -2113.03], [-1139.14, -2105.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1169.71, -998.31], [-1171.96, -1000.35], [-1172.34, -999.94], [-1172.64, -1000.21], [-1173.96, -998.76], [-1178.33, -1002.75], [-1176.99, -1004.21], [-1177.32, -1004.5], [-1176.99, -1004.86], [-1178.75, -1006.46], [-1177.9, -1007.38], [-1178.46, -1007.88], [-1175.21, -1011.43], [-1174.57, -1010.85], [-1174.18, -1011.28], [-1173.67, -1010.82], [-1172.42, -1012.18], [-1172.96, -1012.67], [-1172.64, -1013.03], [-1174.14, -1014.41], [-1170.17, -1018.73], [-1168.54, -1017.26], [-1167.98, -1017.87], [-1168.36, -1018.22], [-1166.17, -1020.6], [-1165.86, -1020.31], [-1165.32, -1020.91], [-1166.74, -1022.21], [-1162.76, -1026.53], [-1161.43, -1025.31], [-1161.23, -1025.52], [-1160.79, -1025.13], [-1159.38, -1026.63], [-1159.94, -1027.14], [-1159.07, -1028.08], [-1159.64, -1028.6], [-1156.0, -1032.53], [-1153.02, -1029.78], [-1151.3, -1031.64], [-1146.98, -1027.68], [-1148.66, -1025.86], [-1146.68, -1024.04], [-1147.56, -1023.09], [-1146.79, -1022.39], [-1149.85, -1019.09], [-1150.41, -1019.61], [-1151.02, -1018.96], [-1151.59, -1019.49], [-1152.69, -1018.3], [-1152.15, -1017.79], [-1152.47, -1017.45], [-1150.93, -1016.03], [-1155.21, -1011.41], [-1156.79, -1012.87], [-1157.13, -1012.5], [-1156.74, -1012.15], [-1159.01, -1009.69], [-1159.35, -1010.02], [-1159.78, -1009.55], [-1158.09, -1008.0], [-1162.34, -1003.42], [-1163.8, -1004.76], [-1163.98, -1004.56], [-1164.47, -1005.0], [-1165.55, -1003.84], [-1164.98, -1003.31], [-1165.9, -1002.32], [-1165.19, -1001.67], [-1168.3, -998.3], [-1169.07, -998.99], [-1169.71, -998.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}], "water": [{"shape": {"outer": [[-2837.32, -1769.97], [-2832.71, -1768.15], [-2819.31, -1760.77], [-2801.09, -1753.61], [-2790.1, -1750.46], [-2777.45, -1743.49], [-2769.78, -1741.89], [-2739.77, -1731.24], [-2702.84, -1723.14], [-2690.42, -1721.1], [-2676.79, -1720.71], [-2664.94, -1718.44], [-2649.66, -1714.5], [-2636.22, -1709.89], [-2623.56, -1705.58], [-2610.07, -1698.8], [-2600.12, -1689.67], [-2593.83, -1687.27], [-2586.0, -1683.41], [-2578.35, -1682.21], [-2570.05, -1682.62], [-2565.16, -1681.8], [-2558.49, -1683.2], [-2548.28, -1683.46], [-2539.31, -1682.05], [-2530.14, -1679.8], [-2520.31, -1676.86], [-2508.67, -1673.22], [-2499.17, -1672.5], [-2489.69, -1672.51], [-2481.05, -1672.38], [-2474.47, -1673.89], [-2465.08, -1677.69], [-2456.22, -1682.26], [-2452.42, -1687.07], [-2449.83, -1690.44], [-2444.26, -1693.95], [-2436.13, -1695.0], [-2426.74, -1701.34], [-2420.9, -1711.41], [-2419.83, -1714.84], [-2421.25, -1717.9], [-2422.23, -1721.61], [-2420.86, -1727.41], [-2417.7, -1731.71], [-2417.3, -1734.0], [-2415.56, -1735.9], [-2414.98, -1737.3], [-2416.59, -1739.8], [-2416.59, -1741.37], [-2414.13, -1744.04], [-2412.23, -1745.02], [-2410.87, -1748.06], [-2410.56, -1751.87], [-2411.68, -1753.55], [-2411.32, -1755.25], [-2408.97, -1757.13], [-2408.06, -1764.75], [-2407.83, -1770.87], [-2409.01, -1773.09], [-2408.07, -1774.79], [-2406.74, -1775.73], [-2406.85, -1778.64], [-2409.09, -1782.87], [-2422.1, -1794.31], [-2422.79, -1797.48], [-2422.73, -1800.6], [-2420.68, -1810.25], [-2421.21, -1813.08], [-2417.4, -1818.11], [-2413.39, -1823.66], [-2410.33, -1826.27], [-2407.41, -1832.11], [-2400.59, -1838.42], [-2392.02, -1841.64], [-2387.94, -1840.85], [-2381.89, -1841.07], [-2379.62, -1841.04], [-2377.42, -1841.6], [-2369.76, -1847.11], [-2367.01, -1848.96], [-2363.43, -1853.68], [-2360.43, -1858.17], [-2363.95, -1862.67], [-2369.97, -1861.44], [-2380.7, -1860.25], [-2390.57, -1858.17], [-2395.15, -1856.36], [-2403.75, -1855.21], [-2431.68, -1848.21], [-2439.85, -1845.16], [-2444.15, -1842.0], [-2449.05, -1840.87], [-2453.88, -1842.4], [-2459.07, -1847.32], [-2466.32, -1856.69], [-2472.57, -1859.52], [-2478.68, -1861.38], [-2486.09, -1862.8], [-2493.47, -1862.5], [-2500.0, -1860.17], [-2505.11, -1856.57], [-2508.07, -1852.77], [-2509.5, -1848.35], [-2508.63, -1845.0], [-2506.9, -1834.54], [-2508.06, -1830.87], [-2509.87, -1828.07], [-2533.22, -1817.55], [-2558.64, -1803.87], [-2568.92, -1797.09], [-2569.42, -1795.65], [-2586.36, -1784.95], [-2587.3, -1782.96], [-2588.78, -1781.68], [-2601.42, -1778.87], [-2607.92, -1777.87], [-2613.03, -1777.83], [-2624.91, -1779.16], [-2640.31, -1785.37], [-2656.44, -1790.69], [-2665.77, -1792.98], [-2682.03, -1796.14], [-2711.13, -1803.22], [-2721.48, -1804.79], [-2741.7, -1806.28], [-2747.46, -1806.68], [-2758.67, -1806.32], [-2766.52, -1805.92], [-2775.63, -1803.6], [-2783.38, -1799.99], [-2795.61, -1790.25], [-2798.71, -1788.7], [-2802.09, -1786.75], [-2808.62, -1786.02], [-2822.82, -1787.21], [-2826.99, -1787.25], [-2834.64, -1785.53], [-2842.53, -1785.0], [-2843.99, -1770.68], [-2837.32, -1769.97]], "holes": [[[-2575.95, -1714.49], [-2577.37, -1722.08], [-2577.35, -1724.66], [-2578.35, -1730.61], [-2580.18, -1739.84], [-2581.94, -1751.51], [-2581.46, -1755.19], [-2580.58, -1758.83], [-2578.97, -1762.41], [-2573.97, -1766.07], [-2569.16, -1769.27], [-2559.24, -1772.86], [-2551.2, -1775.74], [-2536.91, -1784.08], [-2532.47, -1786.62], [-2529.56, -1787.1], [-2526.75, -1785.95], [-2523.53, -1782.9], [-2517.68, -1776.55], [-2511.76, -1770.68], [-2505.43, -1766.71], [-2499.64, -1762.26], [-2495.36, -1757.41], [-2491.62, -1756.47], [-2488.23, -1754.66], [-2485.76, -1752.72], [-2482.01, -1748.83], [-2480.02, -1746.5], [-2477.52, -1744.4], [-2472.1, -1739.99], [-2469.18, -1736.89], [-2466.32, -1735.04], [-2463.04, -1732.82], [-2460.26, -1730.08], [-2458.75, -1727.53], [-2458.96, -1725.08], [-2460.45, -1721.22], [-2462.92, -1714.7], [-2463.57, -1712.25], [-2465.09, -1709.25], [-2467.05, -1707.53], [-2468.44, -1707.31], [-2471.37, -1707.34], [-2473.34, -1705.88], [-2474.71, -1704.05], [-2479.38, -1701.04], [-2491.16, -1694.84], [-2496.6, -1693.47], [-2502.92, -1692.64], [-2516.16, -1693.56], [-2528.83, -1694.33], [-2542.29, -1694.35], [-2554.75, -1694.73], [-2563.61, -1697.78], [-2566.19, -1700.27], [-2568.56, -1702.98], [-2571.57, -1708.22], [-2575.95, -1714.49]]]}}, {"shape": {"outer": [[-1399.62, -1789.5], [-1416.18, -1724.29], [-1413.81, -1647.78], [-1410.5, -1582.16], [-1410.75, -1543.25], [-1406.94, -1491.83], [-1406.98, -1480.56], [-1403.74, -1448.66], [-1399.5, -1439.58], [-1394.12, -1430.8], [-1390.23, -1426.53], [-1384.07, -1415.97], [-1380.25, -1414.2], [-1376.19, -1410.0], [-1363.27, -1393.17], [-1350.56, -1385.01], [-1344.21, -1384.12], [-1339.28, -1384.42], [-1335.58, -1383.34], [-1330.95, -1382.97], [-1326.78, -1382.44], [-1321.15, -1382.57], [-1315.58, -1382.16], [-1310.84, -1382.43], [-1297.89, -1382.68], [-1292.86, -1384.89], [-1284.02, -1384.92], [-1269.69, -1386.42], [-1264.54, -1388.5], [-1260.6, -1388.56], [-1257.42, -1388.87], [-1253.0, -1388.23], [-1248.5, -1386.19], [-1244.05, -1383.11], [-1235.79, -1361.67], [-1236.71, -1359.3], [-1234.35, -1353.2], [-1230.6, -1346.68], [-1227.54, -1340.23], [-1217.1, -1321.5], [-1213.8, -1317.25], [-1210.61, -1310.91], [-1204.18, -1305.39], [-1203.26, -1304.47], [-1202.58, -1303.8], [-1197.09, -1298.61], [-1191.29, -1294.73], [-1179.12, -1285.86], [-1174.47, -1283.36], [-1169.36, -1281.01], [-1163.87, -1277.28], [-1156.52, -1273.59], [-1145.29, -1269.38], [-1139.31, -1268.79], [-1133.38, -1265.99], [-1130.1, -1265.84], [-1127.03, -1264.51], [-1121.76, -1262.58], [-1115.98, -1261.5], [-1104.72, -1259.0], [-1101.83, -1258.36], [-1098.61, -1258.03], [-1096.3, -1258.33], [-1094.4, -1258.75], [-1082.72, -1257.9], [-1061.05, -1258.67], [-1059.86, -1259.55], [-1058.31, -1258.66], [-1056.57, -1258.6], [-1055.18, -1257.55], [-1053.62, -1258.58], [-1052.13, -1258.3], [-1049.16, -1258.98], [-1044.46, -1258.86], [-1035.36, -1259.11], [-1034.28, -1259.75], [-1033.0, -1259.65], [-1030.6, -1259.86], [-1028.22, -1260.37], [-1025.86, -1261.33], [-1020.33, -1261.18], [-1014.82, -1262.29], [-1002.37, -1265.34], [-996.15, -1267.28], [-992.92, -1268.2], [-990.28, -1269.63], [-978.05, -1272.1], [-966.24, -1277.82], [-953.49, -1282.96], [-940.75, -1289.12], [-925.64, -1299.32], [-909.25, -1310.36], [-856.43, -1347.03], [-845.65, -1353.88], [-824.78, -1369.04], [-819.27, -1371.5], [-813.67, -1373.95], [-808.11, -1376.13], [-802.63, -1378.31], [-795.33, -1381.45], [-790.02, -1381.71], [-784.62, -1383.03], [-779.26, -1384.05], [-773.95, -1384.4], [-769.19, -1385.77], [-765.01, -1385.28], [-763.67, -1386.32], [-751.21, -1381.49], [-731.13, -1379.65], [-714.26, -1376.64], [-694.31, -1363.97], [-653.66, -1336.55], [-625.18, -1319.23], [-607.54, -1313.47], [-590.04, -1309.0], [-587.03, -1310.16], [-584.5, -1310.78], [-580.58, -1310.64], [-577.99, -1308.83], [-575.28, -1307.47], [-573.67, -1305.73], [-570.92, -1302.43], [-568.22, -1299.0], [-565.1, -1293.67], [-563.21, -1292.65], [-562.26, -1293.31], [-561.27, -1292.81], [-553.82, -1279.77], [-546.32, -1267.7], [-539.2, -1257.88], [-536.13, -1251.85], [-534.84, -1247.92], [-532.7, -1243.81], [-531.77, -1243.44], [-530.08, -1239.32], [-527.72, -1234.22], [-528.5, -1232.18], [-526.77, -1228.53], [-524.06, -1224.02], [-521.98, -1218.45], [-521.69, -1214.82], [-518.96, -1209.53], [-517.43, -1200.79], [-514.44, -1190.39], [-512.84, -1187.11], [-506.19, -1172.77], [-497.57, -1156.6], [-487.69, -1137.45], [-485.25, -1133.34], [-482.63, -1128.5], [-476.5, -1122.87], [-474.75, -1119.23], [-473.61, -1117.22], [-468.14, -1106.23], [-461.04, -1093.29], [-449.99, -1077.15], [-446.22, -1071.78], [-441.61, -1066.66], [-436.0, -1058.38], [-434.72, -1056.86], [-430.09, -1050.97], [-423.95, -1045.51], [-422.56, -1043.65], [-418.03, -1041.03], [-415.89, -1039.12], [-412.03, -1037.25], [-403.62, -1029.33], [-399.77, -1028.28], [-396.35, -1025.66], [-389.89, -1022.53], [-373.61, -1014.78], [-359.68, -1012.25], [-353.84, -1010.32], [-345.05, -1010.28], [-342.84, -1011.32], [-323.25, -1012.23], [-302.01, -1025.06], [-278.16, -1032.62], [-269.1, -1035.44], [-253.27, -1020.73], [-230.06, -983.12], [-222.21, -970.39], [-188.23, -912.18], [-180.3, -900.5], [-159.85, -869.71], [-142.46, -848.6], [-90.38, -788.06], [-58.1, -756.59], [-34.27, -730.28], [-19.18, -716.41], [-2.25, -703.57], [13.75, -689.03], [25.38, -676.04], [40.03, -662.81], [53.27, -647.57], [58.11, -641.93], [71.01, -629.24], [80.23, -622.43], [80.68, -619.84], [90.17, -613.46], [99.96, -606.7], [107.58, -601.83], [114.58, -595.31], [124.63, -585.26], [136.46, -573.45], [139.64, -570.64], [143.68, -567.82], [148.26, -565.49], [152.71, -563.72], [157.73, -562.24], [165.17, -559.97], [173.37, -556.97], [176.27, -555.57], [179.78, -553.55], [186.22, -548.66], [199.96, -534.94], [219.61, -515.58], [225.32, -509.93], [232.72, -502.8], [264.9, -470.23], [271.69, -463.57], [275.21, -459.23], [281.72, -450.12], [289.53, -438.61], [301.04, -421.52], [314.3, -401.92], [321.38, -391.35], [325.43, -385.75], [331.27, -380.23], [332.87, -379.97], [340.89, -373.31], [346.19, -371.14], [356.82, -363.47], [372.04, -349.27], [374.34, -345.97], [377.48, -338.7], [382.55, -330.0], [407.84, -304.39], [416.64, -295.92], [417.32, -293.07], [416.51, -291.0], [422.22, -284.74], [425.43, -283.92], [434.59, -274.95], [436.48, -267.17], [442.86, -256.23], [444.7, -251.17], [447.19, -239.83], [453.91, -226.1], [458.79, -222.03], [463.28, -218.79], [470.02, -213.09], [472.11, -206.62], [472.07, -204.99], [478.02, -198.73], [483.14, -193.63], [487.27, -192.37], [495.24, -184.84], [502.68, -178.73], [507.05, -174.19], [507.48, -169.04], [511.09, -168.54], [516.67, -159.45], [524.7, -148.65], [529.69, -144.77], [533.74, -141.84], [534.84, -140.94], [536.07, -139.96], [541.86, -140.89], [543.6, -140.2], [563.72, -125.17], [565.64, -121.71], [569.0, -122.14], [572.43, -120.21], [581.63, -111.44], [585.45, -108.52], [591.92, -105.6], [596.92, -101.76], [600.69, -100.74], [604.75, -98.07], [612.3, -95.29], [618.37, -92.85], [619.67, -91.91], [620.78, -88.34], [624.1, -87.82], [624.73, -86.31], [626.24, -86.29], [628.55, -84.08], [629.87, -81.94], [628.98, -77.59], [630.42, -75.25], [635.18, -72.62], [637.1, -70.56], [640.56, -71.38], [644.74, -70.87], [648.61, -68.68], [653.9, -67.72], [657.34, -66.05], [670.26, -59.97], [675.57, -56.56], [712.56, -38.7], [717.26, -34.92], [718.8, -34.32], [726.82, -30.62], [748.09, -23.55], [751.52, -19.92], [755.58, -18.81], [768.27, -9.54], [775.66, -6.7], [778.44, -6.69], [781.83, -5.44], [802.11, -1.48], [818.09, 4.95], [824.06, 8.76], [833.13, 15.3], [835.41, 17.43], [838.79, 18.54], [842.44, 18.63], [846.26, 32.07], [851.69, 33.54], [860.34, 33.57], [867.11, 39.72], [879.21, 47.12], [885.72, 55.67], [892.35, 57.69], [914.1, 71.49], [918.03, 80.08], [932.06, 87.68], [936.31, 93.04], [943.38, 95.89], [951.66, 103.22], [960.39, 109.37], [982.15, 114.9], [1009.87, 123.48], [1013.07, 124.13], [1026.42, 126.43], [1041.06, 131.69], [1057.28, 134.31], [1069.52, 139.17], [1090.95, 140.93], [1110.08, 145.6], [1126.55, 148.45], [1136.52, 148.4], [1141.1, 150.87], [1142.23, 152.27], [1148.58, 155.79], [1156.16, 157.06], [1163.95, 156.58], [1165.0, 152.16], [1168.76, 150.32], [1169.37, 147.78], [1170.71, 146.85], [1180.55, 150.49], [1187.07, 155.25], [1197.82, 157.8], [1203.36, 159.45], [1208.87, 162.21], [1211.77, 163.53], [1215.57, 163.92], [1220.85, 165.25], [1228.99, 168.03], [1236.47, 172.55], [1245.84, 176.31], [1255.2, 179.59], [1258.69, 184.72], [1267.98, 188.11], [1274.11, 195.53], [1310.46, 214.31], [1318.04, 218.23], [1342.84, 226.79], [1371.95, 234.18], [1387.53, 240.39], [1402.21, 249.11], [1436.38, 267.1], [1449.98, 277.33], [1464.57, 286.53], [1482.02, 297.16], [1516.45, 317.99], [1527.68, 331.97], [1542.03, 336.08], [1569.67, 337.43], [1585.19, 345.4], [1590.53, 355.96], [1599.29, 366.57], [1611.55, 374.95], [1614.33, 376.96], [1621.46, 383.52], [1629.85, 391.25], [1649.1, 405.76], [1695.69, 441.38], [1724.99, 458.54], [1742.08, 467.91], [1777.36, 498.26], [1783.38, 502.21], [1802.72, 514.88], [1818.04, 532.87], [1829.86, 539.98], [1846.38, 549.89], [1865.63, 560.25], [1885.57, 570.38], [1907.13, 569.94], [1955.08, 595.18], [2002.8, 620.19], [2047.79, 653.84], [2116.85, 708.9], [2123.45, 713.59], [2130.91, 718.88], [2140.3, 725.54], [2145.85, 736.34], [2170.05, 758.49], [2182.85, 766.67], [2192.81, 778.44], [2236.88, 818.33], [2243.4, 823.74], [2267.19, 843.96], [2277.43, 842.26], [2279.56, 856.0], [2297.38, 876.43], [2321.35, 916.63], [2348.84, 957.34], [2361.52, 976.12], [2362.01, 988.11], [2369.52, 995.36], [2380.52, 1003.68], [2390.1, 1003.38], [2405.83, 1012.22], [2446.58, 1047.22], [2463.49, 1058.07], [2469.84, 1062.01], [2470.54, 1067.63], [2480.75, 1075.29], [2489.15, 1080.84], [2510.17, 1101.24], [2517.78, 1109.52], [2522.94, 1118.5], [2529.74, 1127.3], [2542.7, 1131.88], [2600.5, 1206.19], [2644.93, 1263.73], [2663.43, 1284.54], [2676.93, 1298.53], [2688.15, 1308.67], [2703.31, 1320.0], [2726.85, 1333.28], [2752.16, 1347.81], [2810.9, 1369.67], [2829.43, 1376.12], [2841.46, 1384.49], [2866.58, 1392.06], [2903.11, 1401.74], [2930.21, 1403.22], [2945.49, 1408.25], [2950.15, 1413.58], [2969.34, 1420.1], [2981.01, 1421.94], [2994.96, 1424.14], [3011.05, 1425.99], [3019.65, 1433.78], [3046.58, 1441.05], [3087.72, 1449.21], [3114.85, 1463.21], [3136.14, 1464.23], [3140.81, 1462.95], [3149.24, 1460.65], [3160.59, 1463.22], [3167.3, 1461.1], [3177.48, 1458.37], [3183.28, 1456.81], [3204.93, 1459.41], [3231.06, 1460.6], [3235.47, 1457.27], [3258.76, 1460.8], [3307.59, 1456.22], [3335.59, 1455.44], [3381.62, 1454.15], [3432.22, 1455.3], [3469.77, 1461.96], [3521.39, 1476.24], [3549.66, 1485.08], [3603.52, 1499.3], [3636.2, 1504.49], [3663.49, 1510.73], [3731.79, 1501.32], [3749.64, 1514.34], [3777.25, 1519.04], [3847.06, 1487.65], [3876.09, 1488.37], [3889.42, 1481.63], [3899.03, 1483.26], [3929.95, 1479.44], [3941.82, 1475.08], [3943.8, 1471.93], [3947.8, 1435.19], [3955.73, 1428.16], [3959.1, 1433.07], [3954.06, 1437.84], [3949.64, 1471.87], [3973.61, 1463.9], [3988.63, 1447.56], [4033.04, 1412.03], [4069.38, 1382.55], [4110.85, 1347.15], [4154.78, 1310.49], [4204.46, 1253.14], [4256.91, 1195.43], [4264.16, 1202.5], [4284.11, 1189.19], [4297.98, 1191.13], [4311.05, 1173.11], [4320.0, 1180.29], [4337.13, 1159.58], [4349.59, 1150.42], [4391.98, 1122.3], [4399.54, 1111.41], [4429.8, 1083.36], [4437.59, 1069.84], [4451.64, 1056.54], [4459.87, 1054.59], [4484.88, 1022.08], [4509.91, 978.08], [4517.97, 963.32], [4544.02, 917.74], [4573.57, 861.12], [4605.66, 793.55], [4631.12, 733.27], [4633.59, 735.91], [4658.21, 658.5], [4676.15, 600.54], [4695.7, 521.2], [4710.67, 443.98], [4718.4, 380.4], [4720.97, 336.45], [4718.67, 294.83], [4714.53, 268.83], [4709.99, 254.95], [4702.07, 225.05], [4686.55, 185.47], [4673.41, 178.84], [4652.26, 168.19], [4641.2, 163.04], [4634.93, 160.12], [4605.28, 151.38], [4591.57, 144.87], [4567.1, 125.48], [4549.3, 115.51], [4533.77, 108.46], [4521.37, 101.92], [4506.86, 92.65], [4488.06, 72.95], [4478.32, 59.43], [4465.9, 37.88], [4450.62, 3.74], [4436.52, -22.76], [4425.86, -50.27], [4418.7, -68.72], [4383.6, -147.55], [4375.29, -173.77], [4371.2, -185.63], [4368.63, -193.07], [4367.23, -197.11], [4366.48, -198.54], [4364.14, -203.01], [4359.74, -211.43], [4356.76, -217.13], [4337.35, -254.24], [4315.77, -289.7], [4309.34, -298.42], [4282.15, -335.4], [4241.64, -377.11], [4199.85, -417.74], [4169.91, -436.91], [4119.09, -465.29], [4072.4, -492.54], [4061.71, -495.37], [4039.02, -502.31], [4032.67, -504.23], [4032.03, -505.94], [4031.78, -508.45], [4044.96, -555.81], [4047.33, -563.99], [4044.2, -573.6], [4033.1, -576.64], [4026.24, -571.56], [4022.19, -567.78], [4020.43, -562.18], [4021.52, -554.38], [4017.48, -501.32], [4017.22, -499.22], [4018.33, -497.2], [4013.89, -496.57], [4008.9, -496.42], [4005.89, -497.72], [4005.46, -502.68], [3996.44, -503.92], [3989.39, -505.29], [3986.98, -505.22], [3986.25, -505.2], [3985.71, -500.93], [3984.17, -498.0], [3980.99, -496.54], [3973.45, -493.81], [3952.98, -486.13], [3951.63, -484.22], [3932.11, -478.63], [3913.34, -477.45], [3897.32, -477.81], [3862.97, -483.83], [3799.81, -504.86], [3720.07, -541.76], [3710.11, -545.15], [3701.52, -546.69], [3687.82, -547.3], [3678.81, -547.71], [3670.62, -547.27], [3666.55, -546.07], [3661.09, -544.11], [3659.67, -542.91], [3654.01, -538.14], [3644.04, -533.1], [3642.56, -532.71], [3608.17, -523.6], [3587.84, -520.62], [3562.93, -519.93], [3544.35, -522.85], [3509.27, -530.79], [3475.81, -546.29], [3449.8, -564.78], [3412.37, -597.97], [3381.58, -638.46], [3356.26, -672.79], [3322.05, -730.82], [3302.73, -766.36], [3289.24, -791.17], [3278.07, -811.73], [3236.59, -884.59], [3209.61, -928.53], [3192.67, -948.71], [3176.08, -964.36], [3166.56, -973.33], [3157.42, -982.52], [3140.67, -990.27], [3114.06, -1006.2], [3100.69, -1018.36], [3091.42, -1026.13], [3082.97, -1037.01], [3072.99, -1047.29], [3059.53, -1059.47], [3039.51, -1067.47], [3025.83, -1072.42], [2987.78, -1078.25], [2975.86, -1078.91], [2965.18, -1082.28], [2950.66, -1089.7], [2934.39, -1099.31], [2899.57, -1123.46], [2865.92, -1149.19], [2840.36, -1177.37], [2818.39, -1202.54], [2813.0, -1211.73], [2803.34, -1222.13], [2789.41, -1233.3], [2753.06, -1259.84], [2729.92, -1280.09], [2719.06, -1294.07], [2712.45, -1307.39], [2706.57, -1325.23], [2704.64, -1338.84], [2696.51, -1373.07], [2687.01, -1405.68], [2682.81, -1414.14], [2677.18, -1431.89], [2620.86, -1547.73], [2596.99, -1606.77], [2591.15, -1615.75], [2582.07, -1646.69], [2554.2, -1719.59], [2537.26, -1760.66], [2522.98, -1795.53], [2514.33, -1818.44], [2499.89, -1882.0], [2498.52, -1886.48], [2491.78, -1908.74], [2487.94, -1936.64], [2487.2, -1944.84], [2487.76, -1979.28], [2491.57, -2020.85], [2499.22, -2058.96], [2513.07, -2102.92], [2537.06, -2148.38], [2556.34, -2178.49], [2585.75, -2208.21], [2620.35, -2235.63], [2639.99, -2247.08], [2643.44, -2249.39], [2667.01, -2263.39], [2677.14, -2265.01], [2684.31, -2262.31], [2692.49, -2262.25], [2706.0, -2253.63], [2710.89, -2249.53], [2717.87, -2245.2], [2726.8, -2240.99], [2754.12, -2232.24], [2800.51, -2224.55], [2832.76, -2219.89], [2857.44, -2217.18], [2886.74, -2216.38], [2900.46, -2219.67], [2905.45, -2221.39], [2914.98, -2222.19], [2917.7, -2219.89], [2949.84, -2219.2], [2953.89, -2216.67], [2956.68, -2192.94], [2957.97, -2165.48], [2956.78, -2160.68], [2956.5, -2151.68], [2954.05, -2144.73], [2953.61, -2141.02], [2950.75, -2139.09], [2941.43, -2140.15], [2940.96, -2137.76], [2945.53, -2136.03], [2955.29, -2138.16], [2956.34, -2129.2], [2956.5, -2104.08], [2954.04, -2078.36], [2954.51, -2051.92], [2956.8, -2027.12], [2954.24, -2023.88], [2958.41, -2017.12], [2958.39, -1998.6], [2959.26, -1996.24], [2958.69, -1978.78], [2956.26, -1960.99], [2956.21, -1925.02], [2956.44, -1907.31], [2955.72, -1894.86], [2958.39, -1884.89], [2963.82, -1871.01], [2971.06, -1859.06], [2976.16, -1857.08], [2978.55, -1856.89], [2987.16, -1862.15], [2996.99, -1871.15], [2999.25, -1875.97], [2998.29, -1881.77], [2991.05, -1893.99], [2985.86, -1908.4], [2984.86, -1916.04], [2984.58, -1926.04], [2979.94, -1949.49], [2974.28, -1971.28], [2971.65, -1989.72], [2970.25, -1992.33], [2970.1, -2007.13], [2977.48, -2007.22], [2977.16, -2012.84], [2970.09, -2012.32], [2970.94, -2027.76], [2970.43, -2051.83], [2969.32, -2068.65], [2968.85, -2085.49], [2969.6, -2098.69], [2971.11, -2160.38], [2971.52, -2185.92], [2971.17, -2209.99], [2972.73, -2217.58], [2975.49, -2220.74], [2979.84, -2222.76], [3006.94, -2227.38], [3029.23, -2230.89], [3050.8, -2231.97], [3057.73, -2232.01], [3079.58, -2234.39], [3082.45, -2235.42], [3098.03, -2237.15], [3108.13, -2237.46], [3113.17, -2237.41], [3123.45, -2237.4], [3126.21, -2236.55], [3129.51, -2235.55], [3133.67, -2235.44], [3136.95, -2235.32], [3141.82, -2233.28], [3143.24, -2234.48], [3168.59, -2233.52], [3189.84, -2228.78], [3193.92, -2226.74], [3237.99, -2214.56], [3250.45, -2211.94], [3255.79, -2212.09], [3259.75, -2211.33], [3260.68, -2209.53], [3260.99, -2207.52], [3271.1, -2205.73], [3273.2, -2202.98], [3272.49, -2198.43], [3276.43, -2197.05], [3278.01, -2200.15], [3280.96, -2201.5], [3284.95, -2199.97], [3311.03, -2182.15], [3317.71, -2174.24], [3335.04, -2166.2], [3358.57, -2157.8], [3364.15, -2153.29], [3376.79, -2141.64], [3388.86, -2132.41], [3406.55, -2123.46], [3415.92, -2119.93], [3420.01, -2109.4], [3452.5, -2030.83], [3456.48, -2033.07], [3461.0, -2035.62], [3434.68, -2108.35], [3434.14, -2122.01], [3436.55, -2128.97], [3443.77, -2133.17], [3453.79, -2133.34], [3465.41, -2131.88], [3472.75, -2134.6], [3492.46, -2158.31], [3498.07, -2164.8], [3510.63, -2173.53], [3517.83, -2179.41], [3531.95, -2192.83], [3538.52, -2204.14], [3546.72, -2216.92], [3551.75, -2223.92], [3556.53, -2231.15], [3557.05, -2246.38], [3567.07, -2264.93], [3571.16, -2272.95], [3571.63, -2284.02], [3575.67, -2307.09], [3579.97, -2320.85], [3586.39, -2322.82], [3592.03, -2326.11], [3595.25, -2329.51], [3590.75, -2334.79], [3588.95, -2344.44], [3588.49, -2360.98], [3588.61, -2378.62], [3584.49, -2381.15], [3585.78, -2384.44], [3589.53, -2388.9], [3594.14, -2412.63], [3598.94, -2417.67], [3595.44, -2432.36], [3588.36, -2457.51], [3578.76, -2489.03], [3571.6, -2523.73], [3574.43, -2542.77], [3575.56, -2558.06], [3576.72, -2568.11], [3581.26, -2593.37], [3584.23, -2622.67], [3585.6, -2631.48], [3584.69, -2633.18], [3583.08, -2639.04], [3585.15, -2647.58], [3590.01, -2654.31], [3587.87, -2667.03], [3578.32, -2689.22], [3575.26, -2695.61], [3579.53, -2714.82], [3584.96, -2726.89], [3591.8, -2746.8], [3598.22, -2768.58], [3596.43, -2771.94], [3577.65, -2778.44], [3564.92, -2781.53], [3546.32, -2778.36], [3538.89, -2764.0], [3531.84, -2761.32], [3524.57, -2764.05], [3511.36, -2751.06], [3503.58, -2739.86], [3503.73, -2737.39], [3506.65, -2738.47], [3514.18, -2735.67], [3518.54, -2727.3], [3518.61, -2721.29], [3510.77, -2709.86], [3497.33, -2701.63], [3482.97, -2696.33], [3465.93, -2693.59], [3453.82, -2697.81], [3439.59, -2707.87], [3415.31, -2722.68], [3395.73, -2727.93], [3370.89, -2737.1], [3361.17, -2745.0], [3351.2, -2759.11], [3338.5, -2777.72], [3324.55, -2786.16], [3319.99, -2793.7], [3309.98, -2807.88], [3301.4, -2816.13], [3293.96, -2819.83], [3287.99, -2828.15], [3284.66, -2826.78], [3279.28, -2828.25], [3273.46, -2828.53], [3267.2, -2827.25], [3263.06, -2825.02], [3259.06, -2825.21], [3257.9, -2823.17], [3240.22, -2823.13], [3226.53, -2835.82], [3191.63, -2837.98], [3151.82, -2875.75], [3116.79, -2879.94], [3053.75, -2912.87], [3010.06, -2900.23], [2982.56, -2900.03], [2945.92, -2893.03], [2910.71, -2888.38], [2882.51, -2884.67], [2856.88, -2872.55], [2835.94, -2874.91], [2817.85, -2873.71], [2794.02, -2871.46], [2773.88, -2864.53], [2739.51, -2858.72], [2708.95, -2855.28], [2678.72, -2862.68], [2656.81, -2869.38], [2590.81, -2908.37], [2527.23, -2926.8], [2475.01, -2930.56], [2461.9, -2929.77], [2452.92, -2930.44], [2443.45, -2929.11], [2427.99, -2924.93], [2397.96, -2923.29], [2377.22, -2914.89], [2348.61, -2911.21], [2301.1, -2908.01], [2284.77, -2908.63], [2276.53, -2911.32], [2271.84, -2910.53], [2249.59, -2916.98], [2220.44, -2929.64], [2191.18, -2940.51], [2159.57, -2954.98], [2115.74, -2997.65], [2098.83, -3025.22], [2082.23, -3053.8], [2073.93, -3073.47], [2072.71, -3087.49], [2068.57, -3100.62], [2065.04, -3111.56], [2060.13, -3122.15], [2046.13, -3138.57], [2029.68, -3149.0], [2015.76, -3162.11], [2004.7, -3166.76], [1994.57, -3172.16], [1981.99, -3180.1], [1951.08, -3189.41], [1937.15, -3194.93], [1926.35, -3198.65], [1917.25, -3201.0], [1904.28, -3206.09], [1901.19, -3207.01], [1893.49, -3209.33], [1886.8, -3210.8], [1882.22, -3211.1], [1879.19, -3211.29], [1877.37, -3208.16], [1872.2, -3206.36], [1857.33, -3205.08], [1820.95, -3192.51], [1791.5, -3182.31], [1730.12, -3164.9], [1701.36, -3153.63], [1653.26, -3122.42], [1605.35, -3107.79], [1571.37, -3119.03], [1523.58, -3146.88], [1487.0, -3169.74], [1464.27, -3210.36], [1405.31, -3291.67], [1363.81, -3338.45], [1357.2, -3355.69], [1358.29, -3363.79], [1357.4, -3372.26], [1347.16, -3382.75], [1333.78, -3391.84], [1280.61, -3414.38], [1221.05, -3444.41], [1146.95, -3453.47], [1109.04, -3451.32], [995.66, -3360.06], [886.46, -3256.11], [867.38, -3202.89], [909.3, -3072.0], [928.09, -3026.01], [945.25, -2984.97], [950.09, -2956.61], [945.91, -2931.39], [950.27, -2900.84], [995.62, -2840.48], [1024.35, -2800.92], [1064.61, -2766.05], [1103.75, -2746.37], [1131.47, -2727.5], [1142.02, -2704.24], [1145.61, -2676.45], [1133.03, -2651.0], [1117.13, -2640.66], [1071.5, -2632.64], [1039.04, -2613.75], [1028.36, -2608.13], [1008.27, -2619.77], [1006.62, -2620.72], [962.64, -2629.06], [925.15, -2627.2], [880.07, -2613.27], [829.52, -2591.8], [761.24, -2552.75], [637.56, -2427.98], [629.83, -2420.66], [561.95, -2352.43], [503.99, -2327.02], [487.49, -2322.06], [476.19, -2320.58], [471.87, -2321.04], [466.3, -2324.2], [460.84, -2323.26], [454.46, -2320.94], [443.45, -2315.95], [443.5, -2313.99], [442.79, -2311.44], [440.88, -2309.83], [432.35, -2307.05], [421.5, -2303.04], [421.14, -2302.82], [397.38, -2288.63], [387.44, -2280.82], [381.82, -2276.4], [372.99, -2269.45], [365.16, -2262.04], [350.47, -2248.09], [342.24, -2240.3], [337.18, -2234.39], [333.89, -2230.23], [330.61, -2226.07], [325.47, -2223.05], [316.2, -2214.31], [305.0, -2208.66], [291.28, -2196.97], [282.98, -2185.07], [230.93, -2131.02], [221.83, -2120.87], [214.11, -2112.25], [211.38, -2106.79], [196.51, -2085.2], [175.43, -2055.46], [159.03, -2031.14], [152.45, -2018.07], [150.32, -2015.21], [140.79, -2002.39], [133.74, -1992.47], [115.11, -1977.82], [94.03, -1963.11], [61.78, -1946.61], [41.76, -1946.04], [22.58, -1950.86], [2.36, -1957.09], [-22.31, -1966.13], [-36.6, -1965.72], [-47.2, -1965.42], [-75.96, -1963.15], [-92.81, -1958.9], [-105.99, -1954.02], [-117.91, -1946.31], [-129.37, -1938.35], [-137.79, -1931.65], [-145.18, -1922.87], [-160.98, -1900.97], [-191.65, -1850.97], [-249.44, -1763.94], [-250.95, -1762.15], [-255.41, -1760.65], [-258.14, -1760.38], [-260.56, -1762.06], [-262.45, -1763.38], [-279.74, -1774.64], [-286.27, -1778.88], [-287.96, -1779.98], [-289.59, -1781.03], [-292.84, -1783.14], [-220.2, -1902.21], [-222.36, -1912.01], [-231.99, -1927.94], [-238.24, -1934.01], [-244.6, -1937.68], [-250.14, -1938.28], [-257.56, -1939.13], [-268.34, -1939.46], [-275.01, -1938.77], [-280.86, -1937.27], [-293.17, -1934.2], [-321.67, -1934.26], [-355.11, -1937.42], [-366.34, -1939.12], [-376.4, -1940.65], [-378.91, -1940.64], [-397.13, -1940.62], [-413.08, -1938.78], [-426.86, -1938.91], [-440.13, -1936.58], [-449.06, -1935.46], [-462.83, -1935.5], [-470.4, -1932.67], [-474.03, -1929.51], [-480.21, -1923.89], [-488.33, -1909.72], [-484.67, -1885.24], [-478.16, -1864.63], [-476.79, -1857.48], [-475.44, -1852.3], [-478.41, -1846.97], [-493.99, -1845.73], [-513.17, -1929.52], [-530.26, -2014.07], [-571.04, -2053.69], [-574.59, -2056.01], [-608.02, -2077.89], [-612.68, -2077.69], [-699.81, -2073.94], [-720.43, -2066.31], [-768.87, -2065.12], [-819.38, -2072.9], [-889.4, -2062.57], [-965.14, -2055.83], [-1010.04, -2041.72], [-1057.3, -2037.73], [-1127.38, -2048.02], [-1182.78, -2056.51], [-1198.65, -2056.9], [-1219.28, -2055.48], [-1234.12, -2049.04], [-1251.33, -2037.72], [-1281.22, -2004.46], [-1370.76, -1841.9], [-1399.62, -1789.5]], "holes": [[[3520.37, -2641.51], [3522.78, -2640.01], [3512.9, -2633.1], [3504.04, -2630.33], [3516.67, -2639.14], [3520.37, -2641.51]], [[3519.51, -2536.22], [3523.29, -2542.78], [3524.6, -2547.48], [3538.64, -2547.51], [3552.07, -2543.94], [3548.84, -2530.58], [3557.22, -2514.3], [3564.95, -2495.14], [3570.5, -2464.08], [3576.16, -2441.99], [3574.3, -2417.9], [3569.73, -2401.27], [3566.81, -2376.79], [3565.22, -2382.12], [3567.84, -2404.45], [3566.42, -2416.6], [3560.43, -2424.69], [3542.38, -2426.34], [3530.73, -2431.03], [3525.88, -2437.0], [3521.04, -2455.52], [3515.73, -2478.34], [3518.03, -2498.85], [3519.87, -2523.31], [3519.51, -2536.22]], [[3045.35, -2438.59], [3060.8, -2415.95], [3071.29, -2394.3], [3069.46, -2391.26], [3046.67, -2381.14], [3031.26, -2374.95], [3018.35, -2372.58], [3012.36, -2370.11], [3007.54, -2367.4], [3000.63, -2366.63], [2977.8, -2368.29], [2945.95, -2372.29], [2934.68, -2373.41], [2920.39, -2368.41], [2906.92, -2365.44], [2885.91, -2363.42], [2863.44, -2362.5], [2858.53, -2362.94], [2855.84, -2366.02], [2845.76, -2365.74], [2835.69, -2364.6], [2819.18, -2367.01], [2808.75, -2368.73], [2801.44, -2372.27], [2784.8, -2378.98], [2781.85, -2381.49], [2781.24, -2384.06], [2807.39, -2413.47], [2828.64, -2440.52], [2859.0, -2468.26], [2875.84, -2481.18], [2887.23, -2481.84], [2893.91, -2479.77], [2903.3, -2481.24], [2909.4, -2479.57], [2912.95, -2477.92], [2918.74, -2477.56], [2925.74, -2477.76], [2931.41, -2479.66], [2943.68, -2477.08], [2969.13, -2476.35], [3005.09, -2472.91], [3022.92, -2466.99], [3034.75, -2456.69], [3033.36, -2454.63], [3038.43, -2449.6], [3045.35, -2438.59]], [[2759.05, -2362.18], [2763.87, -2363.88], [2769.77, -2362.75], [2801.38, -2351.86], [2817.68, -2347.1], [2850.06, -2346.26], [2893.37, -2345.29], [2905.56, -2347.38], [2907.19, -2351.78], [2920.72, -2352.16], [2946.13, -2350.69], [2960.63, -2348.05], [2984.77, -2344.8], [3016.66, -2345.69], [3061.79, -2357.85], [3072.15, -2362.49], [3079.1, -2362.05], [3090.92, -2329.71], [3101.3, -2311.33], [3108.3, -2294.07], [3122.41, -2276.24], [3131.66, -2260.16], [3127.15, -2256.42], [3109.21, -2256.79], [3051.65, -2251.27], [3002.79, -2247.28], [2957.85, -2244.29], [2921.64, -2241.1], [2916.54, -2236.16], [2903.43, -2235.8], [2896.33, -2239.51], [2867.92, -2239.15], [2839.03, -2240.52], [2821.52, -2241.34], [2808.27, -2245.76], [2786.86, -2245.59], [2774.13, -2247.42], [2753.05, -2250.75], [2734.48, -2258.08], [2717.14, -2268.48], [2712.64, -2273.15], [2708.88, -2282.19], [2709.16, -2287.86], [2710.33, -2302.5], [2750.8, -2352.07], [2759.05, -2362.18]], [[-471.06, -1720.43], [-476.88, -1749.49], [-489.69, -1806.28], [-487.89, -1816.79], [-477.47, -1819.03], [-473.91, -1817.19], [-467.05, -1801.78], [-453.8, -1725.05], [-457.82, -1720.65], [-471.06, -1720.43]], [[-389.33, -1295.89], [-406.13, -1387.72], [-425.0, -1496.87], [-429.68, -1511.92], [-433.35, -1520.24], [-438.74, -1522.29], [-553.4, -1336.94], [-558.16, -1331.93], [-565.3, -1337.29], [-563.33, -1341.54], [-517.98, -1419.5], [-439.52, -1543.46], [-437.12, -1552.13], [-463.62, -1679.41], [-461.76, -1684.38], [-451.73, -1686.19], [-447.76, -1684.6], [-444.69, -1680.23], [-431.67, -1604.92], [-429.12, -1591.65], [-425.0, -1585.86], [-419.94, -1585.06], [-415.67, -1585.82], [-404.94, -1601.14], [-311.97, -1752.4], [-307.81, -1755.34], [-301.37, -1751.6], [-297.66, -1748.79], [-279.51, -1735.96], [-274.56, -1729.74], [-273.69, -1724.77], [-288.01, -1697.32], [-319.66, -1650.96], [-345.81, -1599.49], [-359.86, -1552.4], [-367.45, -1498.63], [-366.49, -1456.23], [-361.18, -1414.97], [-352.67, -1376.26], [-338.78, -1320.23], [-324.57, -1260.0], [-320.51, -1232.57], [-324.37, -1223.28], [-345.18, -1220.56], [-372.81, -1211.21], [-389.33, -1295.89]], [[-364.88, -1153.58], [-366.76, -1170.96], [-351.39, -1171.39], [-314.69, -1177.1], [-303.81, -1167.59], [-296.18, -1148.57], [-284.12, -1101.86], [-283.89, -1093.03], [-286.98, -1085.97], [-306.11, -1079.93], [-320.23, -1074.89], [-324.34, -1068.66], [-339.3, -1064.25], [-364.88, -1153.58]]]}}, {"shape": {"outer": [[-8058.92, 2355.5], [-8063.55, 2358.97], [-8066.66, 2366.74], [-8069.58, 2383.54], [-8074.32, 2399.51], [-8080.07, 2429.88], [-8084.61, 2460.11], [-8087.52, 2471.91], [-8087.83, 2480.35], [-8092.64, 2497.41], [-8093.6, 2507.81], [-8099.47, 2537.84], [-8103.88, 2563.27], [-8106.47, 2590.86], [-8107.41, 2598.86], [-8117.53, 2677.08], [-8120.52, 2698.96], [-8122.75, 2701.5], [-8124.5, 2706.64], [-8121.48, 2706.27], [-8124.32, 2732.11], [-8127.77, 2735.1], [-8127.76, 2746.33], [-8125.2, 2747.38], [-8129.39, 2789.06], [-8131.98, 2799.73], [-8131.68, 2809.67], [-8132.14, 2819.22], [-8132.28, 2822.21], [-8135.45, 2845.41], [-8136.61, 2871.44], [-8136.69, 2934.35], [-8136.63, 2960.68], [-8136.59, 2980.87], [-8135.75, 3052.74], [-8133.95, 3102.43], [-8131.59, 3138.63], [-8128.41, 3169.96], [-8126.22, 3184.51], [-8124.86, 3214.05], [-8121.62, 3225.51], [-8119.51, 3242.46], [-8117.05, 3259.83], [-8111.83, 3273.37], [-8105.36, 3295.74], [-8093.39, 3330.04], [-8085.52, 3359.49], [-8088.82, 3364.76], [-8087.3, 3370.79], [-8083.98, 3377.67], [-8081.64, 3381.68], [-8060.37, 3418.27], [-8051.09, 3435.52], [-8036.06, 3454.0], [-8025.58, 3465.54], [-8012.54, 3477.18], [-8001.4, 3477.38], [-7987.85, 3460.28], [-7986.37, 3458.47], [-7975.84, 3455.19], [-7957.61, 3451.35], [-7943.79, 3450.07], [-7932.58, 3448.13], [-7924.44, 3451.1], [-7915.79, 3449.56], [-7895.76, 3462.63], [-7878.3, 3478.09], [-7860.52, 3487.08], [-7848.3, 3487.77], [-7833.13, 3480.45], [-7813.07, 3477.21], [-7789.7, 3478.11], [-7778.77, 3470.92], [-7746.45, 3463.08], [-7704.67, 3465.87], [-7691.04, 3477.84], [-7672.4, 3480.45], [-7663.21, 3486.0], [-7657.39, 3485.82], [-7654.18, 3495.77], [-7632.62, 3530.24], [-7615.25, 3555.85], [-7593.54, 3581.73], [-7573.38, 3603.9], [-7547.85, 3626.18], [-7533.33, 3638.87], [-7519.11, 3651.23], [-7510.73, 3656.24], [-7491.65, 3670.99], [-7473.36, 3679.75], [-7454.66, 3691.39], [-7436.57, 3705.53], [-7419.21, 3713.77], [-7408.63, 3723.09], [-7398.8, 3728.89], [-7391.7, 3729.32], [-7370.56, 3742.33], [-7339.55, 3757.64], [-7328.33, 3759.54], [-7319.8, 3761.81], [-7302.07, 3761.54], [-7291.5, 3763.59], [-7280.38, 3767.52], [-7257.78, 3778.48], [-7253.71, 3785.24], [-7237.7, 3793.09], [-7220.5, 3801.61], [-7189.16, 3815.45], [-7169.65, 3822.25], [-7159.8, 3828.7], [-7141.3, 3833.61], [-7128.05, 3834.82], [-7111.27, 3837.25], [-7093.52, 3837.32], [-7072.55, 3838.64], [-7049.35, 3839.23], [-7028.12, 3838.29], [-7014.4, 3838.77], [-7006.05, 3836.77], [-7003.16, 3835.3], [-6997.45, 3832.42], [-6996.52, 3830.6], [-6996.06, 3826.28], [-6987.27, 3820.41], [-6982.29, 3819.11], [-6979.3, 3816.83], [-6976.81, 3814.55], [-6978.94, 3809.37], [-6971.38, 3801.42], [-6967.59, 3794.15], [-6954.56, 3785.96], [-6950.01, 3784.57], [-6943.62, 3786.51], [-6939.84, 3789.6], [-6935.06, 3794.15], [-6929.77, 3809.72], [-6923.8, 3826.55], [-6913.93, 3855.46], [-6902.43, 3863.15], [-6885.71, 3872.09], [-6861.89, 3884.25], [-6845.93, 3895.07], [-6842.54, 3901.59], [-6838.83, 3906.68], [-6834.02, 3908.91], [-6826.95, 3907.04], [-6822.93, 3898.4], [-6825.99, 3891.16], [-6837.64, 3884.31], [-6858.29, 3873.62], [-6885.72, 3858.45], [-6893.79, 3850.88], [-6901.04, 3842.03], [-6901.27, 3834.38], [-6904.58, 3817.06], [-6911.37, 3799.85], [-6917.63, 3788.29], [-6921.12, 3783.02], [-6922.56, 3782.13], [-6927.45, 3780.1], [-6928.54, 3777.98], [-6929.3, 3774.94], [-6929.42, 3771.9], [-6920.29, 3760.29], [-6917.34, 3755.71], [-6916.73, 3754.78], [-6912.1, 3747.68], [-6910.2, 3744.79], [-6903.18, 3736.84], [-6882.43, 3714.72], [-6878.52, 3711.52], [-6876.49, 3708.15], [-6873.8, 3702.63], [-6868.49, 3697.51], [-6860.74, 3694.43], [-6851.7, 3695.36], [-6850.91, 3695.31], [-6827.53, 3693.93], [-6794.71, 3702.38], [-6777.7, 3709.26], [-6776.91, 3709.6], [-6770.0, 3712.58], [-6758.2, 3718.38], [-6743.15, 3729.76], [-6729.25, 3742.37], [-6718.22, 3753.87], [-6705.11, 3763.89], [-6681.26, 3784.01], [-6659.57, 3803.0], [-6636.02, 3820.76], [-6588.45, 3847.98], [-6565.73, 3861.97], [-6559.39, 3863.89], [-6543.67, 3868.65], [-6528.25, 3874.43], [-6503.82, 3876.48], [-6446.72, 3888.56], [-6408.61, 3901.11], [-6367.18, 3905.57], [-6331.51, 3908.16], [-6324.1, 3908.23], [-6319.96, 3906.97], [-6305.47, 3909.84], [-6303.43, 3912.2], [-6301.0, 3914.73], [-6295.89, 3916.25], [-6290.95, 3914.68], [-6286.89, 3915.75], [-6276.6, 3921.18], [-6257.64, 3925.75], [-6249.92, 3929.81], [-6228.21, 3941.23], [-6212.18, 3945.48], [-6194.81, 3955.14], [-6178.1, 3958.66], [-6165.38, 3956.99], [-6127.61, 3957.76], [-6105.95, 3958.2], [-6087.69, 3957.42], [-6074.25, 3954.43], [-6026.14, 3951.6], [-5989.52, 3945.79], [-5940.21, 3935.36], [-5909.55, 3928.79], [-5887.64, 3923.18], [-5817.99, 3901.97], [-5767.12, 3888.19], [-5740.09, 3879.12], [-5727.58, 3876.45], [-5722.07, 3878.35], [-5716.25, 3882.44], [-5712.14, 3885.39], [-5708.0, 3888.58], [-5702.0, 3890.77], [-5696.16, 3895.8], [-5688.22, 3899.59], [-5681.72, 3902.72], [-5677.78, 3907.32], [-5669.35, 3911.33], [-5661.67, 3913.68], [-5635.58, 3930.05], [-5609.99, 3939.65], [-5587.01, 3946.16], [-5575.5, 3952.06], [-5552.77, 3993.85], [-5527.88, 4042.61], [-5508.32, 4083.33], [-5489.05, 4127.18], [-5482.44, 4139.07], [-5474.97, 4154.04], [-5464.38, 4181.78], [-5448.39, 4207.02], [-5435.51, 4233.15], [-5422.69, 4256.92], [-5404.04, 4279.75], [-5399.04, 4290.12], [-5388.22, 4299.15], [-5366.96, 4330.88], [-5327.64, 4386.89], [-5322.87, 4393.48], [-5316.57, 4400.12], [-5287.16, 4431.15], [-5273.13, 4437.6], [-5235.42, 4484.02], [-5178.58, 4529.11], [-5150.46, 4554.78], [-5135.05, 4573.81], [-5097.53, 4600.37], [-5087.92, 4594.64], [-5081.23, 4599.66], [-5072.12, 4613.66], [-5053.01, 4625.18], [-5031.66, 4633.52], [-5025.21, 4639.94], [-5017.35, 4641.67], [-5007.47, 4645.27], [-4995.15, 4651.92], [-4978.46, 4661.17], [-4968.35, 4672.57], [-4952.58, 4690.81], [-4936.18, 4703.19], [-4919.34, 4717.88], [-4918.08, 4718.57], [-4892.32, 4732.68], [-4856.08, 4755.38], [-4848.86, 4761.8], [-4839.35, 4765.8], [-4825.07, 4773.17], [-4822.93, 4779.35], [-4815.76, 4784.21], [-4808.89, 4791.41], [-4795.59, 4805.43], [-4784.83, 4817.35], [-4781.22, 4819.99], [-4772.54, 4826.35], [-4760.11, 4836.9], [-4752.62, 4839.02], [-4745.45, 4843.88], [-4743.75, 4848.5], [-4735.83, 4851.78], [-4727.59, 4852.71], [-4720.03, 4857.54], [-4700.42, 4872.94], [-4664.11, 4911.62], [-4655.94, 4923.46], [-4651.22, 4938.12], [-4646.71, 4945.39], [-4644.88, 4954.3], [-4638.8, 4961.53], [-4626.2, 4978.3], [-4612.72, 4998.16], [-4606.0, 5013.93], [-4603.73, 5024.78], [-4590.43, 5061.6], [-4575.25, 5099.72], [-4557.25, 5126.86], [-4544.04, 5148.39], [-4540.19, 5159.96], [-4506.48, 5215.23], [-4490.67, 5249.27], [-4487.58, 5261.65], [-4474.58, 5278.41], [-4468.76, 5290.32], [-4470.28, 5299.12], [-4459.23, 5312.02], [-4447.73, 5327.88], [-4446.73, 5331.55], [-4443.89, 5341.92], [-4436.39, 5354.95], [-4431.92, 5361.91], [-4428.13, 5369.05], [-4423.03, 5374.89], [-4420.33, 5376.95], [-4415.05, 5381.42], [-4411.1, 5385.68], [-4399.51, 5399.04], [-4381.97, 5422.89], [-4374.72, 5430.99], [-4372.89, 5433.03], [-4360.52, 5450.4], [-4344.19, 5468.4], [-4329.89, 5490.99], [-4320.35, 5506.05], [-4309.66, 5517.4], [-4295.71, 5535.31], [-4275.79, 5558.79], [-4263.92, 5572.2], [-4256.98, 5579.86], [-4251.04, 5587.66], [-4219.86, 5637.0], [-4214.43, 5645.59], [-4199.57, 5664.3], [-4188.47, 5686.31], [-4173.45, 5713.68], [-4158.81, 5727.44], [-4149.48, 5754.6], [-4109.09, 5805.44], [-4082.71, 5831.16], [-4064.81, 5859.01], [-4051.05, 5870.76], [-4049.48, 5896.02], [-4043.94, 5923.29], [-4021.76, 5968.05], [-4003.84, 5996.85], [-3992.24, 6033.04], [-3985.34, 6052.37], [-3975.32, 6060.11], [-3967.39, 6074.31], [-3960.73, 6094.39], [-3951.59, 6152.4], [-3938.93, 6232.73], [-3929.67, 6253.32], [-3860.26, 6287.62], [-3865.12, 6297.31], [-3908.48, 6275.88], [-3914.73, 6288.75], [-3918.5, 6302.61], [-3919.45, 6317.94], [-3918.19, 6331.02], [-3917.2, 6341.23], [-3912.07, 6352.87], [-3905.09, 6365.08], [-3892.97, 6380.58], [-3881.84, 6389.76], [-3876.75, 6391.47], [-3858.82, 6374.22], [-3852.08, 6377.55], [-3866.14, 6398.5], [-3870.82, 6405.48], [-3870.24, 6417.31], [-3860.07, 6436.59], [-3841.23, 6454.41], [-3833.47, 6465.41], [-3833.58, 6476.29], [-3838.52, 6486.88], [-3838.59, 6494.56], [-3835.81, 6505.08], [-3831.99, 6516.28], [-3830.66, 6526.54], [-3826.67, 6533.97], [-3816.89, 6539.77], [-3807.69, 6556.04], [-3794.43, 6576.54], [-3777.69, 6596.5], [-3728.62, 6647.3], [-3715.57, 6665.14], [-3714.26, 6666.32], [-3607.5, 6763.12], [-3528.67, 6811.02], [-3530.71, 6831.78], [-3488.09, 6885.61], [-3465.95, 6927.38], [-3444.62, 6948.05], [-3431.14, 6986.79], [-3374.3, 7067.06], [-3359.57, 7105.84], [-3335.9, 7126.07], [-3311.1, 7160.9], [-3296.44, 7184.18], [-3284.89, 7196.39], [-3281.12, 7206.04], [-3265.41, 7216.74], [-3253.81, 7231.04], [-3231.55, 7250.61], [-3215.06, 7264.77], [-3214.7, 7271.28], [-3236.65, 7316.69], [-3252.93, 7350.36], [-3248.92, 7357.45], [-3248.0, 7359.08], [-3206.91, 7431.59], [-3195.27, 7437.98], [-3173.22, 7470.75], [-3150.74, 7488.3], [-3131.96, 7497.39], [-3097.85, 7504.13], [-3065.53, 7502.08], [-3037.56, 7496.46], [-3029.81, 7491.9], [-3021.53, 7486.81], [-3016.41, 7484.88], [-3013.73, 7490.8], [-3012.29, 7499.93], [-3010.31, 7550.05], [-3010.17, 7551.68], [-3007.71, 7578.89], [-3008.62, 7602.34], [-3008.48, 7621.48], [-3002.43, 7628.32], [-2998.3, 7632.09], [-2992.7, 7637.27], [-2976.28, 7654.31], [-2967.77, 7662.12], [-2838.56, 7738.9], [-2813.65, 7757.2], [-2797.18, 7776.8], [-2789.75, 7783.69], [-2779.69, 7790.5], [-2756.4, 7793.58], [-2676.74, 7798.67], [-2633.78, 7817.51], [-2620.46, 7838.25], [-2607.1, 7844.77], [-2603.15, 7944.2], [-2599.92, 7947.19], [-2595.23, 7951.52], [-2596.94, 7844.97], [-2583.93, 7855.16], [-2570.15, 7854.76], [-2558.66, 7849.15], [-2551.69, 7870.08], [-2516.15, 7889.13], [-2491.67, 7892.64], [-2440.5, 7893.66], [-2427.89, 7894.01], [-2410.58, 7893.06], [-2385.61, 7890.25], [-2366.35, 7886.65], [-2335.82, 7879.74], [-2310.9, 7874.12], [-2303.84, 7874.21], [-2299.29, 7876.01], [-2296.11, 7879.74], [-2295.06, 7884.06], [-2295.04, 7887.89], [-2297.65, 7891.56], [-2301.81, 7894.61], [-2314.03, 7897.24], [-2318.62, 7899.1], [-2329.55, 7908.53], [-2333.4, 7909.85], [-2338.84, 7908.65], [-2346.23, 7909.33], [-2351.61, 7910.88], [-2353.53, 7912.19], [-2353.77, 7915.41], [-2351.26, 7918.92], [-2348.34, 7925.73], [-2345.47, 7927.76], [-2344.47, 7929.99], [-2343.05, 7937.54], [-2340.41, 7948.58], [-2340.88, 7952.0], [-2345.1, 7955.24], [-2353.31, 7962.83], [-2349.87, 7962.87], [-2344.24, 7958.99], [-2336.7, 7955.06], [-2331.22, 7955.72], [-2325.69, 7957.31], [-2324.31, 7954.64], [-2326.68, 7954.11], [-2330.09, 7950.59], [-2331.36, 7945.63], [-2332.23, 7937.37], [-2332.87, 7928.09], [-2330.05, 7925.5], [-2321.99, 7924.49], [-2312.47, 7924.86], [-2289.81, 7922.66], [-2288.31, 7924.1], [-2280.12, 7927.68], [-2277.03, 7927.39], [-2273.99, 7924.31], [-2270.7, 7918.0], [-2264.61, 7910.66], [-2253.74, 7896.55], [-2254.38, 7895.07], [-2257.08, 7891.67], [-2257.12, 7889.91], [-2254.29, 7888.69], [-2249.22, 7887.02], [-2238.47, 7884.94], [-2227.37, 7882.52], [-2207.13, 7874.43], [-2198.53, 7872.4], [-2178.87, 7870.34], [-2144.57, 7854.6], [-2136.25, 7852.2], [-2129.83, 7852.26], [-2120.09, 7855.18], [-2119.9, 7861.6], [-2118.54, 7873.17], [-2109.82, 7877.2], [-2117.95, 7880.16], [-2118.52, 7887.19], [-2117.11, 7895.7], [-2118.0, 7896.83], [-2123.14, 7903.28], [-2135.38, 7912.2], [-2143.39, 7912.57], [-2151.66, 7903.32], [-2149.46, 7898.58], [-2155.8, 7895.26], [-2163.83, 7887.71], [-2170.17, 7884.77], [-2171.19, 7890.26], [-2178.86, 7895.15], [-2183.71, 7903.08], [-2184.69, 7909.72], [-2183.01, 7913.96], [-2177.45, 7916.92], [-2172.45, 7914.44], [-2170.68, 7908.15], [-2172.06, 7900.8], [-2169.88, 7894.89], [-2162.81, 7897.29], [-2159.55, 7903.34], [-2153.35, 7904.58], [-2147.5, 7909.85], [-2146.45, 7913.37], [-2142.06, 7917.5], [-2140.94, 7923.13], [-2143.4, 7928.64], [-2149.07, 7929.51], [-2150.8, 7935.48], [-2154.42, 7941.25], [-2159.32, 7943.99], [-2162.67, 7942.91], [-2163.5, 7939.14], [-2165.48, 7936.37], [-2166.78, 7940.66], [-2164.75, 7945.33], [-2169.68, 7946.89], [-2173.31, 7944.4], [-2176.41, 7943.77], [-2181.12, 7945.09], [-2189.05, 7947.67], [-2194.61, 7950.66], [-2203.9, 7953.08], [-2207.24, 7952.23], [-2211.45, 7954.48], [-2211.72, 7961.57], [-2219.06, 7962.02], [-2228.19, 7966.54], [-2267.21, 7978.78], [-2259.19, 7985.39], [-2220.06, 7972.31], [-2200.12, 7972.51], [-2193.27, 7972.45], [-2182.93, 7972.4], [-2176.36, 7969.88], [-2170.12, 7956.06], [-2158.65, 7960.8], [-2145.8, 7959.26], [-2132.46, 7961.21], [-2127.42, 7959.9], [-2123.53, 7959.01], [-2124.91, 7951.65], [-2129.72, 7947.9], [-2128.79, 7939.3], [-2121.59, 7931.31], [-2108.43, 7927.03], [-2107.38, 7936.35], [-2095.43, 7930.56], [-2090.56, 7923.41], [-2084.56, 7928.3], [-2088.59, 7937.37], [-2098.24, 7941.93], [-2097.6, 7950.47], [-2086.22, 7952.09], [-2078.06, 7950.3], [-2068.21, 7939.89], [-2060.98, 7930.56], [-2057.88, 7922.29], [-2054.03, 7920.18], [-2048.19, 7919.76], [-2045.61, 7917.83], [-2042.81, 7912.68], [-2040.16, 7911.81], [-2034.84, 7915.9], [-2027.84, 7922.51], [-2024.24, 7924.36], [-2018.45, 7924.23], [-1958.45, 7925.17], [-1949.2, 7925.46], [-1923.33, 7925.89], [-1906.15, 7926.82], [-1904.53, 7927.49], [-1885.62, 7935.28], [-1874.96, 7939.66], [-1845.29, 7979.69], [-1860.58, 8035.86], [-1861.97, 8040.97], [-1864.0, 8047.2], [-1876.63, 8051.97], [-1886.61, 8085.74], [-1890.93, 8125.58], [-1886.88, 8144.16], [-1890.65, 8162.56], [-1885.77, 8169.03], [-1888.06, 8184.68], [-1884.33, 8191.97], [-1892.34, 8198.82], [-1888.33, 8210.52], [-1887.71, 8224.26], [-1898.46, 8249.92], [-1901.16, 8267.64], [-1900.3, 8275.31], [-1901.74, 8281.44], [-1905.12, 8287.0], [-1903.51, 8298.18], [-1906.57, 8303.39], [-1910.94, 8319.23], [-1913.2, 8341.41], [-1919.48, 8358.28], [-1928.84, 8379.71], [-1930.3, 8391.28], [-1931.68, 8404.16], [-1930.12, 8413.41], [-1920.76, 8466.66], [-1891.31, 8486.7], [-1883.17, 8501.52], [-1871.36, 8509.21], [-1844.53, 8515.96], [-1776.28, 8525.72], [-1759.71, 8520.11], [-1746.74, 8519.51], [-1709.29, 8517.78], [-1701.0, 8517.4], [-1686.43, 8516.72], [-1674.16, 8515.86], [-1638.69, 8513.36], [-1600.84, 8511.69], [-1596.64, 8511.86], [-1592.44, 8512.03], [-1590.54, 8510.31], [-1580.06, 8500.78], [-1551.26, 8476.39], [-1529.14, 8457.66], [-1517.06, 8446.82], [-1514.75, 8440.73], [-1513.0, 8431.22], [-1511.78, 8420.21], [-1508.21, 8416.67], [-1513.04, 8401.21], [-1511.38, 8400.34], [-1505.48, 8398.55], [-1498.47, 8396.42], [-1493.25, 8414.44], [-1451.35, 8403.39], [-1405.26, 8367.62], [-1383.11, 8342.43], [-1384.19, 8334.2], [-1373.89, 8331.93], [-1362.26, 8339.89], [-1352.91, 8329.39], [-1364.5, 8318.09], [-1359.33, 8306.47], [-1353.14, 8292.53], [-1374.84, 8284.13], [-1381.42, 8284.16], [-1409.33, 8284.29], [-1427.99, 8290.92], [-1431.54, 8293.29], [-1451.01, 8308.41], [-1455.42, 8311.76], [-1467.21, 8330.9], [-1470.06, 8332.94], [-1491.81, 8349.74], [-1504.04, 8357.3], [-1507.99, 8362.82], [-1504.14, 8376.97], [-1511.56, 8378.42], [-1519.67, 8380.85], [-1524.42, 8367.53], [-1553.47, 8376.61], [-1563.19, 8374.32], [-1578.44, 8381.17], [-1591.27, 8382.5], [-1595.5, 8383.83], [-1621.83, 8392.08], [-1637.74, 8397.07], [-1646.34, 8410.56], [-1655.26, 8412.76], [-1661.89, 8399.71], [-1665.78, 8400.21], [-1669.13, 8406.14], [-1676.55, 8406.73], [-1681.56, 8401.48], [-1690.7, 8391.88], [-1693.86, 8388.56], [-1704.95, 8369.8], [-1707.04, 8363.85], [-1710.55, 8351.66], [-1705.46, 8338.27], [-1719.32, 8322.86], [-1729.68, 8311.33], [-1748.38, 8281.09], [-1751.57, 8275.92], [-1752.63, 8274.22], [-1770.25, 8244.15], [-1779.33, 8228.66], [-1780.76, 8217.7], [-1781.84, 8209.38], [-1782.3, 8207.17], [-1787.43, 8182.92], [-1787.62, 8180.7], [-1788.87, 8166.61], [-1784.01, 8156.21], [-1777.34, 8153.45], [-1780.35, 8149.37], [-1782.12, 8143.97], [-1778.34, 8140.98], [-1771.22, 8142.37], [-1765.12, 8141.88], [-1763.52, 8141.91], [-1758.68, 8142.01], [-1753.41, 8135.13], [-1748.98, 8132.43], [-1741.72, 8138.64], [-1743.6, 8129.08], [-1730.97, 8120.7], [-1722.31, 8119.48], [-1712.79, 8115.04], [-1708.78, 8120.37], [-1704.08, 8126.97], [-1698.61, 8127.14], [-1694.91, 8121.26], [-1695.42, 8114.86], [-1698.47, 8109.49], [-1701.88, 8102.86], [-1702.82, 8092.3], [-1705.77, 8090.46], [-1708.48, 8096.96], [-1716.81, 8098.48], [-1723.47, 8101.88], [-1729.64, 8099.81], [-1726.6, 8093.63], [-1719.99, 8088.63], [-1714.96, 8073.1], [-1712.05, 8059.68], [-1710.13, 8050.83], [-1706.86, 8046.8], [-1702.68, 8041.64], [-1693.69, 8029.52], [-1689.48, 8019.13], [-1690.3, 8001.83], [-1695.89, 7997.51], [-1702.54, 7990.33], [-1701.03, 7975.85], [-1696.18, 7965.13], [-1692.54, 7946.42], [-1693.93, 7923.49], [-1692.16, 7903.44], [-1697.24, 7894.62], [-1690.96, 7889.3], [-1686.49, 7876.67], [-1679.37, 7867.16], [-1678.63, 7859.13], [-1682.59, 7855.71], [-1696.52, 7863.81], [-1701.78, 7871.02], [-1710.15, 7870.94], [-1713.46, 7867.82], [-1704.97, 7860.84], [-1705.83, 7853.49], [-1705.33, 7848.35], [-1706.11, 7843.56], [-1710.38, 7840.8], [-1711.79, 7836.35], [-1713.98, 7827.43], [-1715.78, 7820.75], [-1716.92, 7815.59], [-1714.73, 7812.38], [-1713.47, 7801.34], [-1714.41, 7789.92], [-1717.61, 7792.6], [-1722.01, 7794.31], [-1725.32, 7791.2], [-1725.23, 7784.61], [-1726.97, 7778.42], [-1728.72, 7773.34], [-1733.72, 7768.52], [-1743.46, 7764.78], [-1747.46, 7759.77], [-1748.45, 7747.93], [-1765.93, 7733.04], [-1772.22, 7727.13], [-1777.36, 7727.27], [-1785.93, 7720.15], [-1790.36, 7700.39], [-1796.62, 7689.94], [-1802.85, 7680.22], [-1812.8, 7677.66], [-1821.25, 7678.2], [-1842.72, 7670.47], [-1853.26, 7661.8], [-1863.07, 7656.62], [-1867.62, 7655.15], [-1872.67, 7658.5], [-1884.77, 7651.8], [-1895.78, 7649.55], [-1901.7, 7644.91], [-1911.13, 7641.66], [-1920.94, 7636.16], [-1920.5, 7640.64], [-1928.59, 7638.95], [-1935.24, 7633.29], [-1945.54, 7631.42], [-1948.63, 7624.77], [-1954.41, 7628.19], [-1959.53, 7626.37], [-1964.22, 7619.76], [-1969.49, 7617.18], [-1976.54, 7616.6], [-1981.82, 7612.42], [-1987.23, 7603.11], [-1989.77, 7598.78], [-1995.27, 7592.13], [-1998.23, 7589.97], [-1999.61, 7586.47], [-2005.45, 7585.64], [-2007.21, 7579.95], [-2007.08, 7573.21], [-2014.5, 7572.19], [-2019.46, 7568.12], [-2026.84, 7552.43], [-2034.57, 7537.23], [-2039.04, 7532.88], [-2042.43, 7530.31], [-2047.2, 7521.14], [-2051.72, 7520.63], [-2058.02, 7514.07], [-2062.4, 7507.46], [-2079.33, 7500.58], [-2081.51, 7494.07], [-2096.47, 7486.64], [-2106.73, 7487.9], [-2112.01, 7483.56], [-2117.17, 7479.81], [-2126.76, 7477.89], [-2130.07, 7477.99], [-2139.36, 7472.8], [-2146.22, 7469.15], [-2153.62, 7469.36], [-2158.87, 7465.67], [-2164.66, 7465.84], [-2164.18, 7462.37], [-2164.9, 7457.51], [-2169.0, 7455.05], [-2167.33, 7451.16], [-2164.18, 7451.99], [-2162.27, 7448.13], [-2158.79, 7446.1], [-2161.08, 7444.88], [-2167.1, 7447.94], [-2169.14, 7444.48], [-2171.23, 7449.99], [-2172.32, 7457.08], [-2176.79, 7457.85], [-2182.51, 7460.58], [-2189.61, 7459.82], [-2198.68, 7457.83], [-2207.79, 7454.57], [-2211.16, 7452.0], [-2213.29, 7446.37], [-2212.44, 7441.88], [-2208.53, 7435.33], [-2200.6, 7432.38], [-2194.13, 7432.97], [-2192.25, 7429.97], [-2190.5, 7423.53], [-2180.72, 7417.01], [-2178.8, 7422.61], [-2173.79, 7413.5], [-2165.87, 7410.16], [-2162.86, 7406.19], [-2158.1, 7401.76], [-2153.3, 7399.1], [-2150.52, 7400.57], [-2144.33, 7398.25], [-2143.64, 7394.88], [-2142.45, 7389.05], [-2135.45, 7387.68], [-2132.22, 7387.3], [-2125.99, 7383.89], [-2124.38, 7378.03], [-2117.83, 7375.49], [-2102.92, 7363.96], [-2069.93, 7346.19], [-2028.66, 7312.45], [-1996.47, 7275.0], [-1969.9, 7249.58], [-1956.23, 7228.04], [-1949.68, 7212.63], [-1948.49, 7188.81], [-1944.4, 7176.46], [-1943.74, 7160.09], [-1931.07, 7123.62], [-1924.41, 7109.09], [-1924.78, 7098.98], [-1922.52, 7085.04], [-1922.74, 7073.58], [-1924.95, 7062.65], [-1927.88, 7055.52], [-1931.25, 7049.94], [-1936.15, 7048.55], [-1946.11, 7048.72], [-1948.8, 7045.96], [-1948.41, 7040.68], [-1952.38, 7032.82], [-1947.56, 7031.26], [-1941.36, 7028.25], [-1940.02, 7025.5], [-1940.45, 7022.79], [-1943.9, 7022.53], [-1952.29, 7023.6], [-1957.51, 7013.86], [-1947.68, 7008.77], [-1948.12, 7004.61], [-1957.49, 7003.6], [-1965.29, 7000.94], [-1969.22, 6987.26], [-1966.61, 6977.57], [-1932.51, 6970.5], [-1903.25, 6967.65], [-1905.64, 6955.27], [-1924.99, 6958.72], [-1960.74, 6963.75], [-1979.64, 6954.73], [-1978.26, 6940.47], [-1973.62, 6934.78], [-1967.62, 6914.37], [-1968.94, 6899.63], [-1972.28, 6892.09], [-1981.51, 6884.21], [-1981.9, 6877.32], [-1977.79, 6869.61], [-1973.38, 6867.85], [-1967.92, 6861.48], [-1966.39, 6858.39], [-1961.15, 6847.83], [-1958.26, 6845.07], [-1946.73, 6845.81], [-1945.85, 6839.39], [-1953.37, 6837.96], [-1957.58, 6835.95], [-1960.63, 6833.2], [-1960.32, 6825.69], [-1957.33, 6822.86], [-1954.88, 6820.54], [-1953.9, 6816.59], [-1952.74, 6811.91], [-1955.81, 6801.55], [-1948.08, 6772.99], [-1941.97, 6764.7], [-1935.62, 6750.4], [-1926.29, 6709.89], [-1917.26, 6698.3], [-1903.91, 6675.68], [-1893.19, 6646.36], [-1885.38, 6606.68], [-1878.22, 6549.9], [-1884.0, 6521.5], [-1890.07, 6506.0], [-1902.08, 6480.14], [-1911.85, 6461.73], [-1943.29, 6424.62], [-1949.43, 6417.57], [-1958.43, 6413.83], [-1971.38, 6406.53], [-1965.86, 6392.2], [-1967.41, 6379.85], [-1966.05, 6365.05], [-1961.52, 6353.9], [-1951.76, 6311.27], [-1954.47, 6297.98], [-1961.71, 6284.88], [-1968.55, 6279.18], [-1980.79, 6278.2], [-1987.82, 6274.4], [-1999.17, 6256.06], [-2011.39, 6241.74], [-2016.34, 6232.35], [-2022.48, 6224.27], [-2026.93, 6216.51], [-2029.77, 6198.73], [-2014.21, 6177.79], [-2014.43, 6148.7], [-2005.19, 6134.74], [-1995.71, 6124.8], [-1956.32, 6090.43], [-1919.25, 6051.58], [-1901.33, 6030.23], [-1889.5, 6019.04], [-1842.55, 5984.13], [-1800.1, 5954.34], [-1742.8, 5925.35], [-1715.84, 5913.07], [-1681.36, 5896.13], [-1648.12, 5888.51], [-1616.11, 5869.47], [-1588.4, 5856.12], [-1554.34, 5837.25], [-1537.65, 5831.77], [-1529.44, 5831.2], [-1520.39, 5831.94], [-1512.88, 5835.28], [-1499.2, 5832.55], [-1421.86, 5829.94], [-1402.97, 5827.92], [-1373.96, 5827.09], [-1355.71, 5819.99], [-1346.29, 5812.08], [-1337.06, 5797.01], [-1320.01, 5761.95], [-1299.63, 5714.57], [-1289.5, 5661.7], [-1291.51, 5638.57], [-1296.82, 5616.34], [-1300.79, 5603.01], [-1311.42, 5587.09], [-1339.21, 5569.21], [-1353.59, 5561.51], [-1369.04, 5551.06], [-1394.62, 5524.78], [-1414.83, 5512.91], [-1424.08, 5508.18], [-1439.21, 5505.72], [-1454.85, 5511.17], [-1485.98, 5525.8], [-1495.17, 5530.44], [-1495.48, 5542.35], [-1489.74, 5549.41], [-1500.89, 5551.16], [-1494.71, 5557.89], [-1551.59, 5538.73], [-1555.83, 5532.85], [-1545.03, 5512.2], [-1536.94, 5513.07], [-1531.03, 5508.24], [-1517.01, 5481.39], [-1506.82, 5470.43], [-1500.48, 5464.57], [-1493.9, 5455.25], [-1496.57, 5444.81], [-1497.24, 5424.13], [-1488.73, 5408.77], [-1478.17, 5387.91], [-1475.48, 5365.82], [-1475.15, 5358.61], [-1478.35, 5344.68], [-1458.15, 5322.2], [-1451.65, 5310.57], [-1440.48, 5296.91], [-1434.04, 5294.39], [-1425.45, 5290.25], [-1419.93, 5283.87], [-1406.98, 5278.5], [-1393.68, 5276.34], [-1384.64, 5273.74], [-1354.2, 5273.43], [-1337.2, 5275.72], [-1326.69, 5278.86], [-1318.63, 5281.74], [-1304.26, 5285.78], [-1290.82, 5288.95], [-1279.59, 5294.52], [-1272.28, 5302.2], [-1261.49, 5312.45], [-1253.29, 5323.0], [-1245.52, 5335.09], [-1238.1, 5358.46], [-1232.2, 5377.39], [-1218.68, 5411.15], [-1204.34, 5457.09], [-1206.2, 5463.33], [-1220.26, 5472.55], [-1226.33, 5476.83], [-1240.09, 5488.01], [-1245.43, 5494.94], [-1249.15, 5503.56], [-1255.86, 5520.14], [-1255.85, 5528.92], [-1255.09, 5544.35], [-1249.9, 5561.84], [-1245.33, 5569.78], [-1246.04, 5580.63], [-1248.68, 5584.74], [-1254.25, 5590.99], [-1260.75, 5615.38], [-1261.68, 5633.14], [-1253.5, 5655.13], [-1245.73, 5674.98], [-1234.14, 5690.42], [-1219.57, 5702.89], [-1202.33, 5714.77], [-1186.18, 5720.04], [-1146.31, 5730.37], [-1135.64, 5729.54], [-1128.12, 5727.77], [-1098.87, 5714.37], [-1096.09, 5703.29], [-1095.73, 5693.17], [-1094.4, 5685.56], [-1092.68, 5669.07], [-1085.32, 5659.11], [-1082.58, 5655.44], [-1079.37, 5649.37], [-1076.82, 5654.51], [-1072.96, 5659.74], [-1073.82, 5690.77], [-1073.69, 5706.65], [-1070.69, 5723.97], [-1066.75, 5737.04], [-1051.24, 5750.93], [-1040.47, 5756.54], [-1028.29, 5761.2], [-1015.12, 5770.51], [-989.19, 5788.82], [-977.63, 5800.49], [-965.13, 5807.47], [-947.19, 5814.77], [-907.9, 5821.73], [-901.28, 5816.98], [-891.52, 5805.14], [-878.04, 5815.54], [-872.0, 5818.81], [-861.91, 5821.52], [-855.79, 5824.79], [-841.54, 5839.39], [-823.98, 5846.89], [-805.52, 5852.03], [-767.04, 5856.71], [-754.08, 5857.12], [-736.34, 5860.95], [-685.26, 5874.69], [-659.63, 5877.54], [-632.79, 5885.22], [-567.95, 5895.26], [-519.27, 5906.54], [-429.47, 5929.54], [-420.78, 5931.24], [-395.04, 5932.34], [-382.05, 5933.75], [-325.91, 5944.15], [-311.79, 5945.52], [-280.07, 5950.18], [-244.09, 5952.82], [-233.63, 5954.41], [-224.84, 5957.16], [-212.53, 5960.0], [-199.98, 5961.01], [-183.56, 5962.87], [-161.95, 5964.26], [-150.1, 5966.03], [-116.27, 5967.63], [-100.61, 5971.4], [-77.44, 5976.19], [-53.89, 5976.85], [-22.95, 5977.08], [4.05, 5976.09], [37.01, 5972.82], [78.78, 5970.19], [97.37, 5968.17], [119.09, 5964.93], [161.38, 5957.72], [195.77, 5953.52], [213.3, 5948.69], [232.45, 5940.58], [278.48, 5916.16], [320.25, 5887.96], [343.79, 5873.95], [370.78, 5849.85], [384.99, 5833.11], [392.05, 5824.79], [405.56, 5813.77], [420.66, 5801.46], [427.06, 5796.23], [434.45, 5786.91], [443.06, 5777.66], [452.57, 5764.94], [457.33, 5758.58], [466.95, 5747.53], [481.75, 5732.66], [500.02, 5710.91], [506.07, 5703.18], [516.81, 5688.11], [524.63, 5676.91], [531.79, 5677.92], [536.54, 5691.09], [545.45, 5698.54], [550.44, 5696.77], [555.32, 5695.04], [556.35, 5685.71], [543.9, 5666.83], [547.93, 5659.45], [550.53, 5654.68], [563.97, 5637.74], [574.78, 5619.98], [575.67, 5608.39], [581.4, 5598.37], [592.71, 5584.73], [626.89, 5536.81], [634.41, 5517.81], [638.6, 5509.19], [642.79, 5500.57], [646.07, 5489.8], [631.04, 5479.56], [607.2, 5451.45], [609.05, 5444.73], [622.21, 5418.01], [629.27, 5419.3], [625.18, 5428.04], [618.95, 5450.69], [638.56, 5474.68], [656.28, 5474.85], [671.7, 5451.95], [691.27, 5410.99], [705.79, 5365.18], [715.25, 5328.35], [719.87, 5310.32], [721.85, 5291.26], [721.67, 5289.4], [721.03, 5282.61], [712.27, 5226.4], [702.56, 5205.33], [686.27, 5179.23], [670.53, 5159.36], [658.75, 5151.26], [644.95, 5142.51], [585.35, 5122.38], [570.8, 5116.44], [563.35, 5100.12], [547.68, 5070.97], [508.61, 5018.11], [489.12, 4977.76], [462.68, 4938.47], [438.27, 4909.57], [410.92, 4869.44], [397.66, 4863.72], [395.54, 4850.72], [397.8, 4807.14], [394.32, 4776.78], [370.85, 4750.46], [341.91, 4727.75], [322.16, 4712.87], [291.8, 4697.63], [277.18, 4697.61], [254.23, 4689.56], [241.46, 4681.98], [226.35, 4659.94], [204.69, 4622.7], [197.69, 4603.02], [198.62, 4590.48], [156.38, 4542.91], [141.06, 4513.83], [122.47, 4482.92], [108.31, 4460.22], [100.03, 4444.14], [92.46, 4411.84], [89.98, 4400.03], [90.53, 4392.02], [86.93, 4396.02], [83.33, 4393.0], [85.31, 4387.11], [89.92, 4377.43], [86.7, 4367.4], [87.94, 4355.87], [91.09, 4342.92], [95.1, 4327.25], [95.27, 4320.62], [97.81, 4309.55], [98.77, 4305.98], [109.13, 4290.3], [113.12, 4284.63], [116.85, 4273.77], [124.76, 4255.69], [129.54, 4249.79], [141.17, 4241.83], [153.05, 4227.3], [191.2, 4198.94], [214.11, 4178.08], [231.99, 4161.2], [242.67, 4151.6], [262.26, 4138.85], [292.62, 4119.05], [300.22, 4114.67], [307.73, 4118.3], [316.74, 4118.37], [335.34, 4115.6], [348.51, 4114.58], [357.79, 4112.39], [369.49, 4105.0], [386.42, 4100.03], [402.21, 4100.55], [411.77, 4097.99], [422.27, 4092.6], [443.43, 4089.5], [458.69, 4082.57], [468.45, 4085.83], [486.55, 4088.53], [519.67, 4086.62], [540.05, 4090.21], [558.07, 4089.7], [577.13, 4091.73], [635.62, 4110.61], [659.3, 4116.67], [687.09, 4120.05], [719.27, 4119.46], [748.52, 4110.47], [754.35, 4109.47], [772.29, 4106.13], [785.48, 4102.45], [791.51, 4099.62], [816.79, 4089.02], [820.66, 4087.61], [825.57, 4086.93], [837.39, 4083.71], [846.93, 4079.26], [854.76, 4071.66], [865.06, 4060.14], [879.6, 4050.43], [885.0, 4047.71], [890.62, 4041.77], [895.76, 4036.65], [902.69, 4033.97], [913.84, 4033.77], [917.94, 4033.31], [928.48, 4031.94], [935.15, 4027.61], [939.47, 4025.13], [950.84, 4011.91], [959.85, 3996.17], [979.38, 3975.08], [981.38, 3968.01], [983.59, 3965.31], [991.41, 3960.19], [999.25, 3952.21], [1001.52, 3949.31], [1003.85, 3946.35], [1018.69, 3930.57], [1023.78, 3922.02], [1025.23, 3918.32], [1029.4, 3914.54], [1032.21, 3913.62], [1043.42, 3898.65], [1051.44, 3884.23], [1055.39, 3872.77], [1066.47, 3847.37], [1084.12, 3815.16], [1100.28, 3767.66], [1105.59, 3749.01], [1120.45, 3693.09], [1127.93, 3661.58], [1129.92, 3653.19], [1129.98, 3651.59], [1132.3, 3640.04], [1135.87, 3614.23], [1137.66, 3608.15], [1140.92, 3599.08], [1140.64, 3589.36], [1142.4, 3585.77], [1144.7, 3580.87], [1149.52, 3571.23], [1153.38, 3551.57], [1156.72, 3521.7], [1160.25, 3508.35], [1164.41, 3475.89], [1170.14, 3462.31], [1172.66, 3442.55], [1174.12, 3425.37], [1181.31, 3407.03], [1187.51, 3375.81], [1194.88, 3326.3], [1200.01, 3313.96], [1203.48, 3300.06], [1204.33, 3273.4], [1207.47, 3247.73], [1213.28, 3215.7], [1222.46, 3177.31], [1224.12, 3168.55], [1234.6, 3161.43], [1248.93, 3144.35], [1252.64, 3150.65], [1261.72, 3152.64], [1274.86, 3156.45], [1279.58, 3157.92], [1294.03, 3156.54], [1298.26, 3158.03], [1289.23, 3168.87], [1289.19, 3178.82], [1289.58, 3192.61], [1292.06, 3200.57], [1300.0, 3208.04], [1307.84, 3211.99], [1315.29, 3213.7], [1326.2, 3212.12], [1338.0, 3207.93], [1348.39, 3199.61], [1358.02, 3187.47], [1366.17, 3167.99], [1362.54, 3162.11], [1365.01, 3149.72], [1366.72, 3141.97], [1361.91, 3131.21], [1352.21, 3118.32], [1344.07, 3103.79], [1335.93, 3089.26], [1333.03, 3077.79], [1334.34, 3067.16], [1323.15, 3034.59], [1320.66, 3027.44], [1316.29, 3021.15], [1309.23, 3010.43], [1301.3, 3003.28], [1291.8, 2997.77], [1283.68, 2995.43], [1279.27, 2998.77], [1278.73, 3002.31], [1281.41, 3006.08], [1283.45, 3010.19], [1282.81, 3021.45], [1274.31, 3028.43], [1267.77, 3036.31], [1256.87, 3037.91], [1239.78, 3025.88], [1226.29, 3015.99], [1222.98, 3002.59], [1225.22, 2981.95], [1223.58, 2969.16], [1217.73, 2959.26], [1216.78, 2940.74], [1213.86, 2921.29], [1202.53, 2897.3], [1189.08, 2841.97], [1184.64, 2822.96], [1171.56, 2782.95], [1147.78, 2748.76], [1119.91, 2704.83], [1095.24, 2666.11], [1080.96, 2618.76], [1069.48, 2562.24], [1073.42, 2513.61], [1072.07, 2465.9], [1057.55, 2409.46], [1060.95, 2368.43], [1116.67, 2347.9], [1146.81, 2337.96], [1150.56, 2320.73], [1152.19, 2297.84], [1154.27, 2266.22], [1152.15, 2259.48], [1152.95, 2250.56], [1153.08, 2236.44], [1144.63, 2209.34], [1139.38, 2205.27], [1136.57, 2203.1], [1123.65, 2177.56], [1112.68, 2164.92], [1100.96, 2153.89], [1089.54, 2138.94], [1088.36, 2137.41], [1084.44, 2133.93], [1081.06, 2131.5], [1079.23, 2130.18], [1051.58, 2117.38], [1046.15, 2115.28], [1045.5, 2114.67], [1037.01, 2105.33], [1033.96, 2104.8], [1030.7, 2104.64], [1027.57, 2104.66], [1024.23, 2104.96], [989.16, 2116.16], [956.91, 2126.43], [947.05, 2129.7], [936.59, 2133.14], [933.7, 2134.35], [931.58, 2135.77], [929.85, 2137.69], [928.59, 2139.74], [927.66, 2141.91], [927.47, 2144.45], [932.59, 2239.76], [933.02, 2240.36], [932.61, 2241.41], [928.84, 2242.46], [929.13, 2243.22], [928.6, 2243.75], [927.94, 2243.45], [924.58, 2241.46], [920.15, 2237.56], [916.75, 2156.95], [915.92, 2151.7], [910.69, 2145.58], [908.1, 2139.89], [907.5, 2134.71], [909.77, 2130.7], [912.7, 2127.52], [1010.14, 2097.33], [1020.57, 2093.34], [1025.11, 2089.99], [1026.64, 2087.51], [1027.38, 2085.14], [1025.74, 2061.44], [1018.9, 2032.18], [1015.0, 2011.67], [995.36, 1989.12], [988.57, 1988.35], [980.62, 1991.78], [976.97, 1986.72], [973.58, 1982.04], [958.75, 1959.03], [948.2, 1950.34], [937.16, 1947.12], [926.33, 1951.6], [918.29, 1963.38], [919.91, 1952.42], [918.01, 1941.89], [913.31, 1935.28], [901.51, 1928.24], [895.36, 1938.04], [877.98, 1927.5], [872.08, 1923.93], [863.47, 1919.93], [856.17, 1919.25], [854.82, 1926.27], [846.2, 1932.97], [834.94, 1929.52], [832.54, 1920.99], [838.19, 1910.6], [843.63, 1912.25], [838.38, 1898.41], [832.5, 1894.09], [824.99, 1887.39], [819.24, 1877.93], [807.82, 1860.92], [789.47, 1827.42], [765.01, 1771.31], [756.89, 1757.41], [752.94, 1743.08], [732.0, 1709.01], [712.83, 1680.35], [709.41, 1673.06], [698.04, 1647.07], [642.58, 1490.69], [612.7, 1409.41], [582.97, 1346.69], [548.17, 1287.43], [541.42, 1278.45], [529.34, 1264.34], [520.05, 1254.14], [516.61, 1248.54], [513.67, 1243.72], [502.55, 1233.89], [487.99, 1221.0], [453.6, 1197.35], [442.87, 1189.16], [409.94, 1168.33], [388.96, 1155.67], [379.56, 1146.9], [376.48, 1144.02], [372.34, 1138.92], [343.88, 1103.8], [320.34, 1075.5], [312.09, 1061.59], [286.37, 1033.37], [282.77, 1021.71], [279.04, 1006.13], [269.83, 989.41], [262.44, 982.3], [250.22, 970.52], [241.3, 961.92], [238.33, 949.81], [226.05, 937.11], [201.18, 903.4], [184.78, 879.91], [158.99, 841.46], [146.13, 818.67], [144.96, 816.6], [136.98, 797.23], [116.31, 777.57], [98.76, 759.56], [88.96, 753.68], [80.82, 747.17], [69.87, 735.09], [67.4, 732.34], [68.81, 730.59], [53.44, 718.17], [50.25, 713.47], [50.4, 710.85], [52.29, 708.19], [42.81, 697.79], [36.7, 697.96], [29.6, 694.24], [26.87, 690.62], [25.4, 688.5], [23.84, 683.73], [22.78, 677.45], [16.93, 671.66], [3.04, 657.96], [-5.6, 649.44], [-15.77, 639.4], [-20.12, 630.8], [-35.38, 630.98], [-73.75, 606.55], [-89.24, 598.4], [-134.71, 580.79], [-179.4, 564.27], [-217.02, 554.31], [-228.47, 542.86], [-246.18, 539.78], [-262.25, 537.1], [-271.46, 535.24], [-304.71, 536.99], [-343.59, 527.51], [-349.21, 526.8], [-367.39, 524.31], [-378.18, 522.59], [-379.53, 522.38], [-381.99, 521.98], [-385.03, 521.5], [-388.7, 520.92], [-392.47, 520.32], [-397.08, 523.48], [-397.46, 523.89], [-398.39, 524.88], [-400.77, 527.32], [-400.08, 528.52], [-400.0, 529.16], [-399.06, 536.63], [-398.17, 540.85], [-396.26, 544.75], [-388.88, 551.5], [-384.73, 554.62], [-385.22, 556.41], [-385.12, 557.9], [-388.2, 557.2], [-388.86, 556.1], [-394.85, 553.9], [-402.6, 548.24], [-406.72, 544.01], [-408.73, 538.4], [-408.83, 532.96], [-407.13, 527.22], [-403.83, 522.36], [-408.85, 515.74], [-420.83, 507.34], [-438.87, 505.69], [-458.39, 503.03], [-477.12, 494.59], [-483.0, 491.68], [-518.1, 474.3], [-543.26, 459.44], [-551.83, 454.37], [-561.91, 448.37], [-583.15, 435.7], [-601.17, 424.96], [-619.46, 408.44], [-623.63, 413.59], [-625.59, 414.54], [-643.16, 397.83], [-644.3, 396.21], [-669.44, 375.1], [-678.95, 367.1], [-696.37, 355.94], [-719.09, 350.0], [-725.38, 348.34], [-735.82, 342.18], [-737.74, 340.26], [-760.84, 316.89], [-764.72, 313.41], [-775.21, 308.35], [-792.27, 300.39], [-803.1, 295.62], [-835.11, 281.53], [-839.12, 275.56], [-849.75, 266.52], [-852.63, 266.42], [-864.42, 269.63], [-870.35, 257.25], [-870.98, 256.88], [-889.75, 246.14], [-901.59, 240.92], [-903.69, 243.5], [-907.87, 241.99], [-912.86, 237.12], [-916.26, 238.11], [-921.66, 231.63], [-933.06, 229.33], [-934.88, 228.96], [-949.6, 223.65], [-975.1, 209.2], [-977.05, 208.1], [-985.79, 204.59], [-1001.18, 201.31], [-1002.08, 201.11], [-1010.22, 193.46], [-1011.84, 192.01], [-1016.58, 189.74], [-1021.03, 186.02], [-1023.44, 186.01], [-1029.57, 185.99], [-1031.51, 185.99], [-1041.42, 184.07], [-1045.93, 183.19], [-1053.2, 182.44], [-1057.2, 182.31], [-1060.94, 182.18], [-1065.21, 181.72], [-1078.87, 180.28], [-1083.61, 178.17], [-1083.68, 175.6], [-1101.2, 172.23], [-1101.82, 172.11], [-1113.14, 169.49], [-1122.37, 168.68], [-1156.17, 164.19], [-1165.94, 163.14], [-1171.18, 162.58], [-1171.4, 159.15], [-1175.53, 158.67], [-1179.82, 158.19], [-1179.78, 158.92], [-1180.25, 158.95], [-1180.11, 161.67], [-1186.01, 160.93], [-1186.04, 158.48], [-1248.55, 161.58], [-1255.7, 161.65], [-1263.12, 160.84], [-1268.58, 159.74], [-1273.46, 158.79], [-1278.5, 158.61], [-1282.36, 158.76], [-1285.84, 159.03], [-1289.52, 159.94], [-1294.97, 161.71], [-1301.58, 163.8], [-1307.35, 164.88], [-1313.77, 165.26], [-1317.51, 165.11], [-1322.63, 164.46], [-1326.46, 163.7], [-1331.92, 162.52], [-1335.84, 162.22], [-1341.0, 162.29], [-1348.58, 163.74], [-1364.34, 167.41], [-1421.86, 180.44], [-1420.57, 185.93], [-1437.78, 190.05], [-1437.42, 191.28], [-1443.22, 192.7], [-1457.41, 196.16], [-1458.98, 188.52], [-1467.6, 190.63], [-1479.94, 194.19], [-1481.04, 194.5], [-1481.99, 194.77], [-1484.07, 195.37], [-1494.19, 198.46], [-1502.97, 200.7], [-1504.8, 200.98], [-1516.46, 203.64], [-1524.11, 204.88], [-1525.52, 205.1], [-1527.06, 205.27], [-1536.2, 206.72], [-1551.07, 209.15], [-1551.86, 209.27], [-1552.66, 209.37], [-1556.2, 209.99], [-1593.8, 212.22], [-1600.45, 207.95], [-1609.33, 208.19], [-1617.0, 208.57], [-1620.2, 210.34], [-1652.31, 213.65], [-1672.86, 215.66], [-1731.29, 229.2], [-1771.89, 239.43], [-1781.81, 241.54], [-1792.59, 243.51], [-1858.68, 247.42], [-1886.12, 249.27], [-1916.78, 255.92], [-1970.93, 265.03], [-2009.88, 276.35], [-2047.86, 285.5], [-2074.67, 292.93], [-2088.17, 297.33], [-2103.74, 303.17], [-2132.68, 314.93], [-2161.86, 328.97], [-2169.76, 332.98], [-2178.78, 338.26], [-2201.08, 353.27], [-2206.9, 356.94], [-2250.15, 384.2], [-2256.97, 386.99], [-2263.55, 388.89], [-2268.33, 388.63], [-2272.36, 387.29], [-2279.42, 384.46], [-2285.51, 381.93], [-2298.55, 378.72], [-2312.25, 377.74], [-2390.96, 378.71], [-2391.91, 378.73], [-2393.16, 378.74], [-2400.08, 379.04], [-2412.51, 379.57], [-2420.04, 379.64], [-2425.91, 379.69], [-2452.56, 379.93], [-2498.37, 377.65], [-2537.24, 370.34], [-2559.74, 371.15], [-2578.9, 368.85], [-2621.99, 361.47], [-2633.13, 360.73], [-2660.13, 360.79], [-2675.21, 361.94], [-2688.44, 363.24], [-2719.87, 373.64], [-2744.08, 382.94], [-2766.13, 392.19], [-2789.93, 405.44], [-2830.24, 428.46], [-2868.4, 453.23], [-2889.79, 465.6], [-2895.24, 468.76], [-2912.24, 478.21], [-2914.62, 480.23], [-2915.38, 480.86], [-2917.96, 483.75], [-2920.23, 486.77], [-2922.6, 487.65], [-2924.65, 487.47], [-2928.87, 485.19], [-2934.43, 481.44], [-2944.09, 472.78], [-2949.31, 471.38], [-2952.93, 471.87], [-2957.85, 472.53], [-2964.55, 475.55], [-2968.07, 477.23], [-2969.93, 478.1], [-2977.73, 480.72], [-2991.54, 484.53], [-3004.04, 486.03], [-3012.35, 484.98], [-3017.85, 483.62], [-3023.64, 480.09], [-3028.62, 474.14], [-3031.86, 467.7], [-3031.5, 463.5], [-3028.71, 459.71], [-3020.96, 455.57], [-3017.43, 454.62], [-3014.9, 453.44], [-3013.56, 450.69], [-3012.89, 447.5], [-3014.35, 427.07], [-3016.28, 413.18], [-3021.42, 401.8], [-3028.72, 390.9], [-3032.13, 386.42], [-3037.78, 380.06], [-3049.04, 373.66], [-3067.73, 367.89], [-3078.1, 364.53], [-3091.65, 356.6], [-3103.28, 347.93], [-3111.97, 338.53], [-3121.26, 324.85], [-3129.02, 325.03], [-3136.72, 325.21], [-3137.99, 344.22], [-3141.55, 348.71], [-3150.4, 353.62], [-3163.51, 361.18], [-3176.0, 364.77], [-3185.15, 367.33], [-3198.87, 370.81], [-3209.13, 376.84], [-3221.9, 383.67], [-3238.26, 390.24], [-3257.36, 402.27], [-3272.27, 413.76], [-3282.42, 421.58], [-3321.81, 462.05], [-3395.39, 560.62], [-3410.45, 583.01], [-3418.59, 595.15], [-3424.44, 599.86], [-3437.93, 613.22], [-3460.2, 635.9], [-3502.82, 690.69], [-3514.44, 700.02], [-3528.82, 725.66], [-3555.79, 882.09], [-3553.69, 917.72], [-3555.72, 939.54], [-3544.51, 990.6], [-3531.24, 1051.02], [-3518.37, 1079.78], [-3506.42, 1105.8], [-3457.38, 1139.46], [-3429.76, 1156.6], [-3406.01, 1167.51], [-3391.03, 1173.98], [-3367.27, 1178.26], [-3352.47, 1176.92], [-3327.68, 1172.46], [-3309.0, 1163.25], [-3298.78, 1149.64], [-3281.57, 1147.74], [-3264.22, 1150.68], [-3197.99, 1170.52], [-3155.92, 1190.45], [-3115.85, 1206.24], [-3075.36, 1218.01], [-3045.25, 1240.16], [-2951.98, 1309.16], [-2931.44, 1344.2], [-2900.58, 1362.87], [-2863.54, 1375.74], [-2832.93, 1389.45], [-2808.44, 1408.19], [-2777.59, 1422.9], [-2757.88, 1427.48], [-2734.16, 1431.37], [-2715.49, 1436.79], [-2697.21, 1451.24], [-2675.18, 1464.32], [-2664.38, 1479.96], [-2654.81, 1499.88], [-2638.82, 1524.05], [-2624.8, 1554.11], [-2608.15, 1579.2], [-2594.98, 1600.87], [-2589.7, 1609.32], [-2586.3, 1616.58], [-2586.78, 1624.1], [-2590.96, 1629.15], [-2599.4, 1633.27], [-2607.73, 1634.24], [-2613.53, 1633.46], [-2623.84, 1630.79], [-2635.99, 1622.32], [-2652.86, 1612.88], [-2654.31, 1612.07], [-2672.59, 1593.76], [-2713.48, 1556.04], [-2773.71, 1499.7], [-2809.23, 1442.92], [-2849.34, 1410.54], [-2908.96, 1381.59], [-2914.59, 1378.1], [-2930.12, 1374.02], [-2976.42, 1366.15], [-2992.42, 1363.88], [-3047.78, 1355.15], [-3164.24, 1350.07], [-3246.63, 1355.54], [-3346.22, 1373.34], [-3410.45, 1407.27], [-3507.6, 1499.49], [-3610.31, 1604.69], [-3627.87, 1641.73], [-3649.52, 1676.35], [-3736.49, 1820.89], [-3786.94, 1880.42], [-3816.58, 1929.21], [-3870.58, 1989.81], [-3890.74, 1974.7], [-3938.29, 1970.71], [-3976.02, 1985.22], [-4012.21, 1930.96], [-4060.79, 1899.33], [-4154.97, 1872.2], [-4365.71, 1780.34], [-4509.17, 1662.94], [-4595.12, 1624.65], [-4609.76, 1616.25], [-4611.29, 1607.89], [-4620.28, 1601.59], [-4647.36, 1600.84], [-4690.29, 1582.8], [-4768.21, 1547.17], [-4827.18, 1534.36], [-4955.93, 1478.46], [-4986.31, 1472.67], [-5106.22, 1402.61], [-5130.71, 1388.02], [-5153.36, 1372.74], [-5176.03, 1356.16], [-5190.76, 1346.9], [-5222.6, 1326.88], [-5257.85, 1306.47], [-5295.36, 1284.4], [-5328.76, 1257.43], [-5337.92, 1250.3], [-5372.28, 1223.52], [-5415.87, 1191.44], [-5438.5, 1174.71], [-5456.17, 1165.39], [-5457.31, 1164.47], [-5470.17, 1152.4], [-5490.9, 1141.0], [-5504.59, 1131.25], [-5510.37, 1125.54], [-5516.55, 1117.99], [-5517.02, 1117.61], [-5528.32, 1108.55], [-5540.63, 1097.1], [-5554.99, 1089.25], [-5565.17, 1079.21], [-5572.07, 1071.46], [-5580.85, 1062.31], [-5600.29, 1043.7], [-5616.57, 1028.76], [-5631.71, 1015.56], [-5640.3, 1010.98], [-5647.05, 1008.13], [-5651.3, 1004.12], [-5654.79, 1001.72], [-5654.65, 1000.27], [-5662.13, 997.09], [-5666.34, 994.52], [-5681.03, 984.37], [-5694.44, 975.26], [-5703.75, 970.86], [-5714.36, 964.91], [-5721.55, 958.05], [-5726.21, 953.59], [-5744.03, 941.2], [-5765.48, 933.93], [-5779.45, 930.22], [-5795.96, 925.5], [-5812.67, 914.34], [-5833.51, 903.29], [-5853.37, 889.17], [-5866.37, 881.48], [-5873.65, 878.65], [-5878.74, 876.82], [-5880.42, 874.72], [-5890.94, 871.97], [-5927.22, 862.45], [-5956.89, 850.95], [-5965.81, 847.27], [-5977.17, 840.61], [-5994.96, 829.47], [-6020.77, 814.81], [-6040.12, 805.15], [-6065.58, 796.39], [-6069.8, 793.83], [-6075.15, 795.42], [-6093.18, 794.33], [-6098.57, 794.49], [-6113.27, 790.43], [-6128.29, 787.65], [-6146.76, 786.99], [-6168.7, 783.86], [-6196.82, 778.72], [-6231.69, 771.96], [-6241.12, 770.89], [-6262.06, 768.48], [-6276.66, 770.36], [-6321.94, 772.56], [-6333.26, 770.82], [-6353.21, 767.86], [-6373.78, 764.33], [-6379.2, 761.24], [-6381.21, 753.32], [-6385.21, 748.42], [-6399.43, 748.83], [-6402.24, 754.55], [-6409.03, 755.03], [-6423.39, 750.73], [-6432.5, 751.36], [-6446.84, 756.07], [-6451.95, 757.47], [-6461.45, 756.87], [-6469.83, 754.16], [-6479.64, 753.56], [-6491.76, 754.5], [-6509.85, 754.44], [-6526.4, 756.11], [-6541.55, 755.08], [-6553.06, 751.72], [-6564.08, 755.15], [-6568.78, 756.06], [-6583.18, 758.85], [-6594.09, 762.83], [-6602.58, 766.92], [-6615.63, 766.71], [-6618.35, 763.45], [-6626.6, 756.11], [-6636.66, 756.99], [-6640.63, 763.31], [-6645.07, 773.48], [-6660.84, 781.62], [-6679.46, 787.46], [-6714.13, 792.38], [-6729.98, 798.7], [-6746.09, 812.21], [-6760.58, 822.59], [-6764.58, 827.12], [-6774.97, 838.86], [-6793.52, 849.17], [-6831.93, 870.69], [-6836.31, 868.08], [-6848.58, 876.25], [-6851.52, 882.57], [-6887.62, 905.84], [-6933.6, 936.19], [-6949.35, 943.86], [-6966.5, 948.64], [-6983.31, 958.2], [-6996.93, 962.22], [-7000.64, 962.33], [-7005.65, 961.5], [-7012.1, 965.49], [-7016.0, 968.92], [-7020.21, 968.94], [-7023.49, 971.19], [-7026.39, 974.37], [-7031.85, 980.38], [-7037.07, 986.6], [-7041.02, 991.29], [-7044.91, 995.91], [-7051.56, 1003.68], [-7060.61, 1011.05], [-7093.62, 1043.76], [-7145.6, 1101.85], [-7184.99, 1147.09], [-7248.69, 1237.57], [-7258.93, 1261.62], [-7264.09, 1277.44], [-7266.85, 1294.38], [-7270.13, 1355.67], [-7274.25, 1375.27], [-7272.98, 1391.61], [-7267.62, 1401.19], [-7255.42, 1403.56], [-7244.45, 1404.02], [-7243.94, 1417.06], [-7253.8, 1418.71], [-7264.57, 1424.87], [-7273.59, 1450.48], [-7275.84, 1453.66], [-7281.75, 1465.92], [-7293.74, 1483.42], [-7302.29, 1493.69], [-7314.83, 1506.7], [-7342.92, 1556.65], [-7355.7, 1556.66], [-7387.13, 1553.36], [-7403.01, 1557.27], [-7419.38, 1564.37], [-7436.41, 1578.37], [-7441.97, 1585.58], [-7457.15, 1598.67], [-7463.23, 1612.63], [-7480.44, 1620.62], [-7494.16, 1629.2], [-7505.89, 1637.31], [-7513.29, 1640.39], [-7518.46, 1641.13], [-7521.67, 1644.81], [-7529.85, 1650.94], [-7544.03, 1658.83], [-7565.38, 1678.14], [-7571.86, 1688.42], [-7574.33, 1692.34], [-7584.75, 1695.94], [-7586.6, 1696.58], [-7606.18, 1707.2], [-7609.15, 1709.45], [-7619.66, 1709.76], [-7624.74, 1713.5], [-7629.43, 1715.65], [-7642.98, 1725.68], [-7666.31, 1749.87], [-7679.59, 1764.98], [-7686.87, 1772.23], [-7713.06, 1788.23], [-7728.6, 1794.81], [-7753.8, 1829.07], [-7776.04, 1852.28], [-7788.33, 1870.47], [-7807.62, 1866.72], [-7816.5, 1858.79], [-7826.36, 1857.22], [-7836.88, 1866.87], [-7844.44, 1874.41], [-7868.7, 1906.69], [-7871.68, 1912.2], [-7877.09, 1922.22], [-7881.3, 1948.91], [-7896.06, 1966.59], [-7909.39, 1979.04], [-7921.94, 2003.12], [-7939.3, 2030.2], [-7959.44, 2065.56], [-7974.76, 2093.74], [-7983.75, 2128.23], [-8006.96, 2183.03], [-8009.57, 2189.19], [-8017.96, 2209.01], [-8020.52, 2215.05], [-8024.06, 2224.43], [-8029.61, 2229.8], [-8045.86, 2227.97], [-8063.78, 2222.27], [-8074.28, 2216.84], [-8082.55, 2208.16], [-8086.33, 2198.69], [-8096.23, 2188.97], [-8109.1, 2182.38], [-8123.17, 2179.75], [-8138.91, 2179.35], [-8157.19, 2193.61], [-8164.27, 2208.4], [-8165.99, 2224.12], [-8161.65, 2233.21], [-8153.88, 2249.02], [-8144.1, 2254.83], [-8140.98, 2256.47], [-8130.32, 2262.69], [-8110.22, 2262.53], [-8086.69, 2247.71], [-8067.48, 2245.62], [-8038.33, 2250.13], [-8033.29, 2256.6], [-8033.49, 2257.19], [-8042.55, 2285.33], [-8038.54, 2295.59], [-8045.74, 2302.54], [-8047.22, 2309.05], [-8058.92, 2355.5]], "holes": [[[-2650.98, 6797.7], [-2649.23, 6795.74], [-2645.12, 6794.56], [-2641.18, 6795.29], [-2637.62, 6797.2], [-2637.16, 6801.85], [-2636.68, 6804.06], [-2639.05, 6806.56], [-2641.84, 6808.96], [-2645.1, 6810.43], [-2649.31, 6811.4], [-2651.31, 6811.99], [-2652.72, 6811.08], [-2653.21, 6808.77], [-2653.51, 6805.7], [-2653.31, 6801.78], [-2650.98, 6797.7]], [[-2114.22, 7862.98], [-2116.29, 7859.78], [-2115.26, 7857.57], [-2112.24, 7856.17], [-2106.88, 7860.15], [-2109.63, 7863.5], [-2114.22, 7862.98]], [[-2143.85, 7956.06], [-2145.31, 7951.1], [-2144.27, 7949.11], [-2140.47, 7952.26], [-2143.85, 7956.06]]]}}, {"shape": {"outer": [[-1942.19, -3176.94], [-1912.2, -3168.22], [-1883.92, -3157.7], [-1851.69, -3131.61], [-1799.6, -3084.3], [-1776.16, -3059.7], [-1762.77, -3020.0], [-1730.82, -2972.99], [-1710.8, -2945.67], [-1703.83, -2916.24], [-1697.76, -2887.66], [-1686.43, -2858.35], [-1675.04, -2827.31], [-1658.09, -2829.45], [-1639.32, -2831.81], [-1654.89, -2856.64], [-1666.23, -2885.95], [-1678.74, -2925.67], [-1691.9, -2957.54], [-1726.45, -3003.61], [-1745.67, -3033.56], [-1758.05, -3068.94], [-1784.47, -3105.65], [-1808.82, -3131.09], [-1831.06, -3144.4], [-1860.52, -3165.34], [-1890.81, -3184.51], [-1918.27, -3196.8], [-1953.53, -3206.25], [-2003.89, -3223.98], [-1983.09, -3200.17], [-1942.19, -3176.94]], "holes": []}}, {"shape": {"outer": [[-2493.93, -3324.07], [-2419.41, -3318.37], [-2380.96, -3319.47], [-2383.21, -3275.84], [-2423.99, -3051.57], [-2426.38, -3013.16], [-2422.98, -2986.23], [-2373.28, -2930.15], [-2316.17, -2860.34], [-2288.21, -2830.64], [-2243.72, -2811.54], [-2214.16, -2804.39], [-2217.8, -2784.73], [-2218.15, -2766.42], [-2214.97, -2747.34], [-2200.5, -2730.33], [-2185.94, -2710.71], [-2176.27, -2678.74], [-2194.19, -2672.38], [-2268.65, -2696.67], [-2342.01, -2730.12], [-2319.4, -2687.77], [-2291.43, -2683.59], [-2178.72, -2642.07], [-2185.99, -2610.67], [-2187.11, -2591.72], [-2187.98, -2560.99], [-2179.51, -2532.69], [-2162.15, -2506.61], [-2149.57, -2487.59], [-2130.07, -2470.5], [-2109.02, -2445.84], [-2100.76, -2416.88], [-2095.98, -2387.17], [-2085.93, -2364.81], [-2078.42, -2352.19], [-2077.86, -2336.92], [-2076.69, -2322.69], [-2077.34, -2318.75], [-2077.1, -2310.35], [-2075.7, -2303.32], [-2075.11, -2298.23], [-2073.22, -2289.46], [-2073.09, -2281.18], [-2074.87, -2270.77], [-2075.91, -2261.49], [-2074.74, -2254.78], [-2075.96, -2247.67], [-2072.85, -2238.71], [-2072.34, -2228.47], [-2072.06, -2218.69], [-2073.96, -2212.32], [-2072.73, -2207.78], [-2072.74, -2204.19], [-2072.75, -2200.71], [-2070.17, -2194.77], [-2067.12, -2191.07], [-2063.11, -2188.56], [-2060.21, -2186.78], [-2056.71, -2186.66], [-2051.84, -2188.44], [-2048.79, -2188.85], [-2043.48, -2190.52], [-2038.75, -2193.27], [-2035.04, -2193.38], [-2028.13, -2196.41], [-2024.49, -2202.73], [-2019.44, -2205.81], [-2014.06, -2212.83], [-2012.78, -2217.46], [-2012.02, -2221.49], [-2010.88, -2227.63], [-2012.38, -2234.12], [-2015.77, -2237.93], [-2017.02, -2239.75], [-2015.91, -2246.43], [-2017.32, -2250.2], [-2020.53, -2255.45], [-2020.4, -2258.29], [-2021.33, -2260.55], [-2023.34, -2261.9], [-2023.98, -2265.15], [-2022.89, -2269.21], [-2023.21, -2276.39], [-2021.05, -2281.24], [-2014.45, -2287.1], [-2006.16, -2291.69], [-1999.28, -2291.89], [-1991.13, -2293.65], [-1985.3, -2296.22], [-1980.8, -2299.18], [-1977.31, -2303.52], [-1973.34, -2305.92], [-1968.43, -2306.06], [-1965.73, -2307.67], [-1960.53, -2308.8], [-1956.73, -2309.88], [-1946.19, -2312.25], [-1938.85, -2315.62], [-1935.4, -2317.03], [-1932.72, -2315.25], [-1917.74, -2318.74], [-1909.92, -2320.49], [-1902.45, -2319.18], [-1893.92, -2315.28], [-1885.88, -2313.44], [-1879.12, -2313.63], [-1872.92, -2314.9], [-1869.44, -2315.65], [-1861.48, -2320.13], [-1851.24, -2325.0], [-1844.72, -2330.3], [-1838.98, -2335.91], [-1835.4, -2336.78], [-1824.04, -2344.84], [-1818.15, -2348.94], [-1811.64, -2358.27], [-1805.7, -2364.75], [-1795.28, -2374.86], [-1790.6, -2382.94], [-1783.93, -2390.65], [-1780.0, -2390.86], [-1769.96, -2391.49], [-1760.15, -2392.52], [-1745.21, -2393.84], [-1735.54, -2399.55], [-1727.7, -2408.38], [-1721.53, -2414.0], [-1718.8, -2425.95], [-1716.7, -2440.06], [-1716.79, -2443.21], [-1714.9, -2449.92], [-1710.79, -2459.08], [-1708.58, -2466.11], [-1707.3, -2474.64], [-1704.63, -2484.74], [-1703.03, -2489.58], [-1699.74, -2493.15], [-1692.48, -2495.22], [-1683.19, -2499.41], [-1670.54, -2504.24], [-1662.04, -2508.73], [-1655.47, -2512.29], [-1649.21, -2514.86], [-1643.1, -2518.93], [-1645.44, -2528.37], [-1650.16, -2532.82], [-1654.56, -2533.99], [-1662.51, -2528.76], [-1672.34, -2528.48], [-1678.82, -2533.3], [-1680.26, -2537.84], [-1670.87, -2545.94], [-1656.03, -2554.44], [-1642.33, -2564.63], [-1640.42, -2574.27], [-1640.92, -2584.06], [-1651.9, -2609.02], [-1647.77, -2617.19], [-1649.04, -2631.09], [-1640.1, -2654.88], [-1635.95, -2670.03], [-1625.78, -2666.4], [-1615.73, -2666.69], [-1603.31, -2668.14], [-1589.92, -2666.12], [-1571.95, -2664.68], [-1568.18, -2662.82], [-1564.54, -2672.95], [-1570.16, -2671.04], [-1583.3, -2671.53], [-1596.12, -2676.61], [-1608.99, -2675.6], [-1625.47, -2678.39], [-1630.57, -2688.26], [-1636.39, -2693.11], [-1641.34, -2690.36], [-1644.92, -2701.15], [-1649.05, -2715.62], [-1644.91, -2723.6], [-1637.17, -2735.79], [-1629.09, -2751.27], [-1623.29, -2762.76], [-1623.12, -2771.91], [-1624.18, -2786.04], [-1627.63, -2792.05], [-1630.81, -2796.09], [-1637.58, -2796.12], [-1644.1, -2794.62], [-1647.67, -2789.51], [-1651.56, -2780.04], [-1654.03, -2774.73], [-1657.73, -2766.79], [-1672.55, -2741.96], [-1674.6, -2729.7], [-1672.7, -2724.52], [-1678.75, -2714.11], [-1675.86, -2689.59], [-1676.86, -2671.04], [-1685.04, -2643.79], [-1688.32, -2636.08], [-1685.44, -2627.22], [-1695.8, -2614.74], [-1703.22, -2591.64], [-1709.61, -2570.11], [-1711.02, -2558.52], [-1711.85, -2549.35], [-1708.7, -2538.32], [-1704.7, -2528.63], [-1709.25, -2512.18], [-1720.69, -2506.83], [-1731.39, -2498.68], [-1745.52, -2480.85], [-1755.09, -2471.43], [-1770.0, -2465.33], [-1784.94, -2460.12], [-1796.48, -2458.49], [-1806.36, -2459.94], [-1811.72, -2463.94], [-1814.69, -2468.21], [-1820.76, -2474.12], [-1828.57, -2472.16], [-1835.17, -2481.34], [-1847.51, -2492.31], [-1858.19, -2498.75], [-1868.54, -2501.07], [-1881.29, -2503.75], [-1893.47, -2501.45], [-1904.26, -2496.56], [-1913.21, -2488.46], [-1923.68, -2479.89], [-1937.67, -2472.07], [-1954.65, -2469.63], [-1967.23, -2466.43], [-1982.04, -2464.26], [-1995.22, -2466.5], [-2003.04, -2472.38], [-2014.41, -2480.11], [-2024.19, -2493.12], [-2032.5, -2500.94], [-2035.67, -2504.55], [-2035.84, -2510.65], [-2037.54, -2516.7], [-2039.6, -2519.69], [-2044.69, -2537.19], [-2048.88, -2545.79], [-2054.09, -2552.38], [-2056.26, -2559.51], [-2059.78, -2567.69], [-2066.86, -2578.38], [-2073.96, -2589.5], [-2080.71, -2596.28], [-2102.47, -2615.26], [-2107.95, -2615.98], [-2115.26, -2626.87], [-2119.68, -2636.12], [-2140.58, -2669.31], [-2154.77, -2691.13], [-2176.1, -2718.39], [-2196.82, -2739.58], [-2204.84, -2759.84], [-2198.55, -2799.66], [-2193.86, -2803.72], [-2164.83, -2798.02], [-2119.84, -2784.49], [-2104.64, -2787.98], [-2136.01, -2799.28], [-2205.69, -2819.93], [-2243.52, -2827.57], [-2276.29, -2842.31], [-2306.81, -2869.32], [-2340.54, -2917.15], [-2364.96, -2945.2], [-2403.71, -2985.04], [-2409.63, -3008.4], [-2405.12, -3064.31], [-2385.37, -3168.59], [-2367.91, -3276.28], [-2285.3, -3277.77], [-2254.17, -3289.99], [-2215.84, -3295.45], [-2140.76, -3300.23], [-2116.34, -3302.66], [-2126.23, -3311.54], [-2142.2, -3335.04], [-2151.91, -3350.38], [-2197.09, -3356.98], [-2349.52, -3348.9], [-2353.74, -3350.98], [-2349.07, -3382.49], [-2351.32, -3392.51], [-2362.0, -3391.94], [-2365.68, -3390.48], [-2373.02, -3357.75], [-2373.1, -3349.16], [-2376.96, -3343.5], [-2382.72, -3342.09], [-2399.01, -3346.14], [-2444.2, -3345.73], [-2464.37, -3344.66], [-2490.77, -3345.7], [-2540.31, -3342.31], [-2592.32, -3338.37], [-2611.74, -3336.72], [-2618.99, -3337.94], [-2635.38, -3340.67], [-2673.3, -3336.31], [-2685.53, -3343.37], [-2694.3, -3359.46], [-2701.58, -3369.27], [-2715.95, -3372.75], [-2736.06, -3371.4], [-2740.66, -3363.58], [-2744.47, -3353.03], [-2739.11, -3334.45], [-2732.38, -3313.29], [-2724.01, -3295.66], [-2704.96, -3302.74], [-2685.93, -3309.82], [-2637.19, -3318.21], [-2592.76, -3322.71], [-2544.41, -3315.64], [-2493.93, -3324.07]], "holes": [[[-2007.74, -2430.42], [-1995.27, -2422.49], [-1980.13, -2412.91], [-1974.74, -2407.83], [-1969.53, -2393.82], [-1966.71, -2379.31], [-1966.05, -2364.08], [-1971.94, -2356.07], [-1982.81, -2353.8], [-1993.53, -2354.37], [-1999.34, -2350.93], [-2011.39, -2344.06], [-2019.3, -2345.78], [-2022.95, -2343.5], [-2028.48, -2345.52], [-2035.53, -2347.49], [-2045.36, -2347.0], [-2048.41, -2346.69], [-2052.93, -2352.01], [-2053.77, -2358.29], [-2056.8, -2364.97], [-2060.15, -2367.27], [-2062.59, -2368.29], [-2066.68, -2374.05], [-2068.86, -2381.17], [-2076.94, -2426.91], [-2083.01, -2447.86], [-2099.38, -2469.61], [-2109.97, -2480.63], [-2119.12, -2487.13], [-2128.86, -2498.83], [-2141.51, -2512.85], [-2151.56, -2520.4], [-2158.62, -2530.23], [-2158.69, -2563.12], [-2162.21, -2586.76], [-2158.17, -2606.26], [-2155.43, -2617.23], [-2149.12, -2618.28], [-2127.31, -2604.97], [-2114.54, -2594.01], [-2104.8, -2582.3], [-2102.04, -2570.18], [-2092.25, -2556.3], [-2078.47, -2540.79], [-2065.56, -2525.27], [-2063.13, -2509.21], [-2048.19, -2491.34], [-2042.15, -2479.1], [-2033.33, -2468.89], [-2024.63, -2455.21], [-2017.35, -2445.39], [-2007.74, -2430.42]], [[-1891.15, -2443.56], [-1887.6, -2445.62], [-1880.63, -2446.69], [-1877.36, -2446.68], [-1875.79, -2445.53], [-1874.26, -2441.65], [-1873.97, -2439.25], [-1876.77, -2437.65], [-1879.68, -2436.05], [-1881.55, -2433.05], [-1884.56, -2431.11], [-1888.82, -2429.47], [-1888.05, -2427.09], [-1890.92, -2424.17], [-1905.54, -2419.29], [-1908.81, -2418.98], [-1911.95, -2417.91], [-1916.4, -2417.02], [-1920.21, -2416.48], [-1924.58, -2416.13], [-1930.63, -2417.39], [-1933.63, -2419.05], [-1934.79, -2421.63], [-1934.8, -2425.66], [-1932.57, -2427.77], [-1929.32, -2429.29], [-1926.34, -2431.66], [-1923.47, -2430.87], [-1920.41, -2430.95], [-1916.74, -2432.26], [-1910.25, -2435.06], [-1903.01, -2438.1], [-1899.2, -2438.32], [-1891.15, -2443.56]]]}}, {"shape": {"outer": [[-1967.55, -1979.91], [-1962.05, -1970.36], [-1963.26, -1969.37], [-1964.2, -1968.42], [-1964.82, -1967.22], [-1965.15, -1965.89], [-1965.26, -1964.67], [-1965.2, -1963.29], [-1964.92, -1962.28], [-1964.56, -1961.41], [-1964.08, -1960.66], [-1963.35, -1959.83], [-1962.5, -1959.14], [-1961.71, -1958.67], [-1960.99, -1958.35], [-1960.02, -1958.07], [-1958.97, -1957.95], [-1957.77, -1957.98], [-1956.49, -1958.29], [-1955.55, -1958.74], [-1953.1, -1960.28], [-1945.7, -1956.03], [-1944.66, -1958.49], [-1943.96, -1960.95], [-1940.29, -1963.23], [-1933.74, -1964.71], [-1924.53, -1970.23], [-1920.32, -1972.84], [-1892.94, -1984.27], [-1848.39, -2018.91], [-1808.84, -2051.35], [-1804.09, -2061.16], [-1802.59, -2069.91], [-1796.73, -2075.26], [-1793.51, -2078.22], [-1789.38, -2082.05], [-1779.33, -2082.34], [-1749.52, -2110.21], [-1720.66, -2140.23], [-1691.92, -2175.03], [-1673.89, -2198.12], [-1655.06, -2227.49], [-1635.84, -2262.03], [-1615.26, -2306.62], [-1599.08, -2352.39], [-1587.09, -2391.51], [-1580.5, -2406.68], [-1570.93, -2461.92], [-1570.58, -2489.76], [-1564.21, -2508.93], [-1557.25, -2571.43], [-1554.18, -2601.59], [-1554.02, -2626.42], [-1549.08, -2667.96], [-1544.9, -2705.11], [-1543.7, -2724.32], [-1544.53, -2738.23], [-1542.64, -2748.31], [-1538.93, -2756.25], [-1536.07, -2778.56], [-1530.38, -2793.53], [-1522.02, -2807.29], [-1513.14, -2817.55], [-1511.29, -2829.38], [-1487.21, -2843.57], [-1469.91, -2850.17], [-1441.38, -2861.88], [-1402.81, -2873.87], [-1354.17, -2885.72], [-1275.39, -2898.19], [-1147.75, -2925.92], [-1145.44, -2924.57], [-1104.56, -2933.62], [-1052.69, -2943.12], [-1033.97, -2946.94], [-1019.88, -2952.38], [-983.29, -2958.69], [-977.28, -2955.75], [-946.51, -2959.2], [-939.54, -2961.02], [-903.13, -2959.76], [-875.46, -2963.71], [-849.96, -2960.13], [-832.28, -2959.02], [-822.75, -2959.29], [-787.32, -2954.38], [-739.74, -2946.94], [-667.58, -2935.91], [-651.58, -2930.44], [-624.09, -2926.37], [-605.26, -2923.18], [-579.72, -2910.65], [-555.99, -2894.65], [-538.95, -2879.76], [-494.01, -2844.88], [-453.72, -2813.62], [-353.58, -2734.02], [-305.25, -2692.84], [-288.02, -2681.5], [-272.92, -2671.89], [-236.75, -2641.0], [-176.6, -2593.3], [-157.57, -2582.89], [-118.63, -2555.42], [-75.43, -2518.3], [-41.89, -2491.27], [-18.75, -2475.25], [5.9, -2464.32], [25.44, -2459.82], [95.47, -2451.56], [112.91, -2448.66], [116.51, -2447.58], [124.88, -2441.39], [127.69, -2434.82], [133.08, -2429.86], [163.01, -2402.05], [181.35, -2383.62], [196.41, -2367.01], [221.78, -2341.88], [240.19, -2321.42], [258.2, -2308.65], [268.74, -2299.46], [270.75, -2297.7], [272.43, -2295.43], [274.45, -2292.75], [277.03, -2292.15], [290.19, -2280.33], [293.32, -2278.79], [308.37, -2263.42], [314.18, -2259.33], [327.41, -2247.51], [336.4, -2238.94], [337.18, -2234.39], [342.24, -2240.3], [350.47, -2248.09], [340.72, -2253.52], [333.34, -2261.81], [317.41, -2277.69], [300.79, -2292.28], [291.95, -2296.16], [286.57, -2298.52], [281.27, -2302.01], [272.26, -2307.97], [254.11, -2331.86], [251.79, -2343.81], [236.3, -2357.19], [213.69, -2373.41], [189.01, -2393.59], [182.27, -2402.73], [176.6, -2405.8], [171.89, -2406.92], [144.39, -2430.54], [134.32, -2447.87], [128.6, -2450.94], [117.32, -2458.12], [108.66, -2458.47], [81.01, -2468.57], [64.06, -2469.35], [18.93, -2473.63], [-1.8, -2480.93], [-21.22, -2493.33], [-39.98, -2507.33], [-68.41, -2529.22], [-88.16, -2542.74], [-106.2, -2556.58], [-115.95, -2563.83], [-118.05, -2568.09], [-121.25, -2572.84], [-128.91, -2576.57], [-183.02, -2620.46], [-207.59, -2646.1], [-244.57, -2673.57], [-269.15, -2689.74], [-280.23, -2698.06], [-296.56, -2709.13], [-329.69, -2736.85], [-393.47, -2789.71], [-416.54, -2806.35], [-428.05, -2816.71], [-436.81, -2822.16], [-464.7, -2843.24], [-525.73, -2893.12], [-555.48, -2913.26], [-577.08, -2931.85], [-586.34, -2934.98], [-596.83, -2936.12], [-603.31, -2936.84], [-616.26, -2935.93], [-628.73, -2937.19], [-656.04, -2941.61], [-694.8, -2949.48], [-727.69, -2953.57], [-773.81, -2960.69], [-796.3, -2966.33], [-830.67, -2971.98], [-842.74, -2971.83], [-862.79, -2974.12], [-879.92, -2975.07], [-897.14, -2972.6], [-903.13, -2970.53], [-983.37, -2967.25], [-1016.95, -2963.89], [-1032.12, -2962.31], [-1053.49, -2958.01], [-1117.26, -2944.52], [-1140.22, -2941.21], [-1230.74, -2922.68], [-1236.46, -2924.32], [-1245.08, -2920.25], [-1296.89, -2913.68], [-1360.33, -2902.54], [-1432.0, -2885.67], [-1467.05, -2873.51], [-1492.74, -2853.44], [-1512.9, -2843.59], [-1516.84, -2845.26], [-1539.56, -2834.77], [-1550.01, -2799.28], [-1551.72, -2782.67], [-1564.54, -2672.95], [-1568.18, -2662.82], [-1590.36, -2602.19], [-1595.59, -2563.19], [-1641.39, -2533.56], [-1639.79, -2520.38], [-1607.23, -2497.37], [-1605.6, -2475.46], [-1623.71, -2429.04], [-1626.1, -2412.72], [-1640.41, -2363.34], [-1650.13, -2337.14], [-1667.67, -2301.81], [-1671.01, -2295.09], [-1667.32, -2269.3], [-1784.09, -2113.16], [-1798.27, -2093.59], [-1806.53, -2084.97], [-1811.12, -2080.67], [-1825.69, -2077.92], [-1836.87, -2084.46], [-1857.59, -2107.98], [-1878.48, -2119.08], [-1892.52, -2118.44], [-1906.86, -2106.96], [-1915.41, -2088.66], [-1928.42, -2073.08], [-1939.83, -2058.85], [-1962.84, -2018.46], [-1963.03, -2002.57], [-1963.07, -1998.86], [-1948.78, -1984.1], [-1952.73, -1980.26], [-1957.68, -1981.73], [-1963.15, -1981.2], [-1967.55, -1979.91]], "holes": []}}, {"shape": {"outer": [[-4045.19, -2522.84], [-4041.58, -2519.52], [-4036.31, -2519.67], [-3998.93, -2450.0], [-3966.77, -2402.83], [-3942.88, -2374.94], [-3889.99, -2312.34], [-3837.88, -2276.2], [-3831.35, -2272.55], [-3824.01, -2268.27], [-3813.05, -2262.17], [-3792.37, -2249.48], [-3768.56, -2241.3], [-3739.28, -2228.3], [-3708.09, -2211.65], [-3704.23, -2210.79], [-3679.09, -2205.17], [-3658.6, -2200.6], [-3649.02, -2206.42], [-3647.41, -2209.53], [-3632.75, -2206.67], [-3632.85, -2201.39], [-3624.52, -2198.78], [-3620.26, -2197.65], [-3619.62, -2193.64], [-3616.22, -2193.72], [-3611.38, -2200.54], [-3599.58, -2190.21], [-3587.54, -2189.33], [-3580.64, -2185.83], [-3574.65, -2186.49], [-3574.21, -2190.04], [-3534.73, -2182.41], [-3522.4, -2183.42], [-3517.23, -2188.62], [-3506.39, -2187.82], [-3503.29, -2181.57], [-3498.83, -2177.12], [-3480.37, -2168.9], [-3474.18, -2167.98], [-3464.64, -2165.94], [-3451.34, -2168.44], [-3427.33, -2178.94], [-3409.77, -2185.08], [-3355.46, -2164.74], [-3320.1, -2152.24], [-3265.38, -2132.94], [-3251.99, -2119.43], [-3229.12, -2112.4], [-3203.99, -2109.0], [-3195.88, -2106.01], [-3186.57, -2103.5], [-3176.57, -2096.72], [-3172.36, -2094.81], [-3170.08, -2092.44], [-3165.8, -2091.99], [-3159.24, -2090.15], [-3150.7, -2084.19], [-3141.17, -2075.72], [-3133.9, -2073.56], [-3122.59, -2061.79], [-3110.66, -2059.05], [-3081.63, -2031.45], [-3052.04, -2004.13], [-3031.47, -1993.84], [-3023.68, -1982.56], [-2997.57, -1975.18], [-2982.84, -1969.39], [-2945.5, -1961.15], [-2935.85, -1963.79], [-2926.84, -1950.06], [-2924.7, -1929.65], [-2939.58, -1911.8], [-2952.47, -1896.23], [-2957.06, -1871.86], [-2952.83, -1837.53], [-2944.45, -1825.06], [-2920.66, -1789.67], [-2885.77, -1770.84], [-2873.34, -1767.67], [-2870.84, -1766.73], [-2867.58, -1766.19], [-2856.96, -1770.21], [-2848.88, -1771.14], [-2843.99, -1770.68], [-2842.53, -1785.0], [-2850.22, -1786.39], [-2854.07, -1798.01], [-2855.68, -1810.33], [-2852.18, -1829.19], [-2838.37, -1851.26], [-2809.04, -1871.64], [-2791.49, -1885.15], [-2709.79, -1900.4], [-2660.14, -1908.68], [-2617.76, -1924.02], [-2604.37, -1925.04], [-2549.34, -1912.41], [-2516.24, -1907.96], [-2480.97, -1904.14], [-2431.31, -1904.18], [-2402.65, -1909.91], [-2398.97, -1911.66], [-2376.88, -1922.15], [-2352.35, -1939.08], [-2341.94, -1951.67], [-2324.27, -1965.05], [-2306.08, -1969.51], [-2285.6, -1952.07], [-2240.08, -1938.21], [-2195.35, -1915.1], [-2111.78, -1897.23], [-2082.76, -1897.12], [-2060.18, -1900.36], [-2044.62, -1907.58], [-2031.68, -1913.2], [-1965.13, -1943.58], [-1966.14, -1945.47], [-1967.68, -1948.36], [-1963.87, -1950.34], [-1960.29, -1949.43], [-1956.74, -1949.69], [-1954.63, -1957.09], [-1955.55, -1958.74], [-1956.49, -1958.29], [-1957.77, -1957.98], [-1958.97, -1957.95], [-1960.02, -1958.07], [-1960.99, -1958.35], [-1961.71, -1958.67], [-1962.5, -1959.14], [-1963.35, -1959.83], [-1964.08, -1960.66], [-1964.56, -1961.41], [-1964.92, -1962.28], [-1965.2, -1963.29], [-1965.26, -1964.67], [-1965.15, -1965.89], [-1964.82, -1967.22], [-1964.2, -1968.42], [-1963.26, -1969.37], [-1962.05, -1970.36], [-1967.55, -1979.91], [-1973.42, -1976.2], [-1976.06, -1971.14], [-1976.76, -1966.82], [-1987.26, -1965.97], [-2001.77, -1985.36], [-2071.63, -1991.84], [-2158.94, -2011.64], [-2173.52, -2080.92], [-2187.59, -2121.63], [-2192.09, -2136.27], [-2202.69, -2170.7], [-2234.96, -2222.75], [-2249.09, -2276.03], [-2247.45, -2360.08], [-2239.88, -2441.39], [-2247.06, -2522.16], [-2266.65, -2558.21], [-2311.6, -2623.57], [-2360.92, -2727.16], [-2371.89, -2759.65], [-2396.58, -2767.4], [-2412.59, -2776.52], [-2427.59, -2781.32], [-2435.66, -2788.06], [-2442.8, -2793.08], [-2454.81, -2784.9], [-2464.32, -2781.13], [-2481.84, -2773.5], [-2504.15, -2771.05], [-2519.8, -2772.92], [-2543.01, -2780.61], [-2562.31, -2782.67], [-2572.3, -2764.96], [-2588.32, -2758.09], [-2634.35, -2752.89], [-2739.77, -2745.4], [-2788.03, -2757.11], [-2960.04, -2803.43], [-2980.69, -2808.56], [-3000.32, -2803.04], [-3052.37, -2802.86], [-3234.74, -2790.13], [-3250.58, -2749.42], [-3329.73, -2723.78], [-3346.23, -2730.23], [-3369.78, -2746.29], [-3404.94, -2752.24], [-3441.25, -2749.8], [-3503.67, -2779.37], [-3526.62, -2791.74], [-3544.18, -2801.2], [-3590.71, -2837.5], [-3626.54, -2854.66], [-3678.06, -2894.3], [-3735.85, -2908.66], [-3815.55, -2906.36], [-3840.22, -2912.61], [-3854.86, -2907.74], [-3870.01, -2902.69], [-3907.76, -2877.19], [-3940.39, -2868.57], [-3956.09, -2879.28], [-3962.7, -2865.84], [-3992.27, -2871.96], [-4007.15, -2902.9], [-4022.73, -2933.12], [-4055.23, -2944.03], [-4057.74, -2935.24], [-4059.04, -2930.67], [-4032.36, -2903.57], [-3997.87, -2848.09], [-3999.39, -2827.83], [-4004.92, -2777.47], [-4037.1, -2728.52], [-4055.85, -2700.0], [-4070.34, -2620.81], [-4048.19, -2556.62], [-4045.19, -2522.84]], "holes": []}}, {"shape": {"outer": [[1149.3, 1964.9], [1154.49, 1961.85], [1160.17, 1956.56], [1163.65, 1953.24], [1166.49, 1949.86], [1168.7, 1936.24], [1171.91, 1931.3], [1181.22, 1926.92], [1195.42, 1920.05], [1204.3, 1916.69], [1209.42, 1912.4], [1216.2, 1904.6], [1220.91, 1897.5], [1227.81, 1882.72], [1231.71, 1860.5], [1231.78, 1849.41], [1228.19, 1834.38], [1229.58, 1828.79], [1235.56, 1824.48], [1246.84, 1821.44], [1253.47, 1820.28], [1257.43, 1817.44], [1262.42, 1816.21], [1265.82, 1813.07], [1268.31, 1808.32], [1272.76, 1803.51], [1277.17, 1794.77], [1283.65, 1779.04], [1288.75, 1756.33], [1294.75, 1750.31], [1300.18, 1741.45], [1314.64, 1731.58], [1322.41, 1724.28], [1330.26, 1719.92], [1340.33, 1720.51], [1348.06, 1719.53], [1366.56, 1718.36], [1368.14, 1718.64], [1370.02, 1721.12], [1370.1, 1723.11], [1371.04, 1726.19], [1375.1, 1736.95], [1376.47, 1742.78], [1376.44, 1745.88], [1375.57, 1747.82], [1373.29, 1750.67], [1356.94, 1774.54], [1353.12, 1788.13], [1351.59, 1801.82], [1352.12, 1806.99], [1353.69, 1810.59], [1356.27, 1814.82], [1360.1, 1817.1], [1363.64, 1818.0], [1365.81, 1816.08], [1373.74, 1808.5], [1377.79, 1801.43], [1385.87, 1789.92], [1397.89, 1770.23], [1400.89, 1766.5], [1404.24, 1762.95], [1406.78, 1758.78], [1408.4, 1754.19], [1409.03, 1749.36], [1408.74, 1744.99], [1407.62, 1740.74], [1405.74, 1736.78], [1403.14, 1733.25], [1384.27, 1716.02], [1380.74, 1712.23], [1379.65, 1710.55], [1376.48, 1702.09], [1370.27, 1695.4], [1357.8, 1685.08], [1347.46, 1678.62], [1336.97, 1675.0], [1324.46, 1672.74], [1315.18, 1669.3], [1308.46, 1663.4], [1300.81, 1650.19], [1295.61, 1642.5], [1289.62, 1635.39], [1282.92, 1628.95], [1275.58, 1623.25], [1267.68, 1618.35], [1259.31, 1614.29], [1250.56, 1611.14], [1241.52, 1608.92], [1232.29, 1607.65], [1222.99, 1607.35], [1213.95, 1608.0], [1205.02, 1609.57], [1196.31, 1612.04], [1187.9, 1615.38], [1179.86, 1619.55], [1172.3, 1624.53], [1150.03, 1639.13], [1126.43, 1669.84], [1113.04, 1696.96], [1101.38, 1724.69], [1095.59, 1730.13], [1063.12, 1749.13], [1050.97, 1751.98], [1045.82, 1751.48], [1042.24, 1752.56], [1039.37, 1755.25], [1030.96, 1770.73], [1026.8, 1774.21], [1017.67, 1779.59], [1009.69, 1786.04], [1004.84, 1793.13], [1000.58, 1800.57], [996.9, 1808.32], [993.86, 1816.35], [991.59, 1824.09], [989.89, 1831.98], [988.79, 1839.98], [988.29, 1848.05], [988.74, 1856.6], [990.01, 1865.08], [992.12, 1873.38], [995.03, 1881.44], [998.39, 1888.57], [1002.38, 1895.37], [1006.97, 1901.78], [1012.11, 1907.76], [1029.53, 1924.31], [1042.54, 1931.67], [1050.34, 1945.12], [1049.7, 1948.5], [1046.54, 1953.93], [1048.28, 1961.01], [1047.52, 1964.83], [1048.06, 1966.94], [1057.77, 1978.07], [1071.76, 1992.92], [1075.62, 1995.56], [1085.23, 1994.76], [1095.61, 1991.72], [1113.05, 1985.22], [1131.33, 1975.95], [1149.3, 1964.9]], "holes": [[[1154.75, 1946.34], [1154.92, 1947.72], [1153.74, 1950.1], [1149.07, 1952.03], [1146.42, 1951.42], [1141.97, 1946.42], [1136.89, 1943.8], [1132.19, 1944.35], [1128.19, 1945.97], [1123.02, 1948.3], [1117.03, 1952.37], [1081.94, 1973.3], [1077.76, 1973.49], [1075.63, 1972.89], [1072.95, 1971.68], [1071.25, 1969.84], [1069.99, 1966.16], [1069.56, 1961.43], [1069.47, 1957.94], [1068.4, 1951.11], [1059.62, 1922.63], [1050.57, 1907.68], [1033.84, 1876.67], [1030.9, 1849.86], [1033.15, 1840.33], [1039.26, 1828.62], [1053.11, 1819.85], [1060.56, 1809.29], [1066.9, 1796.74], [1075.7, 1791.99], [1090.82, 1786.12], [1101.35, 1776.97], [1108.69, 1757.42], [1111.7, 1743.74], [1117.57, 1735.19], [1130.33, 1730.39], [1146.63, 1716.71], [1157.12, 1708.6], [1166.84, 1700.6], [1175.94, 1686.29], [1182.66, 1680.67], [1200.04, 1673.21], [1209.41, 1668.36], [1220.84, 1668.47], [1248.72, 1679.22], [1268.46, 1703.43], [1293.08, 1719.02], [1294.55, 1723.97], [1291.02, 1730.29], [1285.32, 1732.95], [1278.87, 1734.43], [1264.41, 1741.65], [1255.42, 1748.6], [1249.89, 1759.52], [1239.77, 1770.47], [1231.39, 1781.22], [1225.27, 1787.05], [1207.22, 1799.81], [1201.6, 1821.03], [1202.33, 1831.41], [1199.23, 1841.67], [1198.89, 1858.55], [1199.12, 1874.49], [1195.53, 1884.67], [1191.03, 1889.79], [1185.13, 1899.6], [1176.09, 1902.52], [1157.07, 1899.68], [1145.4, 1906.32], [1138.53, 1911.98], [1136.07, 1917.18], [1134.75, 1922.61], [1140.61, 1932.38], [1149.23, 1941.52], [1154.75, 1946.34]]]}}, {"shape": {"outer": [[-2141.42, -1841.42], [-2137.72, -1837.77], [-2133.79, -1837.68], [-2133.3, -1838.87], [-2132.23, -1839.74], [-2130.99, -1840.19], [-2129.73, -1840.1], [-2128.83, -1839.79], [-2127.72, -1841.04], [-2127.77, -1841.87], [-2129.86, -1842.59], [-2130.58, -1841.93], [-2131.29, -1842.13], [-2131.49, -1843.24], [-2130.17, -1844.83], [-2129.48, -1844.41], [-2129.38, -1843.68], [-2127.17, -1842.84], [-2124.97, -1843.74], [-2124.2, -1845.77], [-2124.99, -1846.05], [-2130.27, -1847.92], [-2131.76, -1848.44], [-2138.72, -1844.99], [-2141.42, -1845.19], [-2141.42, -1841.42]], "holes": [[[-2138.37, -1841.23], [-2138.45, -1842.55], [-2136.21, -1843.65], [-2134.86, -1843.62], [-2134.75, -1842.53], [-2134.3, -1841.49], [-2134.7, -1840.96], [-2136.07, -1840.86], [-2137.91, -1840.93], [-2138.37, -1841.23]]]}}, {"shape": {"outer": [[-2204.93, -1810.99], [-2205.59, -1809.28], [-2206.21, -1807.47], [-2207.23, -1807.37], [-2207.93, -1806.6], [-2207.67, -1805.69], [-2206.04, -1803.96], [-2201.84, -1802.88], [-2200.66, -1803.36], [-2200.59, -1804.51], [-2200.2, -1805.49], [-2198.92, -1805.22], [-2197.19, -1805.78], [-2193.53, -1805.36], [-2191.34, -1808.96], [-2198.42, -1815.07], [-2205.5, -1812.45], [-2204.93, -1810.99]], "holes": [[[-2203.94, -1807.59], [-2204.09, -1808.41], [-2203.75, -1808.77], [-2202.38, -1808.93], [-2202.26, -1809.77], [-2201.39, -1810.39], [-2200.46, -1809.45], [-2202.08, -1807.66], [-2202.89, -1807.38], [-2203.94, -1807.59]]]}}, {"shape": {"outer": [[-2248.26, -1692.84], [-2246.54, -1693.27], [-2245.55, -1692.68], [-2244.96, -1690.57], [-2246.13, -1689.6], [-2246.35, -1687.59], [-2244.93, -1684.43], [-2240.94, -1685.99], [-2235.37, -1689.86], [-2239.88, -1693.7], [-2245.14, -1695.02], [-2251.39, -1693.41], [-2251.31, -1692.63], [-2250.7, -1692.05], [-2248.91, -1691.88], [-2248.26, -1692.84]], "holes": [[[-2242.05, -1690.37], [-2242.78, -1691.99], [-2242.32, -1692.65], [-2241.82, -1692.77], [-2241.33, -1692.61], [-2240.79, -1692.01], [-2240.44, -1691.28], [-2240.32, -1690.37], [-2240.5, -1689.48], [-2240.8, -1689.22], [-2241.19, -1689.3], [-2242.05, -1690.37]]]}}, {"shape": {"outer": [[87.99, -2857.62], [77.13, -2855.13], [61.48, -2859.8], [48.95, -2871.64], [32.41, -2909.3], [23.86, -2940.97], [24.75, -2955.92], [27.05, -2971.01], [31.08, -2990.84], [37.46, -3005.08], [45.86, -3017.3], [53.95, -3024.87], [67.83, -3039.22], [81.76, -3050.23], [98.21, -3056.26], [112.44, -3059.49], [119.3, -3060.29], [126.07, -3057.39], [128.18, -3053.57], [129.09, -3046.67], [127.46, -3038.57], [119.97, -3028.88], [110.53, -3018.59], [99.88, -2997.37], [93.41, -2986.41], [87.45, -2980.46], [71.55, -2963.35], [59.65, -2935.67], [55.53, -2926.73], [56.54, -2917.93], [62.59, -2905.48], [76.71, -2889.09], [87.18, -2870.99], [87.99, -2857.62]], "holes": []}}, {"shape": {"outer": [[107.98, -2819.51], [105.38, -2822.71], [103.75, -2829.54], [106.3, -2836.45], [110.38, -2838.86], [117.05, -2839.04], [169.6, -2832.48], [183.42, -2834.94], [204.48, -2843.93], [220.12, -2855.04], [250.54, -2904.05], [257.73, -2925.94], [256.64, -2939.51], [247.52, -2968.34], [240.7, -2984.01], [238.89, -2998.6], [240.87, -3005.95], [247.65, -3009.73], [258.33, -3011.13], [269.22, -3008.82], [284.03, -3002.92], [293.61, -2993.18], [306.01, -2975.41], [309.65, -2959.21], [310.79, -2949.98], [308.92, -2946.91], [304.89, -2922.7], [285.78, -2887.08], [247.93, -2838.08], [241.86, -2828.54], [212.58, -2800.91], [193.15, -2788.49], [170.15, -2782.63], [158.78, -2782.28], [145.56, -2785.94], [127.77, -2796.77], [107.98, -2819.51]], "holes": []}}, {"shape": {"outer": [[2362.01, 988.11], [2358.13, 997.13], [2302.86, 1051.92], [2292.74, 1065.66], [2284.87, 1072.89], [2250.97, 1110.31], [2245.04, 1120.92], [2230.99, 1134.28], [2172.47, 1197.64], [2158.46, 1211.96], [2121.24, 1236.53], [2104.26, 1250.28], [2072.31, 1279.93], [2047.09, 1299.9], [2024.52, 1312.95], [1990.47, 1329.8], [1969.65, 1337.64], [1951.28, 1350.27], [1919.0, 1379.38], [1908.78, 1392.84], [1899.55, 1401.98], [1896.88, 1403.66], [1891.1, 1408.23], [1868.15, 1420.53], [1853.3, 1427.85], [1830.05, 1456.23], [1815.46, 1470.14], [1808.97, 1470.53], [1792.15, 1481.47], [1776.25, 1492.67], [1767.92, 1499.99], [1754.14, 1511.18], [1748.43, 1517.83], [1744.1, 1520.8], [1741.71, 1524.25], [1736.96, 1529.54], [1703.06, 1565.89], [1698.45, 1569.52], [1680.82, 1578.52], [1679.44, 1581.59], [1672.5, 1587.48], [1651.2, 1609.1], [1638.99, 1628.36], [1627.36, 1636.46], [1617.08, 1644.12], [1599.62, 1652.67], [1586.49, 1663.38], [1580.72, 1672.03], [1563.59, 1688.08], [1519.77, 1712.62], [1508.85, 1719.63], [1487.77, 1730.79], [1480.73, 1736.68], [1473.72, 1748.48], [1452.24, 1769.35], [1434.19, 1780.06], [1386.57, 1821.74], [1376.15, 1829.17], [1365.8, 1839.11], [1345.67, 1855.22], [1298.0, 1895.22], [1249.13, 1933.49], [1195.87, 1977.98], [1185.65, 1987.42], [1127.17, 2032.4], [1113.86, 2047.25], [1100.43, 2061.6], [1075.44, 2083.88], [1078.56, 2087.02], [1073.53, 2091.22], [1062.22, 2101.57], [1054.91, 2107.54], [1046.15, 2115.28], [1051.58, 2117.38], [1079.23, 2130.18], [1077.68, 2120.98], [1083.02, 2105.16], [1084.01, 2104.27], [1084.6, 2103.76], [1085.08, 2103.33], [1122.72, 2069.6], [1130.33, 2062.79], [1140.62, 2051.94], [1152.95, 2040.05], [1235.33, 1970.78], [1245.65, 1961.13], [1255.77, 1953.57], [1269.33, 1943.61], [1280.78, 1934.07], [1285.61, 1932.64], [1307.38, 1913.59], [1313.29, 1907.5], [1320.96, 1902.35], [1323.19, 1903.53], [1327.31, 1900.46], [1326.51, 1898.21], [1330.74, 1895.05], [1342.25, 1884.92], [1350.34, 1877.72], [1363.22, 1863.87], [1386.31, 1851.68], [1403.66, 1835.52], [1416.34, 1824.27], [1425.24, 1817.44], [1435.23, 1811.99], [1443.87, 1811.25], [1451.46, 1804.28], [1455.62, 1791.48], [1470.04, 1787.6], [1486.59, 1763.08], [1504.52, 1754.16], [1508.2, 1754.51], [1512.67, 1753.63], [1511.99, 1748.48], [1532.33, 1735.78], [1547.54, 1727.36], [1587.44, 1701.1], [1590.76, 1695.46], [1598.36, 1677.92], [1606.68, 1669.56], [1615.13, 1668.39], [1619.19, 1667.39], [1622.72, 1664.93], [1630.11, 1656.1], [1651.89, 1646.84], [1659.63, 1642.27], [1713.18, 1588.84], [1720.79, 1579.89], [1726.49, 1574.41], [1729.26, 1571.41], [1734.84, 1565.34], [1750.29, 1548.62], [1751.75, 1545.67], [1757.42, 1539.69], [1761.12, 1537.13], [1767.24, 1534.93], [1771.52, 1534.1], [1774.67, 1533.49], [1779.87, 1531.37], [1786.43, 1528.02], [1789.93, 1525.49], [1792.79, 1522.43], [1798.54, 1513.91], [1825.69, 1491.12], [1836.24, 1482.85], [1848.08, 1467.36], [1871.18, 1452.75], [1884.94, 1439.96], [1904.9, 1428.79], [1906.75, 1425.84], [1916.39, 1417.39], [1951.54, 1395.13], [1959.12, 1384.23], [1983.62, 1365.91], [2004.3, 1349.09], [2028.23, 1328.51], [2057.02, 1314.85], [2075.06, 1303.79], [2107.53, 1273.81], [2122.5, 1265.78], [2174.61, 1223.49], [2191.65, 1207.87], [2215.07, 1185.55], [2233.71, 1165.22], [2248.52, 1147.61], [2275.64, 1117.24], [2298.85, 1088.28], [2306.9, 1078.46], [2332.58, 1055.66], [2352.81, 1025.26], [2370.79, 1008.31], [2380.52, 1003.68], [2369.52, 995.36], [2362.01, 988.11]], "holes": []}}, {"shape": {"outer": [[1073.53, 2091.22], [1076.1, 2094.25], [1078.23, 2096.77], [1066.84, 2106.6], [1059.56, 2112.89], [1057.65, 2110.5], [1054.91, 2107.54], [1062.22, 2101.57], [1073.53, 2091.22]], "holes": []}}, {"shape": {"outer": [[-1324.5, -11.73], [-1323.56, -10.45], [-1322.26, -9.56], [-1320.75, -9.12], [-1319.18, -9.21], [-1317.72, -9.79], [-1316.53, -10.81], [-1315.74, -12.17], [-1315.42, -13.7], [-1315.62, -15.26], [-1316.32, -16.66], [-1317.44, -17.77], [-1318.86, -18.46], [-1320.43, -18.65], [-1321.98, -18.31], [-1323.34, -17.5], [-1324.36, -16.29], [-1324.92, -14.81], [-1324.97, -13.24], [-1324.5, -11.73]], "holes": []}}, {"shape": {"outer": [[-2320.89, -1852.59], [-2325.13, -1852.65], [-2330.22, -1851.12], [-2332.97, -1849.62], [-2333.65, -1846.62], [-2333.68, -1843.9], [-2333.47, -1840.48], [-2332.98, -1838.42], [-2331.42, -1835.31], [-2329.35, -1833.68], [-2327.69, -1832.86], [-2325.26, -1832.38], [-2322.93, -1833.1], [-2321.96, -1833.51], [-2321.35, -1834.94], [-2320.82, -1835.5], [-2319.2, -1838.11], [-2319.25, -1839.96], [-2318.24, -1840.92], [-2316.05, -1842.45], [-2315.4, -1843.07], [-2307.71, -1851.33], [-2307.96, -1854.62], [-2311.75, -1855.17], [-2320.89, -1852.59]], "holes": []}}, {"shape": {"outer": [[-384.14, -2546.29], [-385.63, -2544.84], [-387.14, -2543.81], [-389.55, -2544.07], [-392.13, -2546.61], [-394.79, -2551.44], [-397.87, -2559.95], [-400.2, -2564.79], [-399.96, -2567.85], [-394.55, -2569.85], [-381.2, -2569.57], [-380.02, -2566.45], [-384.14, -2546.29]], "holes": []}}, {"shape": {"outer": [[7.23, -2714.16], [-0.58, -2727.66], [-1.77, -2730.9], [-2.01, -2743.3], [-0.21, -2745.31], [2.92, -2746.71], [7.29, -2746.84], [10.24, -2743.33], [11.32, -2739.55], [9.86, -2721.86], [8.22, -2717.77], [7.23, -2714.16]], "holes": []}}, {"shape": {"outer": [[-2512.49, 161.89], [-2513.7, 164.57], [-2516.07, 166.41], [-2517.15, 167.81], [-2516.26, 170.67], [-2513.18, 174.35], [-2509.11, 175.76], [-2506.47, 175.05], [-2506.64, 172.41], [-2504.82, 171.72], [-2502.61, 173.01], [-2500.19, 172.11], [-2499.39, 169.06], [-2500.05, 165.04], [-2501.13, 163.34], [-2503.76, 162.76], [-2507.03, 164.06], [-2510.08, 161.9], [-2510.88, 161.77], [-2512.49, 161.89]], "holes": []}}, {"shape": {"outer": [[217.14, -100.02], [217.2, -98.01], [219.01, -98.71], [220.34, -99.57], [221.75, -100.77], [223.76, -102.93], [224.7, -105.05], [224.52, -106.62], [224.11, -108.34], [222.7, -109.81], [221.23, -110.55], [219.93, -110.73], [218.07, -110.39], [215.21, -109.31], [207.18, -105.2], [205.75, -104.72], [205.04, -104.64], [204.25, -104.61], [201.28, -102.52], [202.73, -102.13], [204.46, -101.96], [207.26, -102.61], [216.08, -106.74], [218.93, -107.98], [220.16, -107.72], [221.05, -106.88], [221.8, -105.97], [222.12, -104.9], [222.15, -103.9], [221.88, -103.17], [221.39, -102.58], [220.05, -101.33], [217.14, -100.02]], "holes": []}}, {"shape": {"outer": [[-1744.48, -186.47], [-1742.08, -187.16], [-1739.94, -188.78], [-1738.59, -190.42], [-1738.26, -192.06], [-1739.23, -193.67], [-1741.0, -194.6], [-1740.4, -197.67], [-1739.13, -198.93], [-1737.85, -202.91], [-1739.11, -203.8], [-1741.04, -203.8], [-1743.01, -202.87], [-1743.52, -200.74], [-1743.04, -198.89], [-1742.09, -197.48], [-1742.7, -194.88], [-1744.7, -194.79], [-1745.84, -193.57], [-1746.02, -190.69], [-1745.69, -188.48], [-1744.44, -187.92], [-1744.24, -187.19], [-1744.48, -186.47]], "holes": []}}, {"shape": {"outer": [[-2306.2, -1794.39], [-2308.31, -1795.91], [-2309.51, -1797.46], [-2310.02, -1798.23], [-2311.45, -1799.03], [-2313.93, -1800.49], [-2314.7, -1801.8], [-2314.69, -1803.62], [-2313.14, -1804.88], [-2311.93, -1805.34], [-2309.78, -1804.79], [-2307.31, -1803.65], [-2305.08, -1802.38], [-2302.57, -1802.09], [-2300.32, -1802.03], [-2299.32, -1801.21], [-2298.78, -1799.59], [-2298.43, -1797.83], [-2299.3, -1796.23], [-2300.13, -1795.36], [-2300.9, -1794.72], [-2301.87, -1794.33], [-2303.2, -1794.17], [-2306.2, -1794.39]], "holes": []}}, {"shape": {"outer": [[-2059.15, -446.68], [-2060.98, -446.83], [-2061.17, -444.45], [-2063.27, -447.47], [-2069.79, -448.44], [-2069.13, -443.43], [-2066.03, -442.53], [-2064.29, -442.35], [-2062.62, -439.47], [-2062.78, -437.99], [-2063.72, -437.43], [-2064.29, -436.99], [-2064.6, -436.28], [-2064.46, -435.75], [-2064.61, -435.05], [-2064.55, -434.35], [-2064.09, -434.36], [-2063.43, -434.34], [-2064.83, -431.16], [-2063.07, -430.8], [-2061.51, -435.35], [-2060.1, -439.59], [-2059.28, -444.12], [-2059.15, -446.68]], "holes": []}}, {"shape": {"outer": [[142.43, -3050.32], [142.99, -3045.98], [146.35, -3043.14], [148.44, -3042.65], [157.15, -3043.99], [193.99, -3040.13], [209.65, -3039.15], [218.23, -3037.11], [220.18, -3037.93], [220.82, -3046.34], [220.1, -3048.39], [218.52, -3050.19], [216.52, -3051.22], [214.41, -3052.25], [200.66, -3055.67], [190.15, -3060.06], [172.98, -3064.14], [165.96, -3064.82], [159.08, -3064.74], [143.55, -3060.92], [142.32, -3058.05], [142.36, -3054.95], [142.43, -3050.32]], "holes": []}}, {"shape": {"outer": [[429.24, -2894.66], [418.03, -2906.17], [415.18, -2906.19], [405.99, -2895.0], [404.07, -2888.57], [404.57, -2883.59], [405.62, -2880.46], [409.0, -2878.5], [412.92, -2877.99], [429.32, -2891.81], [429.24, -2894.66]], "holes": []}}], "parks": [{"shape": {"outer": [[-2528.27, 224.82], [-2531.18, 151.93], [-2576.8, 153.75], [-2573.88, 226.65], [-2528.27, 224.82]], "holes": [[[-2544.16, 182.38], [-2545.01, 158.26], [-2534.11, 157.88], [-2533.26, 182.0], [-2544.16, 182.38]], [[-2548.03, 182.53], [-2558.79, 182.9], [-2559.61, 158.78], [-2548.85, 158.42], [-2548.03, 182.53]], [[-2562.56, 183.26], [-2573.35, 183.64], [-2574.18, 159.52], [-2563.39, 159.15], [-2562.56, 183.26]]]}}, {"shape": {"outer": [[-2580.56, 151.88], [-2681.5, 155.06], [-2679.13, 230.6], [-2578.18, 227.43], [-2580.56, 151.88]], "holes": [[[-2600.6, 175.9], [-2658.52, 178.02], [-2659.35, 155.22], [-2601.43, 153.11], [-2600.6, 175.9]], [[-2585.9, 184.72], [-2585.22, 208.22], [-2596.32, 208.54], [-2596.99, 185.04], [-2585.9, 184.72]], [[-2599.95, 185.0], [-2599.02, 208.74], [-2609.85, 209.17], [-2610.78, 185.42], [-2599.95, 185.0]], [[-2613.54, 185.64], [-2612.63, 209.42], [-2623.54, 209.85], [-2624.46, 186.06], [-2613.54, 185.64]], [[-2628.27, 186.23], [-2627.37, 209.97], [-2638.35, 210.39], [-2639.26, 186.65], [-2628.27, 186.23]], [[-2641.88, 186.86], [-2641.08, 210.51], [-2651.88, 210.88], [-2652.69, 187.23], [-2641.88, 186.86]], [[-2655.54, 187.22], [-2654.63, 210.95], [-2665.66, 211.37], [-2666.57, 187.65], [-2655.54, 187.22]]]}}, {"shape": {"outer": [[-3250.58, -2749.42], [-3234.74, -2790.13], [-3052.37, -2802.86], [-3045.89, -2829.35], [-3020.04, -2902.15], [-3043.73, -2905.62], [-3062.46, -2905.14], [-3104.52, -2901.01], [-3126.42, -2903.62], [-3174.22, -2914.01], [-3206.28, -2930.66], [-3244.62, -2974.17], [-3247.85, -2983.8], [-3254.58, -3003.86], [-3213.63, -3188.82], [-3216.83, -3207.52], [-3221.29, -3223.68], [-3224.82, -3238.03], [-3230.1, -3245.91], [-3244.16, -3263.16], [-3246.77, -3262.86], [-3255.19, -3266.54], [-3272.8, -3270.82], [-3311.46, -3271.65], [-3377.68, -3268.22], [-3404.57, -3265.77], [-3473.25, -3261.11], [-3504.68, -3258.9], [-3607.77, -3240.24], [-3630.84, -3238.88], [-3649.28, -3239.04], [-3683.56, -3244.58], [-3709.6, -3252.97], [-3738.85, -3266.51], [-3778.52, -3291.94], [-3820.09, -3323.41], [-3852.94, -3340.33], [-3891.93, -3357.5], [-3943.88, -3384.76], [-3995.03, -3414.21], [-3999.21, -3407.56], [-4007.04, -3375.96], [-4020.82, -3368.58], [-4061.42, -3381.36], [-4089.85, -3396.21], [-4117.02, -3428.55], [-4146.76, -3488.69], [-4153.16, -3528.59], [-4156.25, -3533.45], [-4193.66, -3581.51], [-4241.94, -3384.9], [-4239.27, -3309.46], [-4183.45, -3306.35], [-4161.61, -3277.35], [-4045.27, -3306.88], [-4006.06, -3281.86], [-3975.09, -3239.18], [-3949.21, -3191.13], [-3912.89, -3145.12], [-3892.7, -3112.59], [-3847.7, -3068.58], [-3827.23, -3033.66], [-3823.53, -3028.06], [-3818.5, -3026.18], [-3811.64, -3024.91], [-3814.69, -3009.57], [-3803.57, -3002.92], [-3792.96, -2999.31], [-3778.34, -3008.01], [-3769.04, -3013.43], [-3762.37, -3009.89], [-3762.67, -3001.19], [-3766.94, -2994.5], [-3773.03, -2990.74], [-3789.53, -2986.34], [-3797.28, -2982.19], [-3805.35, -2974.71], [-3806.63, -2965.71], [-3808.49, -2960.27], [-3814.05, -2950.14], [-3827.21, -2934.96], [-3841.04, -2929.34], [-3855.52, -2915.85], [-3854.86, -2907.74], [-3840.22, -2912.61], [-3815.55, -2906.36], [-3735.85, -2908.66], [-3678.06, -2894.3], [-3626.54, -2854.66], [-3590.71, -2837.5], [-3544.18, -2801.2], [-3526.62, -2791.74], [-3503.67, -2779.37], [-3441.25, -2749.8], [-3404.94, -2752.24], [-3369.78, -2746.29], [-3346.23, -2730.23], [-3329.73, -2723.78], [-3250.58, -2749.42]], "holes": [[[-3774.06, -3248.56], [-3763.06, -3262.85], [-3704.37, -3229.69], [-3704.84, -3215.73], [-3709.41, -3207.32], [-3774.06, -3248.56]], [[-3354.39, -3018.51], [-3335.53, -3050.27], [-3311.52, -3097.16], [-3293.58, -3142.12], [-3279.96, -3147.15], [-3268.38, -3117.58], [-3274.9, -3065.4], [-3284.88, -3024.12], [-3294.39, -2991.87], [-3299.6, -2955.72], [-3320.23, -2954.73], [-3337.0, -2959.32], [-3356.85, -2965.37], [-3376.75, -2979.0], [-3368.88, -2995.42], [-3354.39, -3018.51]]]}}, {"shape": {"outer": [[-130.08, -193.81], [-134.88, -193.6], [-134.85, -191.75], [-134.98, -191.16], [-135.31, -190.73], [-135.87, -190.5], [-136.57, -190.48], [-137.02, -190.68], [-137.43, -191.07], [-137.68, -191.72], [-137.75, -193.43], [-143.01, -193.26], [-144.42, -193.03], [-145.5, -192.51], [-146.3, -191.82], [-156.91, -180.1], [-155.51, -178.8], [-152.42, -178.71], [-149.26, -178.12], [-146.59, -177.08], [-144.3, -175.65], [-142.86, -174.56], [-141.57, -173.34], [-140.48, -171.97], [-139.66, -170.57], [-138.96, -169.03], [-138.39, -167.31], [-138.13, -165.64], [-137.98, -163.99], [-137.89, -161.36], [-137.99, -159.64], [-138.24, -158.08], [-135.97, -158.26], [-136.96, -187.45], [-131.23, -187.63], [-131.27, -189.46], [-129.66, -189.56], [-129.75, -192.36], [-130.08, -193.81]], "holes": [[[-145.48, -181.28], [-146.37, -181.44], [-147.16, -181.87], [-147.73, -182.49], [-148.07, -183.24], [-148.16, -184.07], [-147.99, -184.89], [-147.57, -185.6], [-146.95, -186.16], [-146.19, -186.5], [-145.35, -186.59], [-144.47, -186.38], [-143.71, -185.89], [-143.16, -185.18], [-142.87, -184.32], [-142.9, -183.42], [-143.21, -182.58], [-143.81, -181.9], [-144.59, -181.45], [-145.48, -181.28]]]}}, {"shape": {"outer": [[-184.9, -149.55], [-185.59, -148.51], [-186.0, -147.38], [-186.13, -146.29], [-185.84, -140.86], [-183.47, -141.01], [-182.81, -140.76], [-182.39, -140.19], [-182.37, -139.52], [-182.48, -138.8], [-182.8, -138.32], [-183.45, -138.03], [-185.58, -137.97], [-185.4, -134.62], [-182.26, -134.7], [-179.04, -134.81], [-179.08, -135.92], [-179.11, -136.61], [-177.93, -136.66], [-178.11, -142.5], [-150.47, -143.72], [-150.51, -144.72], [-151.92, -144.24], [-153.89, -143.85], [-157.28, -143.59], [-159.96, -143.85], [-162.48, -144.5], [-165.1, -145.97], [-167.61, -148.07], [-169.54, -150.28], [-171.03, -152.58], [-172.1, -154.98], [-172.69, -157.36], [-172.87, -159.92], [-174.16, -161.13], [-184.9, -149.55]], "holes": [[[-176.91, -147.24], [-177.81, -147.41], [-178.61, -147.86], [-179.16, -148.48], [-179.49, -149.24], [-179.58, -150.07], [-179.4, -150.88], [-178.98, -151.6], [-178.36, -152.15], [-177.61, -152.49], [-176.78, -152.58], [-175.88, -152.39], [-175.11, -151.9], [-174.54, -151.18], [-174.25, -150.31], [-174.28, -149.4], [-174.61, -148.54], [-175.21, -147.85], [-176.0, -147.4], [-176.91, -147.24]]]}}, {"shape": {"outer": [[-176.16, -103.52], [-176.37, -109.29], [-178.16, -109.21], [-178.21, -110.39], [-178.24, -111.11], [-181.41, -111.03], [-181.44, -111.99], [-185.28, -111.85], [-185.06, -106.02], [-182.81, -106.09], [-182.21, -105.9], [-181.85, -105.31], [-181.84, -104.79], [-181.88, -104.06], [-182.33, -103.45], [-182.87, -103.37], [-184.85, -103.32], [-184.59, -96.44], [-171.17, -84.0], [-169.82, -85.63], [-169.98, -86.42], [-170.01, -88.1], [-169.56, -91.7], [-168.45, -94.89], [-166.57, -97.89], [-164.01, -100.24], [-160.57, -102.2], [-157.85, -102.82], [-154.98, -103.34], [-151.55, -103.39], [-149.06, -103.4], [-148.92, -104.88], [-176.16, -103.52]], "holes": [[[-174.75, -92.34], [-175.65, -92.45], [-176.46, -92.85], [-177.16, -93.53], [-177.58, -94.42], [-177.67, -95.4], [-177.42, -96.35], [-176.86, -97.15], [-176.07, -97.73], [-175.12, -97.99], [-174.14, -97.92], [-173.31, -97.57], [-172.64, -96.97], [-172.18, -96.2], [-171.99, -95.31], [-172.09, -94.42], [-172.46, -93.61], [-173.08, -92.95], [-173.86, -92.5], [-174.75, -92.34]]]}}, {"shape": {"outer": [[-96.32, -160.9], [-96.75, -169.91], [-96.49, -172.36], [-95.67, -174.23], [-92.71, -178.04], [-88.17, -181.7], [-84.43, -182.52], [-81.4, -182.76], [-80.34, -183.89], [-93.02, -195.8], [-99.38, -195.46], [-99.3, -194.46], [-99.82, -193.4], [-101.13, -193.31], [-101.9, -194.01], [-102.03, -195.36], [-106.45, -195.17], [-106.37, -193.36], [-106.3, -190.68], [-104.42, -190.74], [-104.35, -188.91], [-97.97, -189.08], [-96.94, -160.88], [-96.32, -160.9]], "holes": [[[-92.98, -184.45], [-93.57, -185.09], [-93.92, -185.88], [-94.0, -186.81], [-93.75, -187.72], [-93.21, -188.49], [-92.45, -189.04], [-91.53, -189.29], [-90.59, -189.2], [-89.74, -188.8], [-89.12, -188.21], [-88.71, -187.44], [-88.57, -186.59], [-88.71, -185.73], [-89.11, -184.96], [-89.73, -184.36], [-90.51, -183.99], [-91.37, -183.87], [-92.22, -184.03], [-92.98, -184.45]]]}}, {"shape": {"outer": [[-53.7, -148.48], [-53.47, -142.91], [-50.95, -142.99], [-50.92, -142.3], [-50.85, -140.79], [-48.33, -140.89], [-46.42, -140.97], [-46.48, -145.57], [-48.41, -145.41], [-49.19, -145.68], [-49.68, -146.67], [-49.42, -147.58], [-48.72, -148.31], [-46.81, -148.48], [-46.88, -153.4], [-47.47, -155.35], [-48.52, -156.76], [-60.06, -167.1], [-61.19, -165.92], [-60.96, -163.16], [-61.59, -159.69], [-63.63, -155.5], [-66.96, -151.99], [-69.23, -149.94], [-71.04, -148.86], [-72.99, -148.19], [-81.22, -147.74], [-81.22, -147.2], [-53.7, -148.48]], "holes": [[[-57.18, -153.97], [-57.97, -154.43], [-58.57, -155.11], [-58.88, -155.93], [-58.93, -156.79], [-58.7, -157.63], [-58.21, -158.34], [-57.52, -158.88], [-56.7, -159.17], [-55.83, -159.17], [-55.0, -158.9], [-54.3, -158.39], [-53.78, -157.65], [-53.54, -156.77], [-53.6, -155.86], [-53.97, -155.03], [-54.58, -154.36], [-55.39, -153.93], [-56.29, -153.8], [-57.18, -153.97]]]}}, {"shape": {"outer": [[-74.34, -107.35], [-71.33, -107.02], [-68.53, -106.24], [-65.45, -104.52], [-63.21, -102.6], [-61.05, -99.91], [-59.73, -97.54], [-58.64, -94.55], [-57.81, -91.62], [-56.46, -90.34], [-45.61, -102.29], [-44.75, -103.92], [-44.54, -105.44], [-44.8, -110.53], [-46.78, -110.51], [-47.58, -110.92], [-48.15, -111.9], [-47.82, -112.81], [-46.93, -113.27], [-44.95, -113.44], [-45.09, -118.25], [-47.39, -118.11], [-47.36, -117.37], [-49.92, -117.27], [-49.87, -115.97], [-49.84, -115.46], [-51.7, -115.38], [-51.45, -109.35], [-80.23, -108.18], [-80.17, -107.08], [-74.34, -107.35]], "holes": [[[-54.81, -99.11], [-55.55, -99.65], [-56.09, -100.38], [-56.35, -101.25], [-56.31, -102.16], [-55.98, -103.01], [-55.39, -103.71], [-54.62, -104.17], [-53.72, -104.36], [-52.82, -104.25], [-51.99, -103.85], [-51.35, -103.21], [-50.94, -102.4], [-50.82, -101.49], [-51.01, -100.6], [-51.48, -99.82], [-52.17, -99.23], [-53.02, -98.9], [-53.94, -98.86], [-54.81, -99.11]]]}}, {"shape": {"outer": [[-92.22, -64.75], [-98.08, -64.56], [-97.99, -62.44], [-99.32, -62.39], [-100.07, -62.37], [-99.97, -59.67], [-101.48, -59.6], [-101.48, -56.72], [-96.8, -56.85], [-96.77, -58.57], [-96.28, -59.61], [-95.35, -60.07], [-94.62, -59.86], [-93.8, -59.09], [-93.74, -57.0], [-88.7, -57.37], [-86.74, -57.85], [-85.25, -58.79], [-74.83, -70.4], [-76.25, -71.76], [-80.2, -71.58], [-83.29, -72.49], [-86.58, -73.91], [-89.53, -76.52], [-92.18, -80.58], [-92.95, -84.72], [-93.36, -93.11], [-93.75, -93.18], [-92.22, -64.75]], "holes": [[[-86.4, -64.28], [-87.17, -64.69], [-87.77, -65.33], [-88.15, -66.18], [-88.22, -67.1], [-87.98, -67.99], [-87.45, -68.75], [-86.7, -69.29], [-85.8, -69.54], [-84.88, -69.49], [-84.02, -69.13], [-83.38, -68.55], [-82.95, -67.78], [-82.78, -66.93], [-82.9, -66.06], [-83.27, -65.28], [-83.89, -64.65], [-84.67, -64.26], [-85.53, -64.13], [-86.4, -64.28]]]}}, {"shape": {"outer": [[-123.18, -58.83], [-123.28, -61.42], [-124.56, -61.4], [-125.33, -61.38], [-125.42, -63.56], [-131.43, -63.39], [-132.73, -91.43], [-134.62, -90.94], [-134.17, -81.51], [-135.86, -77.58], [-138.84, -73.52], [-142.3, -70.89], [-146.23, -69.35], [-150.35, -68.94], [-152.18, -67.2], [-140.19, -56.23], [-137.9, -55.58], [-136.02, -55.35], [-131.52, -55.54], [-131.47, -57.55], [-130.96, -58.43], [-130.24, -58.74], [-129.37, -58.4], [-128.88, -57.7], [-128.69, -55.48], [-123.17, -55.7], [-123.18, -58.83]], "holes": [[[-142.38, -62.78], [-142.81, -63.5], [-142.99, -64.31], [-142.89, -65.15], [-142.51, -65.93], [-141.9, -66.53], [-141.12, -66.9], [-140.27, -66.99], [-139.43, -66.8], [-138.7, -66.34], [-138.17, -65.67], [-137.9, -64.88], [-137.88, -64.05], [-138.14, -63.27], [-138.64, -62.6], [-139.33, -62.12], [-140.13, -61.9], [-140.96, -61.94], [-141.74, -62.24], [-142.38, -62.78]]]}}, {"shape": {"outer": [[464.86, -78.96], [465.87, -77.78], [469.59, -80.79], [480.79, -65.12], [477.61, -61.93], [478.69, -60.72], [482.76, -65.08], [469.91, -82.84], [464.86, -78.96]], "holes": []}}, {"shape": {"outer": [[480.22, -58.24], [484.61, -63.01], [483.83, -64.01], [479.33, -59.07], [480.22, -58.24]], "holes": []}}, {"shape": {"outer": [[-2684.92, -1532.05], [-2684.54, -1532.48], [-2663.95, -1555.78], [-2486.3, -1421.67], [-2482.67, -1419.02], [-2464.77, -1440.27], [-2459.18, -1447.01], [-2454.4, -1454.51], [-2451.7, -1459.22], [-2446.47, -1466.63], [-2443.81, -1469.13], [-2442.15, -1470.6], [-2440.17, -1471.88], [-2438.65, -1472.72], [-2433.72, -1474.02], [-2427.48, -1474.49], [-2396.94, -1475.61], [-2362.05, -1476.43], [-2320.58, -1477.71], [-2278.56, -1478.58], [-2239.79, -1479.45], [-2230.45, -1479.71], [-2191.04, -1480.81], [-2188.97, -1481.26], [-2187.81, -1481.68], [-2187.16, -1482.04], [-2186.42, -1483.1], [-2185.84, -1484.3], [-2185.75, -1485.36], [-2186.0, -1487.63], [-2186.76, -1489.08], [-2187.98, -1490.04], [-2190.92, -1491.28], [-2187.96, -1497.73], [-2186.66, -1497.28], [-2185.76, -1497.17], [-2184.39, -1497.39], [-2182.55, -1498.36], [-2181.6, -1499.9], [-2181.15, -1502.52], [-2181.36, -1508.46], [-2182.55, -1542.13], [-2182.67, -1548.82], [-2181.79, -1550.84], [-2181.8, -1552.5], [-2182.84, -1554.02], [-2185.74, -1673.46], [-2186.03, -1681.0], [-2187.51, -1686.71], [-2188.07, -1688.63], [-2189.42, -1689.99], [-2190.81, -1690.3], [-2192.14, -1690.05], [-2194.66, -1691.25], [-2197.08, -1692.82], [-2198.11, -1694.64], [-2198.79, -1697.07], [-2198.66, -1699.21], [-2197.92, -1701.51], [-2197.28, -1702.61], [-2195.56, -1704.0], [-2193.82, -1704.8], [-2191.37, -1705.4], [-2189.23, -1705.5], [-2188.56, -1705.38], [-2184.0, -1710.0], [-2125.01, -1712.4], [-2124.85, -1714.56], [-2123.88, -1716.88], [-2122.3, -1718.55], [-2120.69, -1719.41], [-2118.78, -1719.91], [-2112.48, -1720.03], [-2060.96, -1721.06], [-2064.36, -1812.64], [-2020.74, -1814.67], [-2021.49, -1851.02], [-2022.1, -1856.84], [-2023.74, -1867.65], [-2027.05, -1879.6], [-2028.24, -1881.94], [-2031.3, -1885.24], [-2032.87, -1885.94], [-2034.13, -1885.97], [-2037.84, -1886.02], [-2039.52, -1895.27], [-2034.5, -1896.45], [-2029.21, -1897.94], [-2012.27, -1902.11], [-1989.5, -1911.94], [-1976.39, -1918.81], [-1842.95, -2001.77], [-1826.99, -2010.95], [-1817.28, -2014.82], [-1807.76, -2016.45], [-1800.2, -2016.42], [-1796.8, -2017.42], [-1793.82, -2020.6], [-1789.06, -2037.81], [-1784.67, -2046.12], [-1778.56, -2054.19], [-1778.29, -2058.41], [-1780.12, -2062.1], [-1787.79, -2067.08], [-1792.2, -2070.49], [-1796.73, -2075.26], [-1802.59, -2069.91], [-1804.09, -2061.16], [-1808.84, -2051.35], [-1848.39, -2018.91], [-1892.94, -1984.27], [-1920.32, -1972.84], [-1924.53, -1970.23], [-1933.74, -1964.71], [-1940.29, -1963.23], [-1938.81, -1960.51], [-1942.25, -1958.52], [-1942.98, -1956.5], [-1944.68, -1953.62], [-1947.82, -1950.53], [-1949.89, -1949.44], [-1952.93, -1947.83], [-1957.86, -1946.85], [-1962.89, -1947.27], [-1966.14, -1945.47], [-1965.13, -1943.58], [-2031.68, -1913.2], [-2044.62, -1907.58], [-2060.18, -1900.36], [-2082.76, -1897.12], [-2111.78, -1897.23], [-2195.35, -1915.1], [-2240.08, -1938.21], [-2285.6, -1952.07], [-2306.08, -1969.51], [-2324.27, -1965.05], [-2341.94, -1951.67], [-2352.35, -1939.08], [-2376.88, -1922.15], [-2398.97, -1911.66], [-2402.65, -1909.91], [-2431.31, -1904.18], [-2480.97, -1904.14], [-2516.24, -1907.96], [-2549.34, -1912.41], [-2604.37, -1925.04], [-2617.76, -1924.02], [-2660.14, -1908.68], [-2709.79, -1900.4], [-2791.49, -1885.15], [-2809.04, -1871.64], [-2838.37, -1851.26], [-2852.18, -1829.19], [-2855.68, -1810.33], [-2854.07, -1798.01], [-2850.22, -1786.39], [-2842.51, -1785.03], [-2843.09, -1778.13], [-2843.99, -1770.7], [-2848.88, -1771.14], [-2856.96, -1770.21], [-2867.58, -1766.19], [-2870.84, -1766.73], [-2873.34, -1767.67], [-2897.16, -1737.79], [-2884.51, -1729.87], [-2889.61, -1725.38], [-2892.34, -1722.98], [-2898.72, -1716.99], [-2899.48, -1715.54], [-2899.98, -1714.09], [-2899.86, -1710.42], [-2898.06, -1706.5], [-2706.54, -1543.42], [-2705.03, -1542.14], [-2688.48, -1528.02], [-2684.92, -1532.05]], "holes": [[[-2432.89, -1626.67], [-2436.17, -1667.76], [-2435.89, -1668.78], [-2431.2, -1681.19], [-2424.12, -1699.91], [-2421.67, -1706.3], [-2416.52, -1719.78], [-2402.72, -1777.08], [-2413.95, -1789.12], [-2420.64, -1795.72], [-2421.12, -1798.93], [-2420.88, -1802.8], [-2420.01, -1806.67], [-2417.48, -1814.05], [-2413.67, -1818.97], [-2406.27, -1825.85], [-2402.38, -1834.22], [-2394.78, -1838.52], [-2384.43, -1836.94], [-2372.91, -1837.7], [-2358.0, -1849.2], [-2348.87, -1869.45], [-2333.01, -1873.55], [-2303.48, -1882.06], [-2300.48, -1874.89], [-2293.74, -1858.82], [-2258.44, -1868.29], [-2198.17, -1888.84], [-2198.16, -1899.28], [-2082.81, -1879.84], [-2067.76, -1874.44], [-2064.72, -1839.26], [-2063.25, -1817.16], [-2074.59, -1813.75], [-2089.61, -1809.25], [-2164.73, -1786.74], [-2174.61, -1767.8], [-2186.96, -1744.14], [-2190.36, -1737.62], [-2189.13, -1711.48], [-2199.2, -1703.06], [-2200.82, -1684.16], [-2204.89, -1665.73], [-2231.09, -1624.55], [-2274.87, -1575.73], [-2294.41, -1564.76], [-2308.89, -1552.27], [-2320.29, -1548.34], [-2432.89, -1626.67]]]}}, {"shape": {"outer": [[-2588.32, -2758.09], [-2574.46, -2786.77], [-2556.19, -2809.9], [-2522.53, -2823.94], [-2478.93, -2828.77], [-2444.67, -2832.41], [-2416.25, -2828.13], [-2398.16, -2813.14], [-2381.91, -2789.34], [-2371.89, -2759.65], [-2360.92, -2727.16], [-2311.6, -2623.57], [-2266.65, -2558.21], [-2223.96, -2572.8], [-2185.99, -2610.67], [-2178.72, -2642.07], [-2291.43, -2683.59], [-2319.4, -2687.77], [-2342.01, -2730.12], [-2268.65, -2696.67], [-2194.19, -2672.38], [-2176.27, -2678.74], [-2185.94, -2710.71], [-2200.5, -2730.33], [-2214.97, -2747.34], [-2235.12, -2765.11], [-2270.43, -2782.39], [-2328.37, -2815.47], [-2384.63, -2852.82], [-2415.68, -2913.16], [-2445.56, -2902.66], [-2438.35, -2879.43], [-2422.43, -2861.4], [-2426.22, -2849.77], [-2450.87, -2849.44], [-2517.96, -2845.91], [-2523.68, -2886.65], [-2564.33, -2909.46], [-2611.67, -2942.69], [-2692.64, -2917.21], [-2738.93, -2907.83], [-2779.54, -2903.24], [-2807.24, -2927.74], [-2792.17, -2952.27], [-2776.45, -3001.44], [-2716.25, -3031.86], [-2668.29, -3068.78], [-2621.8, -3037.3], [-2616.91, -3085.45], [-2594.84, -3110.7], [-2603.72, -3129.37], [-2621.84, -3180.56], [-2639.49, -3246.43], [-2624.28, -3287.5], [-2597.04, -3317.93], [-2592.76, -3322.71], [-2637.19, -3318.21], [-2685.93, -3309.82], [-2704.96, -3302.74], [-2724.01, -3295.66], [-2732.38, -3313.29], [-2739.11, -3334.45], [-2744.47, -3353.03], [-2748.6, -3345.49], [-2759.31, -3332.84], [-2772.35, -3320.46], [-2773.5, -3314.62], [-2772.82, -3307.77], [-2764.5, -3296.07], [-2756.89, -3286.14], [-2745.22, -3272.62], [-2741.87, -3265.74], [-2741.46, -3257.59], [-2742.52, -3247.96], [-2746.23, -3236.94], [-2751.85, -3221.96], [-2758.6, -3209.68], [-2766.11, -3197.11], [-2772.24, -3184.51], [-2795.43, -3128.7], [-2751.25, -3104.81], [-2788.18, -3035.89], [-2871.44, -2949.2], [-2759.12, -2827.38], [-2871.42, -2859.77], [-3001.07, -2900.3], [-3020.04, -2902.15], [-3045.89, -2829.35], [-3052.37, -2802.86], [-3000.32, -2803.04], [-2980.69, -2808.56], [-2960.04, -2803.43], [-2788.03, -2757.11], [-2739.77, -2745.4], [-2634.35, -2752.89], [-2588.32, -2758.09]], "holes": []}}, {"shape": {"outer": [[-1325.93, 82.43], [-1323.6, 81.68], [-1320.88, 81.38], [-1317.43, 81.52], [-1318.23, 78.49], [-1321.43, 78.46], [-1324.22, 78.72], [-1326.24, 79.22], [-1328.08, 79.89], [-1327.88, 83.33], [-1325.93, 82.43]], "holes": []}}, {"shape": {"outer": [[-1321.35, 85.74], [-1318.68, 85.69], [-1316.04, 86.12], [-1316.78, 83.42], [-1320.33, 83.17], [-1323.02, 83.4], [-1325.35, 84.19], [-1327.79, 85.39], [-1327.58, 88.41], [-1324.12, 86.54], [-1321.35, 85.74]], "holes": []}}, {"shape": {"outer": [[-1324.1, 114.67], [-1321.63, 116.4], [-1318.25, 118.06], [-1314.94, 119.14], [-1311.31, 119.7], [-1308.61, 119.53], [-1306.76, 119.15], [-1307.6, 116.37], [-1310.78, 116.7], [-1314.92, 116.25], [-1319.07, 114.57], [-1322.75, 112.16], [-1326.45, 107.96], [-1326.55, 112.37], [-1324.1, 114.67]], "holes": []}}, {"shape": {"outer": [[-1324.12, 120.9], [-1322.0, 121.99], [-1319.65, 123.02], [-1317.23, 123.9], [-1314.82, 124.36], [-1312.4, 124.66], [-1310.61, 124.77], [-1308.81, 124.8], [-1307.02, 124.57], [-1305.34, 124.18], [-1306.34, 120.67], [-1308.15, 121.06], [-1310.14, 121.27], [-1312.46, 121.29], [-1314.7, 120.99], [-1317.16, 120.34], [-1319.5, 119.39], [-1321.28, 118.46], [-1322.98, 117.38], [-1324.6, 116.24], [-1326.1, 115.04], [-1325.83, 119.95], [-1324.12, 120.9]], "holes": []}}, {"shape": {"outer": [[-1400.04, -215.09], [-1388.3, -215.7], [-1387.61, -202.45], [-1386.45, -202.58], [-1384.15, -213.5], [-1384.59, -223.77], [-1386.16, -229.99], [-1395.39, -229.49], [-1395.38, -231.68], [-1441.12, -229.54], [-1443.63, -228.36], [-1445.17, -226.62], [-1445.85, -224.44], [-1445.27, -224.3], [-1445.43, -223.1], [-1444.72, -223.14], [-1444.61, -221.65], [-1445.98, -221.31], [-1447.29, -212.71], [-1441.9, -212.84], [-1438.43, -213.09], [-1400.04, -215.09]], "holes": [[[-1431.96, -224.29], [-1427.79, -225.28], [-1423.28, -225.79], [-1418.6, -225.77], [-1414.22, -225.13], [-1417.25, -217.1], [-1428.38, -216.46], [-1431.96, -224.29]]]}}, {"shape": {"outer": [[-381.15, -342.54], [-375.63, -348.36], [-376.1, -349.84], [-377.66, -351.71], [-387.01, -360.35], [-393.47, -353.67], [-381.15, -342.54]], "holes": [[[-387.18, -354.57], [-385.74, -354.25], [-383.01, -352.79], [-380.72, -349.77], [-381.19, -348.47], [-382.11, -347.62], [-384.03, -348.46], [-385.11, -349.43], [-386.93, -351.4], [-387.93, -352.71], [-388.09, -354.14], [-387.18, -354.57]]]}}, {"shape": {"outer": [[98.06, -264.73], [93.99, -268.44], [95.39, -269.95], [81.29, -282.82], [77.26, -278.43], [95.52, -261.93], [98.06, -264.73]], "holes": [[[79.73, -277.29], [78.12, -278.77], [79.21, -279.95], [80.82, -278.48], [79.73, -277.29]], [[85.77, -272.52], [87.68, -274.71], [91.44, -271.45], [89.59, -269.33], [90.66, -268.42], [89.82, -267.46], [88.69, -268.44], [89.46, -269.32], [85.77, -272.52]]]}}, {"shape": {"outer": [[510.33, -29.35], [515.83, -27.68], [523.86, -25.65], [524.15, -26.73], [522.38, -29.72], [518.2, -34.92], [514.6, -37.96], [511.23, -39.73], [505.85, -40.77], [501.63, -40.48], [498.42, -39.81], [497.69, -39.32], [501.24, -35.88], [505.24, -32.52], [508.66, -30.24], [510.33, -29.35]], "holes": [[[515.52, -29.56], [510.13, -31.82], [507.63, -33.49], [505.79, -35.94], [506.51, -37.67], [509.12, -38.1], [512.32, -37.74], [516.16, -34.34], [519.43, -30.45], [519.89, -29.24], [519.22, -28.48], [515.52, -29.56]]]}}, {"shape": {"outer": [[1202.68, 713.14], [1202.46, 712.2], [1205.86, 711.73], [1205.98, 712.71], [1210.93, 712.05], [1211.25, 711.53], [1210.81, 710.74], [1208.97, 709.56], [1207.61, 708.32], [1205.47, 706.5], [1203.81, 704.61], [1202.14, 702.54], [1200.81, 700.69], [1199.22, 698.13], [1197.63, 695.49], [1196.32, 692.46], [1194.49, 688.12], [1193.55, 683.38], [1192.6, 679.97], [1192.0, 678.75], [1190.98, 678.07], [1189.27, 677.79], [1183.02, 677.55], [1175.48, 677.66], [1174.56, 678.26], [1174.47, 678.87], [1175.11, 681.16], [1175.23, 683.7], [1174.94, 687.02], [1173.89, 690.02], [1173.54, 692.39], [1173.24, 695.52], [1173.91, 698.99], [1174.76, 702.37], [1176.6, 705.52], [1178.9, 708.2], [1181.81, 710.56], [1184.84, 711.99], [1188.94, 713.19], [1192.99, 714.02], [1195.36, 714.06], [1202.68, 713.14]], "holes": [[[1179.82, 694.33], [1178.64, 692.44], [1178.18, 690.45], [1178.51, 687.82], [1179.19, 685.95], [1180.3, 685.34], [1182.36, 684.43], [1184.85, 684.06], [1186.83, 684.97], [1188.0, 686.58], [1188.55, 688.73], [1188.84, 691.33], [1187.46, 693.14], [1185.41, 694.35], [1183.6, 695.05], [1181.86, 695.1], [1179.82, 694.33]]]}}, {"shape": {"outer": [[-1534.36, -9.97], [-1535.46, -9.86], [-1536.33, -9.61], [-1536.88, -8.8], [-1533.57, -5.3], [-1523.1, 4.42], [-1522.33, 4.45], [-1518.81, 7.79], [-1517.89, 8.51], [-1516.86, 9.09], [-1515.71, 9.53], [-1514.51, 9.79], [-1485.62, 8.34], [-1485.25, 7.36], [-1533.11, -9.66], [-1534.36, -9.97]], "holes": [[[-1515.06, 6.06], [-1512.96, 5.98], [-1512.87, 8.21], [-1514.97, 8.3], [-1515.06, 6.06]]]}}, {"shape": {"outer": [[-1620.02, -130.1], [-1657.33, -123.9], [-1656.78, -118.6], [-1656.96, -111.73], [-1657.06, -105.86], [-1655.01, -103.46], [-1652.73, -99.74], [-1644.54, -51.06], [-1643.6, -49.98], [-1594.98, -58.69], [-1595.99, -65.56], [-1628.68, -64.55], [-1628.77, -61.79], [-1630.4, -59.15], [-1632.58, -58.55], [-1634.51, -58.78], [-1636.59, -60.13], [-1637.55, -62.22], [-1638.4, -64.44], [-1638.62, -67.47], [-1638.62, -74.23], [-1638.15, -77.83], [-1636.78, -78.73], [-1634.93, -79.13], [-1616.06, -82.57], [-1620.32, -106.38], [-1626.43, -105.25], [-1629.95, -123.42], [-1619.11, -125.28], [-1620.02, -130.1]], "holes": [[[-1638.62, -57.63], [-1636.56, -57.9], [-1636.3, -55.87], [-1638.35, -55.6], [-1638.62, -57.63]]]}}, {"shape": {"outer": [[-1417.4, 66.28], [-1431.11, 66.89], [-1431.26, 63.76], [-1438.07, 64.05], [-1437.58, 75.42], [-1433.69, 75.26], [-1433.72, 74.45], [-1432.2, 74.38], [-1432.34, 71.1], [-1431.01, 71.03], [-1431.09, 69.38], [-1418.25, 68.79], [-1418.16, 70.49], [-1416.79, 70.43], [-1416.67, 73.39], [-1414.23, 73.29], [-1414.27, 72.32], [-1414.71, 63.03], [-1417.54, 63.14], [-1417.4, 66.28]], "holes": [[[-1435.02, 65.58], [-1432.15, 65.44], [-1431.92, 70.16], [-1434.8, 70.3], [-1435.02, 65.58]]]}}, {"shape": {"outer": [[-1398.16, 55.7], [-1377.37, 54.74], [-1377.6, 49.78], [-1398.34, 50.84], [-1398.16, 55.7]], "holes": [[[-1387.45, 52.48], [-1387.32, 52.71], [-1387.33, 53.07], [-1387.56, 53.33], [-1387.9, 53.41], [-1388.16, 53.31], [-1388.28, 53.18], [-1388.36, 53.02], [-1388.37, 52.75], [-1388.25, 52.52], [-1388.03, 52.37], [-1387.68, 52.36], [-1387.45, 52.48]]]}}, {"shape": {"outer": [[-1671.61, -158.06], [-1675.26, -156.01], [-1675.53, -153.2], [-1675.1, -150.31], [-1674.22, -147.35], [-1672.87, -144.31], [-1671.03, -141.37], [-1664.31, -135.37], [-1660.57, -129.67], [-1653.62, -131.48], [-1649.74, -135.77], [-1633.6, -161.77], [-1635.67, -163.18], [-1648.42, -162.64], [-1648.24, -160.74], [-1650.43, -160.52], [-1650.5, -161.36], [-1653.85, -161.09], [-1657.18, -160.56], [-1660.83, -159.69], [-1661.48, -161.37], [-1667.42, -159.77], [-1671.61, -158.06]], "holes": [[[-1648.62, -145.43], [-1646.47, -145.47], [-1646.43, -143.31], [-1648.59, -143.27], [-1648.62, -145.43]]]}}, {"shape": {"outer": [[2747.09, -1458.24], [2677.18, -1431.89], [2687.01, -1405.68], [2756.96, -1430.64], [2747.09, -1458.24]], "holes": []}}, {"shape": {"outer": [[2220.39, -3183.4], [2383.71, -3193.21], [2419.65, -3194.33], [2420.13, -3082.04], [2259.14, -3079.0], [2258.55, -3131.38], [2218.67, -3130.98], [2220.39, -3183.4]], "holes": []}}, {"shape": {"outer": [[-158.1, 432.8], [-159.08, 432.38], [-160.03, 432.66], [-215.71, 493.68], [-227.19, 506.26], [-231.19, 502.68], [-262.25, 537.1], [-246.18, 539.78], [-228.47, 542.86], [-217.02, 554.31], [-179.4, 564.27], [-134.71, 580.79], [-89.24, 598.4], [-73.75, 606.55], [-35.38, 630.98], [-20.12, 630.8], [-15.77, 639.4], [-5.6, 649.44], [3.04, 657.96], [16.93, 671.66], [22.78, 677.45], [23.84, 683.73], [25.4, 688.5], [26.87, 690.62], [29.6, 694.24], [36.7, 697.96], [42.81, 697.79], [52.29, 708.19], [50.4, 710.85], [50.25, 713.47], [53.44, 718.17], [68.81, 730.59], [67.4, 732.34], [69.87, 735.09], [80.82, 747.17], [88.96, 753.68], [98.76, 759.56], [116.31, 777.57], [136.98, 797.23], [144.96, 816.6], [146.13, 818.67], [158.99, 841.46], [184.78, 879.91], [201.18, 903.4], [226.05, 937.11], [303.38, 852.91], [303.76, 852.49], [250.37, 805.79], [224.12, 835.65], [164.58, 781.59], [163.25, 780.32], [161.96, 777.66], [162.05, 774.96], [162.91, 772.77], [164.48, 771.2], [165.57, 770.57], [167.16, 770.07], [168.78, 769.68], [169.88, 768.45], [184.77, 751.76], [184.01, 751.04], [186.92, 747.6], [187.13, 746.98], [163.85, 725.47], [144.51, 746.68], [118.9, 722.39], [137.91, 701.83], [66.29, 636.75], [49.23, 621.03], [34.16, 607.46], [5.14, 581.91], [0.27, 576.84], [-48.54, 532.2], [-158.1, 432.8]], "holes": []}}, {"shape": {"outer": [[577.87, 1227.13], [491.11, 1155.31], [481.81, 1165.73], [453.6, 1197.35], [487.99, 1221.0], [502.55, 1233.89], [513.67, 1243.72], [516.61, 1248.54], [520.05, 1254.14], [529.34, 1264.34], [541.42, 1278.45], [552.8, 1264.39], [548.17, 1260.05], [560.58, 1246.56], [577.87, 1227.13]], "holes": []}}, {"shape": {"outer": [[1153.26, 2090.62], [1113.86, 2047.25], [1100.43, 2061.6], [1075.44, 2083.88], [1078.56, 2087.02], [1073.53, 2091.22], [1062.22, 2101.57], [1054.91, 2107.54], [1046.15, 2115.28], [1045.5, 2114.67], [1037.01, 2105.33], [1033.96, 2104.8], [1030.7, 2104.64], [1027.57, 2104.66], [1024.23, 2104.96], [989.16, 2116.16], [956.91, 2126.43], [947.05, 2129.7], [936.59, 2133.14], [933.7, 2134.35], [931.58, 2135.77], [929.85, 2137.69], [928.59, 2139.74], [927.66, 2141.91], [927.47, 2144.45], [932.59, 2239.76], [933.02, 2240.36], [932.61, 2241.41], [928.84, 2242.46], [929.13, 2243.22], [928.6, 2243.75], [927.94, 2243.45], [924.58, 2241.46], [920.15, 2237.56], [916.75, 2156.95], [915.92, 2151.7], [910.69, 2145.58], [908.1, 2139.89], [907.5, 2134.71], [909.77, 2130.7], [912.7, 2127.52], [1010.14, 2097.33], [1020.57, 2093.34], [1025.11, 2089.99], [1026.64, 2087.51], [1027.38, 2085.14], [1025.74, 2061.44], [1018.9, 2032.18], [1015.0, 2011.67], [995.36, 1989.12], [988.57, 1988.35], [980.62, 1991.78], [976.97, 1986.72], [973.58, 1982.04], [958.75, 1959.03], [948.2, 1950.34], [937.16, 1947.12], [926.33, 1951.6], [918.29, 1963.38], [919.91, 1952.42], [918.01, 1941.89], [913.31, 1935.28], [901.51, 1928.24], [895.36, 1938.04], [877.98, 1927.5], [872.08, 1923.93], [863.47, 1919.93], [856.17, 1919.25], [854.82, 1926.27], [846.2, 1932.97], [834.94, 1929.52], [832.54, 1920.99], [838.19, 1910.6], [843.63, 1912.25], [838.38, 1898.41], [832.5, 1894.09], [824.99, 1887.39], [819.24, 1877.93], [892.96, 1817.49], [912.74, 1839.88], [929.69, 1829.06], [1050.43, 1722.32], [1084.12, 1692.82], [1211.62, 1551.36], [1308.88, 1635.73], [1423.89, 1737.19], [1493.64, 1800.56], [1395.42, 1887.96], [1321.44, 1953.76], [1296.82, 1975.68], [1182.71, 2066.42], [1153.26, 2090.62]], "holes": []}}, {"shape": {"outer": [[497.73, 728.84], [632.33, 850.78], [686.54, 791.17], [551.96, 668.92], [497.73, 728.84]], "holes": []}}, {"shape": {"outer": [[1581.65, 421.0], [1587.31, 426.16], [1654.39, 487.3], [1722.43, 550.15], [1729.77, 557.09], [1724.51, 562.49], [1668.25, 623.19], [1662.26, 630.24], [1655.41, 624.01], [1520.69, 501.33], [1512.37, 493.76], [1519.03, 486.75], [1576.28, 426.98], [1581.65, 421.0]], "holes": []}}, {"shape": {"outer": [[2243.4, 823.74], [2216.29, 853.77], [2252.18, 886.91], [2279.56, 856.0], [2277.43, 842.26], [2267.19, 843.96], [2243.4, 823.74]], "holes": []}}, {"shape": {"outer": [[1217.73, 2959.26], [1216.78, 2940.74], [1213.86, 2921.29], [1202.53, 2897.3], [1184.64, 2822.96], [1269.28, 2821.15], [1360.97, 2819.18], [1374.32, 2819.03], [1412.5, 2818.39], [1494.88, 2814.29], [1498.46, 2814.13], [1509.2, 2816.37], [1564.28, 2916.94], [1570.84, 2929.61], [1572.28, 2932.85], [1572.3, 2934.33], [1571.85, 2935.96], [1570.55, 2937.55], [1569.58, 2938.08], [1568.32, 2938.45], [1566.97, 2938.85], [1533.49, 2941.74], [1501.48, 2944.66], [1284.55, 2955.64], [1217.73, 2959.26]], "holes": []}}, {"shape": {"outer": [[2031.19, 2396.94], [2026.72, 2382.47], [2019.58, 2369.74], [2010.85, 2361.93], [2002.45, 2359.14], [1995.09, 2357.49], [1988.16, 2354.39], [1974.66, 2340.49], [1983.75, 2330.28], [2008.33, 2353.57], [2013.16, 2347.8], [2052.96, 2384.9], [2103.46, 2432.47], [2130.69, 2460.57], [2147.89, 2475.24], [2231.31, 2554.61], [2204.7, 2582.17], [2191.91, 2595.42], [2217.08, 2620.49], [2144.39, 2696.6], [2114.55, 2727.85], [2219.25, 2831.21], [2237.5, 2849.24], [2102.88, 2986.91], [2099.71, 2989.08], [2095.48, 2990.22], [2090.56, 2989.24], [2086.85, 2985.98], [2072.55, 2956.9], [2057.44, 2924.96], [2048.21, 2898.61], [2039.76, 2869.85], [2024.99, 2803.85], [2011.28, 2738.08], [1985.72, 2623.75], [1953.4, 2471.55], [1984.57, 2459.01], [2010.2, 2442.44], [2022.83, 2432.74], [2028.91, 2419.19], [2031.19, 2396.94]], "holes": []}}, {"shape": {"outer": [[2768.8, -2158.43], [2761.81, -2159.61], [2752.76, -2156.1], [2759.39, -2140.18], [2837.73, -2040.12], [2890.15, -1990.63], [2897.22, -1990.45], [2899.17, -2046.91], [2893.17, -2046.97], [2895.8, -2116.22], [2901.56, -2116.31], [2901.86, -2127.57], [2895.69, -2127.97], [2896.76, -2146.75], [2902.59, -2146.74], [2901.69, -2152.42], [2897.27, -2154.69], [2813.53, -2158.26], [2785.06, -2164.95], [2779.72, -2163.98], [2768.8, -2158.43]], "holes": []}}, {"shape": {"outer": [[-2016.72, -926.35], [-2014.26, -923.53], [-2011.49, -922.43], [-1901.13, -925.56], [-1897.4, -927.19], [-1896.15, -930.31], [-1897.23, -986.03], [-1898.95, -989.75], [-1902.45, -991.35], [-2009.6, -988.92], [-2013.2, -987.14], [-2015.05, -983.94], [-2016.72, -926.35]], "holes": []}}, {"shape": {"outer": [[-605.26, -2923.18], [-579.72, -2910.65], [-555.99, -2894.65], [-538.95, -2879.76], [-494.01, -2844.88], [-453.72, -2813.62], [-353.58, -2734.02], [-305.25, -2692.84], [-288.02, -2681.5], [-272.92, -2671.89], [-236.75, -2641.0], [-176.6, -2593.3], [-157.57, -2582.89], [-118.63, -2555.42], [-129.68, -2539.7], [-164.92, -2526.23], [-171.66, -2523.05], [-178.66, -2520.27], [-254.99, -2489.89], [-296.27, -2473.94], [-306.87, -2469.85], [-353.03, -2455.53], [-378.04, -2448.33], [-403.06, -2441.7], [-409.62, -2439.93], [-418.95, -2437.4], [-427.9, -2435.74], [-435.77, -2434.27], [-461.49, -2431.45], [-496.97, -2427.5], [-543.05, -2424.82], [-585.24, -2425.33], [-589.3, -2526.33], [-594.75, -2661.6], [-604.61, -2906.5], [-605.26, -2923.18]], "holes": []}}, {"shape": {"outer": [[1825.87, 1664.12], [1736.03, 1577.8], [1732.52, 1574.58], [1729.26, 1571.41], [1726.49, 1574.41], [1720.79, 1579.89], [1713.18, 1588.84], [1659.63, 1642.27], [1651.89, 1646.84], [1630.11, 1656.1], [1622.72, 1664.93], [1619.19, 1667.39], [1615.13, 1668.39], [1619.83, 1712.98], [1638.9, 1895.31], [1660.21, 1913.03], [1661.82, 1903.88], [1671.94, 1864.56], [1680.73, 1842.54], [1691.73, 1820.83], [1701.04, 1804.78], [1711.29, 1789.01], [1721.92, 1773.26], [1734.26, 1758.16], [1744.15, 1747.8], [1754.44, 1737.73], [1765.31, 1728.03], [1776.35, 1718.8], [1787.33, 1711.11], [1798.63, 1703.87], [1809.97, 1696.82], [1821.39, 1690.0], [1832.01, 1684.89], [1842.72, 1680.23], [1825.87, 1664.12]], "holes": []}}, {"shape": {"outer": [[2813.94, 1396.45], [2791.85, 1392.84], [2734.32, 1376.43], [2728.37, 1374.73], [2720.23, 1371.88], [2661.16, 1351.16], [2644.22, 1330.82], [2592.15, 1269.29], [2497.98, 1156.12], [2490.81, 1149.4], [2486.35, 1145.22], [2481.38, 1140.74], [2406.62, 1073.33], [2375.91, 1044.93], [2372.24, 1041.51], [2330.45, 1085.48], [2328.55, 1087.48], [2322.87, 1093.46], [2316.37, 1087.01], [2306.9, 1078.46], [2332.58, 1055.66], [2352.81, 1025.26], [2370.79, 1008.31], [2380.52, 1003.68], [2380.84, 1003.52], [2390.1, 1003.38], [2405.83, 1012.22], [2446.58, 1047.22], [2463.49, 1058.07], [2469.84, 1062.01], [2470.54, 1067.63], [2480.75, 1075.29], [2489.15, 1080.84], [2510.17, 1101.24], [2511.22, 1102.27], [2517.78, 1109.52], [2522.94, 1118.5], [2529.74, 1127.3], [2542.7, 1131.88], [2600.5, 1206.19], [2644.93, 1263.73], [2663.43, 1284.54], [2676.93, 1298.53], [2688.15, 1308.67], [2703.31, 1320.0], [2726.85, 1333.28], [2752.16, 1347.81], [2810.9, 1369.67], [2829.43, 1376.12], [2830.89, 1396.98], [2827.15, 1397.49], [2823.79, 1397.94], [2813.94, 1396.45]], "holes": []}}, {"shape": {"outer": [[-1435.18, -1339.77], [-1430.11, -1346.73], [-1428.63, -1348.98], [-1426.92, -1352.73], [-1425.79, -1356.91], [-1425.71, -1360.61], [-1425.89, -1365.6], [-1424.03, -1366.03], [-1422.26, -1367.05], [-1420.47, -1368.28], [-1418.84, -1369.76], [-1417.71, -1371.77], [-1416.57, -1373.79], [-1415.18, -1378.06], [-1415.82, -1420.22], [-1417.42, -1491.14], [-1421.04, -1647.94], [-1413.81, -1647.78], [-1410.5, -1582.16], [-1410.75, -1543.25], [-1406.94, -1491.83], [-1406.98, -1480.56], [-1403.74, -1448.66], [-1399.5, -1439.58], [-1394.12, -1430.8], [-1390.23, -1426.53], [-1384.07, -1415.97], [-1380.25, -1414.2], [-1376.19, -1410.0], [-1363.27, -1393.17], [-1350.56, -1385.01], [-1344.21, -1384.12], [-1339.28, -1384.42], [-1335.58, -1383.34], [-1330.95, -1382.97], [-1326.78, -1382.44], [-1321.15, -1382.57], [-1315.58, -1382.16], [-1310.84, -1382.43], [-1297.89, -1382.68], [-1292.86, -1384.89], [-1284.02, -1384.92], [-1269.69, -1386.42], [-1264.54, -1388.5], [-1260.6, -1388.56], [-1257.42, -1388.87], [-1253.0, -1388.23], [-1248.5, -1386.19], [-1244.05, -1383.11], [-1235.79, -1361.67], [-1236.71, -1359.3], [-1234.35, -1353.2], [-1230.6, -1346.68], [-1227.54, -1340.23], [-1217.1, -1321.5], [-1213.8, -1317.25], [-1210.61, -1310.91], [-1204.18, -1305.39], [-1197.09, -1298.61], [-1191.29, -1294.73], [-1179.12, -1285.86], [-1174.47, -1283.36], [-1169.36, -1281.01], [-1163.87, -1277.28], [-1156.52, -1273.59], [-1145.29, -1269.38], [-1139.31, -1268.79], [-1133.38, -1265.99], [-1130.1, -1265.84], [-1127.03, -1264.51], [-1121.76, -1262.58], [-1115.98, -1261.5], [-1104.72, -1259.0], [-1101.83, -1258.36], [-1098.61, -1258.03], [-1096.3, -1258.33], [-1094.4, -1258.75], [-1082.72, -1257.9], [-1061.05, -1258.67], [-1059.86, -1259.55], [-1058.31, -1258.66], [-1056.57, -1258.6], [-1055.18, -1257.55], [-1053.62, -1258.58], [-1052.13, -1258.3], [-1049.16, -1258.98], [-1044.46, -1258.86], [-1035.36, -1259.11], [-1034.28, -1259.75], [-1033.0, -1259.65], [-1030.6, -1259.86], [-1028.22, -1260.37], [-1025.86, -1261.33], [-1020.33, -1261.18], [-1014.82, -1262.29], [-1002.37, -1265.34], [-996.15, -1267.28], [-992.92, -1268.2], [-990.28, -1269.63], [-978.05, -1272.1], [-966.24, -1277.82], [-953.49, -1282.96], [-940.75, -1289.12], [-925.64, -1299.32], [-909.25, -1310.36], [-856.43, -1347.03], [-845.65, -1353.88], [-835.67, -1360.71], [-824.78, -1369.04], [-819.27, -1371.5], [-813.67, -1373.95], [-808.11, -1376.13], [-802.63, -1378.31], [-795.33, -1381.45], [-790.02, -1381.71], [-784.62, -1383.03], [-765.36, -1382.22], [-749.74, -1381.06], [-731.13, -1379.65], [-714.26, -1376.64], [-694.31, -1363.97], [-653.66, -1336.55], [-625.18, -1319.23], [-607.54, -1313.47], [-590.04, -1309.0], [-587.03, -1310.16], [-584.5, -1310.78], [-580.58, -1310.64], [-608.66, -1263.59], [-614.56, -1267.04], [-623.88, -1271.79], [-633.05, -1275.45], [-641.42, -1277.71], [-651.52, -1279.76], [-662.38, -1280.65], [-671.02, -1280.91], [-679.2, -1280.02], [-692.75, -1278.2], [-720.46, -1268.64], [-733.22, -1259.1], [-745.08, -1271.71], [-758.51, -1283.74], [-770.39, -1294.52], [-781.31, -1303.58], [-817.38, -1342.46], [-820.43, -1344.64], [-823.0, -1345.24], [-825.55, -1344.62], [-828.01, -1343.98], [-829.98, -1342.49], [-992.98, -1213.59], [-1043.35, -1173.26], [-1053.2, -1166.21], [-1055.72, -1166.56], [-1058.81, -1169.22], [-1062.09, -1171.19], [-1066.12, -1172.48], [-1070.04, -1172.35], [-1074.5, -1170.79], [-1077.13, -1168.43], [-1080.41, -1164.76], [-1094.58, -1165.43], [-1158.46, -1162.75], [-1173.12, -1164.33], [-1200.42, -1170.87], [-1221.99, -1147.27], [-1259.06, -1180.17], [-1270.99, -1191.59], [-1333.21, -1248.09], [-1377.05, -1287.76], [-1402.18, -1310.36], [-1435.18, -1339.77]], "holes": []}}, {"shape": {"outer": [[-2544.16, 182.38], [-2545.01, 158.26], [-2534.11, 157.88], [-2533.26, 182.0], [-2544.16, 182.38]], "holes": []}}, {"shape": {"outer": [[-2558.79, 182.9], [-2559.61, 158.78], [-2548.85, 158.42], [-2548.03, 182.53], [-2558.79, 182.9]], "holes": []}}, {"shape": {"outer": [[-2573.35, 183.64], [-2574.18, 159.52], [-2563.39, 159.15], [-2562.56, 183.26], [-2573.35, 183.64]], "holes": []}}, {"shape": {"outer": [[-2438.18, 146.97], [-2436.84, 175.76], [-2435.92, 201.01], [-2434.25, 230.0], [-2480.61, 231.79], [-2521.44, 231.91], [-2525.22, 228.46], [-2527.81, 222.51], [-2530.81, 149.17], [-2441.89, 145.4], [-2438.18, 146.97]], "holes": []}}, {"shape": {"outer": [[-2461.97, -331.67], [-2462.7, -349.01], [-2457.93, -349.23], [-2453.92, -354.17], [-2456.58, -431.18], [-2472.57, -430.63], [-2472.63, -432.5], [-2472.69, -434.28], [-2477.56, -434.15], [-2532.7, -432.19], [-2529.05, -327.2], [-2474.12, -329.11], [-2461.97, -331.67]], "holes": []}}, {"shape": {"outer": [[-2700.86, -1637.66], [-2692.49, -1660.03], [-2682.22, -1656.2], [-2690.59, -1633.84], [-2700.86, -1637.66]], "holes": []}}, {"shape": {"outer": [[-464.7, -2843.24], [-436.81, -2822.16], [-428.05, -2816.71], [-416.54, -2806.35], [-393.47, -2789.71], [-329.69, -2736.85], [-296.56, -2709.13], [-280.23, -2698.06], [-269.15, -2689.74], [-244.57, -2673.57], [-207.59, -2646.1], [-183.02, -2620.46], [-128.91, -2576.57], [-120.16, -2588.8], [-108.65, -2603.64], [-135.74, -2613.81], [-197.49, -2663.46], [-199.28, -2677.9], [-221.25, -2695.57], [-210.47, -2708.52], [-270.08, -2754.41], [-216.15, -2812.75], [-132.13, -2800.68], [-109.69, -2804.55], [-108.33, -2795.51], [19.53, -2847.02], [-34.27, -2959.33], [-75.35, -3008.86], [-115.24, -3029.19], [-197.4, -3054.05], [-237.19, -3071.36], [-274.61, -3100.23], [-303.19, -3139.18], [-305.86, -3148.59], [-299.38, -3152.88], [-314.93, -3183.73], [-322.83, -3226.55], [-333.43, -3330.6], [-354.07, -3340.9], [-468.98, -3333.82], [-619.25, -3333.06], [-603.31, -2936.84], [-596.83, -2936.12], [-586.34, -2934.98], [-577.08, -2931.85], [-555.48, -2913.26], [-525.73, -2893.12], [-464.7, -2843.24]], "holes": []}}, {"shape": {"outer": [[-227.76, -813.43], [-220.87, -822.09], [-216.11, -830.19], [-215.39, -835.25], [-237.05, -866.37], [-257.66, -897.92], [-266.47, -910.11], [-274.48, -923.14], [-281.9, -939.24], [-288.52, -953.07], [-344.85, -964.53], [-357.38, -967.53], [-373.62, -972.24], [-380.58, -974.57], [-389.34, -977.88], [-399.39, -982.07], [-410.1, -986.85], [-420.44, -992.38], [-429.75, -997.97], [-436.06, -1001.84], [-443.05, -1006.6], [-455.05, -1015.41], [-468.99, -1025.73], [-496.48, -996.48], [-484.27, -992.73], [-469.24, -986.54], [-455.1, -980.19], [-439.99, -973.15], [-425.76, -965.15], [-412.82, -957.69], [-399.8, -950.06], [-386.3, -941.0], [-373.41, -931.91], [-347.95, -913.17], [-322.71, -894.42], [-298.48, -874.23], [-274.42, -853.98], [-250.31, -834.01], [-227.76, -813.43]], "holes": []}}, {"shape": {"outer": [[-1600.98, -3037.26], [-1758.81, -3302.42], [-1756.17, -3302.73], [-1751.48, -3299.38], [-1536.88, -3304.95], [-1537.11, -3312.25], [-1418.79, -3310.43], [-1406.98, -3111.64], [-1407.72, -3083.73], [-1467.57, -3081.8], [-1475.66, -3081.57], [-1489.4, -3073.12], [-1503.2, -3096.68], [-1600.98, -3037.26]], "holes": []}}, {"shape": {"outer": [[-2268.49, -652.84], [-2266.0, -650.99], [-2263.67, -649.27], [-2246.0, -635.55], [-2243.34, -633.46], [-2177.37, -581.64], [-2171.42, -575.65], [-2166.96, -569.4], [-2164.67, -564.35], [-2162.81, -559.29], [-2162.05, -555.02], [-2161.71, -550.53], [-2160.97, -521.13], [-2161.67, -513.0], [-2162.17, -507.23], [-2162.92, -498.63], [-2162.78, -479.88], [-2162.54, -467.38], [-2162.3, -455.03], [-2161.65, -437.81], [-2163.86, -437.88], [-2166.37, -437.9], [-2175.67, -438.04], [-2216.26, -435.84], [-2218.59, -435.78], [-2232.43, -435.47], [-2240.38, -435.29], [-2248.28, -434.91], [-2270.07, -433.87], [-2270.67, -448.54], [-2270.84, -457.14], [-2272.57, -457.09], [-2274.14, -512.43], [-2272.26, -512.54], [-2272.46, -520.63], [-2269.18, -520.61], [-2271.27, -620.81], [-2271.41, -627.36], [-2271.79, -644.01], [-2266.53, -645.86], [-2268.49, -652.84]], "holes": []}}, {"shape": {"outer": [[1280.99, 1859.71], [1265.73, 1841.31], [1257.25, 1848.31], [1272.51, 1866.7], [1280.99, 1859.71]], "holes": []}}, {"shape": {"outer": [[-2378.97, -1348.65], [-2377.25, -1357.94], [-2374.8, -1362.67], [-2371.89, -1368.25], [-2363.06, -1376.7], [-2354.2, -1381.97], [-2341.26, -1385.85], [-2329.41, -1387.77], [-2316.87, -1388.11], [-2314.54, -1387.66], [-2307.95, -1386.4], [-2303.54, -1385.49], [-2300.68, -1384.89], [-2293.76, -1381.97], [-2285.9, -1378.05], [-2280.57, -1372.53], [-2275.51, -1365.49], [-2272.23, -1357.44], [-2271.35, -1351.76], [-2271.45, -1345.43], [-2272.38, -1339.3], [-2274.67, -1333.17], [-2278.25, -1327.08], [-2282.59, -1322.32], [-2287.04, -1318.86], [-2291.77, -1316.75], [-2299.0, -1313.46], [-2308.33, -1310.86], [-2316.34, -1309.23], [-2324.31, -1308.52], [-2332.91, -1309.08], [-2338.94, -1310.2], [-2343.88, -1311.12], [-2351.73, -1313.37], [-2359.37, -1316.92], [-2365.17, -1320.74], [-2370.15, -1325.82], [-2374.62, -1331.74], [-2376.81, -1337.42], [-2378.01, -1340.52], [-2378.97, -1348.65]], "holes": []}}, {"shape": {"outer": [[-1300.36, -1023.48], [-1300.19, -1010.03], [-1369.12, -1009.77], [-1378.85, -1009.91], [-1394.66, -1011.01], [-1420.64, -1015.67], [-1420.74, -1017.27], [-1393.67, -1021.85], [-1380.48, -1022.72], [-1370.72, -1023.15], [-1300.36, -1023.48]], "holes": []}}, {"shape": {"outer": [[-573.67, -1305.73], [-602.07, -1262.93], [-596.13, -1259.05], [-589.13, -1252.89], [-583.24, -1246.25], [-576.88, -1238.12], [-572.03, -1230.81], [-565.02, -1218.11], [-558.55, -1206.17], [-549.53, -1189.72], [-530.48, -1154.8], [-516.84, -1129.53], [-503.23, -1104.26], [-498.71, -1097.1], [-495.35, -1091.91], [-491.83, -1087.17], [-486.86, -1080.12], [-480.91, -1073.0], [-477.87, -1069.7], [-465.08, -1055.86], [-459.56, -1050.52], [-453.89, -1045.36], [-448.03, -1040.36], [-442.11, -1035.71], [-436.85, -1031.78], [-429.93, -1027.06], [-423.27, -1022.66], [-416.32, -1018.52], [-402.21, -1010.93], [-392.91, -1006.59], [-385.17, -1003.24], [-377.26, -1000.22], [-368.7, -997.17], [-360.14, -994.55], [-351.65, -992.55], [-343.21, -990.81], [-335.55, -989.47], [-327.88, -988.58], [-323.2, -988.13], [-318.58, -988.15], [-313.6, -988.3], [-309.22, -989.01], [-306.73, -989.85], [-304.44, -990.95], [-302.25, -992.17], [-300.14, -993.69], [-298.34, -995.74], [-296.93, -997.91], [-295.88, -1000.31], [-295.39, -1002.0], [-295.09, -1004.15], [-295.03, -1006.32], [-295.29, -1008.83], [-296.02, -1011.66], [-296.96, -1013.99], [-298.57, -1017.19], [-302.01, -1025.06], [-323.25, -1012.23], [-342.84, -1011.32], [-345.05, -1010.28], [-353.84, -1010.32], [-359.68, -1012.25], [-373.61, -1014.78], [-389.89, -1022.53], [-396.35, -1025.66], [-399.77, -1028.28], [-403.62, -1029.33], [-412.03, -1037.25], [-415.89, -1039.12], [-418.03, -1041.03], [-422.56, -1043.65], [-423.95, -1045.51], [-430.09, -1050.97], [-434.72, -1056.86], [-436.0, -1058.38], [-441.61, -1066.66], [-446.22, -1071.78], [-449.99, -1077.15], [-461.04, -1093.29], [-468.14, -1106.23], [-473.61, -1117.22], [-474.75, -1119.23], [-476.5, -1122.87], [-482.63, -1128.5], [-485.25, -1133.34], [-487.69, -1137.45], [-497.57, -1156.6], [-506.19, -1172.77], [-512.84, -1187.11], [-514.44, -1190.39], [-517.43, -1200.79], [-518.96, -1209.53], [-521.69, -1214.82], [-521.98, -1218.45], [-524.06, -1224.02], [-526.77, -1228.53], [-528.5, -1232.18], [-527.72, -1234.22], [-530.08, -1239.32], [-531.77, -1243.44], [-532.7, -1243.81], [-534.84, -1247.92], [-536.13, -1251.85], [-539.2, -1257.88], [-546.32, -1267.7], [-553.82, -1279.77], [-561.27, -1292.81], [-562.26, -1293.31], [-563.21, -1292.65], [-565.1, -1293.67], [-568.22, -1299.0], [-570.92, -1302.43], [-573.67, -1305.73]], "holes": []}}, {"shape": {"outer": [[2110.96, 1423.33], [2106.49, 1417.27], [2102.48, 1410.94], [2098.81, 1405.05], [2100.15, 1404.19], [2103.16, 1405.42], [2121.64, 1424.55], [2139.71, 1439.67], [2152.52, 1449.67], [2179.31, 1468.98], [2204.91, 1485.81], [2209.04, 1488.89], [2210.28, 1490.49], [2210.56, 1492.97], [2209.67, 1495.83], [2205.46, 1500.43], [2188.23, 1521.47], [2185.45, 1523.3], [2183.31, 1523.21], [2179.6, 1522.84], [2177.7, 1521.38], [2175.99, 1519.73], [2172.43, 1514.59], [2132.34, 1448.71], [2128.34, 1441.59], [2125.69, 1437.83], [2123.3, 1434.86], [2117.65, 1430.0], [2110.96, 1423.33]], "holes": []}}, {"shape": {"outer": [[2617.41, 1812.14], [2638.16, 1784.67], [2694.71, 1822.17], [2720.52, 1834.94], [2732.26, 1840.38], [2728.87, 1840.36], [2701.04, 1833.53], [2640.85, 1818.12], [2617.41, 1812.14]], "holes": []}}, {"shape": {"outer": [[-395.16, -2725.92], [-394.21, -2719.31], [-393.6, -2713.22], [-393.38, -2705.72], [-393.85, -2698.94], [-395.03, -2690.74], [-397.61, -2681.19], [-401.27, -2671.82], [-405.41, -2663.65], [-409.81, -2656.99], [-416.91, -2648.73], [-424.26, -2642.09], [-431.75, -2636.55], [-443.9, -2629.44], [-453.97, -2626.0], [-464.5, -2623.63], [-474.96, -2622.13], [-486.74, -2709.48], [-483.8, -2714.03], [-395.16, -2725.92]], "holes": []}}, {"shape": {"outer": [[-344.65, -2687.05], [-333.63, -2599.58], [-337.43, -2594.57], [-424.54, -2582.95], [-425.22, -2587.38], [-426.04, -2593.25], [-426.69, -2600.52], [-426.14, -2608.16], [-425.56, -2614.83], [-423.02, -2625.68], [-420.0, -2634.48], [-416.2, -2643.08], [-410.21, -2651.86], [-404.19, -2659.0], [-396.97, -2666.4], [-390.56, -2671.7], [-381.97, -2677.28], [-373.99, -2680.99], [-362.07, -2684.71], [-353.26, -2686.59], [-344.65, -2687.05]], "holes": []}}, {"shape": {"outer": [[-321.75, 311.54], [-308.57, 297.4], [-278.85, 324.18], [-296.33, 342.82], [-304.21, 335.75], [-300.0, 331.1], [-321.75, 311.54]], "holes": []}}, {"shape": {"outer": [[1049.99, 165.44], [1057.28, 134.31], [1069.52, 139.17], [1090.95, 140.93], [1110.08, 145.6], [1126.55, 148.45], [1136.52, 148.4], [1141.1, 150.87], [1142.23, 152.27], [1148.58, 155.79], [1156.16, 157.06], [1163.95, 156.58], [1165.0, 152.16], [1168.76, 150.32], [1169.37, 147.78], [1170.71, 146.85], [1180.55, 150.49], [1187.07, 155.25], [1197.82, 157.8], [1203.36, 159.45], [1208.87, 162.21], [1211.77, 163.53], [1215.57, 163.92], [1220.85, 165.25], [1228.99, 168.03], [1236.47, 172.55], [1245.84, 176.31], [1255.2, 179.59], [1224.05, 219.45], [1212.91, 208.6], [1200.07, 198.93], [1157.76, 188.81], [1049.99, 165.44]], "holes": []}}, {"shape": {"outer": [[-2478.25, -641.47], [-2428.89, -642.78], [-2425.7, -532.53], [-2475.21, -531.21], [-2478.25, -641.47]], "holes": []}}, {"shape": {"outer": [[-573.24, -2505.9], [-539.23, -2508.66], [-536.94, -2480.62], [-570.95, -2477.86], [-573.24, -2505.9]], "holes": []}}, {"shape": {"outer": [[-569.6, -2470.02], [-556.96, -2471.25], [-555.08, -2451.27], [-567.73, -2450.46], [-569.6, -2470.02]], "holes": []}}, {"shape": {"outer": [[-298.9, -886.52], [-283.54, -906.81], [-271.58, -897.8], [-286.94, -877.52], [-298.9, -886.52]], "holes": []}}, {"shape": {"outer": [[-2665.66, 211.37], [-2666.57, 187.65], [-2655.54, 187.22], [-2654.63, 210.95], [-2665.66, 211.37]], "holes": []}}, {"shape": {"outer": [[-2623.54, 209.85], [-2624.46, 186.06], [-2613.54, 185.64], [-2612.63, 209.42], [-2623.54, 209.85]], "holes": []}}, {"shape": {"outer": [[-2609.85, 209.17], [-2610.78, 185.42], [-2599.95, 185.0], [-2599.02, 208.74], [-2609.85, 209.17]], "holes": []}}, {"shape": {"outer": [[-2596.32, 208.54], [-2596.99, 185.04], [-2585.9, 184.72], [-2585.22, 208.22], [-2596.32, 208.54]], "holes": []}}, {"shape": {"outer": [[-2638.35, 210.39], [-2639.26, 186.65], [-2628.27, 186.23], [-2627.37, 209.97], [-2638.35, 210.39]], "holes": []}}, {"shape": {"outer": [[-2651.88, 210.88], [-2652.69, 187.23], [-2641.88, 186.86], [-2641.08, 210.51], [-2651.88, 210.88]], "holes": []}}, {"shape": {"outer": [[2195.52, 2417.22], [2212.65, 2433.89], [2204.92, 2441.79], [2187.78, 2425.12], [2195.52, 2417.22]], "holes": []}}, {"shape": {"outer": [[2950.81, 1975.97], [2951.59, 1995.75], [3153.39, 2134.0], [3163.09, 2121.54], [2950.81, 1975.97]], "holes": []}}, {"shape": {"outer": [[2855.69, 1910.5], [2934.8, 1964.53], [2930.38, 1980.78], [2873.61, 1941.78], [2856.08, 1924.42], [2855.69, 1910.5]], "holes": []}}, {"shape": {"outer": [[-613.13, -2097.21], [-611.45, -2100.16], [-610.68, -2103.64], [-611.52, -2133.14], [-600.83, -2133.35], [-552.61, -2134.35], [-530.26, -2014.07], [-571.04, -2053.69], [-574.59, -2056.01], [-608.02, -2077.89], [-612.68, -2077.69], [-613.13, -2097.21]], "holes": []}}, {"shape": {"outer": [[-2346.1, -1782.12], [-2352.21, -1783.92], [-2353.84, -1786.51], [-2354.4, -1789.34], [-2365.34, -1789.24], [-2365.23, -1793.44], [-2354.94, -1793.54], [-2357.62, -1801.16], [-2340.28, -1814.65], [-2329.12, -1797.97], [-2328.99, -1793.42], [-2330.96, -1790.51], [-2337.43, -1790.21], [-2339.9, -1785.95], [-2346.1, -1782.12]], "holes": []}}, {"shape": {"outer": [[2102.12, 2741.59], [2101.21, 2746.07], [2097.37, 2747.54], [2093.81, 2745.14], [2078.39, 2734.69], [2081.53, 2729.92], [2086.15, 2725.38], [2091.98, 2722.55], [2098.67, 2721.72], [2105.16, 2722.26], [2102.12, 2741.59]], "holes": []}}, {"shape": {"outer": [[2042.44, 2776.84], [2041.43, 2779.64], [2038.87, 2781.89], [2035.89, 2780.83], [2035.09, 2777.7], [2036.2, 2774.46], [2042.44, 2776.84]], "holes": []}}, {"shape": {"outer": [[2139.17, 2656.8], [2174.56, 2622.06], [2174.85, 2612.91], [2138.03, 2573.46], [2101.97, 2538.01], [2062.25, 2578.31], [2045.33, 2613.4], [2053.45, 2653.66], [2102.02, 2695.17], [2139.17, 2656.8]], "holes": []}}, {"shape": {"outer": [[2013.93, 2534.22], [2083.83, 2461.8], [2047.62, 2427.09], [1977.7, 2499.5], [2013.93, 2534.22]], "holes": []}}, {"shape": {"outer": [[2126.7, 2503.15], [2090.16, 2468.03], [2020.07, 2540.43], [2056.6, 2575.54], [2126.7, 2503.15]], "holes": []}}, {"shape": {"outer": [[-2892.49, 161.27], [-2890.05, 244.93], [-2703.53, 238.0], [-2706.17, 157.32], [-2707.82, 154.38], [-2714.6, 154.8], [-2723.69, 156.45], [-2743.44, 156.91], [-2753.34, 156.13], [-2892.49, 161.27]], "holes": []}}, {"shape": {"outer": [[-2005.17, -944.77], [-1977.42, -945.09], [-1977.24, -929.29], [-2004.99, -928.97], [-2005.17, -944.77]], "holes": []}}, {"shape": {"outer": [[-1972.08, -961.9], [-1973.96, -982.75], [-1960.61, -983.34], [-1958.4, -971.13], [-1956.43, -971.09], [-1953.93, -968.27], [-1949.48, -963.25], [-1946.18, -963.75], [-1941.58, -960.53], [-1950.41, -949.64], [-1960.76, -950.17], [-1960.76, -959.72], [-1964.15, -962.42], [-1972.08, -961.9]], "holes": []}}, {"shape": {"outer": [[-2655.43, -1616.66], [-2642.38, -1608.98], [-2628.6, -1632.17], [-2641.65, -1639.86], [-2655.43, -1616.66]], "holes": []}}, {"shape": {"outer": [[-2923.35, -778.18], [-2927.95, -777.71], [-2930.54, -776.27], [-2932.0, -774.54], [-2932.79, -771.47], [-2939.99, -770.83], [-2939.55, -751.41], [-2941.74, -749.25], [-2941.15, -732.94], [-2932.09, -733.4], [-2932.81, -740.82], [-2932.88, -752.35], [-2928.49, -752.1], [-2924.66, -750.88], [-2922.44, -749.97], [-2923.35, -778.18]], "holes": []}}, {"shape": {"outer": [[-793.08, -26.24], [-763.3, -58.25], [-770.12, -62.1], [-776.8, -62.01], [-780.75, -63.9], [-781.47, -64.92], [-785.65, -64.96], [-792.71, -65.98], [-793.18, -66.51], [-797.64, -67.04], [-798.29, -68.31], [-798.86, -81.1], [-799.84, -81.09], [-805.03, -80.81], [-810.99, -80.5], [-810.79, -74.65], [-812.35, -72.92], [-817.42, -67.31], [-818.21, -66.43], [-818.63, -65.96], [-824.04, -60.34], [-826.18, -57.65], [-793.08, -26.24]], "holes": []}}, {"shape": {"outer": [[-326.92, -342.73], [-341.73, -355.98], [-271.82, -431.88], [-212.89, -378.17], [-247.73, -340.45], [-249.05, -341.69], [-270.71, -362.07], [-291.27, -381.42], [-326.92, -342.73]], "holes": []}}, {"shape": {"outer": [[-1375.86, -1349.43], [-1373.26, -1369.69], [-1361.66, -1368.21], [-1364.27, -1347.95], [-1375.86, -1349.43]], "holes": []}}, {"shape": {"outer": [[-1413.81, -1647.78], [-1416.18, -1724.29], [-1399.62, -1789.5], [-1370.76, -1841.9], [-1281.22, -2004.46], [-1251.33, -2037.72], [-1234.12, -2049.04], [-1219.28, -2055.48], [-1198.65, -2056.9], [-1182.78, -2056.51], [-1127.38, -2048.02], [-1057.3, -2037.73], [-1010.04, -2041.72], [-965.14, -2055.83], [-889.4, -2062.57], [-819.38, -2072.9], [-768.87, -2065.12], [-720.43, -2066.31], [-699.81, -2073.94], [-612.68, -2077.69], [-613.13, -2097.21], [-617.03, -2094.85], [-621.48, -2093.47], [-624.75, -2092.93], [-630.92, -2092.42], [-662.66, -2091.07], [-777.95, -2084.25], [-787.2, -2084.85], [-838.48, -2085.19], [-854.08, -2083.0], [-869.51, -2081.05], [-882.64, -2079.35], [-956.78, -2072.34], [-980.76, -2067.43], [-1000.56, -2061.31], [-1027.59, -2054.65], [-1046.46, -2053.44], [-1065.98, -2054.78], [-1096.21, -2057.25], [-1159.89, -2066.77], [-1199.51, -2069.97], [-1207.17, -2069.97], [-1224.84, -2066.58], [-1239.94, -2061.59], [-1248.84, -2056.55], [-1258.35, -2049.72], [-1267.91, -2042.0], [-1280.24, -2028.2], [-1297.1, -2008.27], [-1317.02, -1977.91], [-1342.43, -1923.39], [-1378.44, -1857.12], [-1383.2, -1848.31], [-1416.21, -1787.92], [-1419.24, -1781.85], [-1424.54, -1767.88], [-1426.69, -1757.48], [-1427.31, -1748.02], [-1422.89, -1735.65], [-1421.04, -1647.94], [-1413.81, -1647.78]], "holes": []}}, {"shape": {"outer": [[-271.11, -1953.53], [-275.24, -1956.25], [-275.01, -1938.77], [-268.34, -1939.46], [-257.56, -1939.13], [-250.14, -1938.28], [-244.6, -1937.68], [-238.24, -1934.01], [-231.99, -1927.94], [-222.36, -1912.01], [-220.2, -1902.21], [-169.39, -1979.95], [-189.84, -1981.15], [-195.75, -1972.62], [-201.47, -1966.13], [-205.72, -1962.1], [-208.94, -1959.6], [-214.64, -1956.43], [-219.37, -1954.71], [-224.25, -1953.64], [-232.35, -1952.84], [-238.75, -1952.87], [-262.15, -1952.98], [-271.11, -1953.53]], "holes": []}}, {"shape": {"outer": [[-378.91, -1940.64], [-379.71, -1956.42], [-372.67, -1955.72], [-366.74, -1955.89], [-366.34, -1939.12], [-376.4, -1940.65], [-378.91, -1940.64]], "holes": []}}, {"shape": {"outer": [[-450.16, -1945.27], [-445.48, -1945.76], [-441.0, -1946.24], [-440.13, -1936.58], [-449.06, -1935.46], [-450.16, -1945.27]], "holes": []}}, {"shape": {"outer": [[-1558.57, -2420.94], [-1512.6, -2415.11], [-1500.75, -2413.27], [-1463.97, -2411.71], [-1447.34, -2411.32], [-1445.1, -2364.96], [-1442.69, -2365.12], [-1447.09, -2483.96], [-1449.17, -2483.79], [-1447.2, -2436.81], [-1505.72, -2434.48], [-1510.75, -2419.08], [-1557.75, -2424.4], [-1558.57, -2420.94]], "holes": []}}, {"shape": {"outer": [[-1539.1, -3404.19], [-1534.48, -3317.03], [-1528.41, -3308.73], [-1479.93, -3303.24], [-1461.8, -3300.59], [-1435.32, -3302.92], [-1425.29, -3304.8], [-1415.1, -3301.39], [-1407.72, -3284.67], [-1396.54, -3264.89], [-1407.31, -3251.89], [-1410.87, -3246.49], [-1406.64, -3228.62], [-1410.4, -3211.05], [-1414.23, -3178.14], [-1417.08, -3147.91], [-1416.95, -3087.6], [-1419.11, -3051.56], [-1423.15, -3026.05], [-1445.91, -2967.74], [-1452.32, -2950.63], [-1454.8, -2944.21], [-1450.48, -2944.05], [-1446.29, -2943.92], [-1420.48, -2951.0], [-1418.24, -2947.37], [-1416.16, -2929.96], [-1417.03, -2923.59], [-1412.67, -2919.48], [-1393.13, -2922.71], [-1395.21, -2940.09], [-1398.95, -2959.55], [-1401.54, -3012.92], [-1388.3, -3032.87], [-1380.91, -3071.17], [-1379.86, -3090.24], [-1365.59, -3092.77], [-1369.49, -3117.52], [-1359.12, -3126.29], [-1347.52, -3129.27], [-1351.28, -3149.26], [-1334.56, -3177.25], [-1302.98, -3205.66], [-1319.39, -3222.66], [-1346.36, -3237.22], [-1343.89, -3243.64], [-1342.86, -3263.24], [-1342.15, -3293.95], [-1330.01, -3296.42], [-1308.88, -3300.73], [-1291.92, -3301.73], [-1300.14, -3310.5], [-1405.3, -3385.8], [-1436.69, -3388.07], [-1448.8, -3384.55], [-1501.33, -3383.05], [-1508.04, -3395.02], [-1521.14, -3407.35], [-1533.88, -3407.51], [-1539.1, -3404.19]], "holes": []}}, {"shape": {"outer": [[-1247.84, -2807.75], [-1237.78, -2808.57], [-1190.58, -2810.44], [-1190.57, -2772.88], [-1191.46, -2767.03], [-1184.83, -2765.25], [-1157.33, -2761.55], [-1136.77, -2752.5], [-1133.57, -2741.99], [-1133.71, -2709.97], [-1140.38, -2709.68], [-1244.0, -2706.01], [-1244.87, -2723.07], [-1246.88, -2793.36], [-1247.84, -2807.75]], "holes": []}}, {"shape": {"outer": [[-21.58, 596.26], [-28.37, 599.09], [-29.69, 602.06], [-28.52, 604.74], [-26.2, 606.93], [-27.2, 609.29], [-26.9, 611.44], [-24.87, 612.87], [-10.06, 611.96], [-10.7, 601.63], [-16.3, 601.89], [-19.06, 597.6], [-21.58, 596.26]], "holes": []}}, {"shape": {"outer": [[12.0, 633.21], [20.99, 623.2], [39.82, 639.97], [30.84, 649.98], [12.0, 633.21]], "holes": []}}, {"shape": {"outer": [[867.61, 168.13], [885.01, 149.91], [870.06, 146.5], [845.31, 140.44], [841.72, 139.88], [840.42, 140.01], [839.32, 140.36], [838.59, 140.99], [838.37, 141.73], [838.82, 142.47], [856.11, 158.07], [867.61, 168.13]], "holes": []}}, {"shape": {"outer": [[1015.13, 138.02], [1007.08, 136.48], [1009.87, 123.48], [1013.07, 124.13], [1026.42, 126.43], [1020.5, 139.34], [1015.13, 138.02]], "holes": []}}, {"shape": {"outer": [[829.29, 49.19], [839.97, 45.49], [844.72, 45.94], [847.12, 46.88], [854.28, 37.99], [860.34, 33.57], [851.69, 33.54], [846.26, 32.07], [842.44, 18.63], [838.79, 18.54], [824.05, 45.11], [829.29, 49.19]], "holes": []}}, {"shape": {"outer": [[-2252.42, -194.03], [-2254.46, -192.6], [-2256.37, -191.25], [-2252.8, -118.63], [-2252.2, -103.05], [-2249.25, -26.59], [-2231.0, -27.27], [-2234.6, -103.57], [-2235.2, -119.32], [-2238.02, -187.41], [-2238.15, -190.66], [-2240.42, -192.48], [-2242.61, -194.24], [-2244.64, -194.22], [-2249.88, -194.06], [-2252.42, -194.03]], "holes": []}}, {"shape": {"outer": [[1145.92, 613.47], [1177.52, 640.68], [1193.04, 654.73], [1205.4, 666.01], [1219.06, 678.15], [1233.25, 691.35], [1254.82, 710.72], [1265.92, 720.43], [1281.51, 734.67], [1288.75, 741.25], [1296.23, 748.44], [1300.76, 743.52], [1312.72, 754.23], [1330.55, 772.32], [1352.1, 795.89], [1372.36, 818.85], [1385.34, 834.95], [1397.97, 851.35], [1410.63, 868.95], [1423.34, 886.61], [1425.11, 889.44], [1427.42, 892.64], [1434.02, 902.96], [1455.7, 937.78], [1451.75, 940.71], [1468.43, 968.25], [1468.91, 969.92], [1468.84, 971.87], [1468.13, 973.54], [1466.97, 975.05], [1465.1, 976.13], [1463.04, 976.5], [1461.36, 976.05], [1459.79, 975.24], [1458.53, 973.99], [1456.0, 971.55], [1445.77, 961.21], [1435.89, 951.07], [1433.52, 953.08], [1396.82, 919.47], [1382.06, 905.99], [1290.92, 823.18], [1262.2, 797.19], [1256.58, 792.08], [1242.18, 779.02], [1241.62, 778.51], [1193.28, 734.64], [1162.08, 706.26], [1169.3, 698.24], [1155.14, 684.31], [1139.74, 669.85], [1115.57, 647.1], [1141.85, 617.98], [1144.24, 615.34], [1145.92, 613.47]], "holes": []}}, {"shape": {"outer": [[1255.85, 533.19], [1219.63, 572.82], [1191.9, 549.18], [1196.9, 543.72], [1219.62, 518.87], [1222.61, 515.59], [1229.07, 508.53], [1236.12, 515.0], [1255.85, 533.19]], "holes": []}}, {"shape": {"outer": [[1750.29, 1548.62], [1753.61, 1551.73], [1756.91, 1554.75], [1772.49, 1568.28], [1778.04, 1562.47], [1784.86, 1554.86], [1807.91, 1530.51], [1816.82, 1520.93], [1821.56, 1517.04], [1841.25, 1496.48], [1847.51, 1493.25], [1854.25, 1486.13], [1913.91, 1436.85], [1924.55, 1428.27], [1956.67, 1405.16], [1962.56, 1412.4], [2038.37, 1358.01], [2066.23, 1355.61], [2061.74, 1347.92], [2058.04, 1342.08], [2066.99, 1335.9], [2104.33, 1307.6], [2157.55, 1266.38], [2174.28, 1250.15], [2185.13, 1241.19], [2191.89, 1234.86], [2222.9, 1202.97], [2258.36, 1163.52], [2314.69, 1102.34], [2316.37, 1100.51], [2322.87, 1093.46], [2316.37, 1087.01], [2306.9, 1078.46], [2292.74, 1065.66], [2302.86, 1051.92], [2358.13, 997.13], [2362.01, 988.11], [2361.52, 976.12], [2348.84, 957.34], [2318.29, 985.56], [2319.06, 989.76], [2318.32, 992.34], [2317.23, 994.15], [2276.62, 1037.44], [2274.92, 1039.25], [2271.51, 1042.89], [2269.95, 1045.16], [2263.95, 1053.45], [2262.97, 1054.8], [2234.33, 1087.0], [2209.8, 1114.86], [2203.58, 1121.49], [2193.11, 1131.67], [2137.86, 1181.84], [2129.23, 1189.66], [2122.04, 1196.47], [2063.23, 1252.14], [2060.36, 1254.73], [2031.93, 1280.39], [2030.79, 1281.45], [2024.07, 1287.73], [2015.97, 1293.96], [2014.15, 1295.3], [2012.33, 1296.64], [1990.06, 1305.12], [1985.68, 1306.86], [1972.95, 1310.68], [1967.39, 1311.67], [1961.74, 1311.22], [1950.64, 1313.8], [1948.08, 1315.6], [1874.31, 1376.97], [1801.3, 1438.08], [1702.76, 1515.03], [1686.58, 1500.38], [1675.14, 1510.09], [1667.25, 1517.52], [1653.15, 1530.83], [1669.82, 1541.71], [1669.22, 1558.93], [1663.38, 1568.78], [1609.8, 1621.22], [1601.95, 1623.59], [1588.79, 1631.51], [1553.82, 1652.56], [1557.88, 1659.96], [1553.69, 1662.31], [1524.96, 1678.43], [1515.55, 1683.68], [1488.28, 1703.91], [1484.76, 1699.82], [1464.12, 1713.74], [1443.47, 1728.34], [1505.48, 1783.42], [1605.1, 1722.46], [1619.83, 1712.98], [1615.13, 1668.39], [1619.19, 1667.39], [1622.72, 1664.93], [1630.11, 1656.1], [1651.89, 1646.84], [1659.63, 1642.27], [1713.18, 1588.84], [1720.79, 1579.89], [1726.49, 1574.41], [1750.29, 1548.62]], "holes": []}}, {"shape": {"outer": [[1079.23, 2130.18], [1081.06, 2131.5], [1084.44, 2133.93], [1088.36, 2137.41], [1089.54, 2138.94], [1100.96, 2153.89], [1112.68, 2164.92], [1123.65, 2177.56], [1136.57, 2203.1], [1139.38, 2205.27], [1196.37, 2168.45], [1185.7, 2146.09], [1152.48, 2111.4], [1137.75, 2092.41], [1131.41, 2084.41], [1125.16, 2073.76], [1122.72, 2069.6], [1085.08, 2103.33], [1084.6, 2103.76], [1084.01, 2104.27], [1083.02, 2105.16], [1077.68, 2120.98], [1079.23, 2130.18]], "holes": []}}, {"shape": {"outer": [[905.95, 1900.51], [906.43, 1885.8], [898.82, 1879.44], [892.32, 1885.11], [891.71, 1897.52], [895.49, 1901.39], [905.95, 1900.51]], "holes": []}}, {"shape": {"outer": [[978.88, 1937.6], [993.37, 1951.38], [985.18, 1959.94], [970.69, 1946.15], [978.88, 1937.6]], "holes": []}}, {"shape": {"outer": [[1324.11, 419.51], [1310.99, 434.35], [1329.9, 450.96], [1335.52, 444.62], [1328.33, 438.31], [1335.85, 429.81], [1324.11, 419.51]], "holes": []}}, {"shape": {"outer": [[1328.33, 438.31], [1335.52, 444.62], [1341.78, 450.12], [1349.3, 441.63], [1335.85, 429.81], [1328.33, 438.31]], "holes": []}}, {"shape": {"outer": [[-1990.87, -951.94], [-1977.98, -952.02], [-1978.11, -973.03], [-1991.0, -972.95], [-1990.87, -951.94]], "holes": []}}, {"shape": {"outer": [[-2432.58, -806.54], [-2431.4, -806.5], [-2402.92, -798.05], [-2194.08, -734.66], [-2186.24, -732.18], [-2169.04, -726.28], [-2167.74, -721.2], [-2166.55, -721.15], [-2164.7, -669.62], [-2165.76, -669.6], [-2168.6, -711.74], [-2216.39, -725.64], [-2217.22, -724.95], [-2217.72, -724.64], [-2218.2, -724.47], [-2218.64, -724.43], [-2219.1, -724.57], [-2219.31, -724.83], [-2219.36, -725.26], [-2219.22, -725.73], [-2217.52, -727.29], [-2212.9, -730.57], [-2210.49, -731.5], [-2198.63, -731.03], [-2193.8, -731.41], [-2190.31, -732.65], [-2194.35, -733.59], [-2195.99, -733.06], [-2198.31, -732.94], [-2210.64, -733.28], [-2255.32, -747.47], [-2257.56, -744.51], [-2295.17, -760.48], [-2305.92, -759.77], [-2371.12, -779.28], [-2413.26, -791.88], [-2415.09, -791.46], [-2432.58, -806.54]], "holes": []}}, {"shape": {"outer": [[-1125.15, -576.99], [-1129.44, -591.54], [-1133.35, -590.34], [-1136.37, -589.63], [-1139.24, -589.13], [-1142.85, -588.53], [-1146.49, -588.0], [-1149.14, -587.8], [-1151.73, -587.62], [-1155.07, -587.51], [-1158.42, -587.51], [-1161.95, -587.69], [-1165.4, -587.94], [-1168.86, -588.23], [-1172.21, -588.67], [-1174.87, -589.13], [-1177.76, -574.04], [-1176.1, -573.53], [-1173.99, -573.5], [-1171.45, -575.11], [-1170.54, -577.09], [-1170.08, -579.33], [-1169.84, -580.95], [-1169.09, -581.43], [-1163.86, -581.26], [-1158.77, -581.25], [-1151.68, -581.3], [-1145.01, -581.72], [-1138.34, -582.3], [-1134.6, -582.9], [-1134.15, -582.97], [-1133.48, -582.79], [-1132.4, -579.73], [-1129.85, -577.07], [-1127.7, -576.18], [-1125.95, -576.51], [-1125.15, -576.99]], "holes": []}}, {"shape": {"outer": [[-1184.97, -537.34], [-1177.76, -574.04], [-1176.1, -573.53], [-1173.99, -573.5], [-1171.45, -575.11], [-1170.54, -577.09], [-1170.08, -579.33], [-1169.84, -580.95], [-1169.09, -581.43], [-1163.86, -581.26], [-1158.77, -581.25], [-1151.68, -581.3], [-1145.01, -581.72], [-1138.34, -582.3], [-1134.6, -582.9], [-1134.15, -582.97], [-1133.48, -582.79], [-1132.4, -579.73], [-1129.85, -577.07], [-1127.7, -576.18], [-1125.95, -576.51], [-1125.15, -576.99], [-1114.21, -540.96], [-1123.36, -538.27], [-1135.67, -536.16], [-1147.69, -534.9], [-1159.46, -534.65], [-1170.0, -535.18], [-1178.13, -536.07], [-1184.97, -537.34]], "holes": []}}, {"shape": {"outer": [[-1103.69, -603.72], [-1107.6, -600.95], [-1112.8, -598.09], [-1120.16, -594.66], [-1101.28, -547.33], [-1095.37, -547.82], [-1094.45, -547.89], [-1093.0, -549.91], [-1093.75, -564.89], [-1093.21, -564.94], [-1094.61, -590.65], [-1097.52, -594.46], [-1103.69, -603.72]], "holes": []}}, {"shape": {"outer": [[-2658.52, 178.02], [-2659.35, 155.22], [-2601.43, 153.11], [-2600.6, 175.9], [-2658.52, 178.02]], "holes": []}}, {"shape": {"outer": [[-1233.72, -622.31], [-1232.68, -623.24], [-1227.16, -617.04], [-1216.96, -608.22], [-1206.14, -600.88], [-1193.36, -594.67], [-1185.18, -591.8], [-1199.01, -541.2], [-1200.53, -534.11], [-1202.71, -531.27], [-1203.99, -529.83], [-1205.81, -528.83], [-1207.95, -529.0], [-1208.18, -536.77], [-1205.83, -542.74], [-1203.34, -551.13], [-1204.21, -567.67], [-1204.85, -581.05], [-1205.07, -584.18], [-1206.59, -589.42], [-1207.57, -592.27], [-1208.81, -594.83], [-1210.11, -596.99], [-1211.71, -598.97], [-1215.58, -601.39], [-1220.09, -603.06], [-1224.11, -603.37], [-1226.08, -602.88], [-1226.91, -603.12], [-1227.57, -603.8], [-1227.74, -608.02], [-1227.93, -611.31], [-1243.39, -610.49], [-1245.13, -612.7], [-1233.72, -622.31]], "holes": []}}, {"shape": {"outer": [[-1263.0, -647.14], [-1238.39, -658.02], [-1236.15, -652.32], [-1245.45, -642.68], [-1256.72, -634.24], [-1263.0, -647.14]], "holes": []}}, {"shape": {"outer": [[-1484.25, -28.57], [-1483.07, -29.75], [-1482.02, -31.39], [-1481.16, -33.33], [-1479.65, -36.9], [-1478.67, -40.32], [-1478.12, -43.49], [-1477.9, -47.31], [-1478.36, -51.96], [-1480.01, -57.8], [-1482.22, -63.18], [-1486.86, -70.8], [-1488.35, -72.07], [-1490.09, -73.22], [-1491.95, -74.03], [-1496.92, -73.84], [-1543.25, -65.25], [-1544.2, -63.44], [-1544.59, -62.22], [-1544.7, -60.96], [-1544.44, -57.32], [-1539.33, -20.89], [-1538.62, -19.8], [-1537.78, -18.8], [-1536.86, -18.02], [-1535.9, -17.37], [-1489.46, -26.69], [-1485.94, -27.61], [-1484.25, -28.57]], "holes": []}}, {"shape": {"outer": [[-1692.62, 0.66], [-1693.59, -5.96], [-1692.57, -8.22], [-1691.99, -10.61], [-1691.84, -12.64], [-1692.42, -14.91], [-1693.34, -16.6], [-1694.73, -18.36], [-1696.14, -19.71], [-1697.3, -25.94], [-1689.03, -37.14], [-1665.68, -41.76], [-1664.35, -40.95], [-1663.06, -40.06], [-1662.25, -39.02], [-1661.76, -37.98], [-1661.35, -36.33], [-1655.06, 0.23], [-1654.94, 1.09], [-1654.93, 1.86], [-1655.09, 2.55], [-1655.6, 3.3], [-1656.17, 3.77], [-1656.79, 4.05], [-1658.4, 4.41], [-1680.03, 8.08], [-1692.62, 0.66]], "holes": []}}, {"shape": {"outer": [[-1549.91, -63.29], [-1591.01, -56.53], [-1593.78, -55.69], [-1595.81, -54.32], [-1596.44, -52.44], [-1589.88, -12.5], [-1588.82, -10.54], [-1587.3, -8.97], [-1551.09, -15.33], [-1544.62, -15.55], [-1543.23, -17.83], [-1542.67, -18.92], [-1542.54, -19.65], [-1542.48, -21.12], [-1542.61, -22.75], [-1548.03, -60.25], [-1548.75, -61.73], [-1549.4, -62.64], [-1549.91, -63.29]], "holes": []}}, {"shape": {"outer": [[-1648.46, 2.46], [-1649.47, 2.59], [-1650.27, 2.41], [-1650.98, 1.96], [-1651.45, 1.48], [-1651.79, 0.88], [-1652.05, 0.22], [-1658.92, -39.17], [-1659.05, -40.24], [-1659.1, -41.18], [-1658.96, -41.96], [-1658.74, -42.57], [-1658.35, -43.11], [-1603.28, -54.11], [-1601.88, -53.51], [-1600.7, -52.41], [-1599.96, -51.05], [-1593.75, -14.4], [-1593.44, -12.05], [-1593.84, -9.76], [-1594.91, -8.35], [-1596.55, -7.48], [-1648.46, 2.46]], "holes": []}}, {"shape": {"outer": [[-2011.18, -684.13], [-1932.2, -660.17], [-1932.29, -659.72], [-1926.18, -658.39], [-1909.75, -653.98], [-1905.67, -651.99], [-1900.74, -649.82], [-1899.49, -649.18], [-1918.54, -648.24], [-1917.72, -649.07], [-1917.69, -649.67], [-1918.31, -651.06], [-1918.89, -652.12], [-1919.72, -652.97], [-1921.46, -653.43], [-1924.8, -653.52], [-1928.12, -653.83], [-1930.58, -654.59], [-1933.07, -654.98], [-1935.62, -654.93], [-1937.34, -654.25], [-1937.95, -654.2], [-1940.36, -654.69], [-1942.94, -655.29], [-1948.06, -656.78], [-1954.61, -659.52], [-1960.99, -662.69], [-1964.87, -663.88], [-1968.19, -664.54], [-1971.02, -664.85], [-1973.81, -665.05], [-1975.58, -665.6], [-1977.78, -666.36], [-1980.2, -667.45], [-1982.31, -668.71], [-1984.45, -670.19], [-1986.92, -672.12], [-1989.99, -673.65], [-1992.78, -675.04], [-1995.98, -676.34], [-1998.95, -676.7], [-2001.86, -676.66], [-2004.31, -676.47], [-2005.99, -675.78], [-2008.42, -674.22], [-2010.15, -672.77], [-2010.93, -671.06], [-2011.18, -684.13]], "holes": []}}, {"shape": {"outer": [[-2030.91, -690.17], [-2030.59, -678.05], [-2031.45, -677.82], [-2033.71, -678.32], [-2033.63, -679.65], [-2034.87, -682.52], [-2037.44, -686.01], [-2040.27, -689.04], [-2042.69, -690.34], [-2045.19, -690.73], [-2048.49, -689.95], [-2051.88, -688.98], [-2057.18, -690.43], [-2061.65, -692.97], [-2064.23, -695.05], [-2068.5, -697.92], [-2070.77, -698.68], [-2073.77, -698.97], [-2076.77, -698.38], [-2080.26, -698.42], [-2084.72, -700.15], [-2089.14, -702.15], [-2094.97, -704.42], [-2097.26, -704.58], [-2099.38, -704.46], [-2101.46, -704.62], [-2105.84, -705.82], [-2115.18, -709.66], [-2116.29, -710.34], [-2117.78, -711.88], [-2119.5, -713.1], [-2121.63, -713.66], [-2123.25, -713.91], [-2125.64, -713.73], [-2127.75, -713.84], [-2130.08, -714.59], [-2132.03, -715.25], [-2133.79, -716.24], [-2135.15, -717.14], [-2136.76, -718.19], [-2138.47, -719.13], [-2140.65, -719.6], [-2142.5, -718.88], [-2144.14, -717.34], [-2144.57, -715.53], [-2146.35, -716.13], [-2146.47, -724.14], [-2143.99, -723.99], [-2141.64, -723.57], [-2138.74, -722.94], [-2135.61, -722.17], [-2132.56, -721.19], [-2030.91, -690.17]], "holes": []}}, {"shape": {"outer": [[-262.23, -1024.47], [-253.27, -1020.73], [-230.06, -983.12], [-222.21, -970.39], [-188.23, -912.18], [-180.3, -900.5], [-159.85, -869.71], [-142.46, -848.6], [-90.38, -788.06], [-58.1, -756.59], [-34.27, -730.28], [-19.18, -716.41], [-2.25, -703.57], [13.75, -689.03], [25.38, -676.04], [40.03, -662.81], [53.27, -647.57], [58.11, -641.93], [71.01, -629.24], [80.23, -622.43], [80.68, -619.84], [90.17, -613.46], [99.96, -606.7], [107.58, -601.83], [114.58, -595.31], [124.63, -585.26], [136.46, -573.45], [139.64, -570.64], [143.68, -567.82], [148.26, -565.49], [152.71, -563.72], [157.73, -562.24], [165.17, -559.97], [173.37, -556.97], [176.27, -555.57], [179.78, -553.55], [186.22, -548.66], [199.96, -534.94], [219.61, -515.58], [225.32, -509.93], [232.72, -502.8], [264.9, -470.23], [271.69, -463.57], [275.21, -459.23], [281.72, -450.12], [289.53, -438.61], [301.04, -421.52], [314.3, -401.92], [321.38, -391.35], [325.43, -385.75], [331.27, -380.23], [332.87, -379.97], [340.89, -373.31], [346.19, -371.14], [356.82, -363.47], [372.04, -349.27], [374.34, -345.97], [377.48, -338.7], [382.55, -330.0], [407.84, -304.39], [416.64, -295.92], [417.32, -293.07], [416.51, -291.0], [422.22, -284.74], [425.43, -283.92], [434.59, -274.95], [436.48, -267.17], [442.86, -256.23], [444.7, -251.17], [447.19, -239.83], [453.91, -226.1], [458.79, -222.03], [463.28, -218.79], [470.02, -213.09], [472.11, -206.62], [472.07, -204.99], [478.02, -198.73], [483.14, -193.63], [487.27, -192.37], [495.24, -184.84], [502.68, -178.73], [507.05, -174.19], [507.48, -169.04], [511.09, -168.54], [516.67, -159.45], [524.7, -148.65], [529.69, -144.77], [533.74, -141.84], [534.84, -140.94], [536.07, -139.96], [541.86, -140.89], [543.6, -140.2], [563.72, -125.17], [565.64, -121.71], [569.0, -122.14], [572.43, -120.21], [581.63, -111.44], [585.45, -108.52], [591.92, -105.6], [596.92, -101.76], [600.69, -100.74], [604.75, -98.07], [612.3, -95.29], [618.37, -92.85], [619.67, -91.91], [620.78, -88.34], [624.1, -87.82], [624.73, -86.31], [626.24, -86.29], [628.55, -84.08], [629.87, -81.94], [628.98, -77.59], [630.42, -75.25], [635.18, -72.62], [622.33, -27.94], [618.02, -10.29], [617.43, -8.79], [615.46, -7.36], [613.16, -6.73], [611.66, -5.6], [610.8, -4.34], [608.7, -3.58], [605.43, -2.6], [602.76, -1.66], [601.84, -3.49], [601.29, -5.24], [600.76, -8.0], [597.37, -19.78], [596.73, -21.85], [591.2, -33.66], [585.42, -46.26], [579.07, -54.5], [572.0, -62.52], [559.21, -76.55], [535.83, -100.92], [519.12, -118.34], [512.24, -125.92], [490.59, -152.05], [483.6, -160.84], [434.04, -218.95], [407.95, -246.18], [392.09, -262.24], [380.41, -274.43], [356.92, -298.28], [323.96, -328.53], [299.96, -348.11], [290.5, -357.7], [79.72, -568.44], [56.14, -592.63], [48.13, -601.14], [33.08, -617.28], [18.04, -632.82], [-11.6, -663.82], [-19.4, -671.99], [-26.04, -678.63], [-33.39, -684.77], [-45.45, -695.21], [-55.81, -704.18], [-81.72, -732.32], [-116.87, -774.07], [-128.59, -788.62], [-145.74, -811.76], [-166.23, -840.71], [-178.21, -860.72], [-211.44, -914.92], [-241.39, -970.64], [-263.65, -1017.21], [-262.23, -1024.47]], "holes": []}}, {"shape": {"outer": [[-1622.05, 129.11], [-1621.19, 128.18], [-1620.08, 127.56], [-1618.83, 127.3], [-1617.45, 127.48], [-1616.21, 128.12], [-1615.26, 129.13], [-1614.71, 130.41], [-1614.62, 131.8], [-1615.02, 133.14], [-1615.83, 134.26], [-1616.98, 135.04], [-1618.33, 135.39], [-1619.72, 135.26], [-1620.89, 134.74], [-1621.83, 133.89], [-1622.46, 132.78], [-1622.72, 131.53], [-1622.58, 130.27], [-1622.05, 129.11]], "holes": []}}, {"shape": {"outer": [[529.63, 738.06], [547.21, 754.03], [554.69, 745.86], [537.1, 729.89], [529.63, 738.06]], "holes": []}}, {"shape": {"outer": [[-111.75, 167.61], [-116.16, 172.41], [-111.38, 176.74], [-111.75, 167.61]], "holes": []}}, {"shape": {"outer": [[1398.02, 914.06], [1404.49, 908.36], [1405.98, 909.15], [1407.8, 909.61], [1409.47, 909.72], [1411.25, 909.59], [1412.68, 909.28], [1414.49, 908.49], [1416.09, 907.54], [1417.48, 906.46], [1418.74, 905.24], [1419.4, 904.09], [1419.65, 902.75], [1423.98, 900.15], [1425.9, 900.69], [1451.75, 940.71], [1468.43, 968.25], [1468.91, 969.92], [1468.84, 971.87], [1468.13, 973.54], [1466.97, 975.05], [1465.1, 976.13], [1463.04, 976.5], [1461.36, 976.05], [1459.79, 975.24], [1458.53, 973.99], [1456.0, 971.55], [1445.77, 961.21], [1435.89, 951.07], [1398.02, 914.06]], "holes": []}}, {"shape": {"outer": [[-1695.18, -218.97], [-1694.95, -218.61], [-1694.55, -218.09], [-1693.89, -217.52], [-1693.76, -216.81], [-1693.84, -215.81], [-1694.13, -215.36], [-1694.91, -214.63], [-1695.43, -213.99], [-1696.02, -212.96], [-1696.15, -212.25], [-1696.24, -210.88], [-1696.25, -209.17], [-1695.98, -208.32], [-1695.63, -207.57], [-1694.78, -206.57], [-1693.86, -205.81], [-1692.81, -204.92], [-1691.74, -204.73], [-1690.65, -179.03], [-1695.72, -178.77], [-1715.94, -179.94], [-1719.49, -180.23], [-1729.1, -181.02], [-1732.77, -181.04], [-1736.05, -180.66], [-1740.7, -179.41], [-1745.44, -177.67], [-1751.72, -174.15], [-1766.54, -163.12], [-1773.35, -157.93], [-1779.88, -153.03], [-1787.52, -145.71], [-1787.66, -155.86], [-1789.06, -158.9], [-1791.2, -213.36], [-1790.87, -214.52], [-1789.87, -215.02], [-1695.19, -219.41], [-1695.18, -218.97]], "holes": []}}, {"shape": {"outer": [[-1331.35, 56.32], [-1329.12, 56.92], [-1328.65, 66.4], [-1328.62, 68.29], [-1328.47, 69.82], [-1327.76, 78.15], [-1327.9, 78.93], [-1328.08, 79.89], [-1327.88, 83.33], [-1327.88, 84.29], [-1327.79, 85.39], [-1327.58, 88.41], [-1327.38, 90.31], [-1327.27, 92.07], [-1326.56, 102.66], [-1326.49, 105.54], [-1326.45, 107.96], [-1326.55, 112.37], [-1326.36, 113.6], [-1326.1, 115.04], [-1325.83, 119.95], [-1325.65, 121.91], [-1325.47, 126.11], [-1325.43, 128.29], [-1325.45, 128.62], [-1325.49, 129.0], [-1325.21, 139.33], [-1325.31, 140.21], [-1325.45, 141.53], [-1325.58, 141.94], [-1325.59, 142.34], [-1325.57, 142.79], [-1325.49, 143.21], [-1325.26, 143.67], [-1324.88, 144.09], [-1324.94, 147.83], [-1324.73, 149.83], [-1324.66, 151.16], [-1324.39, 156.3], [-1322.07, 156.71], [-1319.76, 157.09], [-1316.24, 157.28], [-1312.97, 157.35], [-1311.1, 157.29], [-1309.49, 157.31], [-1304.65, 156.54], [-1300.49, 155.41], [-1296.97, 154.14], [-1292.22, 152.51], [-1288.69, 151.68], [-1285.89, 151.23], [-1281.42, 151.06], [-1276.68, 150.9], [-1274.79, 150.87], [-1272.92, 150.97], [-1270.53, 151.35], [-1268.11, 151.8], [-1262.54, 152.92], [-1256.73, 153.69], [-1254.58, 153.8], [-1251.53, 153.77], [-1242.3, 153.61], [-1242.55, 147.37], [-1244.81, 147.2], [-1246.79, 146.92], [-1249.43, 146.34], [-1252.0, 145.62], [-1253.83, 144.96], [-1252.88, 144.26], [-1251.91, 143.39], [-1251.03, 142.34], [-1250.19, 141.16], [-1249.98, 138.87], [-1250.1, 136.28], [-1250.84, 132.09], [-1252.3, 128.63], [-1253.06, 127.33], [-1254.28, 125.2], [-1254.16, 122.09], [-1252.98, 121.55], [-1251.73, 121.18], [-1247.72, 117.55], [-1242.3, 112.42], [-1242.92, 110.78], [-1243.27, 109.08], [-1243.33, 107.54], [-1243.18, 106.2], [-1249.35, 106.52], [-1249.32, 111.22], [-1254.67, 111.41], [-1253.55, 112.84], [-1253.17, 114.06], [-1253.52, 115.02], [-1253.76, 115.89], [-1254.42, 116.63], [-1255.44, 117.13], [-1256.6, 117.42], [-1257.87, 117.1], [-1258.92, 116.43], [-1259.54, 115.59], [-1260.13, 115.62], [-1260.26, 116.2], [-1260.67, 116.67], [-1261.35, 116.89], [-1262.06, 116.74], [-1262.56, 116.32], [-1262.82, 115.77], [-1268.73, 116.1], [-1268.92, 116.69], [-1269.38, 117.11], [-1269.98, 117.29], [-1270.7, 117.12], [-1271.12, 116.78], [-1271.3, 116.25], [-1277.58, 116.59], [-1277.71, 117.16], [-1278.14, 117.61], [-1278.8, 117.83], [-1279.46, 117.66], [-1279.9, 117.28], [-1280.18, 116.73], [-1280.83, 116.78], [-1281.21, 117.66], [-1282.25, 118.48], [-1283.55, 118.78], [-1284.83, 118.6], [-1286.3, 117.72], [-1286.99, 116.76], [-1287.21, 115.19], [-1286.56, 113.55], [-1285.26, 112.58], [-1285.91, 100.15], [-1289.59, 100.19], [-1290.35, 100.19], [-1290.49, 100.57], [-1291.08, 101.24], [-1291.88, 101.66], [-1292.76, 101.63], [-1293.74, 101.2], [-1294.19, 100.76], [-1294.49, 99.86], [-1294.57, 98.97], [-1294.08, 98.14], [-1293.55, 97.6], [-1293.24, 97.29], [-1293.54, 89.76], [-1293.98, 89.51], [-1294.56, 89.01], [-1294.98, 88.17], [-1295.07, 87.3], [-1294.95, 86.55], [-1294.25, 85.73], [-1293.45, 85.37], [-1292.39, 85.41], [-1291.62, 85.81], [-1291.17, 86.56], [-1286.58, 86.35], [-1286.69, 83.73], [-1287.42, 66.85], [-1287.84, 66.57], [-1288.9, 65.66], [-1289.48, 64.53], [-1289.75, 63.3], [-1289.69, 62.0], [-1289.13, 60.83], [-1288.37, 59.83], [-1287.25, 58.91], [-1285.9, 58.65], [-1283.26, 58.39], [-1285.25, 57.72], [-1286.97, 56.82], [-1288.28, 55.88], [-1289.52, 54.77], [-1290.76, 53.32], [-1291.75, 51.8], [-1292.41, 50.11], [-1293.51, 45.79], [-1297.7, 45.86], [-1300.63, 45.94], [-1299.25, 76.74], [-1298.92, 85.16], [-1298.73, 89.47], [-1307.38, 89.89], [-1307.63, 84.58], [-1305.92, 84.56], [-1306.3, 74.98], [-1306.6, 68.16], [-1307.34, 51.51], [-1307.45, 49.57], [-1307.6, 46.4], [-1314.74, 46.76], [-1314.78, 45.72], [-1319.64, 45.97], [-1331.55, 46.65], [-1331.35, 56.32]], "holes": []}}, {"shape": {"outer": [[2311.81, 1770.6], [2303.55, 1762.36], [2294.5, 1753.33], [2296.39, 1750.67], [2299.94, 1748.72], [2313.3, 1769.35], [2311.81, 1770.6]], "holes": []}}, {"shape": {"outer": [[2280.2, 1742.09], [2292.0, 1753.4], [2294.83, 1749.3], [2298.81, 1747.01], [2295.86, 1743.5], [2290.42, 1740.39], [2282.96, 1739.19], [2280.25, 1739.7], [2280.2, 1742.09]], "holes": []}}, {"shape": {"outer": [[2577.68, 1991.19], [2659.39, 1988.83], [2663.57, 2043.58], [2613.31, 2048.66], [2577.68, 1991.19]], "holes": []}}, {"shape": {"outer": [[-2464.86, -1338.88], [-2454.98, -1339.27], [-2454.98, -1330.26], [-2464.86, -1338.88]], "holes": []}}, {"shape": {"outer": [[1524.37, 1067.65], [1532.92, 1058.0], [1525.49, 1047.86], [1519.52, 1037.98], [1511.94, 1025.12], [1502.61, 1008.52], [1499.05, 1002.57], [1497.13, 999.37], [1495.72, 997.11], [1496.37, 999.18], [1497.36, 1001.72], [1508.15, 1026.24], [1510.94, 1031.99], [1513.18, 1037.85], [1516.83, 1046.89], [1521.11, 1058.87], [1524.37, 1067.65]], "holes": []}}, {"shape": {"outer": [[-129.37, -1938.35], [-137.79, -1931.65], [-145.18, -1922.87], [-160.98, -1900.97], [-191.65, -1850.97], [-249.44, -1763.94], [-250.95, -1762.15], [-255.41, -1760.65], [-258.14, -1760.38], [-260.56, -1762.06], [-262.45, -1763.38], [-244.98, -1792.91], [-148.68, -1942.28], [-115.83, -1994.23], [-59.3, -2077.73], [-5.43, -2158.21], [16.06, -2190.83], [19.7, -2196.74], [20.74, -2197.84], [23.52, -2200.28], [25.86, -2201.42], [46.35, -2232.88], [59.22, -2252.31], [75.04, -2276.67], [81.48, -2288.44], [85.17, -2296.61], [88.77, -2303.33], [94.71, -2312.03], [119.72, -2347.41], [148.9, -2386.23], [158.46, -2398.46], [160.5, -2401.06], [169.26, -2412.27], [171.04, -2414.55], [172.75, -2416.74], [194.14, -2445.63], [219.9, -2479.75], [231.09, -2496.04], [242.56, -2514.59], [250.7, -2528.92], [257.6, -2541.06], [268.98, -2562.81], [276.02, -2578.75], [281.84, -2591.23], [289.25, -2610.61], [297.51, -2633.7], [307.42, -2665.35], [309.38, -2671.44], [311.97, -2676.48], [315.21, -2683.79], [317.77, -2689.78], [321.97, -2705.4], [325.07, -2717.33], [325.42, -2721.73], [326.14, -2729.67], [326.98, -2733.95], [328.53, -2737.68], [330.0, -2740.2], [333.49, -2742.96], [334.71, -2743.5], [342.53, -2765.28], [375.23, -2800.8], [447.12, -2872.03], [453.91, -2651.16], [630.65, -2652.35], [637.56, -2427.98], [629.83, -2420.66], [561.95, -2352.43], [503.99, -2327.02], [487.49, -2322.06], [476.19, -2320.58], [471.87, -2321.04], [466.3, -2324.2], [460.84, -2323.26], [454.46, -2320.94], [443.45, -2315.95], [443.5, -2313.99], [442.79, -2311.44], [440.88, -2309.83], [432.35, -2307.05], [421.5, -2303.04], [421.14, -2302.82], [397.38, -2288.63], [387.44, -2280.82], [381.82, -2276.4], [372.99, -2269.45], [365.16, -2262.04], [350.47, -2248.09], [340.72, -2253.52], [333.34, -2261.81], [317.41, -2277.69], [300.79, -2292.28], [291.95, -2296.16], [286.57, -2298.52], [281.27, -2302.01], [274.45, -2292.75], [267.24, -2281.5], [264.67, -2281.18], [264.55, -2283.96], [263.05, -2286.64], [261.56, -2288.72], [259.63, -2290.09], [257.35, -2290.85], [255.08, -2291.15], [252.48, -2290.59], [250.5, -2289.59], [248.4, -2287.76], [247.16, -2285.71], [246.65, -2282.74], [246.47, -2276.46], [246.55, -2273.5], [245.93, -2270.29], [244.01, -2266.8], [239.81, -2259.94], [233.4, -2251.47], [223.12, -2236.86], [219.77, -2233.56], [213.73, -2228.78], [206.94, -2225.04], [197.44, -2221.09], [187.52, -2218.92], [162.57, -2219.28], [141.15, -2220.45], [131.23, -2222.77], [116.72, -2231.59], [134.92, -2211.14], [131.6, -2204.03], [112.64, -2203.49], [113.8, -2177.57], [118.18, -2080.89], [119.06, -2061.39], [150.32, -2015.21], [140.79, -2002.39], [133.74, -1992.47], [115.11, -1977.82], [94.03, -1963.11], [61.78, -1946.61], [41.76, -1946.04], [22.58, -1950.86], [2.36, -1957.09], [-22.31, -1966.13], [-36.6, -1965.72], [-47.2, -1965.42], [-75.96, -1963.15], [-92.81, -1958.9], [-105.99, -1954.02], [-117.91, -1946.31], [-129.37, -1938.35]], "holes": []}}, {"shape": {"outer": [[-2338.79, 293.63], [-2324.28, 283.02], [-2323.6, 282.52], [-2328.34, 276.09], [-2343.53, 287.21], [-2338.79, 293.63]], "holes": []}}, {"shape": {"outer": [[-2612.95, -1676.02], [-2625.03, -1643.98], [-2578.7, -1626.64], [-2566.61, -1658.68], [-2612.95, -1676.02]], "holes": []}}, {"shape": {"outer": [[-2586.11, -1577.63], [-2562.6, -1569.27], [-2566.89, -1555.1], [-2577.88, -1545.74], [-2589.58, -1553.69], [-2587.11, -1558.87], [-2591.06, -1567.04], [-2589.61, -1570.13], [-2586.11, -1577.63]], "holes": []}}, {"shape": {"outer": [[-256.89, -143.66], [-271.41, -127.78], [-273.12, -126.07], [-274.45, -124.23], [-274.97, -122.66], [-275.29, -120.24], [-275.25, -117.07], [-274.84, -114.46], [-273.97, -112.64], [-272.57, -110.78], [-269.39, -107.56], [-200.98, -45.06], [-186.59, -32.34], [-116.04, 31.93], [-114.43, 33.19], [-113.18, 33.67], [-110.74, 34.42], [-107.57, 34.5], [-103.94, 33.54], [-101.46, 32.29], [-99.81, 30.82], [-98.32, 29.29], [-36.0, -39.09], [-35.37, -39.79], [-23.2, -53.24], [-22.32, -54.21], [-14.82, -62.5], [42.84, -125.44], [43.98, -126.94], [44.99, -128.82], [45.51, -131.62], [45.28, -135.04], [44.97, -136.69], [44.6, -137.94], [43.62, -139.69], [41.16, -142.2], [-24.34, -201.47], [-28.75, -205.31], [-29.3, -205.8], [-43.65, -219.06], [-94.87, -264.44], [-105.0, -273.06], [-114.68, -282.0], [-117.08, -283.79], [-119.2, -284.42], [-121.29, -284.84], [-123.62, -284.8], [-125.62, -284.68], [-127.95, -283.79], [-130.71, -282.27], [-133.28, -280.05], [-136.62, -276.3], [-195.09, -211.13], [-195.73, -210.52], [-208.21, -196.67], [-208.91, -195.91], [-212.56, -191.89], [-256.89, -143.66]], "holes": []}}, {"shape": {"outer": [[-176.0, -147.4], [-175.21, -147.85], [-174.61, -148.54], [-174.28, -149.4], [-174.25, -150.31], [-174.54, -151.18], [-175.11, -151.9], [-175.88, -152.39], [-176.78, -152.58], [-177.61, -152.49], [-178.36, -152.15], [-178.98, -151.6], [-179.4, -150.88], [-179.58, -150.07], [-179.49, -149.24], [-179.16, -148.48], [-178.61, -147.86], [-177.81, -147.41], [-176.91, -147.24], [-176.0, -147.4]], "holes": []}}, {"shape": {"outer": [[-144.59, -181.45], [-143.81, -181.9], [-143.21, -182.58], [-142.9, -183.42], [-142.87, -184.32], [-143.16, -185.18], [-143.71, -185.89], [-144.47, -186.38], [-145.35, -186.59], [-146.19, -186.5], [-146.95, -186.16], [-147.57, -185.6], [-147.99, -184.89], [-148.16, -184.07], [-148.07, -183.24], [-147.73, -182.49], [-147.16, -181.87], [-146.37, -181.44], [-145.48, -181.28], [-144.59, -181.45]], "holes": []}}, {"shape": {"outer": [[-92.22, -184.03], [-91.37, -183.87], [-90.51, -183.99], [-89.73, -184.36], [-89.11, -184.96], [-88.71, -185.73], [-88.57, -186.59], [-88.71, -187.44], [-89.12, -188.21], [-89.74, -188.8], [-90.59, -189.2], [-91.53, -189.29], [-92.45, -189.04], [-93.21, -188.49], [-93.75, -187.72], [-94.0, -186.81], [-93.92, -185.88], [-93.57, -185.09], [-92.98, -184.45], [-92.22, -184.03]], "holes": []}}, {"shape": {"outer": [[-56.29, -153.8], [-55.39, -153.93], [-54.58, -154.36], [-53.97, -155.03], [-53.6, -155.86], [-53.54, -156.77], [-53.78, -157.65], [-54.3, -158.39], [-55.0, -158.9], [-55.83, -159.17], [-56.7, -159.17], [-57.52, -158.88], [-58.21, -158.34], [-58.7, -157.63], [-58.93, -156.79], [-58.88, -155.93], [-58.57, -155.11], [-57.97, -154.43], [-57.18, -153.97], [-56.29, -153.8]], "holes": []}}, {"shape": {"outer": [[-53.94, -98.86], [-53.02, -98.9], [-52.17, -99.23], [-51.48, -99.82], [-51.01, -100.6], [-50.82, -101.49], [-50.94, -102.4], [-51.35, -103.21], [-51.99, -103.85], [-52.82, -104.25], [-53.72, -104.36], [-54.62, -104.17], [-55.39, -103.71], [-55.98, -103.01], [-56.31, -102.16], [-56.35, -101.25], [-56.09, -100.38], [-55.55, -99.65], [-54.81, -99.11], [-53.94, -98.86]], "holes": []}}, {"shape": {"outer": [[-85.53, -64.13], [-84.67, -64.26], [-83.89, -64.65], [-83.27, -65.28], [-82.9, -66.06], [-82.78, -66.93], [-82.95, -67.78], [-83.38, -68.55], [-84.02, -69.13], [-84.88, -69.49], [-85.8, -69.54], [-86.7, -69.29], [-87.45, -68.75], [-87.98, -67.99], [-88.22, -67.1], [-88.15, -66.18], [-87.77, -65.33], [-87.17, -64.69], [-86.4, -64.28], [-85.53, -64.13]], "holes": []}}, {"shape": {"outer": [[-141.74, -62.24], [-140.96, -61.94], [-140.13, -61.9], [-139.33, -62.12], [-138.64, -62.6], [-138.14, -63.27], [-137.88, -64.05], [-137.9, -64.88], [-138.17, -65.67], [-138.7, -66.34], [-139.43, -66.8], [-140.27, -66.99], [-141.12, -66.9], [-141.9, -66.53], [-142.51, -65.93], [-142.89, -65.15], [-142.99, -64.31], [-142.81, -63.5], [-142.38, -62.78], [-141.74, -62.24]], "holes": []}}, {"shape": {"outer": [[-173.86, -92.5], [-173.08, -92.95], [-172.46, -93.61], [-172.09, -94.42], [-171.99, -95.31], [-172.18, -96.2], [-172.64, -96.97], [-173.31, -97.57], [-174.14, -97.92], [-175.12, -97.99], [-176.07, -97.73], [-176.86, -97.15], [-177.42, -96.35], [-177.67, -95.4], [-177.58, -94.42], [-177.16, -93.53], [-176.46, -92.85], [-175.65, -92.45], [-174.75, -92.34], [-173.86, -92.5]], "holes": []}}, {"shape": {"outer": [[-157.56, -33.36], [-156.81, -34.55], [-156.47, -35.91], [-156.6, -37.32], [-157.18, -38.61], [-158.14, -39.63], [-159.39, -40.3], [-160.78, -40.53], [-162.19, -40.29], [-163.45, -39.61], [-164.41, -38.56], [-164.97, -37.25], [-165.07, -35.82], [-164.71, -34.46], [-163.91, -33.27], [-162.77, -32.41], [-161.41, -31.97], [-160.0, -32.0], [-158.67, -32.47], [-157.56, -33.36]], "holes": []}}, {"shape": {"outer": [[-1008.71, 163.73], [-1002.85, 163.3], [-1001.18, 201.31], [-1002.08, 201.11], [-1010.22, 193.46], [-1011.84, 192.01], [-1016.58, 189.74], [-1021.03, 186.02], [-1023.44, 186.01], [-1023.84, 170.86], [-1017.18, 170.57], [-1016.4, 171.09], [-1010.61, 171.03], [-1009.56, 170.87], [-1008.67, 170.1], [-1008.49, 168.69], [-1008.71, 163.73]], "holes": []}}, {"shape": {"outer": [[-204.76, -116.31], [-203.9, -114.36], [-201.59, -113.08], [-198.76, -113.21], [-197.85, -111.82], [-196.82, -110.46], [-195.21, -108.9], [-193.41, -107.76], [-193.2, -98.7], [-190.06, -98.8], [-189.91, -95.43], [-172.91, -80.33], [-174.24, -78.87], [-171.48, -76.7], [-180.33, -66.86], [-181.46, -67.43], [-183.01, -67.61], [-184.38, -67.05], [-185.28, -65.95], [-185.6, -64.68], [-185.31, -63.47], [-184.28, -62.44], [-192.98, -52.37], [-195.57, -54.92], [-196.95, -53.35], [-258.74, -109.73], [-255.13, -112.81], [-255.2, -114.21], [-245.55, -114.57], [-245.46, -113.23], [-241.12, -113.36], [-241.08, -114.52], [-231.09, -115.03], [-230.77, -113.74], [-229.9, -112.38], [-228.67, -111.72], [-227.37, -111.75], [-226.12, -112.29], [-225.27, -113.27], [-225.09, -114.46], [-224.23, -114.51], [-224.22, -115.42], [-214.75, -115.83], [-214.72, -114.96], [-210.59, -115.12], [-210.61, -116.02], [-204.76, -116.31]], "holes": []}}, {"shape": {"outer": [[-194.57, -145.3], [-191.53, -145.37], [-191.68, -148.64], [-176.52, -164.97], [-177.9, -166.19], [-175.8, -168.63], [-185.07, -177.38], [-186.24, -176.74], [-187.5, -176.51], [-188.23, -176.59], [-188.51, -176.7], [-189.17, -176.97], [-190.05, -177.83], [-190.27, -178.48], [-190.32, -179.35], [-190.13, -180.65], [-189.72, -181.66], [-199.58, -190.45], [-202.0, -187.81], [-203.32, -188.94], [-259.19, -128.09], [-256.0, -125.2], [-255.82, -123.88], [-245.75, -124.34], [-245.72, -125.26], [-241.61, -125.44], [-241.58, -124.49], [-231.65, -124.95], [-231.59, -126.09], [-231.29, -126.97], [-230.74, -127.71], [-229.89, -128.32], [-228.91, -128.58], [-227.63, -128.4], [-226.86, -127.95], [-226.17, -127.26], [-225.67, -126.17], [-225.54, -125.16], [-214.97, -125.63], [-214.99, -126.76], [-210.56, -126.94], [-210.49, -125.81], [-205.19, -126.05], [-205.21, -128.85], [-204.65, -130.05], [-204.13, -130.53], [-203.28, -130.88], [-202.49, -130.9], [-200.83, -130.95], [-199.62, -130.66], [-199.38, -130.58], [-198.93, -131.41], [-198.36, -132.33], [-197.46, -133.47], [-196.69, -134.32], [-195.6, -135.27], [-194.15, -136.1], [-194.57, -145.3]], "holes": []}}, {"shape": {"outer": [[-160.48, -161.11], [-152.13, -153.46], [-153.37, -152.08], [-152.53, -151.29], [-153.43, -150.81], [-154.69, -150.43], [-156.1, -150.29], [-157.69, -150.61], [-159.16, -151.32], [-160.79, -152.55], [-161.75, -153.58], [-162.48, -155.0], [-162.8, -156.63], [-162.69, -158.15], [-162.38, -159.04], [-160.68, -160.88], [-160.48, -161.11]], "holes": []}}, {"shape": {"outer": [[-150.1, -93.66], [-157.9, -85.39], [-159.41, -86.7], [-159.82, -87.62], [-160.2, -89.51], [-160.19, -91.04], [-159.74, -92.47], [-158.96, -93.74], [-156.99, -95.65], [-155.31, -96.19], [-153.78, -96.23], [-152.08, -95.95], [-150.97, -95.28], [-151.39, -94.78], [-150.1, -93.66]], "holes": []}}, {"shape": {"outer": [[-129.62, -264.48], [-129.07, -241.28], [-130.68, -239.58], [-131.35, -238.88], [-131.66, -237.26], [-131.34, -235.66], [-130.58, -234.42], [-129.61, -233.69], [-128.38, -232.77], [-127.48, -213.7], [-128.63, -213.04], [-129.85, -211.85], [-130.45, -210.49], [-130.59, -209.23], [-130.12, -208.01], [-129.64, -206.79], [-132.26, -204.69], [-133.05, -203.87], [-133.91, -202.67], [-142.99, -202.14], [-142.9, -198.92], [-146.23, -198.91], [-161.23, -182.44], [-162.61, -183.39], [-164.89, -181.16], [-174.15, -190.05], [-173.56, -191.29], [-173.48, -192.17], [-173.5, -192.92], [-173.85, -193.68], [-174.47, -194.42], [-175.25, -194.73], [-176.18, -194.97], [-176.94, -194.95], [-177.82, -194.77], [-178.89, -194.19], [-188.37, -202.96], [-186.14, -205.41], [-187.72, -206.79], [-179.45, -215.89], [-178.67, -215.26], [-176.28, -217.89], [-176.96, -218.58], [-161.12, -235.91], [-160.56, -235.43], [-158.11, -237.95], [-158.7, -238.53], [-133.47, -266.41], [-130.37, -263.65], [-129.62, -264.48]], "holes": []}}, {"shape": {"outer": [[175.0, -493.16], [170.19, -490.3], [174.92, -485.78], [175.89, -487.8], [175.85, -489.27], [175.33, -491.92], [175.0, -493.16]], "holes": []}}, {"shape": {"outer": [[170.84, -539.92], [167.54, -539.23], [165.19, -538.04], [162.33, -535.72], [160.69, -532.69], [159.78, -529.75], [163.1, -529.59], [165.02, -529.97], [167.83, -531.44], [169.88, -533.87], [170.55, -535.88], [170.9, -537.67], [170.84, -539.92]], "holes": []}}, {"shape": {"outer": [[263.95, -440.28], [261.94, -438.73], [260.73, -437.07], [259.74, -435.27], [259.27, -433.33], [259.24, -431.64], [259.45, -430.13], [261.87, -431.12], [263.59, -431.85], [265.01, -432.89], [264.24, -434.23], [263.99, -435.91], [264.27, -437.4], [264.76, -438.62], [265.46, -439.69], [266.69, -440.12], [268.02, -440.2], [269.15, -439.95], [269.48, -441.36], [267.05, -441.38], [265.22, -440.96], [263.95, -440.28]], "holes": []}}, {"shape": {"outer": [[142.59, -439.94], [108.39, -404.11], [98.3, -393.25], [100.32, -391.52], [104.1, -388.15], [124.34, -370.51], [125.91, -369.17], [130.03, -365.52], [151.66, -389.49], [156.63, -394.88], [171.63, -410.88], [168.95, -413.58], [168.18, -414.29], [142.59, -439.94]], "holes": []}}, {"shape": {"outer": [[1102.28, 1877.99], [1117.75, 1877.34], [1118.75, 1901.72], [1118.81, 1903.13], [1103.35, 1903.77], [1102.28, 1877.99]], "holes": []}}, {"shape": {"outer": [[-3061.72, -907.56], [-3063.02, -906.85], [-3066.62, -902.21], [-3069.9, -898.33], [-3070.35, -896.99], [-3069.65, -895.28], [-3068.38, -894.49], [-3066.72, -894.28], [-3057.37, -894.72], [-3054.16, -895.31], [-3050.64, -896.82], [-3048.68, -897.78], [-3048.37, -898.45], [-3048.56, -899.52], [-3049.75, -900.31], [-3054.13, -903.07], [-3055.83, -904.5], [-3058.38, -906.83], [-3059.31, -907.46], [-3060.07, -907.68], [-3060.9, -907.82], [-3061.72, -907.56]], "holes": []}}, {"shape": {"outer": [[-2287.62, 307.53], [-2300.53, 307.89], [-2300.88, 295.45], [-2287.62, 307.53]], "holes": []}}, {"shape": {"outer": [[-2367.57, 308.59], [-2379.56, 294.4], [-2367.88, 294.15], [-2367.57, 308.59]], "holes": []}}, {"shape": {"outer": [[-2274.48, 307.33], [-2281.85, 307.51], [-2282.2, 293.5], [-2274.83, 293.32], [-2274.48, 307.33]], "holes": []}}, {"shape": {"outer": [[1918.92, 2243.07], [1918.82, 2230.45], [1918.56, 2221.2], [1916.94, 2208.5], [1915.96, 2200.52], [1916.38, 2197.39], [1916.97, 2195.99], [1918.69, 2194.82], [1920.44, 2194.77], [1926.89, 2196.46], [1928.67, 2197.29], [1934.95, 2201.61], [1945.25, 2211.2], [1961.84, 2225.61], [1970.59, 2233.24], [1981.39, 2242.44], [1986.16, 2246.81], [1984.39, 2246.6], [1979.21, 2245.12], [1973.17, 2244.79], [1967.8, 2245.32], [1955.81, 2247.54], [1943.96, 2250.24], [1935.95, 2250.96], [1930.18, 2250.76], [1924.37, 2249.42], [1920.57, 2248.27], [1919.02, 2246.57], [1918.97, 2244.95], [1918.92, 2243.07]], "holes": []}}, {"shape": {"outer": [[-1545.89, -621.65], [-1547.2, -665.71], [-1539.79, -666.1], [-1516.99, -623.6], [-1545.89, -621.65]], "holes": []}}, {"shape": {"outer": [[-2379.23, -347.55], [-2345.72, -348.87], [-2348.65, -422.36], [-2382.15, -421.03], [-2379.23, -347.55]], "holes": []}}, {"shape": {"outer": [[-214.47, 526.49], [-204.27, 515.2], [-185.15, 532.36], [-195.35, 543.64], [-214.47, 526.49]], "holes": []}}, {"shape": {"outer": [[-182.65, 529.22], [-172.39, 517.98], [-191.51, 500.66], [-201.76, 511.9], [-182.65, 529.22]], "holes": []}}, {"shape": {"outer": [[-1125.41, -478.37], [-1126.51, -502.49], [-1098.91, -503.65], [-1098.62, -490.9], [-1098.37, -479.41], [-1112.83, -478.88], [-1125.41, -478.37]], "holes": []}}, {"shape": {"outer": [[306.85, -3106.26], [309.29, -3112.97], [313.89, -3120.4], [319.22, -3125.23], [328.16, -3129.84], [333.79, -3135.46], [340.95, -3149.17], [342.83, -3109.67], [416.33, -3112.3], [420.54, -3110.46], [421.84, -3107.01], [421.82, -3103.74], [415.57, -3096.71], [398.79, -3079.45], [392.2, -3076.44], [386.5, -3076.82], [379.56, -3079.24], [372.77, -3083.18], [365.36, -3086.13], [353.28, -3088.41], [311.78, -3094.52], [307.99, -3096.82], [306.39, -3099.72], [306.29, -3103.19], [306.85, -3106.26]], "holes": []}}, {"shape": {"outer": [[306.29, -3126.07], [309.36, -3129.64], [314.17, -3133.59], [322.65, -3139.17], [325.2, -3141.68], [327.1, -3144.72], [328.24, -3148.11], [328.56, -3151.67], [328.05, -3155.2], [326.73, -3158.53], [324.68, -3161.46], [322.0, -3163.83], [318.83, -3165.53], [315.0, -3166.5], [311.05, -3166.47], [307.24, -3165.43], [303.81, -3163.46], [301.01, -3160.68], [299.0, -3157.29], [297.92, -3153.5], [297.85, -3149.56], [298.79, -3145.74], [303.42, -3134.81], [305.0, -3129.3], [306.29, -3126.07]], "holes": []}}, {"shape": {"outer": [[413.39, -3077.25], [434.48, -3098.82], [447.31, -3122.38], [456.09, -3138.59], [458.74, -3143.46], [460.37, -3147.86], [462.81, -3154.31], [463.69, -3157.54], [467.83, -3158.26], [466.05, -3169.21], [462.9, -3183.89], [456.19, -3204.66], [451.13, -3217.32], [437.34, -3246.66], [428.01, -3267.31], [424.21, -3278.1], [422.23, -3297.76], [422.18, -3318.56], [388.37, -3346.69], [376.14, -3357.56], [376.57, -3369.56], [379.57, -3371.93], [425.41, -3374.54], [443.56, -3378.21], [453.38, -3382.63], [460.53, -3385.22], [467.88, -3384.23], [472.02, -3380.65], [481.07, -3366.2], [487.76, -3358.0], [506.36, -3338.05], [515.59, -3332.43], [544.25, -3300.78], [565.28, -3276.53], [569.03, -3267.6], [569.68, -3260.11], [568.38, -3252.0], [565.61, -3245.61], [559.03, -3238.35], [515.9, -3193.99], [494.26, -3166.79], [468.87, -3133.28], [444.01, -3096.2], [433.26, -3078.04], [426.37, -3066.73], [424.16, -3063.73], [419.7, -3062.84], [415.08, -3063.79], [412.62, -3065.79], [411.42, -3069.36], [411.24, -3072.08], [411.71, -3074.59], [413.39, -3077.25]], "holes": []}}, {"shape": {"outer": [[378.3, -3073.21], [395.18, -3065.84], [392.97, -3058.87], [392.03, -3059.27], [385.43, -3066.66], [380.68, -3070.44], [377.22, -3072.64], [377.26, -3073.29], [378.3, -3073.21]], "holes": []}}, {"shape": {"outer": [[408.23, -3054.78], [410.29, -3055.71], [412.35, -3055.87], [415.03, -3055.95], [417.93, -3055.82], [420.12, -3055.82], [421.59, -3055.98], [416.91, -3047.56], [405.9, -3028.84], [405.36, -3028.61], [404.7, -3029.13], [404.6, -3030.43], [402.94, -3046.78], [403.41, -3049.47], [404.39, -3051.57], [406.03, -3053.4], [408.23, -3054.78]], "holes": []}}, {"shape": {"outer": [[2368.9, -3114.0], [2370.26, -3108.48], [2372.04, -3107.22], [2370.93, -3100.22], [2374.14, -3098.68], [2378.88, -3101.1], [2385.54, -3109.34], [2385.34, -3116.64], [2381.47, -3117.73], [2382.0, -3122.65], [2372.79, -3123.26], [2368.9, -3114.0]], "holes": []}}, {"shape": {"outer": [[2382.25, -3152.5], [2380.87, -3188.94], [2414.61, -3190.21], [2415.99, -3153.77], [2382.25, -3152.5]], "holes": []}}, {"shape": {"outer": [[2259.02, -3169.56], [2293.5, -3181.72], [2323.18, -3098.14], [2288.7, -3085.98], [2259.02, -3169.56]], "holes": []}}, {"shape": {"outer": [[2326.69, -3094.96], [2341.78, -3092.49], [2345.98, -3117.98], [2330.89, -3120.45], [2326.69, -3094.96]], "holes": []}}, {"shape": {"outer": [[260.26, -2465.61], [314.38, -2435.5], [423.8, -2577.44], [464.73, -2604.25], [454.14, -2625.38], [435.3, -2646.34], [354.65, -2660.39], [347.6, -2632.58], [335.59, -2604.01], [280.63, -2518.92], [253.89, -2477.66], [260.26, -2465.61]], "holes": []}}, {"shape": {"outer": [[2601.39, 1992.23], [2605.63, 2002.17], [2619.95, 2001.85], [2644.43, 2001.9], [2648.38, 1990.95], [2601.39, 1992.23]], "holes": []}}, {"shape": {"outer": [[2609.81, 2021.92], [2604.5, 2010.71], [2618.68, 2004.04], [2623.99, 2015.25], [2609.81, 2021.92]], "holes": []}}, {"shape": {"outer": [[-111.69, -267.77], [-115.05, -263.71], [-113.83, -242.69], [-112.63, -241.92], [-111.23, -240.28], [-110.64, -238.04], [-110.82, -235.91], [-111.9, -234.53], [-113.3, -233.77], [-112.18, -214.31], [-109.74, -213.42], [-108.1, -211.41], [-107.9, -209.03], [-108.44, -207.21], [-106.56, -205.47], [-104.95, -203.62], [-96.65, -203.88], [-89.87, -199.16], [-88.27, -200.88], [-74.64, -188.45], [-71.97, -185.97], [-63.72, -195.12], [-64.5, -197.46], [-63.79, -199.5], [-61.84, -200.73], [-59.02, -200.18], [-50.62, -209.45], [-53.3, -211.88], [-52.0, -213.35], [-111.69, -267.77]], "holes": []}}, {"shape": {"outer": [[-60.42, -173.76], [-50.45, -184.31], [-47.77, -183.76], [-45.81, -185.02], [-44.86, -187.23], [-45.99, -189.38], [-40.01, -195.83], [-37.97, -198.41], [-35.42, -196.19], [-33.61, -198.06], [-30.15, -195.1], [25.43, -142.95], [22.58, -139.78], [2.21, -139.47], [-0.34, -141.75], [-3.43, -142.62], [-5.77, -141.21], [-8.05, -138.82], [-26.16, -137.78], [-31.51, -141.92], [-35.58, -145.24], [-39.33, -143.2], [-38.91, -152.48], [-42.61, -152.35], [-42.67, -155.7], [-59.6, -170.71], [-58.37, -172.28], [-60.42, -173.76]], "holes": []}}, {"shape": {"outer": [[-55.8, -81.63], [-45.88, -72.74], [-45.15, -73.57], [-43.72, -74.04], [-42.77, -73.98], [-41.43, -73.32], [-40.35, -71.89], [-40.56, -70.57], [-41.74, -69.24], [-31.46, -59.91], [-29.21, -62.36], [-27.91, -61.16], [-20.99, -68.72], [-22.52, -70.11], [-19.03, -73.92], [-17.99, -72.98], [-2.22, -90.19], [-3.2, -91.09], [0.27, -94.86], [1.28, -93.95], [17.04, -111.1], [16.34, -111.74], [19.2, -114.83], [19.87, -114.21], [26.51, -121.44], [23.18, -124.47], [2.14, -123.57], [1.25, -122.07], [-0.45, -121.21], [-2.24, -120.31], [-4.51, -120.43], [-6.38, -121.32], [-7.58, -123.03], [-26.17, -122.08], [-27.78, -119.61], [-34.8, -118.12], [-36.83, -114.76], [-36.45, -105.98], [-40.09, -105.82], [-39.93, -102.17], [-54.81, -85.7], [-53.33, -84.37], [-55.8, -81.63]], "holes": []}}, {"shape": {"outer": [[-103.99, 13.81], [-102.45, 13.8], [-99.45, 16.5], [-44.57, -43.85], [-46.33, -45.46], [-43.45, -48.63], [-53.38, -57.59], [-54.3, -56.59], [-55.87, -56.28], [-57.59, -57.49], [-57.97, -59.32], [-56.68, -60.82], [-66.7, -69.39], [-68.86, -66.88], [-70.7, -68.46], [-85.1, -51.75], [-88.49, -51.62], [-88.38, -48.88], [-97.68, -48.52], [-100.35, -45.01], [-103.1, -43.11], [-106.03, -42.38], [-106.02, -41.48], [-107.21, -41.42], [-105.11, -16.71], [-103.24, -16.13], [-101.74, -15.11], [-101.11, -13.57], [-101.12, -11.86], [-102.62, -10.2], [-104.64, -9.58], [-104.55, -0.13], [-103.07, -0.15], [-103.03, 4.27], [-104.08, 4.28], [-103.99, 13.81]], "holes": []}}, {"shape": {"outer": [[-159.68, -65.12], [-157.47, -63.07], [-156.13, -64.51], [-140.05, -49.6], [-136.59, -49.73], [-136.47, -46.52], [-127.4, -46.89], [-124.66, -44.3], [-121.64, -42.37], [-118.41, -41.49], [-118.29, -40.61], [-117.22, -40.54], [-115.88, -16.87], [-117.37, -16.37], [-118.44, -15.35], [-119.49, -13.78], [-119.52, -11.91], [-118.42, -10.45], [-117.04, -9.58], [-115.12, -9.65], [-114.75, 0.58], [-115.72, 0.62], [-115.57, 4.89], [-114.52, 4.85], [-114.16, 14.62], [-115.43, 14.67], [-118.41, 17.96], [-179.78, -37.37], [-178.02, -39.3], [-180.72, -41.74], [-172.13, -51.19], [-169.87, -50.68], [-168.27, -51.65], [-167.09, -53.94], [-168.03, -56.18], [-159.68, -65.12]], "holes": []}}, {"shape": {"outer": [[592.22, 33.34], [591.02, 36.59], [610.41, 62.2], [612.48, 60.54], [629.03, 41.77], [592.22, 33.34]], "holes": []}}, {"shape": {"outer": [[-337.73, -920.88], [-346.34, -927.61], [-331.75, -946.16], [-323.14, -939.45], [-337.73, -920.88]], "holes": []}}, {"shape": {"outer": [[-1387.51, -1350.91], [-1384.9, -1371.17], [-1373.26, -1369.69], [-1375.86, -1349.43], [-1387.51, -1350.91]], "holes": []}}, {"shape": {"outer": [[-2713.89, -1642.92], [-2703.6, -1639.07], [-2695.23, -1661.26], [-2705.51, -1665.11], [-2713.89, -1642.92]], "holes": []}}, {"shape": {"outer": [[-2716.59, -1643.98], [-2726.82, -1647.79], [-2718.45, -1670.06], [-2708.23, -1666.26], [-2716.59, -1643.98]], "holes": []}}, {"shape": {"outer": [[-2742.61, -1653.59], [-2734.27, -1676.09], [-2744.63, -1679.89], [-2752.97, -1657.4], [-2742.61, -1653.59]], "holes": []}}, {"shape": {"outer": [[-2729.65, -1648.77], [-2739.98, -1652.58], [-2731.63, -1675.05], [-2721.3, -1671.24], [-2729.65, -1648.77]], "holes": []}}, {"shape": {"outer": [[-2766.13, -1662.44], [-2757.7, -1684.85], [-2747.34, -1680.98], [-2755.77, -1658.57], [-2766.13, -1662.44]], "holes": []}}, {"shape": {"outer": [[1782.35, 2013.27], [1798.94, 1996.5], [1905.54, 2107.52], [1892.56, 2119.26], [1890.65, 2119.68], [1889.03, 2119.95], [1887.02, 2119.78], [1885.9, 2119.22], [1883.98, 2116.99], [1877.42, 2107.65], [1871.81, 2100.71], [1863.25, 2091.36], [1850.32, 2076.88], [1842.63, 2069.57], [1827.56, 2055.3], [1809.52, 2038.38], [1782.35, 2013.27]], "holes": []}}, {"shape": {"outer": [[1104.38, 1847.6], [1078.09, 1822.41], [1116.2, 1782.91], [1142.49, 1808.1], [1104.38, 1847.6]], "holes": []}}, {"shape": {"outer": [[1183.94, 2640.0], [1166.54, 2647.33], [1154.92, 2619.95], [1172.32, 2612.61], [1183.94, 2640.0]], "holes": []}}, {"shape": {"outer": [[-1308.36, 113.41], [-1315.47, 87.95], [-1318.91, 87.71], [-1322.2, 88.31], [-1324.94, 89.54], [-1326.4, 90.81], [-1327.27, 92.07], [-1326.56, 102.66], [-1325.24, 105.1], [-1323.09, 107.93], [-1319.57, 110.84], [-1316.12, 112.67], [-1312.98, 113.71], [-1310.29, 113.87], [-1308.36, 113.41]], "holes": []}}, {"shape": {"outer": [[-1309.49, 157.31], [-1311.59, 154.89], [-1314.13, 153.11], [-1316.27, 151.38], [-1315.09, 151.33], [-1314.05, 151.21], [-1312.94, 151.01], [-1311.93, 150.7], [-1311.14, 150.4], [-1310.36, 150.05], [-1309.6, 149.69], [-1308.85, 149.29], [-1308.0, 148.8], [-1307.12, 148.23], [-1306.39, 147.62], [-1305.7, 146.95], [-1305.13, 146.39], [-1304.47, 145.67], [-1303.93, 144.98], [-1303.42, 144.35], [-1302.62, 143.42], [-1301.92, 142.74], [-1301.04, 142.03], [-1300.1, 141.4], [-1299.36, 140.98], [-1298.59, 140.61], [-1297.58, 140.2], [-1296.49, 139.85], [-1294.99, 139.47], [-1293.9, 139.28], [-1292.85, 139.23], [-1291.71, 139.26], [-1290.57, 139.47], [-1289.39, 139.79], [-1288.23, 140.32], [-1286.93, 141.14], [-1285.81, 142.13], [-1284.93, 143.03], [-1284.15, 144.06], [-1283.23, 145.7], [-1282.5, 147.42], [-1285.89, 151.23], [-1288.69, 151.68], [-1292.22, 152.51], [-1296.97, 154.14], [-1300.49, 155.41], [-1304.65, 156.54], [-1309.49, 157.31]], "holes": []}}, {"shape": {"outer": [[-2280.32, 233.92], [-2275.3, 233.77], [-2274.58, 237.25], [-2250.94, 230.07], [-2230.9, 228.49], [-2192.28, 226.76], [-2166.07, 221.63], [-2107.8, 218.45], [-2099.69, 216.6], [-2091.64, 212.99], [-2052.45, 213.62], [-2055.06, 188.49], [-2047.92, 183.59], [-2024.15, 181.03], [-2025.3, 171.69], [-2001.02, 169.12], [-1997.81, 167.15], [-1997.39, 164.38], [-1998.16, 155.02], [-1998.64, 151.29], [-1990.25, 150.79], [-1980.1, 141.37], [-2007.01, 144.02], [-2047.78, 144.94], [-2053.67, 145.3], [-2067.2, 146.12], [-2093.87, 144.14], [-2111.45, 148.27], [-2119.48, 148.26], [-2134.06, 143.04], [-2139.99, 141.96], [-2162.33, 141.98], [-2174.89, 141.97], [-2196.67, 144.22], [-2216.99, 149.18], [-2269.88, 164.83], [-2283.25, 166.72], [-2280.32, 233.92]], "holes": []}}, {"shape": {"outer": [[-1978.38, 192.91], [-1942.86, 188.7], [-1941.66, 198.7], [-1948.68, 199.54], [-1948.4, 201.87], [-1969.85, 204.41], [-1970.17, 201.75], [-1977.23, 202.59], [-1978.38, 192.91]], "holes": []}}, {"shape": {"outer": [[-1939.05, 201.68], [-1941.38, 181.52], [-1912.49, 178.33], [-1911.91, 183.58], [-1911.71, 184.5], [-1918.23, 185.26], [-1916.75, 197.97], [-1917.25, 198.72], [-1917.87, 199.24], [-1939.05, 201.68]], "holes": []}}, {"shape": {"outer": [[-1979.46, 206.21], [-1981.73, 186.74], [-2010.24, 189.98], [-2009.73, 194.45], [-2008.14, 195.45], [-2003.47, 195.17], [-2001.89, 208.79], [-1979.46, 206.21]], "holes": []}}, {"shape": {"outer": [[-1443.35, -34.06], [-1442.09, -34.12], [-1438.41, -34.29], [-1425.82, -34.86], [-1425.69, -33.67], [-1407.37, -34.49], [-1407.7, -42.17], [-1398.79, -42.56], [-1398.84, -43.68], [-1390.15, -44.07], [-1384.64, -44.31], [-1384.59, -43.24], [-1379.0, -43.49], [-1375.21, -43.65], [-1374.01, -16.46], [-1373.79, -11.34], [-1373.58, -6.11], [-1372.34, 21.15], [-1372.24, 23.74], [-1372.19, 25.28], [-1372.05, 28.7], [-1362.32, 28.21], [-1360.26, 28.13], [-1357.87, 27.99], [-1354.39, 27.67], [-1350.5, 27.47], [-1342.49, 27.0], [-1340.53, 26.9], [-1296.47, 24.98], [-1293.52, 25.06], [-1292.07, 25.23], [-1284.23, 24.88], [-1282.68, 24.77], [-1276.07, 24.33], [-1276.28, 19.02], [-1276.45, 15.58], [-1276.76, 8.95], [-1276.32, 8.92], [-1276.95, -4.59], [-1277.13, -8.45], [-1278.34, -8.39], [-1278.51, -12.01], [-1278.91, -12.0], [-1279.01, -14.35], [-1279.16, -17.5], [-1279.28, -20.1], [-1278.89, -20.12], [-1279.06, -23.78], [-1278.0, -23.82], [-1278.24, -28.97], [-1278.79, -40.96], [-1279.33, -40.93], [-1279.7, -49.18], [-1279.8, -51.36], [-1255.12, -52.49], [-1253.91, -53.54], [-1252.42, -53.97], [-1251.14, -53.73], [-1250.03, -52.77], [-1231.33, -53.63], [-1231.5, -57.4], [-1231.57, -58.87], [-1198.66, -60.38], [-1197.99, -60.44], [-1198.08, -61.68], [-1198.61, -69.98], [-1199.22, -80.68], [-1201.05, -80.49], [-1204.35, -80.33], [-1214.98, -79.8], [-1226.9, -79.21], [-1226.92, -79.65], [-1230.46, -79.47], [-1230.44, -79.1], [-1238.3, -78.72], [-1246.67, -78.31], [-1254.16, -77.95], [-1254.17, -78.26], [-1260.26, -77.95], [-1264.45, -77.8], [-1274.72, -77.24], [-1278.65, -77.01], [-1289.54, -76.29], [-1298.74, -75.87], [-1303.6, -75.66], [-1304.65, -75.56], [-1308.67, -75.08], [-1311.55, -74.93], [-1313.92, -74.8], [-1322.89, -74.32], [-1333.33, -73.7], [-1344.84, -73.17], [-1346.08, -73.16], [-1347.65, -73.06], [-1359.27, -72.53], [-1373.17, -71.92], [-1373.51, -79.54], [-1376.94, -79.35], [-1381.31, -79.14], [-1388.67, -78.73], [-1394.02, -78.47], [-1431.49, -76.64], [-1433.64, -76.52], [-1444.96, -76.09], [-1444.21, -58.31], [-1443.8, -44.08], [-1443.71, -41.85], [-1443.35, -34.06]], "holes": []}}, {"shape": {"outer": [[-126.43, -273.29], [-126.4, -272.06], [-125.97, -270.92], [-125.17, -269.99], [-124.1, -269.37], [-122.89, -269.16], [-121.77, -269.33], [-120.75, -269.85], [-119.95, -270.65], [-119.44, -271.66], [-119.27, -272.78], [-119.45, -273.9], [-119.99, -274.9], [-120.81, -275.69], [-121.83, -276.18], [-123.05, -276.34], [-124.25, -276.06], [-125.29, -275.41], [-126.04, -274.44], [-126.43, -273.29]], "holes": []}}, {"shape": {"outer": [[29.21, -133.61], [29.26, -132.38], [29.74, -131.25], [30.57, -130.33], [31.65, -129.74], [32.88, -129.57], [34.0, -129.77], [35.0, -130.32], [35.79, -131.14], [36.28, -132.18], [36.42, -133.3], [36.19, -134.42], [35.63, -135.41], [34.8, -136.18], [33.76, -136.65], [32.52, -136.77], [31.32, -136.47], [30.29, -135.79], [29.56, -134.79], [29.21, -133.61]], "holes": []}}, {"shape": {"outer": [[-111.06, 20.29], [-111.5, 21.12], [-111.66, 22.03], [-111.52, 22.96], [-111.09, 23.78], [-110.42, 24.44], [-109.52, 24.87], [-108.53, 24.98], [-107.56, 24.74], [-106.72, 24.19], [-106.13, 23.4], [-105.82, 22.45], [-105.86, 21.45], [-106.22, 20.53], [-106.89, 19.78], [-107.7, 19.32], [-108.62, 19.13], [-109.54, 19.25], [-110.39, 19.65], [-111.06, 20.29]], "holes": []}}, {"shape": {"outer": [[-144.48, -88.38], [-152.28, -80.11], [-150.87, -78.69], [-149.92, -78.35], [-148.0, -78.08], [-146.48, -78.19], [-145.07, -78.73], [-143.85, -79.59], [-142.06, -81.66], [-141.63, -83.37], [-141.68, -84.89], [-142.08, -86.57], [-142.82, -87.63], [-143.3, -87.17], [-144.48, -88.38]], "holes": []}}, {"shape": {"outer": [[-87.52, -162.12], [-79.91, -170.53], [-81.05, -171.73], [-82.61, -172.42], [-84.43, -172.62], [-86.83, -171.92], [-88.46, -171.0], [-89.68, -169.72], [-90.71, -167.35], [-90.97, -165.31], [-90.83, -163.52], [-89.79, -162.08], [-88.7, -163.34], [-87.52, -162.12]], "holes": []}}, {"shape": {"outer": [[-81.91, -157.08], [-74.31, -165.49], [-73.08, -164.46], [-72.27, -163.06], [-71.83, -161.28], [-72.22, -158.82], [-72.93, -157.09], [-74.06, -155.72], [-76.29, -154.4], [-78.29, -153.9], [-79.9, -154.21], [-81.48, -154.76], [-80.47, -155.93], [-81.91, -157.08]], "holes": []}}, {"shape": {"outer": [[-79.13, -97.12], [-70.45, -89.45], [-69.79, -90.17], [-69.28, -91.24], [-68.92, -92.46], [-68.82, -93.49], [-68.94, -94.61], [-69.19, -95.65], [-69.52, -96.6], [-70.02, -97.52], [-70.77, -98.4], [-71.53, -99.06], [-72.59, -99.71], [-73.51, -100.11], [-74.9, -100.43], [-76.28, -100.37], [-77.85, -99.9], [-79.28, -98.82], [-78.26, -98.11], [-79.13, -97.12]], "holes": []}}, {"shape": {"outer": [[-83.92, -91.88], [-75.51, -84.26], [-76.61, -83.02], [-78.01, -82.1], [-79.81, -81.72], [-82.26, -82.18], [-83.98, -82.94], [-85.32, -84.1], [-86.57, -86.36], [-87.03, -88.37], [-86.67, -89.96], [-85.9, -91.27], [-84.91, -90.49], [-83.92, -91.88]], "holes": []}}, {"shape": {"outer": [[819.49, 988.71], [837.3, 1002.93], [856.5, 977.32], [838.8, 963.09], [819.49, 988.71]], "holes": []}}, {"shape": {"outer": [[2808.2, 1870.18], [2803.89, 1878.4], [2808.92, 1890.9], [2824.75, 1903.46], [2839.63, 1913.53], [2839.57, 1878.12], [2808.2, 1870.18]], "holes": []}}, {"shape": {"outer": [[1419.65, 902.75], [1420.22, 900.78], [1420.31, 898.87], [1420.24, 896.53], [1417.04, 898.66], [1419.65, 902.75]], "holes": []}}, {"shape": {"outer": [[1413.35, 893.06], [1416.85, 890.77], [1415.74, 889.92], [1414.6, 889.22], [1412.58, 888.58], [1411.37, 888.26], [1410.17, 888.25], [1413.35, 893.06]], "holes": []}}, {"shape": {"outer": [[1300.76, 743.52], [1302.72, 741.52], [1305.0, 742.94], [1305.39, 744.27], [1306.82, 746.06], [1314.03, 752.42], [1325.39, 763.34], [1338.35, 776.86], [1350.69, 790.45], [1365.68, 806.21], [1370.66, 812.43], [1376.5, 819.62], [1389.76, 835.76], [1395.25, 842.46], [1402.22, 851.88], [1407.05, 859.05], [1409.79, 862.35], [1411.39, 865.05], [1413.49, 867.36], [1414.31, 868.57], [1419.88, 875.88], [1421.73, 879.26], [1424.47, 883.56], [1425.99, 884.67], [1423.34, 886.61], [1410.63, 868.95], [1397.97, 851.35], [1385.34, 834.95], [1372.36, 818.85], [1352.1, 795.89], [1330.55, 772.32], [1312.72, 754.23], [1300.76, 743.52]], "holes": []}}, {"shape": {"outer": [[1427.42, 892.64], [1431.09, 890.4], [1432.16, 892.39], [1432.87, 895.52], [1435.59, 900.1], [1437.74, 904.37], [1441.2, 908.77], [1450.45, 923.06], [1454.29, 929.3], [1457.7, 936.12], [1460.46, 940.09], [1466.67, 952.16], [1485.2, 989.24], [1495.55, 1010.3], [1510.94, 1052.65], [1508.54, 1053.7], [1507.7, 1055.75], [1503.13, 1058.31], [1493.14, 1042.2], [1479.55, 1022.14], [1460.72, 995.56], [1443.84, 974.3], [1424.7, 953.9], [1407.88, 938.15], [1406.41, 935.11], [1405.07, 933.93], [1400.84, 931.13], [1358.85, 891.66], [1354.46, 889.11], [1311.0, 849.68], [1251.79, 797.39], [1256.58, 792.08], [1262.2, 797.19], [1290.92, 823.18], [1382.06, 905.99], [1396.82, 919.47], [1433.52, 953.08], [1435.89, 951.07], [1445.77, 961.21], [1456.0, 971.55], [1458.53, 973.99], [1459.79, 975.24], [1461.36, 976.05], [1463.04, 976.5], [1465.1, 976.13], [1466.97, 975.05], [1468.13, 973.54], [1468.84, 971.87], [1468.91, 969.92], [1468.43, 968.25], [1451.75, 940.71], [1455.7, 937.78], [1434.02, 902.96], [1427.42, 892.64]], "holes": []}}, {"shape": {"outer": [[879.62, 821.61], [798.52, 747.84], [752.36, 798.22], [833.47, 871.99], [879.62, 821.61]], "holes": []}}, {"shape": {"outer": [[2632.61, 1298.87], [2623.69, 1288.63], [2635.56, 1278.34], [2644.48, 1288.57], [2632.61, 1298.87]], "holes": []}}, {"shape": {"outer": [[-2409.17, -1576.37], [-2402.88, -1577.12], [-2398.8, -1580.17], [-2397.44, -1585.15], [-2405.73, -1598.99], [-2425.9, -1614.01], [-2436.83, -1617.48], [-2441.76, -1614.05], [-2446.92, -1598.81], [-2445.69, -1593.41], [-2442.78, -1589.92], [-2432.21, -1584.0], [-2426.22, -1580.38], [-2409.17, -1576.37]], "holes": []}}, {"shape": {"outer": [[-326.87, -912.4], [-335.48, -919.12], [-320.9, -937.68], [-312.29, -930.96], [-326.87, -912.4]], "holes": []}}, {"shape": {"outer": [[-315.81, -903.67], [-324.43, -910.39], [-309.84, -928.94], [-301.23, -922.22], [-315.81, -903.67]], "holes": []}}, {"shape": {"outer": [[-304.82, -895.27], [-313.43, -901.98], [-298.85, -920.54], [-290.24, -913.82], [-304.82, -895.27]], "holes": []}}, {"shape": {"outer": [[2021.23, 1017.64], [2028.75, 1024.36], [2039.02, 1012.95], [2031.5, 1006.24], [2021.23, 1017.64]], "holes": []}}, {"shape": {"outer": [[2028.74, 1024.52], [2036.26, 1031.24], [2046.53, 1019.83], [2039.01, 1013.12], [2028.74, 1024.52]], "holes": []}}, {"shape": {"outer": [[2036.65, 1031.32], [2044.18, 1038.04], [2054.45, 1026.63], [2046.92, 1019.91], [2036.65, 1031.32]], "holes": []}}, {"shape": {"outer": [[1988.03, 1048.63], [2006.44, 1028.66], [2037.42, 997.3], [2042.14, 991.77], [1959.63, 917.01], [1926.77, 953.01], [1942.5, 966.52], [1922.07, 989.62], [1988.03, 1048.63]], "holes": []}}, {"shape": {"outer": [[473.36, -2519.12], [464.99, -2522.61], [460.81, -2531.23], [481.56, -2542.31], [490.42, -2552.76], [497.04, -2555.39], [502.86, -2547.91], [492.56, -2539.77], [486.33, -2526.85], [473.36, -2519.12]], "holes": []}}, {"shape": {"outer": [[-556.26, -2561.48], [-544.65, -2561.31], [-540.82, -2570.19], [-538.73, -2575.06], [-540.66, -2580.91], [-549.12, -2585.7], [-554.42, -2603.28], [-563.54, -2599.87], [-566.82, -2590.73], [-563.64, -2572.58], [-556.26, -2561.48]], "holes": []}}, {"shape": {"outer": [[-1304.91, -1301.7], [-1302.28, -1300.54], [-1299.34, -1299.78], [-1295.65, -1299.83], [-1292.17, -1300.86], [-1288.44, -1303.11], [-1286.72, -1304.86], [-1284.95, -1306.24], [-1283.39, -1307.18], [-1280.09, -1307.59], [-1276.62, -1307.71], [-1274.03, -1309.34], [-1272.12, -1311.6], [-1271.56, -1313.3], [-1271.39, -1314.98], [-1271.64, -1317.49], [-1271.87, -1319.99], [-1272.6, -1321.53], [-1273.49, -1322.88], [-1275.08, -1324.05], [-1276.93, -1324.54], [-1278.92, -1324.65], [-1280.78, -1324.05], [-1282.16, -1322.85], [-1283.9, -1321.98], [-1285.5, -1322.04], [-1286.83, -1322.36], [-1287.93, -1323.39], [-1288.83, -1324.75], [-1290.85, -1326.4], [-1293.28, -1327.08], [-1295.75, -1327.39], [-1297.55, -1327.07], [-1299.29, -1326.15], [-1300.19, -1325.19], [-1300.91, -1323.68], [-1300.99, -1322.23], [-1301.39, -1320.48], [-1302.94, -1319.57], [-1304.62, -1319.73], [-1306.43, -1320.28], [-1307.91, -1320.23], [-1309.33, -1319.8], [-1310.7, -1318.81], [-1311.79, -1317.46], [-1312.09, -1315.34], [-1312.05, -1313.23], [-1311.89, -1311.2], [-1311.35, -1309.14], [-1309.33, -1305.48], [-1307.21, -1303.43], [-1304.91, -1301.7]], "holes": []}}, {"shape": {"outer": [[-1720.15, -54.66], [-1664.5, -45.91], [-1670.91, -83.62], [-1672.65, -86.6], [-1676.41, -87.58], [-1680.12, -87.61], [-1710.76, -82.36], [-1713.9, -80.03], [-1716.12, -77.18], [-1718.98, -71.98], [-1720.53, -67.33], [-1721.3, -62.36], [-1721.25, -58.77], [-1720.84, -56.53], [-1720.15, -54.66]], "holes": []}}, {"shape": {"outer": [[-1470.51, -2416.98], [-1463.59, -2423.2], [-1469.19, -2429.39], [-1476.11, -2423.17], [-1470.51, -2416.98]], "holes": []}}, {"shape": {"outer": [[-1495.75, -2420.5], [-1482.68, -2420.8], [-1478.6, -2422.84], [-1477.51, -2424.87], [-1478.18, -2430.9], [-1480.37, -2432.4], [-1496.07, -2432.02], [-1498.19, -2430.97], [-1499.17, -2427.66], [-1498.18, -2423.13], [-1495.75, -2420.5]], "holes": []}}, {"shape": {"outer": [[-756.95, -1315.86], [-749.86, -1325.16], [-765.7, -1337.14], [-772.79, -1327.84], [-756.95, -1315.86]], "holes": []}}, {"shape": {"outer": [[-2553.96, -828.5], [-2552.48, -827.92], [-2550.2, -827.73], [-2548.96, -827.78], [-2547.21, -827.84], [-2544.47, -828.4], [-2535.58, -830.32], [-2523.31, -830.76], [-2518.61, -830.53], [-2514.87, -829.4], [-2512.51, -828.58], [-2503.72, -828.82], [-2496.93, -828.99], [-2491.34, -829.13], [-2490.15, -829.34], [-2488.95, -829.82], [-2488.41, -830.57], [-2488.18, -831.37], [-2488.45, -832.12], [-2489.19, -833.02], [-2498.59, -841.18], [-2504.16, -845.07], [-2509.3, -848.59], [-2517.09, -854.34], [-2519.34, -856.0], [-2531.04, -866.02], [-2549.85, -882.26], [-2550.74, -882.96], [-2551.7, -883.51], [-2552.71, -883.6], [-2553.78, -883.34], [-2554.57, -882.79], [-2555.27, -881.87], [-2555.56, -880.97], [-2555.49, -878.26], [-2555.02, -856.74], [-2555.06, -856.41], [-2555.19, -855.15], [-2555.74, -853.58], [-2556.51, -851.85], [-2556.67, -851.53], [-2556.9, -851.11], [-2556.99, -850.27], [-2556.9, -843.88], [-2556.87, -841.56], [-2556.76, -832.92], [-2556.46, -831.55], [-2555.37, -829.99], [-2553.96, -828.5]], "holes": []}}, {"shape": {"outer": [[1113.27, 157.98], [1127.52, 161.45], [1129.17, 154.08], [1115.26, 151.16], [1113.27, 157.98]], "holes": []}}, {"shape": {"outer": [[424.16, -3063.73], [426.37, -3066.73], [433.26, -3078.04], [444.01, -3096.2], [468.87, -3133.28], [494.26, -3166.79], [515.9, -3193.99], [559.03, -3238.35], [565.61, -3245.61], [605.09, -3280.42], [601.49, -3391.45], [595.0, -3591.73], [380.16, -3581.39], [359.18, -3580.37], [328.36, -3680.38], [326.53, -3683.76], [324.05, -3685.76], [227.05, -3682.67], [220.81, -3683.52], [212.44, -3686.04], [205.75, -3690.68], [200.07, -3696.02], [194.98, -3704.83], [194.11, -3711.0], [193.92, -3717.54], [195.85, -3771.81], [45.19, -3767.05], [-21.43, -3764.95], [-213.87, -3757.01], [-216.63, -3756.9], [-210.16, -3625.84], [-210.54, -3618.88], [-210.15, -3612.72], [-209.9, -3603.86], [-213.03, -3595.77], [-215.26, -3591.39], [-219.97, -3586.43], [-219.14, -3579.61], [-206.95, -3479.66], [-200.61, -3358.1], [-325.25, -3351.84], [-320.08, -3285.78], [-317.09, -3241.73], [-315.26, -3223.31], [-311.88, -3206.24], [-308.77, -3193.64], [-305.77, -3184.92], [-300.67, -3173.39], [-294.73, -3163.16], [-280.49, -3140.78], [-273.27, -3131.61], [-266.71, -3124.73], [-247.2, -3105.52], [-234.01, -3094.93], [-210.26, -3079.45], [-199.65, -3072.97], [-194.37, -3070.53], [-185.03, -3067.62], [-145.19, -3056.49], [-126.51, -3051.11], [-96.09, -3040.42], [-87.95, -3036.7], [-79.49, -3031.82], [-63.43, -3022.31], [-57.51, -3017.43], [-46.01, -3005.21], [-36.44, -2994.24], [-25.6, -2979.83], [-14.24, -2961.84], [-2.06, -2941.12], [7.4, -2923.94], [24.68, -2886.19], [33.12, -2864.52], [39.91, -2844.37], [40.59, -2840.92], [41.31, -2830.7], [41.26, -2822.19], [39.48, -2803.24], [33.47, -2755.33], [30.44, -2730.33], [30.02, -2712.55], [31.04, -2700.58], [33.39, -2686.52], [34.88, -2680.08], [37.47, -2670.48], [49.6, -2640.68], [55.47, -2627.87], [58.75, -2624.65], [60.74, -2624.06], [62.6, -2624.11], [70.11, -2627.47], [106.73, -2644.97], [122.32, -2651.7], [141.84, -2663.73], [161.44, -2679.08], [182.42, -2698.72], [203.17, -2719.65], [228.67, -2743.3], [238.14, -2749.67], [246.2, -2753.6], [256.29, -2757.59], [268.79, -2762.01], [278.12, -2766.53], [285.05, -2770.8], [291.56, -2777.09], [298.39, -2784.86], [302.31, -2790.52], [306.57, -2797.48], [311.1, -2808.15], [312.9, -2816.34], [313.66, -2822.47], [314.05, -2828.39], [318.74, -2846.28], [323.37, -2859.91], [326.39, -2864.43], [330.12, -2870.27], [348.88, -2915.81], [357.6, -2941.03], [360.86, -2949.71], [374.6, -2975.99], [391.08, -3007.82], [393.98, -3015.08], [394.83, -3019.69], [395.17, -3025.25], [405.36, -3028.61], [405.9, -3028.84], [421.59, -3055.98], [424.16, -3063.73]], "holes": []}}, {"shape": {"outer": [[875.83, 310.74], [927.15, 356.46], [937.38, 365.58], [1012.3, 432.32], [995.61, 450.9], [863.35, 328.72], [861.02, 326.57], [865.9, 321.4], [870.51, 316.53], [875.83, 310.74]], "holes": []}}, {"shape": {"outer": [[-2454.56, -196.7], [-2450.03, -198.74], [-2444.38, -200.69], [-2437.77, -202.62], [-2437.83, -203.82], [-2450.27, -203.18], [-2450.18, -201.65], [-2454.74, -197.29], [-2454.56, -196.7]], "holes": []}}, {"shape": {"outer": [[-2470.82, -191.87], [-2467.62, -190.25], [-2466.28, -189.93], [-2465.14, -190.11], [-2464.12, -190.65], [-2461.12, -192.94], [-2457.88, -195.05], [-2459.33, -197.14], [-2469.22, -194.37], [-2470.3, -193.76], [-2470.65, -192.83], [-2470.82, -191.87]], "holes": []}}, {"shape": {"outer": [[-2516.72, -199.75], [-2453.86, -202.68], [-2456.3, -200.32], [-2457.3, -199.53], [-2458.26, -199.07], [-2469.46, -195.86], [-2471.29, -194.86], [-2473.39, -192.92], [-2478.11, -194.93], [-2482.97, -196.56], [-2490.02, -198.19], [-2497.22, -199.01], [-2516.71, -198.55], [-2516.72, -199.75]], "holes": []}}, {"shape": {"outer": [[-2452.14, -173.06], [-2461.36, -176.38], [-2461.18, -177.67], [-2456.51, -176.12], [-2452.89, -175.34], [-2450.47, -175.01], [-2450.42, -173.55], [-2450.89, -172.97], [-2451.53, -172.82], [-2452.14, -173.06]], "holes": []}}, {"shape": {"outer": [[-2442.75, -169.76], [-2446.55, -171.02], [-2447.03, -171.35], [-2447.21, -171.84], [-2447.13, -174.8], [-2442.03, -175.06], [-2436.49, -176.1], [-2435.54, -174.38], [-2442.75, -169.76]], "holes": []}}, {"shape": {"outer": [[-2465.98, -173.94], [-2483.41, -154.98], [-2486.52, -151.83], [-2489.85, -148.92], [-2495.31, -144.95], [-2494.66, -143.09], [-2482.39, -148.49], [-2470.34, -154.33], [-2453.93, -163.12], [-2446.78, -167.35], [-2465.98, -173.94]], "holes": []}}, {"shape": {"outer": [[2806.18, -3189.56], [2820.08, -3190.1], [2818.94, -3198.16], [2823.23, -3199.03], [2820.67, -3207.62], [2806.49, -3208.14], [2806.18, -3189.56]], "holes": []}}, {"shape": {"outer": [[2587.32, 2712.78], [2579.07, 2704.79], [2572.62, 2711.4], [2580.88, 2719.38], [2587.32, 2712.78]], "holes": []}}, {"shape": {"outer": [[2832.23, -2151.51], [2831.78, -2141.34], [2849.3, -2140.58], [2850.76, -2138.82], [2862.02, -2138.32], [2862.55, -2150.18], [2832.23, -2151.51]], "holes": []}}, {"shape": {"outer": [[-515.39, -2450.57], [-513.85, -2449.72], [-512.08, -2449.71], [-510.81, -2450.33], [-509.89, -2451.39], [-509.46, -2452.73], [-510.02, -2455.41], [-510.24, -2458.12], [-509.8, -2462.83], [-510.0, -2464.53], [-510.84, -2466.02], [-512.19, -2467.08], [-513.17, -2467.43], [-514.2, -2467.55], [-516.24, -2467.46], [-518.15, -2466.7], [-519.7, -2465.37], [-520.73, -2463.6], [-521.12, -2461.42], [-520.7, -2459.24], [-519.54, -2457.35], [-518.79, -2457.44], [-518.11, -2457.14], [-517.66, -2456.5], [-517.62, -2455.72], [-518.0, -2455.05], [-516.93, -2453.01], [-516.03, -2453.01], [-515.3, -2452.51], [-514.98, -2451.52], [-515.39, -2450.57]], "holes": []}}, {"shape": {"outer": [[228.14, 904.32], [229.21, 902.68], [230.97, 901.81], [232.94, 901.93], [234.72, 903.21], [235.47, 905.27], [234.94, 907.4], [233.3, 908.87], [231.13, 909.16], [229.63, 908.58], [228.52, 907.42], [227.99, 905.92], [228.14, 904.32]], "holes": []}}, {"shape": {"outer": [[-2116.96, -1777.97], [-2118.26, -1779.61], [-2119.89, -1780.93], [-2121.76, -1781.86], [-2124.03, -1782.39], [-2126.35, -1782.37], [-2128.59, -1781.78], [-2135.28, -1776.63], [-2143.44, -1765.73], [-2138.51, -1761.45], [-2137.14, -1761.13], [-2135.74, -1761.26], [-2134.47, -1761.84], [-2133.47, -1762.79], [-2132.82, -1764.02], [-2132.6, -1765.38], [-2133.6, -1769.49], [-2125.78, -1776.79], [-2124.02, -1776.73], [-2121.73, -1774.9], [-2120.52, -1774.16], [-2119.12, -1774.09], [-2117.84, -1774.67], [-2117.08, -1775.62], [-2116.77, -1776.78], [-2116.96, -1777.97]], "holes": []}}, {"shape": {"outer": [[1166.55, 1827.98], [1163.0, 1826.21], [1157.83, 1826.65], [1152.63, 1829.28], [1143.6, 1842.43], [1144.13, 1850.86], [1145.06, 1851.65], [1146.17, 1858.21], [1150.62, 1861.45], [1155.18, 1861.75], [1159.19, 1860.13], [1162.51, 1854.97], [1161.98, 1849.06], [1161.34, 1845.76], [1162.02, 1842.13], [1163.95, 1838.29], [1166.12, 1835.24], [1167.57, 1832.24], [1166.55, 1827.98]], "holes": []}}, {"shape": {"outer": [[-1159.77, -1178.37], [-1163.21, -1177.83], [-1166.69, -1178.03], [-1170.04, -1178.97], [-1173.11, -1180.6], [-1175.97, -1183.09], [-1178.18, -1186.16], [-1179.6, -1189.68], [-1181.36, -1184.56], [-1192.46, -1190.23], [-1187.88, -1198.59], [-1178.23, -1193.25], [-1176.86, -1197.1], [-1170.15, -1193.76], [-1157.12, -1185.3], [-1157.53, -1182.25], [-1159.77, -1178.37]], "holes": []}}, {"shape": {"outer": [[-487.82, -2273.38], [-514.62, -2272.35], [-513.38, -2239.99], [-491.79, -2240.81], [-484.21, -2234.98], [-477.77, -2235.26], [-476.09, -2235.98], [-475.77, -2237.0], [-476.03, -2240.31], [-476.78, -2241.65], [-478.18, -2242.05], [-477.58, -2242.73], [-486.91, -2249.91], [-487.82, -2273.38]], "holes": []}}, {"shape": {"outer": [[2550.25, 1189.59], [2559.79, 1181.03], [2549.2, 1169.3], [2539.65, 1177.86], [2550.25, 1189.59]], "holes": []}}, {"shape": {"outer": [[-577.68, -2095.33], [-571.55, -2101.55], [-569.2, -2101.38], [-565.19, -2095.09], [-564.93, -2089.03], [-563.27, -2087.42], [-564.04, -2082.65], [-566.8, -2080.62], [-571.71, -2080.21], [-573.31, -2081.99], [-573.9, -2085.5], [-575.69, -2088.61], [-577.51, -2090.34], [-577.68, -2095.33]], "holes": []}}, {"shape": {"outer": [[2257.51, 857.92], [2259.02, 858.15], [2259.98, 860.33], [2260.82, 860.83], [2261.9, 860.63], [2262.44, 860.26], [2264.24, 861.95], [2264.47, 862.39], [2264.51, 862.89], [2264.31, 863.42], [2263.91, 863.81], [2257.07, 869.71], [2247.61, 861.44], [2250.03, 854.07], [2250.94, 854.27], [2252.64, 855.61], [2253.06, 855.74], [2253.49, 855.7], [2253.93, 855.39], [2254.17, 854.91], [2254.52, 851.58], [2256.16, 851.23], [2257.84, 851.35], [2259.39, 851.92], [2260.73, 852.88], [2257.33, 857.32], [2257.51, 857.92]], "holes": []}}, {"shape": {"outer": [[-399.42, -2472.34], [-401.67, -2472.08], [-404.05, -2472.25], [-406.14, -2473.3], [-407.79, -2474.97], [-408.83, -2477.06], [-409.14, -2479.37], [-408.7, -2481.66], [-407.56, -2483.7], [-405.94, -2485.2], [-403.94, -2486.15], [-401.76, -2486.44], [-399.58, -2486.08], [-397.61, -2485.08], [-396.03, -2483.55], [-394.99, -2481.61], [-394.04, -2478.97], [-392.83, -2476.83], [-392.41, -2475.78], [-392.39, -2474.66], [-392.79, -2473.61], [-393.5, -2472.82], [-394.43, -2472.32], [-395.48, -2472.17], [-397.51, -2472.39], [-399.42, -2472.34]], "holes": []}}, {"shape": {"outer": [[-2548.43, 221.45], [-2533.0, 220.78], [-2534.25, 192.08], [-2549.68, 192.75], [-2548.43, 221.45]], "holes": []}}, {"shape": {"outer": [[-2569.87, 222.39], [-2554.43, 221.72], [-2555.68, 193.02], [-2571.11, 193.69], [-2569.87, 222.39]], "holes": []}}, {"shape": {"outer": [[-1459.12, -263.21], [-1460.21, -265.15], [-1460.97, -267.82], [-1462.48, -296.55], [-1462.38, -299.77], [-1460.01, -299.8], [-1458.21, -266.54], [-1458.2, -263.33], [-1459.12, -263.21]], "holes": []}}, {"shape": {"outer": [[-939.46, -869.27], [-925.71, -856.7], [-924.32, -857.97], [-924.31, -858.85], [-924.18, -860.66], [-924.96, -863.12], [-926.44, -865.22], [-934.62, -872.37], [-939.44, -869.87], [-939.57, -869.58], [-939.46, -869.27]], "holes": []}}, {"shape": {"outer": [[-950.13, -879.25], [-947.26, -876.41], [-946.63, -876.04], [-945.95, -876.09], [-942.13, -878.21], [-941.77, -878.62], [-941.91, -879.13], [-945.2, -881.89], [-947.83, -880.92], [-950.13, -879.25]], "holes": []}}, {"shape": {"outer": [[-954.6, -882.69], [-964.47, -891.53], [-973.2, -900.49], [-982.55, -911.57], [-985.89, -915.57], [-984.82, -916.77], [-949.47, -885.59], [-951.34, -883.98], [-954.6, -882.69]], "holes": []}}, {"shape": {"outer": [[-1481.04, -489.25], [-1480.47, -485.03], [-1479.13, -455.16], [-1477.85, -437.41], [-1477.08, -419.83], [-1475.97, -407.07], [-1473.98, -390.95], [-1478.24, -390.7], [-1480.09, -400.19], [-1481.88, -411.36], [-1483.13, -425.16], [-1483.38, -435.0], [-1482.26, -451.15], [-1482.04, -458.69], [-1483.37, -485.76], [-1483.26, -489.21], [-1481.04, -489.25]], "holes": []}}, {"shape": {"outer": [[-1497.77, -739.81], [-1495.72, -700.05], [-1496.07, -696.94], [-1497.09, -693.99], [-1498.33, -691.85], [-1499.92, -689.95], [-1501.48, -690.1], [-1503.38, -731.53], [-1503.34, -733.52], [-1503.0, -735.49], [-1502.25, -737.7], [-1501.13, -739.75], [-1497.77, -739.81]], "holes": []}}, {"shape": {"outer": [[-1483.17, -753.94], [-1484.04, -771.19], [-1478.94, -771.45], [-1475.82, -771.42], [-1473.54, -771.05], [-1471.33, -770.19], [-1469.18, -768.37], [-1468.27, -766.98], [-1467.64, -765.0], [-1467.35, -762.99], [-1467.62, -760.29], [-1468.66, -758.18], [-1470.35, -756.21], [-1472.68, -754.91], [-1475.86, -754.28], [-1479.44, -754.02], [-1483.17, -753.94]], "holes": []}}, {"shape": {"outer": [[-1501.63, -854.07], [-1500.04, -826.49], [-1499.72, -776.31], [-1499.22, -763.97], [-1499.67, -760.32], [-1500.32, -758.44], [-1503.41, -758.3], [-1504.4, -760.5], [-1505.07, -763.26], [-1505.93, -782.79], [-1505.7, -787.91], [-1503.88, -802.78], [-1503.12, -808.83], [-1502.6, -818.87], [-1502.67, -827.14], [-1504.07, -853.92], [-1501.63, -854.07]], "holes": []}}, {"shape": {"outer": [[-1496.18, -1231.22], [-1491.86, -1141.52], [-1491.83, -1118.5], [-1492.52, -1111.95], [-1495.6, -1095.48], [-1496.17, -1090.34], [-1496.89, -1070.01], [-1499.46, -1070.1], [-1499.91, -1112.34], [-1498.99, -1154.15], [-1499.56, -1181.22], [-1497.82, -1196.03], [-1497.39, -1201.93], [-1497.22, -1207.57], [-1497.9, -1231.15], [-1496.18, -1231.22]], "holes": []}}, {"shape": {"outer": [[-1500.3, -1348.37], [-1499.35, -1328.41], [-1499.15, -1322.56], [-1499.42, -1316.7], [-1500.2, -1310.56], [-1500.46, -1306.52], [-1500.68, -1302.84], [-1501.01, -1294.01], [-1500.2, -1267.81], [-1501.73, -1267.77], [-1503.05, -1310.47], [-1501.44, -1325.14], [-1501.37, -1327.67], [-1502.12, -1348.24], [-1500.3, -1348.37]], "holes": []}}, {"shape": {"outer": [[-1049.05, -966.95], [-1116.59, -1028.26], [-1119.22, -1031.28], [-1121.18, -1034.98], [-1120.07, -1036.29], [-1116.1, -1034.63], [-1113.9, -1033.22], [-1089.21, -1010.97], [-1083.24, -1004.55], [-1078.64, -998.74], [-1074.68, -993.76], [-1070.48, -989.44], [-1046.52, -967.74], [-1047.53, -967.08], [-1049.05, -966.95]], "holes": []}}, {"shape": {"outer": [[-1377.51, -1264.46], [-1466.94, -1345.73], [-1471.55, -1349.98], [-1476.52, -1353.79], [-1480.72, -1356.51], [-1485.11, -1358.91], [-1485.17, -1361.72], [-1480.59, -1360.27], [-1476.16, -1358.43], [-1470.13, -1355.13], [-1464.55, -1351.11], [-1459.53, -1346.43], [-1382.17, -1276.2], [-1381.32, -1275.25], [-1380.91, -1274.3], [-1379.94, -1270.22], [-1378.68, -1267.51], [-1376.95, -1265.06], [-1377.51, -1264.46]], "holes": []}}, {"shape": {"outer": [[-1272.84, -1169.94], [-1335.22, -1226.57], [-1369.68, -1264.17], [-1369.23, -1264.75], [-1268.56, -1173.27], [-1272.84, -1169.94]], "holes": []}}, {"shape": {"outer": [[-1136.67, -1048.95], [-1139.28, -1049.86], [-1141.98, -1051.31], [-1270.21, -1167.18], [-1265.67, -1170.55], [-1139.11, -1056.07], [-1136.68, -1052.46], [-1135.61, -1050.04], [-1136.67, -1048.95]], "holes": []}}, {"shape": {"outer": [[537.96, 5.06], [532.71, 2.77], [526.76, 0.12], [520.31, -3.42], [513.66, -7.65], [508.45, -11.85], [501.61, -17.62], [502.74, -18.92], [508.08, -15.55], [517.82, -9.73], [525.92, -5.05], [529.88, -2.79], [533.74, -1.21], [540.52, 0.9], [545.81, 2.27], [546.24, 7.87], [543.72, 7.09], [537.96, 5.06]], "holes": []}}, {"shape": {"outer": [[594.28, 15.19], [600.65, 18.26], [685.0, 41.19], [694.15, 44.0], [702.99, 47.65], [710.29, 51.41], [717.25, 55.75], [723.85, 60.62], [734.77, 70.21], [765.74, 98.57], [766.87, 97.34], [745.3, 77.35], [739.4, 71.58], [733.31, 64.75], [729.38, 60.28], [725.14, 56.08], [719.55, 51.36], [713.57, 47.14], [707.25, 43.45], [700.63, 40.32], [688.39, 36.53], [652.9, 26.59], [630.28, 20.86], [612.71, 15.91], [602.3, 12.99], [599.06, 12.38], [595.02, 12.16], [594.28, 15.19]], "holes": []}}, {"shape": {"outer": [[1685.44, 1779.73], [1701.07, 1777.05], [1695.65, 1748.67], [1680.12, 1751.56], [1685.44, 1779.73]], "holes": []}}, {"shape": {"outer": [[1783.08, 1669.1], [1735.73, 1613.19], [1654.88, 1680.16], [1703.1, 1733.19], [1783.08, 1669.1]], "holes": []}}, {"shape": {"outer": [[1547.88, 2068.62], [1557.38, 2066.34], [1555.15, 2057.15], [1545.66, 2059.42], [1547.88, 2068.62]], "holes": []}}, {"shape": {"outer": [[-1520.59, -330.57], [-1523.3, -330.29], [-1525.95, -330.96], [-1528.21, -332.48], [-1529.83, -334.68], [-1530.58, -337.29], [-1530.41, -340.01], [-1529.32, -342.51], [-1527.63, -344.34], [-1525.47, -345.54], [-1523.03, -346.03], [-1520.55, -345.73], [-1518.3, -344.68], [-1516.48, -342.99], [-1515.28, -340.82], [-1514.82, -338.38], [-1515.14, -335.92], [-1516.21, -333.68], [-1518.12, -331.74], [-1520.59, -330.57]], "holes": []}}, {"shape": {"outer": [[2933.47, 2432.06], [2933.02, 2436.13], [2933.51, 2440.11], [2935.13, 2444.38], [2937.61, 2447.81], [2940.5, 2450.18], [2943.68, 2451.64], [2947.02, 2452.49], [2948.14, 2447.52], [2949.34, 2443.48], [2950.46, 2440.58], [2951.4, 2438.37], [2933.47, 2432.06]], "holes": []}}, {"shape": {"outer": [[2626.02, 2700.25], [2621.75, 2695.36], [2621.28, 2694.37], [2620.86, 2693.21], [2620.22, 2686.43], [2619.59, 2684.23], [2618.73, 2683.31], [2615.5, 2681.66], [2613.16, 2681.9], [2612.41, 2680.97], [2612.9, 2678.85], [2612.65, 2677.8], [2611.31, 2675.82], [2610.39, 2675.07], [2609.97, 2674.03], [2610.7, 2671.95], [2611.52, 2671.2], [2611.93, 2670.07], [2612.18, 2669.01], [2612.12, 2666.73], [2612.48, 2665.66], [2613.3, 2664.97], [2616.62, 2663.82], [2618.81, 2664.14], [2620.25, 2665.88], [2623.21, 2667.59], [2625.73, 2669.96], [2627.92, 2674.02], [2629.01, 2677.28], [2629.98, 2677.81], [2630.23, 2678.97], [2630.19, 2681.25], [2630.61, 2682.36], [2631.66, 2681.99], [2632.89, 2680.12], [2633.91, 2680.59], [2634.71, 2681.35], [2633.32, 2683.29], [2631.52, 2684.95], [2631.16, 2686.02], [2631.89, 2688.17], [2634.36, 2690.49], [2634.64, 2692.82], [2627.76, 2700.2], [2626.02, 2700.25]], "holes": []}}, {"shape": {"outer": [[2551.0, 2671.45], [2569.77, 2689.13], [2575.3, 2683.29], [2578.59, 2685.66], [2580.9, 2685.31], [2585.07, 2683.72], [2588.75, 2683.36], [2589.21, 2681.9], [2589.6, 2681.59], [2590.23, 2681.37], [2590.79, 2679.49], [2590.34, 2679.17], [2590.64, 2677.97], [2577.45, 2670.26], [2576.81, 2670.31], [2576.15, 2669.76], [2575.83, 2668.88], [2565.71, 2663.77], [2562.88, 2663.57], [2561.06, 2664.32], [2558.36, 2666.95], [2556.73, 2665.42], [2551.0, 2671.45]], "holes": []}}, {"shape": {"outer": [[-2371.4, -349.82], [-2353.56, -350.62], [-2356.32, -414.02], [-2374.02, -413.26], [-2371.4, -349.82]], "holes": []}}, {"shape": {"outer": [[-2240.44, -175.39], [-2239.68, -175.67], [-2240.16, -187.27], [-2238.02, -187.41], [-2238.15, -190.66], [-2240.42, -192.48], [-2242.18, -190.52], [-2242.67, -189.6], [-2242.75, -188.58], [-2242.29, -186.48], [-2242.31, -184.56], [-2243.24, -182.9], [-2245.39, -181.6], [-2248.13, -181.59], [-2250.08, -182.48], [-2251.41, -184.37], [-2251.83, -186.35], [-2251.58, -187.74], [-2250.96, -188.74], [-2250.98, -189.58], [-2254.46, -192.6], [-2256.37, -191.25], [-2255.92, -186.56], [-2253.34, -186.74], [-2252.74, -174.85], [-2252.14, -174.47], [-2251.29, -175.08], [-2249.4, -176.62], [-2246.51, -177.32], [-2243.03, -176.87], [-2241.28, -175.56], [-2240.44, -175.39]], "holes": []}}, {"shape": {"outer": [[-2249.81, -191.78], [-2249.56, -190.0], [-2248.68, -189.03], [-2247.06, -188.7], [-2245.75, -189.12], [-2244.75, -190.1], [-2244.56, -191.94], [-2244.64, -194.22], [-2249.88, -194.06], [-2249.81, -191.78]], "holes": []}}, {"shape": {"outer": [[-2229.0, -182.33], [-2227.05, -182.42], [-2225.3, -184.72], [-2222.97, -185.68], [-2201.62, -186.49], [-2202.12, -198.22], [-2224.48, -197.29], [-2227.05, -196.41], [-2228.78, -194.91], [-2229.49, -193.65], [-2229.0, -182.33]], "holes": []}}, {"shape": {"outer": [[-2200.02, -198.27], [-2189.08, -198.65], [-2188.47, -181.35], [-2177.89, -181.72], [-2177.71, -176.91], [-2199.24, -176.15], [-2200.02, -198.27]], "holes": []}}, {"shape": {"outer": [[-2169.78, -195.93], [-2169.95, -199.67], [-2158.51, -200.2], [-2158.34, -196.44], [-2169.78, -195.93]], "holes": []}}, {"shape": {"outer": [[-2154.01, -188.08], [-2154.54, -200.33], [-2115.16, -202.04], [-2115.06, -199.68], [-2113.03, -199.77], [-2112.61, -189.87], [-2154.01, -188.08]], "holes": []}}, {"shape": {"outer": [[-2180.08, -37.23], [-2164.87, -37.74], [-2165.42, -54.54], [-2137.58, -55.88], [-2136.22, -57.96], [-2136.27, -59.84], [-2131.69, -60.15], [-2132.15, -78.81], [-2142.42, -78.52], [-2142.63, -76.73], [-2143.46, -75.54], [-2144.54, -75.03], [-2158.45, -74.6], [-2163.88, -70.66], [-2167.79, -69.57], [-2174.31, -69.46], [-2178.02, -68.01], [-2181.02, -65.44], [-2180.08, -37.23]], "holes": []}}, {"shape": {"outer": [[-2282.3, 153.38], [-2282.51, 150.71], [-2275.34, 147.52], [-2269.06, 144.14], [-2265.81, 140.53], [-2262.65, 131.24], [-2259.45, 121.55], [-2253.48, 114.79], [-2231.74, 91.93], [-2229.08, 89.71], [-2226.28, 88.97], [-2211.93, 87.5], [-2198.36, 87.99], [-2184.49, 91.1], [-2174.41, 91.25], [-2163.94, 89.68], [-2149.46, 89.53], [-2149.19, 100.75], [-2147.8, 103.16], [-2137.97, 107.59], [-2133.66, 107.74], [-2128.09, 104.01], [-2126.87, 101.04], [-2125.83, 100.7], [-2124.17, 100.74], [-2124.2, 105.64], [-2122.83, 107.16], [-2118.81, 108.86], [-2117.6, 113.96], [-2117.42, 126.49], [-2133.94, 125.79], [-2148.12, 125.79], [-2163.49, 126.63], [-2177.89, 128.18], [-2195.54, 130.98], [-2213.03, 134.8], [-2239.84, 142.42], [-2265.89, 150.05], [-2278.14, 152.65], [-2282.3, 153.38]], "holes": []}}, {"shape": {"outer": [[-2115.68, 126.57], [-2115.9, 116.56], [-2115.4, 115.66], [-2114.55, 115.34], [-2108.45, 115.09], [-2106.64, 114.62], [-2105.15, 113.35], [-2104.16, 111.97], [-2103.54, 110.5], [-2102.67, 104.98], [-2101.33, 100.81], [-2087.33, 106.46], [-2079.26, 108.01], [-2071.95, 108.43], [-2066.24, 112.43], [-2060.25, 114.01], [-2055.72, 116.96], [-2051.57, 118.58], [-2053.53, 124.03], [-2052.89, 126.59], [-2051.58, 128.27], [-2047.93, 129.52], [-2042.11, 128.96], [-2036.06, 125.91], [-2035.22, 129.53], [-2035.43, 131.76], [-2037.28, 131.99], [-2050.15, 131.8], [-2064.47, 131.05], [-2115.68, 126.57]], "holes": []}}, {"shape": {"outer": [[-2148.47, 83.34], [-2148.89, 68.67], [-2137.73, 66.87], [-2100.88, 68.27], [-2100.64, 64.48], [-2083.93, 64.42], [-2079.52, 59.18], [-2027.65, 58.63], [-2028.12, 25.86], [-2009.64, 25.34], [-2008.5, 61.58], [-2011.89, 66.73], [-2016.97, 70.5], [-2022.22, 71.0], [-2043.87, 77.1], [-2064.54, 81.71], [-2082.46, 83.84], [-2099.31, 83.75], [-2113.06, 81.27], [-2125.56, 80.86], [-2138.86, 81.67], [-2148.47, 83.34]], "holes": []}}, {"shape": {"outer": [[-2261.63, 115.63], [-2258.36, 116.5], [-2232.87, 88.97], [-2232.97, 85.64], [-2241.73, 77.78], [-2247.41, 79.22], [-2256.41, 78.6], [-2259.92, 80.5], [-2258.29, 88.03], [-2259.14, 98.27], [-2261.63, 115.63]], "holes": []}}, {"shape": {"outer": [[-2016.91, 120.51], [-2013.98, 124.91], [-2009.31, 126.95], [-1969.19, 122.63], [-1976.63, 106.7], [-1987.06, 91.78], [-1999.13, 74.03], [-2012.26, 74.54], [-2008.31, 87.15], [-2016.91, 120.51]], "holes": []}}, {"shape": {"outer": [[-2004.6, 55.33], [-2001.77, 51.22], [-1998.98, 49.86], [-1976.32, 45.89], [-1964.4, 45.41], [-1958.81, 47.94], [-1955.52, 52.89], [-1955.92, 56.94], [-1958.28, 59.43], [-1969.24, 62.37], [-1991.1, 69.9], [-1995.51, 70.28], [-1999.31, 67.52], [-2004.54, 62.04], [-2004.6, 55.33]], "holes": []}}, {"shape": {"outer": [[-2001.16, 20.83], [-1961.79, 19.59], [-1962.12, 8.96], [-1959.88, 8.88], [-1960.43, -8.53], [-1953.91, -8.74], [-1954.12, -15.4], [-1993.82, -14.15], [-1993.48, -3.39], [-2001.92, -3.13], [-2001.16, 20.83]], "holes": []}}, {"shape": {"outer": [[-1987.64, 77.18], [-1988.81, 76.09], [-1987.83, 74.83], [-1981.17, 70.69], [-1958.19, 64.14], [-1955.05, 61.68], [-1951.76, 61.37], [-1951.53, 64.47], [-1939.62, 64.09], [-1939.8, 60.67], [-1931.67, 63.34], [-1924.33, 70.84], [-1909.79, 77.57], [-1894.28, 81.07], [-1893.42, 82.23], [-1932.45, 111.55], [-1945.35, 118.8], [-1959.38, 123.85], [-1961.82, 115.6], [-1966.32, 104.45], [-1976.27, 89.66], [-1987.64, 77.18]], "holes": []}}, {"shape": {"outer": [[-2103.33, -11.55], [-2105.14, -6.19], [-2104.94, 0.8], [-2094.17, 10.84], [-2087.55, 16.79], [-2046.79, 15.53], [-2043.6, 12.55], [-2041.61, 0.19], [-2038.15, -5.97], [-2021.67, -9.05], [-2016.17, -6.6], [-2012.91, -0.63], [-2011.1, 0.71], [-2010.62, -11.79], [-2017.91, -11.87], [-2018.1, -15.12], [-2103.33, -11.55]], "holes": []}}, {"shape": {"outer": [[-2162.61, 13.66], [-2162.94, 10.7], [-2161.47, 5.48], [-2158.15, 2.67], [-2152.82, 1.33], [-2146.16, 2.16], [-2138.63, 3.47], [-2131.48, 3.44], [-2127.07, 2.62], [-2110.84, -1.23], [-2110.47, 11.65], [-2117.07, 13.12], [-2120.82, 13.06], [-2132.18, 11.6], [-2141.23, 10.67], [-2151.19, 10.95], [-2159.56, 12.89], [-2162.61, 13.66]], "holes": []}}, {"shape": {"outer": [[-2688.98, 63.12], [-2681.79, 66.19], [-2650.51, 56.27], [-2640.74, 45.96], [-2617.64, 44.78], [-2617.53, 51.49], [-2594.2, 50.58], [-2594.22, 54.08], [-2584.42, 53.9], [-2584.25, 61.58], [-2583.06, 62.36], [-2538.15, 60.61], [-2536.39, 58.75], [-2536.82, 45.79], [-2536.9, 37.23], [-2558.19, 37.84], [-2558.3, 34.01], [-2564.76, 34.33], [-2564.97, 29.49], [-2557.8, 29.28], [-2558.3, 17.72], [-2537.13, 16.76], [-2537.11, 15.36], [-2493.95, 13.65], [-2494.19, 3.13], [-2527.45, 4.26], [-2531.45, 7.0], [-2533.66, 11.54], [-2538.04, 11.72], [-2541.81, 10.21], [-2550.17, 9.91], [-2551.22, 7.91], [-2551.35, 5.41], [-2586.19, 7.21], [-2587.7, 9.34], [-2588.25, 11.74], [-2591.4, 11.87], [-2592.3, 9.59], [-2594.33, 7.55], [-2624.55, 8.86], [-2624.27, 14.38], [-2629.46, 14.64], [-2633.53, 11.21], [-2634.0, 7.16], [-2646.23, 8.38], [-2654.84, 11.02], [-2661.66, 15.57], [-2668.64, 22.87], [-2673.99, 31.59], [-2688.98, 63.12]], "holes": []}}, {"shape": {"outer": [[-2428.26, 30.22], [-2397.39, 28.82], [-2392.36, 2.55], [-2396.78, 0.04], [-2400.46, 2.27], [-2401.38, 8.49], [-2407.12, 13.16], [-2411.8, 13.2], [-2415.04, 10.33], [-2415.52, 8.31], [-2421.04, 8.72], [-2429.12, 15.23], [-2428.26, 30.22]], "holes": []}}, {"shape": {"outer": [[840.71, 1019.83], [808.54, 991.33], [798.92, 1002.12], [831.08, 1030.62], [840.71, 1019.83]], "holes": []}}, {"shape": {"outer": [[863.31, 995.67], [831.34, 1031.5], [852.36, 1050.13], [858.28, 1043.5], [846.37, 1032.94], [855.19, 1023.08], [858.7, 1026.19], [864.57, 1023.77], [870.79, 1016.8], [873.55, 1009.55], [875.95, 1006.86], [863.31, 995.67]], "holes": []}}, {"shape": {"outer": [[-3151.18, -1915.15], [-3143.97, -1909.31], [-3134.1, -1921.42], [-3141.31, -1927.25], [-3151.18, -1915.15]], "holes": []}}, {"shape": {"outer": [[-3145.75, -1905.37], [-3133.37, -1921.08], [-3123.72, -1913.67], [-3131.98, -1903.97], [-3126.21, -1899.85], [-3120.46, -1893.94], [-3119.57, -1887.7], [-3121.26, -1881.64], [-3126.07, -1877.34], [-3132.26, -1875.83], [-3135.77, -1879.94], [-3134.52, -1885.29], [-3136.5, -1892.68], [-3135.57, -1897.08], [-3145.75, -1905.37]], "holes": []}}, {"shape": {"outer": [[2695.61, 2382.86], [2700.0, 2377.63], [2701.62, 2379.16], [2703.33, 2380.58], [2697.6, 2384.85], [2696.61, 2383.57], [2695.61, 2382.86]], "holes": []}}, {"shape": {"outer": [[2694.18, 2387.37], [2692.77, 2385.97], [2694.1, 2384.65], [2694.89, 2385.36], [2695.48, 2386.21], [2694.18, 2387.37]], "holes": []}}, {"shape": {"outer": [[2738.97, 2352.59], [2737.73, 2350.39], [2743.62, 2350.01], [2743.88, 2351.28], [2738.97, 2352.59]], "holes": []}}, {"shape": {"outer": [[2734.86, 2353.84], [2731.32, 2355.33], [2728.58, 2356.74], [2725.52, 2353.05], [2729.33, 2351.74], [2733.51, 2350.87], [2734.86, 2353.84]], "holes": []}}, {"shape": {"outer": [[2713.07, 2358.94], [2710.74, 2359.3], [2708.68, 2360.43], [2707.14, 2362.21], [2706.31, 2364.41], [2706.3, 2366.76], [2707.1, 2368.97], [2708.98, 2371.03], [2711.53, 2372.16], [2714.32, 2372.15], [2716.87, 2371.0], [2718.73, 2368.91], [2719.56, 2366.31], [2719.28, 2363.59], [2717.94, 2361.22], [2715.74, 2359.58], [2713.07, 2358.94]], "holes": []}}, {"shape": {"outer": [[67.58, -2061.99], [67.48, -2058.41], [70.21, -2058.15], [72.24, -2060.07], [74.08, -2060.66], [80.09, -2060.72], [80.78, -2063.47], [79.11, -2099.25], [78.71, -2109.59], [78.31, -2123.51], [77.93, -2136.8], [76.66, -2185.55], [74.35, -2185.81], [73.54, -2187.75], [73.47, -2197.55], [75.87, -2197.62], [75.91, -2200.24], [75.02, -2200.87], [67.82, -2200.33], [66.99, -2198.56], [65.65, -2196.13], [63.63, -2193.9], [59.68, -2190.63], [55.78, -2189.21], [53.83, -2188.93], [50.21, -2189.16], [45.91, -2190.45], [41.5, -2191.96], [37.22, -2192.49], [33.64, -2191.62], [29.29, -2190.74], [25.73, -2189.12], [21.22, -2186.16], [18.08, -2183.29], [11.68, -2173.63], [-13.77, -2134.51], [-38.23, -2097.44], [-57.67, -2067.87], [-70.98, -2045.65], [-88.19, -2018.53], [-92.87, -2010.13], [-96.73, -2001.57], [-100.18, -1992.44], [-104.18, -1981.49], [-106.54, -1975.64], [-108.36, -1972.6], [-110.77, -1969.0], [-113.78, -1965.31], [-115.23, -1962.49], [-114.97, -1960.97], [-113.88, -1961.01], [-110.89, -1961.58], [-108.28, -1960.02], [-103.67, -1961.41], [-96.9, -1963.56], [-90.97, -1966.39], [-82.27, -1967.95], [-73.55, -1969.12], [-66.16, -1968.46], [-61.05, -1967.44], [-51.66, -1977.53], [-47.58, -1985.47], [-45.06, -2001.75], [-43.19, -2019.4], [-38.72, -2046.23], [-34.38, -2061.63], [-33.28, -2069.22], [-30.42, -2076.2], [-27.79, -2079.21], [-19.16, -2084.55], [-6.6, -2092.45], [9.55, -2106.55], [9.4, -2114.67], [14.13, -2122.46], [20.24, -2125.48], [26.65, -2125.68], [29.22, -2124.93], [32.81, -2128.21], [38.84, -2134.19], [41.92, -2140.8], [40.34, -2145.76], [47.79, -2156.65], [57.66, -2155.66], [64.06, -2117.93], [69.13, -2107.61], [70.02, -2102.13], [66.11, -2096.18], [62.32, -2089.19], [59.2, -2086.67], [61.28, -2081.65], [65.17, -2080.12], [76.66, -2080.53], [77.48, -2069.36], [77.07, -2063.38], [71.34, -2062.87], [67.58, -2061.99]], "holes": []}}, {"shape": {"outer": [[-802.68, -1357.18], [-795.63, -1363.9], [-788.91, -1366.58], [-781.78, -1366.92], [-773.84, -1359.1], [-779.32, -1353.71], [-784.53, -1353.6], [-792.09, -1346.91], [-792.81, -1347.61], [-802.68, -1357.18]], "holes": []}}, {"shape": {"outer": [[542.03, 724.28], [559.62, 740.24], [567.1, 732.07], [549.51, 716.11], [542.03, 724.28]], "holes": []}}, {"shape": {"outer": [[2221.41, 2442.41], [2238.55, 2459.08], [2230.81, 2466.98], [2213.68, 2450.31], [2221.41, 2442.41]], "holes": []}}, {"shape": {"outer": [[2231.55, 2431.93], [2248.68, 2448.59], [2240.95, 2456.49], [2223.81, 2439.82], [2231.55, 2431.93]], "holes": []}}, {"shape": {"outer": [[2241.75, 2421.34], [2258.88, 2437.99], [2251.15, 2445.89], [2234.01, 2429.22], [2241.75, 2421.34]], "holes": []}}, {"shape": {"outer": [[2251.94, 2410.82], [2269.07, 2427.49], [2261.34, 2435.39], [2244.21, 2418.72], [2251.94, 2410.82]], "holes": []}}, {"shape": {"outer": [[2226.13, 2385.84], [2243.26, 2402.51], [2235.53, 2410.4], [2218.39, 2393.74], [2226.13, 2385.84]], "holes": []}}, {"shape": {"outer": [[2216.04, 2396.2], [2233.18, 2412.85], [2225.44, 2420.75], [2208.31, 2404.08], [2216.04, 2396.2]], "holes": []}}, {"shape": {"outer": [[2205.71, 2406.79], [2222.85, 2423.46], [2215.12, 2431.35], [2197.99, 2414.69], [2205.71, 2406.79]], "holes": []}}, {"shape": {"outer": [[1273.24, 1841.66], [1281.88, 1852.15], [1286.54, 1848.34], [1277.89, 1837.85], [1273.24, 1841.66]], "holes": []}}, {"shape": {"outer": [[1284.04, 1832.73], [1292.68, 1843.21], [1297.34, 1839.4], [1288.7, 1828.91], [1284.04, 1832.73]], "holes": []}}, {"shape": {"outer": [[1302.57, 1841.77], [1287.31, 1823.38], [1278.82, 1830.36], [1294.09, 1848.76], [1302.57, 1841.77]], "holes": []}}, {"shape": {"outer": [[1291.79, 1850.78], [1276.53, 1832.39], [1268.05, 1839.38], [1283.3, 1857.77], [1291.79, 1850.78]], "holes": []}}, {"shape": {"outer": [[-2382.38, 365.45], [-2386.82, 354.4], [-2389.19, 333.77], [-2389.33, 329.02], [-2345.31, 327.66], [-2345.77, 311.45], [-2348.67, 311.63], [-2348.3, 256.15], [-2337.1, 255.36], [-2324.97, 270.3], [-2320.82, 273.01], [-2321.61, 279.77], [-2323.6, 282.52], [-2328.34, 276.09], [-2343.53, 287.21], [-2338.79, 293.63], [-2324.28, 283.02], [-2329.35, 293.65], [-2330.44, 298.23], [-2329.56, 328.87], [-2245.62, 326.28], [-2245.48, 308.47], [-2258.3, 308.46], [-2258.7, 284.42], [-2252.64, 281.09], [-2194.66, 311.05], [-2180.41, 317.77], [-2196.7, 331.33], [-2216.91, 344.03], [-2251.36, 365.93], [-2266.94, 371.17], [-2305.04, 364.86], [-2382.38, 365.45]], "holes": []}}, {"shape": {"outer": [[-2504.11, 340.11], [-2465.4, 339.24], [-2462.67, 337.86], [-2463.06, 324.6], [-2464.64, 323.44], [-2504.49, 324.34], [-2504.11, 340.11]], "holes": []}}, {"shape": {"outer": [[-2484.46, 343.44], [-2484.41, 350.87], [-2487.64, 350.96], [-2488.83, 357.8], [-2488.77, 366.95], [-2523.66, 358.19], [-2536.08, 355.73], [-2575.57, 358.11], [-2589.55, 356.39], [-2615.74, 347.89], [-2619.48, 344.49], [-2622.85, 340.3], [-2623.29, 336.5], [-2621.23, 334.5], [-2615.44, 335.63], [-2609.7, 337.33], [-2605.26, 339.22], [-2602.33, 342.37], [-2515.97, 340.13], [-2504.73, 344.1], [-2484.46, 343.44]], "holes": []}}, {"shape": {"outer": [[-2509.09, 266.21], [-2474.1, 264.63], [-2473.74, 262.16], [-2472.83, 260.26], [-2471.0, 258.28], [-2469.15, 257.12], [-2465.37, 255.4], [-2465.29, 238.39], [-2466.07, 236.88], [-2467.73, 235.55], [-2486.61, 236.01], [-2496.34, 238.3], [-2503.23, 238.96], [-2508.19, 242.46], [-2509.72, 246.96], [-2509.09, 266.21]], "holes": []}}, {"shape": {"outer": [[-2454.14, 287.44], [-2454.72, 278.56], [-2441.09, 277.92], [-2439.75, 279.43], [-2441.66, 286.27], [-2443.33, 287.38], [-2454.14, 287.44]], "holes": []}}, {"shape": {"outer": [[-2653.63, 253.29], [-2647.42, 257.15], [-2641.19, 259.16], [-2626.74, 258.75], [-2620.44, 260.76], [-2615.69, 264.5], [-2614.01, 272.22], [-2615.35, 273.64], [-2623.06, 273.69], [-2623.68, 269.26], [-2625.59, 268.02], [-2651.3, 268.92], [-2653.14, 267.44], [-2653.63, 253.29]], "holes": []}}, {"shape": {"outer": [[-2619.25, 284.92], [-2612.44, 284.4], [-2611.08, 283.63], [-2609.76, 281.73], [-2609.27, 278.96], [-2610.6, 277.94], [-2611.76, 277.18], [-2619.88, 277.08], [-2620.66, 278.16], [-2620.49, 284.14], [-2619.25, 284.92]], "holes": []}}, {"shape": {"outer": [[-2654.77, 300.82], [-2655.04, 294.29], [-2653.48, 292.05], [-2613.38, 291.14], [-2610.89, 293.25], [-2610.0, 295.9], [-2609.67, 298.88], [-2609.71, 303.01], [-2610.7, 305.47], [-2612.57, 308.19], [-2614.14, 310.01], [-2617.39, 310.03], [-2618.0, 299.93], [-2654.77, 300.82]], "holes": []}}, {"shape": {"outer": [[-2635.32, 328.53], [-2635.6, 319.71], [-2654.42, 320.31], [-2654.15, 329.12], [-2635.32, 328.53]], "holes": []}}, {"shape": {"outer": [[-2602.6, 291.55], [-2590.02, 291.19], [-2587.66, 297.11], [-2584.34, 299.45], [-2575.19, 304.37], [-2574.95, 318.2], [-2607.99, 318.98], [-2607.73, 327.96], [-2609.91, 328.19], [-2609.77, 333.12], [-2616.87, 331.79], [-2620.75, 329.95], [-2622.43, 327.81], [-2622.82, 325.65], [-2620.53, 320.48], [-2616.73, 319.8], [-2613.01, 316.7], [-2609.85, 313.61], [-2606.93, 310.29], [-2604.34, 304.47], [-2602.45, 296.82], [-2602.6, 291.55]], "holes": []}}, {"shape": {"outer": [[-2602.49, 275.53], [-2584.87, 258.67], [-2584.46, 256.07], [-2610.9, 257.32], [-2611.92, 258.64], [-2609.85, 265.71], [-2607.01, 271.05], [-2602.49, 275.53]], "holes": []}}, {"shape": {"outer": [[-2837.81, 350.57], [-2833.22, 346.01], [-2830.34, 348.24], [-2826.09, 348.54], [-2823.39, 351.63], [-2819.78, 352.23], [-2817.01, 350.74], [-2815.86, 348.6], [-2813.31, 346.63], [-2811.48, 344.19], [-2811.07, 341.36], [-2812.26, 339.3], [-2814.44, 336.89], [-2816.68, 335.13], [-2817.41, 334.24], [-2805.26, 327.78], [-2791.64, 323.1], [-2781.84, 320.64], [-2773.54, 319.99], [-2768.37, 320.96], [-2761.86, 323.93], [-2745.47, 349.52], [-2739.71, 360.01], [-2765.41, 371.97], [-2801.87, 389.89], [-2836.08, 411.36], [-2836.35, 389.03], [-2824.32, 387.91], [-2811.17, 377.13], [-2821.14, 368.9], [-2825.35, 361.98], [-2825.58, 357.79], [-2828.04, 354.36], [-2837.81, 350.57]], "holes": []}}, {"shape": {"outer": [[-2473.0, 350.27], [-2456.88, 349.96], [-2457.01, 343.63], [-2473.12, 343.95], [-2473.0, 350.27]], "holes": []}}, {"shape": {"outer": [[-2339.0, 238.71], [-2336.58, 235.19], [-2341.78, 229.75], [-2345.59, 224.45], [-2348.06, 216.69], [-2348.87, 211.11], [-2348.13, 204.48], [-2346.16, 197.9], [-2343.53, 191.85], [-2340.49, 187.01], [-2337.88, 180.13], [-2328.63, 179.78], [-2327.61, 182.54], [-2317.05, 182.51], [-2312.77, 178.11], [-2285.73, 178.25], [-2285.78, 166.7], [-2296.33, 167.65], [-2309.25, 167.0], [-2325.74, 164.07], [-2334.58, 161.52], [-2338.46, 161.5], [-2362.99, 150.61], [-2376.33, 143.87], [-2387.72, 140.94], [-2396.99, 139.64], [-2420.03, 140.35], [-2423.67, 143.63], [-2419.4, 237.69], [-2418.46, 239.92], [-2414.69, 241.05], [-2404.19, 240.61], [-2406.19, 225.16], [-2407.45, 223.18], [-2412.31, 222.31], [-2409.82, 216.9], [-2408.69, 212.31], [-2408.98, 208.03], [-2410.0, 203.82], [-2404.75, 198.68], [-2404.86, 193.33], [-2400.48, 193.11], [-2400.91, 179.63], [-2374.03, 178.97], [-2373.11, 220.55], [-2364.91, 220.22], [-2364.76, 231.75], [-2362.56, 237.89], [-2350.49, 237.22], [-2350.44, 239.07], [-2339.0, 238.71]], "holes": []}}, {"shape": {"outer": [[-2319.15, 256.97], [-2314.78, 259.75], [-2308.36, 261.44], [-2301.59, 259.65], [-2299.36, 256.87], [-2299.5, 254.99], [-2300.07, 251.6], [-2301.48, 250.72], [-2318.08, 250.87], [-2319.9, 251.98], [-2320.78, 253.39], [-2320.63, 255.4], [-2319.15, 256.97]], "holes": []}}, {"shape": {"outer": [[-2219.67, 19.71], [-2211.41, 19.98], [-2204.48, 20.69], [-2195.77, 17.2], [-2190.58, 16.29], [-2190.59, 11.41], [-2194.8, 12.07], [-2197.28, 13.0], [-2198.83, 7.98], [-2195.03, 6.22], [-2188.88, 5.13], [-2192.55, -1.28], [-2194.58, -7.94], [-2219.05, -7.3], [-2220.64, -3.29], [-2222.43, -1.28], [-2225.11, -0.9], [-2227.45, 0.51], [-2229.41, 2.82], [-2230.06, 5.71], [-2230.1, 8.39], [-2219.67, 19.71]], "holes": []}}, {"shape": {"outer": [[-2325.14, 17.37], [-2297.67, 16.9], [-2308.2, 46.62], [-2309.95, 51.77], [-2308.56, 52.1], [-2295.59, 48.88], [-2284.87, 41.49], [-2276.76, 28.43], [-2272.04, 23.89], [-2266.72, 21.24], [-2264.46, 13.32], [-2260.8, 12.16], [-2256.86, 14.44], [-2255.14, 15.03], [-2252.65, 14.68], [-2248.16, 10.55], [-2247.28, 7.59], [-2248.56, 4.49], [-2252.02, 2.95], [-2260.77, 0.58], [-2265.14, -0.78], [-2271.51, -5.78], [-2325.48, -3.72], [-2325.14, 17.37]], "holes": []}}, {"shape": {"outer": [[-2333.47, 3.81], [-2333.68, -3.48], [-2353.31, -2.74], [-2353.1, 4.47], [-2333.47, 3.81]], "holes": []}}, {"shape": {"outer": [[-2012.99, -205.55], [-2047.91, -204.02], [-2097.94, -202.19], [-2097.21, -175.38], [-2079.72, -176.06], [-2080.21, -187.24], [-2066.91, -187.82], [-2066.25, -172.81], [-2040.68, -173.93], [-2040.63, -172.85], [-2032.05, -173.22], [-2032.09, -174.17], [-2031.94, -175.58], [-2033.08, -185.23], [-2036.62, -186.75], [-2019.96, -190.57], [-2018.61, -191.52], [-2016.95, -193.31], [-2016.01, -195.95], [-2015.54, -198.41], [-2013.9, -200.28], [-2012.62, -200.54], [-2012.99, -205.55]], "holes": []}}, {"shape": {"outer": [[-1926.18, -202.54], [-1926.14, -203.42], [-1926.3, -204.66], [-1926.88, -205.45], [-1927.8, -206.27], [-1929.04, -206.83], [-1934.26, -206.56], [-1936.25, -193.0], [-1935.44, -173.0], [-1929.44, -173.32], [-1930.81, -176.72], [-1931.56, -197.45], [-1926.05, -197.63], [-1926.18, -202.54]], "holes": []}}, {"shape": {"outer": [[-2005.11, -206.09], [-2004.98, -201.25], [-2002.8, -200.64], [-2002.1, -199.75], [-2001.41, -195.99], [-1997.5, -193.03], [-1992.45, -189.17], [-1981.28, -189.44], [-1981.26, -188.2], [-1968.12, -188.86], [-1967.7, -176.51], [-1949.34, -177.29], [-1949.98, -192.4], [-1936.25, -193.0], [-1934.26, -206.56], [-1935.56, -208.73], [-2005.11, -206.09]], "holes": []}}, {"shape": {"outer": [[-2012.62, -200.54], [-2012.36, -193.93], [-2014.05, -191.87], [-2015.51, -189.74], [-2011.99, -187.52], [-2012.39, -186.09], [-2016.33, -185.94], [-2033.08, -185.23], [-2036.62, -186.75], [-2019.96, -190.57], [-2018.61, -191.52], [-2016.95, -193.31], [-2016.01, -195.95], [-2015.54, -198.41], [-2013.9, -200.28], [-2012.62, -200.54]], "holes": []}}, {"shape": {"outer": [[-2004.98, -201.25], [-2004.49, -194.0], [-2002.31, -191.94], [-2001.02, -189.91], [-2000.28, -186.78], [-1981.26, -188.2], [-1981.28, -189.44], [-1992.45, -189.17], [-1997.5, -193.03], [-2001.41, -195.99], [-2002.1, -199.75], [-2002.8, -200.64], [-2004.98, -201.25]], "holes": []}}, {"shape": {"outer": [[-2789.67, 30.82], [-2765.63, 30.13], [-2765.58, 25.76], [-2755.66, 25.63], [-2756.18, 9.85], [-2774.4, 10.45], [-2774.61, 5.43], [-2781.02, 6.05], [-2790.09, 22.65], [-2789.67, 30.82]], "holes": []}}, {"shape": {"outer": [[-1913.3, 2.17], [-1919.99, -1.55], [-1923.15, -1.62], [-1922.37, 22.93], [-1917.81, 22.78], [-1917.67, 26.33], [-1917.19, 27.16], [-1914.97, 29.55], [-1913.04, 29.5], [-1910.73, 29.29], [-1908.56, 26.84], [-1908.76, 25.81], [-1907.27, 22.72], [-1907.04, 21.78], [-1906.97, 20.68], [-1907.09, 19.7], [-1913.3, 2.17]], "holes": []}}, {"shape": {"outer": [[-1871.54, -0.59], [-1872.97, -11.58], [-1881.74, -10.25], [-1882.86, -9.43], [-1890.46, 1.11], [-1888.0, 10.53], [-1891.02, 11.46], [-1880.21, 45.85], [-1879.23, 45.62], [-1878.39, 45.08], [-1877.75, 44.03], [-1877.39, 42.3], [-1877.07, 41.01], [-1876.58, 38.44], [-1876.14, 35.0], [-1871.54, -0.59]], "holes": []}}, {"shape": {"outer": [[-1855.21, -71.18], [-1855.58, -82.93], [-1857.73, -83.98], [-1859.34, -85.21], [-1860.02, -86.81], [-1860.09, -88.13], [-1860.19, -91.04], [-1872.46, -90.54], [-1871.71, -70.54], [-1858.73, -71.03], [-1855.21, -71.18]], "holes": []}}, {"shape": {"outer": [[-1855.58, -82.93], [-1855.58, -86.15], [-1856.53, -87.2], [-1856.65, -89.23], [-1860.19, -91.04], [-1860.09, -88.13], [-1860.02, -86.81], [-1859.34, -85.21], [-1857.73, -83.98], [-1855.58, -82.93]], "holes": []}}, {"shape": {"outer": [[-2260.32, 79.52], [-2293.48, 80.44], [-2301.42, 92.88], [-2304.04, 95.07], [-2307.24, 96.8], [-2308.44, 96.87], [-2308.91, 95.61], [-2304.47, 81.32], [-2303.45, 75.14], [-2303.92, 68.56], [-2305.93, 64.07], [-2309.07, 60.77], [-2310.86, 59.79], [-2312.1, 58.63], [-2312.42, 57.16], [-2311.93, 55.94], [-2310.86, 55.63], [-2303.68, 54.67], [-2300.41, 54.02], [-2295.26, 54.83], [-2288.73, 57.88], [-2285.06, 60.01], [-2274.74, 66.53], [-2265.85, 73.46], [-2260.32, 79.52]], "holes": []}}, {"shape": {"outer": [[518.57, 10.62], [543.34, 32.58], [543.19, 33.24], [546.24, 34.72], [548.28, 37.14], [549.0, 37.24], [549.33, 36.71], [549.32, 31.43], [549.78, 25.07], [547.87, 24.47], [542.62, 22.5], [538.41, 19.79], [533.82, 17.18], [528.63, 15.28], [524.23, 13.31], [518.84, 10.36], [518.57, 10.62]], "holes": []}}, {"shape": {"outer": [[-1328.19, -397.16], [-1329.27, -437.11], [-1323.67, -444.57], [-1281.38, -446.75], [-1280.83, -442.78], [-1278.27, -439.75], [-1272.05, -437.23], [-1266.59, -438.26], [-1264.02, -439.66], [-1258.72, -434.81], [-1253.81, -429.36], [-1251.64, -426.55], [-1250.13, -423.78], [-1248.3, -420.0], [-1243.53, -414.14], [-1237.19, -408.37], [-1239.41, -407.57], [-1243.61, -407.55], [-1247.92, -407.42], [-1248.44, -405.0], [-1248.3, -401.25], [-1328.19, -397.16]], "holes": []}}, {"shape": {"outer": [[-1473.93, -2996.91], [-1472.63, -2994.76], [-1461.48, -2976.26], [-1460.51, -2974.65], [-1455.93, -2977.01], [-1442.74, -3001.35], [-1441.03, -3009.98], [-1441.3, -3019.53], [-1443.15, -3027.32], [-1446.23, -3032.75], [-1452.8, -3040.74], [-1467.06, -3032.25], [-1472.81, -3028.83], [-1486.91, -3020.45], [-1473.93, -2996.91]], "holes": []}}, {"shape": {"outer": [[-1470.53, -2944.45], [-1466.95, -2944.95], [-1467.22, -2948.95], [-1466.74, -2953.31], [-1465.67, -2957.71], [-1464.13, -2962.11], [-1460.53, -2968.61], [-1473.09, -2990.04], [-1515.55, -2964.33], [-1512.88, -2961.64], [-1508.29, -2957.64], [-1503.16, -2953.86], [-1498.05, -2951.07], [-1492.51, -2948.61], [-1485.78, -2946.52], [-1480.71, -2945.13], [-1474.9, -2944.66], [-1470.53, -2944.45]], "holes": []}}, {"shape": {"outer": [[-1476.17, -3033.93], [-1483.56, -3046.96], [-1524.34, -3022.8], [-1524.48, -3020.76], [-1538.98, -3012.28], [-1538.85, -2996.4], [-1476.17, -3033.93]], "holes": []}}, {"shape": {"outer": [[-1470.74, -3037.55], [-1456.08, -3046.19], [-1456.93, -3049.08], [-1457.73, -3053.34], [-1456.92, -3058.75], [-1455.09, -3062.95], [-1451.1, -3068.02], [-1446.57, -3070.82], [-1441.93, -3072.43], [-1428.84, -3072.97], [-1429.57, -3074.66], [-1431.32, -3075.64], [-1472.46, -3073.59], [-1483.05, -3067.11], [-1483.93, -3065.48], [-1483.65, -3063.09], [-1477.28, -3051.73], [-1478.02, -3051.23], [-1470.74, -3037.55]], "holes": []}}, {"shape": {"outer": [[-846.61, -1101.92], [-844.54, -1101.15], [-832.61, -1090.37], [-831.68, -1087.15], [-832.52, -1084.07], [-887.97, -1020.73], [-904.96, -1036.35], [-846.61, -1101.92]], "holes": []}}, {"shape": {"outer": [[-1382.52, -223.86], [-1339.42, -225.79], [-1338.42, -207.18], [-1381.83, -205.04], [-1382.52, -223.86]], "holes": []}}, {"shape": {"outer": [[-1321.54, -226.47], [-1320.68, -207.97], [-1276.91, -210.0], [-1277.77, -228.51], [-1321.54, -226.47]], "holes": []}}, {"shape": {"outer": [[-113.1, 129.66], [-111.75, 167.61], [-116.16, 172.41], [-147.22, 144.34], [-140.03, 136.66], [-136.99, 139.37], [-131.69, 133.71], [-116.8, 133.18], [-113.1, 129.66]], "holes": []}}, {"shape": {"outer": [[1126.56, 937.03], [1109.19, 956.76], [1109.33, 958.49], [1128.78, 976.82], [1126.56, 937.03]], "holes": []}}, {"shape": {"outer": [[1572.65, 1342.8], [1577.42, 1382.2], [1555.33, 1361.3], [1572.65, 1342.8]], "holes": []}}, {"shape": {"outer": [[1940.48, 608.32], [1959.05, 616.62], [1969.46, 603.89], [1953.23, 595.16], [1940.48, 608.32]], "holes": []}}, {"shape": {"outer": [[276.83, 967.07], [262.44, 982.3], [250.22, 970.52], [264.4, 955.79], [276.83, 967.07]], "holes": []}}, {"shape": {"outer": [[-1393.35, -457.23], [-1394.6, -482.75], [-1361.43, -484.36], [-1360.18, -458.84], [-1393.35, -457.23]], "holes": []}}, {"shape": {"outer": [[2660.55, 1327.99], [2674.41, 1339.03], [2680.3, 1331.03], [2666.47, 1320.74], [2660.55, 1327.99]], "holes": []}}, {"shape": {"outer": [[-1485.7, -22.9], [-1494.29, -20.99], [-1528.85, -14.57], [-1549.49, -10.16], [-1566.06, -7.09], [-1571.46, -6.07], [-1586.64, -3.48], [-1590.35, -3.1], [-1592.3, -2.88], [-1638.43, 6.29], [-1649.45, 8.27], [-1682.33, 13.99], [-1706.64, 18.1], [-1709.64, 18.66], [-1710.03, 16.36], [-1710.39, 12.36], [-1712.74, -0.81], [-1714.09, -9.12], [-1715.94, -18.29], [-1718.25, -30.74], [-1719.27, -33.73], [-1716.19, -36.4], [-1677.97, -43.41], [-1670.68, -44.76], [-1664.5, -45.91], [-1643.6, -49.98], [-1594.98, -58.69], [-1569.11, -64.13], [-1551.18, -67.56], [-1542.4, -68.9], [-1531.26, -71.06], [-1528.2, -71.66], [-1524.82, -72.23], [-1508.36, -74.98], [-1505.32, -75.55], [-1496.88, -77.22], [-1493.84, -77.54], [-1484.32, -72.21], [-1483.37, -70.92], [-1481.06, -68.26], [-1477.98, -63.78], [-1476.94, -62.52], [-1475.76, -61.44], [-1474.68, -60.87], [-1473.49, -60.57], [-1472.8, -51.85], [-1473.17, -51.1], [-1473.48, -50.24], [-1473.5, -47.24], [-1473.92, -41.68], [-1474.89, -36.53], [-1476.56, -31.92], [-1478.82, -28.26], [-1481.3, -25.47], [-1485.7, -22.9]], "holes": []}}, {"shape": {"outer": [[1423.44, 283.48], [1436.38, 267.1], [1449.98, 277.33], [1436.96, 291.55], [1430.62, 290.08], [1423.44, 283.48]], "holes": []}}, {"shape": {"outer": [[1611.55, 374.95], [1603.54, 383.41], [1613.01, 392.42], [1621.46, 383.52], [1611.55, 374.95]], "holes": []}}, {"shape": {"outer": [[1775.33, 509.77], [1783.38, 502.21], [1777.36, 498.26], [1770.9, 505.43], [1775.33, 509.77]], "holes": []}}, {"shape": {"outer": [[2124.75, 725.79], [2130.91, 718.88], [2123.45, 713.59], [2117.57, 720.86], [2124.75, 725.79]], "holes": []}}, {"shape": {"outer": [[393.8, 1132.83], [379.56, 1146.9], [372.34, 1138.92], [387.47, 1125.5], [393.8, 1132.83]], "holes": []}}, {"shape": {"outer": [[-1284.23, 24.88], [-1285.63, -5.55], [-1288.67, -5.41], [-1288.78, -7.74], [-1293.58, -7.52], [-1292.45, 17.06], [-1292.07, 25.23], [-1284.23, 24.88]], "holes": []}}, {"shape": {"outer": [[-1295.36, 18.57], [-1296.51, -7.51], [-1307.86, -6.94], [-1309.34, -4.8], [-1310.75, -3.33], [-1295.36, 18.57]], "holes": []}}, {"shape": {"outer": [[-1296.47, 24.98], [-1296.54, 22.22], [-1313.23, -1.56], [-1316.41, -0.24], [-1319.95, 0.27], [-1323.26, -0.07], [-1325.38, -0.72], [-1340.53, 26.9], [-1296.47, 24.98]], "holes": []}}, {"shape": {"outer": [[-1296.62, -10.48], [-1297.15, -19.74], [-1307.15, -19.22], [-1306.43, -17.0], [-1306.1, -12.8], [-1306.56, -10.11], [-1296.62, -10.48]], "holes": []}}, {"shape": {"outer": [[-1341.91, 16.45], [-1338.28, 16.31], [-1328.04, -2.41], [-1329.19, -3.12], [-1330.22, -4.05], [-1330.93, -4.81], [-1331.54, -5.6], [-1342.88, -5.21], [-1341.91, 16.45]], "holes": []}}, {"shape": {"outer": [[-1362.31, 23.15], [-1363.38, -0.89], [-1361.49, -0.91], [-1361.62, -4.36], [-1361.67, -5.2], [-1363.8, -5.12], [-1364.39, -5.47], [-1368.7, -5.27], [-1367.58, 20.89], [-1366.44, 20.84], [-1366.3, 23.33], [-1362.31, 23.15]], "holes": []}}, {"shape": {"outer": [[-1365.66, -46.68], [-1368.23, -46.61], [-1370.71, -46.5], [-1369.44, -17.88], [-1364.89, -18.05], [-1362.37, -18.14], [-1362.41, -19.48], [-1362.5, -22.82], [-1364.56, -22.75], [-1365.66, -46.68]], "holes": []}}, {"shape": {"outer": [[-1346.22, -8.03], [-1346.59, -17.14], [-1354.53, -16.82], [-1354.17, -7.7], [-1346.22, -8.03]], "holes": []}}, {"shape": {"outer": [[-1333.33, -8.65], [-1343.07, -8.25], [-1343.42, -17.44], [-1333.71, -17.83], [-1334.25, -15.03], [-1334.29, -13.1], [-1334.05, -11.13], [-1333.33, -8.65]], "holes": []}}, {"shape": {"outer": [[-1332.5, -20.7], [-1331.68, -21.98], [-1330.79, -23.1], [-1329.78, -24.14], [-1341.39, -41.86], [-1342.51, -42.18], [-1343.18, -41.3], [-1342.87, -29.91], [-1343.97, -28.52], [-1343.59, -20.32], [-1332.5, -20.7]], "holes": []}}, {"shape": {"outer": [[-1326.12, -26.58], [-1324.23, -27.29], [-1320.6, -27.87], [-1316.84, -27.47], [-1314.84, -26.83], [-1307.23, -40.38], [-1306.87, -42.64], [-1305.35, -45.31], [-1306.14, -45.88], [-1305.07, -47.85], [-1305.54, -48.12], [-1304.2, -50.23], [-1304.19, -51.53], [-1305.85, -52.55], [-1306.76, -51.85], [-1307.99, -51.88], [-1308.82, -52.62], [-1308.98, -53.62], [-1312.55, -54.37], [-1313.31, -54.1], [-1314.26, -54.1], [-1315.31, -54.63], [-1317.88, -52.94], [-1320.13, -52.13], [-1322.77, -51.9], [-1325.83, -52.44], [-1329.2, -54.06], [-1334.38, -52.54], [-1334.73, -51.8], [-1335.55, -51.23], [-1336.38, -51.11], [-1337.3, -51.34], [-1338.94, -50.28], [-1339.55, -49.43], [-1339.47, -48.6], [-1336.96, -44.32], [-1337.58, -43.82], [-1337.22, -42.74], [-1326.12, -26.58]], "holes": []}}, {"shape": {"outer": [[-1297.32, -22.68], [-1298.22, -40.93], [-1298.97, -42.3], [-1299.16, -43.59], [-1299.38, -44.18], [-1300.13, -44.58], [-1301.09, -44.38], [-1303.27, -40.39], [-1304.76, -38.89], [-1311.91, -25.2], [-1310.17, -23.73], [-1308.84, -22.18], [-1297.32, -22.68]], "holes": []}}, {"shape": {"outer": [[-1294.3, -22.83], [-1289.62, -23.03], [-1289.74, -25.86], [-1287.09, -25.98], [-1287.81, -50.89], [-1293.38, -50.72], [-1293.33, -48.4], [-1294.97, -48.28], [-1294.9, -41.81], [-1295.29, -41.01], [-1294.3, -22.83]], "holes": []}}, {"shape": {"outer": [[2107.71, 2898.82], [2155.3, 2888.62], [2132.15, 2781.23], [2084.54, 2791.43], [2107.71, 2898.82]], "holes": []}}, {"shape": {"outer": [[-2946.38, 40.89], [-2947.12, 15.11], [-2948.33, 13.28], [-2963.19, 8.25], [-2962.88, 6.52], [-2964.7, 5.85], [-2964.29, 10.0], [-2958.12, 41.51], [-2946.38, 40.89]], "holes": []}}, {"shape": {"outer": [[-1325.45, 141.53], [-1325.58, 141.94], [-1325.59, 142.34], [-1325.57, 142.79], [-1325.49, 143.21], [-1325.26, 143.67], [-1324.88, 144.09], [-1323.97, 145.01], [-1322.92, 145.8], [-1321.91, 146.39], [-1320.81, 146.87], [-1319.19, 147.33], [-1317.5, 147.59], [-1315.57, 147.72], [-1313.8, 147.47], [-1312.6, 147.18], [-1311.39, 146.78], [-1310.16, 145.96], [-1309.49, 145.17], [-1309.08, 144.09], [-1309.05, 143.16], [-1309.23, 142.05], [-1309.59, 141.27], [-1310.14, 140.63], [-1310.83, 140.16], [-1311.03, 140.38], [-1311.56, 140.06], [-1311.89, 139.85], [-1312.31, 139.65], [-1312.78, 139.43], [-1313.4, 139.21], [-1313.98, 139.02], [-1314.58, 138.81], [-1315.29, 138.64], [-1316.05, 138.51], [-1316.99, 138.37], [-1317.98, 138.31], [-1318.97, 138.32], [-1319.83, 138.39], [-1320.82, 138.5], [-1321.7, 138.72], [-1322.53, 139.08], [-1323.27, 139.53], [-1324.06, 140.08], [-1324.87, 140.8], [-1325.2, 141.15], [-1325.45, 141.53]], "holes": []}}, {"shape": {"outer": [[-1328.47, 69.82], [-1327.76, 78.15], [-1326.47, 77.53], [-1324.73, 77.0], [-1322.52, 76.54], [-1320.62, 76.38], [-1318.84, 76.43], [-1320.66, 69.43], [-1328.47, 69.82]], "holes": []}}, {"shape": {"outer": [[-1316.73, 68.85], [-1310.52, 88.78], [-1309.31, 89.63], [-1308.11, 90.51], [-1307.38, 89.89], [-1307.63, 84.58], [-1305.92, 84.56], [-1306.3, 74.98], [-1306.6, 68.16], [-1316.73, 68.85]], "holes": []}}, {"shape": {"outer": [[-1290.7, 45.78], [-1290.53, 46.69], [-1290.3, 47.52], [-1289.95, 48.66], [-1289.49, 49.72], [-1288.97, 50.74], [-1288.11, 51.93], [-1287.18, 52.93], [-1286.0, 53.9], [-1284.73, 54.59], [-1283.39, 55.15], [-1282.2, 55.56], [-1280.74, 55.82], [-1279.31, 55.85], [-1277.61, 55.76], [-1276.02, 55.54], [-1274.43, 54.87], [-1273.03, 54.09], [-1271.55, 53.0], [-1269.85, 51.55], [-1268.75, 50.44], [-1267.91, 49.24], [-1267.26, 48.28], [-1266.83, 47.12], [-1266.58, 46.01], [-1266.45, 44.74], [-1290.7, 45.78]], "holes": []}}, {"shape": {"outer": [[-1303.28, 131.23], [-1300.63, 130.45], [-1297.99, 129.65], [-1299.34, 125.33], [-1298.13, 125.02], [-1296.89, 124.86], [-1295.22, 124.76], [-1293.57, 124.95], [-1292.01, 125.28], [-1290.46, 125.75], [-1289.2, 126.26], [-1287.98, 126.95], [-1287.31, 127.35], [-1286.55, 127.9], [-1285.86, 128.53], [-1285.11, 129.26], [-1284.46, 130.03], [-1283.87, 130.81], [-1283.23, 131.72], [-1282.71, 132.62], [-1282.0, 133.88], [-1281.24, 135.1], [-1280.53, 136.27], [-1279.93, 137.2], [-1279.3, 138.08], [-1278.74, 138.9], [-1278.13, 139.69], [-1277.59, 140.33], [-1276.96, 140.97], [-1280.32, 144.63], [-1280.86, 143.84], [-1281.47, 143.09], [-1282.05, 142.37], [-1282.77, 141.65], [-1283.39, 141.13], [-1284.02, 140.69], [-1284.7, 140.23], [-1285.42, 139.83], [-1286.27, 139.38], [-1287.17, 139.0], [-1288.05, 138.66], [-1288.96, 138.4], [-1289.97, 138.18], [-1290.97, 138.03], [-1292.04, 137.94], [-1293.02, 137.86], [-1294.04, 137.88], [-1295.21, 138.05], [-1296.21, 138.21], [-1297.02, 138.4], [-1297.73, 138.67], [-1298.9, 139.12], [-1299.81, 139.48], [-1300.52, 139.82], [-1301.22, 140.23], [-1301.86, 140.66], [-1302.44, 141.1], [-1303.04, 141.61], [-1303.65, 142.18], [-1304.19, 142.74], [-1304.66, 143.32], [-1305.08, 143.86], [-1305.47, 144.38], [-1305.84, 144.82], [-1306.22, 145.26], [-1306.66, 145.69], [-1307.23, 146.26], [-1307.95, 146.79], [-1308.52, 147.21], [-1309.16, 147.61], [-1309.96, 148.11], [-1310.81, 148.53], [-1311.64, 148.88], [-1312.5, 149.2], [-1313.19, 149.46], [-1314.0, 149.66], [-1314.81, 149.84], [-1315.62, 149.98], [-1316.38, 150.07], [-1317.14, 150.14], [-1318.04, 150.21], [-1319.01, 150.13], [-1319.78, 149.99], [-1320.55, 149.82], [-1321.61, 149.51], [-1322.62, 149.16], [-1323.5, 148.72], [-1324.24, 148.29], [-1324.94, 147.83], [-1324.88, 144.09], [-1323.97, 145.01], [-1322.92, 145.8], [-1321.91, 146.39], [-1320.81, 146.87], [-1319.19, 147.33], [-1317.5, 147.59], [-1315.57, 147.72], [-1313.8, 147.47], [-1312.6, 147.18], [-1311.39, 146.78], [-1310.16, 145.96], [-1309.49, 145.17], [-1309.08, 144.09], [-1309.05, 143.16], [-1309.23, 142.05], [-1309.59, 141.27], [-1310.14, 140.63], [-1310.83, 140.16], [-1310.44, 139.83], [-1311.63, 139.1], [-1313.32, 138.31], [-1314.92, 137.84], [-1316.64, 137.54], [-1318.43, 137.49], [-1320.12, 137.66], [-1321.56, 137.9], [-1322.94, 138.28], [-1324.16, 138.74], [-1325.21, 139.33], [-1325.49, 129.0], [-1324.7, 128.98], [-1323.8, 128.96], [-1322.92, 128.96], [-1322.05, 129.03], [-1321.19, 129.12], [-1320.36, 129.23], [-1319.53, 129.34], [-1318.91, 129.45], [-1318.75, 128.86], [-1320.18, 128.63], [-1321.86, 128.38], [-1322.8, 128.3], [-1323.76, 128.27], [-1324.82, 128.28], [-1325.43, 128.29], [-1325.47, 126.11], [-1324.17, 126.08], [-1322.46, 126.16], [-1320.94, 126.29], [-1319.47, 126.61], [-1318.27, 126.91], [-1316.95, 127.23], [-1315.63, 127.61], [-1314.18, 127.92], [-1313.04, 128.12], [-1311.89, 128.21], [-1310.75, 128.22], [-1309.55, 128.16], [-1308.25, 128.03], [-1306.83, 127.87], [-1305.39, 127.65], [-1304.34, 127.47], [-1303.28, 131.23]], "holes": []}}, {"shape": {"outer": [[-1278.2, 146.31], [-1276.68, 150.9], [-1274.79, 150.87], [-1272.92, 150.97], [-1270.53, 151.35], [-1268.11, 151.8], [-1262.54, 152.92], [-1256.73, 153.69], [-1254.58, 153.8], [-1254.78, 150.37], [-1257.15, 150.21], [-1260.06, 149.88], [-1263.01, 149.22], [-1266.19, 148.21], [-1268.52, 147.09], [-1270.82, 145.88], [-1272.93, 144.45], [-1275.07, 142.86], [-1278.2, 146.31]], "holes": []}}, {"shape": {"outer": [[-1280.62, 131.51], [-1279.48, 133.55], [-1278.27, 135.59], [-1276.64, 137.82], [-1275.29, 139.37], [-1273.75, 140.85], [-1272.06, 142.24], [-1270.15, 143.55], [-1268.06, 144.78], [-1264.03, 146.4], [-1261.16, 147.18], [-1258.61, 147.68], [-1254.9, 148.0], [-1254.94, 146.57], [-1256.37, 146.36], [-1257.79, 146.1], [-1259.26, 145.75], [-1260.7, 145.26], [-1261.78, 144.8], [-1262.82, 144.27], [-1264.02, 143.58], [-1264.61, 143.23], [-1265.21, 142.85], [-1265.79, 142.44], [-1266.3, 142.01], [-1266.83, 141.47], [-1267.27, 140.92], [-1267.69, 140.34], [-1267.94, 139.78], [-1268.12, 139.26], [-1268.2, 138.7], [-1268.22, 138.16], [-1268.2, 137.67], [-1268.15, 137.16], [-1268.06, 136.69], [-1267.95, 136.19], [-1267.76, 135.67], [-1267.49, 135.14], [-1267.12, 134.63], [-1266.58, 134.14], [-1265.93, 133.79], [-1265.2, 133.55], [-1264.47, 133.44], [-1263.84, 133.42], [-1263.21, 133.48], [-1262.58, 133.57], [-1261.99, 133.71], [-1261.48, 133.87], [-1260.83, 134.12], [-1260.24, 134.39], [-1259.58, 134.74], [-1258.99, 135.16], [-1258.43, 135.65], [-1257.99, 136.17], [-1257.59, 136.72], [-1257.28, 137.2], [-1256.97, 137.73], [-1256.73, 138.15], [-1256.51, 138.57], [-1256.27, 139.02], [-1256.14, 139.34], [-1255.99, 139.69], [-1253.97, 139.65], [-1253.57, 138.84], [-1253.29, 138.18], [-1253.03, 137.42], [-1252.83, 136.58], [-1252.75, 135.98], [-1252.74, 135.46], [-1252.8, 134.76], [-1252.85, 134.18], [-1252.9, 133.65], [-1252.97, 133.22], [-1253.05, 132.74], [-1253.16, 132.25], [-1253.37, 131.65], [-1253.54, 131.12], [-1253.86, 130.44], [-1254.24, 129.74], [-1254.8, 128.97], [-1255.51, 128.18], [-1255.89, 127.77], [-1256.32, 127.39], [-1256.94, 126.8], [-1257.56, 126.3], [-1258.18, 125.82], [-1258.87, 125.43], [-1259.7, 125.07], [-1260.55, 124.84], [-1261.41, 124.64], [-1262.26, 124.51], [-1263.03, 124.42], [-1263.81, 124.46], [-1264.59, 124.51], [-1265.35, 124.7], [-1266.13, 125.04], [-1266.83, 125.39], [-1267.68, 125.87], [-1268.52, 126.36], [-1269.34, 126.83], [-1270.14, 127.32], [-1270.91, 127.76], [-1271.69, 128.22], [-1272.38, 128.63], [-1273.36, 129.14], [-1274.48, 129.65], [-1275.94, 130.18], [-1277.36, 130.7], [-1279.11, 131.2], [-1280.62, 131.51]], "holes": []}}, {"shape": {"outer": [[-1357.62, 49.12], [-1355.83, 49.03], [-1355.65, 53.03], [-1357.44, 53.1], [-1357.62, 49.12]], "holes": []}}, {"shape": {"outer": [[-1372.24, 49.78], [-1373.46, 49.84], [-1373.23, 54.85], [-1372.01, 54.8], [-1372.24, 49.78]], "holes": []}}, {"shape": {"outer": [[-1333.27, 62.34], [-1345.82, 62.76], [-1345.67, 67.39], [-1342.11, 67.27], [-1342.21, 64.14], [-1337.07, 63.97], [-1336.99, 66.8], [-1333.13, 66.68], [-1333.27, 62.34]], "holes": []}}, {"shape": {"outer": [[-1280.36, 123.41], [-1280.52, 124.12], [-1280.51, 124.79], [-1280.36, 125.44], [-1280.02, 126.09], [-1279.51, 126.51], [-1278.55, 126.87], [-1277.49, 126.86], [-1277.32, 127.9], [-1275.71, 127.45], [-1275.8, 126.43], [-1275.11, 125.85], [-1274.53, 125.19], [-1274.29, 124.56], [-1274.31, 123.85], [-1274.46, 123.31], [-1274.71, 122.8], [-1275.15, 122.24], [-1275.72, 121.79], [-1276.47, 121.44], [-1277.29, 121.31], [-1278.11, 121.39], [-1278.89, 121.68], [-1279.53, 122.14], [-1280.04, 122.75], [-1280.36, 123.41]], "holes": []}}, {"shape": {"outer": [[-1289.59, 100.19], [-1285.91, 100.15], [-1285.26, 112.58], [-1286.56, 113.55], [-1287.21, 115.19], [-1286.99, 116.76], [-1286.3, 117.72], [-1284.83, 118.6], [-1283.55, 118.78], [-1282.25, 118.48], [-1281.21, 117.66], [-1280.83, 116.78], [-1280.18, 116.73], [-1279.9, 117.28], [-1279.46, 117.66], [-1278.8, 117.83], [-1278.14, 117.61], [-1277.71, 117.16], [-1277.58, 116.59], [-1271.3, 116.25], [-1271.12, 116.78], [-1270.7, 117.12], [-1269.98, 117.29], [-1269.38, 117.11], [-1268.92, 116.69], [-1268.73, 116.1], [-1262.82, 115.77], [-1262.56, 116.32], [-1262.06, 116.74], [-1261.35, 116.89], [-1260.67, 116.67], [-1260.26, 116.2], [-1260.13, 115.62], [-1259.54, 115.59], [-1258.92, 116.43], [-1257.87, 117.1], [-1256.6, 117.42], [-1255.44, 117.13], [-1254.42, 116.63], [-1253.76, 115.89], [-1253.52, 115.02], [-1253.17, 114.06], [-1253.55, 112.84], [-1254.67, 111.41], [-1249.32, 111.22], [-1249.35, 106.52], [-1243.18, 106.2], [-1243.33, 107.54], [-1243.27, 109.08], [-1242.92, 110.78], [-1242.3, 112.42], [-1247.72, 117.55], [-1251.73, 121.18], [-1252.98, 121.55], [-1254.16, 122.09], [-1255.51, 122.76], [-1256.65, 123.52], [-1257.22, 123.57], [-1257.76, 123.52], [-1259.03, 122.93], [-1260.59, 122.51], [-1262.14, 122.18], [-1263.62, 122.1], [-1264.62, 122.15], [-1265.61, 122.31], [-1266.78, 122.61], [-1267.86, 123.05], [-1268.96, 123.54], [-1270.34, 124.23], [-1272.07, 125.36], [-1273.91, 126.41], [-1275.71, 127.45], [-1275.8, 126.43], [-1275.11, 125.85], [-1274.53, 125.19], [-1274.29, 124.56], [-1274.31, 123.85], [-1274.46, 123.31], [-1274.71, 122.8], [-1275.15, 122.24], [-1275.72, 121.79], [-1276.47, 121.44], [-1277.29, 121.31], [-1278.11, 121.39], [-1278.89, 121.68], [-1279.53, 122.14], [-1280.04, 122.75], [-1280.36, 123.41], [-1280.52, 124.12], [-1280.51, 124.79], [-1280.36, 125.44], [-1280.02, 126.09], [-1279.51, 126.51], [-1278.55, 126.87], [-1277.49, 126.86], [-1277.32, 127.9], [-1278.97, 128.28], [-1280.79, 128.56], [-1281.7, 128.69], [-1282.19, 128.61], [-1282.66, 128.38], [-1283.75, 127.11], [-1286.71, 124.97], [-1290.28, 123.27], [-1293.24, 122.34], [-1293.4, 118.18], [-1289.07, 118.1], [-1289.59, 100.19]], "holes": []}}, {"shape": {"outer": [[-1407.01, 52.24], [-1402.95, 52.06], [-1402.73, 56.83], [-1402.46, 63.04], [-1406.52, 63.22], [-1407.01, 52.24]], "holes": []}}, {"shape": {"outer": [[-1307.38, 89.89], [-1298.73, 89.47], [-1297.65, 89.43], [-1295.94, 122.21], [-1298.21, 122.34], [-1300.08, 122.73], [-1303.32, 112.44], [-1302.48, 111.36], [-1301.78, 110.22], [-1301.28, 109.02], [-1300.89, 107.81], [-1300.58, 106.26], [-1300.48, 104.77], [-1300.55, 103.3], [-1300.82, 101.89], [-1301.24, 100.41], [-1301.85, 98.94], [-1300.52, 98.77], [-1299.72, 98.24], [-1299.28, 97.6], [-1299.03, 96.62], [-1299.13, 95.69], [-1299.49, 94.74], [-1300.05, 93.91], [-1300.96, 93.45], [-1301.97, 93.27], [-1303.13, 93.66], [-1303.85, 94.17], [-1304.18, 94.58], [-1305.13, 93.36], [-1306.08, 92.31], [-1307.06, 91.38], [-1308.11, 90.51], [-1307.38, 89.89]], "holes": []}}, {"shape": {"outer": [[-1309.47, 91.75], [-1303.62, 110.89], [-1303.0, 109.72], [-1302.52, 108.64], [-1302.13, 107.14], [-1301.9, 105.73], [-1301.97, 104.28], [-1302.11, 102.89], [-1302.31, 101.45], [-1302.69, 100.06], [-1303.29, 98.58], [-1304.08, 97.12], [-1305.14, 95.59], [-1305.72, 94.95], [-1306.33, 94.36], [-1307.11, 93.63], [-1307.89, 92.96], [-1308.67, 92.33], [-1309.47, 91.75]], "holes": []}}, {"shape": {"outer": [[-1359.57, -4.39], [-1358.01, 3.99], [-1358.7, 5.46], [-1359.15, 7.25], [-1359.39, 8.98], [-1359.24, 10.68], [-1358.82, 12.83], [-1355.75, 20.31], [-1354.76, 24.95], [-1354.39, 27.67], [-1350.5, 27.47], [-1347.74, 23.94], [-1345.97, 21.29], [-1344.87, 18.65], [-1346.08, -4.92], [-1359.57, -4.39]], "holes": []}}, {"shape": {"outer": [[-1362.31, 23.15], [-1358.1, 22.99], [-1357.98, 25.42], [-1357.87, 27.99], [-1354.39, 27.67], [-1354.76, 24.95], [-1355.75, 20.31], [-1358.82, 12.83], [-1359.24, 10.68], [-1359.39, 8.98], [-1359.15, 7.25], [-1358.7, 5.46], [-1358.01, 3.99], [-1359.57, -4.39], [-1361.62, -4.36], [-1361.49, -0.91], [-1363.38, -0.89], [-1362.31, 23.15]], "holes": []}}, {"shape": {"outer": [[-1357.33, -32.4], [-1357.35, -35.65], [-1350.37, -36.83], [-1347.61, -37.79], [-1348.02, -48.25], [-1349.8, -50.18], [-1352.2, -51.46], [-1355.76, -50.98], [-1358.02, -49.0], [-1358.61, -46.98], [-1362.61, -46.81], [-1365.66, -46.68], [-1364.56, -22.75], [-1362.5, -22.82], [-1362.41, -19.48], [-1355.56, -19.9], [-1357.33, -32.4]], "holes": []}}, {"shape": {"outer": [[-1548.22, 87.04], [-1547.39, 85.59], [-1559.79, 86.59], [-1564.25, 86.8], [-1564.17, 89.56], [-1565.62, 89.59], [-1565.51, 92.88], [-1568.99, 93.06], [-1570.3, 93.67], [-1571.41, 95.12], [-1571.57, 98.33], [-1571.77, 102.88], [-1572.8, 107.28], [-1575.25, 111.31], [-1579.98, 116.82], [-1582.47, 119.44], [-1583.65, 121.87], [-1583.43, 123.52], [-1576.35, 136.84], [-1573.78, 139.58], [-1571.68, 140.83], [-1569.11, 140.85], [-1566.56, 140.11], [-1563.99, 137.64], [-1562.98, 135.3], [-1562.49, 131.35], [-1563.98, 103.04], [-1563.82, 98.97], [-1562.36, 95.33], [-1559.33, 91.58], [-1555.32, 88.81], [-1551.5, 87.58], [-1548.22, 87.04]], "holes": []}}, {"shape": {"outer": [[-1582.98, 92.94], [-1581.38, 93.2], [-1580.81, 93.51], [-1580.05, 93.93], [-1579.28, 94.88], [-1578.99, 95.62], [-1578.86, 96.4], [-1578.82, 101.97], [-1579.35, 103.88], [-1580.18, 105.81], [-1581.37, 107.37], [-1582.77, 108.84], [-1584.14, 110.1], [-1585.58, 111.27], [-1586.93, 112.0], [-1588.49, 112.18], [-1589.99, 112.07], [-1591.21, 111.49], [-1591.89, 110.87], [-1601.02, 99.59], [-1614.75, 85.29], [-1615.9, 83.16], [-1617.22, 79.97], [-1619.01, 72.96], [-1615.76, 72.34], [-1602.13, 71.88], [-1601.26, 72.71], [-1601.76, 73.29], [-1601.0, 74.19], [-1600.08, 75.27], [-1599.25, 74.71], [-1598.43, 75.75], [-1597.8, 77.27], [-1597.53, 78.84], [-1597.55, 80.41], [-1598.27, 80.46], [-1598.05, 83.02], [-1596.92, 82.96], [-1596.37, 83.92], [-1595.69, 84.81], [-1594.14, 86.09], [-1594.47, 86.95], [-1593.97, 87.41], [-1591.85, 87.81], [-1591.71, 86.51], [-1590.44, 86.48], [-1589.14, 86.68], [-1588.34, 86.9], [-1587.47, 87.38], [-1586.56, 88.16], [-1586.01, 89.2], [-1585.56, 90.29], [-1585.31, 91.38], [-1585.28, 92.74], [-1585.53, 94.1], [-1585.96, 95.19], [-1586.63, 96.09], [-1588.39, 97.42], [-1590.46, 98.26], [-1591.79, 98.58], [-1595.44, 98.64], [-1596.41, 99.02], [-1596.78, 100.05], [-1582.69, 99.4], [-1582.98, 92.94]], "holes": []}}, {"shape": {"outer": [[-1255.53, 60.27], [-1254.34, 60.18], [-1254.0, 54.47], [-1253.94, 52.76], [-1253.89, 51.56], [-1256.54, 51.6], [-1258.79, 44.28], [-1263.69, 44.38], [-1263.78, 46.13], [-1264.16, 47.85], [-1264.86, 49.55], [-1265.84, 51.07], [-1267.77, 53.2], [-1269.7, 54.99], [-1271.06, 56.08], [-1272.54, 57.11], [-1274.01, 58.13], [-1264.38, 57.81], [-1263.52, 57.37], [-1259.05, 57.29], [-1257.9, 57.63], [-1257.03, 58.33], [-1256.21, 59.33], [-1255.53, 60.27]], "holes": []}}, {"shape": {"outer": [[-1440.42, 55.99], [-1440.22, 60.15], [-1431.43, 59.71], [-1431.51, 58.05], [-1417.87, 57.35], [-1417.79, 59.04], [-1414.46, 58.87], [-1414.79, 52.4], [-1418.36, 52.58], [-1418.27, 54.4], [-1433.71, 55.17], [-1433.78, 53.66], [-1438.7, 53.91], [-1440.42, 55.99]], "holes": []}}, {"shape": {"outer": [[-1464.39, -50.3], [-1465.01, -50.28], [-1465.12, -51.27], [-1465.4, -51.88], [-1466.01, -52.64], [-1466.73, -52.99], [-1467.82, -53.23], [-1470.07, -53.08], [-1470.11, -53.5], [-1470.91, -53.44], [-1471.65, -53.12], [-1472.27, -52.55], [-1472.8, -51.85], [-1473.17, -51.1], [-1473.48, -50.24], [-1473.5, -47.24], [-1473.92, -41.68], [-1474.89, -36.53], [-1476.56, -31.92], [-1478.82, -28.26], [-1481.3, -25.47], [-1485.7, -22.9], [-1494.29, -20.99], [-1528.85, -14.57], [-1529.97, -14.2], [-1530.35, -13.93], [-1530.59, -13.55], [-1530.67, -13.31], [-1530.6, -13.11], [-1530.29, -12.82], [-1529.86, -12.56], [-1529.39, -12.35], [-1476.97, 6.23], [-1475.45, 6.89], [-1474.21, 7.8], [-1473.23, 8.8], [-1472.61, 10.02], [-1472.09, 11.48], [-1470.74, 16.11], [-1466.8, 35.58], [-1466.64, 35.83], [-1466.44, 36.09], [-1466.17, 36.32], [-1461.57, 36.12], [-1461.55, 32.26], [-1460.42, 32.21], [-1464.39, -50.3]], "holes": []}}, {"shape": {"outer": [[-1439.0, -47.84], [-1439.0, -48.81], [-1437.13, -51.19], [-1436.26, -52.72], [-1435.92, -54.03], [-1434.12, -54.11], [-1434.03, -51.79], [-1423.12, -52.28], [-1421.97, -52.21], [-1421.3, -51.65], [-1421.13, -50.89], [-1418.88, -50.99], [-1418.53, -52.13], [-1417.43, -53.09], [-1415.59, -53.28], [-1414.1, -53.12], [-1413.18, -52.04], [-1410.02, -52.16], [-1408.94, -51.61], [-1408.84, -49.08], [-1434.86, -48.04], [-1439.0, -47.84]], "holes": []}}, {"shape": {"outer": [[-1401.62, -49.65], [-1375.32, -50.92], [-1365.64, -51.4], [-1365.68, -52.2], [-1365.98, -52.18], [-1366.12, -53.28], [-1366.51, -53.78], [-1367.03, -54.17], [-1369.42, -54.07], [-1370.2, -53.57], [-1370.52, -52.71], [-1373.56, -52.55], [-1374.06, -53.31], [-1374.73, -53.74], [-1381.13, -53.51], [-1381.86, -53.3], [-1382.47, -52.88], [-1382.7, -52.11], [-1384.76, -52.02], [-1385.18, -53.02], [-1385.55, -53.27], [-1393.78, -53.0], [-1394.11, -52.67], [-1394.2, -52.14], [-1396.5, -52.05], [-1396.98, -53.22], [-1398.04, -53.8], [-1400.61, -53.69], [-1401.49, -52.91], [-1401.7, -52.0], [-1401.62, -49.65]], "holes": []}}, {"shape": {"outer": [[-1545.03, -8.55], [-1552.47, 9.05], [-1554.26, 14.41], [-1553.77, 20.34], [-1552.25, 29.61], [-1551.48, 36.85], [-1551.83, 42.24], [-1550.55, 42.44], [-1550.09, 41.58], [-1549.52, 41.71], [-1548.09, 43.67], [-1545.21, 44.12], [-1544.07, 43.73], [-1543.0, 37.43], [-1523.89, 36.55], [-1524.0, 34.82], [-1523.21, 34.77], [-1522.31, 34.71], [-1522.5, 32.2], [-1518.28, 32.08], [-1518.11, 31.44], [-1518.98, 16.55], [-1519.15, 15.11], [-1519.4, 13.77], [-1519.94, 12.74], [-1520.82, 11.41], [-1524.94, 7.11], [-1525.14, 6.29], [-1541.3, -9.18], [-1541.83, -9.5], [-1543.26, -9.34], [-1544.29, -9.0], [-1545.03, -8.55]], "holes": []}}, {"shape": {"outer": [[-1475.65, 12.23], [-1514.9, 13.68], [-1514.31, 28.84], [-1514.27, 29.75], [-1514.22, 31.26], [-1514.36, 31.92], [-1514.81, 31.93], [-1515.06, 31.22], [-1515.53, 14.57], [-1515.38, 14.1], [-1515.14, 13.62], [-1514.7, 13.2], [-1513.86, 12.77], [-1512.83, 12.51], [-1479.35, 10.78], [-1478.32, 10.74], [-1477.31, 10.85], [-1476.47, 11.13], [-1475.74, 11.54], [-1475.21, 12.05], [-1474.76, 12.7], [-1474.47, 13.32], [-1473.28, 17.78], [-1472.13, 22.42], [-1469.37, 36.48], [-1469.3, 37.19], [-1469.31, 37.91], [-1469.38, 38.76], [-1469.51, 39.67], [-1475.14, 39.92], [-1475.34, 35.84], [-1479.56, 36.04], [-1480.08, 27.23], [-1474.98, 27.07], [-1475.65, 12.23]], "holes": []}}, {"shape": {"outer": [[-1473.13, 66.19], [-1468.09, 66.18], [-1467.78, 64.62], [-1468.97, 46.8], [-1474.84, 47.04], [-1474.63, 50.88], [-1478.79, 51.07], [-1478.31, 60.13], [-1473.33, 60.01], [-1473.13, 66.19]], "holes": []}}, {"shape": {"outer": [[-1465.5, 49.98], [-1465.03, 65.06], [-1466.35, 73.73], [-1466.16, 77.69], [-1464.29, 76.9], [-1462.12, 75.27], [-1460.66, 73.26], [-1459.57, 71.13], [-1458.91, 69.04], [-1458.74, 65.87], [-1458.65, 61.78], [-1459.06, 53.37], [-1460.61, 53.43], [-1460.72, 49.78], [-1465.5, 49.98]], "holes": []}}, {"shape": {"outer": [[-1512.03, 76.53], [-1512.43, 76.56], [-1512.13, 77.89], [-1511.61, 79.12], [-1510.92, 80.29], [-1510.0, 81.29], [-1509.02, 81.68], [-1469.13, 79.93], [-1469.47, 74.25], [-1468.71, 68.45], [-1472.99, 68.41], [-1472.6, 74.77], [-1512.03, 76.53]], "holes": []}}, {"shape": {"outer": [[-1461.08, -54.18], [-1459.84, -28.93], [-1458.82, -28.98], [-1458.26, -29.01], [-1459.5, -54.28], [-1459.92, -54.43], [-1460.75, -54.38], [-1461.08, -54.18]], "holes": []}}, {"shape": {"outer": [[-1461.44, -60.88], [-1462.4, -79.3], [-1462.6, -83.23], [-1463.08, -92.27], [-1463.72, -104.58], [-1462.97, -104.62], [-1462.24, -104.65], [-1459.97, -60.91], [-1460.38, -60.7], [-1461.01, -60.67], [-1461.44, -60.88]], "holes": []}}, {"shape": {"outer": [[-1443.89, -112.69], [-1442.9, -89.8], [-1434.98, -90.22], [-1436.0, -109.67], [-1437.88, -112.98], [-1443.89, -112.69]], "holes": []}}, {"shape": {"outer": [[-1435.57, -75.95], [-1440.03, -69.98], [-1439.99, -68.62], [-1437.88, -68.71], [-1393.97, -70.75], [-1394.05, -73.18], [-1394.21, -77.99], [-1435.57, -75.95]], "holes": []}}, {"shape": {"outer": [[-1439.99, -68.62], [-1440.0, -68.3], [-1440.02, -67.85], [-1438.88, -66.83], [-1437.23, -65.08], [-1436.44, -63.49], [-1435.84, -63.29], [-1434.67, -63.37], [-1434.48, -63.85], [-1434.6, -65.81], [-1424.03, -66.27], [-1423.3, -66.95], [-1423.32, -68.39], [-1413.38, -68.78], [-1413.05, -68.11], [-1412.39, -67.48], [-1411.53, -67.08], [-1410.29, -67.24], [-1409.59, -67.87], [-1409.27, -68.39], [-1409.24, -68.99], [-1402.89, -69.24], [-1402.61, -68.5], [-1402.2, -67.93], [-1401.35, -67.46], [-1395.55, -67.73], [-1394.52, -68.33], [-1393.97, -69.2], [-1393.97, -70.75], [-1437.88, -68.71], [-1439.99, -68.62]], "holes": []}}, {"shape": {"outer": [[-1358.48, -115.07], [-1359.82, -115.01], [-1360.31, -126.27], [-1375.52, -125.62], [-1373.51, -79.54], [-1373.17, -71.92], [-1359.27, -72.53], [-1359.33, -73.71], [-1359.37, -74.37], [-1359.39, -75.88], [-1359.51, -78.28], [-1356.23, -78.43], [-1356.4, -82.23], [-1357.05, -82.2], [-1358.48, -115.07]], "holes": []}}, {"shape": {"outer": [[-1347.61, -37.79], [-1350.37, -36.83], [-1357.35, -35.65], [-1357.33, -32.4], [-1355.56, -19.9], [-1346.64, -20.26], [-1347.61, -37.79]], "holes": []}}, {"shape": {"outer": [[-1379.11, -46.03], [-1373.7, -46.25], [-1372.5, -16.52], [-1374.01, -16.46], [-1375.21, -43.65], [-1379.0, -43.49], [-1379.11, -46.03]], "holes": []}}, {"shape": {"outer": [[-1386.94, 24.54], [-1387.05, 22.95], [-1381.57, 22.7], [-1381.62, 21.56], [-1372.34, 21.15], [-1373.58, -6.11], [-1371.82, -6.14], [-1370.36, 23.64], [-1372.24, 23.74], [-1386.94, 24.54]], "holes": []}}, {"shape": {"outer": [[-1333.49, -77.2], [-1345.0, -76.66], [-1345.11, -78.86], [-1337.04, -79.24], [-1337.21, -82.95], [-1335.96, -83.01], [-1336.19, -87.85], [-1334.61, -87.92], [-1334.63, -88.47], [-1334.02, -88.5], [-1333.49, -77.2]], "holes": []}}, {"shape": {"outer": [[-1312.27, -87.15], [-1311.55, -74.93], [-1308.67, -75.08], [-1308.54, -76.41], [-1307.64, -77.65], [-1306.21, -78.13], [-1305.11, -78.77], [-1304.11, -79.53], [-1303.83, -80.51], [-1303.88, -81.36], [-1305.01, -81.3], [-1305.15, -83.67], [-1307.2, -83.62], [-1309.22, -85.16], [-1311.24, -87.53], [-1312.96, -91.04], [-1313.65, -92.46], [-1314.12, -92.41], [-1313.93, -87.13], [-1312.27, -87.15]], "holes": []}}, {"shape": {"outer": [[-1313.3, -97.08], [-1312.56, -97.71], [-1311.75, -97.88], [-1310.97, -97.47], [-1310.32, -93.75], [-1309.27, -92.59], [-1307.94, -92.26], [-1306.95, -92.6], [-1306.65, -86.57], [-1307.76, -86.02], [-1308.93, -86.71], [-1310.74, -89.35], [-1312.27, -92.65], [-1313.18, -95.42], [-1313.3, -97.08]], "holes": []}}, {"shape": {"outer": [[-1447.46, -35.44], [-1444.91, 16.82], [-1442.87, 16.71], [-1445.41, -35.53], [-1447.46, -35.44]], "holes": []}}, {"shape": {"outer": [[-1338.69, -131.59], [-1339.22, -143.25], [-1354.34, -142.55], [-1375.43, -141.58], [-1374.88, -129.9], [-1338.69, -131.59]], "holes": []}}, {"shape": {"outer": [[479.02, -56.95], [450.46, -83.57], [457.39, -91.28], [464.87, -84.42], [468.24, -88.54], [485.69, -64.07], [484.61, -63.01], [480.22, -58.24], [479.02, -56.95]], "holes": []}}, {"shape": {"outer": [[-1223.9, -1033.18], [-1224.24, -1047.98], [-1222.3, -1050.45], [-1201.32, -1050.93], [-1200.94, -1033.72], [-1223.9, -1033.18]], "holes": []}}, {"shape": {"outer": [[-1202.0, -959.05], [-1207.75, -955.65], [-1213.91, -952.94], [-1220.7, -956.71], [-1223.15, -963.6], [-1224.85, -972.12], [-1224.87, -978.06], [-1224.84, -981.77], [-1221.93, -988.95], [-1219.39, -992.31], [-1215.07, -997.4], [-1207.97, -1001.87], [-1201.72, -1002.87], [-1193.98, -1003.09], [-1182.58, -997.55], [-1178.14, -993.3], [-1173.97, -985.73], [-1172.92, -980.85], [-1172.53, -971.74], [-1174.09, -965.94], [-1177.0, -958.85], [-1183.85, -962.88], [-1190.18, -963.51], [-1196.65, -962.64], [-1202.0, -959.05]], "holes": []}}, {"shape": {"outer": [[-814.77, -59.93], [-813.15, -61.61], [-812.05, -60.87], [-810.09, -60.39], [-808.08, -60.64], [-806.3, -61.6], [-804.72, -59.99], [-805.7, -59.14], [-806.63, -58.64], [-807.56, -58.37], [-808.9, -58.11], [-810.19, -58.11], [-811.48, -58.31], [-812.72, -58.65], [-813.79, -59.13], [-814.77, -59.93]], "holes": []}}, {"shape": {"outer": [[-802.91, -61.29], [-804.98, -63.13], [-804.29, -65.03], [-804.33, -67.04], [-805.1, -68.91], [-805.11, -69.23], [-804.86, -69.66], [-804.45, -70.09], [-803.9, -70.35], [-803.27, -70.41], [-802.67, -70.16], [-802.12, -69.27], [-801.83, -68.35], [-801.5, -67.03], [-801.46, -65.74], [-801.61, -64.45], [-801.91, -63.2], [-802.35, -62.12], [-802.91, -61.29]], "holes": []}}, {"shape": {"outer": [[-812.35, -72.92], [-811.59, -71.14], [-813.25, -70.24], [-814.49, -68.84], [-815.2, -67.1], [-817.11, -66.94], [-817.42, -67.31], [-812.35, -72.92]], "holes": []}}, {"shape": {"outer": [[-818.63, -65.96], [-817.07, -65.3], [-815.62, -65.39], [-815.39, -64.09], [-814.37, -62.35], [-818.27, -58.53], [-819.02, -59.36], [-819.98, -60.13], [-820.61, -60.59], [-821.22, -60.67], [-821.83, -60.41], [-822.84, -59.35], [-824.04, -60.34], [-818.63, -65.96]], "holes": []}}, {"shape": {"outer": [[-1229.1, -402.16], [-1228.71, -403.03], [-1232.88, -405.07], [-1237.19, -408.37], [-1239.41, -407.57], [-1247.92, -407.42], [-1248.44, -405.0], [-1248.3, -401.25], [-1229.1, -402.16]], "holes": []}}, {"shape": {"outer": [[-1278.68, -53.82], [-1279.07, -54.49], [-1279.03, -54.8], [-1276.0, -56.6], [-1275.68, -56.58], [-1275.41, -56.06], [-1274.84, -55.52], [-1273.63, -55.54], [-1272.95, -56.21], [-1272.71, -56.69], [-1272.41, -56.81], [-1262.34, -57.32], [-1261.15, -56.94], [-1260.39, -55.63], [-1260.53, -55.15], [-1261.54, -54.48], [-1278.41, -53.77], [-1278.68, -53.82]], "holes": []}}, {"shape": {"outer": [[-1226.93, -62.33], [-1226.55, -62.15], [-1222.57, -62.38], [-1222.22, -62.61], [-1221.58, -63.84], [-1221.62, -64.23], [-1222.46, -64.79], [-1226.77, -64.47], [-1227.5, -64.1], [-1227.51, -63.46], [-1226.93, -62.33]], "holes": []}}, {"shape": {"outer": [[-1213.12, -62.79], [-1213.43, -62.9], [-1214.53, -63.65], [-1214.56, -63.99], [-1213.98, -65.07], [-1213.62, -65.28], [-1205.05, -65.91], [-1204.52, -65.67], [-1203.34, -64.11], [-1203.5, -63.48], [-1204.23, -63.27], [-1213.12, -62.79]], "holes": []}}, {"shape": {"outer": [[-1303.6, -75.66], [-1298.74, -75.87], [-1298.86, -77.31], [-1299.17, -77.82], [-1299.79, -78.16], [-1300.37, -77.81], [-1301.06, -77.43], [-1301.75, -76.48], [-1303.01, -76.12], [-1303.6, -75.66]], "holes": []}}, {"shape": {"outer": [[-1336.79, -100.89], [-1334.86, -101.01], [-1334.05, -101.45], [-1334.67, -113.6], [-1337.36, -113.49], [-1336.79, -100.89]], "holes": []}}, {"shape": {"outer": [[-1359.39, -75.88], [-1347.77, -76.45], [-1347.89, -78.84], [-1356.23, -78.43], [-1359.51, -78.28], [-1359.39, -75.88]], "holes": []}}, {"shape": {"outer": [[-1329.69, -76.2], [-1327.47, -76.31], [-1328.38, -96.14], [-1330.61, -96.04], [-1329.69, -76.2]], "holes": []}}, {"shape": {"outer": [[-1330.82, -104.0], [-1328.68, -104.11], [-1329.85, -127.19], [-1331.99, -127.09], [-1330.82, -104.0]], "holes": []}}, {"shape": {"outer": [[-1334.87, -131.39], [-1329.66, -131.63], [-1330.16, -142.59], [-1335.38, -142.35], [-1334.87, -131.39]], "holes": []}}, {"shape": {"outer": [[-1335.88, -158.32], [-1331.53, -158.53], [-1332.48, -177.64], [-1331.85, -177.67], [-1332.16, -183.89], [-1333.02, -183.84], [-1333.32, -189.92], [-1335.77, -189.8], [-1335.83, -191.05], [-1337.51, -190.97], [-1335.88, -158.32]], "holes": []}}, {"shape": {"outer": [[-1335.51, -149.31], [-1335.61, -151.75], [-1331.93, -151.9], [-1331.82, -149.46], [-1335.51, -149.31]], "holes": []}}, {"shape": {"outer": [[-1314.57, 49.9], [-1314.74, 46.76], [-1307.6, 46.4], [-1307.45, 49.57], [-1314.57, 49.9]], "holes": []}}, {"shape": {"outer": [[-1308.36, -54.72], [-1308.72, -54.32], [-1308.85, -54.15], [-1308.98, -53.62], [-1308.82, -52.62], [-1307.99, -51.88], [-1306.76, -51.85], [-1305.85, -52.55], [-1305.71, -53.28], [-1305.63, -53.72], [-1306.36, -54.78], [-1307.56, -54.99], [-1308.36, -54.72]], "holes": []}}, {"shape": {"outer": [[-1447.2, -173.13], [-1442.19, -173.4], [-1439.87, -173.52], [-1441.08, -197.69], [-1442.16, -197.61], [-1442.25, -201.45], [-1447.87, -201.35], [-1447.2, -173.13]], "holes": []}}, {"shape": {"outer": [[-1382.07, -72.43], [-1380.98, -72.48], [-1381.44, -78.27], [-1384.87, -78.17], [-1382.07, -72.43]], "holes": []}}, {"shape": {"outer": [[-1442.21, -37.08], [-1438.52, -37.23], [-1438.41, -34.29], [-1442.09, -34.12], [-1442.21, -37.08]], "holes": []}}, {"shape": {"outer": [[-1436.85, -37.51], [-1433.06, -37.66], [-1432.96, -35.31], [-1436.75, -35.16], [-1436.85, -37.51]], "holes": []}}, {"shape": {"outer": [[-1419.79, -34.77], [-1419.88, -37.12], [-1416.07, -37.26], [-1415.98, -34.91], [-1419.79, -34.77]], "holes": []}}, {"shape": {"outer": [[-1369.3, -232.53], [-1367.37, -232.6], [-1367.42, -234.3], [-1369.36, -234.23], [-1369.3, -232.53]], "holes": []}}, {"shape": {"outer": [[-1364.7, -232.74], [-1358.24, -233.04], [-1358.32, -234.71], [-1364.78, -234.42], [-1364.7, -232.74]], "holes": []}}, {"shape": {"outer": [[-1355.57, -233.18], [-1349.11, -233.47], [-1349.19, -235.15], [-1355.65, -234.85], [-1355.57, -233.18]], "holes": []}}, {"shape": {"outer": [[-1346.46, -233.65], [-1340.55, -233.9], [-1340.62, -235.52], [-1346.53, -235.27], [-1346.46, -233.65]], "holes": []}}, {"shape": {"outer": [[-1321.21, -234.9], [-1315.33, -235.16], [-1315.41, -236.82], [-1321.28, -236.55], [-1321.21, -234.9]], "holes": []}}, {"shape": {"outer": [[-1312.72, -235.2], [-1306.26, -235.5], [-1306.34, -237.18], [-1312.8, -236.88], [-1312.72, -235.2]], "holes": []}}, {"shape": {"outer": [[-1303.45, -235.7], [-1296.99, -236.01], [-1297.07, -237.68], [-1303.53, -237.38], [-1303.45, -235.7]], "holes": []}}, {"shape": {"outer": [[-1294.36, -236.14], [-1287.91, -236.44], [-1287.99, -238.11], [-1294.44, -237.82], [-1294.36, -236.14]], "holes": []}}, {"shape": {"outer": [[-1442.98, -235.79], [-1442.16, -232.73], [-1439.32, -233.19], [-1413.3, -234.48], [-1413.4, -237.15], [-1442.98, -235.79]], "holes": []}}, {"shape": {"outer": [[-1397.95, -235.38], [-1398.11, -238.05], [-1389.1, -238.48], [-1385.87, -237.57], [-1385.93, -236.64], [-1388.68, -235.82], [-1397.95, -235.38]], "holes": []}}, {"shape": {"outer": [[-1214.68, -237.56], [-1214.32, -238.88], [-1217.97, -241.74], [-1227.96, -239.51], [-1227.97, -239.08], [-1227.57, -239.11], [-1227.5, -237.14], [-1214.68, -237.56]], "holes": []}}, {"shape": {"outer": [[-1213.71, -212.02], [-1213.26, -212.05], [-1212.61, -212.96], [-1213.0, -225.78], [-1213.45, -226.08], [-1213.71, -212.02]], "holes": []}}, {"shape": {"outer": [[-1214.08, -178.58], [-1211.79, -178.67], [-1208.07, -179.6], [-1212.2, -197.31], [-1212.8, -197.26], [-1212.53, -192.27], [-1214.08, -178.58]], "holes": []}}, {"shape": {"outer": [[-1216.5, -197.27], [-1214.37, -197.29], [-1214.09, -191.77], [-1215.78, -180.0], [-1216.5, -197.27]], "holes": []}}, {"shape": {"outer": [[-1404.99, 30.71], [-1406.92, 30.78], [-1406.97, 29.32], [-1407.02, 27.98], [-1406.36, 27.96], [-1405.08, 27.91], [-1404.99, 30.71]], "holes": []}}, {"shape": {"outer": [[-1391.31, 24.08], [-1391.3, 24.38], [-1391.56, 24.77], [-1398.59, 25.07], [-1400.1, 24.48], [-1400.92, 23.7], [-1400.99, 23.4], [-1398.23, 23.34], [-1398.02, 24.02], [-1397.6, 24.32], [-1391.31, 24.08]], "holes": []}}, {"shape": {"outer": [[-1255.54, 17.68], [-1255.47, 18.99], [-1255.24, 23.27], [-1193.84, 20.36], [-1194.12, 14.22], [-1200.55, 14.51], [-1200.5, 15.41], [-1212.1, 15.96], [-1212.12, 15.63], [-1255.54, 17.68]], "holes": []}}, {"shape": {"outer": [[-1262.54, 18.38], [-1262.5, 19.31], [-1262.32, 23.68], [-1276.07, 24.33], [-1276.28, 19.02], [-1262.54, 18.38]], "holes": []}}, {"shape": {"outer": [[-1324.66, 151.16], [-1323.6, 151.19], [-1322.38, 151.39], [-1320.97, 151.86], [-1319.44, 152.5], [-1315.65, 154.84], [-1312.97, 157.35], [-1316.24, 157.28], [-1319.76, 157.09], [-1322.07, 156.71], [-1324.39, 156.3], [-1324.66, 151.16]], "holes": []}}, {"shape": {"outer": [[-1206.83, -75.16], [-1206.8, -75.56], [-1207.6, -76.81], [-1208.18, -76.91], [-1210.57, -75.32], [-1210.63, -75.01], [-1210.17, -74.28], [-1209.8, -74.2], [-1207.73, -74.35], [-1207.46, -74.47], [-1206.83, -75.16]], "holes": []}}, {"shape": {"outer": [[-1334.91, -94.3], [-1334.22, -94.33], [-1333.76, -95.14], [-1333.93, -97.78], [-1334.65, -98.64], [-1336.63, -98.55], [-1336.58, -96.34], [-1334.98, -96.41], [-1334.91, -94.3]], "holes": []}}, {"shape": {"outer": [[-1277.13, -202.46], [-1274.46, -202.58], [-1274.14, -194.88], [-1276.76, -194.78], [-1277.13, -202.46]], "holes": []}}, {"shape": {"outer": [[-1267.5, -175.63], [-1269.74, -175.54], [-1270.28, -175.87], [-1270.63, -176.36], [-1270.83, -180.9], [-1267.81, -181.02], [-1267.5, -175.63]], "holes": []}}, {"shape": {"outer": [[-1268.3, -189.73], [-1269.18, -189.69], [-1269.38, -193.76], [-1269.76, -195.62], [-1270.18, -210.44], [-1269.38, -210.67], [-1268.3, -189.73]], "holes": []}}, {"shape": {"outer": [[-1272.85, -210.35], [-1274.47, -210.26], [-1275.37, -228.66], [-1273.62, -228.74], [-1273.19, -227.08], [-1273.51, -226.06], [-1273.07, -224.38], [-1273.39, -223.23], [-1272.94, -221.4], [-1273.27, -220.33], [-1272.82, -218.61], [-1273.15, -217.46], [-1272.71, -215.93], [-1273.03, -214.63], [-1272.6, -213.29], [-1272.92, -212.2], [-1272.51, -211.16], [-1272.85, -210.35]], "holes": []}}, {"shape": {"outer": [[-1242.3, 153.61], [-1205.51, 151.52], [-1205.74, 144.13], [-1195.18, 143.66], [-1195.14, 144.81], [-1192.52, 144.68], [-1192.78, 140.75], [-1195.13, 140.87], [-1206.56, 141.53], [-1206.27, 149.35], [-1237.2, 150.63], [-1237.31, 147.5], [-1242.55, 147.37], [-1242.3, 153.61]], "holes": []}}, {"shape": {"outer": [[-1194.08, 115.47], [-1188.47, 115.21], [-1188.53, 113.98], [-1210.42, 114.99], [-1210.36, 116.22], [-1204.18, 115.94], [-1194.08, 115.47]], "holes": []}}, {"shape": {"outer": [[-1255.75, 108.76], [-1252.45, 108.62], [-1252.72, 102.55], [-1243.84, 101.95], [-1244.86, 76.2], [-1255.65, 72.77], [-1257.27, 72.41], [-1255.75, 108.76]], "holes": []}}, {"shape": {"outer": [[-1397.03, 153.53], [-1395.12, 152.47], [-1395.24, 150.18], [-1393.86, 150.13], [-1393.55, 153.92], [-1396.07, 155.27], [-1397.03, 153.53]], "holes": []}}, {"shape": {"outer": [[-1394.01, 158.95], [-1391.99, 162.34], [-1393.0, 162.82], [-1395.45, 164.01], [-1394.99, 164.88], [-1394.54, 165.19], [-1393.96, 165.33], [-1393.23, 165.2], [-1388.2, 162.48], [-1387.75, 161.96], [-1387.46, 161.46], [-1387.27, 160.89], [-1387.13, 160.25], [-1387.07, 159.64], [-1387.05, 159.03], [-1387.02, 158.4], [-1387.08, 157.81], [-1387.17, 157.31], [-1387.39, 156.8], [-1388.06, 155.49], [-1394.01, 158.95]], "holes": []}}, {"shape": {"outer": [[-1363.08, 159.6], [-1363.11, 156.79], [-1355.0, 156.08], [-1355.02, 156.99], [-1363.08, 159.6]], "holes": []}}, {"shape": {"outer": [[-1346.52, 154.01], [-1341.68, 153.33], [-1341.78, 155.04], [-1340.47, 155.02], [-1340.48, 150.13], [-1346.78, 150.41], [-1346.52, 154.01]], "holes": []}}, {"shape": {"outer": [[-1442.89, -44.13], [-1442.95, -45.95], [-1438.95, -46.09], [-1438.89, -44.26], [-1442.89, -44.13]], "holes": []}}, {"shape": {"outer": [[-1338.97, -153.24], [-1338.78, -149.06], [-1340.05, -148.32], [-1351.45, -147.61], [-1351.7, -152.56], [-1338.97, -153.24]], "holes": []}}, {"shape": {"outer": [[-1376.56, -151.25], [-1376.37, -147.08], [-1373.83, -146.77], [-1363.76, -147.79], [-1363.97, -151.91], [-1376.56, -151.25]], "holes": []}}, {"shape": {"outer": [[-1218.7, -161.31], [-1205.12, -162.02], [-1205.53, -169.82], [-1227.66, -168.6], [-1227.55, -166.61], [-1218.45, -167.09], [-1218.25, -163.16], [-1218.79, -163.1], [-1218.7, -161.31]], "holes": []}}, {"shape": {"outer": [[-1221.46, -129.37], [-1221.38, -127.8], [-1217.19, -128.02], [-1217.24, -128.91], [-1204.79, -129.58], [-1205.33, -139.53], [-1203.8, -139.61], [-1204.1, -145.25], [-1207.39, -145.08], [-1207.64, -149.8], [-1206.61, -149.86], [-1206.67, -151.12], [-1207.62, -151.07], [-1207.93, -156.99], [-1218.44, -156.43], [-1217.02, -129.61], [-1221.46, -129.37]], "holes": []}}, {"shape": {"outer": [[-1251.73, -128.34], [-1249.33, -128.47], [-1249.65, -134.3], [-1252.07, -134.15], [-1251.73, -128.34]], "holes": []}}, {"shape": {"outer": [[-1250.74, -154.81], [-1252.25, -154.16], [-1252.93, -153.17], [-1252.91, -152.01], [-1256.3, -151.74], [-1255.66, -137.49], [-1249.83, -137.82], [-1250.74, -154.81]], "holes": []}}, {"shape": {"outer": [[-1253.38, -165.42], [-1253.48, -167.31], [-1244.05, -167.74], [-1243.95, -165.87], [-1253.38, -165.42]], "holes": []}}, {"shape": {"outer": [[-1249.87, 123.76], [-1242.69, 123.54], [-1242.75, 121.23], [-1240.88, 121.12], [-1241.02, 118.09], [-1238.16, 117.96], [-1238.38, 115.27], [-1241.42, 115.35], [-1249.87, 123.76]], "holes": []}}, {"shape": {"outer": [[-1447.46, -208.91], [-1446.09, -208.88], [-1446.06, -210.05], [-1447.44, -210.09], [-1447.46, -208.91]], "holes": []}}, {"shape": {"outer": [[-1483.43, -229.29], [-1474.09, -220.59], [-1472.73, -220.72], [-1473.01, -223.08], [-1473.26, -224.76], [-1473.6, -226.27], [-1474.2, -227.7], [-1475.42, -228.84], [-1477.12, -229.44], [-1479.28, -229.5], [-1483.43, -229.29]], "holes": []}}, {"shape": {"outer": [[-1355.13, 142.6], [-1353.3, 142.59], [-1350.59, 142.55], [-1348.17, 142.51], [-1344.76, 142.35], [-1341.63, 142.16], [-1339.32, 141.96], [-1336.93, 141.7], [-1334.79, 141.43], [-1334.77, 142.4], [-1336.9, 142.64], [-1339.37, 142.93], [-1341.66, 143.18], [-1344.69, 143.34], [-1348.22, 143.53], [-1350.61, 143.56], [-1353.28, 143.59], [-1355.08, 143.61], [-1355.13, 142.6]], "holes": []}}, {"shape": {"outer": [[-1294.46, 50.19], [-1292.41, 50.11], [-1291.75, 51.8], [-1290.76, 53.32], [-1289.52, 54.77], [-1288.28, 55.88], [-1286.97, 56.82], [-1285.25, 57.72], [-1283.26, 58.39], [-1285.9, 58.65], [-1287.25, 58.91], [-1288.37, 59.83], [-1289.13, 60.83], [-1289.69, 62.0], [-1289.75, 63.3], [-1289.48, 64.53], [-1288.9, 65.66], [-1287.84, 66.57], [-1287.42, 66.85], [-1286.69, 83.73], [-1289.09, 82.77], [-1293.06, 82.84], [-1293.17, 76.35], [-1290.98, 76.24], [-1291.72, 60.84], [-1293.91, 60.93], [-1294.46, 50.19]], "holes": []}}, {"shape": {"outer": [[-1241.59, 47.7], [-1254.48, 48.36], [-1254.72, 43.63], [-1241.83, 42.96], [-1241.59, 47.7]], "holes": []}}, {"shape": {"outer": [[-1229.53, 49.18], [-1226.15, 49.03], [-1226.04, 52.99], [-1229.42, 53.08], [-1229.53, 49.18]], "holes": []}}, {"shape": {"outer": [[-1375.12, 104.8], [-1375.09, 106.29], [-1376.14, 106.34], [-1377.22, 106.8], [-1378.12, 107.54], [-1378.93, 108.76], [-1379.85, 109.83], [-1381.53, 110.84], [-1383.34, 111.62], [-1385.28, 111.94], [-1386.93, 111.8], [-1388.68, 111.48], [-1390.26, 110.67], [-1391.58, 109.63], [-1392.41, 108.81], [-1393.38, 107.86], [-1394.38, 107.47], [-1395.45, 107.51], [-1395.49, 106.31], [-1394.45, 106.22], [-1393.66, 106.41], [-1392.47, 106.94], [-1391.1, 108.26], [-1389.71, 109.49], [-1388.5, 110.11], [-1386.86, 110.48], [-1385.24, 110.53], [-1383.61, 110.25], [-1382.01, 109.45], [-1380.57, 108.54], [-1379.4, 107.15], [-1378.65, 106.03], [-1377.86, 105.41], [-1376.87, 104.94], [-1376.1, 104.86], [-1375.12, 104.8]], "holes": []}}, {"shape": {"outer": [[-1453.51, 177.18], [-1453.19, 179.58], [-1444.22, 177.11], [-1438.16, 174.42], [-1434.98, 174.04], [-1435.16, 171.16], [-1438.08, 171.18], [-1438.37, 171.43], [-1451.6, 176.57], [-1453.51, 177.18]], "holes": []}}, {"shape": {"outer": [[-1358.84, -371.22], [-1401.96, -368.81], [-1401.84, -366.26], [-1388.84, -366.89], [-1387.28, -334.5], [-1384.27, -334.65], [-1384.1, -331.06], [-1374.35, -331.53], [-1374.02, -324.58], [-1370.11, -324.77], [-1370.19, -326.61], [-1370.37, -329.48], [-1356.44, -330.09], [-1357.07, -344.19], [-1348.77, -344.57], [-1348.84, -346.2], [-1349.53, -361.73], [-1351.84, -361.63], [-1351.56, -356.94], [-1358.2, -356.65], [-1358.84, -371.22]], "holes": []}}, {"shape": {"outer": [[-1468.46, -90.09], [-1467.78, -90.3], [-1467.32, -90.65], [-1467.01, -91.01], [-1466.75, -91.44], [-1466.61, -92.04], [-1467.18, -101.76], [-1467.25, -102.22], [-1467.43, -102.49], [-1467.72, -102.67], [-1468.06, -102.78], [-1470.52, -102.6], [-1470.56, -103.09], [-1482.7, -102.36], [-1483.0, -101.42], [-1483.35, -100.46], [-1483.83, -99.58], [-1484.36, -98.75], [-1485.1, -97.82], [-1485.93, -96.93], [-1486.89, -95.94], [-1488.04, -94.95], [-1489.24, -93.87], [-1490.11, -92.67], [-1490.64, -91.03], [-1490.89, -89.33], [-1490.6, -87.56], [-1489.93, -85.86], [-1488.96, -84.38], [-1487.78, -83.2], [-1485.81, -85.08], [-1484.35, -86.23], [-1482.45, -87.51], [-1480.3, -88.36], [-1478.05, -89.07], [-1475.59, -89.55], [-1473.07, -89.89], [-1470.8, -90.2], [-1468.5, -90.5], [-1468.46, -90.09]], "holes": []}}, {"shape": {"outer": [[-1493.96, -81.4], [-1493.84, -77.54], [-1492.78, -77.89], [-1491.04, -79.63], [-1489.34, -81.49], [-1487.78, -83.2], [-1488.96, -84.38], [-1489.93, -85.86], [-1490.6, -87.56], [-1490.89, -89.33], [-1490.64, -91.03], [-1490.11, -92.67], [-1489.24, -93.87], [-1488.04, -94.95], [-1486.89, -95.94], [-1485.93, -96.93], [-1485.1, -97.82], [-1484.36, -98.75], [-1483.83, -99.58], [-1483.35, -100.46], [-1483.0, -101.42], [-1482.7, -102.36], [-1490.21, -101.57], [-1490.2, -101.04], [-1493.93, -100.9], [-1493.47, -87.65], [-1492.63, -87.68], [-1492.4, -81.46], [-1493.96, -81.4]], "holes": []}}, {"shape": {"outer": [[-1484.03, -104.18], [-1468.11, -105.39], [-1468.1, -104.81], [-1467.68, -104.92], [-1467.45, -105.17], [-1467.29, -105.48], [-1467.25, -105.89], [-1467.29, -106.41], [-1468.21, -125.16], [-1470.92, -125.0], [-1471.38, -125.21], [-1500.22, -123.91], [-1499.92, -112.9], [-1495.05, -112.95], [-1493.09, -113.37], [-1491.02, -113.35], [-1488.13, -111.72], [-1486.52, -109.66], [-1484.52, -106.21], [-1484.03, -104.18]], "holes": []}}, {"shape": {"outer": [[-1499.92, -112.9], [-1499.67, -106.12], [-1498.88, -106.17], [-1498.4, -106.47], [-1497.45, -106.97], [-1496.31, -107.3], [-1495.07, -107.43], [-1494.17, -107.37], [-1493.38, -107.22], [-1491.54, -106.77], [-1489.75, -105.69], [-1488.27, -104.94], [-1486.74, -104.37], [-1485.38, -104.19], [-1484.03, -104.18], [-1484.52, -106.21], [-1486.52, -109.66], [-1488.13, -111.72], [-1491.02, -113.35], [-1493.09, -113.37], [-1495.05, -112.95], [-1499.92, -112.9]], "holes": []}}, {"shape": {"outer": [[-1497.62, -104.16], [-1497.81, -104.93], [-1497.77, -105.51], [-1497.17, -105.87], [-1494.3, -105.83], [-1493.21, -105.62], [-1492.09, -105.19], [-1490.75, -104.43], [-1494.97, -104.26], [-1497.62, -104.16]], "holes": []}}, {"shape": {"outer": [[-1510.58, -104.5], [-1510.62, -105.62], [-1501.59, -105.89], [-1501.56, -104.81], [-1510.58, -104.5]], "holes": []}}, {"shape": {"outer": [[-1512.66, -107.59], [-1512.67, -106.81], [-1501.75, -107.21], [-1502.66, -123.76], [-1515.5, -123.35], [-1515.16, -114.38], [-1514.13, -113.32], [-1513.53, -112.53], [-1513.12, -111.65], [-1512.81, -110.57], [-1512.66, -107.59]], "holes": []}}, {"shape": {"outer": [[-1468.46, -136.46], [-1468.1, -128.17], [-1500.39, -126.28], [-1500.49, -129.13], [-1479.39, -130.09], [-1479.59, -134.76], [-1479.09, -135.67], [-1478.14, -136.05], [-1468.46, -136.46]], "holes": []}}, {"shape": {"outer": [[-1517.17, -154.12], [-1519.14, -155.19], [-1520.89, -157.81], [-1521.22, -160.87], [-1520.63, -163.85], [-1518.9, -165.66], [-1516.73, -165.67], [-1514.19, -163.77], [-1513.43, -159.78], [-1513.4, -156.17], [-1514.71, -153.99], [-1517.17, -154.12]], "holes": []}}, {"shape": {"outer": [[-1597.05, -169.19], [-1601.36, -169.04], [-1601.57, -168.14], [-1599.19, -165.97], [-1598.93, -159.3], [-1600.76, -159.3], [-1601.29, -158.91], [-1601.39, -158.2], [-1599.51, -155.35], [-1597.8, -153.49], [-1596.28, -151.93], [-1593.63, -150.26], [-1590.32, -148.5], [-1586.74, -147.07], [-1582.99, -145.82], [-1576.45, -144.43], [-1572.1, -144.05], [-1569.26, -143.96], [-1571.62, -145.87], [-1573.2, -147.59], [-1574.66, -149.52], [-1575.53, -151.06], [-1575.92, -152.76], [-1575.91, -154.13], [-1580.3, -153.94], [-1580.27, -153.17], [-1596.34, -152.48], [-1597.05, -169.19]], "holes": []}}, {"shape": {"outer": [[-1607.33, -146.69], [-1611.59, -138.17], [-1619.4, -137.24], [-1619.15, -134.76], [-1624.9, -133.99], [-1624.61, -131.95], [-1629.61, -130.84], [-1650.54, -127.61], [-1651.3, -128.66], [-1644.59, -139.62], [-1633.8, -155.93], [-1630.91, -160.31], [-1627.39, -161.75], [-1621.46, -158.97], [-1607.33, -146.69]], "holes": []}}, {"shape": {"outer": [[-1505.48, -80.99], [-1505.32, -75.55], [-1496.88, -77.22], [-1496.95, -81.29], [-1505.48, -80.99]], "holes": []}}, {"shape": {"outer": [[-1692.62, 0.66], [-1694.18, -0.18], [-1695.42, -6.44], [-1694.46, -7.77], [-1693.73, -9.66], [-1693.59, -12.16], [-1693.99, -13.77], [-1694.67, -15.41], [-1695.71, -16.68], [-1696.68, -17.64], [-1697.43, -18.43], [-1698.5, -24.51], [-1697.3, -25.94], [-1696.14, -19.71], [-1694.73, -18.36], [-1693.34, -16.6], [-1692.42, -14.91], [-1691.84, -12.64], [-1691.99, -10.61], [-1692.57, -8.22], [-1693.59, -5.96], [-1692.62, 0.66]], "holes": []}}, {"shape": {"outer": [[-1701.52, 30.17], [-1702.88, 31.02], [-1704.23, 30.6], [-1704.97, 29.51], [-1706.64, 18.1], [-1682.33, 13.99], [-1680.07, 17.31], [-1701.52, 30.17]], "holes": []}}, {"shape": {"outer": [[-1704.64, 1.79], [-1705.46, 2.52], [-1703.7, 11.79], [-1702.77, 12.89], [-1683.59, 9.51], [-1699.8, 0.95], [-1704.64, 1.79]], "holes": []}}, {"shape": {"outer": [[-1702.27, -5.42], [-1706.94, -4.76], [-1707.7, -5.69], [-1709.41, -15.38], [-1708.85, -16.05], [-1704.05, -17.0], [-1703.86, -16.11], [-1705.87, -15.34], [-1707.13, -13.32], [-1707.58, -11.28], [-1706.94, -8.49], [-1706.01, -7.28], [-1704.01, -6.45], [-1702.34, -6.31], [-1702.27, -5.42]], "holes": []}}, {"shape": {"outer": [[-1709.55, -22.42], [-1710.59, -22.79], [-1712.42, -32.05], [-1711.96, -33.42], [-1692.9, -37.41], [-1704.75, -23.45], [-1709.55, -22.42]], "holes": []}}, {"shape": {"outer": [[-1722.24, -19.6], [-1721.38, -15.09], [-1720.12, -15.31], [-1719.81, -13.61], [-1719.0, -13.77], [-1720.18, -19.99], [-1722.24, -19.6]], "holes": []}}, {"shape": {"outer": [[-1717.56, -1.24], [-1717.85, -2.83], [-1717.07, -2.97], [-1715.93, 3.45], [-1718.3, 3.87], [-1719.14, -0.9], [-1717.56, -1.24]], "holes": []}}, {"shape": {"outer": [[-1723.64, -14.63], [-1725.21, -23.04], [-1727.23, -22.66], [-1728.09, -27.23], [-1732.46, -26.42], [-1732.36, -25.72], [-1733.37, -25.57], [-1732.16, -19.08], [-1729.12, -19.65], [-1728.04, -13.84], [-1723.64, -14.63]], "holes": []}}, {"shape": {"outer": [[-1725.25, 13.83], [-1720.64, 13.04], [-1721.55, 7.82], [-1719.77, 7.52], [-1721.16, -0.5], [-1725.52, 0.25], [-1724.48, 6.26], [-1727.37, 6.76], [-1726.23, 13.36], [-1725.36, 13.2], [-1725.25, 13.83]], "holes": []}}, {"shape": {"outer": [[-1732.82, -28.75], [-1722.75, -30.82], [-1722.09, -31.43], [-1722.27, -32.37], [-1726.09, -51.8], [-1726.59, -52.63], [-1727.63, -52.95], [-1729.18, -52.63], [-1730.98, -52.26], [-1732.8, -51.88], [-1735.12, -51.39], [-1737.19, -50.97], [-1746.4, -49.05], [-1747.43, -48.47], [-1746.33, -48.67], [-1746.19, -47.84], [-1737.75, -49.52], [-1737.65, -48.89], [-1732.68, -49.81], [-1730.34, -36.73], [-1735.09, -35.94], [-1733.82, -29.49], [-1732.95, -29.64], [-1732.82, -28.75]], "holes": []}}, {"shape": {"outer": [[-1719.56, -50.71], [-1716.19, -36.4], [-1677.97, -43.41], [-1719.56, -50.71]], "holes": []}}, {"shape": {"outer": [[-1735.66, -57.56], [-1738.39, -71.25], [-1727.6, -73.13], [-1726.47, -72.85], [-1725.81, -71.75], [-1725.86, -70.18], [-1726.68, -67.69], [-1726.98, -64.0], [-1727.49, -61.34], [-1728.2, -59.44], [-1729.71, -58.81], [-1735.66, -57.56]], "holes": []}}, {"shape": {"outer": [[-1660.21, -52.34], [-1659.56, -48.34], [-1648.61, -50.16], [-1649.23, -54.22], [-1660.21, -52.34]], "holes": []}}, {"shape": {"outer": [[-1667.47, -86.57], [-1667.07, -87.93], [-1666.72, -89.43], [-1665.63, -90.48], [-1663.3, -92.4], [-1661.17, -94.87], [-1659.47, -97.83], [-1658.55, -99.43], [-1657.92, -99.69], [-1657.38, -99.55], [-1656.78, -99.2], [-1656.49, -98.47], [-1654.43, -88.81], [-1667.47, -86.57]], "holes": []}}, {"shape": {"outer": [[-1606.54, -127.24], [-1607.7, -134.64], [-1615.98, -133.35], [-1614.81, -125.94], [-1606.54, -127.24]], "holes": []}}, {"shape": {"outer": [[-1568.5, -70.67], [-1571.21, -70.6], [-1570.78, -66.89], [-1569.26, -66.89], [-1569.11, -64.13], [-1551.18, -67.56], [-1549.06, -69.45], [-1548.36, -71.26], [-1547.64, -74.83], [-1547.84, -82.92], [-1547.8, -87.52], [-1549.11, -87.51], [-1549.16, -82.9], [-1554.28, -82.84], [-1554.56, -97.14], [-1553.88, -97.12], [-1553.86, -98.51], [-1551.9, -98.55], [-1551.92, -97.18], [-1549.09, -97.24], [-1549.0, -90.26], [-1547.95, -90.24], [-1547.87, -99.24], [-1549.29, -101.22], [-1551.42, -104.19], [-1553.21, -105.62], [-1554.77, -106.51], [-1556.73, -107.01], [-1556.11, -81.39], [-1568.66, -81.42], [-1568.5, -70.67]], "holes": []}}, {"shape": {"outer": [[-1548.35, -108.84], [-1547.23, -109.37], [-1546.02, -110.53], [-1545.08, -111.84], [-1544.14, -114.12], [-1543.55, -116.73], [-1543.13, -119.36], [-1542.95, -121.71], [-1543.1, -124.06], [-1543.75, -127.37], [-1544.29, -128.59], [-1545.02, -129.28], [-1546.16, -129.71], [-1549.02, -129.59], [-1548.35, -108.84]], "holes": []}}, {"shape": {"outer": [[-1524.82, -72.23], [-1508.36, -74.98], [-1508.39, -80.89], [-1516.94, -80.58], [-1517.08, -84.44], [-1522.31, -84.25], [-1522.29, -83.65], [-1529.73, -83.38], [-1529.75, -81.69], [-1529.71, -80.33], [-1529.54, -78.8], [-1529.01, -77.06], [-1528.55, -76.0], [-1527.92, -74.79], [-1527.06, -73.57], [-1526.15, -72.73], [-1524.82, -72.23]], "holes": []}}, {"shape": {"outer": [[-1657.6, -216.48], [-1649.9, -216.81], [-1650.1, -221.46], [-1657.8, -221.2], [-1657.6, -216.48]], "holes": []}}, {"shape": {"outer": [[-1470.63, -161.88], [-1487.57, -161.01], [-1488.25, -159.15], [-1495.19, -154.97], [-1505.6, -172.15], [-1508.54, -173.69], [-1507.99, -171.86], [-1506.77, -170.54], [-1505.61, -168.9], [-1504.64, -166.99], [-1504.08, -165.17], [-1503.79, -163.43], [-1503.63, -161.72], [-1500.82, -162.01], [-1500.36, -157.27], [-1497.32, -157.49], [-1496.8, -152.53], [-1492.24, -152.89], [-1492.05, -150.66], [-1470.26, -151.78], [-1470.63, -161.88]], "holes": []}}, {"shape": {"outer": [[-1494.31, -181.8], [-1488.84, -182.01], [-1473.03, -182.87], [-1471.69, -182.14], [-1471.0, -180.54], [-1470.0, -163.47], [-1489.29, -162.43], [-1485.41, -164.83], [-1494.21, -178.99], [-1494.31, -181.8]], "holes": []}}, {"shape": {"outer": [[-1489.03, -187.1], [-1473.17, -188.1], [-1472.24, -188.59], [-1471.24, -189.67], [-1472.29, -206.75], [-1486.64, -206.83], [-1487.78, -206.78], [-1488.45, -205.93], [-1486.79, -205.08], [-1494.66, -189.88], [-1494.55, -186.89], [-1489.03, -187.1]], "holes": []}}, {"shape": {"outer": [[-1477.51, -219.88], [-1473.32, -216.04], [-1472.72, -212.96], [-1472.47, -210.76], [-1473.54, -209.44], [-1475.17, -208.9], [-1477.4, -208.8], [-1478.43, -208.84], [-1480.87, -210.74], [-1482.72, -212.41], [-1483.45, -214.38], [-1483.17, -215.84], [-1481.44, -218.72], [-1480.31, -219.58], [-1478.94, -219.89], [-1477.51, -219.88]], "holes": []}}, {"shape": {"outer": [[-1501.31, -227.65], [-1489.07, -228.3], [-1484.2, -226.23], [-1484.22, -225.23], [-1484.84, -223.9], [-1485.97, -222.98], [-1487.21, -222.19], [-1487.13, -219.25], [-1487.75, -218.1], [-1488.95, -216.46], [-1495.17, -215.56], [-1499.12, -215.9], [-1500.46, -214.48], [-1500.9, -212.18], [-1500.51, -209.73], [-1506.68, -197.81], [-1508.71, -197.3], [-1510.4, -200.03], [-1518.71, -194.91], [-1520.6, -196.38], [-1515.9, -200.12], [-1511.63, -203.05], [-1508.84, -206.36], [-1505.91, -212.45], [-1505.13, -216.53], [-1503.64, -219.21], [-1502.06, -223.18], [-1501.31, -227.65]], "holes": []}}, {"shape": {"outer": [[-1484.2, -226.23], [-1477.51, -219.88], [-1478.94, -219.89], [-1480.31, -219.58], [-1481.44, -218.72], [-1483.17, -215.84], [-1483.45, -214.38], [-1482.72, -212.41], [-1480.87, -210.74], [-1478.43, -208.84], [-1484.81, -208.61], [-1487.4, -208.02], [-1489.96, -208.97], [-1489.72, -209.43], [-1497.31, -213.34], [-1498.45, -211.14], [-1499.5, -211.69], [-1500.51, -209.73], [-1500.9, -212.18], [-1500.46, -214.48], [-1499.12, -215.9], [-1495.17, -215.56], [-1488.95, -216.46], [-1487.75, -218.1], [-1487.13, -219.25], [-1487.21, -222.19], [-1485.97, -222.98], [-1484.84, -223.9], [-1484.22, -225.23], [-1484.2, -226.23]], "holes": []}}, {"shape": {"outer": [[-1802.8, -43.99], [-1789.28, -45.93], [-1789.31, -51.8], [-1803.25, -47.13], [-1802.8, -43.99]], "holes": []}}, {"shape": {"outer": [[-1820.59, -40.59], [-1820.63, -42.02], [-1820.66, -43.13], [-1816.28, -43.25], [-1816.21, -40.71], [-1820.59, -40.59]], "holes": []}}, {"shape": {"outer": [[-1847.83, -74.52], [-1850.15, -74.39], [-1850.41, -82.59], [-1848.98, -83.33], [-1847.8, -84.54], [-1847.08, -85.82], [-1846.84, -86.86], [-1803.61, -88.62], [-1803.88, -93.83], [-1779.19, -94.75], [-1772.09, -88.99], [-1771.78, -86.72], [-1768.49, -86.41], [-1767.24, -85.52], [-1766.47, -84.35], [-1775.38, -84.12], [-1777.1, -89.4], [-1792.51, -88.75], [-1793.92, -83.23], [-1835.67, -81.68], [-1839.05, -81.54], [-1848.1, -81.17], [-1847.83, -74.52]], "holes": []}}, {"shape": {"outer": [[-1846.84, -86.86], [-1847.08, -85.82], [-1847.8, -84.54], [-1848.98, -83.33], [-1850.41, -82.59], [-1850.66, -86.75], [-1846.84, -86.86]], "holes": []}}, {"shape": {"outer": [[-1816.96, 8.34], [-1810.24, 7.52], [-1814.61, -17.26], [-1810.31, -17.94], [-1812.61, -30.31], [-1815.56, -29.83], [-1816.05, -33.09], [-1825.47, -31.29], [-1824.99, -29.29], [-1823.91, -28.28], [-1823.38, -27.3], [-1823.16, -26.65], [-1823.19, -26.02], [-1823.6, -25.54], [-1824.19, -25.0], [-1825.4, -24.24], [-1823.69, -14.98], [-1821.19, -15.53], [-1816.96, 8.34]], "holes": []}}, {"shape": {"outer": [[-1858.66, -46.24], [-1852.94, -46.56], [-1852.69, -40.52], [-1855.1, -40.48], [-1855.21, -35.26], [-1891.5, -28.96], [-1895.84, -30.5], [-1897.21, -30.44], [-1897.15, -35.07], [-1897.12, -37.17], [-1899.19, -37.09], [-1899.66, -45.43], [-1899.26, -45.89], [-1898.05, -46.3], [-1895.62, -46.05], [-1892.55, -45.76], [-1888.39, -45.79], [-1884.52, -45.25], [-1881.93, -43.56], [-1880.05, -39.92], [-1879.61, -38.13], [-1879.44, -36.35], [-1875.84, -36.53], [-1875.25, -39.22], [-1874.63, -43.86], [-1872.35, -45.78], [-1869.0, -46.0], [-1858.66, -46.24]], "holes": []}}, {"shape": {"outer": [[-1891.17, -2.31], [-1887.61, -8.17], [-1889.53, -20.15], [-1894.36, -19.26], [-1897.25, -16.98], [-1897.15, -14.61], [-1897.82, -14.33], [-1896.79, -8.41], [-1895.52, -8.6], [-1892.76, -9.24], [-1891.17, -2.31]], "holes": []}}, {"shape": {"outer": [[-1932.51, -13.17], [-1930.63, -13.23], [-1930.39, -6.71], [-1932.27, -6.64], [-1932.51, -13.17]], "holes": []}}, {"shape": {"outer": [[-1945.4, -12.7], [-1943.48, -12.76], [-1943.26, -6.2], [-1945.18, -6.13], [-1945.4, -12.7]], "holes": []}}, {"shape": {"outer": [[-1917.42, -5.64], [-1916.52, -5.12], [-1915.84, -5.26], [-1915.5, -5.73], [-1915.55, -6.43], [-1916.57, -10.86], [-1917.65, -10.67], [-1917.42, -5.64]], "holes": []}}, {"shape": {"outer": [[-1923.27, -5.12], [-1922.92, -5.03], [-1922.47, -5.06], [-1922.13, -5.37], [-1922.51, -13.41], [-1919.27, -13.61], [-1919.33, -16.5], [-1924.27, -16.34], [-1923.91, -6.85], [-1923.33, -6.83], [-1923.27, -5.12]], "holes": []}}, {"shape": {"outer": [[-1841.17, -12.94], [-1841.01, -11.96], [-1837.52, -12.54], [-1837.96, -15.1], [-1842.24, -14.24], [-1841.92, -12.85], [-1841.17, -12.94]], "holes": []}}, {"shape": {"outer": [[-1844.67, -15.29], [-1844.28, -16.6], [-1844.24, -17.79], [-1844.53, -19.78], [-1845.26, -21.54], [-1846.41, -22.73], [-1844.67, -15.29]], "holes": []}}, {"shape": {"outer": [[-1838.36, -17.39], [-1841.92, -16.73], [-1841.78, -18.17], [-1841.89, -19.89], [-1842.17, -21.45], [-1842.6, -22.87], [-1843.41, -23.76], [-1844.4, -24.68], [-1844.76, -27.98], [-1840.34, -28.92], [-1839.76, -24.7], [-1841.57, -24.33], [-1840.44, -18.01], [-1838.57, -18.33], [-1838.36, -17.39]], "holes": []}}, {"shape": {"outer": [[-1769.5, -58.63], [-1769.62, -62.91], [-1765.08, -63.04], [-1765.24, -68.58], [-1760.91, -68.71], [-1760.63, -58.89], [-1769.5, -58.63]], "holes": []}}, {"shape": {"outer": [[-1751.72, -69.16], [-1750.93, -69.21], [-1750.64, -67.1], [-1744.76, -68.08], [-1742.41, -54.51], [-1764.03, -51.14], [-1764.11, -50.39], [-1776.58, -48.42], [-1776.82, -50.49], [-1777.65, -50.64], [-1776.94, -51.4], [-1777.1, -53.61], [-1767.58, -55.59], [-1754.71, -56.41], [-1752.08, -57.07], [-1752.26, -66.95], [-1751.72, -69.16]], "holes": []}}, {"shape": {"outer": [[-1754.68, -75.45], [-1754.38, -75.8], [-1750.36, -75.43], [-1750.08, -73.63], [-1750.66, -73.53], [-1754.68, -75.45]], "holes": []}}, {"shape": {"outer": [[-1804.32, -12.0], [-1803.93, -9.83], [-1801.67, -10.23], [-1802.06, -12.41], [-1804.32, -12.0]], "holes": []}}, {"shape": {"outer": [[-1807.14, -4.86], [-1805.21, 5.63], [-1801.34, 4.93], [-1802.75, -2.75], [-1801.62, -2.96], [-1802.13, -5.77], [-1807.14, -4.86]], "holes": []}}, {"shape": {"outer": [[-1799.05, -35.09], [-1805.01, -34.07], [-1804.09, -28.73], [-1800.67, -29.31], [-1799.69, -23.59], [-1796.99, -24.05], [-1799.05, -35.09]], "holes": []}}, {"shape": {"outer": [[-1799.1, -6.09], [-1798.7, -3.79], [-1797.1, -4.07], [-1796.44, -0.28], [-1794.59, -0.58], [-1795.35, -4.89], [-1793.91, -5.09], [-1794.04, -6.96], [-1799.1, -6.09]], "holes": []}}, {"shape": {"outer": [[-1532.19, -83.29], [-1532.22, -82.42], [-1532.54, -81.73], [-1532.51, -80.92], [-1532.51, -80.0], [-1532.34, -78.92], [-1532.05, -77.85], [-1531.49, -76.58], [-1530.8, -75.27], [-1530.55, -74.19], [-1530.63, -73.09], [-1530.78, -72.03], [-1531.26, -71.06], [-1542.4, -68.9], [-1543.51, -69.62], [-1544.71, -71.13], [-1544.91, -75.19], [-1544.96, -80.75], [-1544.79, -84.04], [-1544.47, -84.67], [-1544.4, -94.18], [-1544.38, -96.92], [-1544.38, -98.77], [-1543.87, -101.49], [-1543.19, -103.88], [-1542.66, -105.96], [-1541.57, -108.47], [-1539.56, -111.84], [-1538.61, -114.39], [-1537.7, -117.71], [-1536.92, -120.98], [-1535.85, -123.37], [-1534.89, -124.71], [-1533.47, -125.8], [-1531.88, -126.68], [-1529.11, -127.71], [-1525.99, -128.14], [-1523.75, -128.2], [-1523.63, -126.17], [-1523.82, -125.71], [-1524.22, -125.54], [-1528.85, -125.43], [-1528.39, -115.09], [-1522.43, -115.22], [-1524.29, -112.34], [-1524.64, -109.93], [-1524.42, -107.35], [-1540.04, -106.78], [-1539.17, -83.03], [-1532.19, -83.29]], "holes": []}}, {"shape": {"outer": [[-1523.64, -130.61], [-1528.82, -130.89], [-1530.91, -130.88], [-1533.04, -130.6], [-1534.28, -130.21], [-1535.4, -129.58], [-1536.22, -129.47], [-1537.05, -129.7], [-1537.73, -130.3], [-1538.1, -131.0], [-1538.45, -131.96], [-1538.61, -133.25], [-1538.65, -134.83], [-1527.69, -135.02], [-1526.29, -134.88], [-1525.19, -134.55], [-1524.31, -133.73], [-1523.76, -132.18], [-1523.64, -130.61]], "holes": []}}, {"shape": {"outer": [[-1649.45, 8.27], [-1648.64, 12.81], [-1637.58, 10.96], [-1638.43, 6.29], [-1649.45, 8.27]], "holes": []}}, {"shape": {"outer": [[-1592.83, 66.44], [-1592.4, 78.5], [-1594.93, 76.77], [-1594.32, 76.15], [-1596.12, 73.66], [-1596.81, 74.12], [-1597.65, 72.76], [-1598.04, 71.26], [-1597.73, 69.89], [-1597.03, 69.75], [-1595.66, 68.39], [-1596.22, 67.84], [-1594.7, 66.8], [-1593.76, 66.48], [-1592.83, 66.44]], "holes": []}}, {"shape": {"outer": [[-1557.33, 9.73], [-1555.44, 9.71], [-1547.56, -8.95], [-1549.49, -10.16], [-1566.06, -7.09], [-1563.61, -4.35], [-1557.33, 9.73]], "holes": []}}, {"shape": {"outer": [[-1561.49, 9.87], [-1560.63, 30.25], [-1555.29, 29.95], [-1555.08, 29.01], [-1554.98, 27.55], [-1557.42, 15.69], [-1560.05, 9.76], [-1563.51, 2.61], [-1565.16, -1.2], [-1568.68, -5.17], [-1571.46, -6.07], [-1586.64, -3.48], [-1587.78, -2.56], [-1588.49, -1.52], [-1588.16, 2.78], [-1586.75, 5.59], [-1584.49, 7.09], [-1584.3, 12.56], [-1577.64, 12.27], [-1577.72, 10.55], [-1561.49, 9.87]], "holes": []}}, {"shape": {"outer": [[-1675.88, 18.23], [-1664.42, 12.08], [-1658.33, 10.6], [-1659.4, 12.85], [-1660.06, 16.19], [-1659.75, 19.8], [-1657.63, 25.12], [-1654.93, 29.77], [-1650.32, 34.13], [-1648.79, 35.42], [-1644.94, 53.63], [-1675.88, 18.23]], "holes": []}}, {"shape": {"outer": [[-1648.79, 35.42], [-1653.04, 10.53], [-1653.94, 9.43], [-1658.33, 10.6], [-1659.4, 12.85], [-1660.06, 16.19], [-1659.75, 19.8], [-1657.63, 25.12], [-1654.93, 29.77], [-1650.32, 34.13], [-1648.79, 35.42]], "holes": []}}, {"shape": {"outer": [[-1630.2, 66.17], [-1629.78, 64.22], [-1629.64, 61.84], [-1631.76, 52.37], [-1633.29, 50.12], [-1635.2, 49.22], [-1637.41, 49.4], [-1643.01, 50.28], [-1641.88, 57.3], [-1636.87, 62.99], [-1633.74, 64.82], [-1630.2, 66.17]], "holes": []}}, {"shape": {"outer": [[-1873.43, 34.53], [-1870.61, 35.44], [-1863.39, 30.98], [-1856.77, 9.42], [-1857.19, 3.97], [-1868.64, 6.17], [-1869.07, -0.6], [-1871.09, 14.84], [-1868.15, 15.3], [-1869.17, 20.94], [-1871.92, 20.47], [-1873.43, 34.53]], "holes": []}}, {"shape": {"outer": [[-1853.44, 3.29], [-1853.28, 9.77], [-1859.04, 29.17], [-1855.41, 29.49], [-1834.58, 25.87], [-1838.62, 3.13], [-1842.01, 3.71], [-1842.45, 1.38], [-1853.44, 3.29]], "holes": []}}, {"shape": {"outer": [[-1856.66, 32.94], [-1857.1, 31.81], [-1858.26, 31.43], [-1859.38, 31.58], [-1874.35, 41.47], [-1877.52, 48.98], [-1878.11, 52.28], [-1877.44, 55.83], [-1875.88, 59.57], [-1873.89, 61.68], [-1872.91, 59.92], [-1871.36, 60.89], [-1872.42, 62.88], [-1870.3, 64.24], [-1866.5, 65.22], [-1864.23, 65.56], [-1863.73, 65.14], [-1863.87, 63.81], [-1862.46, 61.1], [-1857.99, 57.2], [-1857.74, 56.38], [-1858.65, 56.54], [-1859.72, 50.36], [-1858.65, 50.17], [-1859.95, 42.66], [-1856.02, 41.98], [-1857.56, 33.1], [-1856.66, 32.94]], "holes": []}}, {"shape": {"outer": [[-1843.59, 51.97], [-1843.09, 53.91], [-1820.79, 50.16], [-1820.61, 50.99], [-1818.76, 50.66], [-1818.69, 52.26], [-1819.29, 54.03], [-1819.85, 54.91], [-1820.73, 55.53], [-1836.73, 57.65], [-1843.59, 59.36], [-1853.62, 62.48], [-1857.51, 63.64], [-1858.15, 60.76], [-1854.89, 57.95], [-1853.79, 55.71], [-1854.12, 53.77], [-1843.59, 51.97]], "holes": []}}, {"shape": {"outer": [[-1813.73, 46.81], [-1813.09, 50.62], [-1810.42, 50.18], [-1811.59, 43.3], [-1813.21, 43.58], [-1812.68, 46.64], [-1813.73, 46.81]], "holes": []}}, {"shape": {"outer": [[-1813.75, 40.33], [-1809.85, 38.7], [-1811.05, 33.1], [-1812.62, 33.37], [-1811.9, 37.54], [-1814.16, 37.92], [-1813.75, 40.33]], "holes": []}}, {"shape": {"outer": [[-1813.03, 30.95], [-1809.24, 29.9], [-1812.51, 10.72], [-1816.47, 11.1], [-1813.03, 30.95]], "holes": []}}, {"shape": {"outer": [[-1804.97, 42.33], [-1802.61, 41.86], [-1803.09, 39.42], [-1805.46, 39.87], [-1804.97, 42.33]], "holes": []}}, {"shape": {"outer": [[-1805.45, 54.46], [-1806.96, 45.94], [-1800.61, 43.95], [-1802.76, 32.47], [-1795.26, 31.13], [-1791.22, 52.68], [-1794.15, 53.17], [-1794.33, 54.78], [-1805.45, 54.46]], "holes": []}}, {"shape": {"outer": [[-1793.43, 27.41], [-1790.33, 26.79], [-1792.31, 16.51], [-1792.58, 15.14], [-1795.67, 15.74], [-1793.43, 27.41]], "holes": []}}, {"shape": {"outer": [[-1804.84, 22.43], [-1802.39, 22.01], [-1804.63, 8.95], [-1800.55, 8.24], [-1798.95, 17.5], [-1797.58, 17.27], [-1795.77, 27.83], [-1803.69, 29.18], [-1804.84, 22.43]], "holes": []}}, {"shape": {"outer": [[-1788.79, 50.94], [-1786.03, 50.31], [-1789.61, 30.41], [-1792.55, 30.91], [-1788.79, 50.94]], "holes": []}}, {"shape": {"outer": [[-1764.2, 42.68], [-1763.04, 44.87], [-1761.47, 47.63], [-1760.4, 50.55], [-1760.15, 52.09], [-1766.15, 53.17], [-1775.61, 54.22], [-1781.94, 54.74], [-1788.05, 54.95], [-1788.39, 52.22], [-1785.83, 51.64], [-1763.53, 47.39], [-1764.2, 42.68]], "holes": []}}, {"shape": {"outer": [[-1847.7, -91.39], [-1849.05, -93.18], [-1851.55, -94.54], [-1854.88, -94.72], [-1857.09, -94.0], [-1858.42, -92.98], [-1855.82, -91.46], [-1854.58, -91.98], [-1853.17, -92.35], [-1851.41, -91.81], [-1850.99, -91.16], [-1847.7, -91.39]], "holes": []}}, {"shape": {"outer": [[-1858.42, -92.98], [-1859.31, -93.67], [-1872.56, -93.2], [-1872.69, -96.51], [-1835.6, -97.91], [-1835.64, -99.03], [-1810.95, -99.98], [-1810.52, -92.76], [-1847.7, -91.39], [-1849.05, -93.18], [-1851.55, -94.54], [-1854.88, -94.72], [-1857.09, -94.0], [-1858.42, -92.98]], "holes": []}}, {"shape": {"outer": [[-1784.08, -106.52], [-1792.75, -99.08], [-1792.54, -98.4], [-1779.19, -98.27], [-1778.47, -98.89], [-1782.35, -106.74], [-1784.08, -106.52]], "holes": []}}, {"shape": {"outer": [[-1746.48, -89.86], [-1745.39, -83.81], [-1744.78, -83.94], [-1744.15, -79.29], [-1746.0, -78.97], [-1747.19, -79.2], [-1749.89, -83.25], [-1759.62, -83.08], [-1760.5, -85.61], [-1762.86, -85.69], [-1763.26, -88.0], [-1761.69, -88.33], [-1761.49, -87.22], [-1746.48, -89.86]], "holes": []}}, {"shape": {"outer": [[-1762.02, -90.16], [-1769.03, -90.44], [-1775.94, -99.22], [-1779.41, -108.19], [-1779.62, -109.65], [-1778.7, -111.02], [-1772.47, -117.37], [-1771.01, -117.9], [-1767.02, -118.52], [-1762.02, -90.16]], "holes": []}}, {"shape": {"outer": [[77.66, -287.45], [72.78, -282.02], [62.76, -290.98], [74.67, -304.2], [78.8, -300.51], [80.14, -300.38], [81.68, -300.84], [91.34, -311.53], [92.34, -310.64], [81.18, -298.28], [82.8, -296.83], [79.42, -293.1], [78.77, -293.69], [77.2, -291.94], [77.85, -291.36], [75.81, -289.12], [77.66, -287.45]], "holes": []}}, {"shape": {"outer": [[98.12, -318.52], [96.06, -320.44], [97.39, -322.05], [97.66, -322.01], [97.95, -322.05], [98.28, -322.2], [98.55, -322.45], [98.71, -322.71], [98.78, -322.93], [98.8, -323.18], [98.78, -323.39], [98.71, -323.6], [98.55, -323.87], [98.31, -324.09], [97.98, -324.24], [97.6, -324.29], [97.39, -324.26], [97.18, -324.19], [106.22, -333.71], [104.62, -335.21], [103.63, -336.15], [115.61, -348.83], [121.47, -343.45], [116.05, -337.43], [98.12, -318.52]], "holes": []}}, {"shape": {"outer": [[80.28, -302.71], [78.63, -304.26], [84.77, -311.2], [84.95, -311.45], [85.28, -311.66], [85.63, -311.77], [86.03, -311.87], [86.42, -311.78], [86.86, -311.6], [87.28, -311.33], [87.57, -311.08], [80.28, -302.71]], "holes": []}}, {"shape": {"outer": [[-2471.54, 173.17], [-2472.19, 169.61], [-2471.82, 166.29], [-2470.92, 163.53], [-2468.57, 160.74], [-2464.92, 158.57], [-2461.06, 158.1], [-2457.64, 158.78], [-2454.56, 160.88], [-2452.3, 164.59], [-2451.96, 168.56], [-2452.9, 172.29], [-2455.16, 175.36], [-2457.61, 177.42], [-2460.01, 178.3], [-2463.34, 178.16], [-2465.88, 176.87], [-2471.54, 173.17]], "holes": []}}, {"shape": {"outer": [[-2510.86, 202.8], [-2509.3, 215.04], [-2507.55, 217.32], [-2505.84, 218.49], [-2503.71, 218.85], [-2500.24, 218.4], [-2498.2, 216.28], [-2496.97, 213.91], [-2498.39, 201.28], [-2510.86, 202.8]], "holes": []}}, {"shape": {"outer": [[-1403.95, 67.87], [-1404.0, 66.46], [-1406.53, 66.57], [-1406.3, 72.05], [-1405.78, 71.97], [-1405.72, 73.51], [-1405.12, 73.48], [-1405.15, 72.58], [-1404.1, 72.54], [-1404.29, 67.88], [-1403.95, 67.87]], "holes": []}}, {"shape": {"outer": [[117.52, -583.65], [135.21, -566.56], [134.96, -565.45], [134.15, -564.9], [133.12, -564.84], [123.86, -573.97], [115.34, -582.49], [116.4, -583.43], [116.96, -583.63], [117.52, -583.65]], "holes": []}}, {"shape": {"outer": [[114.12, -585.21], [114.5, -585.8], [114.59, -586.4], [109.45, -591.58], [110.98, -588.46], [111.47, -585.82], [111.66, -582.89], [114.12, -585.21]], "holes": []}}, {"shape": {"outer": [[27.45, -651.0], [29.09, -650.62], [30.5, -649.71], [32.07, -648.34], [32.84, -647.27], [33.27, -645.73], [33.46, -642.91], [33.9, -636.31], [34.51, -630.99], [36.75, -623.29], [38.86, -618.94], [42.66, -611.05], [45.5, -606.78], [49.12, -602.09], [48.13, -601.14], [18.04, -632.82], [16.67, -636.11], [15.83, -640.78], [17.06, -644.7], [18.77, -648.17], [21.3, -650.55], [24.47, -651.48], [27.45, -651.0]], "holes": []}}, {"shape": {"outer": [[166.89, -499.43], [168.04, -500.74], [168.6, -502.87], [168.29, -504.81], [167.45, -506.35], [164.13, -509.43], [162.43, -509.13], [160.23, -509.78], [158.54, -511.38], [157.74, -513.1], [157.48, -514.72], [157.66, -516.18], [151.95, -520.75], [153.19, -521.96], [154.22, -523.4], [154.79, -525.42], [154.87, -527.52], [154.41, -529.61], [153.7, -531.3], [151.29, -530.27], [148.93, -529.14], [146.48, -527.83], [144.4, -526.4], [142.43, -525.0], [140.78, -523.42], [139.12, -521.71], [138.25, -519.87], [137.67, -517.77], [137.68, -515.95], [138.24, -513.68], [140.5, -511.11], [143.47, -508.27], [143.61, -509.88], [144.13, -511.0], [145.89, -512.85], [147.42, -513.51], [149.65, -513.64], [151.09, -513.3], [152.09, -512.77], [153.09, -512.23], [154.35, -511.33], [166.89, -499.43]], "holes": []}}, {"shape": {"outer": [[186.44, -527.73], [186.31, -530.87], [185.2, -533.7], [182.61, -532.6], [180.22, -530.95], [177.74, -527.59], [176.36, -524.35], [175.15, -520.41], [175.61, -517.06], [177.05, -513.5], [183.88, -515.41], [182.83, -516.06], [181.93, -516.9], [180.79, -518.65], [180.42, -519.79], [180.26, -520.98], [180.34, -522.27], [180.67, -523.51], [181.8, -525.43], [182.66, -526.28], [183.68, -526.95], [185.02, -527.49], [186.44, -527.73]], "holes": []}}, {"shape": {"outer": [[152.84, -502.07], [153.02, -503.33], [153.91, -504.36], [155.37, -504.77], [151.21, -508.71], [150.54, -507.45], [149.74, -506.78], [148.59, -506.22], [152.84, -502.07]], "holes": []}}, {"shape": {"outer": [[156.45, -501.49], [155.44, -501.0], [154.42, -500.85], [179.76, -475.07], [181.02, -476.36], [156.45, -501.49]], "holes": []}}, {"shape": {"outer": [[145.82, -398.52], [147.39, -398.75], [151.03, -400.19], [153.74, -402.31], [155.15, -404.04], [156.22, -405.99], [157.05, -408.61], [157.26, -409.85], [157.23, -411.94], [156.74, -411.98], [156.29, -411.94], [155.84, -411.69], [155.67, -411.27], [155.54, -409.17], [154.69, -406.46], [153.58, -404.58], [152.15, -403.0], [150.75, -401.91], [148.99, -400.97], [147.44, -400.24], [145.99, -399.93], [145.6, -399.71], [145.43, -399.34], [145.49, -398.92], [145.82, -398.52]], "holes": []}}, {"shape": {"outer": [[145.84, -423.51], [143.67, -423.65], [140.08, -422.85], [137.68, -421.62], [135.79, -420.1], [134.02, -417.98], [132.72, -415.37], [132.3, -413.98], [132.01, -412.18], [132.04, -410.86], [132.45, -410.51], [133.01, -410.38], [133.52, -410.57], [133.78, -410.95], [133.89, -412.11], [134.22, -413.89], [134.73, -415.34], [135.67, -417.04], [136.81, -418.48], [139.16, -420.37], [141.54, -421.42], [143.71, -421.85], [145.05, -421.82], [145.51, -421.96], [145.8, -422.29], [145.86, -422.75], [145.84, -423.51]], "holes": []}}, {"shape": {"outer": [[188.35, -538.02], [187.38, -538.09], [186.99, -536.84], [195.25, -528.26], [196.18, -525.93], [196.56, -522.5], [197.35, -521.76], [198.11, -521.96], [199.57, -523.11], [199.8, -525.02], [199.44, -526.64], [198.27, -528.62], [188.35, -538.02]], "holes": []}}, {"shape": {"outer": [[220.57, -440.3], [221.41, -441.58], [222.41, -443.79], [223.12, -445.51], [219.68, -446.7], [218.42, -446.9], [217.43, -446.86], [216.25, -446.55], [215.4, -445.93], [214.81, -445.28], [217.59, -442.82], [220.57, -440.3]], "holes": []}}, {"shape": {"outer": [[231.05, -426.52], [230.44, -425.67], [230.34, -424.51], [202.63, -452.54], [203.61, -453.81], [231.05, -426.52]], "holes": []}}, {"shape": {"outer": [[-574.79, -265.25], [-579.71, -269.73], [-584.56, -274.16], [-583.61, -275.19], [-605.88, -295.59], [-613.43, -301.75], [-585.86, -332.27], [-583.1, -335.58], [-575.79, -328.24], [-559.65, -313.13], [-560.76, -311.96], [-571.06, -301.04], [-570.89, -299.4], [-564.4, -293.47], [-569.11, -288.35], [-560.64, -280.62], [-570.32, -270.11], [-574.79, -265.25]], "holes": []}}, {"shape": {"outer": [[-198.76, -113.21], [-199.3, -114.2], [-199.78, -115.2], [-199.91, -116.63], [-204.76, -116.31], [-203.9, -114.36], [-201.59, -113.08], [-198.76, -113.21]], "holes": []}}, {"shape": {"outer": [[-205.19, -126.05], [-200.17, -126.42], [-200.23, -127.64], [-200.08, -128.66], [-199.77, -129.68], [-199.38, -130.58], [-199.62, -130.66], [-200.83, -130.95], [-202.49, -130.9], [-203.28, -130.88], [-204.13, -130.53], [-204.65, -130.05], [-205.21, -128.85], [-205.19, -126.05]], "holes": []}}, {"shape": {"outer": [[-214.58, -32.56], [-214.04, -32.05], [-212.25, -33.95], [-212.89, -34.54], [-212.43, -35.03], [-214.08, -36.59], [-214.64, -36.0], [-215.35, -36.67], [-217.09, -34.83], [-216.42, -34.21], [-216.98, -33.61], [-215.18, -31.92], [-214.58, -32.56]], "holes": []}}, {"shape": {"outer": [[-221.94, -40.78], [-221.52, -40.38], [-220.42, -41.54], [-220.84, -41.93], [-220.24, -42.57], [-224.53, -46.58], [-225.01, -46.08], [-224.49, -45.59], [-225.75, -44.25], [-226.28, -44.74], [-226.87, -44.13], [-222.57, -40.1], [-221.94, -40.78]], "holes": []}}, {"shape": {"outer": [[-365.71, -329.35], [-362.77, -332.59], [-359.69, -329.83], [-357.9, -331.8], [-350.95, -325.56], [-355.62, -320.41], [-365.71, -329.35]], "holes": []}}, {"shape": {"outer": [[-353.99, -318.96], [-349.36, -324.07], [-342.52, -317.9], [-347.1, -312.85], [-353.99, -318.96]], "holes": []}}, {"shape": {"outer": [[-345.22, -311.19], [-340.68, -316.2], [-332.86, -309.16], [-334.1, -307.79], [-334.66, -308.31], [-336.4, -306.39], [-335.75, -305.81], [-337.27, -304.13], [-345.22, -311.19]], "holes": []}}, {"shape": {"outer": [[-321.41, -298.84], [-325.82, -293.97], [-333.74, -300.99], [-332.55, -302.3], [-331.99, -301.79], [-330.25, -303.71], [-330.87, -304.28], [-329.33, -305.98], [-321.41, -298.84]], "holes": []}}, {"shape": {"outer": [[-317.35, -286.44], [-313.29, -290.72], [-315.68, -293.62], [-319.59, -297.17], [-323.97, -292.32], [-317.35, -286.44]], "holes": []}}, {"shape": {"outer": [[-309.31, -280.58], [-308.65, -279.91], [-306.87, -281.62], [-311.99, -287.85], [-315.15, -284.5], [-309.91, -279.85], [-309.31, -280.58]], "holes": []}}, {"shape": {"outer": [[-230.19, -209.94], [-226.61, -213.89], [-227.33, -214.53], [-226.68, -215.26], [-238.42, -225.22], [-243.76, -219.32], [-233.14, -210.02], [-231.86, -211.44], [-230.19, -209.94]], "holes": []}}, {"shape": {"outer": [[-285.59, -265.55], [-270.78, -252.41], [-275.52, -247.12], [-290.32, -260.24], [-285.59, -265.55]], "holes": []}}, {"shape": {"outer": [[-266.81, -249.32], [-249.84, -234.91], [-254.91, -229.12], [-271.65, -243.79], [-266.81, -249.32]], "holes": []}}, {"shape": {"outer": [[-247.52, -232.94], [-240.88, -227.31], [-246.12, -221.4], [-252.66, -227.15], [-247.52, -232.94]], "holes": []}}, {"shape": {"outer": [[-249.77, -188.69], [-254.43, -192.81], [-244.4, -204.04], [-240.43, -200.52], [-241.45, -199.37], [-240.49, -198.58], [-239.51, -199.67], [-238.32, -198.61], [-259.51, -174.86], [-261.78, -176.86], [-253.88, -185.71], [-253.07, -184.99], [-249.77, -188.69]], "holes": []}}, {"shape": {"outer": [[-1093.0, -549.91], [-1092.51, -541.32], [-1093.03, -540.59], [-1093.71, -540.05], [-1095.1, -540.04], [-1096.56, -540.36], [-1097.84, -540.95], [-1099.04, -542.0], [-1100.06, -543.95], [-1100.84, -546.03], [-1101.28, -547.33], [-1095.37, -547.82], [-1094.45, -547.89], [-1093.0, -549.91]], "holes": []}}, {"shape": {"outer": [[-1100.99, -755.43], [-1099.68, -728.59], [-1099.22, -720.01], [-1098.84, -712.07], [-1098.98, -704.31], [-1102.02, -704.28], [-1104.6, -755.3], [-1100.99, -755.43]], "holes": []}}, {"shape": {"outer": [[-1098.93, -702.77], [-1097.52, -695.79], [-1097.95, -694.34], [-1098.18, -692.24], [-1097.84, -687.96], [-1094.56, -631.14], [-1098.45, -630.89], [-1101.9, -702.66], [-1098.93, -702.77]], "holes": []}}, {"shape": {"outer": [[-1237.22, -628.96], [-1236.52, -628.04], [-1244.36, -622.83], [-1265.5, -609.94], [-1280.52, -602.13], [-1282.08, -600.36], [-1282.72, -598.15], [-1289.04, -597.29], [-1291.53, -596.43], [-1301.59, -592.09], [-1303.71, -592.72], [-1292.99, -597.7], [-1282.84, -602.33], [-1273.03, -607.34], [-1264.3, -612.3], [-1254.24, -618.41], [-1247.23, -622.94], [-1237.22, -628.96]], "holes": []}}, {"shape": {"outer": [[-1236.52, -628.04], [-1235.09, -626.18], [-1247.91, -615.79], [-1255.21, -609.82], [-1264.66, -609.26], [-1264.58, -606.18], [-1264.51, -601.12], [-1279.19, -600.26], [-1279.12, -598.75], [-1279.75, -598.2], [-1281.52, -598.01], [-1281.37, -595.95], [-1284.9, -595.46], [-1289.05, -593.58], [-1293.77, -592.02], [-1299.86, -591.67], [-1301.59, -592.09], [-1291.53, -596.43], [-1289.04, -597.29], [-1282.72, -598.15], [-1282.08, -600.36], [-1280.52, -602.13], [-1265.5, -609.94], [-1244.36, -622.83], [-1236.52, -628.04]], "holes": []}}, {"shape": {"outer": [[-1141.46, -760.28], [-1140.32, -756.37], [-1137.57, -756.96], [-1136.31, -749.91], [-1133.91, -749.12], [-1132.04, -748.4], [-1129.98, -747.53], [-1128.62, -746.83], [-1126.7, -745.95], [-1125.31, -744.98], [-1124.47, -744.28], [-1116.3, -748.0], [-1121.65, -760.86], [-1109.6, -761.27], [-1114.44, -762.03], [-1118.62, -762.45], [-1124.2, -762.54], [-1128.86, -762.32], [-1133.93, -761.73], [-1137.68, -761.18], [-1141.46, -760.28]], "holes": []}}, {"shape": {"outer": [[-1104.82, -761.46], [-1102.0, -761.77], [-1102.77, -776.44], [-1106.33, -776.17], [-1107.55, -787.73], [-1107.79, -789.34], [-1214.06, -739.92], [-1213.24, -737.38], [-1187.22, -749.06], [-1142.02, -762.76], [-1137.97, -763.65], [-1133.9, -764.22], [-1128.75, -764.76], [-1123.79, -764.98], [-1118.11, -764.78], [-1113.02, -764.45], [-1108.74, -763.86], [-1106.06, -762.64], [-1104.82, -761.46]], "holes": []}}, {"shape": {"outer": [[-1184.58, -779.56], [-1179.55, -777.71], [-1210.47, -764.1], [-1214.9, -765.59], [-1184.58, -779.56]], "holes": []}}, {"shape": {"outer": [[-1218.99, -770.63], [-1216.22, -769.77], [-1198.03, -777.99], [-1196.93, -780.63], [-1218.99, -770.63]], "holes": []}}, {"shape": {"outer": [[-1187.7, -784.81], [-1185.04, -783.94], [-1160.96, -795.01], [-1160.37, -796.43], [-1146.82, -802.72], [-1146.19, -804.05], [-1173.21, -791.55], [-1175.94, -792.48], [-1176.9, -789.71], [-1187.7, -784.81]], "holes": []}}, {"shape": {"outer": [[104.1, -388.15], [106.2, -389.35], [109.4, -390.43], [112.84, -390.64], [116.13, -390.2], [118.46, -389.4], [117.14, -388.02], [114.6, -388.75], [111.86, -388.95], [109.44, -388.67], [107.24, -387.87], [105.61, -386.87], [104.1, -388.15]], "holes": []}}, {"shape": {"outer": [[124.87, -383.64], [126.23, -381.18], [126.85, -378.46], [127.22, -375.27], [127.18, -372.22], [126.64, -370.25], [125.91, -369.17], [124.34, -370.51], [124.59, -371.04], [125.13, -372.98], [125.19, -375.29], [124.91, -378.26], [124.31, -380.75], [123.6, -382.31], [124.87, -383.64]], "holes": []}}, {"shape": {"outer": [[-129.64, -206.79], [-130.12, -208.01], [-130.59, -209.23], [-130.45, -210.49], [-129.85, -211.85], [-128.63, -213.04], [-127.48, -213.7], [-128.38, -232.77], [-129.61, -233.69], [-130.58, -234.42], [-131.34, -235.66], [-131.66, -237.26], [-131.35, -238.88], [-130.68, -239.58], [-129.07, -241.28], [-129.62, -264.48], [-130.37, -263.65], [-133.47, -266.41], [-131.81, -268.27], [-128.39, -265.23], [-127.27, -265.3], [-126.62, -254.94], [-128.19, -254.84], [-127.92, -250.46], [-126.5, -250.54], [-125.89, -240.86], [-126.81, -240.5], [-128.06, -240.02], [-129.2, -238.87], [-129.52, -237.45], [-129.2, -236.04], [-128.17, -234.76], [-126.63, -234.35], [-125.51, -234.05], [-125.06, -223.9], [-126.1, -223.86], [-125.92, -219.85], [-124.92, -219.89], [-124.42, -208.31], [-125.82, -208.26], [-129.64, -206.79]], "holes": []}}, {"shape": {"outer": [[-113.06, -269.23], [-111.69, -267.77], [-115.05, -263.71], [-113.83, -242.69], [-112.63, -241.92], [-111.23, -240.28], [-110.64, -238.04], [-110.82, -235.91], [-111.9, -234.53], [-113.3, -233.77], [-112.18, -214.31], [-109.74, -213.42], [-108.1, -211.41], [-107.9, -209.03], [-108.44, -207.21], [-111.27, -208.04], [-114.55, -208.37], [-115.22, -219.79], [-113.81, -219.91], [-114.04, -223.91], [-115.48, -223.8], [-115.98, -235.07], [-114.81, -235.36], [-113.65, -236.02], [-112.74, -237.01], [-112.62, -238.37], [-113.01, -239.42], [-113.76, -240.23], [-114.94, -240.96], [-116.39, -241.41], [-116.95, -251.32], [-115.52, -251.35], [-115.69, -255.49], [-117.27, -255.46], [-117.86, -265.78], [-116.15, -265.79], [-113.06, -269.23]], "holes": []}}, {"shape": {"outer": [[-155.59, -166.45], [-147.42, -158.68], [-146.26, -159.96], [-145.34, -159.14], [-144.81, -160.35], [-144.6, -161.83], [-144.65, -163.15], [-145.03, -164.46], [-145.76, -165.63], [-146.49, -166.6], [-147.37, -167.52], [-148.44, -168.29], [-149.73, -168.86], [-151.14, -169.06], [-152.62, -168.85], [-153.8, -168.39], [-155.43, -166.64], [-155.59, -166.45]], "holes": []}}, {"shape": {"outer": [[26.51, -121.44], [28.07, -123.05], [24.83, -125.89], [24.81, -127.26], [14.88, -127.15], [14.9, -125.66], [10.15, -125.6], [10.14, -126.65], [-0.33, -126.21], [-0.38, -124.4], [-1.15, -123.0], [-3.0, -122.28], [-4.64, -122.77], [-5.74, -123.77], [-6.0, -125.87], [-16.58, -125.5], [-16.53, -124.01], [-20.55, -123.86], [-20.59, -125.01], [-31.83, -124.62], [-33.19, -121.61], [-34.8, -118.12], [-27.78, -119.61], [-26.17, -122.08], [-7.58, -123.03], [-6.38, -121.32], [-4.51, -120.43], [-2.24, -120.31], [-0.45, -121.21], [1.25, -122.07], [2.14, -123.57], [23.18, -124.47], [26.51, -121.44]], "holes": []}}, {"shape": {"outer": [[25.43, -142.95], [27.62, -141.29], [24.67, -138.24], [24.76, -136.72], [14.27, -136.51], [14.25, -137.23], [10.47, -137.21], [10.48, -136.22], [-0.36, -135.87], [-1.08, -136.91], [-2.18, -138.49], [-4.91, -138.59], [-6.36, -137.04], [-7.08, -135.21], [-17.1, -134.81], [-16.82, -135.89], [-20.85, -135.84], [-20.82, -134.82], [-32.79, -134.57], [-33.17, -135.84], [-35.36, -139.74], [-37.41, -141.93], [-39.33, -143.2], [-35.58, -145.24], [-31.51, -141.92], [-26.16, -137.78], [-8.05, -138.82], [-5.77, -141.21], [-3.43, -142.62], [-0.34, -141.75], [2.21, -139.47], [22.58, -139.78], [25.43, -142.95]], "holes": []}}, {"shape": {"outer": [[-1228.05, -271.76], [-1220.72, -272.11], [-1220.52, -268.62], [-1318.62, -263.67], [-1318.72, -266.61], [-1313.78, -266.85], [-1313.68, -264.95], [-1301.61, -265.52], [-1301.68, -267.08], [-1270.48, -268.56], [-1270.41, -267.09], [-1263.84, -267.4], [-1263.93, -269.19], [-1261.27, -269.31], [-1261.18, -267.56], [-1252.0, -267.99], [-1252.1, -270.03], [-1248.98, -270.17], [-1248.89, -268.15], [-1240.16, -268.57], [-1240.26, -270.88], [-1234.4, -271.16], [-1234.29, -268.87], [-1227.93, -269.17], [-1228.05, -271.76]], "holes": []}}, {"shape": {"outer": [[-1226.99, -405.94], [-1219.31, -406.39], [-1220.64, -430.55], [-1225.43, -431.56], [-1230.23, -432.09], [-1232.96, -432.88], [-1236.66, -431.24], [-1239.66, -428.52], [-1240.62, -425.52], [-1241.82, -416.71], [-1237.26, -412.51], [-1232.59, -408.79], [-1229.12, -406.37], [-1226.99, -405.94]], "holes": []}}, {"shape": {"outer": [[1145.92, 613.47], [1144.24, 615.34], [1179.31, 646.96], [1184.31, 651.98], [1189.15, 658.84], [1193.39, 667.99], [1195.59, 675.43], [1196.02, 676.48], [1196.74, 677.01], [1198.75, 677.62], [1206.53, 679.75], [1211.29, 682.03], [1217.58, 686.0], [1224.09, 693.05], [1228.11, 699.9], [1229.77, 704.76], [1233.62, 703.88], [1234.86, 709.33], [1230.91, 710.23], [1231.67, 712.61], [1232.37, 713.2], [1233.43, 713.53], [1244.67, 715.1], [1254.19, 718.29], [1263.84, 723.09], [1269.64, 727.22], [1275.42, 732.23], [1280.03, 736.37], [1281.51, 734.67], [1254.82, 710.72], [1233.25, 691.35], [1219.06, 678.15], [1205.4, 666.01], [1193.04, 654.73], [1177.52, 640.68], [1145.92, 613.47]], "holes": []}}, {"shape": {"outer": [[1197.62, 684.79], [1200.5, 684.07], [1199.54, 679.68], [1203.52, 680.89], [1203.39, 681.64], [1205.48, 682.32], [1205.47, 681.73], [1208.89, 682.91], [1213.14, 685.13], [1217.47, 688.45], [1220.25, 691.21], [1223.32, 695.01], [1225.7, 699.35], [1227.25, 703.53], [1228.82, 708.63], [1229.8, 712.14], [1229.24, 712.94], [1228.3, 712.91], [1223.1, 711.89], [1219.08, 710.53], [1216.49, 709.38], [1213.23, 707.51], [1210.27, 705.58], [1207.39, 702.81], [1204.83, 699.45], [1202.47, 696.08], [1200.08, 691.69], [1198.54, 687.76], [1197.62, 684.79]], "holes": []}}, {"shape": {"outer": [[-197.01, -16.74], [-196.36, -16.15], [-194.83, -17.79], [-195.42, -18.33], [-194.81, -19.0], [-196.58, -20.62], [-197.16, -20.0], [-197.74, -20.53], [-199.48, -18.67], [-198.97, -18.2], [-199.53, -17.61], [-197.73, -15.96], [-197.01, -16.74]], "holes": []}}, {"shape": {"outer": [[-202.19, -11.03], [-203.62, -12.31], [-202.87, -13.14], [-204.81, -14.88], [-205.75, -13.83], [-206.38, -14.39], [-208.15, -12.43], [-210.39, -2.41], [-208.95, -1.11], [-207.78, -2.39], [-209.0, -3.49], [-203.1, -9.99], [-202.19, -11.03]], "holes": []}}, {"shape": {"outer": [[-221.98, -28.29], [-220.49, -27.01], [-219.2, -28.26], [-217.47, -26.72], [-218.46, -25.7], [-217.84, -25.12], [-219.68, -23.22], [-229.28, -20.23], [-230.68, -21.55], [-229.49, -22.81], [-228.31, -21.7], [-221.98, -28.29]], "holes": []}}, {"shape": {"outer": [[-2165.91, -476.94], [-2169.68, -477.79], [-2174.28, -479.71], [-2179.07, -482.53], [-2177.47, -486.2], [-2173.94, -487.46], [-2171.26, -490.76], [-2168.73, -495.24], [-2164.26, -498.37], [-2164.95, -479.81], [-2165.98, -479.79], [-2165.91, -476.94]], "holes": []}}, {"shape": {"outer": [[-2177.24, -469.57], [-2166.91, -470.0], [-2165.76, -471.54], [-2165.85, -474.91], [-2168.36, -475.4], [-2172.3, -476.82], [-2176.77, -479.1], [-2175.97, -477.03], [-2176.88, -475.34], [-2179.36, -473.93], [-2180.79, -473.14], [-2178.5, -473.2], [-2178.44, -471.41], [-2177.3, -471.45], [-2177.24, -469.57]], "holes": []}}, {"shape": {"outer": [[-2169.78, -455.89], [-2168.2, -454.46], [-2168.12, -449.56], [-2166.1, -447.95], [-2164.42, -446.33], [-2164.37, -442.32], [-2165.24, -439.45], [-2168.25, -439.1], [-2171.22, -439.45], [-2175.67, -438.04], [-2166.37, -437.9], [-2163.86, -437.88], [-2164.02, -453.07], [-2164.76, -453.04], [-2164.82, -455.02], [-2165.18, -455.01], [-2165.47, -463.56], [-2166.69, -465.08], [-2177.03, -464.62], [-2176.99, -462.97], [-2177.78, -462.95], [-2177.73, -461.2], [-2180.45, -461.12], [-2179.67, -460.34], [-2177.76, -459.83], [-2169.78, -455.89]], "holes": []}}, {"shape": {"outer": [[-2231.17, -511.99], [-2229.89, -509.46], [-2228.69, -508.16], [-2227.76, -507.41], [-2227.78, -505.22], [-2228.51, -503.4], [-2228.76, -501.59], [-2229.9, -499.4], [-2230.83, -497.53], [-2232.66, -496.36], [-2235.06, -496.04], [-2236.5, -496.68], [-2237.57, -497.59], [-2239.0, -499.62], [-2239.67, -500.45], [-2240.37, -502.16], [-2241.97, -504.0], [-2243.75, -504.53], [-2245.99, -504.36], [-2243.09, -506.95], [-2231.17, -511.99]], "holes": []}}, {"shape": {"outer": [[-2216.26, -435.84], [-2218.59, -435.78], [-2221.88, -436.74], [-2224.65, -437.81], [-2226.38, -439.53], [-2228.0, -443.11], [-2228.45, -447.71], [-2228.07, -452.6], [-2227.23, -455.51], [-2225.49, -457.82], [-2223.66, -459.63], [-2221.94, -461.0], [-2218.43, -462.58], [-2215.15, -463.26], [-2210.83, -463.7], [-2206.46, -460.84], [-2208.93, -453.01], [-2215.51, -450.21], [-2220.56, -447.27], [-2223.3, -442.57], [-2222.72, -439.06], [-2219.09, -436.41], [-2216.26, -435.84]], "holes": []}}, {"shape": {"outer": [[-2163.86, -437.88], [-2161.65, -437.81], [-2162.22, -455.11], [-2163.73, -455.05], [-2163.71, -453.06], [-2164.02, -453.07], [-2163.86, -437.88]], "holes": []}}, {"shape": {"outer": [[-2164.95, -479.81], [-2162.78, -479.88], [-2162.92, -498.63], [-2164.26, -498.37], [-2164.95, -479.81]], "holes": []}}, {"shape": {"outer": [[-2436.51, -432.36], [-2436.61, -435.24], [-2407.41, -436.32], [-2407.3, -433.57], [-2436.51, -432.36]], "holes": []}}, {"shape": {"outer": [[-2536.83, -452.96], [-2533.11, -453.18], [-2532.92, -450.1], [-2536.64, -449.87], [-2536.83, -452.96]], "holes": []}}, {"shape": {"outer": [[-2537.15, -465.35], [-2533.52, -465.51], [-2533.38, -462.22], [-2537.01, -462.07], [-2537.15, -465.35]], "holes": []}}, {"shape": {"outer": [[-2253.16, -621.42], [-2252.21, -620.57], [-2251.05, -620.35], [-2250.0, -620.74], [-2249.37, -621.79], [-2249.42, -622.54], [-2253.16, -621.42]], "holes": []}}, {"shape": {"outer": [[-2263.67, -649.27], [-2246.0, -635.55], [-2248.34, -625.86], [-2252.77, -629.4], [-2255.45, -627.0], [-2256.46, -626.62], [-2257.74, -627.12], [-2259.94, -630.37], [-2263.16, -641.76], [-2264.5, -646.68], [-2264.51, -647.61], [-2264.11, -648.47], [-2263.67, -649.27]], "holes": []}}, {"shape": {"outer": [[-2234.58, -467.42], [-2235.61, -467.06], [-2236.73, -465.93], [-2237.36, -464.26], [-2237.54, -462.59], [-2238.53, -460.28], [-2239.33, -458.88], [-2239.97, -457.35], [-2241.92, -455.26], [-2245.25, -453.64], [-2248.96, -453.5], [-2252.14, -454.27], [-2256.23, -456.07], [-2259.79, -458.26], [-2261.77, -460.57], [-2262.94, -462.32], [-2264.05, -464.24], [-2265.73, -466.33], [-2266.14, -468.45], [-2265.57, -470.81], [-2264.87, -472.6], [-2263.85, -473.95], [-2262.12, -474.54], [-2260.04, -474.96], [-2257.49, -475.07], [-2254.71, -474.53], [-2252.71, -475.47], [-2251.74, -476.76], [-2250.8, -478.47], [-2249.31, -480.57], [-2247.33, -482.74], [-2243.7, -484.1], [-2240.25, -484.43], [-2237.68, -483.85], [-2235.53, -482.79], [-2233.24, -481.64], [-2231.55, -480.41], [-2236.48, -472.54], [-2234.58, -467.42]], "holes": []}}, {"shape": {"outer": [[-2535.16, -687.65], [-2535.0, -686.66], [-2525.68, -682.65], [-2505.25, -673.21], [-2502.99, -676.63], [-2506.8, -680.67], [-2525.3, -687.86], [-2535.16, -687.65]], "holes": []}}, {"shape": {"outer": [[-2398.01, -753.89], [-2399.26, -752.83], [-2419.31, -768.09], [-2426.02, -773.2], [-2450.37, -774.95], [-2450.68, -780.46], [-2448.66, -780.43], [-2447.49, -782.2], [-2426.26, -775.86], [-2425.13, -775.14], [-2398.01, -753.89]], "holes": []}}, {"shape": {"outer": [[-2478.18, -791.99], [-2478.01, -789.03], [-2472.33, -789.05], [-2472.32, -787.92], [-2469.81, -787.92], [-2469.82, -789.72], [-2478.18, -791.99]], "holes": []}}, {"shape": {"outer": [[-2463.71, -774.79], [-2463.85, -780.74], [-2465.91, -780.69], [-2465.87, -779.01], [-2474.4, -778.8], [-2474.44, -780.51], [-2484.61, -780.26], [-2484.73, -785.38], [-2487.66, -785.31], [-2487.8, -791.22], [-2484.3, -791.31], [-2484.34, -792.84], [-2489.62, -792.71], [-2489.25, -777.94], [-2477.24, -778.24], [-2477.14, -774.46], [-2463.71, -774.79]], "holes": []}}, {"shape": {"outer": [[-2493.34, -791.76], [-2493.26, -795.61], [-2533.72, -807.8], [-2535.77, -806.33], [-2538.23, -805.99], [-2540.9, -804.92], [-2542.62, -803.71], [-2544.1, -802.18], [-2545.16, -800.39], [-2547.21, -798.79], [-2546.42, -766.73], [-2544.45, -766.86], [-2545.22, -795.57], [-2542.15, -797.68], [-2543.18, -799.17], [-2535.73, -804.28], [-2534.84, -802.98], [-2531.33, -805.38], [-2517.82, -801.17], [-2495.5, -794.22], [-2495.55, -791.8], [-2493.34, -791.76]], "holes": []}}, {"shape": {"outer": [[-2544.45, -766.86], [-2542.64, -766.8], [-2541.87, -767.42], [-2541.83, -768.28], [-2542.21, -784.7], [-2542.05, -788.79], [-2540.72, -792.45], [-2538.4, -795.58], [-2535.4, -798.52], [-2531.45, -801.41], [-2527.18, -802.25], [-2517.82, -801.17], [-2531.33, -805.38], [-2534.84, -802.98], [-2535.73, -804.28], [-2543.18, -799.17], [-2542.15, -797.68], [-2545.22, -795.57], [-2544.45, -766.86]], "holes": []}}, {"shape": {"outer": [[-2144.57, -715.53], [-2115.68, -705.84], [-2115.55, -704.22], [-2111.96, -702.88], [-2102.01, -699.16], [-2073.5, -692.08], [-2064.33, -687.53], [-2063.21, -684.29], [-2055.35, -684.4], [-2033.71, -678.32], [-2033.63, -679.65], [-2034.87, -682.52], [-2037.44, -686.01], [-2040.27, -689.04], [-2042.69, -690.34], [-2045.19, -690.73], [-2048.49, -689.95], [-2051.88, -688.98], [-2057.18, -690.43], [-2061.65, -692.97], [-2064.23, -695.05], [-2068.5, -697.92], [-2070.77, -698.68], [-2073.77, -698.97], [-2076.77, -698.38], [-2080.26, -698.42], [-2084.72, -700.15], [-2089.14, -702.15], [-2094.97, -704.42], [-2097.26, -704.58], [-2099.38, -704.46], [-2101.46, -704.62], [-2105.84, -705.82], [-2115.18, -709.66], [-2116.29, -710.34], [-2117.78, -711.88], [-2119.5, -713.1], [-2121.63, -713.66], [-2123.25, -713.91], [-2125.64, -713.73], [-2127.75, -713.84], [-2130.08, -714.59], [-2132.03, -715.25], [-2133.79, -716.24], [-2135.15, -717.14], [-2136.76, -718.19], [-2138.47, -719.13], [-2140.65, -719.6], [-2142.5, -718.88], [-2144.14, -717.34], [-2144.57, -715.53]], "holes": []}}, {"shape": {"outer": [[-2010.93, -671.06], [-2009.87, -671.55], [-1956.85, -655.85], [-1941.67, -651.61], [-1932.13, -649.44], [-1930.98, -647.62], [-1918.54, -648.24], [-1917.72, -649.07], [-1917.69, -649.67], [-1918.31, -651.06], [-1918.89, -652.12], [-1919.72, -652.97], [-1921.46, -653.43], [-1924.8, -653.52], [-1928.12, -653.83], [-1930.58, -654.59], [-1933.07, -654.98], [-1935.62, -654.93], [-1937.34, -654.25], [-1937.95, -654.2], [-1940.36, -654.69], [-1942.94, -655.29], [-1948.06, -656.78], [-1954.61, -659.52], [-1960.99, -662.69], [-1964.87, -663.88], [-1968.19, -664.54], [-1971.02, -664.85], [-1973.81, -665.05], [-1975.58, -665.6], [-1977.78, -666.36], [-1980.2, -667.45], [-1982.31, -668.71], [-1984.45, -670.19], [-1986.92, -672.12], [-1989.99, -673.65], [-1992.78, -675.04], [-1995.98, -676.34], [-1998.95, -676.7], [-2001.86, -676.66], [-2004.31, -676.47], [-2005.99, -675.78], [-2008.42, -674.22], [-2010.15, -672.77], [-2010.93, -671.06]], "holes": []}}, {"shape": {"outer": [[-1956.94, -647.24], [-1956.21, -646.38], [-1930.98, -647.62], [-1932.13, -649.44], [-1941.67, -651.61], [-1956.85, -655.85], [-1956.94, -647.24]], "holes": []}}, {"shape": {"outer": [[-2550.54, -874.85], [-2552.63, -874.8], [-2552.71, -877.6], [-2551.52, -879.02], [-2549.1, -876.98], [-2549.94, -876.02], [-2550.2, -876.02], [-2550.56, -876.01], [-2550.54, -874.85]], "holes": []}}, {"shape": {"outer": [[-2539.95, -868.96], [-2530.26, -860.78], [-2532.13, -859.2], [-2534.62, -856.75], [-2535.67, -854.54], [-2535.72, -853.05], [-2534.98, -850.83], [-2533.56, -849.1], [-2532.18, -847.91], [-2534.25, -846.14], [-2536.8, -845.42], [-2538.92, -845.62], [-2540.95, -846.54], [-2543.0, -847.94], [-2544.92, -849.38], [-2547.6, -850.77], [-2550.19, -851.7], [-2552.17, -851.97], [-2552.26, -858.55], [-2549.32, -858.52], [-2548.38, -859.11], [-2548.31, -859.51], [-2546.23, -860.36], [-2545.02, -861.76], [-2544.58, -863.99], [-2544.74, -865.53], [-2545.07, -866.35], [-2542.2, -866.42], [-2539.95, -868.96]], "holes": []}}, {"shape": {"outer": [[-2528.93, -848.49], [-2532.49, -851.53], [-2532.99, -852.81], [-2533.19, -854.26], [-2532.63, -855.28], [-2531.28, -856.38], [-2530.65, -856.43], [-2529.85, -856.5], [-2528.88, -856.22], [-2528.09, -855.6], [-2527.31, -854.75], [-2526.88, -853.74], [-2526.34, -851.83], [-2526.18, -850.58], [-2526.22, -849.33], [-2526.38, -848.27], [-2526.62, -847.29], [-2526.98, -846.35], [-2527.46, -845.4], [-2528.74, -843.6], [-2530.53, -842.47], [-2532.71, -841.52], [-2534.15, -841.33], [-2535.57, -841.29], [-2538.17, -841.36], [-2538.94, -841.53], [-2539.63, -841.76], [-2540.73, -842.18], [-2541.04, -842.56], [-2541.22, -842.99], [-2541.21, -843.7], [-2541.08, -844.16], [-2540.26, -843.88], [-2538.71, -843.61], [-2537.26, -843.47], [-2535.34, -843.54], [-2533.8, -843.94], [-2532.44, -844.89], [-2530.92, -846.19], [-2529.57, -847.53], [-2528.93, -848.49]], "holes": []}}, {"shape": {"outer": [[-2529.84, -856.81], [-2528.99, -856.59], [-2528.18, -856.07], [-2527.54, -855.46], [-2526.59, -856.54], [-2528.44, -858.18], [-2529.84, -856.81]], "holes": []}}, {"shape": {"outer": [[-2525.93, -849.18], [-2525.84, -850.15], [-2525.9, -851.18], [-2525.98, -851.83], [-2526.19, -852.5], [-2524.54, -852.48], [-2524.38, -850.53], [-2524.44, -848.96], [-2525.93, -849.18]], "holes": []}}, {"shape": {"outer": [[-2526.02, -848.31], [-2524.6, -848.13], [-2524.7, -847.33], [-2525.19, -845.96], [-2525.66, -844.96], [-2526.18, -843.91], [-2526.36, -843.55], [-2527.27, -845.2], [-2526.71, -846.29], [-2526.31, -847.29], [-2526.02, -848.31]], "holes": []}}, {"shape": {"outer": [[-2527.72, -844.41], [-2527.4, -843.43], [-2526.98, -842.95], [-2527.49, -842.3], [-2528.02, -841.75], [-2528.67, -841.15], [-2529.44, -840.71], [-2530.31, -840.22], [-2530.85, -839.85], [-2531.3, -839.66], [-2531.17, -839.26], [-2532.04, -839.16], [-2532.79, -838.99], [-2532.36, -839.95], [-2531.6, -841.61], [-2530.85, -841.96], [-2529.81, -842.54], [-2529.02, -843.03], [-2528.31, -843.75], [-2527.72, -844.41]], "holes": []}}, {"shape": {"outer": [[-2532.59, -841.24], [-2534.02, -838.88], [-2535.12, -838.78], [-2536.45, -838.8], [-2537.35, -838.75], [-2538.36, -838.94], [-2539.49, -839.31], [-2540.26, -839.66], [-2541.0, -840.06], [-2541.98, -840.62], [-2542.89, -841.31], [-2543.57, -841.97], [-2544.12, -842.54], [-2544.91, -843.36], [-2545.65, -844.17], [-2546.32, -844.74], [-2547.35, -845.4], [-2548.25, -845.91], [-2549.24, -846.45], [-2550.21, -846.85], [-2550.81, -847.07], [-2551.6, -847.3], [-2552.0, -847.34], [-2552.08, -850.09], [-2551.22, -850.03], [-2550.39, -849.88], [-2549.4, -849.62], [-2548.4, -849.13], [-2547.1, -848.41], [-2545.64, -847.5], [-2544.67, -846.8], [-2543.58, -846.01], [-2542.69, -845.3], [-2541.65, -844.64], [-2541.08, -844.16], [-2541.21, -843.7], [-2541.22, -842.99], [-2541.04, -842.56], [-2540.73, -842.18], [-2539.63, -841.76], [-2538.94, -841.53], [-2538.17, -841.36], [-2537.84, -841.06], [-2536.01, -840.97], [-2534.32, -841.04], [-2532.59, -841.24]], "holes": []}}, {"shape": {"outer": [[-2553.89, -847.86], [-2556.67, -851.53], [-2556.51, -851.85], [-2555.74, -853.58], [-2555.19, -855.15], [-2555.06, -856.41], [-2554.12, -856.46], [-2553.89, -847.86]], "holes": []}}, {"shape": {"outer": [[-2556.9, -843.88], [-2553.74, -844.01], [-2553.42, -831.78], [-2555.34, -831.72], [-2555.42, -832.98], [-2556.76, -832.92], [-2556.9, -843.88]], "holes": []}}, {"shape": {"outer": [[-2550.44, -831.98], [-2545.73, -832.13], [-2545.37, -832.27], [-2545.21, -832.53], [-2545.25, -832.96], [-2545.41, -833.31], [-2545.93, -833.78], [-2546.64, -834.64], [-2547.4, -835.52], [-2548.11, -836.43], [-2548.82, -837.25], [-2549.46, -837.71], [-2550.04, -837.91], [-2550.52, -837.82], [-2551.12, -837.55], [-2551.3, -837.18], [-2551.51, -836.9], [-2551.43, -833.1], [-2551.23, -832.58], [-2550.93, -832.17], [-2550.44, -831.98]], "holes": []}}, {"shape": {"outer": [[-2551.94, -843.71], [-2551.86, -840.2], [-2551.47, -839.75], [-2550.7, -839.45], [-2549.18, -839.67], [-2548.78, -839.7], [-2548.46, -839.85], [-2548.3, -840.01], [-2547.51, -840.8], [-2548.38, -841.6], [-2549.13, -842.28], [-2550.42, -843.08], [-2551.94, -843.71]], "holes": []}}, {"shape": {"outer": [[-2515.04, -833.22], [-2514.7, -832.82], [-2514.51, -832.35], [-2514.87, -831.95], [-2515.03, -831.77], [-2514.12, -831.66], [-2510.87, -831.07], [-2510.1, -831.84], [-2511.47, -832.14], [-2512.83, -832.71], [-2514.92, -833.56], [-2515.04, -833.22]], "holes": []}}, {"shape": {"outer": [[-2496.64, -832.83], [-2497.13, -835.9], [-2499.64, -838.25], [-2506.19, -843.25], [-2516.91, -850.17], [-2517.57, -849.64], [-2517.46, -848.66], [-2517.91, -848.01], [-2518.69, -847.5], [-2519.53, -847.52], [-2520.24, -847.95], [-2520.57, -847.86], [-2520.45, -847.04], [-2520.29, -845.61], [-2519.71, -843.87], [-2518.82, -842.35], [-2517.81, -840.98], [-2516.18, -839.26], [-2514.69, -838.1], [-2513.9, -837.46], [-2512.99, -836.85], [-2511.92, -836.32], [-2508.29, -835.04], [-2504.42, -833.69], [-2500.83, -832.94], [-2498.78, -832.8], [-2496.64, -832.83]], "holes": []}}, {"shape": {"outer": [[-2534.39, -833.47], [-2534.3, -832.83], [-2525.94, -833.19], [-2525.96, -834.32], [-2527.17, -834.35], [-2528.58, -834.32], [-2530.27, -834.18], [-2531.76, -833.93], [-2534.39, -833.47]], "holes": []}}, {"shape": {"outer": [[-2570.36, -847.49], [-2570.34, -848.25], [-2592.74, -855.06], [-2591.21, -828.24], [-2570.26, -829.22], [-2570.24, -835.68], [-2573.35, -835.66], [-2573.46, -847.46], [-2570.36, -847.49]], "holes": []}}, {"shape": {"outer": [[-2568.5, -829.25], [-2566.14, -829.78], [-2565.63, -831.07], [-2565.59, -831.93], [-2565.85, -846.46], [-2568.82, -848.63], [-2568.5, -829.25]], "holes": []}}, {"shape": {"outer": [[-2570.41, -827.33], [-2591.09, -826.63], [-2591.0, -824.61], [-2572.58, -825.64], [-2570.39, -826.02], [-2570.41, -827.33]], "holes": []}}, {"shape": {"outer": [[-2415.6, -717.35], [-2416.42, -717.27], [-2415.98, -719.46], [-2417.39, -720.05], [-2418.4, -721.21], [-2418.91, -722.83], [-2418.8, -723.87], [-2418.14, -727.14], [-2413.25, -725.94], [-2415.6, -717.35]], "holes": []}}, {"shape": {"outer": [[-2417.82, -729.06], [-2416.28, -734.24], [-2416.79, -749.49], [-2416.84, -751.14], [-2415.51, -752.59], [-2414.04, -753.38], [-2410.99, -753.47], [-2408.42, -752.18], [-2404.85, -750.6], [-2402.9, -748.96], [-2402.56, -747.88], [-2403.53, -747.45], [-2407.44, -748.32], [-2412.47, -729.06], [-2412.85, -727.8], [-2417.82, -729.06]], "holes": []}}, {"shape": {"outer": [[-2365.19, -693.37], [-2369.32, -698.74], [-2367.6, -699.72], [-2364.88, -695.55], [-2364.92, -693.73], [-2365.19, -693.37]], "holes": []}}, {"shape": {"outer": [[-2349.02, -713.2], [-2348.79, -710.09], [-2349.43, -708.85], [-2349.39, -707.66], [-2348.81, -705.82], [-2347.56, -704.66], [-2345.3, -703.99], [-2341.16, -704.19], [-2341.59, -705.18], [-2341.57, -706.22], [-2341.3, -707.19], [-2340.68, -708.11], [-2346.94, -713.26], [-2349.02, -713.2]], "holes": []}}, {"shape": {"outer": [[-2386.83, -744.12], [-2381.84, -740.3], [-2383.73, -737.57], [-2388.91, -740.18], [-2386.83, -744.12]], "holes": []}}, {"shape": {"outer": [[-2379.65, -738.38], [-2374.61, -735.06], [-2376.12, -732.79], [-2381.08, -735.99], [-2379.65, -738.38]], "holes": []}}, {"shape": {"outer": [[-2371.96, -732.46], [-2367.54, -729.1], [-2368.9, -727.31], [-2373.33, -730.68], [-2371.96, -732.46]], "holes": []}}, {"shape": {"outer": [[-2364.45, -727.19], [-2360.17, -723.49], [-2362.05, -721.18], [-2366.3, -725.07], [-2364.45, -727.19]], "holes": []}}, {"shape": {"outer": [[-2545.68, -756.42], [-2545.61, -753.15], [-2546.8, -753.05], [-2545.53, -705.38], [-2542.64, -705.42], [-2544.24, -757.55], [-2545.68, -756.42]], "holes": []}}, {"shape": {"outer": [[-1343.6, -1310.74], [-1349.87, -1316.34], [-1350.17, -1316.93], [-1350.15, -1317.79], [-1349.52, -1318.28], [-1348.51, -1318.39], [-1341.9, -1312.65], [-1341.78, -1311.99], [-1341.89, -1311.31], [-1342.23, -1310.85], [-1342.73, -1310.6], [-1343.6, -1310.74]], "holes": []}}, {"shape": {"outer": [[-1320.11, -1336.38], [-1326.39, -1342.1], [-1326.72, -1342.79], [-1326.54, -1343.33], [-1326.17, -1343.79], [-1325.66, -1344.02], [-1325.16, -1344.06], [-1324.68, -1343.83], [-1318.55, -1338.35], [-1318.36, -1337.78], [-1318.34, -1337.24], [-1318.63, -1336.59], [-1318.97, -1336.31], [-1319.56, -1336.16], [-1320.11, -1336.38]], "holes": []}}, {"shape": {"outer": [[551.31, 38.08], [552.33, 37.28], [553.38, 34.42], [554.63, 31.21], [555.22, 28.45], [554.98, 26.65], [551.06, 25.55], [550.91, 36.94], [551.31, 38.08]], "holes": []}}, {"shape": {"outer": [[551.35, 23.92], [554.66, 24.67], [554.09, 23.03], [553.43, 21.81], [552.52, 20.76], [551.32, 19.79], [551.35, 23.92]], "holes": []}}, {"shape": {"outer": [[549.22, 18.89], [549.64, 23.44], [544.04, 21.31], [541.79, 20.06], [539.67, 18.7], [537.67, 17.4], [536.17, 16.43], [534.48, 15.81], [534.9, 14.4], [540.72, 16.03], [541.82, 16.5], [541.99, 17.42], [542.25, 19.27], [542.46, 20.08], [543.9, 19.92], [543.86, 18.6], [544.22, 17.26], [549.22, 18.89]], "holes": []}}, {"shape": {"outer": [[504.51, -1.75], [504.63, -2.09], [507.12, -0.28], [510.37, 1.97], [513.95, 4.37], [517.96, 6.69], [521.73, 8.55], [525.83, 10.7], [529.92, 12.44], [531.88, 13.3], [531.52, 14.41], [529.23, 13.66], [526.07, 12.32], [522.38, 10.59], [518.45, 8.34], [515.76, 6.59], [512.37, 4.34], [510.6, 3.18], [509.98, 3.15], [504.51, -1.75]], "holes": []}}, {"shape": {"outer": [[-1178.7, 39.92], [-1174.75, 39.23], [-1173.95, 56.51], [-1177.38, 55.64], [-1178.7, 39.92]], "holes": []}}, {"shape": {"outer": [[-1173.13, 71.09], [-1176.28, 69.76], [-1176.78, 62.43], [-1173.7, 60.53], [-1173.13, 71.09]], "holes": []}}, {"shape": {"outer": [[-1175.22, 95.5], [-1171.83, 95.35], [-1172.78, 74.22], [-1176.13, 75.85], [-1175.22, 95.5]], "holes": []}}, {"shape": {"outer": [[-1171.4, 98.59], [-1170.38, 116.93], [-1170.68, 118.26], [-1172.27, 117.89], [-1173.02, 117.37], [-1173.62, 116.68], [-1174.6, 98.77], [-1171.4, 98.59]], "holes": []}}, {"shape": {"outer": [[-1168.06, 160.27], [-1171.22, 159.88], [-1171.01, 159.34], [-1171.29, 153.57], [-1171.51, 153.58], [-1171.54, 152.76], [-1171.47, 151.67], [-1171.28, 150.94], [-1170.91, 150.19], [-1170.49, 149.3], [-1170.14, 148.3], [-1169.85, 147.26], [-1169.64, 146.45], [-1169.46, 145.1], [-1168.86, 145.06], [-1168.06, 160.27]], "holes": []}}, {"shape": {"outer": [[-1216.23, 47.47], [-1216.34, 45.74], [-1216.52, 41.99], [-1196.94, 41.07], [-1194.16, 41.18], [-1193.19, 42.25], [-1192.71, 43.45], [-1190.45, 83.34], [-1191.38, 83.35], [-1191.4, 82.92], [-1192.98, 82.92], [-1194.24, 50.81], [-1195.06, 50.88], [-1195.25, 47.07], [-1199.13, 47.23], [-1199.19, 46.59], [-1216.23, 47.47]], "holes": []}}, {"shape": {"outer": [[-1225.44, 42.62], [-1225.39, 43.98], [-1223.13, 43.9], [-1223.18, 42.55], [-1225.44, 42.62]], "holes": []}}, {"shape": {"outer": [[-1232.08, 43.16], [-1232.04, 44.5], [-1229.77, 44.43], [-1229.82, 43.07], [-1232.08, 43.16]], "holes": []}}, {"shape": {"outer": [[-332.87, -88.2], [-329.18, -92.73], [-328.39, -93.21], [-327.53, -93.31], [-326.89, -92.99], [-326.92, -92.3], [-327.46, -91.56], [-328.14, -90.51], [-328.44, -89.24], [-328.25, -87.67], [-327.54, -86.43], [-326.53, -85.64], [-325.54, -85.26], [-324.6, -85.21], [-323.89, -85.01], [-323.39, -84.63], [-323.5, -84.04], [-325.3, -82.07], [-329.02, -85.08], [-332.87, -88.2]], "holes": []}}, {"shape": {"outer": [[-1333.33, -73.7], [-1333.42, -75.72], [-1344.94, -75.18], [-1344.9, -74.57], [-1344.84, -73.17], [-1333.33, -73.7]], "holes": []}}, {"shape": {"outer": [[-1347.73, -74.92], [-1347.71, -74.51], [-1347.65, -73.06], [-1359.27, -72.52], [-1359.33, -73.71], [-1359.37, -74.37], [-1347.73, -74.92]], "holes": []}}, {"shape": {"outer": [[87.36, -315.85], [86.28, -316.82], [87.25, -317.89], [88.33, -316.92], [87.36, -315.85]], "holes": []}}, {"shape": {"outer": [[92.28, -321.18], [91.21, -322.16], [92.2, -323.22], [93.26, -322.24], [92.28, -321.18]], "holes": []}}, {"shape": {"outer": [[119.87, -334.02], [118.02, -335.68], [116.05, -337.43], [121.47, -343.45], [125.29, -340.04], [119.87, -334.02]], "holes": []}}, {"shape": {"outer": [[97.1, -322.16], [97.39, -322.05], [97.66, -322.01], [97.95, -322.05], [98.28, -322.2], [98.55, -322.45], [98.71, -322.71], [98.78, -322.93], [98.8, -323.18], [98.78, -323.39], [98.71, -323.6], [98.55, -323.87], [98.31, -324.09], [97.98, -324.24], [97.6, -324.29], [97.39, -324.26], [97.18, -324.19], [96.87, -323.97], [96.7, -323.76], [96.58, -323.53], [96.52, -323.27], [96.53, -323.01], [96.59, -322.75], [96.72, -322.51], [96.86, -322.35], [97.1, -322.16]], "holes": []}}, {"shape": {"outer": [[151.46, -316.19], [149.72, -317.78], [148.15, -316.07], [139.71, -323.71], [141.1, -325.22], [129.45, -335.76], [124.37, -330.2], [146.21, -310.42], [151.46, -316.19]], "holes": []}}, {"shape": {"outer": [[-233.18, -192.14], [-233.97, -191.26], [-233.15, -190.55], [-236.67, -186.65], [-237.49, -187.35], [-238.34, -186.41], [-242.21, -189.69], [-241.57, -190.4], [-242.44, -191.15], [-238.58, -195.44], [-237.7, -194.7], [-237.05, -195.42], [-233.18, -192.14]], "holes": []}}, {"shape": {"outer": [[-239.82, -184.78], [-240.61, -183.9], [-239.79, -183.19], [-244.72, -177.72], [-245.54, -178.41], [-245.06, -178.95], [-248.89, -182.28], [-249.42, -181.69], [-250.29, -182.44], [-245.17, -188.13], [-244.31, -187.36], [-243.66, -188.08], [-239.82, -184.78]], "holes": []}}, {"shape": {"outer": [[-252.19, -171.03], [-251.42, -171.89], [-250.61, -171.18], [-245.51, -176.84], [-246.33, -177.54], [-246.99, -176.81], [-250.81, -180.14], [-250.35, -180.66], [-251.22, -181.41], [-256.23, -175.84], [-255.36, -175.09], [-256.03, -174.35], [-252.19, -171.03]], "holes": []}}, {"shape": {"outer": [[-253.1, -170.02], [-253.89, -169.14], [-253.08, -168.43], [-258.01, -162.97], [-258.83, -163.66], [-258.35, -164.2], [-262.18, -167.53], [-262.71, -166.93], [-263.59, -167.69], [-258.46, -173.37], [-257.59, -172.61], [-256.95, -173.33], [-253.1, -170.02]], "holes": []}}, {"shape": {"outer": [[-265.48, -156.27], [-264.71, -157.14], [-263.89, -156.42], [-258.8, -162.09], [-259.62, -162.79], [-260.28, -162.06], [-264.1, -165.39], [-263.64, -165.91], [-264.51, -166.66], [-269.53, -161.09], [-268.66, -160.34], [-269.31, -159.6], [-265.48, -156.27]], "holes": []}}, {"shape": {"outer": [[-224.16, -210.62], [-224.32, -210.36], [-224.4, -210.07], [-224.39, -209.77], [-224.27, -209.48], [-224.07, -209.26], [-223.81, -209.1], [-223.52, -209.03], [-223.19, -209.06], [-222.89, -209.2], [-222.7, -209.37], [-222.5, -209.78], [-222.51, -210.07], [-222.58, -210.39], [-222.77, -210.65], [-223.04, -210.84], [-223.33, -210.92], [-223.64, -210.91], [-223.93, -210.81], [-224.16, -210.62]], "holes": []}}, {"shape": {"outer": [[-212.09, -224.18], [-212.26, -223.93], [-212.34, -223.63], [-212.32, -223.33], [-212.21, -223.04], [-212.0, -222.82], [-211.75, -222.66], [-211.45, -222.59], [-211.13, -222.62], [-210.93, -222.7], [-210.74, -222.8], [-210.59, -222.97], [-210.49, -223.16], [-210.43, -223.4], [-210.43, -223.63], [-210.51, -223.95], [-210.71, -224.22], [-210.97, -224.4], [-211.27, -224.49], [-211.57, -224.47], [-211.86, -224.36], [-212.09, -224.18]], "holes": []}}, {"shape": {"outer": [[41.57, -330.83], [43.06, -329.5], [52.71, -340.28], [52.22, -340.71], [53.12, -341.7], [49.4, -344.99], [46.63, -341.89], [49.32, -339.5], [41.57, -330.83]], "holes": []}}, {"shape": {"outer": [[-231.37, -51.75], [-231.79, -52.15], [-232.89, -51.0], [-232.48, -50.6], [-233.08, -49.97], [-228.81, -45.94], [-228.32, -46.44], [-228.84, -46.93], [-227.57, -48.26], [-227.04, -47.77], [-226.46, -48.38], [-230.74, -52.42], [-231.37, -51.75]], "holes": []}}, {"shape": {"outer": [[-246.77, -65.51], [-247.2, -65.9], [-248.26, -64.69], [-247.84, -64.32], [-248.41, -63.66], [-243.98, -59.78], [-243.57, -60.24], [-243.05, -59.79], [-241.78, -61.24], [-242.3, -61.69], [-241.73, -62.33], [-246.16, -66.21], [-246.77, -65.51]], "holes": []}}, {"shape": {"outer": [[-210.78, -230.86], [-211.61, -231.66], [-210.87, -232.45], [-222.33, -242.73], [-223.07, -241.93], [-222.36, -241.25], [-225.84, -237.56], [-226.34, -238.05], [-227.13, -237.2], [-215.75, -227.02], [-214.96, -227.86], [-214.24, -227.16], [-210.78, -230.86]], "holes": []}}, {"shape": {"outer": [[-188.49, -241.51], [-189.28, -240.63], [-188.46, -239.92], [-193.39, -234.45], [-194.22, -235.15], [-193.74, -235.68], [-197.56, -239.01], [-198.09, -238.43], [-198.97, -239.17], [-193.85, -244.86], [-192.98, -244.1], [-192.33, -244.82], [-188.49, -241.51]], "holes": []}}, {"shape": {"outer": [[-200.87, -227.77], [-200.09, -228.62], [-199.28, -227.91], [-194.18, -233.57], [-195.01, -234.27], [-195.66, -233.54], [-199.49, -236.88], [-199.02, -237.39], [-199.9, -238.14], [-204.91, -232.58], [-204.04, -231.82], [-204.7, -231.08], [-200.87, -227.77]], "holes": []}}, {"shape": {"outer": [[-175.1, -256.09], [-175.89, -255.21], [-175.07, -254.5], [-180.0, -249.02], [-180.83, -249.72], [-180.35, -250.26], [-184.17, -253.58], [-184.7, -253.0], [-185.58, -253.74], [-180.46, -259.44], [-179.59, -258.67], [-178.94, -259.39], [-175.1, -256.09]], "holes": []}}, {"shape": {"outer": [[-187.48, -242.34], [-186.71, -243.2], [-185.9, -242.49], [-180.79, -248.14], [-181.62, -248.84], [-182.27, -248.11], [-186.1, -251.45], [-185.64, -251.96], [-186.51, -252.72], [-191.52, -247.15], [-190.65, -246.4], [-191.31, -245.66], [-187.48, -242.34]], "holes": []}}, {"shape": {"outer": [[-168.91, -262.85], [-169.7, -261.98], [-168.88, -261.26], [-172.4, -257.36], [-173.22, -258.06], [-174.06, -257.13], [-177.94, -260.41], [-177.3, -261.11], [-178.17, -261.87], [-174.31, -266.16], [-173.43, -265.41], [-172.78, -266.13], [-168.91, -262.85]], "holes": []}}, {"shape": {"outer": [[-141.48, -293.1], [-142.27, -292.22], [-141.45, -291.51], [-146.61, -286.06], [-147.42, -286.76], [-148.27, -285.83], [-152.14, -289.11], [-151.5, -289.81], [-152.37, -290.57], [-146.87, -296.4], [-146.0, -295.66], [-145.35, -296.38], [-141.48, -293.1]], "holes": []}}, {"shape": {"outer": [[-154.42, -277.88], [-155.2, -277.0], [-154.39, -276.29], [-159.54, -270.84], [-160.36, -271.54], [-161.21, -270.61], [-165.08, -273.89], [-164.44, -274.6], [-165.31, -275.35], [-159.81, -281.18], [-158.94, -280.44], [-158.29, -281.16], [-154.42, -277.88]], "holes": []}}, {"shape": {"outer": [[-135.74, -312.35], [-133.54, -314.68], [-133.72, -320.17], [-136.16, -320.05], [-136.06, -318.24], [-141.94, -317.92], [-135.74, -312.35]], "holes": []}}, {"shape": {"outer": [[-53.52, -251.02], [-52.64, -250.23], [-51.93, -251.05], [-46.41, -246.16], [-47.12, -245.33], [-47.66, -245.77], [-49.84, -243.14], [-49.25, -242.61], [-50.0, -241.74], [-55.73, -246.82], [-54.96, -247.69], [-55.69, -248.33], [-53.52, -251.02]], "holes": []}}, {"shape": {"outer": [[-39.68, -238.73], [-40.55, -239.51], [-39.83, -240.32], [-45.54, -245.38], [-46.23, -244.55], [-45.49, -243.9], [-47.7, -241.23], [-48.21, -241.69], [-48.97, -240.81], [-43.37, -235.85], [-42.61, -236.71], [-41.86, -236.06], [-39.68, -238.73]], "holes": []}}, {"shape": {"outer": [[-104.48, -296.9], [-103.63, -296.18], [-102.89, -297.04], [-97.83, -292.71], [-100.77, -289.3], [-101.6, -290.01], [-100.84, -290.89], [-105.12, -294.53], [-105.84, -293.7], [-106.64, -294.39], [-104.48, -296.9]], "holes": []}}, {"shape": {"outer": [[-91.33, -285.99], [-92.17, -286.71], [-91.43, -287.57], [-96.49, -291.9], [-99.42, -288.49], [-98.6, -287.78], [-97.84, -288.66], [-93.57, -285.0], [-94.3, -284.17], [-93.49, -283.48], [-91.33, -285.99]], "holes": []}}, {"shape": {"outer": [[-69.89, -267.4], [-77.0, -273.74], [-78.99, -271.51], [-78.22, -270.83], [-77.44, -271.69], [-71.95, -266.8], [-72.68, -265.98], [-71.84, -265.22], [-69.89, -267.4]], "holes": []}}, {"shape": {"outer": [[366.2, -3117.7], [367.07, -3118.24], [367.55, -3119.15], [366.97, -3120.35], [365.98, -3120.71], [357.3, -3120.39], [356.41, -3119.85], [355.91, -3119.01], [356.21, -3117.88], [357.14, -3117.34], [366.2, -3117.7]], "holes": []}}, {"shape": {"outer": [[385.18, -3118.82], [386.06, -3119.37], [386.54, -3120.28], [385.96, -3121.47], [384.97, -3121.84], [376.3, -3121.51], [375.41, -3120.98], [374.9, -3120.13], [375.2, -3119.0], [376.12, -3118.46], [385.18, -3118.82]], "holes": []}}, {"shape": {"outer": [[404.97, -3119.54], [405.84, -3120.08], [406.32, -3121.0], [405.74, -3122.18], [404.76, -3122.55], [396.08, -3122.23], [395.19, -3121.69], [394.68, -3120.86], [394.98, -3119.72], [395.91, -3119.18], [404.97, -3119.54]], "holes": []}}, {"shape": {"outer": [[423.89, -3120.31], [424.76, -3120.85], [425.25, -3121.77], [424.67, -3122.96], [423.68, -3123.32], [415.0, -3123.0], [414.11, -3122.46], [413.6, -3121.63], [413.9, -3120.49], [414.82, -3119.95], [423.89, -3120.31]], "holes": []}}, {"shape": {"outer": [[433.76, -3128.24], [441.3, -3128.61], [442.44, -3131.18], [442.44, -3134.22], [441.51, -3135.05], [432.05, -3134.67], [431.05, -3133.98], [430.98, -3132.38], [431.35, -3130.44], [432.36, -3129.26], [433.76, -3128.24]], "holes": []}}, {"shape": {"outer": [[-2054.54, -454.54], [-2054.7, -460.32], [-2042.59, -460.63], [-2031.55, -460.93], [-2031.4, -455.17], [-2054.54, -454.54]], "holes": []}}, {"shape": {"outer": [[-2074.77, -462.14], [-2091.23, -461.23], [-2091.19, -456.59], [-2089.49, -456.13], [-2086.77, -453.36], [-2087.45, -451.7], [-2077.79, -442.85], [-2076.53, -444.7], [-2075.3, -446.76], [-2074.57, -448.9], [-2074.19, -450.84], [-2074.58, -456.08], [-2074.77, -462.14]], "holes": []}}, {"shape": {"outer": [[-2068.96, -423.49], [-2065.78, -429.95], [-2064.12, -429.86], [-2063.07, -430.8], [-2064.83, -431.16], [-2063.43, -434.34], [-2064.09, -434.36], [-2064.55, -434.35], [-2064.61, -435.05], [-2064.46, -435.75], [-2064.6, -436.28], [-2064.29, -436.99], [-2063.72, -437.43], [-2062.78, -437.99], [-2062.62, -439.47], [-2064.29, -442.35], [-2066.03, -442.53], [-2065.89, -439.42], [-2066.57, -436.26], [-2067.68, -433.25], [-2069.53, -430.15], [-2071.26, -428.23], [-2072.06, -427.42], [-2068.96, -423.49]], "holes": []}}, {"shape": {"outer": [[-2072.06, -427.42], [-2081.8, -437.78], [-2077.79, -442.85], [-2076.53, -444.7], [-2075.3, -446.76], [-2074.57, -448.9], [-2074.19, -450.84], [-2071.33, -450.85], [-2070.2, -449.77], [-2069.79, -448.44], [-2069.13, -443.43], [-2066.03, -442.53], [-2065.89, -439.42], [-2066.57, -436.26], [-2067.68, -433.25], [-2069.53, -430.15], [-2071.26, -428.23], [-2072.06, -427.42]], "holes": []}}, {"shape": {"outer": [[-2074.58, -456.08], [-2066.46, -456.34], [-2066.57, -459.96], [-2062.44, -460.05], [-2060.98, -446.83], [-2061.17, -444.45], [-2063.27, -447.47], [-2069.79, -448.44], [-2070.2, -449.77], [-2071.33, -450.85], [-2074.19, -450.84], [-2074.58, -456.08]], "holes": []}}, {"shape": {"outer": [[-2114.39, -397.37], [-2112.96, -397.45], [-2112.52, -394.13], [-2115.52, -393.81], [-2123.6, -393.4], [-2124.79, -392.52], [-2133.47, -392.41], [-2133.55, -394.19], [-2116.39, -395.08], [-2114.39, -397.37]], "holes": []}}, {"shape": {"outer": [[-2107.39, -394.87], [-2107.71, -397.74], [-2108.32, -397.81], [-2108.17, -398.65], [-2104.42, -398.99], [-2099.7, -399.88], [-2097.04, -400.54], [-2096.05, -398.48], [-2100.43, -396.87], [-2105.11, -395.46], [-2107.39, -394.87]], "holes": []}}, {"shape": {"outer": [[-2123.43, -458.4], [-2121.4, -456.32], [-2109.66, -456.76], [-2107.56, -458.52], [-2109.35, -460.24], [-2122.23, -459.77], [-2123.43, -458.4]], "holes": []}}, {"shape": {"outer": [[-2109.35, -460.24], [-2107.56, -458.52], [-2105.79, -457.04], [-2097.92, -457.4], [-2095.92, -459.31], [-2094.08, -461.08], [-2109.35, -460.24]], "holes": []}}, {"shape": {"outer": [[-2095.92, -459.31], [-2093.08, -456.84], [-2093.28, -461.17], [-2094.08, -461.08], [-2095.92, -459.31]], "holes": []}}, {"shape": {"outer": [[-2135.66, -445.67], [-2138.31, -443.23], [-2136.65, -404.05], [-2133.89, -404.17], [-2135.66, -445.67]], "holes": []}}, {"shape": {"outer": [[-2113.16, -401.28], [-2106.3, -401.86], [-2097.68, -403.3], [-2097.65, -408.87], [-2097.4, -415.06], [-2097.17, -417.74], [-2097.31, -426.57], [-2099.56, -428.61], [-2098.97, -417.51], [-2113.16, -401.28]], "holes": []}}, {"shape": {"outer": [[-2139.09, -451.33], [-2139.21, -456.6], [-2135.77, -456.68], [-2134.89, -455.87], [-2139.09, -451.33]], "holes": []}}, {"shape": {"outer": [[-2169.63, -569.18], [-2167.15, -565.77], [-2164.86, -558.85], [-2163.59, -550.96], [-2163.23, -537.36], [-2163.13, -532.73], [-2162.65, -520.24], [-2162.94, -514.06], [-2165.87, -515.72], [-2169.73, -514.99], [-2169.64, -521.62], [-2170.73, -526.13], [-2171.07, -532.95], [-2172.29, -537.93], [-2174.31, -544.36], [-2174.46, -547.02], [-2175.92, -556.73], [-2181.21, -563.11], [-2183.23, -570.15], [-2181.54, -573.61], [-2179.41, -573.09], [-2174.5, -573.37], [-2169.63, -569.18]], "holes": []}}, {"shape": {"outer": [[-2177.37, -581.64], [-2181.54, -573.61], [-2179.41, -573.09], [-2174.5, -573.37], [-2169.63, -569.18], [-2167.15, -565.77], [-2164.86, -558.85], [-2163.59, -550.96], [-2163.23, -537.36], [-2163.13, -532.73], [-2162.65, -520.24], [-2162.94, -514.06], [-2161.67, -513.0], [-2160.97, -521.13], [-2161.71, -550.53], [-2162.05, -555.02], [-2162.81, -559.29], [-2164.67, -564.35], [-2166.96, -569.4], [-2171.42, -575.65], [-2177.37, -581.64]], "holes": []}}, {"shape": {"outer": [[-2244.24, -608.12], [-2192.56, -502.07], [-2190.43, -502.77], [-2183.74, -501.49], [-2176.22, -512.71], [-2169.73, -514.99], [-2169.64, -521.62], [-2170.73, -526.13], [-2171.07, -532.95], [-2172.29, -537.93], [-2174.31, -544.36], [-2174.46, -547.02], [-2175.92, -556.73], [-2181.21, -563.11], [-2183.23, -570.15], [-2189.49, -567.91], [-2196.98, -569.28], [-2201.72, -574.88], [-2205.09, -581.14], [-2209.84, -585.46], [-2213.26, -591.25], [-2216.34, -596.68], [-2221.6, -596.63], [-2227.56, -596.41], [-2231.65, -597.88], [-2239.01, -602.07], [-2244.24, -608.12]], "holes": []}}, {"shape": {"outer": [[-2259.53, -624.81], [-2256.81, -619.84], [-2256.0, -616.64], [-2253.78, -612.52], [-2253.64, -609.37], [-2254.32, -607.69], [-2256.33, -607.08], [-2256.21, -603.99], [-2256.83, -598.95], [-2253.04, -597.38], [-2251.23, -595.19], [-2240.36, -591.55], [-2236.8, -587.5], [-2240.95, -595.96], [-2251.05, -615.63], [-2259.53, -624.81]], "holes": []}}, {"shape": {"outer": [[-2236.8, -587.5], [-2236.03, -580.12], [-2237.44, -576.53], [-2239.3, -573.21], [-2242.24, -569.8], [-2245.31, -568.99], [-2246.31, -568.11], [-2244.68, -564.41], [-2242.05, -563.25], [-2241.32, -561.06], [-2239.46, -560.68], [-2235.73, -562.62], [-2232.73, -563.16], [-2230.9, -562.16], [-2230.9, -559.38], [-2227.79, -559.51], [-2224.99, -557.88], [-2224.63, -554.36], [-2225.12, -550.39], [-2227.25, -545.39], [-2227.08, -540.75], [-2226.09, -538.6], [-2221.23, -536.74], [-2219.3, -533.05], [-2218.46, -529.33], [-2218.2, -525.54], [-2221.89, -521.35], [-2226.64, -518.09], [-2229.51, -518.22], [-2229.21, -512.98], [-2231.17, -511.99], [-2229.89, -509.46], [-2228.69, -508.16], [-2227.76, -507.41], [-2227.78, -505.22], [-2228.51, -503.4], [-2228.76, -501.59], [-2229.9, -499.4], [-2230.83, -497.53], [-2232.66, -496.36], [-2235.06, -496.04], [-2236.5, -496.68], [-2237.57, -497.59], [-2239.0, -499.62], [-2239.67, -500.45], [-2240.37, -502.16], [-2241.97, -504.0], [-2243.75, -504.53], [-2245.99, -504.36], [-2251.07, -504.59], [-2251.82, -502.3], [-2249.64, -500.2], [-2250.19, -496.88], [-2247.26, -494.36], [-2245.18, -491.79], [-2246.42, -487.99], [-2248.99, -486.01], [-2255.99, -485.71], [-2259.99, -487.11], [-2263.19, -493.53], [-2266.31, -497.01], [-2269.2, -507.37], [-2267.66, -470.05], [-2266.32, -464.96], [-2263.58, -460.15], [-2259.38, -456.17], [-2254.28, -453.3], [-2249.12, -452.69], [-2241.41, -453.22], [-2236.44, -455.45], [-2232.95, -458.2], [-2230.6, -460.58], [-2228.01, -462.64], [-2225.36, -464.35], [-2222.41, -465.92], [-2218.85, -467.17], [-2220.59, -467.92], [-2234.58, -467.42], [-2235.61, -467.06], [-2236.73, -465.93], [-2237.36, -464.26], [-2237.54, -462.59], [-2238.53, -460.28], [-2239.33, -458.88], [-2239.97, -457.35], [-2241.92, -455.26], [-2245.25, -453.64], [-2248.96, -453.5], [-2252.14, -454.27], [-2256.23, -456.07], [-2259.79, -458.26], [-2261.77, -460.57], [-2262.94, -462.32], [-2264.05, -464.24], [-2265.73, -466.33], [-2266.14, -468.45], [-2265.57, -470.81], [-2264.87, -472.6], [-2263.85, -473.95], [-2262.12, -474.54], [-2260.04, -474.96], [-2257.49, -475.07], [-2254.71, -474.53], [-2252.71, -475.47], [-2251.74, -476.76], [-2250.8, -478.47], [-2249.31, -480.57], [-2247.33, -482.74], [-2243.7, -484.1], [-2240.25, -484.43], [-2237.68, -483.85], [-2235.53, -482.79], [-2233.24, -481.64], [-2231.55, -480.41], [-2230.68, -482.13], [-2227.59, -484.05], [-2223.38, -484.42], [-2220.13, -486.98], [-2216.15, -486.81], [-2206.76, -490.38], [-2194.13, -500.47], [-2194.69, -501.59], [-2236.8, -587.5]], "holes": []}}, {"shape": {"outer": [[-2239.22, -446.59], [-2237.47, -446.16], [-2236.15, -445.07], [-2235.97, -443.28], [-2237.29, -439.96], [-2240.38, -435.29], [-2248.28, -434.91], [-2250.84, -439.54], [-2251.09, -442.75], [-2250.12, -444.37], [-2245.26, -444.62], [-2242.29, -445.8], [-2239.22, -446.59]], "holes": []}}, {"shape": {"outer": [[-2250.12, -444.37], [-2267.99, -443.42], [-2270.56, -443.36], [-2285.01, -443.01], [-2285.8, -437.15], [-2284.85, -433.8], [-2270.07, -433.87], [-2248.28, -434.91], [-2250.84, -439.54], [-2251.09, -442.75], [-2250.12, -444.37]], "holes": []}}, {"shape": {"outer": [[-2570.65, -855.88], [-2570.53, -852.97], [-2594.59, -860.17], [-2594.7, -863.26], [-2570.65, -855.88]], "holes": []}}, {"shape": {"outer": [[-2598.7, -846.46], [-2598.76, -843.61], [-2600.07, -841.8], [-2600.72, -837.85], [-2600.87, -836.4], [-2602.06, -835.45], [-2605.28, -835.33], [-2606.03, -834.25], [-2608.79, -835.38], [-2612.2, -836.67], [-2614.15, -840.17], [-2615.6, -841.09], [-2616.42, -845.3], [-2620.54, -843.96], [-2623.23, -841.49], [-2628.63, -840.15], [-2630.15, -840.28], [-2631.52, -838.71], [-2635.52, -840.84], [-2637.76, -844.5], [-2639.21, -849.0], [-2642.33, -846.38], [-2643.83, -845.69], [-2647.27, -845.43], [-2649.17, -844.87], [-2651.18, -846.59], [-2652.44, -845.79], [-2653.38, -848.51], [-2652.99, -851.04], [-2650.86, -850.24], [-2649.43, -856.16], [-2654.88, -861.72], [-2659.31, -859.14], [-2661.1, -857.85], [-2663.33, -858.04], [-2665.45, -856.89], [-2669.82, -855.94], [-2672.04, -858.29], [-2675.78, -858.98], [-2679.48, -857.86], [-2682.16, -859.97], [-2682.91, -859.53], [-2682.44, -858.17], [-2682.65, -856.84], [-2684.09, -856.43], [-2686.46, -856.88], [-2692.84, -863.24], [-2694.86, -860.66], [-2692.85, -855.37], [-2694.6, -850.82], [-2692.38, -849.88], [-2692.62, -847.45], [-2694.1, -845.49], [-2695.0, -842.9], [-2695.29, -838.53], [-2693.73, -835.03], [-2695.36, -831.99], [-2698.54, -831.43], [-2700.88, -835.59], [-2698.19, -838.32], [-2698.41, -843.45], [-2701.0, -847.05], [-2699.69, -850.89], [-2700.79, -855.93], [-2700.54, -861.14], [-2702.07, -864.83], [-2706.6, -866.54], [-2709.46, -866.95], [-2711.67, -862.79], [-2711.91, -856.74], [-2708.45, -854.93], [-2708.45, -852.28], [-2710.54, -850.38], [-2711.34, -845.01], [-2716.5, -846.4], [-2716.98, -849.08], [-2717.74, -858.09], [-2727.27, -863.34], [-2733.42, -862.49], [-2733.75, -859.38], [-2736.25, -858.59], [-2737.59, -860.92], [-2738.39, -864.44], [-2751.33, -864.49], [-2752.95, -874.78], [-2757.42, -874.11], [-2761.61, -880.58], [-2760.03, -886.87], [-2763.06, -885.52], [-2766.57, -885.35], [-2767.61, -883.4], [-2769.23, -883.98], [-2775.17, -889.53], [-2777.25, -898.6], [-2783.87, -897.21], [-2784.32, -889.32], [-2780.55, -887.23], [-2780.44, -882.6], [-2783.56, -879.97], [-2783.59, -878.5], [-2784.03, -877.31], [-2782.72, -875.72], [-2783.7, -873.68], [-2784.34, -870.87], [-2788.67, -869.69], [-2790.63, -870.22], [-2790.88, -868.14], [-2796.1, -865.99], [-2797.3, -867.74], [-2796.66, -869.31], [-2796.38, -871.76], [-2799.01, -871.13], [-2800.44, -873.08], [-2798.79, -876.73], [-2799.8, -881.29], [-2797.3, -884.55], [-2798.63, -887.5], [-2796.92, -888.91], [-2794.53, -889.79], [-2792.85, -896.65], [-2791.75, -899.41], [-2792.94, -902.07], [-2792.45, -906.25], [-2791.33, -908.36], [-2791.29, -913.45], [-2806.36, -916.14], [-2807.99, -911.88], [-2802.02, -907.77], [-2803.91, -904.53], [-2801.02, -903.44], [-2800.28, -900.81], [-2801.67, -899.72], [-2802.04, -897.11], [-2805.61, -897.55], [-2805.8, -892.37], [-2808.73, -892.01], [-2808.49, -889.93], [-2806.16, -887.34], [-2806.29, -883.94], [-2807.33, -882.78], [-2806.73, -878.26], [-2809.74, -877.33], [-2812.02, -875.18], [-2815.32, -876.53], [-2815.83, -875.23], [-2819.9, -879.35], [-2822.46, -878.29], [-2823.81, -875.46], [-2824.93, -875.57], [-2826.22, -874.35], [-2826.62, -872.53], [-2830.82, -871.8], [-2832.31, -876.13], [-2838.0, -880.06], [-2838.78, -882.82], [-2835.62, -885.5], [-2832.36, -885.31], [-2832.32, -888.3], [-2829.02, -891.08], [-2827.05, -891.32], [-2828.82, -893.35], [-2827.95, -895.44], [-2826.93, -896.42], [-2827.75, -897.76], [-2825.08, -898.29], [-2819.46, -894.92], [-2818.32, -896.57], [-2819.82, -900.45], [-2818.4, -902.44], [-2815.36, -901.89], [-2814.79, -902.9], [-2817.8, -904.71], [-2818.24, -908.12], [-2821.67, -910.4], [-2819.52, -914.53], [-2816.22, -916.45], [-2820.76, -920.71], [-2824.27, -924.41], [-2838.6, -924.57], [-2839.5, -919.04], [-2843.15, -917.83], [-2847.8, -918.66], [-2851.06, -918.93], [-2852.84, -919.92], [-2855.02, -918.3], [-2858.08, -921.61], [-2860.4, -922.93], [-2861.94, -920.21], [-2864.35, -919.62], [-2867.28, -920.48], [-2871.24, -927.94], [-2878.45, -928.83], [-2884.64, -930.17], [-2885.77, -932.54], [-2886.61, -934.76], [-2887.26, -937.07], [-2893.8, -936.07], [-2895.43, -941.66], [-2900.01, -937.43], [-2899.48, -928.64], [-2900.51, -927.14], [-2902.15, -926.67], [-2901.81, -924.23], [-2904.69, -921.68], [-2908.07, -921.36], [-2909.39, -924.14], [-2910.59, -928.07], [-2912.71, -927.26], [-2914.13, -928.69], [-2913.69, -930.23], [-2915.22, -935.93], [-2913.08, -939.43], [-2915.91, -941.61], [-2916.19, -944.14], [-2924.26, -942.94], [-2925.92, -943.95], [-2926.5, -941.16], [-2929.12, -941.81], [-2930.85, -940.66], [-2934.98, -942.14], [-2937.39, -944.19], [-2939.14, -946.23], [-2942.01, -946.35], [-2941.96, -944.82], [-2935.22, -940.86], [-2936.86, -937.24], [-2932.14, -932.8], [-2933.25, -931.34], [-2933.34, -928.15], [-2936.89, -925.58], [-2939.36, -925.17], [-2941.17, -923.26], [-2940.7, -920.65], [-2942.28, -919.02], [-2944.37, -918.89], [-2946.48, -919.84], [-2948.29, -924.61], [-2952.29, -923.72], [-2957.68, -927.45], [-2961.59, -925.24], [-2965.29, -926.54], [-2967.58, -929.21], [-2967.81, -933.05], [-2964.86, -937.58], [-2963.01, -938.18], [-2964.25, -941.93], [-2962.06, -944.41], [-2960.43, -945.9], [-2960.21, -949.98], [-2965.46, -952.35], [-2975.94, -949.97], [-2979.05, -946.68], [-2979.76, -942.61], [-2982.12, -942.5], [-2981.89, -941.1], [-2981.04, -939.59], [-2982.76, -936.44], [-2985.72, -936.65], [-2986.39, -938.63], [-2986.02, -940.64], [-2985.66, -941.82], [-2987.12, -944.09], [-2992.84, -951.61], [-2996.26, -953.23], [-2997.88, -955.89], [-2996.27, -961.05], [-2997.09, -962.88], [-3000.56, -957.39], [-3005.02, -955.54], [-3010.62, -956.11], [-3012.99, -953.95], [-3017.59, -955.53], [-3014.9, -951.41], [-3010.29, -952.6], [-3006.22, -951.05], [-3006.97, -949.54], [-3007.19, -946.94], [-3009.41, -944.44], [-3010.48, -945.08], [-3010.48, -946.0], [-3011.34, -945.12], [-3013.28, -945.8], [-3013.97, -944.37], [-3015.06, -944.14], [-3015.3, -941.51], [-3017.6, -941.17], [-3019.2, -941.89], [-3019.95, -942.46], [-3021.28, -941.19], [-3022.06, -941.22], [-3022.05, -940.59], [-3021.59, -939.99], [-3018.43, -940.95], [-3016.55, -940.77], [-3015.12, -936.72], [-3017.24, -929.9], [-3022.15, -929.19], [-3026.79, -929.43], [-3027.55, -930.56], [-3026.6, -934.04], [-3027.47, -935.21], [-3028.58, -935.34], [-3028.01, -934.21], [-3029.36, -932.2], [-3030.94, -932.13], [-3034.52, -932.5], [-3036.22, -929.72], [-3040.68, -929.75], [-3041.52, -928.91], [-3041.45, -927.58], [-3040.35, -926.99], [-3040.74, -925.94], [-3041.75, -924.2], [-3047.78, -921.6], [-3049.67, -919.7], [-3053.0, -919.54], [-3053.43, -922.6], [-3058.5, -926.55], [-3059.15, -929.88], [-3064.94, -945.44], [-3062.31, -944.74], [-3063.83, -948.09], [-3058.35, -949.03], [-3056.25, -944.08], [-3055.37, -938.76], [-3052.37, -934.89], [-3048.61, -934.62], [-3045.69, -937.54], [-3047.48, -941.44], [-3045.91, -943.86], [-3048.02, -946.25], [-3047.61, -949.14], [-3040.67, -948.64], [-3036.29, -955.16], [-3036.27, -963.6], [-3046.0, -965.56], [-3056.58, -978.51], [-3068.33, -975.52], [-3072.35, -983.76], [-3065.56, -987.99], [-3074.18, -995.57], [-3096.59, -1001.77], [-3101.63, -1001.18], [-3103.83, -996.19], [-3107.94, -994.91], [-3110.23, -997.41], [-3115.67, -999.51], [-3122.8, -1000.61], [-3127.97, -998.71], [-3131.5, -995.48], [-3140.0, -996.27], [-3142.45, -994.83], [-3138.31, -990.9], [-3140.96, -989.55], [-3143.7, -992.83], [-3145.61, -991.92], [-3144.12, -990.27], [-3145.52, -988.54], [-3142.82, -987.4], [-3142.79, -985.33], [-3143.36, -983.54], [-3144.65, -982.12], [-3145.98, -983.22], [-3147.45, -985.7], [-3151.18, -986.49], [-3152.79, -984.06], [-3156.1, -984.34], [-3159.3, -985.7], [-3159.42, -1007.65], [-3158.3, -1010.36], [-3154.85, -1010.95], [-3152.53, -1015.18], [-3157.26, -1018.58], [-3158.65, -1023.56], [-3157.28, -1024.06], [-3153.03, -1022.78], [-3150.61, -1022.71], [-3150.93, -1023.98], [-3153.07, -1025.87], [-3152.38, -1027.32], [-3154.71, -1031.99], [-3156.4, -1034.16], [-3156.06, -1036.82], [-3158.06, -1040.11], [-3158.52, -1044.09], [-3157.59, -1044.89], [-3158.16, -1046.86], [-3159.81, -1047.75], [-3161.7, -1054.31], [-3157.26, -1055.5], [-3153.36, -1052.39], [-3153.4, -1048.81], [-3151.26, -1047.25], [-3151.76, -1046.23], [-3151.43, -1045.26], [-3149.26, -1045.08], [-3147.46, -1043.89], [-3146.54, -1042.49], [-3143.79, -1041.45], [-3140.91, -1039.65], [-3136.39, -1038.58], [-3130.08, -1038.82], [-3125.11, -1035.77], [-3121.25, -1034.68], [-3119.73, -1036.31], [-3120.72, -1039.22], [-3120.2, -1041.02], [-3119.32, -1041.57], [-3119.35, -1042.69], [-3116.96, -1044.2], [-3117.24, -1046.57], [-3117.3, -1048.09], [-3117.77, -1050.62], [-3121.74, -1051.68], [-3121.63, -1054.82], [-3124.66, -1058.6], [-3123.36, -1061.07], [-3120.84, -1062.87], [-3117.53, -1066.64], [-3120.33, -1070.03], [-3121.16, -1073.69], [-3119.83, -1075.04], [-3115.78, -1075.56], [-3114.71, -1077.51], [-3112.3, -1076.33], [-3110.97, -1074.08], [-3109.33, -1074.72], [-3107.08, -1079.07], [-3103.06, -1080.42], [-3104.03, -1081.76], [-3103.22, -1082.77], [-3101.5, -1082.38], [-3101.18, -1083.61], [-3100.26, -1084.78], [-3099.03, -1085.63], [-3100.67, -1088.48], [-3100.32, -1090.3], [-3099.06, -1090.88], [-3096.6, -1090.76], [-3095.88, -1088.65], [-3094.49, -1090.72], [-3093.23, -1090.78], [-3091.26, -1088.4], [-3091.53, -1086.16], [-3088.29, -1082.4], [-3086.87, -1081.68], [-3088.66, -1077.84], [-3093.62, -1074.99], [-3097.69, -1074.46], [-3099.04, -1072.59], [-3098.51, -1070.82], [-3099.1, -1068.38], [-3090.36, -1066.07], [-3082.69, -1062.4], [-3080.66, -1062.21], [-3077.05, -1060.21], [-3076.97, -1058.98], [-3075.68, -1057.65], [-3075.91, -1055.99], [-3073.81, -1053.39], [-3074.64, -1050.89], [-3076.72, -1048.85], [-3076.56, -1046.75], [-3080.52, -1044.83], [-3088.6, -1043.05], [-3091.33, -1039.93], [-3091.26, -1038.93], [-3091.8, -1034.59], [-3092.77, -1034.18], [-3092.72, -1033.37], [-3094.64, -1033.19], [-3095.26, -1031.82], [-3092.16, -1031.25], [-3087.74, -1027.95], [-3087.69, -1027.41], [-3088.9, -1026.85], [-3088.5, -1026.27], [-3086.27, -1026.72], [-3083.8, -1024.77], [-3081.25, -1025.23], [-3078.16, -1027.32], [-3073.85, -1028.01], [-3072.23, -1029.29], [-3067.31, -1026.99], [-3064.02, -1028.4], [-3060.68, -1027.38], [-3056.33, -1028.71], [-3053.87, -1030.27], [-3051.63, -1029.19], [-3049.97, -1028.66], [-3049.59, -1027.68], [-3047.66, -1028.48], [-3046.89, -1030.49], [-3045.22, -1032.9], [-3042.66, -1033.73], [-3030.55, -1046.06], [-3031.22, -1047.56], [-3033.44, -1048.9], [-3033.27, -1052.18], [-3035.24, -1054.37], [-3037.93, -1056.24], [-3038.85, -1057.83], [-3037.76, -1058.62], [-3038.36, -1059.94], [-3037.27, -1061.26], [-3032.96, -1062.18], [-3028.46, -1058.39], [-3026.63, -1057.43], [-3024.64, -1057.88], [-3020.81, -1055.97], [-3016.22, -1051.93], [-3013.25, -1049.64], [-3013.21, -1044.92], [-3012.49, -1043.24], [-3013.03, -1041.77], [-3012.35, -1038.66], [-3014.1, -1037.85], [-3014.61, -1036.21], [-3014.59, -1034.42], [-3014.23, -1033.26], [-3014.34, -1032.23], [-3015.28, -1032.55], [-3015.91, -1030.33], [-3016.71, -1030.4], [-3017.03, -1028.66], [-3019.05, -1028.03], [-3020.1, -1026.53], [-3018.77, -1025.59], [-3018.91, -1022.92], [-3020.93, -1020.5], [-3019.13, -1019.5], [-3017.29, -1017.0], [-3016.63, -1013.95], [-3018.05, -1012.72], [-3019.91, -1012.9], [-3019.74, -1010.86], [-3018.01, -1007.28], [-3020.51, -1006.39], [-3019.72, -1000.69], [-3017.23, -999.24], [-3013.49, -1006.25], [-3011.71, -1007.45], [-3008.84, -1008.49], [-3008.03, -1010.39], [-3007.05, -1011.4], [-3005.82, -1011.05], [-3004.45, -1011.08], [-3002.99, -1009.07], [-3002.47, -1009.27], [-3001.94, -1012.45], [-3000.41, -1012.53], [-2997.9, -1014.91], [-2996.22, -1014.61], [-2995.3, -1013.53], [-2993.73, -1013.66], [-2991.88, -1012.62], [-2991.71, -1013.66], [-2991.5, -1017.18], [-2989.28, -1017.83], [-2989.37, -1020.1], [-2985.74, -1023.22], [-2981.62, -1021.96], [-2980.85, -1018.85], [-2981.5, -1017.15], [-2980.81, -1014.01], [-2979.14, -1011.08], [-2974.68, -1012.27], [-2970.95, -1008.26], [-2971.85, -1002.28], [-2976.95, -998.0], [-2981.35, -993.51], [-2980.68, -992.09], [-2977.07, -990.89], [-2973.0, -990.14], [-2970.25, -989.95], [-2970.02, -992.1], [-2968.51, -992.82], [-2968.87, -993.96], [-2967.31, -994.47], [-2964.73, -992.98], [-2963.55, -990.77], [-2959.64, -987.09], [-2959.2, -984.15], [-2958.41, -984.01], [-2956.81, -985.3], [-2953.9, -984.47], [-2952.62, -982.66], [-2949.45, -982.45], [-2948.48, -984.06], [-2948.44, -986.03], [-2949.08, -987.85], [-2948.08, -991.77], [-2947.73, -996.28], [-2947.17, -995.83], [-2946.03, -996.76], [-2945.12, -996.53], [-2944.61, -994.78], [-2944.73, -993.27], [-2943.11, -991.47], [-2943.13, -988.59], [-2945.13, -986.37], [-2945.25, -985.09], [-2943.21, -983.23], [-2944.07, -981.46], [-2943.12, -980.17], [-2943.51, -978.13], [-2942.06, -977.2], [-2937.73, -977.3], [-2935.53, -976.11], [-2934.84, -975.2], [-2933.81, -974.74], [-2932.9, -976.22], [-2929.93, -976.25], [-2927.2, -976.1], [-2926.99, -978.09], [-2926.74, -978.49], [-2925.94, -978.11], [-2926.37, -977.06], [-2925.38, -976.51], [-2924.98, -976.49], [-2924.49, -977.03], [-2924.04, -976.89], [-2924.62, -976.08], [-2924.92, -974.53], [-2923.77, -973.07], [-2923.2, -972.31], [-2922.43, -972.86], [-2921.22, -972.64], [-2920.26, -973.01], [-2918.49, -972.1], [-2917.98, -970.42], [-2915.95, -969.75], [-2914.12, -970.02], [-2913.22, -971.32], [-2912.18, -972.47], [-2910.1, -972.27], [-2909.64, -970.72], [-2907.56, -970.71], [-2906.47, -971.41], [-2904.16, -971.72], [-2903.54, -975.72], [-2902.55, -976.41], [-2903.73, -977.76], [-2900.85, -979.91], [-2897.67, -978.5], [-2893.62, -979.25], [-2891.32, -978.65], [-2891.26, -977.05], [-2890.39, -976.76], [-2886.18, -977.43], [-2885.92, -983.19], [-2885.14, -983.87], [-2882.77, -983.69], [-2880.08, -985.35], [-2876.93, -983.81], [-2875.06, -980.61], [-2875.58, -979.34], [-2876.28, -978.09], [-2875.02, -976.92], [-2875.17, -975.64], [-2873.11, -974.23], [-2873.98, -971.31], [-2874.48, -967.78], [-2872.98, -968.16], [-2871.97, -965.88], [-2870.24, -966.71], [-2867.76, -966.39], [-2866.3, -964.37], [-2863.72, -965.95], [-2864.73, -968.32], [-2864.33, -970.1], [-2861.56, -970.84], [-2858.75, -968.61], [-2856.55, -969.46], [-2856.57, -972.47], [-2854.86, -975.25], [-2853.58, -975.19], [-2853.47, -977.36], [-2851.22, -978.22], [-2849.21, -978.75], [-2845.5, -977.97], [-2844.9, -975.79], [-2845.85, -974.31], [-2847.68, -971.69], [-2846.29, -971.46], [-2844.35, -975.3], [-2841.56, -975.84], [-2842.76, -978.5], [-2844.99, -980.26], [-2843.36, -984.87], [-2847.58, -987.05], [-2847.89, -984.8], [-2847.59, -982.71], [-2850.46, -982.81], [-2852.48, -983.44], [-2854.7, -986.03], [-2854.12, -989.17], [-2851.06, -992.41], [-2847.94, -991.29], [-2844.5, -993.84], [-2841.09, -991.48], [-2841.37, -988.58], [-2840.45, -988.1], [-2839.21, -990.94], [-2837.5, -985.6], [-2836.17, -985.45], [-2835.77, -981.6], [-2838.03, -979.0], [-2837.18, -973.6], [-2835.25, -966.93], [-2837.29, -961.76], [-2836.93, -959.49], [-2838.4, -957.33], [-2842.09, -956.85], [-2842.08, -953.44], [-2836.83, -950.98], [-2833.62, -953.0], [-2830.44, -951.92], [-2827.58, -950.54], [-2825.96, -949.07], [-2824.24, -949.07], [-2822.29, -947.68], [-2820.25, -947.79], [-2817.09, -947.5], [-2816.13, -949.66], [-2814.63, -949.94], [-2807.56, -947.09], [-2794.47, -946.32], [-2794.6, -947.96], [-2794.46, -950.33], [-2793.54, -952.27], [-2790.68, -951.82], [-2787.16, -939.26], [-2784.05, -933.58], [-2779.9, -933.91], [-2776.32, -938.92], [-2772.7, -938.65], [-2771.63, -940.75], [-2769.0, -939.92], [-2767.04, -938.75], [-2760.95, -934.84], [-2759.26, -933.34], [-2757.15, -933.74], [-2754.14, -936.43], [-2750.05, -938.46], [-2748.18, -939.63], [-2744.28, -939.54], [-2738.8, -936.1], [-2737.74, -936.03], [-2736.63, -937.1], [-2736.23, -936.36], [-2734.61, -935.49], [-2733.2, -936.65], [-2732.29, -937.78], [-2730.71, -936.91], [-2728.87, -937.34], [-2728.58, -938.7], [-2726.73, -937.69], [-2724.87, -938.35], [-2725.07, -935.1], [-2727.42, -931.54], [-2722.83, -928.76], [-2722.51, -925.32], [-2724.26, -920.73], [-2721.85, -918.27], [-2722.88, -911.86], [-2717.24, -910.43], [-2712.19, -909.92], [-2708.23, -915.84], [-2706.69, -923.37], [-2706.11, -925.48], [-2705.95, -926.51], [-2705.05, -927.88], [-2704.14, -928.59], [-2701.46, -930.19], [-2698.44, -929.67], [-2696.25, -929.1], [-2694.26, -926.1], [-2695.16, -923.75], [-2694.71, -922.52], [-2697.89, -917.76], [-2697.94, -911.54], [-2703.41, -907.99], [-2704.4, -907.24], [-2702.2, -904.42], [-2699.37, -901.19], [-2699.41, -898.97], [-2698.29, -897.04], [-2696.28, -898.07], [-2695.27, -897.2], [-2693.49, -898.79], [-2690.9, -896.3], [-2690.31, -894.84], [-2682.55, -892.81], [-2677.4, -893.49], [-2674.32, -892.64], [-2673.76, -894.42], [-2672.68, -894.93], [-2670.69, -893.95], [-2668.11, -896.82], [-2667.3, -896.35], [-2665.1, -894.02], [-2664.59, -895.81], [-2669.5, -901.52], [-2676.32, -908.51], [-2681.91, -916.23], [-2679.58, -918.58], [-2677.46, -919.88], [-2675.08, -920.05], [-2674.11, -923.2], [-2672.53, -924.74], [-2671.87, -925.04], [-2671.35, -926.59], [-2670.41, -926.25], [-2668.73, -927.09], [-2667.74, -926.71], [-2667.61, -925.58], [-2667.92, -924.83], [-2667.2, -924.13], [-2664.35, -924.04], [-2663.26, -916.64], [-2658.1, -915.58], [-2659.78, -912.83], [-2655.89, -912.7], [-2655.39, -909.11], [-2657.5, -907.33], [-2656.44, -902.99], [-2653.41, -900.35], [-2652.01, -906.05], [-2646.35, -904.17], [-2645.55, -900.78], [-2639.37, -895.66], [-2640.78, -893.85], [-2647.62, -892.2], [-2651.76, -894.01], [-2655.04, -891.56], [-2653.21, -887.6], [-2653.82, -882.0], [-2652.19, -878.94], [-2630.75, -862.53], [-2622.21, -858.53], [-2621.36, -855.49], [-2617.23, -852.46], [-2616.6, -849.54], [-2610.54, -851.67], [-2607.03, -852.72], [-2603.0, -851.3], [-2602.6, -848.52], [-2598.7, -846.46]], "holes": []}}, {"shape": {"outer": [[56.76, -105.19], [56.08, -100.17], [58.78, -97.64], [59.88, -98.79], [59.25, -99.37], [60.98, -101.2], [56.76, -105.19]], "holes": []}}, {"shape": {"outer": [[-1662.99, -203.97], [-1663.86, -209.72], [-1665.1, -211.09], [-1665.78, -213.22], [-1665.75, -215.04], [-1665.23, -216.19], [-1664.2, -217.66], [-1662.93, -218.49], [-1662.4, -218.72], [-1662.52, -220.74], [-1662.54, -221.04], [-1661.6, -221.05], [-1661.4, -216.32], [-1662.32, -216.28], [-1662.96, -215.84], [-1663.46, -215.21], [-1663.79, -214.46], [-1663.79, -213.76], [-1663.54, -212.94], [-1663.05, -212.28], [-1662.22, -211.86], [-1656.97, -212.09], [-1656.63, -204.24], [-1662.99, -203.97]], "holes": []}}, {"shape": {"outer": [[-1662.52, -220.74], [-1695.19, -219.41], [-1695.18, -218.97], [-1694.95, -218.61], [-1694.55, -218.09], [-1693.89, -217.52], [-1693.76, -216.81], [-1693.84, -215.81], [-1694.13, -215.36], [-1694.91, -214.63], [-1695.43, -213.99], [-1696.02, -212.96], [-1696.15, -212.25], [-1696.24, -210.88], [-1696.25, -209.17], [-1695.98, -208.32], [-1695.63, -207.57], [-1694.78, -206.57], [-1693.86, -205.81], [-1692.81, -204.92], [-1691.74, -204.73], [-1675.26, -205.44], [-1675.18, -203.45], [-1662.99, -203.97], [-1663.86, -209.72], [-1665.1, -211.09], [-1665.78, -213.22], [-1665.75, -215.04], [-1665.23, -216.19], [-1664.2, -217.66], [-1662.93, -218.49], [-1662.4, -218.72], [-1662.52, -220.74]], "holes": []}}, {"shape": {"outer": [[-1612.4, -196.5], [-1612.51, -200.52], [-1612.81, -202.47], [-1613.08, -204.24], [-1613.33, -205.84], [-1613.57, -207.43], [-1615.08, -209.41], [-1616.71, -210.66], [-1619.47, -209.54], [-1622.11, -209.24], [-1623.37, -209.43], [-1625.71, -209.76], [-1627.87, -210.52], [-1629.37, -209.83], [-1630.08, -209.23], [-1631.94, -209.07], [-1633.73, -208.91], [-1635.13, -208.33], [-1635.54, -207.63], [-1637.93, -207.16], [-1640.45, -207.46], [-1642.95, -207.74], [-1644.52, -208.39], [-1645.8, -209.45], [-1646.83, -210.31], [-1648.34, -210.96], [-1649.9, -211.62], [-1650.37, -211.33], [-1650.07, -204.53], [-1631.23, -205.33], [-1631.33, -207.53], [-1614.76, -208.24], [-1614.39, -196.45], [-1612.4, -196.5]], "holes": []}}, {"shape": {"outer": [[-1612.4, -196.5], [-1605.8, -196.84], [-1606.96, -223.37], [-1646.74, -221.62], [-1646.53, -216.93], [-1645.09, -217.0], [-1644.52, -216.72], [-1644.02, -216.29], [-1643.71, -215.74], [-1643.73, -215.02], [-1643.73, -214.38], [-1643.75, -213.74], [-1644.07, -213.18], [-1644.53, -212.7], [-1645.14, -212.38], [-1650.41, -212.15], [-1650.37, -211.33], [-1649.9, -211.62], [-1648.34, -210.96], [-1646.83, -210.31], [-1645.8, -209.45], [-1644.52, -208.39], [-1642.95, -207.74], [-1640.45, -207.46], [-1637.93, -207.16], [-1635.54, -207.63], [-1635.13, -208.33], [-1633.73, -208.91], [-1631.94, -209.07], [-1630.08, -209.23], [-1629.37, -209.83], [-1627.87, -210.52], [-1625.71, -209.76], [-1623.37, -209.43], [-1622.11, -209.24], [-1619.47, -209.54], [-1616.71, -210.66], [-1615.08, -209.41], [-1613.57, -207.43], [-1613.33, -205.84], [-1613.08, -204.24], [-1612.81, -202.47], [-1612.51, -200.52], [-1612.4, -196.5]], "holes": []}}, {"shape": {"outer": [[-2415.09, -791.46], [-2381.78, -766.16], [-2381.0, -767.22], [-2372.88, -777.31], [-2371.12, -779.28], [-2413.26, -791.88], [-2415.09, -791.46]], "holes": []}}, {"shape": {"outer": [[604.37, -22.87], [606.16, -25.11], [618.27, -30.6], [622.33, -27.94], [618.02, -10.29], [617.43, -8.79], [615.46, -7.36], [613.16, -6.73], [611.66, -5.6], [610.8, -4.34], [608.7, -3.58], [607.65, -5.98], [606.73, -9.02], [606.57, -13.69], [606.9, -17.7], [606.0, -20.61], [604.37, -22.87]], "holes": []}}, {"shape": {"outer": [[597.37, -19.78], [600.39, -21.15], [601.54, -20.0], [602.18, -18.43], [602.66, -17.11], [602.58, -12.62], [602.62, -8.82], [600.76, -8.0], [597.37, -19.78]], "holes": []}}, {"shape": {"outer": [[602.76, -1.66], [603.71, 0.54], [605.95, 3.03], [608.02, 4.95], [610.22, 6.73], [614.07, 8.79], [617.68, 10.14], [617.98, 8.97], [613.68, 6.75], [610.87, 4.42], [608.3, 1.81], [606.64, -0.2], [605.43, -2.6], [602.76, -1.66]], "holes": []}}, {"shape": {"outer": [[622.95, 11.48], [632.54, 14.16], [633.46, 11.13], [630.8, 10.77], [628.25, 10.41], [625.81, 10.06], [624.02, 10.2], [623.24, 10.26], [622.95, 11.48]], "holes": []}}, {"shape": {"outer": [[641.0, 16.41], [652.1, 19.23], [668.53, 23.44], [676.66, 25.42], [682.61, 27.32], [683.35, 25.09], [641.76, 13.34], [641.0, 16.41]], "holes": []}}, {"shape": {"outer": [[690.42, 29.45], [696.48, 31.7], [701.3, 33.71], [703.9, 31.73], [703.91, 31.32], [700.24, 29.95], [695.11, 28.2], [691.2, 26.98], [690.42, 29.45]], "holes": []}}, {"shape": {"outer": [[-2543.14, -888.22], [-2544.31, -886.9], [-2527.13, -872.11], [-2525.97, -873.46], [-2543.14, -888.22]], "holes": []}}, {"shape": {"outer": [[-2538.41, -893.54], [-2537.65, -894.66], [-2520.15, -879.73], [-2521.62, -879.08], [-2538.41, -893.54]], "holes": []}}, {"shape": {"outer": [[-2454.67, -800.51], [-2458.9, -804.04], [-2458.99, -804.37], [-2456.42, -804.69], [-2454.87, -803.35], [-2454.12, -802.59], [-2453.73, -801.69], [-2454.02, -801.17], [-2454.67, -800.51]], "holes": []}}, {"shape": {"outer": [[-2463.21, -803.94], [-2462.02, -803.81], [-2460.11, -802.85], [-2458.79, -802.07], [-2457.95, -801.21], [-2457.77, -800.73], [-2461.34, -801.6], [-2477.66, -806.48], [-2480.41, -807.69], [-2482.53, -809.12], [-2483.15, -810.6], [-2482.9, -812.04], [-2481.86, -812.78], [-2479.14, -813.02], [-2478.17, -811.72], [-2475.35, -808.91], [-2471.67, -806.15], [-2468.54, -804.71], [-2465.59, -804.1], [-2463.21, -803.94]], "holes": []}}, {"shape": {"outer": [[-2440.24, -808.57], [-2414.87, -787.12], [-2413.58, -788.47], [-2437.68, -808.6], [-2438.49, -809.02], [-2439.53, -809.09], [-2440.24, -808.57]], "holes": []}}, {"shape": {"outer": [[-2413.17, -815.8], [-2431.18, -815.14], [-2436.26, -814.67], [-2439.26, -814.26], [-2439.42, -813.2], [-2432.86, -810.61], [-2414.22, -805.48], [-2413.47, -812.95], [-2413.17, -815.8]], "holes": []}}, {"shape": {"outer": [[-2413.47, -812.95], [-2402.02, -812.37], [-2394.92, -811.14], [-2391.4, -810.73], [-2389.5, -816.2], [-2400.63, -815.92], [-2413.17, -815.8], [-2413.47, -812.95]], "holes": []}}, {"shape": {"outer": [[-2313.36, -810.97], [-2311.25, -811.05], [-2311.28, -811.63], [-2311.3, -813.74], [-2302.48, -814.1], [-2302.02, -814.28], [-2301.6, -814.67], [-2301.48, -815.09], [-2301.75, -820.6], [-2320.41, -819.68], [-2320.14, -814.35], [-2319.96, -814.15], [-2319.73, -814.08], [-2313.5, -814.34], [-2313.36, -810.97]], "holes": []}}, {"shape": {"outer": [[-2292.8, -820.74], [-2292.39, -811.34], [-2276.23, -812.03], [-2276.39, -815.64], [-2273.62, -815.75], [-2273.87, -821.56], [-2292.8, -820.74]], "holes": []}}, {"shape": {"outer": [[-2211.44, -818.99], [-2211.63, -823.9], [-2169.17, -825.44], [-2167.99, -792.8], [-2170.14, -792.73], [-2171.8, -793.18], [-2172.64, -794.44], [-2172.89, -798.8], [-2173.19, -806.08], [-2171.84, -806.13], [-2172.02, -810.37], [-2172.99, -810.33], [-2173.31, -817.86], [-2176.59, -817.73], [-2176.72, -820.83], [-2192.08, -820.2], [-2192.05, -819.22], [-2198.5, -818.98], [-2198.36, -815.54], [-2208.62, -815.11], [-2208.78, -819.1], [-2211.44, -818.99]], "holes": []}}, {"shape": {"outer": [[-2414.22, -805.48], [-2410.71, -804.48], [-2394.47, -799.8], [-2182.2, -734.99], [-2173.9, -735.22], [-2166.45, -737.46], [-2167.44, -756.57], [-2188.27, -755.01], [-2200.01, -755.02], [-2201.17, -760.18], [-2209.96, -759.9], [-2210.04, -762.36], [-2221.48, -761.9], [-2226.89, -765.11], [-2231.62, -764.45], [-2237.13, -766.57], [-2239.39, -765.8], [-2240.54, -767.61], [-2243.95, -768.21], [-2243.94, -771.02], [-2240.44, -770.11], [-2238.7, -772.35], [-2238.77, -774.66], [-2272.89, -772.99], [-2326.16, -790.93], [-2326.96, -796.52], [-2349.59, -795.59], [-2391.4, -810.73], [-2394.92, -811.14], [-2402.02, -812.37], [-2413.47, -812.95], [-2414.22, -805.48]], "holes": []}}, {"shape": {"outer": [[750.1, 100.51], [751.44, 99.05], [759.73, 106.65], [760.57, 107.71], [759.27, 109.08], [750.1, 100.51]], "holes": []}}, {"shape": {"outer": [[713.28, 165.94], [711.92, 164.87], [719.33, 157.37], [732.48, 142.91], [748.14, 125.46], [759.41, 112.71], [760.69, 113.72], [759.84, 114.82], [736.6, 140.3], [717.69, 161.15], [713.28, 165.94]], "holes": []}}, {"shape": {"outer": [[738.0, 132.28], [738.77, 132.92], [711.69, 162.96], [707.26, 158.78], [707.07, 158.03], [707.6, 157.48], [708.45, 157.86], [711.87, 161.16], [738.0, 132.28]], "holes": []}}, {"shape": {"outer": [[-1764.72, -454.26], [-1764.47, -448.14], [-1805.21, -446.19], [-1801.57, -446.99], [-1787.73, -449.04], [-1780.78, -450.14], [-1774.89, -451.21], [-1764.72, -454.26]], "holes": []}}, {"shape": {"outer": [[551.21, 3.73], [551.44, 9.32], [555.71, 10.12], [552.91, 4.02], [551.21, 3.73]], "holes": []}}, {"shape": {"outer": [[513.25, -21.14], [516.23, -19.68], [541.32, -13.13], [541.48, -14.03], [540.71, -14.89], [539.22, -15.72], [514.11, -22.44], [513.25, -21.14]], "holes": []}}, {"shape": {"outer": [[519.22, -28.48], [515.52, -29.56], [510.13, -31.82], [507.63, -33.49], [505.79, -35.94], [506.51, -37.67], [509.12, -38.1], [512.32, -37.74], [516.16, -34.34], [519.43, -30.45], [519.89, -29.24], [519.22, -28.48]], "holes": []}}, {"shape": {"outer": [[500.54, -47.29], [502.99, -48.96], [504.4, -49.69], [505.93, -49.4], [506.67, -48.82], [510.01, -50.84], [509.61, -51.84], [510.01, -52.44], [517.01, -56.32], [518.52, -56.01], [533.38, -29.01], [535.14, -27.01], [535.12, -23.27], [534.37, -22.61], [526.98, -24.65], [526.09, -26.36], [524.45, -31.01], [522.05, -35.89], [520.27, -40.6], [518.04, -44.04], [515.89, -45.91], [510.39, -45.59], [507.76, -43.85], [503.0, -44.46], [499.03, -45.13], [495.58, -47.79], [490.47, -55.74], [487.08, -58.82], [488.17, -60.74], [489.12, -61.54], [490.01, -61.89], [491.02, -61.76], [500.54, -47.29]], "holes": []}}, {"shape": {"outer": [[503.0, -44.46], [499.03, -45.13], [495.58, -47.79], [490.47, -55.74], [487.08, -58.82], [486.57, -57.8], [485.61, -55.41], [484.9, -51.62], [496.02, -40.84], [498.73, -41.69], [501.8, -42.29], [505.03, -42.5], [508.98, -41.91], [514.67, -40.31], [518.66, -37.18], [521.3, -33.82], [523.99, -30.04], [526.09, -26.36], [524.45, -31.01], [522.05, -35.89], [520.27, -40.6], [518.04, -44.04], [515.89, -45.91], [510.39, -45.59], [507.76, -43.85], [503.0, -44.46]], "holes": []}}, {"shape": {"outer": [[694.59, 480.96], [693.42, 480.18], [689.88, 476.98], [702.9, 462.54], [683.96, 445.57], [687.86, 441.3], [711.33, 462.41], [694.59, 480.96]], "holes": []}}, {"shape": {"outer": [[1181.86, 695.1], [1183.6, 695.05], [1185.41, 694.35], [1187.46, 693.14], [1188.84, 691.33], [1188.55, 688.73], [1188.0, 686.58], [1186.83, 684.97], [1184.85, 684.06], [1182.36, 684.43], [1180.3, 685.34], [1179.19, 685.95], [1178.51, 687.82], [1178.18, 690.45], [1178.64, 692.44], [1179.82, 694.33], [1181.86, 695.1]], "holes": []}}, {"shape": {"outer": [[1141.85, 617.98], [1177.92, 650.6], [1181.55, 654.32], [1185.69, 660.07], [1188.68, 665.9], [1190.47, 671.26], [1191.31, 674.53], [1190.76, 676.07], [1187.87, 675.7], [1183.86, 675.7], [1178.82, 675.61], [1172.77, 675.76], [1165.11, 675.43], [1157.85, 673.99], [1151.44, 671.66], [1145.5, 668.74], [1140.27, 664.55], [1136.14, 660.33], [1133.38, 656.21], [1131.22, 651.46], [1130.66, 647.71], [1131.28, 644.29], [1132.47, 642.21], [1134.16, 641.46], [1135.71, 640.99], [1136.48, 641.16], [1136.85, 642.03], [1137.18, 643.87], [1137.06, 644.73], [1136.48, 645.17], [1135.82, 646.14], [1135.54, 648.23], [1136.34, 649.5], [1138.19, 650.33], [1139.57, 650.94], [1140.42, 650.78], [1140.66, 650.37], [1140.66, 649.44], [1139.93, 647.56], [1139.07, 644.47], [1138.99, 641.66], [1138.3, 640.1], [1136.47, 638.93], [1134.04, 639.25], [1132.38, 640.01], [1130.91, 641.12], [1129.36, 643.94], [1128.93, 646.88], [1129.16, 649.82], [1129.83, 653.53], [1132.78, 659.15], [1136.9, 664.19], [1142.61, 669.02], [1147.82, 672.26], [1157.64, 675.75], [1165.29, 677.47], [1168.25, 677.67], [1171.22, 677.86], [1172.24, 678.47], [1172.82, 679.58], [1173.35, 681.86], [1173.38, 684.08], [1173.01, 686.11], [1172.22, 688.81], [1171.41, 692.24], [1171.44, 696.08], [1172.16, 700.63], [1174.38, 705.58], [1178.89, 710.69], [1184.24, 713.95], [1191.52, 715.69], [1196.29, 716.75], [1204.11, 720.69], [1207.0, 722.95], [1206.53, 723.58], [1207.96, 724.67], [1208.48, 724.16], [1210.85, 726.24], [1214.22, 730.24], [1216.85, 734.54], [1218.72, 739.0], [1220.23, 743.91], [1222.06, 750.18], [1218.2, 751.88], [1220.4, 756.88], [1224.08, 755.58], [1226.62, 760.3], [1231.21, 766.64], [1234.09, 769.82], [1233.38, 770.53], [1234.69, 771.85], [1235.34, 771.38], [1242.13, 777.96], [1241.62, 778.51], [1162.08, 706.26], [1169.3, 698.24], [1155.14, 684.31], [1139.74, 669.85], [1115.57, 647.1], [1141.85, 617.98]], "holes": []}}, {"shape": {"outer": [[1222.74, 745.86], [1222.98, 745.95], [1223.23, 745.9], [1224.94, 740.28], [1228.08, 734.55], [1229.69, 731.25], [1230.5, 729.01], [1231.43, 724.49], [1231.36, 721.2], [1231.27, 719.43], [1231.19, 718.4], [1230.99, 717.94], [1230.79, 717.62], [1230.45, 717.27], [1229.97, 717.15], [1228.58, 716.72], [1225.59, 716.29], [1222.01, 715.59], [1218.3, 714.52], [1216.22, 713.77], [1215.29, 713.58], [1214.3, 713.53], [1212.63, 713.74], [1208.5, 714.24], [1208.53, 715.11], [1205.31, 715.54], [1205.18, 714.7], [1200.25, 715.27], [1199.93, 715.59], [1199.73, 716.1], [1200.01, 716.6], [1201.08, 717.01], [1204.32, 718.78], [1208.78, 721.64], [1213.52, 726.46], [1217.33, 731.49], [1219.02, 734.74], [1221.07, 740.28], [1222.74, 745.86]], "holes": []}}, {"shape": {"outer": [[1247.97, 720.03], [1246.85, 722.77], [1254.93, 726.07], [1253.32, 727.79], [1250.46, 729.97], [1248.1, 731.26], [1244.55, 732.51], [1241.75, 732.86], [1239.77, 732.82], [1239.65, 731.8], [1237.67, 731.96], [1237.77, 732.91], [1236.22, 732.95], [1234.17, 733.3], [1232.22, 734.12], [1231.01, 734.6], [1230.72, 734.58], [1230.53, 734.42], [1230.59, 734.09], [1230.83, 733.58], [1231.59, 731.67], [1232.64, 728.61], [1233.25, 726.12], [1233.36, 723.43], [1233.32, 721.24], [1232.95, 718.56], [1233.18, 718.17], [1233.58, 717.82], [1234.23, 717.66], [1235.33, 717.61], [1238.9, 717.93], [1243.84, 718.78], [1247.97, 720.03]], "holes": []}}, {"shape": {"outer": [[1255.63, 727.88], [1255.53, 728.09], [1255.7, 728.35], [1256.04, 728.3], [1257.22, 727.3], [1257.66, 727.15], [1259.58, 729.54], [1260.79, 731.9], [1261.42, 734.09], [1261.61, 735.38], [1261.69, 736.47], [1261.86, 736.69], [1262.15, 736.67], [1262.4, 736.43], [1262.61, 736.03], [1262.69, 735.48], [1262.69, 733.15], [1262.57, 730.76], [1261.82, 730.73], [1261.73, 729.08], [1262.24, 728.58], [1261.88, 726.94], [1261.04, 725.81], [1259.88, 725.09], [1258.79, 724.67], [1258.02, 724.61], [1257.63, 724.83], [1257.54, 725.13], [1256.99, 726.12], [1255.63, 727.88]], "holes": []}}, {"shape": {"outer": [[1265.96, 751.62], [1265.76, 751.77], [1264.62, 750.79], [1263.01, 749.17], [1262.52, 748.56], [1264.21, 747.12], [1262.75, 745.32], [1261.96, 743.88], [1261.65, 742.16], [1261.63, 740.17], [1261.74, 739.28], [1262.73, 739.34], [1263.99, 739.84], [1264.83, 741.15], [1265.29, 743.01], [1265.98, 746.17], [1265.17, 746.19], [1265.26, 748.12], [1266.18, 748.1], [1265.96, 751.62]], "holes": []}}, {"shape": {"outer": [[1269.7, 747.51], [1269.05, 747.54], [1268.6, 747.08], [1268.55, 746.02], [1268.3, 743.83], [1267.63, 741.59], [1268.55, 741.36], [1268.16, 739.72], [1267.05, 740.0], [1266.6, 738.99], [1265.99, 737.3], [1265.38, 735.7], [1265.04, 733.46], [1265.04, 732.34], [1265.9, 732.39], [1265.81, 730.55], [1265.13, 730.54], [1265.19, 730.17], [1265.67, 729.86], [1266.48, 729.78], [1267.18, 730.01], [1277.47, 739.08], [1269.7, 747.51]], "holes": []}}, {"shape": {"outer": [[1258.04, 760.57], [1257.32, 760.05], [1258.41, 758.89], [1259.15, 759.36], [1259.7, 758.66], [1259.73, 758.04], [1259.31, 757.72], [1257.18, 757.33], [1253.8, 756.03], [1251.97, 754.76], [1250.25, 753.24], [1248.83, 751.22], [1247.24, 747.99], [1246.29, 744.55], [1245.95, 741.6], [1245.47, 739.17], [1244.9, 737.71], [1244.04, 736.68], [1243.24, 735.74], [1241.28, 735.0], [1238.14, 734.87], [1235.53, 735.05], [1233.41, 735.64], [1230.61, 736.93], [1228.58, 738.79], [1227.24, 740.51], [1226.05, 742.62], [1225.12, 745.98], [1225.45, 750.15], [1226.45, 754.22], [1228.05, 757.41], [1230.9, 761.14], [1234.15, 765.15], [1238.07, 769.34], [1241.6, 772.7], [1244.57, 775.31], [1258.04, 760.57]], "holes": []}}, {"shape": {"outer": [[1251.97, 731.27], [1249.3, 732.79], [1246.94, 733.76], [1246.07, 734.53], [1245.87, 735.41], [1246.21, 735.92], [1246.8, 736.79], [1247.29, 739.05], [1247.66, 740.73], [1248.48, 740.46], [1249.2, 743.86], [1248.33, 744.06], [1248.89, 746.8], [1249.93, 749.36], [1250.87, 751.07], [1251.8, 752.24], [1252.61, 751.55], [1253.95, 752.96], [1253.52, 753.74], [1254.45, 754.18], [1256.95, 755.16], [1259.93, 755.82], [1262.07, 756.02], [1264.18, 753.67], [1260.59, 750.19], [1258.86, 751.69], [1257.7, 750.4], [1256.15, 747.95], [1255.04, 745.44], [1254.65, 743.36], [1254.45, 740.95], [1254.6, 738.72], [1254.59, 736.86], [1254.37, 734.94], [1253.61, 733.15], [1251.97, 731.27]], "holes": []}}, {"shape": {"outer": [[1296.47, 720.36], [1297.24, 721.93], [1295.62, 724.08], [1294.37, 722.82], [1296.47, 720.36]], "holes": []}}, {"shape": {"outer": [[1288.81, 731.88], [1287.2, 731.11], [1280.89, 737.58], [1283.45, 737.62], [1288.81, 731.88]], "holes": []}}, {"shape": {"outer": [[1243.41, 778.92], [1243.78, 781.42], [1240.43, 785.39], [1239.91, 785.51], [1238.44, 784.37], [1243.41, 778.92]], "holes": []}}, {"shape": {"outer": [[1255.47, 789.92], [1252.95, 789.7], [1249.18, 793.76], [1249.31, 794.61], [1250.52, 795.36], [1255.47, 789.92]], "holes": []}}, {"shape": {"outer": [[1297.76, 740.78], [1299.08, 741.84], [1293.0, 748.32], [1292.86, 745.71], [1297.76, 740.78]], "holes": []}}, {"shape": {"outer": [[-2820.93, -1085.37], [-2820.93, -1085.8], [-2820.94, -1087.06], [-2817.72, -1087.13], [-2817.73, -1090.34], [-2818.0, -1090.33], [-2818.02, -1090.9], [-2818.02, -1091.5], [-2818.0, -1092.16], [-2817.92, -1092.91], [-2817.8, -1093.66], [-2816.2, -1093.57], [-2816.39, -1093.0], [-2816.49, -1092.42], [-2816.55, -1091.76], [-2816.55, -1091.11], [-2816.51, -1090.49], [-2816.4, -1089.88], [-2816.62, -1089.87], [-2816.47, -1087.54], [-2816.16, -1087.55], [-2816.15, -1087.25], [-2816.11, -1086.94], [-2816.05, -1086.64], [-2815.94, -1086.35], [-2816.68, -1086.08], [-2816.69, -1085.49], [-2820.93, -1085.37]], "holes": []}}, {"shape": {"outer": [[-2813.77, -1106.42], [-2809.58, -1102.69], [-2810.05, -1102.29], [-2809.95, -1101.75], [-2810.33, -1101.6], [-2810.74, -1101.41], [-2811.13, -1101.13], [-2811.44, -1100.84], [-2811.68, -1100.47], [-2811.91, -1100.71], [-2813.78, -1098.89], [-2813.57, -1098.65], [-2814.05, -1098.22], [-2814.48, -1097.74], [-2814.84, -1097.3], [-2815.17, -1096.75], [-2815.44, -1096.23], [-2816.7, -1097.15], [-2816.36, -1097.85], [-2815.89, -1098.59], [-2815.3, -1099.29], [-2815.09, -1099.06], [-2812.39, -1102.09], [-2814.64, -1104.2], [-2814.02, -1104.81], [-2814.66, -1105.5], [-2813.77, -1106.42]], "holes": []}}, {"shape": {"outer": [[-2813.51, -1086.41], [-2811.0, -1087.58], [-2811.27, -1088.38], [-2811.44, -1089.22], [-2811.53, -1090.14], [-2811.49, -1091.22], [-2811.33, -1092.43], [-2811.01, -1093.52], [-2810.37, -1094.8], [-2809.58, -1095.73], [-2808.48, -1096.73], [-2807.35, -1097.45], [-2808.67, -1099.92], [-2809.51, -1099.55], [-2810.32, -1099.06], [-2811.15, -1098.43], [-2811.73, -1097.83], [-2812.28, -1097.11], [-2812.76, -1096.42], [-2813.29, -1095.53], [-2813.72, -1094.59], [-2814.05, -1093.63], [-2814.27, -1092.64], [-2814.45, -1091.55], [-2814.47, -1090.55], [-2814.43, -1089.47], [-2814.28, -1088.37], [-2813.97, -1087.29], [-2813.51, -1086.41]], "holes": []}}, {"shape": {"outer": [[-2802.52, -1078.87], [-2797.09, -1081.49], [-2793.72, -1082.77], [-2794.26, -1083.65], [-2794.88, -1084.6], [-2795.76, -1085.84], [-2796.52, -1086.72], [-2797.21, -1087.31], [-2797.33, -1086.84], [-2797.74, -1086.05], [-2798.21, -1085.45], [-2798.8, -1084.84], [-2799.46, -1084.34], [-2800.12, -1083.9], [-2800.74, -1083.56], [-2801.4, -1083.26], [-2802.0, -1083.07], [-2802.67, -1082.72], [-2802.93, -1082.2], [-2802.98, -1081.47], [-2802.94, -1080.46], [-2802.52, -1078.87]], "holes": []}}, {"shape": {"outer": [[-2819.45, -1080.97], [-2819.58, -1083.51], [-2810.75, -1083.58], [-2808.55, -1083.19], [-2807.04, -1082.66], [-2806.45, -1082.32], [-2805.89, -1081.76], [-2805.45, -1080.96], [-2805.13, -1080.09], [-2804.97, -1078.47], [-2805.67, -1078.48], [-2806.48, -1078.72], [-2807.34, -1079.03], [-2809.32, -1079.62], [-2811.65, -1080.17], [-2814.89, -1080.57], [-2819.45, -1080.97]], "holes": []}}, {"shape": {"outer": [[-2872.4, -1082.32], [-2872.42, -1079.72], [-2885.77, -1079.41], [-2891.25, -1079.86], [-2894.05, -1080.49], [-2897.49, -1081.56], [-2900.35, -1082.58], [-2905.88, -1085.33], [-2908.16, -1086.86], [-2909.37, -1087.9], [-2909.81, -1088.54], [-2908.28, -1090.39], [-2906.43, -1088.83], [-2904.25, -1087.21], [-2901.21, -1085.69], [-2898.15, -1084.34], [-2894.4, -1083.14], [-2890.78, -1082.33], [-2886.09, -1081.97], [-2872.4, -1082.32]], "holes": []}}, {"shape": {"outer": [[-2911.02, -1096.07], [-2909.27, -1094.48], [-2908.09, -1095.14], [-2906.99, -1096.27], [-2906.06, -1097.28], [-2905.94, -1097.63], [-2905.78, -1098.64], [-2907.68, -1099.2], [-2908.57, -1099.24], [-2909.32, -1099.03], [-2910.03, -1098.61], [-2910.59, -1097.77], [-2911.02, -1096.07]], "holes": []}}, {"shape": {"outer": [[-2896.94, -1103.04], [-2905.54, -1092.58], [-2905.77, -1091.46], [-2905.2, -1090.01], [-2904.12, -1088.98], [-2902.38, -1087.64], [-2901.42, -1087.64], [-2900.31, -1088.46], [-2898.98, -1088.81], [-2897.59, -1088.79], [-2896.52, -1088.37], [-2895.09, -1090.02], [-2898.21, -1092.43], [-2896.77, -1094.25], [-2899.14, -1096.19], [-2894.95, -1101.43], [-2896.94, -1103.04]], "holes": []}}, {"shape": {"outer": [[-2887.63, -1084.12], [-2883.7, -1084.12], [-2886.25, -1086.02], [-2887.63, -1084.12]], "holes": []}}, {"shape": {"outer": [[-2883.09, -1084.89], [-2882.64, -1084.65], [-2881.9, -1084.61], [-2881.11, -1084.71], [-2880.48, -1085.01], [-2879.89, -1085.59], [-2879.68, -1086.24], [-2879.68, -1086.98], [-2879.81, -1087.67], [-2880.03, -1088.18], [-2880.28, -1088.45], [-2883.09, -1084.89]], "holes": []}}, {"shape": {"outer": [[-2877.86, -1084.27], [-2877.45, -1083.7], [-2872.23, -1083.91], [-2871.56, -1084.38], [-2871.5, -1086.07], [-2874.8, -1085.99], [-2875.92, -1086.82], [-2877.86, -1084.27]], "holes": []}}, {"shape": {"outer": [[-2859.42, -1086.29], [-2859.4, -1084.68], [-2856.1, -1084.71], [-2856.13, -1086.33], [-2859.42, -1086.29]], "holes": []}}, {"shape": {"outer": [[-2843.67, -1086.53], [-2843.62, -1084.62], [-2841.12, -1084.69], [-2841.18, -1086.6], [-2843.67, -1086.53]], "holes": []}}, {"shape": {"outer": [[-2834.22, -1086.69], [-2834.15, -1084.94], [-2832.14, -1084.97], [-2831.95, -1085.44], [-2832.0, -1086.72], [-2834.22, -1086.69]], "holes": []}}, {"shape": {"outer": [[-242.34, 491.36], [-246.86, 487.13], [-242.37, 487.27], [-240.33, 489.12], [-242.34, 491.36]], "holes": []}}, {"shape": {"outer": [[-255.21, 479.49], [-261.04, 473.71], [-259.86, 471.61], [-259.1, 471.28], [-253.83, 476.46], [-253.49, 477.08], [-253.6, 477.79], [-255.21, 479.49]], "holes": []}}, {"shape": {"outer": [[-263.3, 471.81], [-266.52, 468.88], [-265.31, 467.85], [-264.46, 467.76], [-263.04, 467.8], [-260.94, 469.6], [-263.3, 471.81]], "holes": []}}, {"shape": {"outer": [[-271.96, 463.67], [-271.12, 462.59], [-270.93, 461.88], [-271.06, 460.84], [-271.64, 459.86], [-283.19, 449.96], [-284.26, 452.71], [-271.96, 463.67]], "holes": []}}, {"shape": {"outer": [[-288.53, 444.81], [-287.37, 445.78], [-287.37, 447.09], [-288.6, 449.03], [-306.25, 433.65], [-304.06, 430.92], [-288.53, 444.81]], "holes": []}}, {"shape": {"outer": [[-925.23, -327.64], [-928.01, -328.17], [-928.07, -329.21], [-927.57, -330.88], [-926.42, -333.71], [-925.05, -336.17], [-924.09, -337.5], [-922.46, -337.54], [-922.19, -337.28], [-922.13, -336.91], [-925.23, -327.64]], "holes": []}}, {"shape": {"outer": [[-904.04, -363.3], [-904.06, -363.78], [-904.33, -364.15], [-905.04, -364.14], [-922.15, -345.16], [-921.37, -344.25], [-904.04, -363.3]], "holes": []}}, {"shape": {"outer": [[-897.43, -345.65], [-890.28, -353.56], [-889.95, -353.27], [-896.77, -345.71], [-897.12, -345.38], [-897.43, -345.65]], "holes": []}}, {"shape": {"outer": [[-874.7, -350.34], [-873.95, -350.97], [-883.31, -357.97], [-883.45, -357.81], [-874.7, -350.34]], "holes": []}}, {"shape": {"outer": [[-869.66, -347.39], [-859.45, -338.05], [-862.39, -334.79], [-872.58, -343.9], [-869.66, -347.39]], "holes": []}}, {"shape": {"outer": [[-909.96, -285.96], [-909.11, -286.02], [-908.52, -276.77], [-909.36, -276.71], [-909.96, -285.96]], "holes": []}}, {"shape": {"outer": [[-908.0, -273.32], [-907.47, -273.87], [-901.9, -268.53], [-902.43, -267.98], [-908.0, -273.32]], "holes": []}}, {"shape": {"outer": [[-900.12, -265.64], [-899.51, -266.25], [-894.97, -261.75], [-894.02, -260.84], [-894.59, -260.26], [-900.12, -265.64]], "holes": []}}, {"shape": {"outer": [[-886.54, -257.01], [-885.61, -256.19], [-887.54, -254.12], [-889.01, -255.58], [-887.75, -258.11], [-886.54, -257.01]], "holes": []}}, {"shape": {"outer": [[-852.44, -227.06], [-852.85, -226.59], [-850.26, -224.36], [-849.39, -222.98], [-849.38, -221.54], [-845.63, -218.32], [-845.07, -218.97], [-845.68, -219.5], [-844.76, -220.56], [-852.44, -227.06]], "holes": []}}, {"shape": {"outer": [[-832.44, -205.38], [-831.87, -206.09], [-828.3, -203.22], [-828.88, -202.52], [-832.44, -205.38]], "holes": []}}, {"shape": {"outer": [[-838.15, -209.89], [-837.57, -210.59], [-834.01, -207.73], [-834.58, -207.02], [-838.15, -209.89]], "holes": []}}, {"shape": {"outer": [[-843.95, -214.74], [-843.38, -215.45], [-839.82, -212.58], [-840.38, -211.88], [-843.95, -214.74]], "holes": []}}, {"shape": {"outer": [[-1088.32, -318.4], [-1084.96, -318.52], [-1084.77, -313.47], [-1088.11, -313.35], [-1088.32, -318.4]], "holes": []}}, {"shape": {"outer": [[-1091.91, -316.33], [-1091.78, -313.23], [-1095.46, -313.17], [-1096.15, -313.23], [-1096.97, -313.49], [-1097.61, -313.92], [-1097.93, -319.85], [-1097.42, -320.73], [-1096.71, -321.43], [-1085.06, -321.96], [-1084.98, -320.23], [-1088.32, -320.08], [-1088.33, -320.32], [-1094.17, -320.07], [-1094.0, -316.24], [-1091.91, -316.33]], "holes": []}}, {"shape": {"outer": [[-1118.47, -320.84], [-1110.55, -321.21], [-1109.99, -321.06], [-1109.78, -320.7], [-1109.56, -319.28], [-1109.47, -317.83], [-1109.37, -316.69], [-1109.2, -315.68], [-1108.97, -314.79], [-1108.67, -313.81], [-1118.1, -313.55], [-1118.47, -320.84]], "holes": []}}, {"shape": {"outer": [[253.47, -250.38], [252.67, -249.51], [303.5, -203.11], [304.31, -203.98], [253.47, -250.38]], "holes": []}}, {"shape": {"outer": [[63.77, -353.16], [60.02, -356.61], [65.8, -362.87], [61.14, -367.15], [72.93, -380.28], [63.42, -388.86], [64.68, -390.24], [63.09, -391.69], [68.26, -394.73], [70.06, -393.06], [69.34, -392.29], [68.27, -391.2], [81.48, -379.08], [83.89, -376.86], [83.52, -376.46], [82.7, -375.67], [84.32, -374.23], [66.04, -354.51], [65.5, -355.02], [63.77, -353.16]], "holes": []}}, {"shape": {"outer": [[53.97, -345.67], [55.47, -347.33], [57.07, -345.92], [55.57, -344.25], [53.97, -345.67]], "holes": []}}, {"shape": {"outer": [[10.19, -337.96], [13.99, -342.15], [27.04, -330.39], [29.94, -333.57], [34.17, -329.78], [39.29, -335.45], [35.77, -338.59], [37.12, -340.08], [41.59, -336.07], [45.52, -340.43], [47.13, -338.99], [41.9, -333.2], [39.76, -330.83], [39.01, -328.94], [39.27, -327.26], [40.34, -326.08], [38.91, -324.79], [34.69, -321.0], [33.13, -320.28], [31.62, -320.01], [30.02, -320.17], [28.96, -321.12], [27.79, -322.17], [10.19, -337.96]], "holes": []}}, {"shape": {"outer": [[-116.85, -318.01], [-116.64, -314.67], [-114.29, -312.46], [-108.14, -318.38], [-110.94, -318.26], [-116.85, -318.01]], "holes": []}}, {"shape": {"outer": [[824.67, 128.63], [827.8, 132.09], [828.86, 131.85], [829.12, 131.66], [829.25, 131.39], [829.29, 131.11], [829.25, 130.72], [828.72, 129.46], [824.67, 128.63]], "holes": []}}, {"shape": {"outer": [[794.37, 104.49], [794.6, 105.28], [795.24, 106.16], [796.32, 107.48], [822.46, 130.56], [823.52, 131.27], [825.23, 131.92], [824.35, 130.78], [811.83, 119.35], [796.65, 106.16], [794.37, 104.49]], "holes": []}}, {"shape": {"outer": [[801.03, 124.45], [801.97, 123.26], [788.16, 112.28], [786.89, 113.99], [787.68, 114.95], [788.73, 115.93], [790.59, 117.54], [801.03, 124.45]], "holes": []}}, {"shape": {"outer": [[256.45, 213.23], [255.85, 213.89], [255.28, 214.49], [252.03, 212.21], [248.91, 209.59], [242.52, 204.06], [239.22, 201.04], [235.76, 197.69], [232.74, 194.55], [232.01, 193.77], [231.51, 192.84], [230.32, 190.2], [228.83, 187.35], [228.0, 186.46], [222.8, 181.9], [212.82, 173.17], [213.85, 172.05], [214.91, 170.88], [224.83, 179.97], [234.28, 188.46], [236.66, 190.99], [237.9, 192.97], [239.67, 196.41], [241.01, 198.54], [242.1, 199.81], [244.53, 202.04], [246.92, 204.28], [251.78, 208.62], [254.34, 210.94], [256.45, 213.23]], "holes": []}}, {"shape": {"outer": [[478.06, 416.87], [479.24, 415.59], [452.87, 391.77], [448.78, 387.75], [446.73, 385.67], [444.81, 383.47], [442.31, 380.76], [436.02, 373.03], [433.79, 370.34], [431.37, 367.7], [428.75, 365.27], [421.02, 357.95], [415.26, 352.7], [408.38, 346.28], [396.47, 334.87], [390.56, 329.38], [381.45, 320.99], [374.62, 314.79], [364.71, 305.37], [361.6, 302.08], [359.93, 300.54], [358.7, 301.97], [359.86, 303.01], [363.63, 306.49], [373.45, 315.77], [380.55, 322.34], [389.48, 330.44], [395.41, 335.93], [407.5, 347.44], [413.63, 353.02], [420.11, 359.15], [427.48, 366.21], [430.29, 368.77], [432.47, 371.23], [435.18, 374.44], [441.37, 381.67], [443.62, 384.61], [445.21, 386.65], [448.0, 389.4], [451.59, 392.78], [478.06, 416.87]], "holes": []}}, {"shape": {"outer": [[-38.4, -382.24], [8.41, -339.69], [12.17, -343.8], [-27.4, -379.51], [-29.05, -377.7], [-31.56, -379.96], [-33.07, -378.3], [-37.97, -382.71], [-38.4, -382.24]], "holes": []}}, {"shape": {"outer": [[-1849.87, -204.88], [-1849.91, -206.62], [-1846.92, -206.7], [-1846.87, -204.95], [-1849.87, -204.88]], "holes": []}}, {"shape": {"outer": [[-1850.07, -210.02], [-1850.11, -211.76], [-1847.11, -211.84], [-1847.06, -210.09], [-1850.07, -210.02]], "holes": []}}, {"shape": {"outer": [[-2121.75, -318.22], [-2119.25, -316.03], [-2117.29, -314.78], [-2028.56, -359.01], [-2032.03, -365.93], [-2117.84, -323.56], [-2121.75, -318.22]], "holes": []}}, {"shape": {"outer": [[-2027.38, -368.24], [-2026.74, -366.93], [-2025.17, -367.7], [-2024.47, -366.29], [-2026.09, -365.49], [-2024.1, -361.44], [-2023.4, -360.63], [-2017.37, -363.55], [-2016.68, -364.34], [-2016.72, -371.78], [-2020.18, -371.76], [-2027.38, -368.24]], "holes": []}}, {"shape": {"outer": [[-2016.15, -354.78], [-2016.1, -350.86], [-2018.24, -350.04], [-2021.04, -355.12], [-2020.85, -355.97], [-2019.11, -357.13], [-2018.56, -357.14], [-2018.05, -354.79], [-2016.15, -354.78]], "holes": []}}, {"shape": {"outer": [[25.11, -425.93], [29.06, -430.21], [51.13, -409.99], [50.41, -409.2], [49.37, -408.05], [52.66, -405.02], [53.36, -404.38], [51.46, -402.33], [25.11, -425.93]], "holes": []}}, {"shape": {"outer": [[57.17, -400.41], [61.77, -396.03], [63.48, -397.82], [58.88, -402.19], [57.17, -400.41]], "holes": []}}, {"shape": {"outer": [[13.92, -442.08], [14.6, -442.42], [15.4, -442.41], [19.29, -438.96], [18.48, -438.04], [13.92, -442.08]], "holes": []}}, {"shape": {"outer": [[58.17, -350.28], [59.67, -351.94], [61.27, -350.53], [59.76, -348.86], [58.17, -350.28]], "holes": []}}, {"shape": {"outer": [[11.19, -468.2], [11.6, -469.58], [22.22, -460.2], [20.61, -459.15], [13.37, -465.88], [13.14, -466.3], [12.74, -466.71], [11.19, -468.2]], "holes": []}}, {"shape": {"outer": [[-22.82, -500.67], [-22.98, -498.86], [-15.88, -492.23], [-13.68, -492.37], [-22.82, -500.67]], "holes": []}}, {"shape": {"outer": [[-261.05, -970.93], [-256.58, -968.42], [-252.83, -964.0], [-249.64, -957.23], [-241.95, -937.23], [-192.48, -849.81], [-190.19, -845.1], [-191.15, -844.53], [-212.39, -875.89], [-236.12, -916.58], [-245.76, -934.25], [-253.21, -948.06], [-263.91, -969.84], [-261.05, -970.93]], "holes": []}}, {"shape": {"outer": [[-279.39, -960.35], [-271.69, -965.81], [-266.38, -954.83], [-273.43, -958.58], [-279.39, -960.35]], "holes": []}}, {"shape": {"outer": [[-501.99, -1079.22], [-486.39, -1066.02], [-467.22, -1046.41], [-449.4, -1030.62], [-429.98, -1016.86], [-411.83, -1006.21], [-386.31, -994.08], [-361.33, -983.96], [-338.35, -978.13], [-319.9, -975.91], [-299.21, -974.67], [-295.2, -966.12], [-300.33, -965.24], [-311.6, -966.82], [-343.47, -972.95], [-359.3, -976.74], [-388.67, -986.78], [-412.06, -997.78], [-433.62, -1010.33], [-452.4, -1024.08], [-472.34, -1042.14], [-486.94, -1057.58], [-496.77, -1069.42], [-503.03, -1078.24], [-501.99, -1079.22]], "holes": []}}, {"shape": {"outer": [[-542.57, -1148.0], [-540.96, -1148.91], [-546.45, -1159.84], [-552.35, -1175.54], [-560.52, -1191.9], [-569.19, -1208.19], [-577.39, -1223.1], [-584.5, -1234.18], [-592.73, -1244.35], [-597.11, -1248.49], [-599.91, -1243.69], [-593.32, -1236.53], [-579.99, -1216.55], [-564.0, -1186.75], [-548.32, -1157.97], [-542.57, -1148.0]], "holes": []}}, {"shape": {"outer": [[-615.15, -1254.98], [-612.36, -1259.44], [-623.82, -1266.33], [-637.23, -1271.73], [-654.68, -1275.48], [-668.08, -1276.27], [-702.53, -1270.2], [-710.74, -1267.57], [-717.19, -1264.44], [-715.97, -1262.56], [-700.67, -1268.42], [-668.96, -1270.53], [-656.39, -1269.82], [-641.28, -1266.9], [-626.6, -1261.34], [-615.15, -1254.98]], "holes": []}}, {"shape": {"outer": [[-735.55, -1246.93], [-744.55, -1235.95], [-762.49, -1216.07], [-780.31, -1196.65], [-788.19, -1193.94], [-789.13, -1194.96], [-767.95, -1217.69], [-746.81, -1241.79], [-741.91, -1246.56], [-737.95, -1249.17], [-735.55, -1246.93]], "holes": []}}, {"shape": {"outer": [[-789.85, -1186.4], [-810.45, -1162.37], [-833.89, -1136.65], [-853.5, -1115.16], [-895.31, -1067.96], [-905.09, -1062.21], [-914.98, -1051.76], [-916.55, -1052.86], [-887.61, -1085.25], [-839.52, -1138.73], [-804.8, -1176.29], [-790.46, -1186.98], [-789.85, -1186.4]], "holes": []}}, {"shape": {"outer": [[-1500.27, -1003.82], [-1501.41, -972.61], [-1502.48, -956.71], [-1504.69, -932.55], [-1506.17, -901.6], [-1506.15, -885.32], [-1508.34, -885.29], [-1509.24, -937.14], [-1508.43, -954.31], [-1507.64, -964.39], [-1504.34, -981.82], [-1503.39, -1000.37], [-1502.75, -1005.0], [-1500.27, -1003.82]], "holes": []}}, {"shape": {"outer": [[-282.46, -1025.31], [-280.21, -1019.25], [-271.74, -993.68], [-274.36, -992.65], [-287.11, -1023.25], [-282.46, -1025.31]], "holes": []}}, {"shape": {"outer": [[-289.28, -968.02], [-283.44, -970.88], [-282.25, -972.08], [-282.02, -973.18], [-282.49, -974.21], [-283.29, -974.57], [-293.02, -975.14], [-289.28, -968.02]], "holes": []}}, {"shape": {"outer": [[1906.63, 2254.3], [1908.13, 2310.83], [1911.05, 2334.73], [1918.14, 2366.82], [1916.41, 2367.19], [1914.02, 2364.08], [1912.6, 2360.69], [1904.74, 2326.13], [1883.62, 2228.06], [1886.12, 2227.47], [1889.46, 2235.37], [1893.89, 2242.19], [1898.96, 2247.64], [1906.63, 2254.3]], "holes": []}}, {"shape": {"outer": [[1906.4, 2240.06], [1906.03, 2226.7], [1904.01, 2205.43], [1899.58, 2184.32], [1893.07, 2164.33], [1883.02, 2142.04], [1872.27, 2124.16], [1861.3, 2108.99], [1845.45, 2091.53], [1772.7, 2021.45], [1762.64, 2013.08], [1761.24, 2014.87], [1818.83, 2070.22], [1837.63, 2092.63], [1849.32, 2104.21], [1860.3, 2119.98], [1869.59, 2145.04], [1880.9, 2182.92], [1889.35, 2210.16], [1891.25, 2217.62], [1893.81, 2225.25], [1897.91, 2232.22], [1904.97, 2240.21], [1906.4, 2240.06]], "holes": []}}, {"shape": {"outer": [[-1926.48, -128.81], [-1926.96, -139.66], [-1932.65, -139.41], [-1932.72, -140.77], [-1931.79, -142.55], [-1921.9, -142.99], [-1921.29, -129.04], [-1926.48, -128.81]], "holes": []}}, {"shape": {"outer": [[-1931.54, -85.42], [-1925.92, -85.65], [-1927.04, -112.47], [-1931.59, -112.27], [-1931.54, -110.98], [-1932.6, -110.94], [-1931.54, -85.42]], "holes": []}}, {"shape": {"outer": [[-1933.11, -149.44], [-1932.66, -149.43], [-1932.23, -149.12], [-1931.98, -148.73], [-1931.95, -148.18], [-1924.27, -148.48], [-1924.54, -153.45], [-1922.42, -153.54], [-1923.26, -170.82], [-1930.08, -170.53], [-1930.03, -169.47], [-1930.05, -168.55], [-1930.26, -167.69], [-1930.59, -166.82], [-1931.11, -165.95], [-1931.74, -165.26], [-1932.42, -164.85], [-1933.05, -164.6], [-1932.8, -158.55], [-1933.5, -157.52], [-1933.11, -149.44]], "holes": []}}, {"shape": {"outer": [[-1935.31, -170.29], [-1930.08, -170.53], [-1930.03, -169.47], [-1930.05, -168.55], [-1930.26, -167.69], [-1930.59, -166.82], [-1931.11, -165.95], [-1931.74, -165.26], [-1932.42, -164.85], [-1933.05, -164.6], [-1935.01, -164.5], [-1935.31, -170.29]], "holes": []}}, {"shape": {"outer": [[-1929.44, -173.32], [-1923.4, -173.54], [-1923.68, -183.0], [-1925.69, -182.95], [-1926.05, -197.63], [-1931.56, -197.45], [-1930.81, -176.72], [-1929.44, -173.32]], "holes": []}}, {"shape": {"outer": [[-550.93, 347.28], [-544.11, 353.41], [-543.09, 350.32], [-547.59, 346.23], [-550.93, 347.28]], "holes": []}}, {"shape": {"outer": [[-539.06, 357.81], [-534.28, 362.19], [-533.56, 361.68], [-532.5, 359.92], [-536.23, 356.51], [-539.06, 357.81]], "holes": []}}, {"shape": {"outer": [[-532.78, 363.35], [-532.05, 362.47], [-530.5, 361.64], [-529.83, 362.38], [-529.61, 362.89], [-529.39, 363.82], [-529.19, 365.39], [-529.11, 366.67], [-532.78, 363.35]], "holes": []}}, {"shape": {"outer": [[-556.21, 338.6], [-554.46, 340.01], [-555.66, 342.85], [-558.43, 340.45], [-557.37, 339.25], [-556.21, 338.6]], "holes": []}}, {"shape": {"outer": [[-552.09, 348.84], [-551.16, 349.57], [-566.2, 366.2], [-567.37, 365.12], [-552.09, 348.84]], "holes": []}}, {"shape": {"outer": [[-546.43, 353.93], [-545.32, 354.77], [-560.46, 371.66], [-561.55, 370.68], [-546.43, 353.93]], "holes": []}}, {"shape": {"outer": [[-551.16, 349.57], [-549.35, 351.19], [-553.0, 355.23], [-554.38, 355.19], [-555.03, 355.52], [-555.54, 356.05], [-555.83, 356.71], [-555.89, 357.43], [-555.7, 358.12], [-555.28, 358.72], [-554.7, 359.15], [-554.0, 359.36], [-553.32, 359.32], [-552.68, 359.08], [-552.14, 358.64], [-551.78, 358.06], [-551.63, 357.2], [-551.8, 356.51], [-548.12, 352.42], [-546.43, 353.93], [-561.55, 370.68], [-562.28, 371.59], [-563.06, 371.25], [-563.78, 370.8], [-564.48, 370.34], [-565.1, 369.8], [-565.76, 369.25], [-566.29, 368.63], [-566.81, 367.98], [-567.17, 367.27], [-566.2, 366.2], [-551.16, 349.57]], "holes": []}}, {"shape": {"outer": [[-559.43, 342.05], [-557.04, 344.27], [-569.82, 358.41], [-570.71, 358.5], [-571.61, 358.84], [-572.32, 355.98], [-559.43, 342.05]], "holes": []}}, {"shape": {"outer": [[-574.07, 358.1], [-577.38, 361.52], [-576.74, 362.1], [-575.84, 361.06], [-574.91, 360.26], [-573.8, 359.77], [-574.07, 358.1]], "holes": []}}, {"shape": {"outer": [[-574.55, 378.49], [-574.3, 378.0], [-575.47, 377.47], [-576.69, 377.17], [-577.97, 377.07], [-579.35, 377.13], [-578.97, 378.28], [-578.47, 379.15], [-577.93, 380.02], [-577.18, 380.9], [-576.99, 379.83], [-576.7, 379.26], [-576.31, 378.85], [-575.81, 378.53], [-575.24, 378.45], [-574.55, 378.49]], "holes": []}}, {"shape": {"outer": [[-572.84, 379.79], [-572.45, 379.64], [-571.82, 380.71], [-571.36, 381.96], [-571.12, 383.3], [-571.09, 384.54], [-572.11, 384.27], [-573.0, 383.98], [-573.89, 383.59], [-574.85, 383.09], [-573.9, 382.58], [-573.31, 382.16], [-572.91, 381.63], [-572.76, 380.97], [-572.73, 380.39], [-572.84, 379.79]], "holes": []}}, {"shape": {"outer": [[-579.58, 389.57], [-581.07, 391.35], [-580.37, 392.48], [-579.94, 394.09], [-579.9, 395.64], [-575.61, 395.53], [-573.83, 393.43], [-575.02, 392.49], [-577.45, 391.31], [-579.58, 389.57]], "holes": []}}, {"shape": {"outer": [[-568.36, 388.55], [-568.54, 390.05], [-568.6, 390.93], [-567.63, 391.1], [-566.78, 391.48], [-566.09, 391.96], [-565.46, 392.49], [-564.8, 393.11], [-564.27, 393.78], [-563.81, 394.45], [-563.44, 395.16], [-563.03, 394.17], [-563.0, 393.17], [-563.4, 392.04], [-564.16, 391.08], [-565.37, 389.98], [-567.08, 388.98], [-568.36, 388.55]], "holes": []}}, {"shape": {"outer": [[-583.87, 386.19], [-585.1, 387.62], [-586.28, 387.15], [-587.73, 386.83], [-589.49, 386.79], [-589.71, 382.36], [-587.83, 380.38], [-586.46, 381.7], [-585.38, 384.0], [-583.87, 386.19]], "holes": []}}, {"shape": {"outer": [[-582.23, 378.67], [-581.75, 379.76], [-580.94, 381.19], [-580.28, 382.11], [-579.55, 382.99], [-581.55, 384.41], [-582.22, 383.48], [-583.01, 382.15], [-583.57, 381.0], [-584.01, 379.93], [-583.49, 379.64], [-583.72, 379.13], [-582.23, 378.67]], "holes": []}}, {"shape": {"outer": [[-571.92, 387.79], [-572.06, 389.49], [-572.32, 389.44], [-572.39, 389.99], [-573.52, 389.7], [-574.91, 389.22], [-576.41, 388.53], [-578.12, 387.49], [-576.8, 385.06], [-575.44, 386.17], [-573.57, 387.28], [-571.92, 387.79]], "holes": []}}, {"shape": {"outer": [[-592.63, 380.67], [-595.46, 383.66], [-593.32, 383.34], [-591.87, 384.9], [-591.78, 387.28], [-592.72, 387.54], [-593.6, 388.01], [-594.36, 388.57], [-595.36, 389.46], [-601.5, 396.53], [-602.13, 397.37], [-602.58, 398.2], [-602.91, 398.99], [-603.07, 399.89], [-605.9, 400.09], [-607.55, 397.67], [-612.15, 402.82], [-613.83, 401.3], [-614.77, 402.33], [-615.78, 401.48], [-595.85, 378.9], [-594.89, 379.73], [-594.19, 379.05], [-592.63, 380.67]], "holes": []}}, {"shape": {"outer": [[-592.92, 371.69], [-593.23, 372.12], [-593.36, 372.62], [-593.31, 373.1], [-593.0, 373.6], [-592.54, 373.77], [-591.96, 373.73], [-591.37, 373.42], [-590.95, 373.03], [-590.67, 372.47], [-590.52, 371.96], [-590.42, 371.48], [-590.4, 371.17], [-590.53, 370.81], [-590.82, 370.64], [-591.31, 370.64], [-591.82, 370.82], [-592.43, 371.22], [-592.92, 371.69]], "holes": []}}, {"shape": {"outer": [[-546.17, 424.44], [-514.0, 389.21], [-513.6, 388.74], [-510.99, 389.66], [-508.06, 390.13], [-503.33, 389.13], [-493.39, 397.44], [-492.17, 397.97], [-490.85, 397.61], [-483.2, 390.32], [-488.36, 385.23], [-477.5, 387.95], [-501.56, 413.33], [-504.77, 411.52], [-506.37, 408.92], [-506.77, 406.21], [-506.36, 405.0], [-508.04, 403.65], [-525.29, 423.29], [-526.77, 428.76], [-529.35, 429.8], [-530.83, 429.06], [-533.28, 430.2], [-534.25, 426.68], [-535.96, 423.75], [-537.58, 423.77], [-546.17, 424.44]], "holes": []}}, {"shape": {"outer": [[-530.63, 345.06], [-529.24, 345.34], [-523.72, 350.18], [-525.07, 351.26], [-525.8, 351.89], [-528.91, 349.21], [-529.64, 348.22], [-530.33, 347.12], [-530.68, 346.07], [-530.63, 345.06]], "holes": []}}, {"shape": {"outer": [[-522.47, 351.49], [-523.75, 353.51], [-523.11, 354.3], [-522.18, 354.6], [-521.08, 354.37], [-519.68, 354.59], [-518.59, 354.85], [-522.47, 351.49]], "holes": []}}, {"shape": {"outer": [[-603.45, 402.67], [-603.42, 403.63], [-603.3, 404.49], [-603.07, 405.45], [-602.69, 406.32], [-602.15, 407.13], [-603.74, 408.89], [-606.72, 406.05], [-608.12, 407.23], [-609.56, 405.07], [-607.28, 402.68], [-603.45, 402.67]], "holes": []}}, {"shape": {"outer": [[-594.04, 411.24], [-595.3, 411.19], [-596.47, 411.04], [-597.64, 410.75], [-598.93, 410.29], [-600.44, 411.96], [-596.98, 415.0], [-598.28, 416.29], [-595.93, 417.64], [-593.94, 415.18], [-594.04, 411.24]], "holes": []}}, {"shape": {"outer": [[-591.16, 410.68], [-591.02, 413.74], [-589.73, 414.84], [-575.05, 398.87], [-575.82, 397.92], [-579.96, 398.07], [-580.51, 399.72], [-581.32, 400.92], [-588.64, 409.18], [-589.83, 410.04], [-591.16, 410.68]], "holes": []}}, {"shape": {"outer": [[-1849.75, -40.55], [-1846.47, -40.67], [-1846.68, -46.85], [-1849.96, -46.73], [-1849.75, -40.55]], "holes": []}}, {"shape": {"outer": [[-1899.96, -56.17], [-1899.9, -51.86], [-1899.66, -51.4], [-1898.95, -51.2], [-1888.75, -50.32], [-1888.72, -51.01], [-1888.94, -56.55], [-1893.26, -56.41], [-1893.24, -55.76], [-1896.16, -55.67], [-1896.17, -56.3], [-1899.96, -56.17]], "holes": []}}, {"shape": {"outer": [[-1900.21, -60.91], [-1900.38, -74.83], [-1898.62, -76.0], [-1895.87, -77.05], [-1892.75, -77.07], [-1891.88, -75.4], [-1893.19, -73.06], [-1891.77, -67.3], [-1891.88, -65.18], [-1891.36, -62.8], [-1891.91, -61.39], [-1895.51, -60.77], [-1898.45, -60.61], [-1900.21, -60.91]], "holes": []}}, {"shape": {"outer": [[-1900.21, -60.91], [-1900.11, -58.64], [-1889.02, -58.74], [-1889.88, -80.34], [-1895.29, -80.22], [-1895.3, -79.61], [-1895.52, -79.13], [-1895.9, -78.83], [-1896.38, -78.76], [-1896.91, -78.82], [-1897.33, -79.12], [-1897.54, -79.6], [-1897.56, -80.17], [-1900.49, -80.11], [-1900.38, -74.83], [-1898.62, -76.0], [-1895.87, -77.05], [-1892.75, -77.07], [-1891.88, -75.4], [-1893.19, -73.06], [-1891.77, -67.3], [-1891.88, -65.18], [-1891.36, -62.8], [-1891.91, -61.39], [-1895.51, -60.77], [-1898.45, -60.61], [-1900.21, -60.91]], "holes": []}}, {"shape": {"outer": [[-1085.51, -20.99], [-1084.73, -7.13], [-1071.28, -7.88], [-1072.06, -21.74], [-1085.51, -20.99]], "holes": []}}, {"shape": {"outer": [[-1107.75, -280.07], [-1106.21, -278.87], [-1098.71, -279.21], [-1103.22, -283.39], [-1107.89, -283.18], [-1107.75, -280.07]], "holes": []}}, {"shape": {"outer": [[-1182.54, -275.67], [-1181.28, -273.96], [-1166.44, -274.71], [-1166.53, -277.85], [-1168.8, -277.77], [-1172.18, -280.58], [-1178.91, -280.15], [-1182.54, -275.67]], "holes": []}}, {"shape": {"outer": [[-1326.84, -373.33], [-1326.91, -374.83], [-1310.97, -375.65], [-1310.89, -374.16], [-1326.84, -373.33]], "holes": []}}, {"shape": {"outer": [[-1354.09, -371.49], [-1349.65, -371.65], [-1349.35, -363.55], [-1351.94, -363.46], [-1352.2, -370.23], [-1354.04, -370.16], [-1354.09, -371.49]], "holes": []}}, {"shape": {"outer": [[-1348.77, -267.92], [-1348.65, -265.21], [-1361.41, -264.64], [-1361.52, -267.31], [-1348.77, -267.92]], "holes": []}}, {"shape": {"outer": [[-1479.0, -658.51], [-1474.8, -657.85], [-1464.03, -658.37], [-1463.84, -656.97], [-1470.02, -653.54], [-1475.22, -651.04], [-1478.94, -650.93], [-1479.0, -658.51]], "holes": []}}, {"shape": {"outer": [[-1500.2, -672.85], [-1495.56, -673.14], [-1494.81, -671.93], [-1494.19, -670.4], [-1493.74, -668.96], [-1493.63, -667.49], [-1490.72, -633.1], [-1496.53, -630.23], [-1499.67, -664.67], [-1500.2, -672.85]], "holes": []}}, {"shape": {"outer": [[-1489.59, -619.99], [-1495.32, -617.23], [-1493.4, -594.81], [-1491.53, -568.65], [-1489.03, -516.63], [-1488.69, -514.09], [-1486.28, -514.17], [-1486.18, -517.03], [-1487.43, -540.88], [-1487.53, -551.52], [-1487.46, -557.45], [-1486.93, -562.93], [-1486.45, -568.64], [-1486.07, -575.08], [-1486.37, -581.56], [-1489.59, -619.99]], "holes": []}}, {"shape": {"outer": [[-1482.36, -745.56], [-1481.98, -744.39], [-1481.27, -743.53], [-1480.32, -743.19], [-1478.4, -743.22], [-1474.54, -743.6], [-1475.76, -744.07], [-1477.88, -745.48], [-1478.67, -745.81], [-1482.36, -745.56]], "holes": []}}, {"shape": {"outer": [[-1353.53, -738.2], [-1353.1, -738.2], [-1353.11, -738.91], [-1352.16, -739.36], [-1350.65, -739.62], [-1349.28, -740.01], [-1348.67, -740.65], [-1348.62, -741.45], [-1348.64, -742.45], [-1348.31, -743.35], [-1347.78, -743.87], [-1346.83, -736.16], [-1343.25, -727.64], [-1344.02, -727.31], [-1343.54, -726.15], [-1344.06, -725.91], [-1343.71, -725.13], [-1343.29, -725.28], [-1342.68, -723.46], [-1342.69, -722.92], [-1342.97, -722.48], [-1343.05, -720.8], [-1342.69, -715.3], [-1336.36, -717.8], [-1335.41, -716.92], [-1334.05, -716.42], [-1332.55, -716.33], [-1298.41, -731.89], [-1294.78, -732.65], [-1292.06, -731.41], [-1289.7, -729.98], [-1288.76, -729.22], [-1249.09, -746.98], [-1243.6, -750.95], [-1243.08, -748.48], [-1288.69, -727.94], [-1289.4, -727.85], [-1290.09, -727.93], [-1290.98, -728.23], [-1291.83, -728.66], [-1292.74, -729.19], [-1293.59, -729.72], [-1294.54, -730.04], [-1295.83, -730.12], [-1297.44, -729.88], [-1331.44, -714.65], [-1333.6, -713.69], [-1337.68, -711.97], [-1340.92, -711.19], [-1343.47, -711.01], [-1344.75, -711.0], [-1346.1, -711.23], [-1349.61, -711.57], [-1350.18, -712.28], [-1351.28, -713.02], [-1352.45, -713.44], [-1353.53, -738.2]], "holes": []}}, {"shape": {"outer": [[-1342.13, -648.8], [-1341.55, -635.84], [-1337.17, -637.93], [-1342.13, -648.8]], "holes": []}}, {"shape": {"outer": [[-1351.88, -858.81], [-1348.77, -857.83], [-1346.9, -850.57], [-1352.72, -844.61], [-1353.16, -852.86], [-1352.76, -857.61], [-1351.88, -858.81]], "holes": []}}, {"shape": {"outer": [[-1348.03, -862.18], [-1347.41, -859.17], [-1339.44, -857.11], [-1334.79, -862.02], [-1338.51, -862.47], [-1344.39, -862.76], [-1348.03, -862.18]], "holes": []}}, {"shape": {"outer": [[-1344.68, -836.03], [-1310.16, -851.69], [-1318.23, -860.8], [-1332.06, -861.52], [-1352.8, -841.42], [-1352.29, -835.05], [-1350.2, -836.21], [-1347.37, -836.49], [-1344.68, -836.03]], "holes": []}}, {"shape": {"outer": [[-1258.35, -871.14], [-1257.92, -872.22], [-1258.12, -876.75], [-1258.47, -877.84], [-1272.98, -877.32], [-1270.64, -875.26], [-1269.45, -873.0], [-1269.09, -870.84], [-1262.75, -870.87], [-1258.35, -871.14]], "holes": []}}, {"shape": {"outer": [[-1256.14, -872.31], [-1255.51, -871.44], [-1242.14, -872.27], [-1225.48, -874.71], [-1224.33, -875.42], [-1224.28, -877.33], [-1226.63, -877.59], [-1233.19, -877.71], [-1244.95, -878.2], [-1250.55, -878.36], [-1253.95, -878.01], [-1255.83, -877.6], [-1256.38, -876.87], [-1256.14, -872.31]], "holes": []}}, {"shape": {"outer": [[-1345.26, -873.73], [-1345.29, -874.95], [-1323.17, -874.99], [-1309.45, -873.59], [-1297.24, -873.04], [-1284.87, -873.51], [-1283.32, -872.85], [-1283.54, -871.48], [-1297.26, -871.58], [-1312.84, -872.03], [-1326.3, -872.49], [-1345.26, -873.73]], "holes": []}}, {"shape": {"outer": [[-1174.59, -284.41], [-1173.01, -284.49], [-1171.36, -286.41], [-1172.2, -302.58], [-1175.49, -298.94], [-1174.59, -284.41]], "holes": []}}, {"shape": {"outer": [[-1176.55, -284.4], [-1182.8, -284.06], [-1185.04, -284.85], [-1186.59, -317.85], [-1180.69, -318.12], [-1180.84, -321.23], [-1148.71, -322.73], [-1148.15, -310.83], [-1163.81, -310.1], [-1168.4, -304.93], [-1172.75, -304.74], [-1177.41, -299.55], [-1176.55, -284.4]], "holes": []}}, {"shape": {"outer": [[-1308.92, -154.63], [-1308.87, -153.49], [-1316.34, -153.2], [-1316.37, -154.29], [-1308.92, -154.63]], "holes": []}}, {"shape": {"outer": [[-1167.08, 16.99], [-1166.99, 19.28], [-1162.09, 19.03], [-1162.18, 16.73], [-1167.08, 16.99]], "holes": []}}, {"shape": {"outer": [[-1139.24, 15.52], [-1139.13, 17.94], [-1136.2, 17.79], [-1136.31, 15.34], [-1139.24, 15.52]], "holes": []}}, {"shape": {"outer": [[-1622.34, -1092.97], [-1616.3, -1093.11], [-1616.8, -1114.67], [-1622.83, -1114.53], [-1622.34, -1092.97]], "holes": []}}, {"shape": {"outer": [[-1615.51, -1093.8], [-1615.55, -1098.98], [-1605.01, -1099.27], [-1603.34, -1098.0], [-1600.78, -1097.43], [-1598.35, -1097.43], [-1596.31, -1098.2], [-1592.19, -1094.53], [-1615.51, -1093.8]], "holes": []}}, {"shape": {"outer": [[-1615.58, -1101.65], [-1606.81, -1101.93], [-1607.16, -1103.88], [-1607.11, -1105.55], [-1606.75, -1106.83], [-1615.63, -1106.6], [-1615.58, -1101.65]], "holes": []}}, {"shape": {"outer": [[-1615.71, -1109.4], [-1615.81, -1114.47], [-1613.26, -1114.55], [-1608.08, -1109.53], [-1615.71, -1109.4]], "holes": []}}, {"shape": {"outer": [[179.93, -314.62], [185.33, -309.14], [192.31, -303.57], [193.21, -303.59], [193.8, -304.2], [183.06, -313.28], [180.49, -315.24], [179.93, -314.62]], "holes": []}}, {"shape": {"outer": [[200.99, -297.33], [200.47, -296.82], [200.48, -296.02], [201.49, -294.96], [202.42, -295.86], [200.99, -297.33]], "holes": []}}, {"shape": {"outer": [[-540.37, 359.18], [-539.87, 359.6], [-549.01, 369.62], [-549.05, 370.57], [-548.95, 371.35], [-548.66, 372.02], [-550.28, 373.83], [-551.28, 374.33], [-552.32, 374.71], [-553.44, 374.95], [-553.16, 373.94], [-553.14, 373.06], [-540.37, 359.18]], "holes": []}}, {"shape": {"outer": [[-549.82, 377.37], [-546.75, 379.83], [-541.35, 373.92], [-542.86, 372.6], [-543.27, 373.04], [-545.3, 371.13], [-545.6, 370.35], [-545.48, 369.65], [-545.17, 368.98], [-543.38, 367.12], [-543.84, 366.66], [-546.81, 369.69], [-546.99, 370.24], [-546.94, 370.89], [-546.78, 371.61], [-546.49, 372.26], [-545.08, 373.6], [-546.84, 375.44], [-548.25, 374.1], [-549.04, 375.08], [-549.55, 376.01], [-549.82, 377.37]], "holes": []}}, {"shape": {"outer": [[-598.33, 373.12], [-597.68, 373.03], [-597.15, 372.78], [-596.72, 372.46], [-596.19, 371.9], [-595.77, 371.26], [-595.6, 370.71], [-595.38, 370.24], [-594.89, 369.71], [-594.41, 369.38], [-593.96, 368.98], [-593.57, 368.37], [-593.54, 367.96], [-593.76, 367.6], [-594.22, 367.64], [-594.97, 368.68], [-596.18, 369.87], [-597.41, 370.78], [-599.05, 371.24], [-598.77, 371.6], [-598.55, 372.0], [-598.41, 372.54], [-598.33, 373.12]], "holes": []}}, {"shape": {"outer": [[-586.34, 371.36], [-585.29, 371.82], [-584.16, 372.88], [-583.72, 373.81], [-583.47, 374.88], [-584.9, 375.48], [-585.42, 374.66], [-585.8, 373.93], [-586.1, 372.82], [-586.34, 371.36]], "holes": []}}, {"shape": {"outer": [[-596.95, 377.38], [-596.67, 376.94], [-596.47, 376.43], [-596.55, 375.92], [-596.91, 375.5], [-597.45, 375.38], [-598.09, 375.52], [-598.65, 375.88], [-598.52, 376.42], [-598.36, 376.92], [-598.06, 377.68], [-597.93, 378.45], [-596.95, 377.38]], "holes": []}}, {"shape": {"outer": [[-602.56, 354.6], [-612.95, 366.11], [-605.45, 372.56], [-605.07, 372.11], [-611.16, 366.73], [-604.12, 358.99], [-600.46, 362.22], [-599.37, 361.05], [-593.13, 366.51], [-591.81, 367.27], [-590.52, 367.65], [-589.31, 367.53], [-588.27, 367.3], [-587.27, 366.7], [-581.16, 361.75], [-563.99, 343.01], [-566.02, 341.2], [-566.61, 341.85], [-581.14, 357.54], [-581.63, 357.1], [-589.99, 366.14], [-602.56, 354.6]], "holes": []}}, {"shape": {"outer": [[-568.27, 334.32], [-569.75, 335.86], [-569.86, 336.65], [-569.54, 337.23], [-567.42, 339.18], [-567.37, 341.15], [-566.61, 341.85], [-566.02, 341.2], [-563.99, 343.01], [-561.45, 340.23], [-568.27, 334.32]], "holes": []}}, {"shape": {"outer": [[-592.12, 424.2], [-589.51, 426.52], [-588.14, 425.04], [-589.18, 424.08], [-588.45, 422.79], [-587.32, 421.26], [-585.74, 419.87], [-584.14, 418.68], [-583.22, 419.54], [-581.6, 417.99], [-584.03, 415.72], [-592.12, 424.2]], "holes": []}}, {"shape": {"outer": [[-581.05, 421.54], [-578.11, 424.26], [-576.67, 422.67], [-579.66, 420.0], [-581.05, 421.54]], "holes": []}}, {"shape": {"outer": [[309.93, 500.68], [315.43, 505.23], [337.78, 480.81], [332.31, 475.31], [309.93, 500.68]], "holes": []}}, {"shape": {"outer": [[66.22, -606.05], [70.73, -603.73], [76.42, -601.29], [82.43, -598.7], [89.89, -595.08], [88.69, -594.08], [87.84, -593.21], [87.08, -592.22], [86.12, -590.87], [85.4, -589.42], [84.79, -587.89], [84.38, -585.88], [82.62, -587.82], [80.53, -590.13], [78.45, -592.44], [76.41, -594.68], [74.14, -597.21], [70.56, -593.99], [69.99, -593.43], [69.01, -593.55], [60.99, -602.36], [63.41, -605.62], [66.22, -606.05]], "holes": []}}, {"shape": {"outer": [[13.63, -670.2], [14.04, -667.84], [12.22, -666.93], [9.43, -664.63], [6.97, -662.4], [3.06, -660.48], [-2.83, -659.98], [-7.15, -660.36], [-11.6, -663.82], [-19.4, -671.99], [-26.04, -678.63], [-33.39, -684.77], [-45.45, -695.21], [-55.81, -704.18], [-81.72, -732.32], [-116.87, -774.07], [-128.59, -788.62], [-141.86, -806.28], [-145.74, -811.76], [-166.23, -840.71], [-165.86, -841.8], [-162.39, -844.44], [-161.15, -844.79], [-159.31, -844.72], [-157.46, -843.96], [-155.47, -841.73], [-141.15, -821.87], [-130.66, -807.25], [-121.18, -793.94], [-110.13, -778.29], [-94.71, -758.77], [-78.14, -744.65], [-65.94, -734.04], [-43.04, -715.33], [-8.72, -686.71], [4.62, -677.94], [6.85, -676.96], [9.18, -675.68], [10.44, -674.76], [9.89, -673.34], [9.66, -671.83], [10.76, -671.05], [11.46, -669.8], [12.46, -670.19], [13.63, -670.2]], "holes": []}}, {"shape": {"outer": [[33.22, -600.48], [30.07, -597.47], [0.13, -627.38], [-32.64, -661.35], [-38.28, -667.43], [-35.59, -670.04], [-15.31, -651.77], [9.33, -626.41], [33.22, -600.48]], "holes": []}}, {"shape": {"outer": [[354.47, -323.76], [356.35, -325.62], [358.93, -323.15], [359.08, -322.32], [358.62, -321.91], [357.12, -322.35], [354.47, -323.76]], "holes": []}}, {"shape": {"outer": [[319.78, -369.03], [342.1, -338.99], [340.79, -338.07], [344.73, -333.47], [340.64, -329.64], [337.86, -331.15], [332.13, -334.6], [326.71, -338.4], [320.27, -343.35], [316.47, -346.62], [320.98, -351.66], [318.4, -353.95], [315.96, -356.12], [313.59, -358.23], [311.2, -360.34], [310.24, -361.19], [312.28, -361.95], [314.2, -362.85], [315.87, -364.05], [317.48, -365.48], [318.88, -367.27], [319.78, -369.03]], "holes": []}}, {"shape": {"outer": [[356.92, -298.28], [358.9, -296.55], [360.83, -295.13], [362.75, -293.98], [364.68, -292.99], [367.17, -292.49], [369.76, -292.28], [372.51, -292.68], [375.43, -293.2], [377.9, -294.33], [379.25, -295.38], [380.07, -297.18], [380.28, -298.65], [380.15, -300.3], [379.49, -302.86], [378.03, -305.06], [376.5, -306.62], [375.14, -307.51], [373.59, -308.22], [366.44, -310.59], [359.06, -313.03], [347.55, -317.89], [338.52, -322.06], [328.02, -328.3], [325.58, -330.26], [323.96, -328.53], [356.92, -298.28]], "holes": []}}, {"shape": {"outer": [[244.86, -454.38], [243.32, -447.86], [245.58, -446.48], [248.52, -445.72], [251.08, -445.63], [250.97, -447.0], [251.43, -447.07], [251.06, -450.58], [249.85, -450.64], [248.53, -450.97], [247.11, -451.71], [245.88, -452.79], [244.86, -454.38]], "holes": []}}, {"shape": {"outer": [[252.24, -411.15], [250.76, -409.42], [249.8, -410.59], [248.86, -412.0], [248.04, -413.4], [247.69, -414.54], [247.45, -415.77], [247.44, -417.14], [247.66, -418.74], [248.3, -420.5], [249.48, -422.28], [250.91, -423.49], [252.91, -424.72], [255.46, -425.45], [258.23, -425.46], [261.36, -424.47], [259.71, -421.22], [258.12, -418.57], [256.19, -415.69], [253.59, -412.68], [252.24, -411.15]], "holes": []}}, {"shape": {"outer": [[142.28, -410.97], [144.7, -413.49], [147.33, -410.98], [144.91, -408.46], [142.28, -410.97]], "holes": []}}, {"shape": {"outer": [[270.35, -433.29], [291.0, -420.07], [292.24, -419.8], [293.12, -420.42], [293.49, -421.28], [284.0, -435.23], [283.41, -435.32], [283.01, -435.18], [282.9, -434.6], [286.09, -430.22], [284.3, -429.31], [281.56, -429.09], [279.5, -429.61], [277.64, -430.53], [276.34, -431.85], [275.52, -433.11], [277.09, -434.44], [277.47, -435.45], [277.66, -436.46], [277.25, -437.57], [276.28, -438.31], [274.18, -438.46], [272.81, -437.71], [271.87, -435.55], [270.35, -433.29]], "holes": []}}, {"shape": {"outer": [[255.4, -470.88], [261.03, -465.15], [267.34, -458.63], [267.4, -458.13], [267.06, -457.81], [266.37, -457.93], [264.52, -459.77], [261.86, -462.39], [258.58, -465.35], [256.09, -466.89], [253.78, -467.69], [252.08, -467.61], [251.14, -467.93], [250.73, -468.78], [250.73, -469.8], [251.41, -470.78], [252.72, -471.43], [253.98, -471.4], [255.4, -470.88]], "holes": []}}, {"shape": {"outer": [[279.48, -441.54], [270.78, -454.69], [270.36, -454.84], [269.84, -454.63], [269.78, -454.22], [271.36, -452.17], [273.05, -449.36], [273.8, -447.05], [274.12, -442.09], [274.5, -440.46], [275.73, -439.65], [277.15, -439.71], [279.48, -441.54]], "holes": []}}, {"shape": {"outer": [[53.4, -618.32], [48.32, -623.22], [47.05, -623.41], [45.9, -622.51], [45.98, -620.43], [48.78, -614.88], [51.98, -610.84], [55.47, -607.68], [57.76, -605.86], [59.0, -605.9], [60.6, -607.43], [60.76, -608.27], [51.99, -616.98], [53.4, -618.32]], "holes": []}}, {"shape": {"outer": [[311.95, -386.89], [314.5, -388.45], [315.01, -388.48], [315.8, -387.99], [317.31, -385.69], [319.04, -383.14], [320.82, -381.29], [321.73, -380.19], [321.55, -379.53], [319.31, -381.58], [317.95, -382.53], [316.23, -384.32], [314.2, -385.77], [311.95, -386.89]], "holes": []}}, {"shape": {"outer": [[311.45, -390.56], [312.53, -391.17], [312.9, -392.14], [312.45, -393.1], [297.9, -414.79], [296.63, -414.6], [296.07, -413.64], [296.78, -412.12], [311.45, -390.56]], "holes": []}}, {"shape": {"outer": [[196.89, -435.16], [195.76, -433.75], [197.58, -432.03], [203.2, -426.36], [208.29, -421.25], [208.92, -421.7], [209.74, -420.86], [209.21, -420.35], [214.24, -415.31], [214.93, -415.98], [216.04, -416.87], [217.41, -416.86], [217.13, -417.71], [213.87, -420.85], [210.13, -424.48], [207.58, -427.24], [204.52, -429.9], [202.64, -431.36], [199.94, -433.34], [196.89, -435.16]], "holes": []}}, {"shape": {"outer": [[144.28, -485.17], [149.68, -479.79], [158.44, -470.95], [162.87, -466.3], [164.74, -467.31], [163.06, -470.09], [160.53, -473.7], [157.38, -477.3], [153.7, -480.9], [149.45, -485.36], [147.37, -487.32], [146.49, -487.5], [146.46, -487.03], [146.33, -486.53], [145.49, -485.72], [145.03, -485.46], [144.28, -485.17]], "holes": []}}, {"shape": {"outer": [[-1443.94, -862.31], [-1443.89, -861.09], [-1434.94, -861.47], [-1434.99, -862.69], [-1443.94, -862.31]], "holes": []}}, {"shape": {"outer": [[-1428.74, -863.17], [-1428.69, -861.96], [-1419.74, -862.34], [-1419.79, -863.56], [-1428.74, -863.17]], "holes": []}}, {"shape": {"outer": [[-1413.29, -863.85], [-1413.24, -862.63], [-1404.3, -863.01], [-1404.35, -864.23], [-1413.29, -863.85]], "holes": []}}, {"shape": {"outer": [[-1397.8, -864.54], [-1397.74, -863.32], [-1388.8, -863.7], [-1388.85, -864.92], [-1397.8, -864.54]], "holes": []}}, {"shape": {"outer": [[-1153.31, -789.74], [-1127.95, -801.69], [-1131.83, -803.77], [-1151.76, -794.49], [-1153.31, -789.74]], "holes": []}}, {"shape": {"outer": [[-1218.18, -766.79], [-1214.9, -765.59], [-1184.58, -779.56], [-1179.55, -777.71], [-1153.31, -789.74], [-1151.76, -794.49], [-1131.83, -803.77], [-1134.06, -805.03], [-1218.18, -766.79]], "holes": []}}, {"shape": {"outer": [[-1123.38, -803.43], [-1121.09, -807.43], [-1103.86, -815.52], [-1099.89, -814.14], [-1123.38, -803.43]], "holes": []}}, {"shape": {"outer": [[-1234.32, -753.34], [-1231.23, -761.42], [-1225.38, -759.26], [-1226.27, -757.07], [-1234.32, -753.34]], "holes": []}}, {"shape": {"outer": [[-667.4, -126.86], [-669.31, -129.29], [-677.23, -128.93], [-676.54, -115.53], [-675.0, -116.95], [-675.37, -123.31], [-667.22, -123.78], [-667.4, -126.86]], "holes": []}}, {"shape": {"outer": [[-1037.05, -20.96], [-1036.98, -18.97], [-1036.94, -17.96], [-1033.93, -18.08], [-1034.04, -21.07], [-1037.05, -20.96]], "holes": []}}, {"shape": {"outer": [[-1032.82, 5.16], [-1032.73, 6.97], [-1035.72, 7.12], [-1035.78, 5.98], [-1035.81, 5.31], [-1032.82, 5.16]], "holes": []}}, {"shape": {"outer": [[-698.95, -92.42], [-698.92, -91.71], [-694.43, -91.93], [-694.47, -92.64], [-698.95, -92.42]], "holes": []}}, {"shape": {"outer": [[-607.23, -90.31], [-607.36, -89.71], [-602.29, -88.58], [-601.64, -89.25], [-600.67, -90.22], [-601.02, -90.51], [-603.93, -90.39], [-607.23, -90.31]], "holes": []}}, {"shape": {"outer": [[-1034.68, -38.18], [-1032.74, -39.65], [-1033.18, -49.37], [-1034.56, -50.52], [-1034.9, -59.6], [-1033.71, -61.3], [-1033.89, -65.0], [-1035.17, -66.58], [-1035.31, -69.4], [-1036.54, -69.34], [-1036.51, -68.67], [-1036.2, -68.69], [-1034.68, -38.18]], "holes": []}}, {"shape": {"outer": [[-1037.16, -73.64], [-1037.04, -71.76], [-1031.44, -72.09], [-1031.55, -73.98], [-1037.16, -73.64]], "holes": []}}, {"shape": {"outer": [[-1023.12, -74.48], [-1023.01, -72.61], [-1017.41, -72.94], [-1017.52, -74.82], [-1023.12, -74.48]], "holes": []}}, {"shape": {"outer": [[-1045.37, -73.15], [-1045.26, -71.27], [-1039.65, -71.6], [-1039.76, -73.48], [-1045.37, -73.15]], "holes": []}}, {"shape": {"outer": [[-1054.84, -72.58], [-1054.73, -70.69], [-1049.12, -71.03], [-1049.23, -72.91], [-1054.84, -72.58]], "holes": []}}, {"shape": {"outer": [[-1054.74, -167.88], [-1053.57, -167.95], [-1053.72, -170.52], [-1054.63, -170.47], [-1054.74, -167.88]], "holes": []}}, {"shape": {"outer": [[-1055.12, -180.02], [-1054.8, -172.42], [-1053.81, -172.46], [-1054.14, -180.07], [-1055.12, -180.02]], "holes": []}}, {"shape": {"outer": [[-1108.29, 39.16], [-1108.35, 37.98], [-1109.08, 38.01], [-1109.18, 35.93], [-1093.38, 35.2], [-1093.29, 37.27], [-1093.23, 38.43], [-1108.29, 39.16]], "holes": []}}, {"shape": {"outer": [[-1133.52, 45.14], [-1133.41, 48.44], [-1132.34, 48.96], [-1129.16, 44.89], [-1133.52, 45.14]], "holes": []}}, {"shape": {"outer": [[-1119.97, 13.93], [-1119.82, 17.01], [-1113.11, 16.66], [-1113.61, 6.96], [-1114.04, -1.61], [-1115.75, -1.52], [-1115.0, 12.67], [-1118.79, 12.87], [-1118.73, 13.85], [-1119.97, 13.93]], "holes": []}}, {"shape": {"outer": [[-1130.32, 13.42], [-1130.11, 17.52], [-1124.93, 17.26], [-1125.09, 14.19], [-1126.5, 14.25], [-1126.56, 13.22], [-1130.32, 13.42]], "holes": []}}, {"shape": {"outer": [[-1109.95, 12.05], [-1109.73, 16.51], [-1111.61, 16.59], [-1112.5, -1.75], [-1111.82, -1.79], [-1111.13, 12.08], [-1109.95, 12.05]], "holes": []}}, {"shape": {"outer": [[-1116.6, -17.77], [-1116.1, -8.43], [-1114.76, -8.5], [-1115.23, -17.85], [-1116.6, -17.77]], "holes": []}}, {"shape": {"outer": [[-1699.39, -158.89], [-1698.3, -161.03], [-1696.42, -159.88], [-1692.75, -158.26], [-1688.27, -157.01], [-1682.92, -155.25], [-1682.16, -153.34], [-1681.98, -151.14], [-1682.15, -150.05], [-1682.82, -149.65], [-1684.78, -149.3], [-1691.67, -153.35], [-1696.41, -152.48], [-1699.39, -158.89]], "holes": []}}, {"shape": {"outer": [[-1729.67, -178.37], [-1728.02, -175.66], [-1722.9, -175.17], [-1712.08, -173.67], [-1699.0, -170.7], [-1696.6, -169.87], [-1691.06, -166.84], [-1685.68, -165.18], [-1681.84, -164.86], [-1676.53, -165.49], [-1663.47, -170.0], [-1659.19, -171.14], [-1644.47, -171.68], [-1633.69, -172.03], [-1630.44, -171.41], [-1629.14, -171.4], [-1626.92, -172.69], [-1626.44, -173.62], [-1627.2, -174.14], [-1631.62, -173.82], [-1657.89, -172.64], [-1657.84, -173.66], [-1663.38, -175.39], [-1668.98, -176.29], [-1674.04, -176.42], [-1691.23, -175.46], [-1698.43, -175.6], [-1710.28, -177.12], [-1724.85, -178.19], [-1729.67, -178.37]], "holes": []}}, {"shape": {"outer": [[-1732.99, -175.87], [-1731.73, -178.47], [-1734.92, -178.41], [-1738.45, -177.25], [-1744.13, -175.04], [-1749.49, -172.21], [-1759.89, -164.36], [-1772.73, -154.97], [-1771.7, -154.97], [-1753.45, -167.33], [-1748.58, -170.33], [-1743.62, -173.01], [-1739.99, -174.53], [-1732.99, -175.87]], "holes": []}}, {"shape": {"outer": [[-1505.9, -153.75], [-1505.38, -143.71], [-1509.61, -145.6], [-1510.71, -146.73], [-1511.08, -148.13], [-1510.96, -149.58], [-1510.24, -150.88], [-1505.9, -153.75]], "holes": []}}, {"shape": {"outer": [[-1606.8, -179.31], [-1610.93, -172.72], [-1607.38, -170.11], [-1606.8, -169.52], [-1606.32, -169.46], [-1606.16, -169.88], [-1606.45, -178.73], [-1606.8, -179.31]], "holes": []}}, {"shape": {"outer": [[-1345.53, 60.53], [-1345.6, 58.45], [-1343.85, 58.39], [-1343.87, 57.95], [-1342.24, 57.89], [-1342.16, 59.87], [-1340.93, 59.82], [-1340.91, 60.42], [-1338.34, 60.32], [-1338.35, 59.75], [-1336.74, 59.69], [-1336.81, 57.61], [-1333.41, 57.49], [-1333.26, 61.98], [-1343.4, 62.34], [-1343.46, 60.46], [-1345.53, 60.53]], "holes": []}}, {"shape": {"outer": [[-1515.55, -125.58], [-1503.1, -126.13], [-1503.19, -128.9], [-1513.32, -128.37], [-1513.31, -134.53], [-1513.44, -135.12], [-1513.72, -135.58], [-1514.19, -135.7], [-1514.66, -135.54], [-1514.99, -134.92], [-1515.19, -134.2], [-1515.45, -131.07], [-1515.57, -127.93], [-1515.55, -125.58]], "holes": []}}, {"shape": {"outer": [[-1482.74, -79.97], [-1465.9, -82.86], [-1465.94, -83.75], [-1466.04, -84.35], [-1466.22, -84.79], [-1466.56, -85.28], [-1467.2, -85.64], [-1467.62, -85.78], [-1468.03, -85.85], [-1468.17, -85.34], [-1473.1, -85.07], [-1475.96, -84.57], [-1479.18, -83.51], [-1480.78, -82.84], [-1481.92, -82.09], [-1482.85, -81.31], [-1483.38, -80.56], [-1482.74, -79.97]], "holes": []}}, {"shape": {"outer": [[-1465.66, -74.5], [-1465.19, -64.12], [-1465.47, -64.11], [-1465.45, -63.42], [-1465.57, -62.88], [-1466.0, -62.26], [-1466.76, -61.6], [-1467.72, -61.15], [-1468.81, -61.03], [-1470.6, -60.96], [-1470.59, -60.34], [-1473.49, -60.57], [-1474.68, -60.87], [-1475.76, -61.44], [-1476.94, -62.52], [-1477.98, -63.78], [-1481.06, -68.26], [-1480.54, -70.57], [-1478.37, -71.66], [-1476.16, -71.96], [-1474.01, -70.94], [-1471.91, -71.41], [-1468.86, -73.17], [-1466.94, -74.12], [-1465.66, -74.5]], "holes": []}}, {"shape": {"outer": [[-1481.06, -68.26], [-1483.37, -70.92], [-1484.32, -72.21], [-1484.48, -73.69], [-1484.06, -74.89], [-1483.22, -75.44], [-1482.64, -75.68], [-1465.86, -78.43], [-1465.66, -74.5], [-1466.94, -74.12], [-1468.86, -73.17], [-1471.91, -71.41], [-1474.01, -70.94], [-1476.16, -71.96], [-1478.37, -71.66], [-1480.54, -70.57], [-1481.06, -68.26]], "holes": []}}, {"shape": {"outer": [[-1533.31, 79.71], [-1535.09, 79.61], [-1536.87, 79.69], [-1538.06, 79.99], [-1539.71, 80.82], [-1541.39, 80.76], [-1542.54, 80.09], [-1542.77, 78.96], [-1543.18, 78.22], [-1543.83, 77.61], [-1545.03, 77.38], [-1546.3, 77.62], [-1546.98, 78.46], [-1548.37, 79.85], [-1549.73, 80.69], [-1551.71, 81.21], [-1552.7, 81.24], [-1553.9, 81.9], [-1554.07, 79.87], [-1554.33, 78.0], [-1554.36, 76.67], [-1553.76, 75.84], [-1553.05, 74.91], [-1552.42, 73.32], [-1551.68, 71.92], [-1551.45, 71.16], [-1550.78, 69.77], [-1550.22, 68.14], [-1549.54, 66.39], [-1549.2, 64.36], [-1549.08, 62.28], [-1548.91, 59.87], [-1549.76, 59.28], [-1550.4, 59.73], [-1551.03, 60.57], [-1551.52, 60.65], [-1551.92, 60.52], [-1552.43, 60.85], [-1553.52, 60.68], [-1554.65, 60.17], [-1555.55, 59.01], [-1555.81, 57.76], [-1555.27, 57.07], [-1554.28, 56.55], [-1551.14, 57.09], [-1550.62, 55.5], [-1550.16, 53.77], [-1553.92, 53.0], [-1554.35, 54.04], [-1555.22, 53.55], [-1554.03, 50.52], [-1551.9, 50.47], [-1550.57, 51.03], [-1549.28, 51.44], [-1548.77, 51.32], [-1547.86, 50.02], [-1547.88, 48.95], [-1548.12, 48.16], [-1548.19, 47.92], [-1548.34, 46.9], [-1547.98, 46.05], [-1547.85, 45.77], [-1544.4, 46.33], [-1543.39, 46.49], [-1547.53, 73.54], [-1542.55, 74.75], [-1542.38, 77.73], [-1538.75, 77.52], [-1533.47, 77.3], [-1533.31, 79.71]], "holes": []}}, {"shape": {"outer": [[-1526.4, 79.72], [-1525.7, 80.65], [-1524.5, 80.84], [-1523.61, 80.82], [-1522.1, 80.46], [-1521.86, 80.16], [-1521.91, 78.94], [-1525.59, 79.08], [-1525.56, 79.69], [-1526.4, 79.72]], "holes": []}}, {"shape": {"outer": [[-1521.86, 80.16], [-1521.78, 81.93], [-1545.5, 82.89], [-1545.43, 82.23], [-1553.26, 82.74], [-1553.9, 81.9], [-1552.7, 81.24], [-1551.71, 81.21], [-1549.73, 80.69], [-1548.37, 79.85], [-1546.98, 78.46], [-1546.3, 77.62], [-1545.03, 77.38], [-1543.83, 77.61], [-1543.18, 78.22], [-1542.77, 78.96], [-1542.54, 80.09], [-1541.39, 80.76], [-1539.71, 80.82], [-1538.06, 79.99], [-1536.87, 79.69], [-1535.09, 79.61], [-1533.31, 79.71], [-1533.29, 80.03], [-1526.4, 79.72], [-1525.7, 80.65], [-1524.5, 80.84], [-1523.61, 80.82], [-1522.1, 80.46], [-1521.86, 80.16]], "holes": []}}, {"shape": {"outer": [[-1554.36, 76.67], [-1554.39, 75.18], [-1555.87, 69.92], [-1557.22, 64.26], [-1557.22, 60.52], [-1556.79, 57.41], [-1556.35, 55.62], [-1556.08, 55.48], [-1555.69, 55.46], [-1554.08, 55.58], [-1554.28, 56.55], [-1555.27, 57.07], [-1555.81, 57.76], [-1555.55, 59.01], [-1554.65, 60.17], [-1553.52, 60.68], [-1552.43, 60.85], [-1551.92, 60.52], [-1551.52, 60.65], [-1551.03, 60.57], [-1550.4, 59.73], [-1549.76, 59.28], [-1548.91, 59.87], [-1549.08, 62.28], [-1549.2, 64.36], [-1549.54, 66.39], [-1550.22, 68.14], [-1550.78, 69.77], [-1551.45, 71.16], [-1551.68, 71.92], [-1552.42, 73.32], [-1553.05, 74.91], [-1553.76, 75.84], [-1554.36, 76.67]], "holes": []}}, {"shape": {"outer": [[-1554.03, 50.52], [-1552.67, 47.0], [-1552.01, 47.04], [-1551.39, 46.78], [-1550.79, 46.32], [-1550.4, 46.08], [-1550.02, 45.95], [-1549.47, 46.01], [-1549.1, 45.92], [-1548.65, 45.99], [-1547.98, 46.05], [-1548.34, 46.9], [-1548.12, 48.16], [-1547.88, 48.95], [-1547.86, 50.02], [-1548.77, 51.32], [-1549.28, 51.44], [-1550.57, 51.03], [-1551.9, 50.47], [-1554.03, 50.52]], "holes": []}}, {"shape": {"outer": [[-1562.06, 66.04], [-1560.74, 65.98], [-1560.0, 82.23], [-1558.49, 82.23], [-1558.42, 82.59], [-1557.6, 82.42], [-1556.96, 82.07], [-1556.63, 81.62], [-1556.51, 80.18], [-1556.54, 79.04], [-1556.61, 77.37], [-1556.99, 75.24], [-1557.44, 73.42], [-1558.05, 71.15], [-1558.68, 68.8], [-1559.46, 65.92], [-1559.84, 65.09], [-1560.33, 64.76], [-1560.99, 64.65], [-1562.13, 64.73], [-1562.06, 66.04]], "holes": []}}, {"shape": {"outer": [[-1565.43, 62.46], [-1564.36, 62.78], [-1563.18, 62.82], [-1561.24, 62.67], [-1560.03, 62.29], [-1559.71, 61.77], [-1559.63, 60.39], [-1559.36, 57.53], [-1559.17, 55.72], [-1558.34, 53.56], [-1557.6, 51.71], [-1556.17, 48.88], [-1555.35, 46.78], [-1554.61, 43.93], [-1554.21, 41.07], [-1554.04, 38.07], [-1554.08, 35.67], [-1554.29, 35.34], [-1554.78, 34.97], [-1555.08, 34.75], [-1561.54, 34.85], [-1560.42, 60.98], [-1565.49, 61.19], [-1565.43, 62.46]], "holes": []}}, {"shape": {"outer": [[-1628.68, -64.55], [-1635.16, -64.4], [-1636.95, -77.26], [-1634.68, -77.69], [-1634.93, -79.13], [-1636.78, -78.73], [-1638.15, -77.83], [-1638.62, -74.23], [-1638.62, -67.47], [-1638.4, -64.44], [-1637.55, -62.22], [-1636.59, -60.13], [-1634.51, -58.78], [-1632.58, -58.55], [-1630.4, -59.15], [-1628.77, -61.79], [-1628.68, -64.55]], "holes": []}}, {"shape": {"outer": [[-1666.76, -100.55], [-1665.86, -98.95], [-1665.15, -100.48], [-1664.3, -103.42], [-1663.93, -105.9], [-1663.4, -109.31], [-1663.09, -112.23], [-1663.04, -115.49], [-1667.28, -114.73], [-1665.92, -107.76], [-1667.82, -107.39], [-1666.76, -100.55]], "holes": []}}, {"shape": {"outer": [[-1668.63, -99.63], [-1668.69, -96.1], [-1669.6, -95.61], [-1670.43, -95.15], [-1672.33, -94.45], [-1673.97, -94.12], [-1676.45, -93.58], [-1677.01, -93.74], [-1677.51, -94.74], [-1679.46, -98.78], [-1670.98, -100.28], [-1670.52, -99.6], [-1668.63, -99.63]], "holes": []}}, {"shape": {"outer": [[-1681.52, -137.4], [-1681.23, -138.33], [-1681.95, -142.05], [-1681.62, -142.55], [-1681.04, -143.02], [-1680.55, -143.03], [-1679.66, -142.9], [-1679.01, -142.24], [-1678.38, -140.97], [-1677.62, -139.77], [-1676.68, -138.53], [-1675.6, -137.23], [-1673.89, -135.52], [-1672.42, -134.32], [-1670.77, -132.73], [-1669.18, -131.04], [-1667.67, -129.16], [-1665.94, -127.36], [-1665.01, -124.94], [-1663.47, -120.89], [-1663.04, -118.62], [-1665.94, -117.4], [-1669.09, -117.24], [-1669.25, -118.08], [-1668.47, -118.23], [-1670.78, -131.3], [-1671.67, -131.14], [-1671.82, -132.02], [-1675.77, -131.33], [-1676.87, -137.54], [-1677.66, -137.4], [-1677.78, -138.06], [-1681.52, -137.4]], "holes": []}}, {"shape": {"outer": [[-1739.88, -138.32], [-1739.24, -137.64], [-1738.68, -137.84], [-1738.57, -138.65], [-1737.63, -142.84], [-1729.84, -143.53], [-1730.24, -146.01], [-1711.42, -149.03], [-1711.59, -150.08], [-1705.38, -151.09], [-1705.28, -150.43], [-1699.07, -151.45], [-1698.34, -151.9], [-1700.79, -156.65], [-1701.25, -158.49], [-1701.16, -159.78], [-1700.57, -161.17], [-1700.12, -162.12], [-1704.64, -163.66], [-1704.98, -163.05], [-1709.67, -164.26], [-1709.88, -163.83], [-1715.39, -165.15], [-1715.87, -164.54], [-1721.93, -165.52], [-1722.01, -166.31], [-1729.14, -167.34], [-1731.16, -167.34], [-1733.17, -167.03], [-1734.84, -166.82], [-1736.1, -166.44], [-1736.61, -167.18], [-1735.0, -167.79], [-1733.33, -167.88], [-1731.5, -168.05], [-1732.97, -169.33], [-1735.86, -168.62], [-1738.48, -167.87], [-1741.21, -166.83], [-1743.63, -165.6], [-1746.55, -163.99], [-1748.68, -162.72], [-1751.31, -158.99], [-1752.06, -157.81], [-1752.37, -156.29], [-1751.93, -154.86], [-1751.09, -152.16], [-1749.13, -148.33], [-1739.88, -138.32]], "holes": []}}, {"shape": {"outer": [[-1779.23, -114.48], [-1779.77, -114.07], [-1780.29, -114.34], [-1782.11, -120.0], [-1782.0, -120.74], [-1781.3, -120.88], [-1775.99, -119.09], [-1775.22, -118.48], [-1775.63, -117.61], [-1779.23, -114.48]], "holes": []}}, {"shape": {"outer": [[-1767.49, -121.12], [-1770.01, -120.78], [-1771.04, -120.72], [-1772.83, -121.1], [-1781.79, -123.98], [-1782.51, -124.47], [-1782.98, -125.53], [-1784.6, -131.83], [-1784.59, -132.77], [-1784.38, -133.78], [-1783.03, -135.39], [-1779.59, -139.86], [-1777.47, -142.26], [-1776.05, -143.54], [-1772.91, -146.14], [-1769.21, -149.34], [-1765.3, -151.67], [-1764.5, -151.26], [-1766.21, -148.08], [-1761.06, -144.42], [-1760.03, -143.71], [-1757.37, -135.55], [-1761.03, -134.79], [-1760.09, -131.55], [-1764.23, -129.74], [-1768.77, -128.42], [-1767.49, -121.12]], "holes": []}}, {"shape": {"outer": [[-1436.7, -443.85], [-1425.79, -444.36], [-1420.41, -444.74], [-1420.42, -446.21], [-1416.14, -446.48], [-1416.31, -449.58], [-1411.56, -449.85], [-1411.92, -456.15], [-1399.55, -456.86], [-1399.81, -461.3], [-1395.89, -461.52], [-1396.97, -480.2], [-1399.29, -481.81], [-1399.57, -485.0], [-1404.58, -487.07], [-1406.3, -487.02], [-1407.71, -486.28], [-1408.78, -483.66], [-1410.47, -481.61], [-1412.04, -480.07], [-1413.7, -478.74], [-1415.61, -477.49], [-1417.63, -476.79], [-1419.88, -476.14], [-1438.51, -475.6], [-1437.81, -467.46], [-1436.7, -443.85]], "holes": []}}, {"shape": {"outer": [[-1453.64, -424.38], [-1459.47, -424.09], [-1458.17, -398.17], [-1453.36, -398.41], [-1452.98, -390.88], [-1428.95, -392.09], [-1428.89, -390.84], [-1421.32, -391.23], [-1421.62, -397.13], [-1436.36, -396.39], [-1436.28, -394.62], [-1445.51, -394.19], [-1445.64, -396.72], [-1448.34, -396.6], [-1448.61, -402.27], [-1452.57, -402.09], [-1453.64, -424.38]], "holes": []}}, {"shape": {"outer": [[-1411.09, -391.04], [-1399.64, -391.61], [-1399.7, -392.96], [-1398.24, -393.02], [-1398.27, -393.73], [-1404.99, -393.39], [-1411.19, -393.08], [-1411.09, -391.04]], "holes": []}}, {"shape": {"outer": [[-1384.84, -394.42], [-1384.75, -392.43], [-1350.13, -394.04], [-1350.3, -397.62], [-1359.58, -397.18], [-1359.51, -395.6], [-1384.84, -394.42]], "holes": []}}, {"shape": {"outer": [[-1420.41, -444.74], [-1420.35, -443.4], [-1425.73, -443.15], [-1425.79, -444.36], [-1420.41, -444.74]], "holes": []}}, {"shape": {"outer": [[-1416.31, -449.58], [-1416.14, -446.48], [-1404.82, -447.12], [-1404.99, -450.21], [-1411.56, -449.85], [-1416.31, -449.58]], "holes": []}}, {"shape": {"outer": [[-1407.3, -444.86], [-1407.04, -445.78], [-1404.74, -445.85], [-1404.4, -435.95], [-1406.91, -435.86], [-1407.3, -444.86]], "holes": []}}, {"shape": {"outer": [[-1400.41, -428.33], [-1400.55, -430.62], [-1389.87, -431.14], [-1389.91, -431.88], [-1391.54, -431.8], [-1391.86, -438.45], [-1385.64, -438.75], [-1385.42, -434.19], [-1376.81, -434.6], [-1376.86, -435.71], [-1374.66, -435.82], [-1374.62, -434.96], [-1375.98, -434.88], [-1375.55, -425.91], [-1376.81, -425.84], [-1377.07, -432.04], [-1389.01, -431.52], [-1388.89, -428.82], [-1400.41, -428.33]], "holes": []}}, {"shape": {"outer": [[-311.87, 65.91], [-308.18, 69.36], [-289.43, 48.56], [-288.53, 47.1], [-288.0, 45.69], [-288.01, 45.01], [-291.13, 41.92], [-311.88, 64.85], [-311.87, 65.91]], "holes": []}}, {"shape": {"outer": [[-328.02, 82.18], [-324.11, 85.68], [-341.48, 104.93], [-343.92, 102.74], [-343.95, 99.83], [-328.02, 82.18]], "holes": []}}, {"shape": {"outer": [[-319.52, 81.54], [-310.71, 71.89], [-314.76, 68.2], [-323.58, 77.87], [-319.52, 81.54]], "holes": []}}, {"shape": {"outer": [[-387.05, 199.99], [-369.72, 180.9], [-374.98, 176.2], [-391.89, 195.0], [-391.14, 196.38], [-387.05, 199.99]], "holes": []}}, {"shape": {"outer": [[-368.92, 179.91], [-364.5, 174.91], [-369.7, 170.35], [-374.12, 175.35], [-368.92, 179.91]], "holes": []}}, {"shape": {"outer": [[-363.38, 173.62], [-359.94, 169.76], [-364.05, 166.06], [-364.69, 165.75], [-365.46, 165.91], [-368.45, 169.22], [-363.38, 173.62]], "holes": []}}, {"shape": {"outer": [[-357.79, 167.62], [-354.26, 163.62], [-354.59, 163.34], [-347.38, 155.18], [-352.28, 150.88], [-362.4, 162.34], [-362.44, 163.08], [-362.13, 163.82], [-357.79, 167.62]], "holes": []}}, {"shape": {"outer": [[-345.15, 153.05], [-332.67, 139.53], [-336.93, 136.0], [-337.95, 135.41], [-349.92, 148.68], [-345.15, 153.05]], "holes": []}}, {"shape": {"outer": [[-335.71, 134.15], [-334.89, 135.28], [-331.51, 138.35], [-330.84, 137.74], [-330.29, 136.55], [-331.5, 135.56], [-333.0, 134.68], [-334.17, 134.21], [-335.71, 134.15]], "holes": []}}, {"shape": {"outer": [[-390.09, 202.94], [-388.38, 201.09], [-391.71, 198.02], [-392.91, 197.73], [-392.92, 198.44], [-392.6, 199.67], [-391.89, 201.12], [-390.09, 202.94]], "holes": []}}, {"shape": {"outer": [[-398.87, 212.95], [-397.62, 211.25], [-399.17, 209.85], [-400.56, 209.02], [-402.01, 208.56], [-403.56, 208.36], [-403.28, 209.16], [-398.87, 212.95]], "holes": []}}, {"shape": {"outer": [[-419.86, 193.73], [-425.53, 189.17], [-424.64, 188.17], [-423.47, 187.7], [-422.71, 188.37], [-420.93, 190.43], [-420.12, 192.21], [-419.86, 193.73]], "holes": []}}, {"shape": {"outer": [[-414.03, 177.79], [-415.34, 179.61], [-414.26, 180.37], [-412.64, 181.09], [-410.69, 181.5], [-409.93, 181.43], [-414.03, 177.79]], "holes": []}}, {"shape": {"outer": [[-413.01, 176.31], [-408.24, 180.61], [-379.69, 149.1], [-384.47, 144.8], [-413.01, 176.31]], "holes": []}}, {"shape": {"outer": [[-353.88, 120.62], [-372.4, 141.56], [-377.52, 137.07], [-358.99, 116.13], [-353.88, 120.62]], "holes": []}}, {"shape": {"outer": [[-356.25, 113.76], [-357.19, 115.11], [-354.64, 117.56], [-353.46, 118.06], [-353.48, 117.43], [-353.64, 116.68], [-354.05, 115.94], [-356.25, 113.76]], "holes": []}}, {"shape": {"outer": [[-320.89, 126.74], [-322.34, 128.18], [-323.04, 127.29], [-323.59, 126.04], [-323.82, 124.84], [-323.86, 124.07], [-320.89, 126.74]], "holes": []}}, {"shape": {"outer": [[-319.46, 125.46], [-294.44, 97.66], [-299.56, 92.98], [-320.92, 116.97], [-322.24, 118.43], [-323.22, 119.66], [-323.61, 120.44], [-323.76, 121.22], [-319.46, 125.46]], "holes": []}}, {"shape": {"outer": [[-292.95, 95.9], [-265.19, 65.58], [-267.21, 63.71], [-270.14, 62.03], [-271.52, 62.82], [-273.47, 64.55], [-276.23, 67.2], [-298.17, 91.25], [-292.95, 95.9]], "holes": []}}, {"shape": {"outer": [[-226.42, -1.92], [-219.26, -9.7], [-221.34, -11.82], [-228.53, -4.08], [-226.42, -1.92]], "holes": []}}, {"shape": {"outer": [[-236.09, 8.58], [-227.32, -0.95], [-229.55, -2.98], [-238.36, 6.52], [-236.09, 8.58]], "holes": []}}, {"shape": {"outer": [[-246.19, 19.53], [-237.12, 9.69], [-239.41, 7.65], [-248.52, 17.45], [-246.19, 19.53]], "holes": []}}, {"shape": {"outer": [[-256.65, 30.88], [-247.25, 20.69], [-249.56, 18.58], [-258.99, 28.75], [-256.65, 30.88]], "holes": []}}, {"shape": {"outer": [[-262.79, 37.54], [-257.47, 31.77], [-259.83, 29.64], [-265.16, 35.38], [-262.79, 37.54]], "holes": []}}, {"shape": {"outer": [[-468.5, 236.07], [-461.87, 241.89], [-460.15, 242.82], [-455.64, 238.09], [-457.58, 234.31], [-462.78, 229.87], [-468.5, 236.07]], "holes": []}}, {"shape": {"outer": [[-471.92, 257.93], [-481.18, 250.02], [-471.27, 239.21], [-463.07, 246.18], [-465.03, 248.3], [-466.22, 250.94], [-467.14, 252.97], [-468.25, 254.82], [-469.28, 256.16], [-470.45, 257.18], [-471.92, 257.93]], "holes": []}}, {"shape": {"outer": [[-482.27, 251.18], [-475.21, 257.46], [-474.81, 258.41], [-475.73, 258.33], [-476.78, 258.05], [-478.03, 257.39], [-479.75, 256.13], [-482.3, 253.87], [-483.52, 252.57], [-482.27, 251.18]], "holes": []}}, {"shape": {"outer": [[-426.85, 190.19], [-439.85, 204.27], [-436.88, 207.0], [-442.41, 212.98], [-445.28, 210.34], [-458.06, 224.16], [-453.25, 228.58], [-449.28, 230.08], [-421.42, 199.99], [-420.5, 198.13], [-420.15, 196.33], [-426.85, 190.19]], "holes": []}}, {"shape": {"outer": [[-463.57, 268.42], [-461.77, 269.55], [-455.35, 275.62], [-457.28, 277.69], [-459.61, 275.53], [-461.44, 273.75], [-462.05, 273.01], [-462.54, 272.25], [-463.03, 271.27], [-463.48, 269.91], [-463.57, 268.42]], "holes": []}}, {"shape": {"outer": [[-493.0, 263.57], [-487.43, 268.78], [-486.25, 269.68], [-486.15, 268.91], [-486.11, 267.71], [-486.3, 266.69], [-486.82, 265.54], [-487.55, 264.52], [-489.08, 263.0], [-490.93, 261.39], [-493.0, 263.57]], "holes": []}}, {"shape": {"outer": [[-466.42, 287.68], [-463.91, 285.39], [-466.09, 283.33], [-467.36, 282.66], [-469.16, 282.09], [-471.22, 281.77], [-472.73, 281.83], [-466.42, 287.68]], "holes": []}}, {"shape": {"outer": [[-462.81, 265.29], [-461.02, 268.26], [-454.16, 274.41], [-440.07, 258.85], [-446.65, 252.94], [-447.19, 252.68], [-447.82, 252.66], [-448.5, 252.92], [-457.28, 261.42], [-462.22, 264.38], [-462.81, 265.29]], "holes": []}}, {"shape": {"outer": [[-438.82, 256.52], [-430.25, 247.42], [-436.5, 241.59], [-436.99, 241.3], [-437.57, 241.33], [-438.13, 241.72], [-445.16, 249.18], [-445.35, 249.73], [-445.3, 250.33], [-445.04, 250.8], [-438.82, 256.52]], "holes": []}}, {"shape": {"outer": [[-427.58, 244.01], [-420.58, 236.38], [-427.66, 229.93], [-433.91, 236.75], [-434.1, 237.3], [-434.05, 237.89], [-433.79, 238.36], [-427.58, 244.01]], "holes": []}}, {"shape": {"outer": [[-425.19, 227.31], [-418.39, 233.42], [-400.04, 214.27], [-406.84, 208.78], [-409.31, 211.05], [-413.22, 214.46], [-425.19, 227.31]], "holes": []}}, {"shape": {"outer": [[-522.4, 349.22], [-467.42, 289.04], [-473.61, 283.19], [-475.03, 282.51], [-476.1, 283.32], [-478.21, 285.34], [-527.6, 340.19], [-528.73, 341.48], [-529.49, 342.86], [-522.4, 349.22]], "holes": []}}, {"shape": {"outer": [[-536.41, 326.93], [-531.13, 321.32], [-530.76, 320.09], [-530.93, 318.62], [-531.74, 317.94], [-533.06, 317.46], [-534.83, 317.7], [-537.91, 320.03], [-540.13, 322.88], [-540.3, 324.14], [-540.2, 325.76], [-539.09, 327.03], [-537.77, 327.37], [-536.41, 326.93]], "holes": []}}, {"shape": {"outer": [[-542.71, 331.12], [-543.14, 331.61], [-549.5, 325.99], [-543.87, 319.82], [-544.15, 321.59], [-544.18, 323.51], [-543.89, 325.92], [-543.07, 329.03], [-542.53, 330.5], [-542.71, 331.12]], "holes": []}}, {"shape": {"outer": [[-527.48, 314.94], [-526.83, 314.35], [-533.25, 308.66], [-538.87, 314.47], [-537.11, 314.08], [-535.19, 313.94], [-532.76, 314.07], [-529.6, 314.71], [-528.08, 315.14], [-527.48, 314.94]], "holes": []}}, {"shape": {"outer": [[-494.18, 264.93], [-488.13, 270.38], [-487.38, 271.07], [-486.93, 271.93], [-487.16, 272.76], [-494.68, 283.2], [-495.94, 283.92], [-497.87, 283.85], [-499.69, 283.02], [-505.76, 277.56], [-494.18, 264.93]], "holes": []}}, {"shape": {"outer": [[-507.47, 279.84], [-508.31, 280.83], [-501.99, 286.6], [-501.49, 286.45], [-501.2, 286.06], [-501.23, 285.57], [-507.47, 279.84]], "holes": []}}, {"shape": {"outer": [[-503.39, 289.74], [-504.61, 287.84], [-510.55, 283.04], [-516.51, 289.8], [-508.7, 296.17], [-503.39, 289.74]], "holes": []}}, {"shape": {"outer": [[-517.15, 290.59], [-509.55, 296.92], [-512.6, 300.54], [-520.19, 294.21], [-517.15, 290.59]], "holes": []}}, {"shape": {"outer": [[-526.16, 300.56], [-521.11, 294.95], [-513.74, 301.53], [-518.8, 307.14], [-526.16, 300.56]], "holes": []}}, {"shape": {"outer": [[-526.84, 301.69], [-531.7, 307.14], [-525.0, 313.08], [-524.24, 312.83], [-519.83, 307.89], [-526.84, 301.69]], "holes": []}}, {"shape": {"outer": [[-551.57, 328.84], [-550.48, 327.62], [-549.13, 328.79], [-550.21, 330.02], [-551.57, 328.84]], "holes": []}}, {"shape": {"outer": [[-567.48, 332.36], [-565.91, 330.67], [-559.61, 336.09], [-558.42, 337.19], [-558.65, 338.19], [-559.71, 339.22], [-567.48, 332.36]], "holes": []}}, {"shape": {"outer": [[-438.27, 313.09], [-436.07, 310.59], [-462.91, 286.44], [-464.99, 288.75], [-438.27, 313.09]], "holes": []}}, {"shape": {"outer": [[-431.94, 314.57], [-434.11, 316.92], [-414.44, 334.47], [-413.52, 333.28], [-413.12, 331.64], [-431.94, 314.57]], "holes": []}}, {"shape": {"outer": [[-443.11, 311.19], [-444.13, 312.58], [-446.01, 314.6], [-448.76, 315.77], [-454.99, 309.84], [-455.04, 306.76], [-454.32, 303.81], [-452.79, 302.4], [-443.11, 311.19]], "holes": []}}, {"shape": {"outer": [[-443.11, 311.19], [-439.59, 314.58], [-445.29, 320.35], [-459.05, 307.82], [-464.31, 313.54], [-466.32, 309.97], [-469.57, 306.66], [-473.34, 303.2], [-476.4, 302.2], [-477.05, 301.84], [-470.62, 294.8], [-468.7, 294.0], [-466.41, 293.69], [-464.11, 293.66], [-462.14, 293.87], [-452.79, 302.4], [-454.32, 303.81], [-455.04, 306.76], [-454.99, 309.84], [-448.76, 315.77], [-446.01, 314.6], [-444.13, 312.58], [-443.11, 311.19]], "holes": []}}, {"shape": {"outer": [[-521.13, 350.37], [-477.05, 301.84], [-476.4, 302.2], [-473.34, 303.2], [-469.57, 306.66], [-466.32, 309.97], [-464.31, 313.54], [-488.85, 340.59], [-456.98, 369.01], [-473.75, 386.36], [-475.05, 385.43], [-471.2, 381.22], [-470.94, 380.39], [-468.68, 377.94], [-467.59, 372.43], [-465.2, 374.59], [-461.05, 370.06], [-465.27, 366.24], [-468.0, 369.21], [-467.54, 369.63], [-469.14, 371.24], [-470.02, 376.9], [-477.96, 386.26], [-486.36, 383.84], [-488.16, 382.73], [-487.95, 382.08], [-480.14, 373.73], [-486.14, 368.18], [-488.06, 370.13], [-500.38, 359.46], [-506.81, 354.01], [-510.49, 358.32], [-511.39, 359.38], [-521.13, 350.37]], "holes": []}}, {"shape": {"outer": [[-503.16, 363.78], [-500.06, 360.36], [-488.34, 370.89], [-491.44, 374.32], [-503.16, 363.78]], "holes": []}}, {"shape": {"outer": [[-506.71, 365.75], [-506.11, 369.31], [-505.88, 369.88], [-505.41, 370.52], [-496.87, 378.13], [-497.31, 373.95], [-506.71, 365.75]], "holes": []}}, {"shape": {"outer": [[-494.38, 377.09], [-495.22, 374.79], [-493.54, 372.99], [-491.83, 374.39], [-494.38, 377.09]], "holes": []}}, {"shape": {"outer": [[-431.94, 321.39], [-435.18, 325.58], [-435.46, 327.42], [-434.74, 328.75], [-429.13, 333.4], [-427.83, 333.36], [-426.37, 332.84], [-423.07, 329.26], [-431.94, 321.39]], "holes": []}}, {"shape": {"outer": [[-431.94, 321.39], [-435.3, 318.13], [-440.88, 324.47], [-427.78, 336.28], [-417.19, 337.53], [-415.61, 335.94], [-423.07, 329.26], [-426.37, 332.84], [-427.83, 333.36], [-429.13, 333.4], [-434.74, 328.75], [-435.46, 327.42], [-435.18, 325.58], [-431.94, 321.39]], "holes": []}}, {"shape": {"outer": [[-504.55, 117.43], [-503.56, 118.62], [-502.58, 117.3], [-503.23, 117.16], [-504.01, 117.2], [-504.55, 117.43]], "holes": []}}, {"shape": {"outer": [[-501.48, 119.08], [-500.31, 120.09], [-500.13, 119.92], [-499.22, 120.78], [-499.76, 121.27], [-500.57, 120.57], [-500.98, 120.97], [-483.43, 136.84], [-481.63, 134.91], [-498.23, 120.28], [-500.56, 118.35], [-501.48, 119.08]], "holes": []}}, {"shape": {"outer": [[-466.86, 152.06], [-466.16, 149.2], [-469.35, 146.23], [-469.95, 145.88], [-470.65, 145.83], [-471.26, 146.1], [-472.17, 147.13], [-466.86, 152.06]], "holes": []}}, {"shape": {"outer": [[-482.11, 137.94], [-480.33, 136.04], [-475.52, 140.48], [-475.13, 141.03], [-475.04, 141.73], [-475.27, 142.36], [-476.23, 143.39], [-482.11, 137.94]], "holes": []}}, {"shape": {"outer": [[-461.14, 156.87], [-458.44, 156.08], [-439.67, 172.98], [-441.26, 174.75], [-461.14, 156.87]], "holes": []}}, {"shape": {"outer": [[-427.09, 187.86], [-425.93, 186.88], [-425.28, 185.74], [-437.37, 174.92], [-439.13, 176.95], [-427.09, 187.86]], "holes": []}}, {"shape": {"outer": [[-899.85, -337.06], [-901.62, -338.64], [-903.45, -339.95], [-904.68, -338.04], [-905.43, -336.24], [-906.14, -334.23], [-911.0, -314.63], [-911.3, -310.66], [-908.57, -310.6], [-909.76, -311.68], [-909.54, -314.41], [-908.87, -317.18], [-907.9, -320.29], [-906.8, -323.26], [-905.47, -326.64], [-903.97, -329.68], [-902.6, -332.45], [-901.19, -334.99], [-899.85, -337.06]], "holes": []}}, {"shape": {"outer": [[-1355.18, -765.2], [-1350.75, -765.41], [-1350.77, -768.16], [-1350.08, -768.23], [-1350.19, -769.1], [-1351.11, -769.07], [-1351.44, -775.43], [-1347.33, -775.55], [-1346.73, -766.64], [-1348.42, -766.59], [-1347.89, -760.01], [-1346.34, -757.21], [-1348.1, -756.16], [-1348.75, -755.71], [-1348.94, -754.68], [-1348.34, -747.32], [-1350.44, -746.58], [-1350.23, -742.22], [-1350.41, -741.61], [-1351.16, -741.43], [-1352.91, -741.34], [-1353.38, -741.58], [-1353.41, -742.71], [-1354.01, -742.66], [-1355.18, -765.2]], "holes": []}}, {"shape": {"outer": [[-1294.78, -732.65], [-1290.2, -733.77], [-1283.88, -735.9], [-1278.98, -737.8], [-1273.63, -740.5], [-1264.97, -745.37], [-1256.59, -750.77], [-1246.25, -756.67], [-1243.6, -750.95], [-1249.09, -746.98], [-1288.76, -729.22], [-1289.7, -729.98], [-1292.06, -731.41], [-1294.78, -732.65]], "holes": []}}, {"shape": {"outer": [[-1279.74, -739.56], [-1267.53, -746.09], [-1259.38, -751.16], [-1270.13, -746.86], [-1273.46, -745.42], [-1276.5, -743.65], [-1278.47, -741.62], [-1279.74, -739.56]], "holes": []}}, {"shape": {"outer": [[-1259.38, -751.16], [-1255.87, -753.57], [-1251.54, -755.93], [-1251.78, -756.55], [-1263.19, -751.42], [-1331.26, -720.55], [-1339.96, -739.59], [-1342.6, -738.39], [-1334.05, -718.67], [-1333.49, -718.38], [-1332.74, -718.38], [-1296.07, -734.77], [-1292.56, -735.28], [-1287.46, -736.73], [-1282.81, -738.39], [-1279.74, -739.56], [-1278.47, -741.62], [-1276.5, -743.65], [-1273.46, -745.42], [-1270.13, -746.86], [-1259.38, -751.16]], "holes": []}}, {"shape": {"outer": [[-1240.79, -751.16], [-1241.55, -752.15], [-1243.1, -755.8], [-1237.66, -758.25], [-1240.79, -751.16]], "holes": []}}, {"shape": {"outer": [[-192.86, -13.72], [-188.56, -9.7], [-188.11, -10.18], [-187.68, -9.78], [-186.32, -11.23], [-186.78, -11.67], [-186.44, -12.04], [-190.69, -16.01], [-191.09, -15.58], [-191.69, -16.14], [-192.9, -14.85], [-192.31, -14.31], [-192.86, -13.72]], "holes": []}}, {"shape": {"outer": [[-177.64, -9.4], [-181.82, -13.16], [-182.34, -12.59], [-178.16, -8.83], [-177.64, -9.4]], "holes": []}}, {"shape": {"outer": [[-167.23, 9.86], [-166.43, 10.64], [-167.22, 11.45], [-162.45, 16.08], [-159.3, 12.87], [-160.08, 12.1], [-160.89, 12.94], [-164.92, 9.02], [-164.15, 8.23], [-164.92, 7.5], [-167.23, 9.86]], "holes": []}}, {"shape": {"outer": [[-154.79, 21.57], [-155.58, 20.79], [-156.38, 21.61], [-161.15, 16.97], [-158.02, 13.76], [-157.22, 14.51], [-158.04, 15.35], [-154.0, 19.24], [-153.23, 18.47], [-152.47, 19.2], [-154.79, 21.57]], "holes": []}}, {"shape": {"outer": [[-144.85, 31.48], [-143.08, 29.56], [-139.2, 33.12], [-140.97, 35.04], [-144.85, 31.48]], "holes": []}}, {"shape": {"outer": [[-126.61, 46.17], [-127.47, 45.43], [-128.2, 46.26], [-133.3, 41.84], [-131.35, 39.62], [-130.79, 40.11], [-131.14, 40.52], [-128.28, 43.01], [-127.32, 41.9], [-126.75, 42.39], [-126.27, 41.83], [-124.89, 43.03], [-125.27, 43.45], [-124.67, 43.96], [-126.61, 46.17]], "holes": []}}, {"shape": {"outer": [[-135.4, 39.58], [-133.73, 37.74], [-132.01, 39.29], [-133.67, 41.13], [-135.4, 39.58]], "holes": []}}, {"shape": {"outer": [[-120.71, 52.75], [-118.94, 50.84], [-117.45, 52.23], [-119.13, 54.16], [-120.71, 52.75]], "holes": []}}, {"shape": {"outer": [[-647.38, -309.45], [-648.54, -310.53], [-647.46, -311.69], [-648.75, -312.88], [-647.67, -314.04], [-649.47, -315.7], [-642.98, -322.67], [-641.41, -321.21], [-642.84, -319.68], [-641.57, -318.5], [-642.84, -317.16], [-641.42, -315.84], [-647.38, -309.45]], "holes": []}}, {"shape": {"outer": [[-608.4, -348.26], [-609.32, -349.06], [-609.8, -349.44], [-610.5, -349.58], [-619.97, -349.61], [-636.21, -332.28], [-635.75, -323.21], [-635.63, -322.56], [-635.31, -321.94], [-634.72, -321.45], [-633.41, -320.49], [-608.4, -348.26]], "holes": []}}, {"shape": {"outer": [[-587.68, -290.01], [-587.68, -290.71], [-587.02, -291.45], [-585.86, -292.15], [-584.19, -292.81], [-582.72, -293.53], [-581.44, -294.62], [-579.95, -296.36], [-577.97, -298.67], [-576.46, -301.73], [-574.93, -306.22], [-574.09, -308.31], [-573.82, -311.43], [-574.67, -312.79], [-576.24, -313.38], [-578.33, -313.36], [-580.35, -312.98], [-581.8, -312.19], [-582.89, -311.79], [-584.09, -311.71], [-586.72, -311.07], [-588.96, -310.19], [-592.0, -308.37], [-594.23, -307.06], [-596.63, -305.41], [-598.05, -303.62], [-598.81, -301.05], [-599.01, -299.24], [-598.59, -297.16], [-597.66, -294.64], [-595.88, -292.1], [-595.05, -291.36], [-593.1, -290.44], [-590.87, -289.83], [-587.68, -290.01]], "holes": []}}, {"shape": {"outer": [[-325.88, -328.83], [-319.18, -333.43], [-342.82, -354.52], [-347.83, -348.88], [-345.1, -345.3], [-339.78, -340.48], [-325.88, -328.83]], "holes": []}}, {"shape": {"outer": [[-347.95, -352.17], [-348.11, -354.28], [-347.85, -355.98], [-346.88, -357.34], [-344.22, -355.58], [-347.95, -352.17]], "holes": []}}, {"shape": {"outer": [[-379.53, -341.19], [-378.72, -340.34], [-378.05, -340.07], [-376.52, -341.63], [-375.71, -342.93], [-375.22, -344.42], [-375.15, -345.6], [-375.77, -345.47], [-379.53, -341.19]], "holes": []}}, {"shape": {"outer": [[-433.28, -255.07], [-430.98, -252.95], [-433.46, -250.28], [-435.76, -252.4], [-433.28, -255.07]], "holes": []}}, {"shape": {"outer": [[-1248.99, -1106.77], [-1249.67, -1109.74], [-1241.56, -1118.39], [-1239.74, -1116.82], [-1248.99, -1106.77]], "holes": []}}, {"shape": {"outer": [[-1239.86, -1119.15], [-1147.99, -1036.15], [-1147.28, -1037.05], [-1146.0, -1038.69], [-1227.87, -1113.17], [-1233.07, -1117.76], [-1235.41, -1118.84], [-1237.92, -1119.36], [-1239.86, -1119.15]], "holes": []}}, {"shape": {"outer": [[-1200.97, -1051.21], [-1200.44, -1033.41], [-1200.32, -1032.48], [-1199.8, -1031.57], [-1199.07, -1031.05], [-1198.16, -1030.84], [-1197.29, -1030.8], [-1196.39, -1031.32], [-1195.75, -1032.33], [-1195.39, -1033.25], [-1195.09, -1034.18], [-1194.75, -1035.23], [-1194.51, -1036.27], [-1194.32, -1037.38], [-1194.24, -1038.5], [-1194.23, -1040.08], [-1194.33, -1041.66], [-1194.55, -1043.05], [-1194.84, -1044.42], [-1195.3, -1045.8], [-1195.84, -1047.17], [-1196.9, -1048.64], [-1198.08, -1050.04], [-1199.35, -1051.33], [-1200.75, -1052.57], [-1202.4, -1053.65], [-1204.14, -1054.63], [-1205.98, -1055.36], [-1208.02, -1055.89], [-1209.75, -1055.97], [-1211.49, -1055.84], [-1213.35, -1055.57], [-1215.2, -1055.08], [-1216.92, -1054.4], [-1218.63, -1053.6], [-1219.83, -1052.83], [-1220.98, -1051.91], [-1221.98, -1050.84], [-1216.57, -1050.93], [-1216.59, -1052.37], [-1207.87, -1052.51], [-1207.85, -1051.11], [-1200.97, -1051.21]], "holes": []}}, {"shape": {"outer": [[-274.96, -212.15], [-273.8, -212.39], [-272.57, -212.34], [-271.56, -212.07], [-270.73, -211.69], [-268.27, -214.3], [-268.53, -215.13], [-268.56, -215.92], [-268.34, -216.81], [-268.07, -217.32], [-267.71, -217.76], [-267.25, -218.15], [-266.72, -218.46], [-266.03, -218.67], [-265.32, -218.71], [-264.37, -218.5], [-262.81, -219.97], [-268.85, -225.13], [-278.08, -214.82], [-274.96, -212.15]], "holes": []}}, {"shape": {"outer": [[-275.69, -239.44], [-273.77, -241.63], [-257.9, -227.16], [-257.94, -225.7], [-261.0, -222.27], [-266.82, -227.41], [-267.73, -228.17], [-264.03, -232.27], [-269.49, -237.22], [-271.07, -235.34], [-275.69, -239.44]], "holes": []}}, {"shape": {"outer": [[-268.59, -209.27], [-268.31, -208.43], [-268.2, -207.71], [-268.18, -207.08], [-268.26, -206.29], [-268.38, -205.5], [-268.6, -204.82], [-268.89, -204.27], [-268.67, -204.08], [-267.57, -204.07], [-266.47, -203.89], [-265.49, -203.6], [-264.55, -203.1], [-263.81, -202.49], [-263.01, -203.39], [-250.61, -217.38], [-242.04, -209.83], [-241.41, -210.54], [-239.87, -209.14], [-238.92, -210.25], [-255.01, -224.48], [-256.24, -224.47], [-262.62, -217.52], [-262.28, -216.68], [-262.2, -215.69], [-262.33, -215.01], [-262.61, -214.4], [-263.08, -213.77], [-263.7, -213.3], [-264.35, -213.0], [-265.04, -212.87], [-265.75, -212.89], [-266.43, -213.09], [-269.2, -210.32], [-268.59, -209.27]], "holes": []}}, {"shape": {"outer": [[-271.09, -206.22], [-270.88, -206.65], [-270.76, -207.11], [-270.73, -207.58], [-270.79, -208.06], [-271.0, -208.63], [-271.34, -209.13], [-271.78, -209.52], [-272.3, -209.8], [-272.96, -209.94], [-273.64, -209.91], [-274.22, -209.73], [-274.71, -209.44], [-271.09, -206.22]], "holes": []}}, {"shape": {"outer": [[-264.79, -215.71], [-264.86, -215.51], [-264.99, -215.34], [-265.17, -215.21], [-265.38, -215.16], [-265.59, -215.17], [-265.79, -215.24], [-265.96, -215.38], [-266.08, -215.57], [-266.13, -215.8], [-266.1, -216.03], [-265.99, -216.23], [-265.83, -216.39], [-265.61, -216.48], [-265.38, -216.5], [-265.16, -216.43], [-264.99, -216.31], [-264.85, -216.13], [-264.79, -215.93], [-264.79, -215.71]], "holes": []}}], "roads": [{"shape": {"outer": [[-2841.42, -2905.68], [-2859.37, -2925.31], [-2879.97, -2945.87], [-2887.82, -2953.7], [-2909.51, -2974.07], [-2926.2, -2991.15], [-2945.11, -3012.75], [-2971.28, -3038.31], [-2973.37, -3036.17], [-2975.78, -3037.96], [-2981.01, -3030.94], [-2989.51, -3021.96], [-2997.49, -3016.76], [-3008.21, -3012.83], [-3025.22, -3016.44], [-3048.9, -3023.32], [-3064.7, -3026.64], [-3071.61, -3023.67], [-3078.49, -3018.57], [-3086.55, -3000.62], [-3093.81, -2989.19], [-3105.8, -2971.93], [-3118.43, -2955.02], [-3129.59, -2935.92], [-3137.51, -2920.42], [-3143.81, -2915.48], [-3141.96, -2913.12], [-3142.73, -2910.74], [-3136.55, -2908.75], [-3117.7, -2905.54], [-3097.16, -2906.02], [-3074.99, -2908.33], [-3055.88, -2909.76], [-3038.55, -2909.17], [-3021.28, -2907.58], [-3000.03, -2902.92], [-2987.3, -2899.09], [-2986.58, -2901.49], [-2987.29, -2899.09], [-2969.24, -2893.73], [-2885.71, -2865.8], [-2822.73, -2846.36], [-2783.81, -2835.47], [-2783.78, -2835.43], [-2783.75, -2835.45], [-2782.21, -2835.02], [-2781.54, -2837.43], [-2782.2, -2835.02], [-2764.63, -2830.15], [-2744.45, -2826.76], [-2715.32, -2826.36], [-2682.91, -2827.63], [-2616.95, -2831.53], [-2548.13, -2836.73], [-2478.61, -2840.95], [-2451.77, -2841.95], [-2425.67, -2841.16], [-2414.99, -2838.67], [-2405.86, -2833.64], [-2396.07, -2824.87], [-2385.64, -2811.91], [-2375.53, -2793.73], [-2364.95, -2767.73], [-2349.4, -2726.97], [-2339.71, -2707.21], [-2325.54, -2681.16], [-2310.81, -2657.42], [-2291.72, -2625.4], [-2254.28, -2565.26], [-2242.47, -2538.13], [-2234.89, -2512.06], [-2232.8, -2489.62], [-2233.99, -2452.12], [-2242.72, -2338.72], [-2243.65, -2311.13], [-2241.21, -2286.59], [-2233.71, -2259.45], [-2220.36, -2233.32], [-2203.21, -2203.7], [-2177.86, -2152.56], [-2164.81, -2136.58], [-2146.3, -2125.57], [-2122.43, -2119.41], [-2099.07, -2119.06], [-2089.33, -2120.01], [-2075.36, -2120.63], [-2011.46, -2125.13], [-1983.17, -2127.53], [-1974.44, -2128.26], [-1868.63, -2137.21], [-1847.73, -2131.28], [-1832.81, -2121.62], [-1821.07, -2110.06], [-1811.37, -2097.1], [-1807.66, -2092.12], [-1795.43, -2076.62], [-1793.42, -2074.33], [-1785.58, -2067.89], [-1776.02, -2062.52], [-1770.85, -2060.83], [-1773.25, -2058.1], [-1775.07, -2055.86], [-1780.18, -2048.23], [-1786.7, -2038.53], [-1790.8, -2019.53], [-1791.25, -2014.55], [-1796.23, -2014.52], [-1807.58, -2014.22], [-1817.62, -2011.67], [-1834.88, -2002.64], [-1853.56, -1991.27], [-1881.41, -1974.67], [-1908.52, -1958.37], [-1913.05, -1955.65], [-1923.12, -1949.59], [-1942.82, -1937.11], [-1945.92, -1935.14], [-1973.93, -1917.39], [-1995.17, -1906.16], [-2017.1, -1898.13], [-2026.12, -1895.29], [-2025.97, -1894.82], [-2030.59, -1893.88], [-2058.72, -1890.39], [-2070.11, -1889.48], [-2084.44, -1888.73], [-2100.38, -1889.38], [-2130.68, -1893.36], [-2163.03, -1900.41], [-2197.85, -1908.53], [-2212.47, -1911.38], [-2226.36, -1912.57], [-2235.44, -1911.81], [-2252.68, -1908.42], [-2260.57, -1906.06], [-2294.61, -1895.88], [-2317.0, -1888.95], [-2331.12, -1884.89], [-2349.19, -1881.45], [-2366.45, -1879.59], [-2395.97, -1877.9], [-2423.25, -1877.4], [-2428.36, -1877.31], [-2449.07, -1876.93], [-2489.81, -1877.42], [-2512.85, -1878.98], [-2523.26, -1879.68], [-2526.42, -1879.9], [-2537.24, -1881.94], [-2553.39, -1886.62], [-2568.24, -1891.73], [-2587.87, -1898.95], [-2597.23, -1902.69], [-2611.09, -1904.89], [-2625.21, -1905.1], [-2655.57, -1902.1], [-2671.42, -1899.75], [-2670.69, -1894.81], [-2654.96, -1897.13], [-2625.0, -1900.09], [-2611.52, -1899.89], [-2598.57, -1897.84], [-2589.66, -1894.28], [-2569.92, -1887.02], [-2554.9, -1881.86], [-2538.4, -1877.07], [-2527.06, -1874.93], [-2523.6, -1874.69], [-2513.18, -1873.99], [-2490.01, -1872.42], [-2449.06, -1871.93], [-2428.27, -1872.31], [-2423.16, -1872.4], [-2395.78, -1872.9], [-2366.04, -1874.6], [-2348.46, -1876.5], [-2329.96, -1880.02], [-2315.57, -1884.16], [-2293.16, -1891.1], [-2259.14, -1901.27], [-2251.48, -1903.56], [-2234.75, -1906.85], [-2226.37, -1907.55], [-2213.16, -1906.42], [-2198.9, -1903.64], [-2164.13, -1895.53], [-2131.54, -1888.43], [-2100.8, -1884.39], [-2084.41, -1883.72], [-2069.78, -1884.49], [-2058.21, -1885.42], [-2029.78, -1888.94], [-2027.53, -1889.4], [-2026.1, -1883.96], [-2021.22, -1865.88], [-2019.87, -1855.9], [-2019.67, -1823.72], [-2019.64, -1814.82], [-2019.51, -1810.4], [-2018.93, -1790.31], [-2017.21, -1724.36], [-2017.08, -1720.36], [-2020.56, -1720.28], [-2060.82, -1719.36], [-2114.18, -1718.6], [-2118.08, -1718.39], [-2120.37, -1717.88], [-2122.3, -1716.12], [-2123.41, -1713.22], [-2123.57, -1710.28], [-2123.43, -1705.99], [-2121.53, -1653.04], [-2120.97, -1618.59], [-2117.97, -1618.64], [-2120.96, -1618.57], [-2119.58, -1557.94], [-2116.58, -1558.01], [-2119.58, -1557.94], [-2117.91, -1486.24], [-2117.69, -1477.95], [-2148.81, -1477.09], [-2167.07, -1476.57], [-2173.39, -1476.4], [-2173.75, -1483.64], [-2173.96, -1487.84], [-2179.13, -1672.11], [-2179.64, -1681.02], [-2180.61, -1688.36], [-2182.19, -1694.23], [-2185.43, -1698.22], [-2190.41, -1701.99], [-2192.22, -1699.6], [-2194.55, -1700.53], [-2198.1, -1691.62], [-2202.13, -1672.67], [-2203.96, -1665.49], [-2213.4, -1647.15], [-2220.43, -1634.59], [-2228.37, -1622.63], [-2237.14, -1610.71], [-2247.73, -1598.68], [-2248.59, -1597.54], [-2259.48, -1585.87], [-2269.51, -1575.36], [-2273.9, -1571.66], [-2282.88, -1564.1], [-2296.37, -1551.61], [-2299.46, -1548.75], [-2325.31, -1531.81], [-2358.41, -1512.25], [-2372.49, -1508.15], [-2401.99, -1500.85], [-2420.91, -1495.32], [-2439.13, -1489.57], [-2446.59, -1486.29], [-2451.07, -1481.87], [-2452.99, -1478.02], [-2453.8, -1472.88], [-2453.35, -1469.56], [-2451.38, -1465.04], [-2447.45, -1459.84], [-2455.73, -1449.54], [-2466.33, -1436.56], [-2479.32, -1420.96], [-2510.87, -1383.21], [-2514.8, -1378.4], [-2518.97, -1382.24], [-2521.63, -1384.54], [-2555.07, -1413.35], [-2572.28, -1427.64], [-2605.23, -1455.43], [-2611.77, -1460.94], [-2658.08, -1501.07], [-2690.48, -1528.06], [-2704.08, -1539.42], [-2710.39, -1544.4], [-2722.04, -1554.46], [-2790.61, -1612.6], [-2808.9, -1628.94], [-2810.9, -1626.71], [-2809.0, -1629.03], [-2850.53, -1662.82], [-2888.18, -1695.59], [-2905.69, -1711.13], [-2898.16, -1719.83], [-2894.26, -1723.69], [-2889.69, -1728.09], [-2885.08, -1731.29], [-2879.72, -1734.81], [-2874.13, -1738.0], [-2865.83, -1741.15], [-2855.84, -1743.78], [-2850.38, -1745.22], [-2844.72, -1745.85], [-2845.38, -1751.81], [-2851.48, -1751.13], [-2857.37, -1749.59], [-2867.66, -1746.88], [-2876.7, -1743.44], [-2882.86, -1739.93], [-2888.44, -1736.27], [-2893.51, -1732.74], [-2898.45, -1727.98], [-2902.54, -1723.94], [-2912.16, -1712.81], [-2909.89, -1710.85], [-2912.17, -1712.8], [-2918.17, -1705.81], [-2934.32, -1686.97], [-2960.75, -1655.74], [-2974.69, -1637.96], [-2980.91, -1630.77], [-2992.06, -1617.88], [-3000.05, -1607.34], [-3006.55, -1600.09], [-3031.39, -1570.68], [-3038.82, -1561.6], [-3030.83, -1554.29], [-3026.35, -1550.18], [-3030.18, -1545.48], [-3055.37, -1515.52], [-3081.4, -1485.29], [-3088.23, -1477.59], [-3093.5, -1471.74], [-3118.76, -1442.68], [-3143.46, -1414.49], [-3145.12, -1412.54], [-3150.64, -1406.02], [-3148.35, -1404.08], [-3150.62, -1401.42], [-3071.21, -1333.54], [-3064.42, -1327.74], [-3062.15, -1330.4], [-3064.39, -1327.71], [-2989.24, -1265.1], [-2985.51, -1261.61], [-2987.73, -1259.18], [-2990.2, -1256.39], [-3007.09, -1236.51], [-3013.47, -1228.84], [-3036.0, -1201.36], [-3042.71, -1193.02], [-3048.45, -1186.48], [-3095.75, -1130.55], [-3100.74, -1124.54], [-3098.43, -1122.62], [-3100.37, -1120.34], [-3093.89, -1114.82], [-2986.25, -1023.57], [-2980.06, -1018.2], [-2978.09, -1020.46], [-2979.87, -1018.04], [-2971.22, -1011.69], [-2966.15, -1009.67], [-2954.78, -1007.51], [-2905.66, -1002.01], [-2885.04, -1000.15], [-2866.34, -999.45], [-2811.8, -1001.09], [-2808.51, -1001.19], [-2803.76, -1001.33], [-2803.26, -967.85], [-2800.26, -967.89], [-2803.26, -967.8], [-2802.59, -946.29], [-2801.91, -921.33], [-2801.42, -903.09], [-2801.05, -873.69], [-2803.96, -874.06], [-2806.25, -875.7], [-2810.84, -878.97], [-2834.5, -891.25], [-2848.7, -896.88], [-2861.54, -899.83], [-2874.25, -901.4], [-2888.86, -902.01], [-2949.41, -899.2], [-2957.28, -898.96], [-2957.19, -895.97], [-2957.32, -898.96], [-3031.26, -895.78], [-3049.82, -908.09], [-3059.89, -915.6], [-3061.68, -913.19], [-3064.05, -915.04], [-3068.91, -908.79], [-3074.8, -901.22], [-3081.77, -892.26], [-3079.4, -890.42], [-3079.25, -887.42], [-3050.4, -888.83], [-3031.96, -889.74], [-2960.06, -892.84], [-2959.86, -887.97], [-2959.71, -884.24], [-2958.31, -850.43], [-2956.79, -813.26], [-2956.34, -803.76], [-2953.34, -803.9], [-2956.34, -803.75], [-2955.89, -795.0], [-2952.82, -719.71], [-2952.62, -710.89], [-2952.45, -702.64], [-2952.21, -694.56], [-2955.51, -678.9], [-2960.17, -668.53], [-2965.68, -660.65], [-2971.47, -654.35], [-2979.7, -647.83], [-2991.13, -641.39], [-2989.65, -638.78], [-2991.43, -641.19], [-3004.41, -631.67], [-3009.94, -628.31], [-3014.19, -625.73], [-3020.82, -619.31], [-3018.73, -617.15], [-3021.02, -619.09], [-3030.3, -608.1], [-3035.38, -599.84], [-3040.79, -590.69], [-3044.97, -576.8], [-3046.69, -565.98], [-3046.66, -553.27], [-3044.71, -541.52], [-3040.36, -528.3], [-3035.49, -518.97], [-3033.97, -516.07], [-3031.69, -513.36], [-3041.26, -517.29], [-3050.85, -519.77], [-3068.51, -522.88], [-3075.55, -523.26], [-3089.75, -523.18], [-3098.51, -522.6], [-3104.22, -522.95], [-3107.0, -523.55], [-3117.74, -527.43], [-3123.53, -530.39], [-3129.82, -536.65], [-3134.05, -532.4], [-3127.09, -525.48], [-3120.14, -521.92], [-3108.65, -517.77], [-3105.04, -516.99], [-3098.5, -516.59], [-3089.53, -517.19], [-3075.7, -517.26], [-3069.19, -516.91], [-3052.12, -513.91], [-3043.16, -511.59], [-3031.85, -506.94], [-3025.02, -503.36], [-3016.71, -498.36], [-3012.22, -495.27], [-3004.84, -489.36], [-2961.14, -452.02], [-2961.14, -452.02], [-2944.24, -437.44], [-2921.43, -422.72], [-2906.98, -414.18], [-2899.02, -409.9], [-2904.18, -406.24], [-2905.4, -405.38], [-2910.34, -402.61], [-2921.57, -397.84], [-2938.24, -392.52], [-2950.3, -389.32], [-2960.14, -387.3], [-2971.74, -385.87], [-2989.73, -385.35], [-2998.49, -385.75], [-3033.95, -389.83], [-3034.29, -386.85], [-3037.52, -385.5], [-3033.43, -375.73], [-3031.89, -372.03], [-3020.62, -354.59], [-3006.64, -339.78], [-2998.96, -332.5], [-2994.86, -325.59], [-2994.09, -323.31], [-2994.27, -321.13], [-2994.77, -314.8], [-2996.1, -306.02], [-2996.52, -303.24], [-3001.08, -273.44], [-3006.06, -241.54], [-3006.56, -238.65], [-3007.18, -234.71], [-3011.55, -235.38], [-3068.97, -244.26], [-3069.77, -239.07], [-3072.74, -239.54], [-3074.03, -231.37], [-3074.65, -227.47], [-3086.47, -148.98], [-3080.54, -148.09], [-3068.72, -226.56], [-3068.11, -230.43], [-3067.63, -233.43], [-3013.16, -225.0], [-3008.83, -224.34], [-3009.41, -220.78], [-3009.83, -218.04], [-3021.07, -147.11], [-3014.16, -146.01], [-3002.92, -216.95], [-3002.49, -219.68], [-3001.91, -223.27], [-2997.49, -222.58], [-2977.78, -219.52], [-2969.7, -218.27], [-2945.18, -214.47], [-2945.78, -211.14], [-2946.16, -208.96], [-2952.49, -173.49], [-2949.04, -172.88], [-2952.51, -173.35], [-2953.26, -167.86], [-2957.08, -139.73], [-2950.15, -138.79], [-2946.32, -166.92], [-2946.06, -168.86], [-2902.8, -162.05], [-2889.74, -160.06], [-2888.68, -166.98], [-2901.73, -168.97], [-2944.97, -175.78], [-2939.27, -207.74], [-2938.88, -209.92], [-2938.26, -213.4], [-2876.88, -203.89], [-2868.43, -202.59], [-2860.03, -201.29], [-2857.31, -200.87], [-2843.84, -198.79], [-2843.67, -199.89], [-2833.23, -195.35], [-2778.48, -186.7], [-2771.95, -187.84], [-2772.17, -187.07], [-2767.11, -185.61], [-2758.49, -184.56], [-2746.04, -184.47], [-2741.97, -184.57], [-2736.67, -184.7], [-2732.69, -184.79], [-2732.81, -190.04], [-2732.69, -184.79], [-2722.42, -185.04], [-2706.24, -185.43], [-2706.32, -188.9], [-2698.23, -187.6], [-2677.62, -188.44], [-2632.0, -190.45], [-2623.46, -190.7], [-2623.51, -192.45], [-2623.46, -190.7], [-2616.17, -190.93], [-2596.59, -191.66], [-2583.06, -191.97], [-2574.09, -191.89], [-2564.45, -191.68], [-2549.72, -192.12], [-2539.86, -192.29], [-2539.89, -194.04], [-2539.82, -190.54], [-2530.75, -190.71], [-2527.75, -190.79], [-2512.9, -191.18], [-2497.3, -191.58], [-2491.69, -191.11], [-2487.4, -189.87], [-2477.58, -185.28], [-2470.69, -182.33], [-2466.48, -180.57], [-2465.13, -183.8], [-2465.65, -182.13], [-2463.53, -181.47], [-2462.16, -179.47], [-2460.58, -180.56], [-2457.06, -179.47], [-2449.32, -178.49], [-2443.18, -178.71], [-2435.66, -180.36], [-2430.15, -182.43], [-2418.33, -187.18], [-2409.41, -190.19], [-2401.13, -192.77], [-2388.86, -195.29], [-2378.77, -196.91], [-2367.96, -198.23], [-2352.8, -200.02], [-2332.76, -202.21], [-2319.54, -203.11], [-2307.57, -203.91], [-2307.22, -199.94], [-2308.12, -201.44], [-2321.26, -193.48], [-2344.25, -180.42], [-2403.83, -153.09], [-2418.02, -146.34], [-2428.71, -141.29], [-2433.72, -137.4], [-2438.96, -131.96], [-2441.09, -129.01], [-2443.54, -123.85], [-2444.85, -118.15], [-2444.83, -103.49], [-2444.4, -86.42], [-2444.28, -81.38], [-2443.72, -68.35], [-2443.08, -53.3], [-2442.83, -46.07], [-2441.93, -19.63], [-2441.38, -11.74], [-2444.51, -11.6], [-2450.47, -11.41], [-2558.79, -7.42], [-2593.11, -4.83], [-2623.19, -2.53], [-2645.87, -1.27], [-2653.86, 0.58], [-2658.9, 2.57], [-2666.5, 6.96], [-2673.76, 13.78], [-2679.26, 21.93], [-2682.34, 27.62], [-2682.71, 28.29], [-2688.66, 39.38], [-2693.83, 50.69], [-2699.96, 48.57], [-2709.35, 45.52], [-2719.06, 42.02], [-2729.12, 39.04], [-2737.22, 37.32], [-2747.35, 36.34], [-2761.25, 36.47], [-2789.95, 38.03], [-2790.09, 33.46], [-2790.41, 26.69], [-2790.28, 15.43], [-2789.53, 15.22], [-2786.55, 13.49], [-2784.13, 11.03], [-2782.44, 8.03], [-2781.59, 4.71], [-2781.64, 1.21], [-2782.95, -2.82], [-2785.51, -6.23], [-2789.03, -8.66], [-2793.16, -9.82], [-2797.44, -9.58], [-2801.41, -7.99], [-2802.4, -7.14], [-2806.09, -10.1], [-2808.04, -11.81], [-2814.02, -14.75], [-2864.83, -13.82], [-2887.97, -14.14], [-2911.75, -12.83], [-2941.8, -11.39], [-2942.4, -23.43], [-2943.72, -56.8], [-2944.04, -75.2], [-2944.11, -78.78], [-2944.14, -80.74], [-2951.14, -80.63], [-2951.1, -78.66], [-2951.04, -75.08], [-2950.71, -56.6], [-2949.4, -23.12], [-2948.64, -8.05], [-2945.15, -8.22], [-2948.64, -8.04], [-2948.32, -1.92], [-2947.89, 6.13], [-2947.71, 11.08], [-2946.89, 32.55], [-2946.52, 42.38], [-2946.41, 46.04], [-2961.07, 46.27], [-2985.44, 47.45], [-3037.65, 49.39], [-3040.4, 50.14], [-3042.93, 53.41], [-3042.83, 56.71], [-3042.69, 58.03], [-3042.32, 63.37], [-3042.25, 65.8], [-3039.59, 149.21], [-3039.31, 158.15], [-3035.81, 158.04], [-3035.68, 161.54], [-2905.02, 156.53], [-2904.97, 160.43], [-2903.32, 228.14], [-2903.23, 239.1], [-2903.46, 246.67], [-2905.45, 255.71], [-2916.53, 281.83], [-2918.4, 287.72], [-2921.13, 298.27], [-2921.72, 310.5], [-2921.34, 322.48], [-2921.16, 328.19], [-2919.58, 343.39], [-2917.13, 354.65], [-2913.8, 362.28], [-2907.9, 373.29], [-2901.73, 369.98], [-2907.49, 359.22], [-2910.44, 352.48], [-2912.66, 342.28], [-2914.17, 327.72], [-2914.34, 322.26], [-2914.71, 310.56], [-2914.18, 299.33], [-2911.67, 289.66], [-2909.96, 284.26], [-2898.75, 257.85], [-2896.49, 247.54], [-2896.23, 239.18], [-2896.32, 228.03], [-2897.98, 160.3], [-2898.02, 156.25], [-2896.31, 156.18], [-2893.95, 156.08], [-2742.77, 149.75], [-2704.94, 148.17], [-2698.3, 147.93], [-2698.18, 152.66], [-2694.28, 247.36], [-2693.86, 256.45], [-2693.2, 282.78], [-2693.21, 289.76], [-2693.24, 302.92], [-2698.06, 313.92], [-2700.26, 318.01], [-2711.66, 336.1], [-2705.74, 339.83], [-2694.21, 321.54], [-2691.76, 316.98], [-2686.25, 304.39], [-2686.21, 289.78], [-2686.19, 282.7], [-2686.87, 256.2], [-2687.29, 247.06], [-2691.19, 152.43], [-2691.3, 147.74], [-2684.31, 147.6], [-2580.16, 143.36], [-2573.12, 143.16], [-2461.73, 138.56], [-2442.58, 137.76], [-2435.75, 137.31], [-2435.45, 142.37], [-2434.94, 150.74], [-2434.23, 168.72], [-2433.74, 182.57], [-2432.17, 210.93], [-2431.29, 231.8], [-2430.6, 248.09], [-2430.45, 254.23], [-2429.24, 269.81], [-2429.52, 280.68], [-2437.57, 288.93], [-2459.49, 289.87], [-2501.91, 291.45], [-2501.68, 297.45], [-2459.25, 295.86], [-2434.94, 294.82], [-2425.98, 285.64], [-2420.0, 289.58], [-2416.15, 283.74], [-2422.49, 279.56], [-2422.24, 269.63], [-2423.46, 253.87], [-2423.53, 250.83], [-2419.6, 250.66], [-2416.38, 250.5], [-2410.11, 250.35], [-2365.32, 248.82], [-2343.57, 248.23], [-2336.41, 248.42], [-2332.27, 249.39], [-2329.67, 250.11], [-2328.24, 252.12], [-2326.83, 254.64], [-2325.88, 256.44], [-2324.84, 258.13], [-2323.1, 260.37], [-2320.81, 262.46], [-2319.16, 263.83], [-2316.63, 265.59], [-2312.95, 266.76], [-2308.92, 267.51], [-2304.8, 267.36], [-2301.14, 266.83], [-2297.22, 265.26], [-2294.01, 263.28], [-2291.29, 260.28], [-2290.7, 258.8], [-2289.86, 256.62], [-2289.64, 252.98], [-2290.45, 249.68], [-2291.75, 247.32], [-2293.19, 245.12], [-2295.59, 244.02], [-2297.59, 243.53], [-2303.48, 243.14], [-2308.77, 243.44], [-2318.35, 243.91], [-2327.52, 244.47], [-2330.79, 243.57], [-2335.64, 242.44], [-2343.57, 242.23], [-2365.51, 242.82], [-2410.29, 244.36], [-2416.6, 244.51], [-2419.87, 244.67], [-2423.74, 244.83], [-2424.3, 231.51], [-2425.18, 210.59], [-2426.75, 182.25], [-2427.24, 168.46], [-2427.95, 150.39], [-2428.46, 141.95], [-2428.76, 136.98], [-2422.88, 136.82], [-2395.73, 136.17], [-2389.15, 136.68], [-2376.39, 139.93], [-2369.96, 142.52], [-2351.36, 152.01], [-2341.75, 155.87], [-2334.38, 158.44], [-2323.53, 161.18], [-2315.63, 162.85], [-2303.23, 164.3], [-2283.92, 163.52], [-2273.15, 162.23], [-2254.44, 157.76], [-2231.83, 151.18], [-2207.94, 144.44], [-2193.47, 141.7], [-2177.97, 139.13], [-2167.11, 138.01], [-2156.85, 137.4], [-2136.32, 137.28], [-2119.63, 137.88], [-2097.78, 139.61], [-2069.07, 141.58], [-2054.97, 141.82], [-2042.89, 141.62], [-2032.31, 141.52], [-2021.73, 140.97], [-2010.64, 140.16], [-1991.09, 138.59], [-1976.35, 136.97], [-1968.25, 135.9], [-1960.25, 134.27], [-1952.76, 132.22], [-1942.0, 128.0], [-1933.7, 123.53], [-1926.99, 119.18], [-1920.03, 113.94], [-1907.02, 104.17], [-1894.35, 94.71], [-1884.94, 87.6], [-1876.2, 81.75], [-1867.72, 78.06], [-1855.04, 74.01], [-1844.26, 70.67], [-1833.91, 68.32], [-1820.53, 66.59], [-1806.97, 65.74], [-1783.85, 65.66], [-1769.64, 64.22], [-1751.95, 61.47], [-1729.5, 58.19], [-1713.05, 56.74], [-1703.1, 56.29], [-1693.44, 56.3], [-1684.88, 57.61], [-1676.54, 60.55], [-1656.63, 70.73], [-1647.97, 75.27], [-1638.52, 79.45], [-1629.85, 83.56], [-1622.89, 86.63], [-1617.25, 91.19], [-1609.96, 98.16], [-1600.58, 109.25], [-1592.25, 120.37], [-1587.97, 128.31], [-1583.44, 136.71], [-1580.88, 141.24], [-1577.63, 145.61], [-1572.79, 148.82], [-1567.94, 149.99], [-1564.51, 149.48], [-1560.7, 147.57], [-1557.76, 144.77], [-1555.62, 139.97], [-1554.13, 133.75], [-1553.95, 126.07], [-1554.01, 118.91], [-1554.26, 109.12], [-1554.28, 104.06], [-1553.81, 100.32], [-1552.86, 97.9], [-1551.99, 96.99], [-1550.3, 95.95], [-1547.65, 94.89], [-1544.17, 94.45], [-1538.82, 94.12], [-1515.44, 93.01], [-1487.04, 91.59], [-1473.81, 90.97], [-1457.95, 89.91], [-1455.34, 89.84], [-1450.76, 89.65], [-1450.3, 99.1], [-1449.34, 122.05], [-1449.14, 126.6], [-1449.03, 129.77], [-1448.41, 140.38], [-1448.29, 145.14], [-1450.43, 159.03], [-1444.5, 159.95], [-1442.28, 145.53], [-1442.41, 140.14], [-1443.03, 129.49], [-1443.14, 126.37], [-1443.34, 121.79], [-1444.3, 98.83], [-1444.94, 85.94], [-1444.44, 85.92], [-1445.5, 54.1], [-1445.7, 45.97], [-1440.44, 45.71], [-1348.31, 41.29], [-1303.92, 39.15], [-1192.01, 34.15], [-1186.59, 33.37], [-1186.2, 38.87], [-1185.01, 59.61], [-1184.21, 73.46], [-1182.73, 99.16], [-1181.96, 113.89], [-1181.39, 117.33], [-1180.12, 120.69], [-1177.79, 123.68], [-1174.22, 125.57], [-1168.93, 125.3], [-1143.73, 123.99], [-1107.26, 122.1], [-1093.8, 121.4], [-1094.16, 114.41], [-1107.63, 115.11], [-1144.09, 117.0], [-1169.29, 118.31], [-1172.65, 118.48], [-1173.19, 118.2], [-1173.95, 117.22], [-1174.6, 115.5], [-1174.99, 113.14], [-1175.74, 98.77], [-1177.23, 73.05], [-1178.02, 59.21], [-1179.22, 38.42], [-1179.64, 32.4], [-1174.1, 31.66], [-1139.87, 29.97], [-1132.65, 29.69], [-1092.66, 27.59], [-1056.94, 25.87], [-1030.47, 24.75], [-1024.7, 24.62], [-1024.32, 30.43], [-1024.26, 31.82], [-1023.24, 55.23], [-1021.96, 84.46], [-1021.28, 100.11], [-1020.74, 112.54], [-1020.7, 113.36], [-1019.23, 146.92], [-1018.97, 153.08], [-1018.4, 166.23], [-1018.24, 169.78], [-1011.24, 169.47], [-1011.4, 165.93], [-1011.97, 152.77], [-1012.24, 146.61], [-1013.7, 113.03], [-1013.74, 112.21], [-1014.29, 99.8], [-1014.97, 84.16], [-1016.24, 54.93], [-1017.26, 31.5], [-1017.33, 30.05], [-1017.69, 24.49], [-1013.35, 24.42], [-985.86, 22.26], [-967.7, 21.23], [-952.29, 20.23], [-951.38, 20.2], [-916.37, 19.13], [-910.96, 19.91], [-910.6, 20.02], [-905.68, 21.52], [-900.57, 24.01], [-897.72, 26.0], [-895.86, 27.3], [-889.09, 33.39], [-893.89, 38.64], [-894.69, 39.73], [-951.52, 103.45], [-953.99, 105.55], [-957.39, 107.84], [-962.5, 110.86], [-969.01, 112.7], [-967.92, 116.55], [-960.92, 114.56], [-955.26, 111.23], [-951.58, 108.74], [-948.72, 106.32], [-891.59, 42.26], [-890.79, 41.19], [-886.12, 36.07], [-884.1, 37.89], [-871.17, 49.55], [-859.82, 59.79], [-863.01, 63.34], [-864.68, 65.19], [-917.6, 123.95], [-931.93, 139.85], [-943.54, 152.75], [-951.55, 161.66], [-947.09, 165.67], [-939.08, 156.76], [-927.47, 143.87], [-914.36, 129.31], [-912.16, 131.28], [-895.8, 145.82], [-888.19, 152.59], [-887.58, 153.13], [-914.72, 183.9], [-917.09, 186.59], [-913.66, 189.61], [-911.29, 186.92], [-884.16, 156.17], [-883.81, 156.49], [-876.06, 163.38], [-853.07, 183.81], [-850.84, 185.8], [-870.2, 207.3], [-867.97, 209.31], [-870.21, 207.31], [-874.63, 212.23], [-877.36, 215.25], [-872.9, 219.27], [-870.17, 216.25], [-867.71, 213.5], [-865.66, 215.27], [-822.83, 252.25], [-818.91, 247.71], [-861.74, 210.73], [-863.69, 209.04], [-845.15, 188.45], [-847.38, 186.44], [-845.15, 188.45], [-795.76, 133.59], [-791.7, 129.08], [-787.79, 124.73], [-783.66, 128.45], [-739.18, 168.55], [-722.12, 183.97], [-708.97, 195.79], [-701.87, 201.9], [-683.46, 218.79], [-667.95, 232.78], [-646.8, 251.84], [-643.17, 255.6], [-646.43, 259.18], [-648.82, 261.82], [-661.77, 276.2], [-675.39, 291.3], [-688.06, 305.37], [-693.93, 311.89], [-707.33, 326.76], [-702.13, 331.45], [-688.73, 316.57], [-682.86, 310.06], [-670.19, 295.99], [-656.57, 280.89], [-643.62, 266.52], [-641.24, 263.88], [-638.16, 260.49], [-633.66, 264.67], [-615.24, 281.34], [-595.03, 299.61], [-587.48, 306.72], [-556.74, 335.13], [-555.31, 336.37], [-549.71, 341.14], [-543.17, 346.76], [-538.29, 351.25], [-529.99, 358.87], [-498.89, 387.47], [-489.54, 396.06], [-484.81, 390.9], [-494.15, 382.32], [-525.25, 353.72], [-533.55, 346.1], [-535.92, 343.92], [-533.25, 340.96], [-529.77, 337.11], [-519.74, 326.03], [-516.28, 322.19], [-493.02, 296.46], [-490.04, 293.16], [-477.13, 278.88], [-473.55, 274.92], [-462.54, 284.88], [-460.53, 286.7], [-430.09, 314.23], [-408.62, 333.65], [-407.8, 334.39], [-406.71, 335.37], [-404.73, 337.17], [-387.45, 352.81], [-382.01, 357.73], [-386.35, 362.69], [-411.43, 390.42], [-421.32, 401.36], [-423.2, 403.44], [-442.15, 424.4], [-448.98, 431.96], [-453.95, 437.46], [-448.76, 442.16], [-443.79, 436.66], [-436.95, 429.09], [-418.01, 408.14], [-416.13, 406.06], [-406.24, 395.12], [-381.12, 367.34], [-376.81, 362.42], [-373.8, 365.15], [-351.61, 385.22], [-350.73, 386.02], [-329.76, 404.98], [-322.95, 411.14], [-319.17, 414.56], [-311.89, 421.15], [-299.29, 432.55], [-283.85, 446.5], [-282.97, 447.3], [-280.75, 449.31], [-266.0, 462.65], [-259.7, 468.36], [-257.38, 470.45], [-247.31, 479.56], [-237.1, 488.79], [-231.85, 491.74], [-228.44, 492.06], [-224.74, 491.47], [-221.3, 489.43], [-220.63, 488.59], [-190.73, 456.32], [-187.64, 452.99], [-166.02, 429.61], [-164.77, 428.26], [-163.38, 426.77], [-159.29, 422.33], [-155.02, 426.19], [-124.77, 453.47], [-101.06, 474.87], [-89.43, 485.38], [-84.19, 490.29], [-34.07, 536.13], [-27.43, 541.92], [-21.3, 547.95], [40.4, 604.21], [47.68, 610.44], [53.69, 615.96], [157.22, 710.58], [188.9, 739.12], [193.34, 743.35], [189.38, 747.65], [187.06, 750.13], [165.93, 773.82], [171.16, 778.48], [192.22, 754.85], [194.51, 752.42], [198.42, 748.17], [202.5, 752.02], [339.13, 874.68], [342.89, 878.18], [338.83, 882.62], [336.52, 885.17], [277.9, 949.44], [283.07, 954.16], [341.69, 889.88], [344.01, 887.34], [348.03, 882.93], [352.08, 886.66], [412.27, 942.12], [408.22, 946.76], [405.87, 949.43], [346.81, 1017.01], [346.49, 1017.38], [303.71, 978.7], [299.69, 983.15], [344.72, 1023.88], [385.78, 1061.01], [417.29, 1089.5], [421.17, 1093.02], [389.67, 1127.91], [394.13, 1131.94], [427.63, 1094.82], [492.89, 1022.53], [495.37, 1019.78], [500.11, 1023.87], [509.61, 1032.1], [525.07, 1045.5], [539.51, 1058.02], [553.35, 1070.9], [556.28, 1073.45], [553.08, 1077.0], [550.27, 1080.13], [537.23, 1094.64], [493.74, 1143.01], [484.72, 1153.03], [483.87, 1153.67], [483.14, 1153.86], [482.4, 1153.75], [481.4, 1153.16], [462.49, 1136.28], [458.49, 1140.75], [477.83, 1158.0], [480.35, 1159.53], [483.47, 1159.96], [486.52, 1159.19], [488.79, 1157.48], [498.2, 1147.02], [541.69, 1098.65], [554.73, 1084.14], [557.54, 1081.02], [560.88, 1077.3], [567.82, 1082.86], [570.57, 1085.34], [581.79, 1094.52], [617.31, 1127.35], [637.16, 1145.53], [640.78, 1149.45], [637.29, 1153.23], [634.38, 1156.32], [619.56, 1172.06], [615.81, 1176.18], [609.3, 1185.64], [607.77, 1190.14], [608.03, 1190.23], [606.96, 1190.97], [604.35, 1193.29], [599.44, 1198.29], [596.27, 1201.87], [582.89, 1216.97], [575.63, 1225.13], [558.35, 1244.54], [545.96, 1258.02], [550.38, 1262.08], [562.8, 1248.57], [580.11, 1229.12], [587.38, 1220.96], [600.76, 1205.85], [603.82, 1202.38], [607.71, 1198.43], [607.74, 1198.85], [608.21, 1201.31], [613.27, 1217.55], [671.8, 1400.0], [674.59, 1408.94], [678.41, 1407.75], [674.6, 1408.97], [690.83, 1459.49], [722.2, 1557.95], [742.68, 1623.49], [745.22, 1631.63], [747.24, 1638.23], [748.7, 1643.03], [750.71, 1648.42], [753.35, 1654.59], [756.36, 1658.59], [795.89, 1703.0], [801.77, 1709.62], [806.8, 1715.38], [846.49, 1764.35], [851.96, 1770.11], [856.88, 1775.91], [907.56, 1833.04], [912.67, 1838.56], [919.29, 1846.0], [1033.83, 1976.28], [1064.44, 2018.73], [1073.15, 2026.73], [1081.82, 2035.31], [1088.43, 2041.59], [1101.37, 2053.51], [1121.92, 2076.14], [1128.1, 2086.67], [1134.6, 2094.87], [1149.45, 2114.01], [1182.37, 2148.39], [1192.74, 2170.15], [1198.1, 2181.77], [1199.45, 2185.21], [1201.44, 2190.24], [1216.69, 2232.91], [1225.88, 2255.74], [1242.65, 2299.12], [1244.41, 2303.65], [1248.14, 2302.21], [1244.89, 2303.52], [1249.71, 2315.4], [1251.99, 2321.14], [1254.01, 2325.42], [1265.21, 2346.37], [1276.83, 2368.08], [1281.65, 2377.17], [1284.74, 2375.53], [1281.68, 2377.22], [1298.77, 2408.32], [1293.61, 2412.36], [1275.53, 2425.02], [1258.47, 2442.76], [1252.23, 2451.68], [1254.69, 2453.4], [1252.23, 2451.69], [1244.99, 2462.07], [1238.8, 2468.82], [1230.64, 2475.28], [1217.2, 2484.24], [1197.23, 2496.62], [1181.83, 2504.88], [1175.35, 2511.37], [1169.66, 2500.68], [1166.63, 2483.89], [1163.72, 2472.8], [1162.56, 2464.77], [1162.56, 2459.56], [1163.78, 2454.57], [1165.4, 2453.14], [1167.96, 2447.26], [1175.69, 2437.61], [1189.47, 2424.42], [1193.67, 2420.05], [1204.06, 2409.25], [1210.77, 2399.91], [1213.52, 2390.02], [1207.74, 2388.41], [1205.27, 2397.28], [1199.44, 2405.4], [1189.35, 2415.89], [1185.23, 2420.17], [1171.25, 2433.55], [1162.78, 2444.14], [1160.44, 2449.52], [1158.4, 2451.31], [1156.56, 2458.84], [1156.56, 2465.2], [1157.83, 2473.99], [1160.77, 2485.19], [1163.92, 2502.68], [1170.89, 2515.74], [1170.61, 2515.99], [1170.06, 2517.04], [1165.92, 2524.79], [1163.29, 2532.93], [1162.12, 2541.62], [1163.66, 2553.44], [1166.2, 2561.82], [1168.24, 2568.49], [1171.01, 2576.78], [1177.21, 2595.31], [1184.4, 2621.93], [1191.5, 2641.73], [1201.14, 2659.58], [1205.96, 2666.68], [1221.09, 2688.94], [1237.26, 2705.27], [1239.98, 2707.41], [1245.15, 2711.48], [1255.12, 2716.42], [1266.42, 2718.66], [1275.76, 2719.88], [1290.52, 2720.14], [1326.37, 2718.79], [1383.31, 2717.52], [1405.49, 2716.0], [1405.29, 2713.01], [1405.51, 2716.0], [1453.09, 2712.53], [1457.8, 2712.19], [1475.16, 2744.38], [1478.65, 2750.85], [1483.1, 2759.12], [1485.8, 2764.14], [1497.88, 2785.41], [1509.69, 2806.81], [1505.04, 2809.62], [1503.64, 2810.38], [1502.22, 2810.68], [1498.23, 2811.14], [1494.74, 2811.29], [1412.4, 2815.39], [1374.28, 2816.03], [1361.19, 2816.18], [1342.85, 2813.21], [1337.66, 2811.88], [1321.99, 2807.82], [1292.41, 2801.69], [1281.73, 2797.68], [1279.62, 2803.3], [1290.73, 2807.47], [1320.63, 2813.66], [1336.16, 2817.69], [1341.62, 2819.09], [1360.74, 2822.18], [1374.36, 2822.03], [1412.6, 2821.39], [1495.02, 2817.28], [1498.7, 2817.12], [1503.19, 2816.61], [1505.32, 2816.16], [1504.69, 2813.22], [1506.12, 2815.86], [1508.02, 2814.83], [1515.69, 2810.19], [1514.14, 2807.62], [1517.2, 2805.93], [1505.49, 2784.7], [1511.27, 2781.68], [1521.15, 2776.51], [1547.05, 2762.96], [1550.47, 2761.24], [1588.85, 2741.95], [1595.0, 2739.15], [1597.41, 2738.06], [1599.89, 2737.62], [1605.74, 2737.25], [1605.55, 2734.25], [1609.54, 2734.06], [1609.25, 2727.97], [1607.94, 2701.05], [1606.01, 2662.28], [1605.45, 2650.94], [1604.44, 2626.11], [1604.33, 2623.58], [1603.12, 2593.81], [1601.82, 2561.69], [1600.61, 2531.89], [1600.51, 2529.6], [1599.62, 2507.74], [1598.67, 2485.29], [1594.68, 2485.46], [1598.67, 2485.19], [1596.57, 2454.45], [1595.23, 2434.76], [1595.08, 2430.72], [1595.08, 2430.72], [1594.85, 2412.12], [1594.9, 2396.61], [1596.9, 2369.12], [1600.46, 2346.72], [1605.48, 2323.71], [1610.17, 2311.2], [1615.41, 2297.23], [1621.63, 2283.15], [1634.89, 2249.67], [1639.84, 2227.67], [1642.3, 2212.66], [1644.34, 2190.69], [1642.16, 2157.81], [1639.81, 2122.43], [1636.29, 2088.89], [1632.72, 2054.94], [1629.02, 2019.81], [1624.12, 1973.25], [1623.17, 1960.35], [1622.0, 1944.61], [1623.9, 1935.73], [1619.99, 1934.89], [1621.73, 1935.04], [1621.75, 1934.85], [1623.99, 1934.79], [1623.67, 1922.44], [1625.61, 1920.09], [1627.26, 1919.05], [1629.4, 1919.15], [1633.77, 1923.01], [1635.94, 1920.55], [1636.0, 1920.57], [1633.89, 1923.12], [1654.72, 1940.42], [1657.15, 1942.45], [1665.5, 1949.71], [1677.87, 1960.56], [1694.34, 1975.53], [1701.53, 1982.03], [1710.51, 1990.28], [1716.08, 1995.38], [1719.62, 1991.5], [1716.08, 1995.38], [1726.86, 2005.21], [1730.4, 2001.33], [1727.01, 2005.34], [1739.82, 2016.16], [1744.35, 2020.43], [1797.36, 2071.75], [1823.18, 2096.87], [1841.24, 2114.73], [1849.11, 2125.8], [1854.91, 2141.57], [1858.13, 2154.75], [1869.11, 2210.6], [1873.95, 2232.3], [1898.95, 2347.85], [1900.07, 2352.83], [1907.15, 2384.32], [1912.27, 2383.17], [1913.56, 2385.88], [1927.54, 2379.2], [1926.24, 2376.5], [1928.24, 2378.74], [1936.2, 2371.63], [1960.9, 2349.01], [1967.31, 2342.48], [1980.06, 2329.47], [1981.7, 2327.82], [1984.24, 2325.22], [2018.85, 2289.92], [2021.73, 2286.74], [2025.7, 2290.54], [2048.32, 2311.83], [2107.38, 2369.99], [2157.11, 2418.85], [2163.77, 2425.38], [2166.22, 2422.88], [2163.78, 2425.4], [2170.06, 2431.48], [2287.1, 2545.02], [2291.14, 2548.92], [2287.38, 2552.73], [2253.46, 2588.38], [2229.94, 2612.44], [2225.66, 2616.96], [2221.29, 2612.64], [2203.75, 2595.73], [2199.59, 2600.05], [2217.1, 2616.93], [2221.53, 2621.31], [2217.57, 2625.45], [2160.18, 2684.92], [2153.72, 2691.45], [2129.18, 2715.58], [2133.39, 2719.86], [2157.94, 2695.72], [2155.84, 2693.58], [2157.97, 2695.69], [2164.47, 2689.11], [2221.89, 2629.61], [2225.87, 2625.45], [2230.1, 2629.34], [2341.2, 2737.44], [2347.73, 2743.48], [2349.77, 2741.27], [2351.9, 2743.38], [2358.3, 2736.91], [2413.46, 2679.17], [2415.48, 2677.05], [2419.33, 2672.44], [2422.68, 2676.59], [2453.2, 2704.66], [2538.95, 2789.02], [2547.01, 2795.55], [2549.21, 2792.83], [2551.37, 2794.92], [2557.05, 2789.03], [2559.53, 2786.46], [2596.64, 2748.09], [2613.41, 2730.89], [2621.98, 2722.1], [2623.48, 2720.87], [2626.56, 2717.58], [2654.88, 2687.31], [2662.07, 2680.06], [2683.85, 2658.02], [2684.43, 2657.47], [2688.97, 2652.26], [2691.19, 2654.47], [2740.43, 2703.43], [2785.49, 2745.99], [2786.8, 2747.22], [2794.79, 2752.79], [2796.5, 2750.33], [2799.83, 2751.41], [2803.48, 2740.09], [2807.89, 2726.43], [2819.79, 2689.52], [2822.36, 2681.56], [2822.48, 2681.17], [2822.74, 2681.36], [2830.26, 2671.05], [2833.15, 2668.05], [2836.77, 2665.65], [2848.18, 2658.11], [2845.97, 2654.77], [2848.38, 2657.97], [2858.38, 2650.43], [2865.02, 2661.14], [2880.57, 2686.85], [2893.87, 2708.63], [2902.83, 2703.16], [2889.54, 2681.39], [2873.98, 2655.66], [2867.65, 2645.45], [2873.28, 2641.81], [2888.81, 2631.76], [2910.94, 2621.77], [2925.38, 2616.99], [2931.66, 2615.57], [2937.25, 2614.29], [2943.63, 2612.49], [2948.44, 2610.75], [2946.66, 2605.82], [2949.65, 2605.66], [2949.1, 2595.02], [2948.92, 2591.82], [2946.65, 2561.68], [2946.08, 2554.01], [2944.6, 2535.11], [2944.33, 2531.75], [2943.08, 2519.5], [2941.26, 2512.63], [2938.4, 2504.68], [2937.5, 2503.4], [2934.56, 2499.16], [2926.31, 2490.26], [2914.6, 2479.65], [2894.91, 2463.04], [2872.74, 2440.68], [2871.99, 2439.92], [2871.14, 2439.06], [2868.21, 2436.21], [2805.81, 2375.37], [2796.74, 2366.53], [2793.54, 2363.58], [2789.04, 2360.01], [2783.49, 2356.52], [2775.83, 2352.51], [2769.67, 2350.1], [2763.57, 2348.24], [2752.88, 2344.41], [2745.06, 2343.62], [2738.53, 2344.05], [2733.23, 2345.18], [2716.18, 2348.82], [2714.89, 2348.5], [2714.73, 2349.13], [2713.96, 2349.3], [2713.97, 2348.37], [2712.61, 2348.35], [2699.2, 2343.67], [2697.79, 2343.19], [2694.49, 2342.07], [2683.86, 2335.35], [2683.66, 2335.66], [2671.15, 2321.93], [2655.01, 2302.84], [2650.15, 2295.48], [2648.82, 2296.35], [2647.57, 2289.28], [2647.34, 2287.96], [2643.73, 2281.02], [2629.81, 2257.72], [2631.84, 2257.83], [2635.86, 2258.04], [2642.65, 2259.46], [2657.87, 2268.44], [2675.8, 2269.29], [2682.45, 2268.94], [2688.56, 2268.74], [2763.72, 2264.42], [2768.59, 2264.14], [2768.86, 2269.23], [2772.06, 2304.74], [2778.03, 2304.2], [2774.84, 2268.8], [2774.58, 2263.81], [2779.35, 2263.56], [2854.92, 2259.69], [2860.96, 2259.42], [2861.04, 2264.31], [2866.25, 2332.44], [2872.23, 2331.99], [2867.04, 2264.03], [2866.95, 2259.16], [2870.94, 2258.99], [2945.4, 2255.94], [2952.04, 2255.49], [2952.29, 2259.76], [2956.78, 2343.12], [2962.77, 2342.8], [2958.28, 2259.43], [2957.79, 2251.02], [2957.42, 2243.36], [2948.08, 2069.85], [2947.57, 2060.52], [2947.2, 2053.64], [2944.72, 2007.61], [2944.57, 2004.68], [2943.96, 1993.35], [2940.96, 1993.51], [2942.75, 1991.1], [2933.97, 1984.59], [2858.37, 1928.51], [2855.65, 1926.42], [2846.69, 1918.9], [2846.25, 1919.43], [2846.24, 1919.13], [2846.5, 1918.76], [2846.23, 1918.56], [2845.93, 1905.11], [2845.92, 1898.7], [2845.31, 1893.76], [2844.92, 1887.91], [2844.92, 1881.2], [2845.26, 1878.37], [2847.09, 1872.96], [2848.47, 1873.48], [2852.17, 1863.67], [2852.76, 1860.93], [2867.37, 1792.91], [2868.85, 1786.0], [2868.85, 1786.0], [2869.97, 1780.8], [2885.34, 1709.23], [2886.94, 1701.8], [2884.01, 1701.17], [2886.94, 1701.8], [2887.95, 1697.06], [2904.74, 1618.92], [2901.8, 1618.29], [2904.74, 1618.92], [2905.84, 1613.78], [2918.95, 1552.74], [2920.42, 1545.88], [2917.49, 1545.26], [2917.76, 1542.27], [2908.8, 1541.45], [2867.3, 1537.67], [2823.76, 1535.97], [2820.5, 1535.85], [2820.57, 1534.54], [2820.67, 1532.6], [2823.9, 1467.53], [2824.04, 1464.56], [2824.42, 1457.07], [2821.42, 1456.92], [2824.42, 1457.04], [2824.66, 1450.9], [2824.79, 1447.84], [2826.9, 1395.37], [2814.41, 1393.48], [2792.5, 1389.91], [2735.14, 1373.54], [2729.28, 1371.87], [2721.22, 1369.04], [2662.94, 1348.6], [2646.52, 1328.89], [2594.45, 1267.36], [2500.17, 1154.06], [2492.86, 1147.21], [2488.4, 1143.03], [2486.35, 1145.22], [2488.39, 1142.96], [2483.42, 1138.47], [2408.67, 1071.08], [2377.99, 1042.69], [2372.11, 1037.22], [2328.24, 1083.38], [2326.34, 1085.38], [2323.96, 1087.89], [2319.62, 1083.58], [2285.64, 1052.87], [2284.13, 1051.52], [2276.28, 1044.49], [2278.25, 1042.38], [2279.95, 1040.58], [2320.89, 996.92], [2322.54, 994.18], [2323.75, 989.99], [2322.64, 983.91], [2315.18, 971.55], [2258.41, 894.18], [2253.74, 889.69], [2247.24, 883.43], [2244.07, 886.73], [2247.2, 883.39], [2240.3, 876.92], [2213.01, 851.3], [2103.3, 754.02], [2100.6, 751.62], [2105.35, 746.33], [2123.28, 726.36], [2118.82, 722.35], [2100.89, 742.32], [2096.14, 747.61], [2091.02, 742.96], [1960.78, 624.44], [1955.75, 620.48], [1950.3, 618.22], [1943.64, 618.48], [1938.1, 620.2], [1933.25, 623.6], [1929.67, 627.6], [1927.76, 625.23], [1926.05, 623.11], [1914.28, 612.91], [1910.35, 617.44], [1921.71, 627.3], [1923.09, 629.0], [1926.7, 633.47], [1920.31, 641.42], [1901.58, 662.31], [1881.89, 683.48], [1878.88, 686.71], [1873.86, 682.11], [1822.58, 635.11], [1825.47, 631.97], [1871.74, 581.81], [1867.33, 577.74], [1821.06, 627.9], [1818.12, 631.1], [1737.28, 559.72], [1734.07, 556.89], [1739.23, 551.38], [1756.13, 532.06], [1758.89, 528.71], [1773.43, 511.04], [1768.8, 507.23], [1754.26, 524.9], [1751.56, 528.18], [1734.78, 547.35], [1729.64, 552.84], [1724.47, 547.96], [1656.42, 485.08], [1589.33, 423.94], [1585.86, 420.78], [1601.74, 402.8], [1609.23, 392.37], [1604.35, 388.87], [1597.05, 399.06], [1581.42, 416.74], [1575.62, 411.5], [1536.8, 376.43], [1532.78, 380.88], [1571.6, 415.95], [1577.42, 421.22], [1574.08, 424.94], [1516.86, 484.68], [1512.18, 489.6], [1508.29, 486.19], [1454.61, 439.08], [1451.41, 436.14], [1438.14, 423.94], [1408.46, 396.66], [1399.48, 388.41], [1379.64, 370.18], [1372.17, 363.31], [1366.54, 358.13], [1370.89, 353.52], [1372.5, 351.81], [1391.98, 331.15], [1416.3, 305.37], [1414.12, 303.31], [1416.3, 305.37], [1419.58, 301.89], [1424.81, 306.51], [1459.87, 340.24], [1464.03, 335.91], [1428.88, 302.1], [1423.7, 297.52], [1428.61, 292.32], [1424.25, 288.2], [1417.21, 295.66], [1419.4, 297.72], [1417.21, 295.66], [1413.84, 299.24], [1411.89, 297.67], [1408.6, 295.0], [1369.91, 263.41], [1366.87, 262.01], [1361.2, 263.07], [1321.82, 305.54], [1320.48, 306.97], [1316.16, 311.63], [1286.1, 283.94], [1224.67, 226.21], [1218.64, 220.51], [1216.58, 222.7], [1218.5, 220.39], [1210.76, 213.98], [1209.46, 212.91], [1198.47, 204.14], [1187.15, 200.82], [1159.42, 193.67], [1076.69, 173.92], [1072.37, 172.89], [1071.67, 175.81], [1072.07, 174.1], [1045.73, 167.91], [1039.67, 167.71], [1034.27, 169.28], [1028.29, 172.28], [1026.62, 173.8], [1025.83, 174.52], [1023.35, 176.75], [1020.93, 179.51], [1015.93, 175.43], [1008.47, 170.0], [1004.21, 166.76], [1000.59, 165.84], [1004.66, 162.1], [1013.52, 147.3], [1014.23, 145.98], [1017.77, 139.45], [1012.49, 136.59], [1008.95, 143.13], [1008.3, 144.33], [999.96, 158.27], [993.66, 164.07], [984.29, 161.57], [958.52, 154.71], [937.75, 149.18], [913.82, 142.78], [896.3, 138.13], [877.62, 133.16], [840.0, 124.0], [838.58, 129.83], [876.14, 138.98], [894.75, 143.93], [912.27, 148.58], [936.2, 154.97], [956.97, 160.51], [982.75, 167.37], [988.87, 169.0], [985.42, 172.69], [950.6, 209.96], [934.66, 227.02], [933.43, 228.33], [931.95, 229.91], [926.81, 225.27], [915.35, 214.71], [884.06, 186.63], [860.22, 165.24], [833.96, 141.67], [829.14, 137.34], [821.5, 130.5], [819.9, 129.05], [818.19, 130.94], [815.85, 125.13], [809.25, 119.03], [791.49, 104.27], [786.56, 100.95], [788.86, 98.28], [790.37, 96.55], [797.95, 87.96], [801.73, 83.77], [815.57, 68.39], [831.49, 51.23], [827.1, 47.15], [811.14, 64.34], [797.27, 79.76], [793.48, 83.96], [785.86, 92.59], [784.32, 94.35], [781.34, 97.83], [779.52, 96.44], [775.35, 92.85], [743.75, 66.01], [732.15, 53.47], [719.32, 43.16], [705.19, 35.53], [697.58, 32.87], [669.7, 23.92], [637.71, 15.37], [608.55, 8.16], [606.69, 7.71], [606.83, 7.23], [605.82, 6.94], [601.25, -3.5], [600.04, -4.93], [597.46, -10.7], [594.51, -20.97], [593.23, -25.33], [586.78, -38.19], [579.5, -44.56], [577.03, -48.81], [575.6, -47.98], [575.36, -48.19], [578.02, -50.42], [542.6, -92.59], [432.77, -222.43], [406.3, -249.83], [377.0, -278.29], [289.35, -356.73], [175.99, -472.17], [78.94, -567.54], [56.22, -591.6], [27.59, -622.43], [8.01, -643.46], [-1.43, -653.13], [-30.14, -681.75], [-60.12, -709.49], [-88.23, -740.74], [-121.65, -780.61], [-139.51, -803.07], [-140.85, -802.01], [-150.82, -819.38], [-166.47, -842.84], [-178.33, -859.84], [-197.53, -883.36], [-196.05, -884.17], [-219.86, -927.27], [-227.96, -941.56], [-252.18, -985.1], [-257.51, -996.1], [-271.46, -1029.86], [-281.65, -1057.67], [-293.16, -1087.85], [-308.12, -1131.43], [-318.44, -1170.27], [-331.79, -1226.36], [-353.58, -1316.06], [-371.47, -1401.42], [-377.23, -1440.95], [-378.69, -1491.09], [-374.24, -1532.16], [-367.45, -1562.79], [-360.56, -1585.96], [-353.99, -1604.15], [-349.7, -1614.09], [-342.02, -1630.17], [-322.95, -1663.31], [-299.62, -1701.97], [-281.38, -1731.87], [-260.44, -1765.63], [-167.0, -1911.74], [-148.39, -1940.22], [-129.46, -1968.84], [-1.54, -2165.5], [10.57, -2183.32], [25.42, -2205.87], [25.33, -2205.93], [25.58, -2205.94], [26.99, -2205.07], [27.58, -2206.03], [32.56, -2206.23], [48.47, -2207.04], [48.32, -2210.03], [48.49, -2207.04], [63.96, -2207.88], [71.69, -2208.75], [77.71, -2210.02], [77.98, -2202.4], [82.87, -2064.06], [83.0, -2059.87], [82.86, -2059.87], [74.19, -2059.49], [74.45, -2053.49], [83.13, -2053.87], [86.23, -2054.02], [96.4, -2054.46], [96.14, -2060.46], [89.0, -2060.14], [88.87, -2064.25], [83.97, -2202.61], [83.65, -2211.89], [97.04, -2218.77], [102.69, -2226.77], [104.09, -2229.37], [107.5, -2227.14], [110.32, -2225.3], [126.33, -2217.44], [139.95, -2213.33], [155.83, -2211.28], [160.86, -2210.96], [177.24, -2211.11], [184.71, -2211.19], [199.27, -2213.22], [213.53, -2219.39], [220.12, -2223.97], [226.92, -2228.68], [233.69, -2237.16], [237.94, -2242.49], [249.57, -2258.41], [253.69, -2256.03], [262.09, -2248.69], [269.27, -2243.03], [276.41, -2237.41], [280.99, -2237.32], [293.04, -2249.54], [295.76, -2252.3], [291.49, -2256.51], [288.77, -2253.76], [278.53, -2243.37], [272.98, -2247.74], [265.92, -2253.31], [257.2, -2260.93], [252.47, -2263.66], [258.47, -2278.95], [252.88, -2281.14], [246.08, -2263.81], [233.17, -2246.13], [229.0, -2240.91], [222.78, -2233.11], [216.7, -2228.9], [210.6, -2224.66], [197.63, -2219.05], [184.26, -2217.19], [177.18, -2217.11], [161.02, -2216.96], [156.41, -2217.26], [141.21, -2219.22], [128.53, -2223.04], [113.29, -2230.52], [110.78, -2232.17], [106.95, -2234.67], [108.94, -2238.37], [111.63, -2250.9], [110.96, -2268.55], [109.99, -2279.89], [110.17, -2290.28], [111.41, -2297.24], [113.45, -2302.47], [144.82, -2346.74], [155.76, -2362.17], [175.04, -2382.82], [189.61, -2398.77], [200.81, -2411.55], [222.63, -2436.02], [227.87, -2441.74], [232.07, -2446.37], [236.47, -2453.11], [231.45, -2456.39], [227.31, -2450.05], [223.44, -2445.78], [218.18, -2440.04], [196.31, -2415.52], [185.14, -2402.77], [170.63, -2386.89], [151.1, -2365.97], [139.92, -2350.21], [108.13, -2305.34], [105.61, -2298.87], [104.18, -2290.86], [103.99, -2279.68], [104.97, -2268.18], [105.61, -2251.42], [103.25, -2240.46], [100.36, -2235.08], [97.58, -2229.94], [92.99, -2223.44], [79.57, -2216.54], [70.73, -2214.68], [63.46, -2213.86], [48.16, -2213.03], [46.98, -2212.97], [45.22, -2213.87], [43.7, -2215.77], [41.85, -2218.64], [40.85, -2223.23], [40.48, -2226.8], [43.42, -2231.54], [41.94, -2232.46], [70.0, -2276.15], [114.79, -2342.18], [158.45, -2399.11], [170.45, -2415.52], [219.69, -2479.76], [240.76, -2512.12], [259.24, -2545.25], [274.79, -2577.56], [289.52, -2613.78], [305.47, -2661.95], [321.42, -2716.33], [327.72, -2742.36], [329.76, -2749.7], [329.89, -2749.67], [337.49, -2747.89], [346.8, -2745.71], [353.32, -2742.33], [356.75, -2739.36], [360.22, -2734.0], [361.22, -2730.5], [362.23, -2726.02], [361.48, -2720.88], [354.66, -2692.35], [352.65, -2686.1], [348.88, -2676.69], [346.28, -2665.31], [353.1, -2663.75], [355.58, -2674.59], [359.24, -2683.73], [361.4, -2690.46], [368.37, -2719.57], [369.34, -2726.3], [368.0, -2732.23], [366.66, -2736.93], [362.09, -2743.99], [357.28, -2748.16], [349.24, -2752.33], [339.09, -2754.71], [331.77, -2756.42], [336.27, -2770.6], [346.6, -2802.95], [356.43, -2837.93], [368.68, -2875.08], [386.18, -2913.84], [381.39, -2916.0], [380.21, -2917.6], [379.3, -2916.94], [376.61, -2918.16], [374.44, -2913.34], [365.63, -2906.84], [356.48, -2892.22], [353.95, -2886.61], [355.7, -2891.7], [367.21, -2918.88], [376.18, -2935.85], [412.05, -3003.76], [405.86, -3007.03], [412.05, -3003.76], [447.24, -3070.39], [441.05, -3073.66], [439.95, -3075.01], [439.37, -3074.54], [434.86, -3076.93], [429.24, -3066.28], [424.68, -3062.56], [420.47, -3061.5], [414.57, -3062.04], [402.02, -3067.37], [394.31, -3072.4], [377.22, -3078.45], [367.6, -3078.77], [367.91, -3079.93], [358.98, -3082.32], [300.85, -3091.88], [300.36, -3088.92], [300.8, -3091.89], [289.96, -3093.5], [267.22, -3096.9], [254.48, -3098.74], [237.29, -3100.46], [178.22, -3104.91], [136.81, -3105.22], [131.36, -3104.92], [69.1, -3101.41], [21.84, -3099.4], [-72.95, -3095.38], [-72.83, -3092.38], [-75.83, -3092.39], [-75.88, -3078.31], [-108.36, -3042.35], [-106.13, -3040.34], [-107.65, -3037.75], [-72.54, -3017.16], [-65.05, -3012.64], [-29.54, -2972.51], [-5.44, -2932.8], [15.5, -2891.89], [29.94, -2850.26], [32.63, -2829.57], [33.53, -2806.53], [27.33, -2757.64], [22.26, -2717.66], [23.97, -2698.76], [29.08, -2673.7], [34.51, -2659.89], [40.65, -2641.91], [42.94, -2636.5], [46.61, -2627.83], [50.28, -2618.24], [13.0, -2603.38], [9.37, -2601.93], [-40.42, -2582.1], [-53.51, -2576.93], [-85.43, -2564.67], [-132.21, -2546.23], [-167.67, -2532.68], [-171.98, -2530.64], [-172.99, -2533.2], [-176.56, -2542.21], [-183.45, -2564.7], [-189.98, -2576.81], [-209.26, -2595.5], [-298.9, -2666.93], [-401.27, -2742.65], [-452.64, -2785.27], [-471.03, -2800.51], [-494.08, -2819.63], [-497.27, -2815.78], [-474.22, -2796.67], [-455.83, -2781.42], [-404.36, -2738.71], [-301.95, -2662.96], [-212.56, -2591.74], [-194.02, -2573.76], [-188.09, -2562.76], [-181.28, -2540.56], [-177.64, -2531.36], [-175.28, -2525.38], [-179.95, -2523.53], [-256.27, -2493.15], [-297.53, -2477.2], [-308.13, -2473.11], [-307.51, -2471.48], [-353.53, -2457.21], [-378.5, -2450.01], [-403.51, -2443.39], [-410.08, -2441.61], [-419.34, -2439.11], [-428.23, -2437.46], [-436.03, -2436.0], [-461.68, -2433.19], [-497.12, -2429.25], [-543.15, -2426.57], [-589.81, -2423.97], [-634.27, -2421.8], [-639.53, -2421.58], [-639.45, -2419.83], [-639.6, -2423.33], [-646.04, -2423.06], [-665.85, -2421.9], [-671.45, -2421.61], [-671.51, -2423.68], [-671.64, -2426.25], [-676.36, -2517.97], [-677.65, -2522.61], [-681.11, -2532.69], [-683.95, -2531.71], [-681.23, -2532.98], [-682.43, -2535.55], [-690.5, -2552.81], [-699.61, -2572.31], [-708.03, -2592.07], [-710.56, -2598.02], [-723.21, -2627.72], [-730.69, -2645.29], [-733.45, -2644.11], [-730.74, -2645.4], [-753.76, -2693.79], [-757.62, -2702.28], [-783.73, -2758.81], [-807.09, -2817.49], [-812.11, -2830.08], [-825.18, -2862.91], [-835.34, -2873.75], [-868.75, -2872.33], [-880.25, -2872.81], [-882.74, -2872.91], [-888.52, -2873.16], [-885.38, -2883.76], [-883.98, -2891.42], [-882.33, -2902.94], [-881.48, -2914.82], [-881.01, -2926.28], [-881.32, -2936.98], [-882.03, -2947.11], [-885.03, -2946.9], [-881.05, -2947.34], [-882.07, -2956.51], [-882.29, -2958.11], [-884.73, -2977.38], [-888.16, -3004.21], [-891.17, -3027.67], [-892.6, -3038.67], [-895.58, -3061.47], [-898.09, -3080.76], [-892.85, -3081.01], [-890.81, -3081.11], [-851.74, -3083.03], [-847.34, -3083.24], [-798.15, -3085.65], [-797.35, -3078.98], [-783.74, -2978.36], [-779.37, -2971.13], [-771.79, -2967.37], [-685.43, -2953.52], [-677.0, -2955.64], [-672.47, -2961.58], [-671.67, -2971.29], [-688.37, -3094.29], [-691.34, -3093.89], [-691.48, -3096.89], [-795.66, -3091.78], [-795.51, -3088.79], [-795.66, -3091.78], [-847.63, -3089.23], [-852.03, -3089.02], [-891.11, -3087.1], [-893.14, -3087.0], [-902.63, -3086.54], [-902.49, -3083.55], [-906.45, -3083.03], [-903.51, -3060.44], [-900.54, -3037.64], [-899.11, -3026.65], [-896.1, -3003.2], [-892.66, -2976.37], [-890.23, -2957.07], [-890.01, -2955.52], [-889.45, -2950.5], [-892.75, -2950.2], [-895.81, -2949.9], [-943.58, -2944.2], [-970.52, -2940.48], [-984.85, -2938.51], [-989.05, -2937.92], [-988.99, -2945.02], [-989.03, -2947.74], [-988.98, -2951.88], [-988.93, -2960.08], [-989.33, -2972.4], [-989.58, -2983.04], [-993.08, -2982.95], [-993.22, -2985.95], [-1008.16, -2985.27], [-1008.02, -2982.27], [-1008.32, -2985.26], [-1016.25, -2984.47], [-1020.01, -2984.03], [-1098.58, -2968.88], [-1138.52, -2961.59], [-1276.95, -2936.34], [-1280.79, -2935.7], [-1289.31, -2934.29], [-1305.3, -2931.64], [-1335.85, -2925.33], [-1388.37, -2915.32], [-1428.5, -2907.11], [-1444.6, -2904.15], [-1452.26, -2902.54], [-1460.32, -2901.61], [-1470.97, -2900.82], [-1488.8, -2902.13], [-1504.33, -2899.88], [-1513.75, -2897.34], [-1516.63, -2896.49], [-1530.45, -2892.8], [-1529.68, -2889.9], [-1535.68, -2886.3], [-1512.18, -2847.19], [-1502.01, -2830.02], [-1499.86, -2831.29], [-1484.4, -2804.04], [-1481.43, -2799.07], [-1486.99, -2794.67], [-1502.75, -2782.22], [-1520.08, -2763.45], [-1524.59, -2746.35], [-1528.08, -2721.25], [-1547.59, -2508.7], [-1550.57, -2484.9], [-1551.45, -2477.9], [-1552.22, -2471.87], [-1559.13, -2435.87], [-1561.64, -2425.32], [-1562.46, -2421.86], [-1569.49, -2391.9], [-1571.37, -2384.1], [-1573.3, -2377.35], [-1584.96, -2341.71], [-1594.99, -2315.7], [-1603.44, -2296.42], [-1605.95, -2290.49], [-1610.56, -2280.76], [-1629.46, -2242.75], [-1654.11, -2201.52], [-1668.39, -2181.52], [-1697.02, -2144.52], [-1741.97, -2094.29], [-1760.18, -2073.16], [-1767.27, -2064.92], [-1774.0, -2067.12], [-1782.75, -2072.04], [-1789.93, -2077.93], [-1791.59, -2079.82], [-1803.69, -2095.17], [-1807.36, -2100.09], [-1817.29, -2113.36], [-1829.67, -2125.54], [-1845.65, -2135.88], [-1868.14, -2142.27], [-1974.86, -2133.25], [-1983.59, -2132.51], [-2011.84, -2130.12], [-2075.65, -2125.62], [-2089.68, -2125.0], [-2099.28, -2124.06], [-2121.75, -2124.4], [-2144.36, -2130.23], [-2161.5, -2140.43], [-2173.63, -2155.29], [-2198.8, -2206.07], [-2215.96, -2235.71], [-2229.03, -2261.28], [-2236.27, -2287.51], [-2238.64, -2311.29], [-2237.72, -2338.44], [-2229.0, -2451.84], [-2227.79, -2489.77], [-2229.95, -2513.0], [-2237.75, -2539.83], [-2249.85, -2567.59], [-2287.45, -2628.0], [-2306.54, -2660.02], [-2321.22, -2683.67], [-2335.27, -2709.5], [-2344.81, -2728.97], [-2360.29, -2769.57], [-2371.01, -2795.89], [-2381.47, -2814.71], [-2392.43, -2828.32], [-2402.95, -2837.75], [-2413.19, -2843.39], [-2425.02, -2846.14], [-2451.78, -2846.95], [-2478.85, -2845.95], [-2548.47, -2841.72], [-2617.28, -2836.52], [-2683.15, -2832.62], [-2715.39, -2831.36], [-2744.0, -2831.75], [-2763.54, -2835.04], [-2779.32, -2839.41], [-2779.3, -2839.42], [-2791.21, -2852.76], [-2819.83, -2882.98], [-2841.42, -2905.68]], "holes": [[[-545.16, 335.82], [-550.74, 331.06], [-552.07, 329.91], [-582.71, 301.6], [-590.28, 294.47], [-610.55, 276.15], [-628.93, 259.51], [-633.47, 255.29], [-630.11, 251.53], [-628.38, 249.61], [-598.08, 215.98], [-574.92, 190.56], [-571.02, 186.27], [-567.33, 189.64], [-553.78, 201.96], [-541.86, 212.8], [-532.23, 221.55], [-512.98, 239.07], [-493.01, 257.25], [-490.73, 259.31], [-478.74, 270.21], [-482.33, 274.18], [-495.23, 288.47], [-498.21, 291.76], [-521.48, 317.5], [-524.94, 321.33], [-534.96, 332.41], [-538.44, 336.27], [-541.15, 339.27], [-545.16, 335.82]], [[-486.02, 254.14], [-488.3, 252.07], [-508.27, 233.9], [-527.52, 216.37], [-537.15, 207.62], [-549.07, 196.78], [-562.61, 184.46], [-566.31, 181.1], [-563.1, 177.58], [-550.1, 163.29], [-548.18, 161.19], [-547.39, 160.32], [-537.38, 149.34], [-508.7, 117.84], [-507.35, 116.36], [-503.2, 111.81], [-499.23, 115.4], [-470.45, 141.43], [-466.85, 144.68], [-463.63, 147.59], [-460.01, 150.87], [-451.51, 158.55], [-422.62, 184.68], [-417.67, 189.16], [-412.75, 193.61], [-417.98, 195.7], [-423.28, 202.16], [-425.49, 205.41], [-427.03, 208.16], [-428.02, 210.93], [-428.49, 213.56], [-428.43, 214.55], [-434.54, 221.32], [-444.33, 232.15], [-448.82, 237.12], [-454.85, 243.79], [-458.09, 247.37], [-470.37, 260.95], [-474.05, 265.02], [-486.02, 254.14]], [[-507.98, 98.06], [-541.81, 67.47], [-552.57, 57.73], [-574.83, 37.59], [-599.87, 14.96], [-611.77, 4.2], [-612.48, 3.56], [-615.65, 0.69], [-619.81, -3.07], [-643.81, -24.78], [-647.96, -28.53], [-644.15, -31.48], [-641.9, -33.35], [-627.19, -50.65], [-593.75, -87.7], [-593.03, -88.61], [-592.56, -89.92], [-592.26, -92.13], [-592.04, -94.36], [-591.81, -95.35], [-591.49, -96.27], [-590.75, -97.65], [-590.67, -97.73], [-578.86, -87.09], [-560.02, -70.13], [-552.42, -63.28], [-551.1, -62.08], [-532.4, -45.25], [-530.93, -43.93], [-526.73, -40.14], [-508.25, -23.5], [-463.88, 16.71], [-447.45, 31.26], [-442.98, 35.29], [-444.73, 37.22], [-457.18, 50.89], [-459.74, 53.69], [-489.28, 86.12], [-498.62, 96.37], [-500.6, 98.55], [-503.68, 101.94], [-507.98, 98.06]], [[-574.6, -111.89], [-524.83, -168.35], [-523.16, -170.25], [-516.22, -178.11], [-510.87, -183.93], [-453.61, -243.34], [-449.85, -247.41], [-444.97, -242.98], [-384.08, -188.07], [-380.39, -184.74], [-384.05, -180.97], [-419.53, -143.12], [-425.49, -136.38], [-428.84, -131.82], [-431.23, -128.1], [-433.17, -124.32], [-435.16, -119.12], [-435.68, -113.46], [-435.65, -109.79], [-434.62, -103.19], [-432.96, -99.28], [-431.24, -96.01], [-429.31, -93.21], [-427.17, -90.65], [-424.66, -88.15], [-415.17, -79.57], [-403.05, -68.61], [-378.11, -45.16], [-373.61, -40.88], [-376.79, -37.39], [-396.81, -15.4], [-411.28, 0.48], [-432.68, 23.98], [-433.55, 24.94], [-438.12, 20.82], [-454.54, 6.28], [-498.86, -33.88], [-517.36, -50.55], [-521.56, -54.33], [-523.03, -55.65], [-541.71, -72.48], [-543.04, -73.67], [-550.65, -80.53], [-569.48, -97.49], [-579.41, -106.43], [-574.6, -111.89]], [[-520.96, -187.12], [-522.06, -188.11], [-552.09, -215.44], [-570.45, -232.13], [-598.03, -257.2], [-618.36, -275.7], [-629.91, -286.19], [-654.98, -308.99], [-656.19, -310.1], [-660.4, -313.93], [-657.1, -317.53], [-625.01, -352.53], [-606.32, -372.9], [-601.14, -378.21], [-598.12, -381.49], [-595.29, -378.79], [-592.84, -376.59], [-564.75, -351.26], [-515.9, -307.23], [-513.5, -305.06], [-504.99, -297.39], [-495.92, -289.2], [-490.49, -284.31], [-481.42, -276.14], [-458.91, -255.85], [-454.26, -251.48], [-457.97, -247.46], [-515.24, -188.05], [-518.31, -184.71], [-520.96, -187.12]], [[-454.16, -261.0], [-476.74, -281.34], [-485.8, -289.51], [-491.23, -294.4], [-500.3, -302.59], [-508.81, -310.26], [-511.22, -312.43], [-560.06, -356.46], [-588.16, -381.79], [-590.53, -383.92], [-593.38, -386.64], [-589.24, -391.17], [-566.85, -415.95], [-519.23, -467.56], [-509.62, -478.27], [-506.22, -475.16], [-493.68, -463.75], [-488.91, -459.42], [-473.55, -445.42], [-472.8, -444.74], [-451.85, -424.6], [-427.22, -401.74], [-425.17, -399.94], [-420.88, -396.13], [-402.9, -379.96], [-387.16, -364.59], [-386.2, -363.66], [-386.03, -363.84], [-386.0, -363.47], [-385.33, -361.18], [-384.18, -358.87], [-373.77, -349.3], [-369.93, -345.77], [-376.21, -336.92], [-388.3, -323.53], [-399.21, -311.43], [-411.49, -297.81], [-417.87, -290.74], [-423.36, -284.65], [-440.84, -265.27], [-445.29, -260.33], [-449.34, -256.47], [-454.16, -261.0]], [[-512.83, -495.39], [-535.66, -516.18], [-550.11, -529.34], [-551.58, -530.67], [-565.33, -543.18], [-580.73, -557.22], [-595.49, -570.66], [-596.35, -571.43], [-610.1, -583.94], [-623.52, -596.17], [-632.3, -604.16], [-632.87, -604.68], [-649.01, -619.37], [-652.68, -622.71], [-644.0, -632.64], [-593.68, -687.52], [-592.06, -689.04], [-574.44, -708.5], [-570.66, -712.66], [-566.74, -709.15], [-549.92, -693.97], [-543.55, -688.21], [-535.5, -680.95], [-531.04, -676.92], [-520.47, -667.38], [-513.35, -660.94], [-480.21, -631.19], [-473.02, -624.72], [-462.96, -615.69], [-448.55, -602.74], [-438.82, -593.98], [-432.58, -588.42], [-430.1, -586.2], [-426.78, -583.13], [-430.45, -578.16], [-444.78, -562.44], [-464.13, -541.23], [-480.79, -522.94], [-499.91, -501.96], [-509.05, -491.94], [-512.83, -495.39]], [[-562.15, -721.91], [-542.65, -743.17], [-540.56, -745.44], [-533.33, -753.33], [-522.22, -765.45], [-521.24, -766.52], [-506.5, -782.59], [-502.4, -787.06], [-498.74, -783.72], [-474.96, -762.02], [-463.36, -751.44], [-444.97, -734.66], [-437.49, -727.83], [-430.66, -721.61], [-422.6, -714.25], [-363.55, -660.36], [-360.41, -657.41], [-364.55, -652.85], [-420.9, -591.97], [-422.8, -588.99], [-425.39, -591.38], [-427.92, -593.64], [-434.15, -599.2], [-443.88, -607.94], [-458.28, -620.89], [-468.34, -629.93], [-475.53, -636.39], [-508.67, -666.15], [-515.78, -672.57], [-526.35, -682.11], [-530.81, -686.14], [-538.86, -693.4], [-545.23, -699.17], [-562.06, -714.35], [-565.93, -717.82], [-562.15, -721.91]], [[-494.44, -796.13], [-467.4, -826.96], [-466.13, -828.39], [-460.27, -833.29], [-452.78, -838.2], [-448.72, -840.68], [-444.33, -842.67], [-440.34, -843.94], [-437.07, -844.59], [-434.84, -844.79], [-429.61, -844.86], [-426.31, -844.33], [-421.89, -843.15], [-417.92, -841.52], [-410.6, -836.91], [-401.13, -828.72], [-384.68, -813.77], [-379.57, -809.13], [-364.49, -795.44], [-355.32, -787.09], [-326.41, -760.85], [-322.99, -757.74], [-320.13, -755.1], [-319.15, -756.17], [-315.6, -751.06], [-296.29, -733.96], [-294.08, -732.01], [-299.05, -727.11], [-353.36, -670.55], [-358.96, -664.27], [-359.47, -664.76], [-418.56, -718.69], [-426.62, -726.04], [-433.44, -732.27], [-440.92, -739.09], [-459.31, -755.87], [-470.92, -766.46], [-494.69, -788.15], [-498.41, -791.54], [-494.44, -796.13]], [[-307.04, -749.16], [-300.06, -746.03], [-293.26, -744.34], [-285.75, -743.37], [-280.45, -743.61], [-277.5, -744.11], [-286.0, -735.63], [-288.95, -732.81], [-293.64, -736.96], [-307.95, -749.63], [-307.04, -749.16]], [[-266.58, -747.69], [-266.59, -747.67], [-267.43, -748.51], [-266.58, -747.69]], [[-256.11, -754.48], [-257.5, -755.82], [-257.47, -755.88], [-256.03, -754.57], [-223.6, -790.19], [-215.96, -791.84], [-211.92, -796.06], [-205.69, -801.28], [-203.24, -803.3], [-198.82, -804.64], [-194.3, -805.87], [-190.13, -806.45], [-188.81, -806.64], [-185.61, -806.37], [-183.42, -805.72], [-170.39, -799.95], [-167.09, -795.63], [-164.73, -797.44], [-164.61, -797.38], [-166.91, -795.41], [-155.34, -781.9], [-104.84, -722.94], [-47.29, -662.37], [-1.65, -613.75], [39.11, -574.0], [62.08, -551.02], [272.62, -339.78], [359.19, -257.26], [422.57, -193.75], [482.26, -127.92], [546.53, -44.2], [557.84, -24.58], [558.5, -20.11], [557.57, -13.43], [556.57, -9.77], [558.67, -4.99], [552.57, -6.23], [550.42, -6.78], [543.6, -8.74], [536.79, -10.86], [531.91, -12.59], [527.04, -14.42], [523.32, -16.03], [519.67, -17.79], [514.39, -20.54], [510.09, -23.03], [505.74, -25.94], [501.66, -29.13], [495.22, -34.89], [495.56, -35.26], [442.28, -83.24], [438.28, -85.96], [439.92, -87.73], [440.85, -88.75], [465.08, -115.08], [460.66, -119.14], [436.43, -92.81], [435.5, -91.8], [433.17, -89.26], [427.07, -92.89], [419.54, -97.41], [411.58, -103.49], [388.49, -124.02], [371.91, -138.99], [364.24, -145.75], [360.98, -148.24], [356.63, -149.24], [352.71, -149.84], [350.49, -149.76], [349.75, -151.94], [348.56, -154.71], [346.54, -158.24], [340.83, -165.54], [330.49, -175.65], [278.53, -221.93], [244.86, -250.88], [213.32, -278.44], [209.08, -281.81], [211.8, -284.21], [214.39, -286.99], [215.77, -288.47], [229.51, -303.26], [242.08, -316.8], [237.68, -320.88], [225.11, -307.34], [211.38, -292.56], [209.99, -291.08], [207.61, -288.51], [204.37, -285.65], [198.48, -290.63], [176.43, -310.77], [171.07, -315.88], [163.24, -323.04], [153.65, -331.82], [144.14, -340.99], [124.7, -359.6], [123.42, -360.73], [119.62, -363.64], [109.23, -372.59], [99.18, -381.4], [92.69, -387.07], [30.9, -444.8], [19.29, -455.28], [13.11, -460.77], [6.61, -466.56], [2.96, -469.83], [-4.87, -476.79], [-9.51, -479.84], [-16.44, -486.02], [-25.73, -495.39], [-29.9, -499.1], [-39.1, -507.3], [-87.03, -550.02], [-98.62, -560.36], [-124.7, -583.59], [-133.98, -593.14], [-134.31, -600.23], [-134.56, -605.72], [-134.82, -611.23], [-126.58, -611.89], [-118.09, -612.57], [-99.42, -633.12], [-78.44, -656.2], [-82.88, -660.24], [-103.86, -637.16], [-120.94, -618.36], [-127.06, -617.87], [-135.1, -617.23], [-135.14, -618.04], [-136.85, -654.45], [-137.2, -662.12], [-137.38, -665.92], [-138.83, -697.1], [-139.16, -703.88], [-139.69, -715.35], [-140.14, -724.98], [-146.13, -724.7], [-145.68, -715.07], [-145.15, -703.6], [-144.83, -696.82], [-143.37, -665.64], [-143.2, -661.85], [-142.84, -654.17], [-141.14, -617.76], [-140.95, -613.85], [-140.56, -605.45], [-140.3, -599.95], [-140.29, -599.6], [-147.77, -606.39], [-184.58, -639.9], [-215.88, -668.36], [-225.35, -676.98], [-240.52, -690.77], [-251.21, -700.49], [-261.69, -710.61], [-262.96, -709.29], [-266.33, -717.11], [-267.26, -719.94], [-268.02, -722.71], [-268.54, -725.94], [-268.62, -728.6], [-268.6, -730.68], [-268.21, -733.6], [-267.29, -737.01], [-265.26, -741.81], [-261.12, -749.28], [-256.11, -754.48]], [[-261.91, -759.99], [-270.28, -751.31], [-272.27, -749.33], [-275.47, -748.5], [-280.88, -747.6], [-285.59, -747.38], [-292.52, -748.28], [-298.75, -749.83], [-305.3, -752.76], [-310.13, -755.27], [-316.38, -759.17], [-315.39, -760.25], [-318.26, -762.9], [-321.71, -766.03], [-350.61, -792.27], [-359.78, -800.62], [-374.86, -814.31], [-379.97, -818.95], [-396.49, -833.96], [-406.42, -842.55], [-414.7, -847.77], [-419.64, -849.8], [-424.85, -851.19], [-428.03, -851.7], [-428.76, -855.02], [-431.79, -868.73], [-427.74, -871.38], [-390.94, -910.24], [-384.64, -917.52], [-380.69, -922.07], [-385.22, -926.01], [-389.17, -921.45], [-395.39, -914.27], [-431.62, -876.01], [-434.67, -874.01], [-439.44, -875.69], [-476.0, -908.23], [-498.38, -928.56], [-500.94, -930.89], [-529.88, -957.19], [-544.59, -970.56], [-574.82, -998.04], [-576.68, -999.73], [-581.09, -1003.74], [-577.02, -1008.95], [-575.43, -1010.62], [-546.98, -1041.17], [-519.1, -1071.71], [-517.05, -1074.25], [-512.67, -1079.06], [-510.08, -1075.41], [-505.41, -1068.86], [-497.76, -1058.98], [-489.75, -1049.48], [-481.54, -1040.54], [-474.73, -1033.95], [-467.59, -1027.19], [-461.0, -1021.56], [-454.01, -1015.82], [-444.08, -1008.49], [-433.81, -1001.58], [-423.59, -995.31], [-414.25, -990.39], [-401.32, -984.12], [-389.16, -978.86], [-376.91, -974.28], [-366.23, -970.96], [-353.86, -967.89], [-333.05, -963.15], [-318.44, -960.35], [-304.81, -958.39], [-304.57, -960.09], [-287.22, -954.17], [-279.33, -952.21], [-272.96, -949.56], [-269.05, -946.64], [-264.65, -940.2], [-249.58, -911.63], [-246.14, -905.62], [-238.21, -892.76], [-229.12, -881.01], [-222.2, -873.23], [-217.26, -869.7], [-215.48, -866.66], [-214.11, -867.46], [-214.1, -867.45], [-216.96, -865.73], [-209.66, -853.52], [-206.99, -855.12], [-206.97, -855.04], [-209.55, -853.36], [-205.7, -847.44], [-205.34, -844.66], [-206.03, -838.62], [-206.83, -834.98], [-209.06, -831.01], [-215.93, -817.28], [-218.03, -813.48], [-221.92, -810.08], [-220.69, -808.67], [-220.83, -808.42], [-222.3, -809.71], [-224.29, -807.45], [-228.19, -802.78], [-229.94, -795.1], [-261.91, -759.99]], [[-218.72, -886.07], [-225.06, -896.91], [-230.7, -906.68], [-236.74, -917.23], [-242.86, -928.11], [-248.22, -938.02], [-258.47, -958.84], [-266.35, -974.74], [-260.46, -978.39], [-237.12, -936.42], [-229.02, -922.14], [-205.24, -879.1], [-203.72, -879.93], [-191.66, -852.29], [-188.18, -845.43], [-186.43, -840.91], [-186.16, -837.02], [-186.19, -836.87], [-186.68, -837.44], [-200.7, -859.0], [-207.95, -871.12], [-209.46, -870.23], [-218.72, -886.07]], [[-270.8, -984.98], [-273.78, -992.18], [-282.41, -1010.22], [-289.13, -1022.7], [-287.52, -1023.28], [-308.64, -1081.46], [-324.59, -1129.11], [-334.69, -1167.25], [-347.2, -1223.42], [-355.5, -1257.74], [-371.7, -1343.44], [-380.09, -1391.36], [-363.82, -1313.74], [-342.0, -1223.91], [-328.62, -1167.7], [-318.17, -1128.37], [-303.03, -1084.27], [-291.49, -1054.0], [-281.25, -1026.04], [-267.09, -991.8], [-264.07, -985.57], [-270.8, -984.98]], [[-294.3, -1020.49], [-295.53, -1019.83], [-293.48, -1016.02], [-291.79, -1006.78], [-292.15, -1002.39], [-293.07, -999.0], [-294.68, -996.66], [-296.4, -994.34], [-298.75, -992.52], [-302.22, -990.32], [-304.96, -989.37], [-306.78, -988.81], [-310.15, -988.21], [-318.9, -987.43], [-327.75, -986.35], [-331.46, -987.2], [-331.76, -985.86], [-332.15, -985.82], [-332.08, -987.29], [-344.07, -987.82], [-361.5, -992.39], [-383.04, -1001.17], [-403.1, -1010.53], [-411.76, -1015.05], [-422.28, -1021.46], [-431.87, -1027.71], [-441.94, -1034.75], [-461.05, -1052.05], [-473.37, -1064.49], [-481.03, -1072.55], [-488.3, -1081.24], [-494.82, -1089.56], [-499.92, -1096.6], [-507.56, -1108.83], [-525.93, -1142.47], [-537.44, -1167.59], [-548.84, -1189.44], [-574.79, -1235.72], [-583.06, -1246.84], [-593.12, -1257.11], [-604.41, -1265.17], [-606.9, -1266.61], [-612.88, -1270.12], [-622.43, -1274.98], [-631.95, -1278.78], [-640.62, -1281.12], [-651.03, -1283.23], [-662.18, -1284.15], [-671.16, -1284.41], [-679.62, -1283.49], [-693.49, -1281.63], [-710.03, -1276.75], [-722.26, -1271.68], [-733.43, -1262.75], [-739.71, -1269.69], [-749.75, -1279.03], [-755.67, -1284.33], [-780.02, -1305.68], [-782.0, -1303.43], [-780.02, -1305.68], [-790.55, -1314.91], [-817.3, -1339.31], [-819.91, -1341.55], [-822.25, -1342.53], [-824.97, -1342.28], [-827.93, -1341.55], [-830.32, -1340.5], [-831.56, -1339.62], [-834.12, -1337.77], [-992.01, -1212.69], [-990.15, -1210.34], [-992.02, -1212.68], [-1017.39, -1192.33], [-1050.14, -1166.31], [-1053.13, -1162.05], [-1053.38, -1157.64], [-1052.75, -1154.59], [-1051.29, -1151.72], [-1048.98, -1148.89], [-1031.42, -1132.25], [-1020.79, -1123.54], [-1013.18, -1116.26], [-975.71, -1082.07], [-967.74, -1074.81], [-957.76, -1065.47], [-940.26, -1050.15], [-938.06, -1048.23], [-933.87, -1044.27], [-937.51, -1040.3], [-979.26, -995.94], [-990.45, -985.51], [-996.76, -981.44], [-1003.44, -978.14], [-1018.33, -971.75], [-1027.42, -967.91], [-1033.6, -973.4], [-1056.35, -996.08], [-1083.43, -1020.55], [-1117.67, -1051.48], [-1126.06, -1059.06], [-1164.02, -1093.35], [-1214.28, -1138.76], [-1222.83, -1146.49], [-1259.8, -1179.88], [-1374.66, -1283.65], [-1375.83, -1282.35], [-1408.07, -1311.48], [-1436.83, -1337.46], [-1464.93, -1364.33], [-1466.38, -1366.14], [-1466.2, -1366.79], [-1467.09, -1367.03], [-1473.31, -1374.8], [-1479.87, -1383.14], [-1481.66, -1385.41], [-1493.7, -1398.93], [-1493.7, -1399.59], [-1494.29, -1399.59], [-1495.5, -1400.95], [-1495.96, -1414.7], [-1496.84, -1441.21], [-1497.71, -1477.89], [-1496.88, -1486.53], [-1491.99, -1486.66], [-1489.84, -1486.72], [-1482.54, -1486.91], [-1480.94, -1486.96], [-1478.12, -1487.04], [-1467.38, -1487.34], [-1441.74, -1488.08], [-1429.17, -1488.24], [-1423.93, -1488.28], [-1423.21, -1416.94], [-1422.68, -1384.9], [-1423.7, -1378.0], [-1425.28, -1373.52], [-1428.13, -1371.7], [-1436.13, -1370.65], [-1443.73, -1370.47], [-1443.59, -1364.47], [-1435.67, -1364.65], [-1426.03, -1365.93], [-1420.31, -1369.57], [-1417.85, -1376.55], [-1416.67, -1384.51], [-1417.21, -1417.02], [-1417.96, -1491.34], [-1420.96, -1491.31], [-1417.96, -1491.39], [-1421.32, -1612.94], [-1424.4, -1733.16], [-1424.31, -1747.91], [-1423.71, -1757.08], [-1421.65, -1767.04], [-1416.49, -1780.64], [-1413.55, -1786.52], [-1380.56, -1846.88], [-1375.8, -1855.69], [-1339.75, -1922.04], [-1314.39, -1976.45], [-1294.69, -2006.47], [-1277.98, -2026.23], [-1265.83, -2039.82], [-1256.53, -2047.34], [-1247.23, -2054.02], [-1238.72, -2058.83], [-1224.09, -2063.67], [-1206.89, -2066.97], [-1199.63, -2066.97], [-1160.23, -2063.78], [-1096.55, -2054.27], [-1066.22, -2051.79], [-1065.98, -2054.78], [-1066.18, -2051.78], [-1046.47, -2050.44], [-1027.13, -2051.67], [-999.75, -2058.42], [-980.02, -2064.53], [-956.33, -2069.37], [-882.31, -2076.37], [-869.12, -2078.07], [-853.68, -2080.02], [-838.28, -2082.19], [-787.3, -2081.85], [-777.96, -2081.24], [-662.51, -2088.07], [-630.74, -2089.42], [-624.38, -2089.95], [-620.98, -2090.52], [-621.48, -2093.47], [-620.59, -2090.61], [-615.79, -2092.09], [-610.91, -2095.05], [-608.62, -2099.07], [-607.67, -2103.35], [-608.52, -2133.26], [-609.41, -2149.34], [-610.28, -2160.06], [-611.21, -2173.64], [-611.34, -2179.6], [-605.92, -2179.76], [-584.97, -2180.32], [-559.74, -2181.06], [-549.95, -2181.48], [-546.99, -2181.61], [-538.1, -2182.0], [-538.26, -2185.5], [-538.1, -2182.0], [-535.43, -2182.12], [-531.18, -2182.3], [-514.9, -2183.0], [-473.53, -2184.8], [-472.89, -2178.73], [-469.68, -2148.0], [-451.78, -1977.1], [-451.5, -1974.42], [-449.5, -1955.27], [-448.47, -1945.45], [-442.5, -1946.07], [-443.53, -1955.89], [-445.49, -1974.59], [-434.3, -1975.2], [-426.46, -1975.62], [-416.25, -1976.18], [-416.57, -1982.17], [-426.79, -1981.61], [-434.62, -1981.19], [-446.11, -1980.56], [-463.71, -2148.62], [-466.93, -2179.35], [-467.53, -2185.06], [-429.59, -2186.7], [-400.08, -2187.98], [-388.84, -2188.47], [-386.06, -2188.59], [-385.81, -2182.82], [-377.54, -1997.62], [-376.97, -1984.76], [-376.48, -1974.01], [-376.45, -1973.14], [-375.85, -1959.65], [-375.67, -1955.59], [-369.67, -1955.86], [-369.85, -1959.92], [-370.46, -1973.39], [-370.49, -1974.25], [-370.97, -1985.03], [-371.54, -1997.88], [-379.81, -2183.09], [-380.07, -2188.85], [-292.55, -2192.66], [-288.56, -2192.83], [-288.38, -2187.86], [-286.64, -2140.8], [-281.98, -2015.37], [-281.54, -2003.88], [-279.84, -1957.89], [-277.43, -1954.1], [-272.09, -1950.59], [-262.25, -1949.98], [-238.77, -1949.87], [-232.2, -1949.84], [-223.78, -1950.68], [-218.54, -1951.82], [-213.39, -1953.69], [-207.28, -1957.09], [-203.77, -1959.82], [-199.31, -1964.05], [-193.38, -1970.76], [-187.19, -1979.71], [-184.27, -1986.69], [-183.12, -1991.42], [-182.26, -1996.73], [-181.89, -2002.59], [-181.59, -2007.35], [-181.78, -2013.34], [-182.54, -2036.63], [-182.74, -2039.38], [-184.18, -2060.21], [-184.48, -2067.31], [-185.71, -2096.6], [-186.49, -2115.22], [-186.61, -2117.86], [-182.45, -2118.01], [-148.09, -2119.21], [-142.55, -2119.41], [-127.71, -2119.92], [-111.98, -2120.48], [-100.94, -2120.86], [-101.15, -2126.85], [-112.19, -2126.47], [-127.92, -2125.91], [-142.76, -2125.4], [-148.31, -2125.2], [-182.66, -2124.0], [-186.85, -2123.86], [-189.42, -2188.74], [-189.54, -2191.63], [-189.71, -2197.1], [-186.2, -2197.26], [-155.38, -2198.59], [-155.4, -2199.09], [-116.54, -2200.6], [-111.79, -2200.78], [-86.96, -2201.76], [-53.57, -2203.06], [-44.59, -2203.4], [-26.46, -2204.11], [-8.32, -2204.82], [-13.37, -2196.1], [-14.95, -2193.58], [-44.92, -2145.19], [-64.93, -2115.04], [-119.53, -2025.04], [-277.44, -1776.11], [-298.32, -1742.22], [-346.9, -1664.8], [-368.93, -1622.08], [-383.43, -1582.52], [-394.47, -1536.99], [-399.87, -1485.23], [-397.9, -1441.55], [-391.9, -1397.94], [-382.03, -1341.56], [-365.77, -1255.53], [-357.43, -1221.04], [-344.89, -1164.77], [-334.66, -1126.09], [-318.56, -1078.0], [-297.39, -1019.7], [-294.36, -1020.8], [-294.3, -1020.49]], [[-279.76, -2193.21], [-242.4, -2194.82], [-242.55, -2198.31], [-242.4, -2194.82], [-198.69, -2196.71], [-195.7, -2196.84], [-195.53, -2191.41], [-195.42, -2188.5], [-192.73, -2120.64], [-189.73, -2120.76], [-192.73, -2120.63], [-192.49, -2114.97], [-191.71, -2096.35], [-190.48, -2067.05], [-190.17, -2059.88], [-188.72, -2038.96], [-188.53, -2036.32], [-187.78, -2013.14], [-187.59, -2007.45], [-187.87, -2002.97], [-188.22, -1997.4], [-189.0, -1992.62], [-189.99, -1988.57], [-192.49, -1982.6], [-198.12, -1974.47], [-203.63, -1968.21], [-207.68, -1964.38], [-210.59, -1962.11], [-215.89, -1959.17], [-220.21, -1957.59], [-224.72, -1956.61], [-232.49, -1955.84], [-238.74, -1955.87], [-262.05, -1955.98], [-270.13, -1956.48], [-273.05, -1958.4], [-273.9, -1959.74], [-275.55, -2004.11], [-275.98, -2015.6], [-280.64, -2141.03], [-282.39, -2188.08], [-282.57, -2193.09], [-279.76, -2193.21]], [[-239.98, -2207.31], [-244.29, -2295.96], [-247.12, -2384.93], [-247.28, -2390.14], [-172.64, -2393.4], [-166.15, -2393.69], [-165.92, -2387.95], [-158.88, -2210.82], [-158.67, -2205.45], [-186.5, -2204.25], [-192.97, -2203.97], [-198.99, -2203.71], [-239.72, -2201.94], [-239.98, -2207.31]], [[-247.68, -2399.63], [-251.12, -2473.07], [-251.86, -2487.37], [-177.37, -2517.02], [-173.64, -2518.5], [-172.31, -2513.06], [-170.87, -2507.18], [-166.39, -2399.68], [-172.9, -2399.4], [-247.52, -2396.13], [-247.68, -2399.63]], [[-1887.52, 37.71], [-1897.07, 9.45], [-1900.29, 1.09], [-1903.35, -9.45], [-1904.78, -17.6], [-1905.13, -30.6], [-1908.63, -30.5], [-1905.13, -30.6], [-1905.61, -47.19], [-1905.7, -49.92], [-1906.6, -80.68], [-1907.66, -116.35], [-1907.91, -125.78], [-1907.97, -127.17], [-1909.64, -183.64], [-1909.39, -188.59], [-1908.82, -193.63], [-1908.07, -198.62], [-1905.19, -207.22], [-1904.87, -208.08], [-1904.37, -210.06], [-1900.93, -218.02], [-1887.48, -218.58], [-1883.53, -218.74], [-1750.28, -223.9], [-1740.5, -224.64], [-1732.47, -225.03], [-1696.06, -226.78], [-1604.22, -231.19], [-1596.43, -231.55], [-1591.28, -231.81], [-1556.61, -233.46], [-1531.77, -234.67], [-1502.39, -236.07], [-1471.98, -237.56], [-1464.91, -237.89], [-1464.95, -232.29], [-1464.94, -227.22], [-1465.09, -204.25], [-1463.96, -143.26], [-1467.54, -143.07], [-1502.13, -141.4], [-1520.18, -143.24], [-1544.63, -140.73], [-1558.08, -140.52], [-1566.01, -140.7], [-1573.32, -141.63], [-1581.74, -143.32], [-1589.9, -146.12], [-1595.03, -148.7], [-1600.45, -152.55], [-1603.52, -155.03], [-1606.97, -158.41], [-1611.09, -162.56], [-1616.16, -166.41], [-1622.35, -169.24], [-1627.69, -170.64], [-1635.62, -171.69], [-1657.26, -171.13], [-1662.07, -169.87], [-1668.25, -168.02], [-1672.45, -166.6], [-1675.87, -165.66], [-1677.87, -165.26], [-1679.83, -165.02], [-1683.25, -164.94], [-1686.22, -165.25], [-1689.12, -166.03], [-1698.17, -170.17], [-1714.45, -173.92], [-1722.1, -175.38], [-1726.19, -175.81], [-1730.52, -175.76], [-1734.77, -175.41], [-1737.96, -174.75], [-1740.77, -173.79], [-1744.01, -172.58], [-1764.59, -159.73], [-1770.31, -155.8], [-1776.54, -151.21], [-1780.92, -147.62], [-1784.51, -143.91], [-1787.24, -139.79], [-1782.24, -136.48], [-1779.82, -140.13], [-1776.86, -143.19], [-1772.85, -146.47], [-1766.83, -150.91], [-1761.3, -154.71], [-1741.34, -167.17], [-1738.74, -168.14], [-1736.38, -168.95], [-1733.92, -169.46], [-1730.24, -169.76], [-1726.47, -169.81], [-1722.98, -169.44], [-1715.68, -168.05], [-1700.11, -164.46], [-1691.16, -160.37], [-1687.32, -159.34], [-1683.49, -158.93], [-1679.39, -159.03], [-1676.91, -159.33], [-1674.49, -159.82], [-1670.69, -160.86], [-1666.43, -162.31], [-1660.45, -164.09], [-1656.41, -165.15], [-1635.94, -165.68], [-1628.85, -164.75], [-1624.38, -163.57], [-1619.26, -161.23], [-1615.05, -158.03], [-1611.2, -154.16], [-1607.52, -150.54], [-1604.07, -147.76], [-1598.14, -143.54], [-1592.23, -140.58], [-1583.32, -137.52], [-1574.29, -135.71], [-1566.46, -134.71], [-1558.1, -134.52], [-1544.27, -134.73], [-1520.17, -137.21], [-1502.29, -135.39], [-1467.23, -137.07], [-1462.06, -137.35], [-1460.45, -84.34], [-1460.38, -80.37], [-1459.62, -57.54], [-1455.35, 22.16], [-1454.85, 34.7], [-1454.53, 42.84], [-1452.79, 42.77], [-1452.5, 54.3], [-1451.55, 82.68], [-1455.58, 82.84], [-1458.28, 82.92], [-1474.21, 83.98], [-1487.38, 84.6], [-1515.78, 86.02], [-1539.21, 87.13], [-1544.83, 87.48], [-1549.42, 88.06], [-1553.45, 89.68], [-1556.43, 91.5], [-1558.87, 94.07], [-1560.64, 98.57], [-1561.29, 103.63], [-1561.26, 109.23], [-1561.01, 119.03], [-1560.95, 126.01], [-1561.11, 132.84], [-1562.28, 137.71], [-1563.59, 140.66], [-1564.77, 141.78], [-1566.65, 142.72], [-1567.63, 142.87], [-1569.95, 142.31], [-1572.75, 140.45], [-1575.0, 137.42], [-1577.31, 133.33], [-1581.81, 124.99], [-1586.34, 116.59], [-1595.1, 104.89], [-1604.86, 93.36], [-1612.62, 85.93], [-1619.21, 80.6], [-1626.94, 77.2], [-1635.61, 73.09], [-1644.93, 68.96], [-1653.41, 64.52], [-1673.77, 54.1], [-1683.17, 50.79], [-1692.91, 49.3], [-1703.25, 49.29], [-1713.51, 49.75], [-1730.32, 51.24], [-1753.0, 54.54], [-1770.53, 57.27], [-1784.22, 58.66], [-1807.2, 58.74], [-1821.19, 59.62], [-1835.14, 61.42], [-1846.07, 63.91], [-1857.15, 67.33], [-1870.19, 71.5], [-1875.85, 73.96], [-1878.51, 66.48], [-1887.52, 37.71]], [[-1884.08, -232.73], [-1888.05, -232.57], [-1892.16, -232.4], [-1891.58, -233.13], [-1888.78, -236.18], [-1885.11, -240.68], [-1882.57, -244.15], [-1880.41, -247.85], [-1877.72, -253.63], [-1875.1, -261.32], [-1873.44, -269.0], [-1872.56, -282.29], [-1872.72, -297.64], [-1873.77, -342.77], [-1873.86, -346.57], [-1873.95, -349.36], [-1868.33, -349.87], [-1757.04, -355.48], [-1748.02, -355.93], [-1747.95, -352.47], [-1746.93, -300.2], [-1743.43, -300.27], [-1746.93, -300.13], [-1745.62, -267.97], [-1745.1, -245.07], [-1745.02, -241.44], [-1744.84, -238.35], [-1751.09, -237.88], [-1884.08, -232.73]], [[-1869.31, -363.84], [-1874.86, -363.33], [-1874.96, -367.39], [-1875.09, -372.15], [-1875.51, -388.55], [-1875.6, -392.17], [-1877.23, -428.93], [-1877.08, -450.76], [-1877.56, -469.77], [-1877.66, -473.44], [-1877.79, -478.88], [-1872.14, -479.16], [-1763.23, -483.94], [-1758.16, -484.41], [-1752.34, -484.65], [-1752.24, -479.1], [-1751.82, -460.48], [-1750.23, -428.55], [-1749.29, -399.77], [-1749.08, -394.44], [-1748.32, -374.61], [-1748.26, -369.93], [-1757.73, -369.46], [-1869.31, -363.84]], [[-1763.71, -490.93], [-1872.47, -486.16], [-1878.42, -485.86], [-1878.5, -491.49], [-1878.53, -493.42], [-1878.66, -504.04], [-1879.32, -536.68], [-1879.37, -539.1], [-1880.21, -581.16], [-1880.55, -598.02], [-1880.75, -607.98], [-1880.77, -608.79], [-1881.18, -625.55], [-1881.44, -632.03], [-1881.66, -637.93], [-1874.97, -638.26], [-1857.46, -639.15], [-1828.84, -640.6], [-1827.09, -640.7], [-1807.94, -641.68], [-1798.95, -642.14], [-1784.11, -642.9], [-1764.07, -643.92], [-1760.37, -644.1], [-1755.26, -644.36], [-1754.92, -609.47], [-1754.12, -595.92], [-1753.82, -586.24], [-1753.17, -564.54], [-1753.07, -534.44], [-1752.75, -499.75], [-1752.58, -494.48], [-1752.5, -491.65], [-1758.62, -491.4], [-1763.71, -490.93]], [[-1764.42, -650.91], [-1784.46, -649.89], [-1799.3, -649.13], [-1808.3, -648.67], [-1827.46, -647.69], [-1829.2, -647.59], [-1857.82, -646.14], [-1875.32, -645.25], [-1882.09, -644.91], [-1882.69, -652.12], [-1882.83, -663.36], [-1882.56, -690.46], [-1884.23, -740.1], [-1887.23, -739.99], [-1884.24, -740.1], [-1884.42, -745.24], [-1884.9, -768.86], [-1885.32, -780.51], [-1885.69, -793.79], [-1886.35, -832.99], [-1886.49, -840.75], [-1886.53, -843.18], [-1881.02, -843.43], [-1871.39, -843.87], [-1839.01, -845.37], [-1835.43, -845.54], [-1815.11, -846.48], [-1808.11, -846.8], [-1798.41, -847.24], [-1765.47, -848.77], [-1760.59, -848.99], [-1760.53, -847.14], [-1760.1, -820.54], [-1759.93, -810.63], [-1759.83, -805.05], [-1759.45, -797.51], [-1759.24, -792.78], [-1757.23, -736.06], [-1756.17, -672.5], [-1752.17, -672.57], [-1755.67, -672.5], [-1755.45, -661.7], [-1755.39, -656.82], [-1755.33, -651.37], [-1760.73, -651.09], [-1764.42, -650.91]], [[-1799.05, -861.23], [-1808.76, -860.78], [-1815.76, -860.46], [-1836.08, -859.52], [-1839.66, -859.35], [-1872.03, -857.86], [-1881.66, -857.41], [-1886.66, -857.18], [-1886.67, -859.27], [-1886.7, -860.77], [-1886.87, -867.9], [-1886.91, -869.46], [-1887.23, -882.77], [-1887.57, -894.53], [-1888.22, -919.89], [-1883.15, -919.98], [-1881.9, -920.02], [-1767.45, -923.13], [-1762.6, -923.26], [-1762.44, -917.44], [-1761.45, -880.91], [-1761.41, -879.5], [-1761.06, -865.27], [-1760.99, -862.99], [-1766.11, -862.75], [-1799.05, -861.23]], [[-1882.06, -926.02], [-1883.29, -925.98], [-1888.36, -925.89], [-1889.64, -990.45], [-1889.72, -994.3], [-1844.03, -995.63], [-1801.16, -996.74], [-1772.95, -997.21], [-1769.84, -997.27], [-1764.65, -997.31], [-1764.46, -990.52], [-1762.77, -929.26], [-1767.61, -929.13], [-1882.06, -926.02]], [[-1842.63, -1053.46], [-1842.65, -1053.9], [-1842.68, -1055.33], [-1773.83, -1056.62], [-1770.24, -1056.69], [-1765.78, -1056.8], [-1764.92, -1010.01], [-1764.79, -1003.31], [-1769.92, -1003.27], [-1773.06, -1003.21], [-1801.28, -1002.73], [-1841.19, -1001.7], [-1841.3, -1005.71], [-1842.63, -1053.46]], [[-1883.13, -1060.42], [-1888.04, -1060.26], [-1888.11, -1062.4], [-1889.43, -1104.47], [-1889.52, -1107.15], [-1889.77, -1115.24], [-1884.42, -1115.35], [-1772.7, -1117.77], [-1767.66, -1117.88], [-1767.42, -1110.29], [-1765.93, -1062.79], [-1770.37, -1062.68], [-1773.94, -1062.62], [-1845.82, -1061.28], [-1845.76, -1058.28], [-1845.83, -1061.28], [-1883.13, -1060.42]], [[-1884.55, -1121.35], [-1889.94, -1121.23], [-1890.16, -1129.51], [-1891.44, -1178.41], [-1892.5, -1227.58], [-1892.67, -1235.43], [-1887.36, -1235.61], [-1775.74, -1238.42], [-1774.94, -1238.44], [-1770.44, -1238.64], [-1770.24, -1230.91], [-1768.98, -1182.41], [-1767.98, -1132.05], [-1767.81, -1123.87], [-1772.83, -1123.77], [-1884.55, -1121.35]], [[-1775.9, -1244.42], [-1887.54, -1241.61], [-1892.8, -1241.43], [-1893.0, -1250.03], [-1894.09, -1298.59], [-1894.85, -1325.34], [-1895.36, -1348.44], [-1895.43, -1351.21], [-1895.71, -1356.94], [-1891.48, -1357.05], [-1863.01, -1357.75], [-1831.21, -1358.71], [-1779.15, -1360.14], [-1777.04, -1360.2], [-1773.4, -1360.26], [-1773.2, -1352.24], [-1771.93, -1302.15], [-1770.79, -1253.37], [-1770.58, -1244.64], [-1775.16, -1244.44], [-1775.9, -1244.42]], [[-1779.32, -1366.14], [-1831.38, -1364.71], [-1863.18, -1363.75], [-1891.64, -1363.05], [-1895.89, -1362.94], [-1895.96, -1371.08], [-1896.72, -1415.55], [-1902.72, -1415.45], [-1901.96, -1371.0], [-1901.89, -1362.8], [-1906.92, -1362.71], [-2018.97, -1359.89], [-2024.27, -1359.76], [-2024.41, -1367.46], [-2024.42, -1368.08], [-2026.4, -1466.37], [-2026.42, -1473.96], [-2014.18, -1474.36], [-2008.54, -1474.58], [-1781.03, -1480.72], [-1777.03, -1480.81], [-1776.74, -1472.61], [-1774.97, -1423.01], [-1773.74, -1373.79], [-1773.55, -1366.26], [-1777.17, -1366.2], [-1779.32, -1366.14]], [[-2005.69, -1480.66], [-2005.85, -1488.89], [-2007.78, -1588.93], [-2007.94, -1593.01], [-2004.91, -1593.09], [-1786.94, -1601.57], [-1784.37, -1601.67], [-1779.33, -1601.77], [-1779.23, -1595.35], [-1778.36, -1543.83], [-1777.36, -1495.09], [-1777.19, -1486.81], [-1781.18, -1486.71], [-2005.69, -1480.66]], [[-1787.2, -1608.57], [-2005.14, -1600.08], [-2008.2, -1600.0], [-2008.37, -1604.67], [-2008.95, -1621.2], [-2010.8, -1708.61], [-2010.92, -1714.55], [-2008.0, -1714.66], [-1895.83, -1718.99], [-1813.13, -1722.19], [-1787.68, -1722.75], [-1783.71, -1722.83], [-1783.41, -1714.45], [-1781.61, -1665.82], [-1779.79, -1616.25], [-1779.52, -1608.76], [-1784.56, -1608.67], [-1787.2, -1608.57]], [[-1777.94, -1784.3], [-1778.5, -1802.33], [-1777.23, -1808.86], [-1776.94, -1816.44], [-1777.02, -1821.71], [-1777.83, -1873.41], [-1779.28, -1924.69], [-1779.76, -1932.75], [-1781.09, -1942.53], [-1781.26, -1943.69], [-1782.45, -1951.62], [-1782.99, -1973.84], [-1783.19, -1982.11], [-1778.79, -1979.92], [-1776.48, -1978.59], [-1745.9, -1961.07], [-1705.09, -1938.11], [-1700.1, -1935.45], [-1698.69, -1938.1], [-1700.08, -1935.45], [-1695.66, -1933.12], [-1658.55, -1913.83], [-1623.37, -1894.53], [-1617.83, -1891.5], [-1618.52, -1885.86], [-1620.5, -1859.17], [-1620.9, -1853.81], [-1621.03, -1852.12], [-1621.79, -1843.81], [-1622.09, -1840.61], [-1622.98, -1834.59], [-1624.04, -1827.46], [-1625.22, -1821.89], [-1626.74, -1815.82], [-1628.0, -1810.71], [-1628.87, -1807.23], [-1631.45, -1799.18], [-1635.91, -1787.8], [-1637.69, -1783.23], [-1640.18, -1777.69], [-1646.46, -1763.7], [-1649.42, -1752.29], [-1651.35, -1742.53], [-1651.31, -1738.93], [-1651.31, -1732.06], [-1657.87, -1731.97], [-1675.2, -1731.74], [-1725.26, -1731.1], [-1770.53, -1729.71], [-1775.95, -1729.54], [-1776.15, -1735.1], [-1777.94, -1784.3]], [[-1645.34, -1741.98], [-1643.57, -1750.96], [-1640.78, -1761.7], [-1634.7, -1775.23], [-1632.16, -1780.91], [-1630.32, -1785.62], [-1625.8, -1797.17], [-1623.1, -1805.59], [-1622.18, -1809.27], [-1620.92, -1814.37], [-1619.38, -1820.54], [-1618.13, -1826.4], [-1617.05, -1833.71], [-1616.13, -1839.89], [-1615.82, -1843.26], [-1615.05, -1851.62], [-1614.92, -1853.36], [-1614.52, -1858.72], [-1612.55, -1885.27], [-1612.16, -1888.43], [-1607.03, -1885.67], [-1550.48, -1854.56], [-1514.94, -1834.16], [-1511.86, -1832.39], [-1507.84, -1831.23], [-1516.93, -1809.51], [-1521.96, -1782.18], [-1523.54, -1743.25], [-1523.19, -1734.76], [-1527.82, -1734.65], [-1556.58, -1734.07], [-1603.24, -1733.09], [-1612.21, -1732.9], [-1639.84, -1732.13], [-1645.31, -1732.11], [-1645.3, -1738.96], [-1645.34, -1741.98]], [[-1511.95, -1839.36], [-1547.54, -1859.79], [-1604.16, -1890.94], [-1610.52, -1894.36], [-1609.97, -1895.36], [-1579.84, -1950.47], [-1579.05, -1951.92], [-1577.28, -1955.17], [-1572.54, -1952.63], [-1517.25, -1922.97], [-1513.77, -1921.09], [-1501.0, -1914.16], [-1478.16, -1901.34], [-1475.87, -1900.05], [-1472.65, -1898.24], [-1474.28, -1895.18], [-1485.28, -1874.48], [-1505.29, -1836.74], [-1509.5, -1837.95], [-1511.95, -1839.36]], [[-1474.24, -1908.31], [-1497.13, -1921.17], [-1509.96, -1928.12], [-1513.45, -1930.01], [-1568.76, -1959.68], [-1573.45, -1962.19], [-1570.73, -1967.19], [-1569.64, -1969.18], [-1495.99, -2104.28], [-1474.59, -2140.18], [-1466.54, -2146.74], [-1457.9, -2150.66], [-1447.16, -2152.0], [-1429.21, -2154.21], [-1414.53, -2155.09], [-1394.7, -2155.78], [-1390.05, -2155.95], [-1386.77, -2156.06], [-1386.53, -2150.84], [-1384.95, -2116.01], [-1383.11, -2116.09], [-1386.08, -2110.17], [-1385.94, -2100.46], [-1383.45, -2100.49], [-1383.5, -2099.9], [-1385.74, -2099.21], [-1384.07, -2093.71], [-1384.32, -2091.06], [-1384.25, -2085.02], [-1383.46, -2072.17], [-1383.26, -2067.28], [-1384.04, -2059.53], [-1384.93, -2058.58], [-1384.2, -2057.9], [-1384.27, -2057.24], [-1386.97, -2058.71], [-1391.69, -2050.09], [-1400.63, -2032.87], [-1419.04, -1999.54], [-1421.47, -1995.17], [-1438.97, -1963.39], [-1455.88, -1932.56], [-1470.37, -1906.14], [-1471.95, -1907.02], [-1474.24, -1908.31]], [[-1619.5, -1986.86], [-1652.74, -2005.63], [-1656.9, -2007.99], [-1654.22, -2012.85], [-1614.8, -2084.47], [-1587.1, -2135.7], [-1554.65, -2192.08], [-1532.25, -2232.72], [-1524.5, -2243.61], [-1512.97, -2254.5], [-1478.55, -2255.27], [-1432.94, -2257.87], [-1415.72, -2258.85], [-1398.97, -2259.32], [-1395.57, -2259.41], [-1389.27, -2257.97], [-1389.15, -2253.35], [-1387.15, -2169.55], [-1386.97, -2162.06], [-1390.26, -2161.95], [-1394.91, -2161.78], [-1414.81, -2161.09], [-1429.76, -2160.19], [-1447.89, -2157.95], [-1459.55, -2156.51], [-1469.73, -2151.89], [-1479.21, -2144.16], [-1501.2, -2107.25], [-1574.91, -1972.06], [-1576.0, -1970.06], [-1578.74, -1965.03], [-1584.6, -1968.17], [-1619.5, -1986.86]], [[-1569.51, -2278.69], [-1591.98, -2287.94], [-1597.42, -2290.12], [-1596.09, -2293.26], [-1587.59, -2312.65], [-1577.43, -2339.02], [-1565.65, -2375.01], [-1564.42, -2379.32], [-1559.68, -2378.26], [-1514.98, -2365.26], [-1478.42, -2357.79], [-1461.49, -2356.67], [-1444.1, -2356.98], [-1403.46, -2359.61], [-1399.88, -2359.84], [-1394.28, -2359.98], [-1394.03, -2355.01], [-1389.62, -2265.72], [-1389.54, -2264.19], [-1394.97, -2265.43], [-1399.13, -2265.31], [-1415.98, -2264.84], [-1433.28, -2263.86], [-1478.79, -2261.27], [-1513.74, -2260.49], [-1530.35, -2265.91], [-1569.51, -2278.69]], [[-1554.68, -2420.02], [-1553.86, -2423.47], [-1551.3, -2434.19], [-1544.31, -2470.61], [-1543.52, -2476.89], [-1542.94, -2481.48], [-1538.44, -2481.59], [-1503.07, -2482.42], [-1409.13, -2487.48], [-1405.97, -2487.64], [-1399.35, -2487.51], [-1398.75, -2474.7], [-1394.76, -2370.09], [-1394.57, -2365.98], [-1400.15, -2365.84], [-1403.85, -2365.6], [-1444.35, -2362.98], [-1461.35, -2362.68], [-1477.62, -2363.75], [-1513.54, -2371.09], [-1558.18, -2384.08], [-1562.89, -2385.13], [-1561.71, -2390.05], [-1554.68, -2420.02]], [[-2884.21, -2941.62], [-2863.71, -2921.16], [-2845.81, -2901.59], [-2824.18, -2878.85], [-2795.63, -2848.7], [-2789.99, -2842.39], [-2821.32, -2851.16], [-2884.18, -2870.56], [-2967.74, -2898.5], [-2981.65, -2902.63], [-2978.8, -2905.97], [-2970.93, -2912.82], [-2957.6, -2922.59], [-2946.25, -2931.5], [-2917.68, -2960.2], [-2911.37, -2967.59], [-2891.99, -2949.39], [-2884.21, -2941.62]], [[-3055.98, -2914.77], [-3075.43, -2913.31], [-3097.48, -2911.01], [-3117.34, -2910.55], [-3135.35, -2913.62], [-3136.14, -2913.87], [-3132.76, -2916.51], [-3124.32, -2933.04], [-3113.42, -2951.7], [-3100.93, -2968.42], [-3088.82, -2985.87], [-3081.26, -2997.76], [-3073.66, -3014.68], [-3068.6, -3018.43], [-3064.07, -3020.37], [-3050.36, -3017.49], [-3026.68, -3010.62], [-3007.77, -3006.6], [-2994.78, -3011.36], [-2985.64, -3017.32], [-2976.41, -3027.08], [-2973.02, -3031.63], [-2949.47, -3008.62], [-2930.61, -2987.08], [-2915.67, -2971.79], [-2922.09, -2964.27], [-2950.25, -2935.99], [-2961.22, -2927.37], [-2974.68, -2917.51], [-2983.07, -2910.2], [-2987.94, -2904.51], [-2998.78, -2907.76], [-3020.52, -2912.53], [-3038.23, -2914.16], [-3055.98, -2914.77]], [[-2511.6, -202.03], [-2493.47, -202.91], [-2464.58, -204.29], [-2457.25, -204.59], [-2452.67, -204.76], [-2427.28, -206.03], [-2431.28, -204.97], [-2446.48, -200.32], [-2456.07, -196.39], [-2467.46, -188.57], [-2467.97, -188.78], [-2474.72, -191.67], [-2484.93, -196.44], [-2490.41, -198.03], [-2497.09, -198.58], [-2513.08, -198.18], [-2527.93, -197.78], [-2530.9, -197.71], [-2536.56, -197.6], [-2536.7, -200.6], [-2531.21, -201.02], [-2511.6, -202.03]], [[-2542.42, -392.41], [-2542.65, -400.24], [-2546.15, -400.14], [-2542.15, -400.26], [-2542.41, -409.12], [-2543.87, -457.18], [-2546.2, -536.5], [-2546.41, -545.32], [-2550.41, -545.22], [-2546.42, -545.44], [-2546.8, -552.33], [-2552.12, -719.05], [-2552.41, -728.15], [-2556.41, -728.02], [-2552.41, -728.17], [-2552.67, -734.96], [-2553.52, -762.0], [-2555.15, -811.28], [-2555.27, -815.09], [-2549.35, -812.45], [-2545.56, -812.45], [-2539.0, -812.1], [-2534.55, -811.23], [-2522.68, -808.49], [-2448.41, -786.19], [-2429.64, -779.53], [-2427.08, -778.25], [-2424.49, -776.62], [-2409.25, -764.33], [-2390.55, -756.9], [-2386.96, -754.1], [-2379.32, -748.13], [-2356.63, -730.42], [-2350.05, -725.28], [-2331.53, -710.83], [-2298.6, -685.12], [-2263.24, -657.53], [-2230.33, -631.83], [-2165.5, -579.9], [-2162.05, -577.19], [-2163.35, -576.18], [-2161.99, -574.44], [-2161.01, -572.77], [-2160.32, -571.11], [-2159.31, -568.54], [-2158.43, -565.82], [-2157.75, -562.89], [-2157.27, -560.35], [-2156.82, -557.82], [-2156.44, -555.08], [-2156.23, -552.78], [-2156.06, -550.33], [-2155.96, -548.31], [-2155.5, -476.95], [-2155.45, -468.35], [-2150.2, -468.38], [-2154.7, -468.35], [-2154.65, -459.03], [-2154.48, -434.36], [-2154.3, -404.34], [-2153.63, -404.35], [-2156.16, -398.59], [-2156.57, -395.5], [-2156.57, -382.91], [-2156.41, -370.48], [-2155.84, -354.73], [-2155.62, -348.67], [-2155.16, -338.66], [-2151.66, -338.82], [-2155.15, -338.49], [-2154.43, -330.76], [-2152.69, -303.33], [-2152.37, -294.8], [-2151.91, -286.39], [-2151.05, -282.22], [-2151.04, -282.2], [-2157.32, -279.07], [-2160.67, -277.44], [-2193.84, -261.39], [-2190.79, -255.09], [-2193.12, -259.79], [-2234.83, -239.12], [-2246.66, -233.01], [-2253.37, -230.52], [-2257.96, -228.82], [-2272.36, -226.07], [-2305.93, -222.83], [-2324.42, -221.36], [-2370.69, -217.65], [-2370.55, -215.9], [-2370.85, -215.89], [-2371.13, -217.59], [-2386.02, -215.12], [-2423.51, -213.23], [-2452.98, -211.76], [-2457.53, -211.58], [-2464.89, -211.28], [-2493.8, -209.9], [-2511.95, -209.03], [-2531.66, -208.0], [-2536.98, -207.6], [-2537.09, -211.3], [-2538.12, -246.13], [-2542.42, -392.41]], [[-2490.22, -808.52], [-2486.84, -805.84], [-2483.99, -804.18], [-2516.2, -813.86], [-2503.81, -812.29], [-2494.77, -812.39], [-2490.22, -808.52]], [[-2529.61, -820.12], [-2536.7, -820.66], [-2545.49, -820.75], [-2548.52, -820.74], [-2550.77, -821.17], [-2548.54, -821.8], [-2526.95, -822.17], [-2518.41, -819.12], [-2509.1, -817.5], [-2505.91, -817.27], [-2502.96, -817.09], [-2501.15, -816.57], [-2500.71, -816.32], [-2503.58, -816.29], [-2517.92, -818.11], [-2529.61, -820.12]], [[-2557.35, -829.67], [-2557.51, -848.6], [-2557.96, -858.24], [-2558.31, -886.81], [-2558.34, -889.36], [-2555.54, -892.76], [-2555.3, -892.56], [-2554.49, -893.51], [-2551.85, -887.02], [-2548.39, -884.02], [-2529.4, -867.82], [-2520.52, -860.45], [-2515.54, -856.33], [-2508.2, -850.44], [-2498.24, -846.33], [-2499.14, -845.25], [-2480.16, -829.48], [-2476.64, -826.49], [-2484.14, -827.79], [-2491.1, -827.57], [-2526.68, -826.18], [-2549.13, -825.79], [-2556.39, -823.74], [-2557.35, -829.67]], [[-2524.26, -873.59], [-2517.51, -868.03], [-2516.12, -866.86], [-2510.75, -862.17], [-2503.95, -856.34], [-2501.5, -852.0], [-2506.14, -853.92], [-2513.01, -859.43], [-2517.97, -863.53], [-2526.82, -870.88], [-2545.78, -887.05], [-2548.51, -889.42], [-2549.87, -892.77], [-2545.62, -892.18], [-2543.13, -890.14], [-2524.26, -873.59]], [[-2543.95, -895.99], [-2551.49, -897.03], [-2550.76, -897.88], [-2553.58, -900.29], [-2564.46, -911.48], [-2571.86, -917.6], [-2581.68, -925.93], [-2586.76, -930.44], [-2639.31, -975.33], [-2648.98, -984.09], [-2653.45, -988.43], [-2649.18, -992.88], [-2648.1, -994.12], [-2630.69, -1014.33], [-2623.22, -1022.94], [-2599.99, -1050.66], [-2598.55, -1052.3], [-2594.22, -1057.5], [-2589.58, -1053.59], [-2466.32, -946.85], [-2463.59, -944.49], [-2457.81, -939.85], [-2461.51, -935.78], [-2486.79, -905.64], [-2494.31, -897.09], [-2511.81, -877.24], [-2513.66, -875.14], [-2516.26, -872.18], [-2521.67, -876.64], [-2540.54, -893.19], [-2543.95, -895.99]], [[-2561.07, -1096.68], [-2535.35, -1126.57], [-2531.64, -1130.84], [-2527.0, -1126.76], [-2404.41, -1022.29], [-2399.76, -1018.33], [-2394.49, -1013.84], [-2398.51, -1009.22], [-2424.59, -979.23], [-2450.17, -950.3], [-2454.77, -945.11], [-2459.75, -949.1], [-2462.39, -951.39], [-2585.68, -1058.15], [-2590.38, -1062.12], [-2586.98, -1066.24], [-2584.49, -1069.18], [-2561.07, -1096.68]], [[-2632.52, -1221.85], [-2636.62, -1225.23], [-2630.46, -1232.5], [-2605.97, -1261.41], [-2580.22, -1291.83], [-2576.45, -1296.29], [-2571.89, -1292.39], [-2569.48, -1290.32], [-2478.62, -1212.68], [-2474.24, -1208.94], [-2477.85, -1204.51], [-2502.54, -1174.21], [-2527.49, -1144.91], [-2532.31, -1139.26], [-2537.74, -1143.64], [-2629.87, -1219.66], [-2632.52, -1221.85]], [[-2517.73, -1365.66], [-2514.12, -1369.86], [-2509.45, -1366.07], [-2507.3, -1364.28], [-2480.22, -1341.72], [-2478.3, -1344.03], [-2480.22, -1341.72], [-2452.82, -1318.91], [-2451.49, -1284.64], [-2450.77, -1256.99], [-2450.74, -1237.1], [-2450.73, -1226.88], [-2454.74, -1226.69], [-2456.37, -1226.34], [-2458.52, -1225.59], [-2460.71, -1224.05], [-2466.1, -1218.42], [-2470.37, -1213.52], [-2474.72, -1217.24], [-2565.58, -1294.88], [-2567.99, -1296.95], [-2572.59, -1300.88], [-2568.52, -1305.78], [-2543.27, -1335.55], [-2517.73, -1365.66]], [[-2884.66, -1006.14], [-2905.06, -1007.98], [-2953.88, -1013.45], [-2964.46, -1015.45], [-2968.29, -1016.98], [-2973.78, -1021.02], [-2971.12, -1024.31], [-2923.62, -1082.86], [-2920.23, -1087.19], [-2915.79, -1083.22], [-2910.04, -1079.01], [-2904.02, -1076.02], [-2901.03, -1074.87], [-2898.43, -1074.09], [-2895.66, -1073.51], [-2892.94, -1073.09], [-2890.34, -1072.84], [-2887.39, -1072.68], [-2868.27, -1072.97], [-2864.69, -1073.04], [-2845.35, -1073.54], [-2838.23, -1073.71], [-2826.59, -1073.88], [-2823.61, -1073.92], [-2821.14, -1073.72], [-2816.4, -1072.84], [-2811.58, -1071.67], [-2808.08, -1070.94], [-2803.83, -1070.31], [-2804.4, -1068.31], [-2805.06, -1064.39], [-2804.05, -1033.43], [-2804.09, -1028.43], [-2803.88, -1012.58], [-2803.84, -1007.33], [-2808.68, -1007.18], [-2811.98, -1007.09], [-2866.32, -1005.46], [-2884.66, -1006.14]], [[-2820.34, -1079.67], [-2823.4, -1079.93], [-2826.67, -1079.88], [-2838.34, -1079.71], [-2845.5, -1079.54], [-2864.83, -1079.04], [-2868.37, -1078.97], [-2887.28, -1078.69], [-2889.89, -1078.82], [-2892.19, -1079.05], [-2894.59, -1079.41], [-2896.95, -1079.91], [-2899.08, -1080.55], [-2901.61, -1081.52], [-2906.91, -1084.15], [-2912.01, -1087.89], [-2916.54, -1091.94], [-2913.03, -1096.52], [-2892.11, -1123.03], [-2879.11, -1139.22], [-2869.03, -1152.16], [-2867.74, -1153.55], [-2863.68, -1158.49], [-2859.1, -1154.58], [-2846.89, -1144.09], [-2786.87, -1092.99], [-2775.22, -1082.29], [-2779.5, -1079.92], [-2794.42, -1076.19], [-2796.94, -1075.76], [-2799.78, -1075.78], [-2807.03, -1076.85], [-2810.27, -1077.53], [-2815.15, -1078.7], [-2820.34, -1079.67]], [[-2804.87, -1228.12], [-2801.3, -1231.95], [-2796.96, -1228.24], [-2794.85, -1226.51], [-2713.94, -1158.51], [-2711.09, -1156.09], [-2706.78, -1152.38], [-2710.58, -1148.19], [-2735.87, -1118.42], [-2761.96, -1090.05], [-2768.84, -1085.93], [-2782.24, -1098.23], [-2842.34, -1149.41], [-2854.55, -1159.89], [-2859.27, -1163.94], [-2855.89, -1168.19], [-2853.8, -1170.68], [-2831.84, -1197.83], [-2804.87, -1228.12]], [[-2897.19, -1319.99], [-2892.2, -1325.69], [-2866.9, -1354.58], [-2841.09, -1386.16], [-2838.34, -1389.52], [-2834.16, -1385.97], [-2748.36, -1313.02], [-2742.93, -1308.17], [-2745.55, -1305.27], [-2773.13, -1274.8], [-2797.61, -1245.48], [-2801.89, -1240.35], [-2806.48, -1244.25], [-2809.37, -1246.69], [-2892.74, -1316.68], [-2897.19, -1319.99]], [[-2774.92, -1464.84], [-2770.87, -1461.41], [-2684.72, -1388.22], [-2680.28, -1384.45], [-2684.01, -1379.8], [-2709.15, -1348.59], [-2733.74, -1319.01], [-2738.99, -1312.7], [-2744.42, -1317.54], [-2830.27, -1390.54], [-2834.54, -1394.17], [-2829.6, -1400.22], [-2805.33, -1429.91], [-2779.15, -1459.99], [-2774.92, -1464.84]], [[-2711.8, -1537.86], [-2707.86, -1534.76], [-2694.32, -1523.45], [-2661.96, -1496.5], [-2617.9, -1458.32], [-2621.69, -1453.77], [-2646.24, -1424.23], [-2672.52, -1393.93], [-2676.49, -1389.1], [-2680.84, -1392.79], [-2766.99, -1465.98], [-2770.91, -1469.31], [-2767.34, -1473.19], [-2741.03, -1503.68], [-2715.38, -1533.28], [-2711.8, -1537.86]], [[-2903.27, -1512.74], [-2877.2, -1543.59], [-2872.44, -1549.22], [-2867.82, -1545.39], [-2855.03, -1534.76], [-2782.89, -1472.24], [-2779.38, -1468.86], [-2783.67, -1463.93], [-2809.92, -1433.78], [-2834.24, -1404.01], [-2839.11, -1398.05], [-2843.26, -1401.59], [-2927.69, -1473.7], [-2932.67, -1477.96], [-2928.31, -1483.11], [-2903.27, -1512.74]], [[-2794.54, -1608.08], [-2725.94, -1549.91], [-2716.42, -1541.68], [-2720.01, -1537.09], [-2745.57, -1507.61], [-2771.82, -1477.19], [-2775.37, -1473.33], [-2778.85, -1476.67], [-2851.15, -1539.34], [-2863.99, -1550.0], [-2868.57, -1553.81], [-2865.43, -1557.53], [-2840.11, -1587.5], [-2814.62, -1617.66], [-2810.6, -1622.42], [-2794.54, -1608.08]], [[-2910.49, -1323.5], [-2905.67, -1319.16], [-2907.97, -1316.2], [-2934.35, -1285.34], [-2958.4, -1256.37], [-2962.51, -1251.31], [-2969.32, -1256.86], [-2978.64, -1264.76], [-2978.64, -1264.76], [-2984.6, -1270.35], [-3057.59, -1331.15], [-3053.68, -1335.79], [-3028.15, -1364.96], [-3002.28, -1395.58], [-2999.67, -1398.68], [-2996.09, -1395.66], [-2910.49, -1323.5]], [[-2936.54, -1473.38], [-2931.59, -1469.14], [-2847.15, -1397.03], [-2842.91, -1393.41], [-2845.74, -1389.96], [-2871.48, -1358.45], [-2896.72, -1329.64], [-2901.85, -1323.79], [-2906.55, -1328.02], [-2992.22, -1400.24], [-2995.8, -1403.26], [-2990.96, -1408.98], [-2965.67, -1438.89], [-2939.53, -1469.85], [-2936.54, -1473.38]], [[-2976.38, -1626.84], [-2972.03, -1631.87], [-2968.06, -1628.58], [-2953.03, -1616.1], [-2929.13, -1596.27], [-2907.2, -1578.06], [-2885.49, -1560.04], [-2882.18, -1557.3], [-2877.06, -1553.05], [-2881.79, -1547.46], [-2907.86, -1516.61], [-2932.89, -1486.98], [-2937.23, -1481.85], [-2941.29, -1485.33], [-3012.95, -1546.5], [-3020.24, -1552.73], [-3026.77, -1558.72], [-3030.58, -1562.2], [-3026.77, -1566.85], [-3002.02, -1596.15], [-2995.42, -1603.52], [-2987.39, -1614.11], [-2976.38, -1626.84]], [[-2968.21, -1636.5], [-2956.1, -1651.95], [-2929.75, -1683.08], [-2913.61, -1701.9], [-2909.6, -1706.58], [-2892.14, -1691.08], [-2854.39, -1658.23], [-2815.16, -1626.31], [-2819.2, -1621.54], [-2844.69, -1591.37], [-2870.01, -1561.41], [-2873.19, -1557.64], [-2878.35, -1561.92], [-2881.66, -1564.66], [-2903.37, -1582.68], [-2925.3, -1600.89], [-2949.2, -1620.72], [-2964.23, -1633.2], [-2968.21, -1636.5]], [[-2944.11, -1473.72], [-2970.26, -1442.77], [-2995.55, -1412.85], [-3000.38, -1407.13], [-3003.01, -1409.35], [-3074.83, -1470.13], [-3077.13, -1472.07], [-3081.7, -1475.91], [-3076.88, -1481.34], [-3050.8, -1511.63], [-3025.56, -1541.66], [-3021.85, -1546.21], [-3016.85, -1541.94], [-2945.19, -1480.76], [-2941.1, -1477.27], [-2944.11, -1473.72]], [[-3004.25, -1402.55], [-3006.86, -1399.45], [-3032.7, -1368.87], [-3058.23, -1339.7], [-3062.17, -1335.02], [-3066.66, -1338.86], [-3143.81, -1404.8], [-3140.55, -1408.65], [-3138.92, -1410.56], [-3114.24, -1438.74], [-3089.01, -1467.76], [-3085.7, -1471.43], [-3080.99, -1467.48], [-3078.71, -1465.55], [-3006.88, -1404.77], [-3004.25, -1402.55]], [[-2924.87, -1091.0], [-2928.31, -1086.6], [-2975.78, -1028.09], [-2978.47, -1024.76], [-2982.34, -1028.13], [-3090.01, -1119.4], [-3094.23, -1122.99], [-3091.15, -1126.7], [-3043.9, -1182.56], [-3040.13, -1186.86], [-3036.47, -1183.68], [-2931.84, -1096.04], [-2929.6, -1094.56], [-2924.87, -1091.0]], [[-3002.5, -1232.64], [-2985.67, -1252.46], [-2983.26, -1255.17], [-2981.04, -1257.62], [-2973.79, -1251.48], [-2964.61, -1243.99], [-2962.4, -1246.7], [-2964.61, -1243.98], [-2956.12, -1237.09], [-2936.7, -1220.65], [-2872.96, -1166.57], [-2868.22, -1162.42], [-2872.25, -1157.5], [-2873.6, -1156.06], [-2883.81, -1142.94], [-2896.8, -1126.77], [-2917.77, -1100.2], [-2921.19, -1095.74], [-2926.14, -1099.46], [-2928.24, -1100.86], [-3032.57, -1188.24], [-3036.26, -1191.45], [-3031.34, -1197.57], [-3008.85, -1225.02], [-3002.5, -1232.64]], [[-2805.87, -1235.85], [-2809.3, -1232.16], [-2836.42, -1201.71], [-2858.43, -1174.49], [-2860.54, -1171.99], [-2863.81, -1167.87], [-2868.39, -1171.87], [-2932.18, -1225.99], [-2951.65, -1242.48], [-2957.86, -1247.52], [-2953.76, -1252.56], [-2929.76, -1281.48], [-2903.32, -1312.41], [-2901.02, -1315.36], [-2896.46, -1311.97], [-2813.24, -1242.11], [-2810.36, -1239.67], [-2805.87, -1235.85]], [[-2854.65, -216.89], [-2853.43, -225.14], [-2844.71, -282.43], [-2843.9, -287.75], [-2838.58, -286.91], [-2789.51, -279.09], [-2781.33, -277.94], [-2774.02, -278.04], [-2747.74, -279.0], [-2744.31, -279.14], [-2738.96, -279.44], [-2738.83, -275.34], [-2738.35, -258.13], [-2738.12, -253.15], [-2737.83, -247.17], [-2737.23, -231.25], [-2736.11, -201.15], [-2736.07, -200.12], [-2735.95, -195.22], [-2736.92, -195.19], [-2742.22, -195.06], [-2746.12, -194.97], [-2757.82, -195.06], [-2765.01, -195.93], [-2769.26, -197.16], [-2769.55, -196.16], [-2775.42, -200.15], [-2831.12, -209.23], [-2837.26, -208.59], [-2842.41, -208.06], [-2842.24, -209.17], [-2855.49, -211.21], [-2854.93, -214.98], [-2854.65, -216.89]], [[-2829.13, -381.26], [-2821.7, -379.46], [-2792.85, -372.58], [-2779.75, -369.05], [-2778.3, -368.38], [-2760.56, -357.93], [-2752.64, -352.23], [-2747.84, -346.65], [-2743.81, -337.7], [-2741.82, -327.84], [-2739.59, -291.47], [-2739.28, -286.43], [-2744.65, -286.13], [-2748.01, -286.0], [-2774.2, -285.03], [-2780.88, -284.95], [-2788.47, -286.01], [-2837.48, -293.82], [-2842.85, -294.67], [-2842.28, -298.46], [-2832.04, -362.13], [-2829.68, -378.22], [-2829.13, -381.26]], [[-2904.03, -419.41], [-2918.27, -427.82], [-2940.63, -442.26], [-2950.81, -451.03], [-2947.55, -450.93], [-2933.49, -449.97], [-2925.35, -449.68], [-2918.91, -449.98], [-2912.5, -450.79], [-2904.18, -452.61], [-2896.08, -455.31], [-2888.28, -458.83], [-2882.77, -462.19], [-2877.74, -466.22], [-2873.28, -470.87], [-2870.1, -475.08], [-2867.36, -479.65], [-2865.61, -483.81], [-2864.43, -488.14], [-2863.8, -492.6], [-2863.75, -497.27], [-2864.34, -501.9], [-2864.99, -504.33], [-2865.53, -506.4], [-2865.62, -506.62], [-2855.62, -500.3], [-2847.24, -493.69], [-2812.28, -469.7], [-2801.71, -464.81], [-2794.38, -462.54], [-2786.02, -461.36], [-2780.22, -461.45], [-2779.64, -454.92], [-2779.52, -453.5], [-2779.32, -401.54], [-2779.76, -378.84], [-2779.83, -375.28], [-2791.37, -378.4], [-2820.3, -385.29], [-2830.64, -387.8], [-2855.69, -397.09], [-2885.03, -409.29], [-2891.93, -412.9], [-2904.03, -419.41]], [[-2809.3, -474.94], [-2843.68, -498.52], [-2852.14, -505.21], [-2869.88, -516.41], [-2879.66, -528.34], [-2917.85, -564.55], [-2930.52, -577.96], [-2942.07, -591.4], [-2957.53, -607.89], [-2961.39, -610.7], [-2966.19, -614.19], [-2970.64, -616.44], [-2958.25, -617.12], [-2790.69, -623.7], [-2785.63, -623.9], [-2785.49, -618.9], [-2783.35, -578.01], [-2782.3, -536.08], [-2781.56, -476.21], [-2780.76, -467.45], [-2785.65, -467.36], [-2793.07, -468.41], [-2799.55, -470.42], [-2809.3, -474.94]], [[-2985.92, -621.61], [-2987.2, -621.59], [-2987.47, -621.58], [-2987.26, -625.85], [-2986.73, -636.98], [-2976.35, -642.84], [-2967.37, -649.94], [-2960.99, -656.88], [-2954.92, -665.56], [-2949.78, -677.03], [-2946.2, -694.02], [-2946.45, -702.79], [-2946.56, -708.1], [-2941.52, -708.34], [-2869.55, -711.78], [-2820.53, -714.09], [-2793.31, -715.22], [-2788.06, -715.43], [-2787.77, -710.34], [-2785.97, -635.43], [-2785.8, -629.89], [-2790.92, -629.69], [-2958.53, -623.11], [-2985.92, -621.61], [-2985.92, -621.61]], [[-2941.8, -714.34], [-2946.69, -714.1], [-2946.82, -719.9], [-2949.9, -795.27], [-2950.17, -800.54], [-2945.23, -800.77], [-2897.15, -802.92], [-2871.61, -804.07], [-2804.16, -806.65], [-2793.55, -807.04], [-2790.62, -801.09], [-2789.86, -761.3], [-2788.56, -726.5], [-2788.35, -721.43], [-2793.56, -721.21], [-2820.79, -720.08], [-2869.83, -717.77], [-2941.8, -714.34]], [[-2945.55, -807.76], [-2950.51, -807.53], [-2950.8, -813.52], [-2952.32, -850.67], [-2953.71, -884.49], [-2953.87, -888.22], [-2954.07, -893.06], [-2949.18, -893.21], [-2888.85, -896.0], [-2874.74, -895.41], [-2862.59, -893.92], [-2850.49, -891.14], [-2836.99, -885.79], [-2813.98, -873.83], [-2809.73, -870.82], [-2806.22, -868.31], [-2800.96, -867.63], [-2799.93, -817.95], [-2797.47, -813.9], [-2804.42, -813.64], [-2871.9, -811.06], [-2897.46, -809.91], [-2945.55, -807.76]], [[-3053.27, -903.18], [-3041.37, -895.28], [-3050.7, -894.82], [-3073.02, -893.73], [-3070.06, -897.53], [-3064.18, -905.11], [-3061.12, -909.03], [-3053.27, -903.18]], [[-2984.45, -309.73], [-2854.56, -289.34], [-2849.83, -288.65], [-2850.64, -283.33], [-2859.37, -226.03], [-2860.59, -217.77], [-2860.87, -215.86], [-2861.42, -212.13], [-2866.82, -212.97], [-2875.27, -214.27], [-2940.0, -224.3], [-2940.8, -219.11], [-2940.0, -224.3], [-2968.09, -228.64], [-2976.17, -229.9], [-2995.88, -232.95], [-3000.26, -233.63], [-2999.65, -237.5], [-2999.15, -240.4], [-2994.17, -272.38], [-2989.6, -302.19], [-2989.18, -304.98], [-2988.36, -310.37], [-2984.45, -309.73]], [[-3040.69, -565.51], [-3039.1, -575.46], [-3035.25, -588.26], [-3030.24, -596.75], [-3025.43, -604.58], [-3017.27, -614.24], [-2995.12, -615.61], [-2990.67, -615.52], [-2990.62, -618.52], [-2990.56, -615.52], [-2986.21, -615.61], [-2976.97, -612.92], [-2969.33, -609.05], [-2964.91, -605.85], [-2961.52, -603.37], [-2946.54, -587.4], [-2934.98, -573.94], [-2922.1, -560.31], [-2884.06, -524.24], [-2874.5, -512.58], [-2871.23, -504.5], [-2870.79, -502.8], [-2870.24, -500.75], [-2869.76, -496.92], [-2869.79, -493.05], [-2870.31, -489.36], [-2871.3, -485.78], [-2872.73, -482.36], [-2875.08, -478.44], [-2877.85, -474.77], [-2881.79, -470.66], [-2886.22, -467.11], [-2891.09, -464.15], [-2898.27, -460.9], [-2905.78, -458.41], [-2913.52, -456.7], [-2919.42, -455.96], [-2925.38, -455.68], [-2933.17, -455.97], [-2947.26, -456.93], [-2958.04, -457.26], [-3001.02, -493.99], [-3008.65, -500.09], [-3013.26, -503.27], [-3020.72, -509.67], [-3028.96, -519.43], [-3030.17, -521.75], [-3034.82, -530.64], [-3038.87, -542.96], [-3040.66, -553.77], [-3040.69, -565.51]], [[-2992.95, -632.64], [-2993.26, -626.13], [-2993.47, -621.58], [-2995.24, -621.61], [-3010.81, -620.65], [-3010.5, -620.95], [-3006.83, -623.18], [-3001.07, -626.68], [-2992.95, -632.64]], [[-2998.96, -379.77], [-2989.77, -379.35], [-2971.29, -379.88], [-2959.17, -381.37], [-2948.92, -383.48], [-2936.56, -386.76], [-2919.48, -392.2], [-2907.69, -397.21], [-2902.2, -400.3], [-2900.72, -401.34], [-2893.11, -406.74], [-2887.58, -403.85], [-2857.88, -391.51], [-2834.92, -382.99], [-2835.61, -379.19], [-2837.97, -363.04], [-2848.21, -299.38], [-2848.78, -295.57], [-2853.51, -296.26], [-2983.35, -316.64], [-2987.55, -317.33], [-2987.29, -320.57], [-2987.0, -324.18], [-2988.46, -328.52], [-2993.44, -336.91], [-3001.68, -344.73], [-3015.09, -358.92], [-3025.67, -375.3], [-3026.97, -378.43], [-3028.98, -383.22], [-2998.96, -379.77]], [[-2647.27, -721.55], [-2642.98, -721.64], [-2642.71, -716.27], [-2640.54, -641.35], [-2640.42, -636.29], [-2644.62, -636.11], [-2775.16, -630.36], [-2779.81, -630.15], [-2779.98, -635.59], [-2781.77, -710.58], [-2782.06, -715.7], [-2777.56, -715.92], [-2647.27, -721.55]], [[-2566.35, -724.96], [-2560.31, -725.0], [-2560.11, -718.8], [-2554.8, -551.98], [-2554.56, -547.74], [-2561.12, -546.95], [-2626.17, -545.1], [-2630.0, -544.93], [-2630.12, -550.24], [-2631.88, -625.34], [-2632.13, -633.58], [-2632.31, -641.56], [-2634.49, -716.59], [-2634.75, -721.9], [-2630.85, -722.08], [-2566.35, -724.96]], [[-2797.75, -1069.77], [-2796.46, -1069.76], [-2793.19, -1070.31], [-2777.28, -1074.29], [-2770.42, -1078.08], [-2761.51, -1071.12], [-2718.04, -1033.74], [-2704.71, -1022.43], [-2700.94, -1018.88], [-2704.42, -1015.06], [-2706.59, -1012.87], [-2708.32, -1011.07], [-2709.73, -1008.21], [-2709.98, -1003.23], [-2709.22, -983.42], [-2709.03, -972.27], [-2713.46, -972.2], [-2793.23, -971.0], [-2794.87, -970.97], [-2797.31, -970.93], [-2797.81, -1004.46], [-2797.88, -1012.64], [-2798.09, -1028.45], [-2798.05, -1033.51], [-2799.04, -1063.98], [-2798.54, -1066.98], [-2797.75, -1069.77]], [[-2731.37, -1114.44], [-2706.07, -1144.23], [-2702.2, -1148.49], [-2697.09, -1144.2], [-2694.25, -1141.91], [-2603.43, -1065.05], [-2598.84, -1061.33], [-2603.12, -1056.2], [-2604.55, -1054.56], [-2627.79, -1026.83], [-2635.23, -1018.25], [-2652.64, -998.04], [-2653.61, -996.92], [-2658.02, -992.34], [-2662.88, -995.94], [-2670.77, -1002.6], [-2694.08, -1022.03], [-2700.04, -1027.65], [-2713.49, -1039.07], [-2757.07, -1076.54], [-2763.91, -1081.88], [-2758.13, -1085.35], [-2731.37, -1114.44]], [[-2649.78, -1228.56], [-2645.09, -1224.52], [-2647.23, -1221.99], [-2674.24, -1190.11], [-2698.85, -1161.64], [-2702.83, -1156.9], [-2707.19, -1160.65], [-2710.07, -1163.09], [-2791.01, -1231.12], [-2793.1, -1232.84], [-2797.33, -1236.45], [-2793.0, -1241.64], [-2768.61, -1270.86], [-2741.1, -1301.24], [-2738.47, -1304.15], [-2735.33, -1301.3], [-2652.26, -1230.66], [-2649.78, -1228.56]], [[-2584.8, -1295.71], [-2610.55, -1265.29], [-2635.04, -1236.38], [-2641.21, -1229.09], [-2645.88, -1233.12], [-2648.37, -1235.23], [-2731.37, -1305.81], [-2734.53, -1308.68], [-2729.13, -1315.17], [-2704.51, -1344.79], [-2679.34, -1376.04], [-2675.7, -1380.56], [-2671.4, -1376.91], [-2587.7, -1305.85], [-2585.64, -1304.11], [-2581.02, -1300.18], [-2584.8, -1295.71]], [[-2525.55, -1379.99], [-2522.96, -1377.76], [-2518.66, -1373.79], [-2522.29, -1369.55], [-2547.85, -1339.43], [-2573.12, -1309.64], [-2577.16, -1304.78], [-2581.76, -1308.68], [-2583.82, -1310.43], [-2667.52, -1381.48], [-2671.92, -1385.22], [-2667.94, -1390.05], [-2641.67, -1420.35], [-2617.07, -1449.93], [-2613.34, -1454.42], [-2609.1, -1450.84], [-2576.13, -1423.04], [-2558.95, -1408.76], [-2525.55, -1379.99]], [[-2636.33, -1217.21], [-2633.69, -1215.03], [-2541.53, -1139.0], [-2536.22, -1134.71], [-2539.89, -1130.49], [-2565.63, -1100.59], [-2589.07, -1073.06], [-2591.58, -1070.09], [-2595.01, -1065.95], [-2599.6, -1069.67], [-2690.43, -1146.54], [-2693.28, -1148.84], [-2698.26, -1153.02], [-2694.28, -1157.75], [-2669.68, -1186.21], [-2642.66, -1218.11], [-2640.5, -1220.65], [-2636.33, -1217.21]], [[-2794.78, -964.97], [-2793.14, -965.0], [-2713.37, -966.21], [-2708.88, -966.27], [-2708.56, -955.58], [-2708.27, -947.68], [-2707.42, -937.34], [-2701.44, -937.83], [-2702.28, -948.03], [-2702.56, -955.78], [-2702.98, -969.39], [-2703.22, -983.59], [-2703.97, -1003.19], [-2703.8, -1006.67], [-2703.35, -1007.58], [-2702.29, -1008.68], [-2700.07, -1010.93], [-2696.45, -1014.9], [-2675.27, -997.24], [-2667.23, -990.45], [-2660.3, -985.32], [-2653.77, -978.99], [-2643.93, -970.08], [-2591.36, -925.17], [-2586.27, -920.64], [-2576.36, -912.24], [-2569.22, -906.33], [-2560.67, -897.54], [-2565.37, -891.83], [-2565.31, -886.72], [-2564.96, -858.04], [-2564.51, -848.41], [-2564.35, -829.08], [-2563.55, -824.12], [-2568.29, -823.91], [-2591.42, -822.9], [-2642.14, -820.67], [-2641.99, -817.18], [-2642.15, -820.67], [-2650.59, -820.3], [-2779.96, -814.61], [-2790.61, -814.16], [-2793.96, -819.68], [-2795.01, -870.32], [-2795.42, -903.2], [-2795.92, -921.5], [-2796.6, -946.47], [-2797.17, -964.94], [-2794.78, -964.97]], [[-2643.24, -732.7], [-2643.17, -727.63], [-2647.46, -727.54], [-2777.83, -721.91], [-2782.36, -721.69], [-2782.57, -726.74], [-2783.86, -761.47], [-2784.65, -802.55], [-2787.0, -807.31], [-2779.66, -807.62], [-2650.28, -813.3], [-2646.07, -813.49], [-2646.02, -806.75], [-2643.24, -732.7]], [[-2561.52, -761.74], [-2560.67, -734.68], [-2560.53, -730.99], [-2566.51, -730.95], [-2631.12, -728.07], [-2634.94, -727.9], [-2635.01, -732.92], [-2637.79, -806.94], [-2637.85, -813.86], [-2591.12, -815.91], [-2567.99, -816.92], [-2563.34, -817.12], [-2563.14, -811.02], [-2561.52, -761.74]], [[-2732.35, -258.35], [-2732.83, -275.51], [-2732.98, -280.24], [-2728.28, -280.44], [-2726.09, -280.54], [-2637.31, -284.22], [-2634.71, -284.33], [-2630.38, -284.51], [-2630.37, -284.01], [-2630.22, -279.28], [-2629.29, -250.12], [-2628.89, -237.64], [-2628.31, -217.8], [-2628.0, -206.9], [-2627.93, -204.42], [-2627.85, -200.23], [-2632.17, -200.07], [-2668.96, -198.83], [-2698.85, -197.83], [-2706.42, -192.75], [-2706.49, -195.93], [-2722.67, -195.54], [-2729.95, -195.36], [-2730.08, -200.31], [-2730.12, -201.37], [-2731.24, -231.48], [-2731.83, -247.43], [-2732.13, -253.43], [-2732.35, -258.35]], [[-2549.62, -199.21], [-2543.68, -199.91], [-2543.47, -195.73], [-2549.81, -195.62], [-2564.46, -195.18], [-2574.04, -195.39], [-2583.09, -195.47], [-2596.7, -195.15], [-2616.29, -194.42], [-2619.45, -194.33], [-2619.48, -195.25], [-2616.1, -195.36], [-2599.73, -196.08], [-2583.14, -196.7], [-2562.41, -198.17], [-2554.11, -198.85], [-2549.62, -199.21]], [[-2763.59, -461.03], [-2752.67, -459.19], [-2735.65, -454.15], [-2721.41, -447.24], [-2709.26, -438.35], [-2700.2, -429.04], [-2686.24, -416.85], [-2679.66, -411.79], [-2672.55, -407.12], [-2660.96, -401.99], [-2643.03, -395.01], [-2637.68, -394.2], [-2633.72, -394.5], [-2633.59, -389.2], [-2633.03, -367.63], [-2630.74, -295.76], [-2630.57, -290.51], [-2634.96, -290.32], [-2637.56, -290.22], [-2726.35, -286.53], [-2728.54, -286.44], [-2733.26, -286.23], [-2733.6, -291.84], [-2735.86, -328.62], [-2738.06, -339.55], [-2742.73, -349.9], [-2748.56, -356.69], [-2757.28, -362.96], [-2773.87, -372.74], [-2773.76, -378.72], [-2773.32, -401.49], [-2773.52, -453.77], [-2773.66, -455.45], [-2774.19, -461.38], [-2770.04, -461.24], [-2763.59, -461.03]], [[-2550.32, -206.18], [-2554.68, -205.82], [-2562.94, -205.15], [-2583.52, -203.69], [-2600.01, -203.08], [-2616.36, -202.35], [-2619.66, -202.25], [-2619.7, -204.61], [-2619.77, -207.13], [-2620.09, -218.04], [-2620.67, -237.89], [-2621.06, -250.38], [-2621.99, -279.54], [-2622.14, -284.27], [-2622.25, -287.81], [-2626.37, -287.68], [-2622.25, -287.81], [-2622.51, -296.02], [-2624.8, -367.86], [-2625.36, -389.41], [-2625.5, -394.94], [-2620.94, -395.06], [-2555.62, -396.82], [-2549.56, -397.02], [-2549.42, -392.21], [-2545.12, -245.93], [-2544.09, -211.09], [-2543.96, -206.93], [-2550.32, -206.18]], [[-2641.47, -400.84], [-2658.65, -407.53], [-2669.67, -412.41], [-2676.19, -416.69], [-2682.44, -421.49], [-2696.07, -433.4], [-2705.31, -442.9], [-2718.3, -452.4], [-2733.48, -459.76], [-2751.31, -465.05], [-2762.99, -467.01], [-2769.84, -467.24], [-2774.73, -467.41], [-2775.56, -476.52], [-2776.27, -533.25], [-2772.34, -533.4], [-2641.54, -538.46], [-2638.06, -538.6], [-2637.92, -533.71], [-2634.04, -405.86], [-2633.89, -400.51], [-2637.46, -400.24], [-2641.47, -400.84]], [[-2555.8, -402.82], [-2621.1, -401.06], [-2625.67, -400.93], [-2625.81, -406.11], [-2629.69, -533.95], [-2629.84, -538.93], [-2625.96, -539.1], [-2560.67, -540.96], [-2554.33, -541.73], [-2554.2, -536.28], [-2551.86, -456.95], [-2550.41, -408.88], [-2550.23, -403.0], [-2555.8, -402.82]], [[-2638.22, -544.6], [-2641.78, -544.46], [-2772.57, -539.4], [-2776.38, -539.25], [-2777.35, -578.24], [-2779.49, -619.14], [-2779.63, -624.15], [-2774.9, -624.36], [-2644.36, -630.11], [-2640.26, -630.29], [-2640.11, -625.12], [-2638.35, -550.05], [-2638.22, -544.6]], [[-2627.68, -194.08], [-2632.13, -193.95], [-2677.77, -191.94], [-2698.02, -191.12], [-2701.7, -191.7], [-2697.73, -194.37], [-2668.85, -195.33], [-2632.05, -196.57], [-2627.77, -196.73], [-2627.68, -194.08]], [[-2573.36, 136.17], [-2580.4, 136.36], [-2684.52, 140.6], [-2691.47, 140.74], [-2691.63, 134.81], [-2693.92, 83.12], [-2693.54, 76.24], [-2692.56, 68.48], [-2691.4, 63.77], [-2688.73, 56.36], [-2682.39, 42.49], [-2676.55, 31.63], [-2676.19, 30.97], [-2673.27, 25.57], [-2668.4, 18.35], [-2662.3, 12.62], [-2655.85, 8.89], [-2651.77, 7.29], [-2644.87, 5.69], [-2622.73, 4.45], [-2592.59, 2.15], [-2558.39, -0.43], [-2450.23, -4.41], [-2444.24, -4.61], [-2442.7, -4.67], [-2442.42, 0.73], [-2436.57, 115.04], [-2436.43, 119.18], [-2436.23, 125.53], [-2436.08, 130.31], [-2442.96, 130.77], [-2462.02, 131.56], [-2573.36, 136.17]], [[-3035.33, 63.02], [-3035.72, 57.42], [-3035.83, 56.33], [-2985.14, 54.44], [-2960.85, 53.26], [-2942.74, 52.98], [-2942.8, 49.48], [-2942.65, 52.98], [-2897.05, 51.09], [-2859.17, 48.95], [-2827.98, 47.23], [-2792.64, 45.19], [-2761.03, 43.47], [-2747.66, 43.34], [-2738.28, 44.25], [-2730.84, 45.83], [-2721.24, 48.67], [-2711.62, 52.14], [-2702.19, 55.2], [-2696.47, 57.18], [-2698.11, 61.74], [-2699.46, 67.2], [-2700.52, 75.61], [-2700.92, 83.08], [-2698.63, 135.05], [-2698.47, 140.93], [-2705.21, 141.18], [-2743.06, 142.76], [-2894.25, 149.09], [-2896.61, 149.19], [-2901.7, 149.4], [-3032.43, 154.41], [-3032.6, 148.99], [-3035.25, 65.58], [-3035.33, 63.02]], [[-2939.41, 45.84], [-2939.53, 42.13], [-2939.9, 32.29], [-2940.71, 10.81], [-2940.9, 5.81], [-2941.33, -2.29], [-2941.49, -5.39], [-2911.44, -6.84], [-2887.85, -8.14], [-2864.82, -7.82], [-2815.36, -8.73], [-2811.4, -6.78], [-2809.94, -5.5], [-2806.27, -2.56], [-2806.69, -1.85], [-2807.65, 1.94], [-2807.43, 5.85], [-2806.07, 9.5], [-2803.69, 12.6], [-2800.49, 14.86], [-2796.77, 16.07], [-2796.29, 16.08], [-2796.42, 26.8], [-2796.09, 33.69], [-2795.94, 38.37], [-2828.37, 40.24], [-2859.56, 41.96], [-2897.39, 44.1], [-2939.41, 45.84]], [[-2793.63, 10.12], [-2795.77, 10.09], [-2797.77, 9.44], [-2799.48, 8.23], [-2800.76, 6.56], [-2801.49, 4.61], [-2801.6, 2.52], [-2801.09, 0.49], [-2800.02, -1.28], [-2798.26, -2.79], [-2796.12, -3.64], [-2793.82, -3.77], [-2791.61, -3.15], [-2789.72, -1.85], [-2788.35, -0.02], [-2787.63, 2.21], [-2787.6, 4.0], [-2788.06, 5.78], [-2788.97, 7.39], [-2790.26, 8.71], [-2791.87, 9.64], [-2793.63, 10.12]], [[-2437.91, -1459.46], [-2435.89, -1460.22], [-2434.82, -1460.39], [-2426.83, -1460.32], [-2422.45, -1460.62], [-2384.38, -1465.16], [-2369.07, -1465.61], [-2326.22, -1466.85], [-2326.0, -1459.25], [-2325.89, -1455.34], [-2324.14, -1394.83], [-2327.98, -1394.75], [-2341.8, -1392.3], [-2349.86, -1390.12], [-2359.74, -1386.83], [-2366.52, -1383.15], [-2372.56, -1377.75], [-2376.21, -1373.63], [-2380.43, -1367.46], [-2383.52, -1360.49], [-2384.25, -1357.75], [-2385.39, -1353.51], [-2385.52, -1349.64], [-2441.22, -1348.13], [-2447.32, -1347.94], [-2447.35, -1355.29], [-2447.48, -1358.82], [-2449.14, -1405.23], [-2450.33, -1424.86], [-2453.34, -1427.96], [-2455.59, -1430.27], [-2460.01, -1434.82], [-2451.07, -1445.76], [-2441.97, -1457.07], [-2437.91, -1459.46]], [[-2320.22, -1467.0], [-2185.59, -1469.91], [-2179.11, -1470.19], [-2178.77, -1462.26], [-2177.33, -1427.74], [-2176.86, -1413.0], [-2175.65, -1363.72], [-2175.59, -1361.54], [-2178.04, -1360.07], [-2179.93, -1357.9], [-2180.96, -1355.49], [-2181.63, -1355.47], [-2184.85, -1355.42], [-2262.78, -1353.01], [-2264.61, -1352.99], [-2264.92, -1356.65], [-2266.72, -1362.4], [-2270.44, -1370.27], [-2277.14, -1378.43], [-2284.41, -1384.34], [-2290.71, -1387.75], [-2298.39, -1391.01], [-2307.06, -1393.29], [-2315.71, -1394.42], [-2318.14, -1394.64], [-2319.89, -1455.51], [-2320.01, -1459.42], [-2320.22, -1467.0]], [[-2171.33, -1427.96], [-2172.78, -1462.51], [-2173.11, -1470.41], [-2166.9, -1470.58], [-2148.64, -1471.09], [-2114.53, -1472.04], [-2032.42, -1473.8], [-2032.4, -1466.3], [-2030.42, -1367.97], [-2030.41, -1367.36], [-2030.27, -1359.6], [-2035.36, -1359.46], [-2161.64, -1356.06], [-2163.23, -1356.01], [-2163.24, -1356.01], [-2164.67, -1358.65], [-2166.92, -1360.73], [-2169.6, -1361.92], [-2169.65, -1363.87], [-2170.86, -1413.16], [-2171.33, -1427.96]], [[-2419.45, -1490.54], [-2400.69, -1496.02], [-2371.19, -1503.32], [-2356.41, -1507.63], [-2322.67, -1527.56], [-2296.37, -1544.8], [-2292.97, -1547.94], [-2279.57, -1560.35], [-2270.68, -1567.84], [-2266.08, -1571.71], [-2255.84, -1582.44], [-2244.76, -1594.32], [-2243.85, -1595.51], [-2233.24, -1607.57], [-2224.27, -1619.77], [-2216.16, -1631.98], [-2208.99, -1644.78], [-2199.26, -1663.71], [-2197.26, -1671.53], [-2193.3, -1690.16], [-2191.31, -1695.15], [-2189.63, -1693.88], [-2187.65, -1691.44], [-2186.51, -1687.18], [-2185.62, -1680.46], [-2185.13, -1671.86], [-2179.96, -1487.61], [-2179.75, -1483.34], [-2179.38, -1476.18], [-2185.79, -1475.9], [-2323.37, -1472.94], [-2323.31, -1469.94], [-2323.4, -1472.94], [-2384.54, -1471.16], [-2415.9, -1473.48], [-2423.27, -1473.88], [-2428.36, -1473.52], [-2432.31, -1472.87], [-2434.86, -1472.2], [-2437.11, -1471.28], [-2440.59, -1469.54], [-2442.14, -1468.21], [-2443.7, -1466.23], [-2444.66, -1464.43], [-2447.04, -1467.58], [-2448.49, -1470.92], [-2448.75, -1472.82], [-2448.17, -1476.48], [-2446.97, -1478.9], [-2443.73, -1482.08], [-2437.36, -1484.89], [-2419.45, -1490.54]], [[-2427.66, -1467.56], [-2423.22, -1467.87], [-2416.29, -1467.49], [-2415.83, -1467.46], [-2423.02, -1466.6], [-2427.01, -1466.33], [-2433.25, -1466.38], [-2432.96, -1466.5], [-2431.05, -1467.0], [-2427.66, -1467.56]], [[-2146.94, -562.25], [-2147.47, -565.06], [-2148.31, -568.64], [-2149.42, -572.07], [-2150.59, -575.06], [-2151.6, -577.48], [-2152.93, -579.75], [-2150.04, -580.9], [-2149.02, -583.52], [-2148.15, -588.15], [-2148.32, -595.02], [-2149.44, -599.17], [-2151.27, -602.34], [-2150.02, -602.4], [-2150.78, -617.87], [-2150.92, -624.98], [-2144.2, -625.38], [-2140.96, -625.54], [-2112.96, -626.94], [-2093.01, -627.92], [-2078.36, -628.65], [-2077.0, -628.72], [-2057.27, -629.7], [-2054.61, -629.83], [-2028.75, -631.12], [-2022.32, -631.44], [-2022.19, -625.35], [-2021.65, -600.1], [-2021.15, -577.06], [-2020.73, -557.71], [-2020.21, -533.69], [-2020.15, -530.68], [-2020.08, -527.41], [-2019.14, -483.88], [-2019.03, -478.92], [-2025.25, -478.64], [-2054.53, -477.2], [-2070.4, -476.41], [-2075.07, -476.18], [-2141.15, -472.85], [-2144.98, -472.45], [-2145.0, -477.01], [-2145.44, -545.75], [-2141.95, -545.95], [-2139.87, -546.01], [-2129.86, -546.32], [-2118.88, -546.63], [-2101.52, -547.27], [-2096.62, -547.45], [-2079.82, -548.08], [-2080.05, -554.08], [-2096.85, -553.45], [-2101.74, -553.27], [-2119.07, -552.62], [-2130.04, -552.32], [-2140.04, -552.01], [-2142.21, -551.95], [-2145.63, -551.75], [-2145.76, -553.63], [-2146.0, -556.28], [-2146.45, -559.47], [-2146.94, -562.25]], [[-2152.31, -594.44], [-2152.16, -588.47], [-2152.88, -584.63], [-2153.14, -583.97], [-2156.65, -582.57], [-2155.66, -588.53], [-2153.45, -594.32], [-2152.86, -596.47], [-2152.31, -594.44]], [[-2160.34, -584.75], [-2161.15, -585.38], [-2225.98, -637.32], [-2258.94, -663.05], [-2294.3, -690.64], [-2327.22, -716.35], [-2345.74, -730.8], [-2352.33, -735.94], [-2375.01, -753.64], [-2382.65, -759.62], [-2386.65, -762.72], [-2439.44, -803.94], [-2438.8, -804.7], [-2447.26, -811.82], [-2452.69, -816.63], [-2408.92, -818.66], [-2395.17, -819.39], [-2386.11, -819.83], [-2338.18, -821.96], [-2330.21, -822.29], [-2323.61, -822.58], [-2297.45, -823.9], [-2263.65, -825.29], [-2195.7, -828.11], [-2167.57, -829.17], [-2161.62, -829.51], [-2161.65, -827.19], [-2160.65, -793.05], [-2160.57, -789.16], [-2160.48, -784.69], [-2161.03, -776.8], [-2161.22, -770.48], [-2161.34, -762.99], [-2161.03, -751.59], [-2159.86, -732.15], [-2159.64, -726.8], [-2160.24, -710.19], [-2159.04, -664.74], [-2158.44, -640.16], [-2158.28, -635.64], [-2157.98, -627.67], [-2157.77, -617.62], [-2157.01, -602.06], [-2155.59, -602.13], [-2156.33, -598.91], [-2157.26, -595.56], [-2159.54, -589.58], [-2160.34, -584.75]], [[-2153.23, -710.15], [-2152.63, -726.81], [-2152.86, -732.5], [-2154.03, -751.89], [-2154.34, -763.03], [-2154.22, -770.32], [-2154.04, -776.45], [-2153.47, -784.51], [-2153.57, -789.31], [-2153.66, -793.23], [-2154.65, -827.26], [-2154.62, -829.83], [-2149.43, -830.0], [-2115.98, -832.57], [-2110.89, -832.81], [-2091.01, -833.72], [-2068.59, -834.76], [-2063.0, -835.02], [-2032.59, -836.42], [-2026.67, -836.69], [-2026.63, -834.75], [-2026.58, -832.11], [-2026.3, -818.97], [-2026.04, -806.89], [-2025.87, -798.87], [-2025.62, -786.98], [-2025.11, -762.7], [-2024.47, -732.97], [-2023.65, -694.04], [-2023.54, -688.63], [-2023.17, -671.41], [-2023.09, -667.87], [-2022.56, -642.44], [-2022.45, -637.44], [-2029.05, -637.11], [-2054.9, -635.83], [-2057.56, -635.69], [-2077.31, -634.72], [-2078.67, -634.64], [-2093.31, -633.91], [-2113.25, -632.93], [-2141.25, -631.53], [-2144.52, -631.37], [-2151.1, -630.98], [-2151.29, -635.9], [-2151.44, -640.37], [-2152.05, -664.91], [-2153.23, -710.15]], [[-2155.74, -874.17], [-2156.04, -881.13], [-2156.66, -912.09], [-2151.17, -912.34], [-2117.6, -913.1], [-2067.28, -915.05], [-2031.45, -916.11], [-2025.45, -916.29], [-2026.06, -889.53], [-2026.12, -885.31], [-2026.79, -863.64], [-2027.02, -856.25], [-2027.11, -853.25], [-2027.03, -850.69], [-2033.24, -850.41], [-2063.65, -849.0], [-2069.23, -848.74], [-2091.65, -847.71], [-2111.53, -846.79], [-2116.83, -846.55], [-2150.2, -843.98], [-2155.13, -843.82], [-2155.16, -845.7], [-2155.59, -866.52], [-2155.61, -867.52], [-2155.74, -874.17]], [[-2153.53, -986.74], [-2029.66, -990.22], [-2023.49, -990.39], [-2023.49, -985.56], [-2025.29, -922.3], [-2031.63, -922.11], [-2067.49, -921.05], [-2117.78, -919.09], [-2151.37, -918.34], [-2156.82, -918.09], [-2158.21, -961.24], [-2158.47, -981.48], [-2158.54, -986.62], [-2153.53, -986.74]], [[-2160.09, -1046.41], [-2155.42, -1046.52], [-2065.19, -1048.77], [-2027.81, -1050.17], [-2022.82, -1050.37], [-2023.02, -1036.26], [-2023.39, -1001.63], [-2023.45, -996.39], [-2029.82, -996.22], [-2153.69, -992.74], [-2158.66, -992.62], [-2158.81, -997.94], [-2159.79, -1035.11], [-2160.03, -1044.22], [-2160.09, -1046.41]], [[-2028.88, -1111.59], [-2023.48, -1111.73], [-2023.39, -1103.66], [-2023.08, -1078.15], [-2022.81, -1056.37], [-2028.03, -1056.17], [-2065.38, -1054.76], [-2155.56, -1052.52], [-2160.3, -1052.4], [-2162.38, -1100.12], [-2162.48, -1107.92], [-2156.98, -1108.07], [-2028.88, -1111.59]], [[-2165.1, -1228.6], [-2159.22, -1228.75], [-2157.21, -1228.8], [-2032.04, -1231.99], [-2026.71, -1232.14], [-2026.55, -1224.38], [-2025.54, -1175.14], [-2023.9, -1125.95], [-2023.62, -1117.73], [-2029.04, -1117.58], [-2157.14, -1114.07], [-2162.6, -1113.92], [-2162.8, -1121.79], [-2164.07, -1171.22], [-2164.96, -1220.57], [-2165.1, -1228.6]], [[-2169.07, -1344.21], [-2166.67, -1345.37], [-2164.56, -1347.43], [-2163.22, -1350.01], [-2163.06, -1350.01], [-2161.47, -1350.06], [-2035.2, -1353.46], [-2030.13, -1353.6], [-2029.92, -1345.34], [-2028.62, -1295.27], [-2027.13, -1246.8], [-2026.86, -1238.13], [-2032.2, -1237.99], [-2157.36, -1234.79], [-2159.36, -1234.75], [-2165.26, -1234.6], [-2165.52, -1242.61], [-2167.2, -1292.51], [-2168.99, -1341.91], [-2169.07, -1344.21]], [[-2474.97, -818.01], [-2479.54, -817.63], [-2493.52, -816.45], [-2497.37, -819.02], [-2499.58, -820.29], [-2502.28, -821.06], [-2505.65, -821.26], [-2508.61, -821.47], [-2515.21, -822.62], [-2490.95, -823.57], [-2484.42, -823.78], [-2475.91, -822.31], [-2471.19, -821.5], [-2474.97, -818.01]], [[-2508.13, -865.2], [-2513.51, -869.89], [-2513.57, -869.94], [-2511.03, -872.83], [-2509.18, -874.92], [-2491.69, -894.78], [-2484.14, -903.36], [-2458.87, -933.47], [-2455.1, -937.63], [-2449.71, -933.06], [-2342.67, -840.84], [-2341.75, -838.11], [-2341.68, -835.82], [-2386.76, -833.81], [-2395.88, -833.37], [-2409.61, -832.64], [-2454.34, -830.57], [-2454.01, -823.58], [-2454.23, -827.07], [-2465.66, -826.37], [-2475.67, -834.84], [-2494.66, -850.63], [-2495.53, -849.58], [-2500.82, -858.92], [-2508.13, -865.2]], [[-2456.54, -819.91], [-2453.85, -820.08], [-2453.73, -817.52], [-2456.54, -819.91]], [[-2338.25, -1093.71], [-2336.2, -1091.98], [-2332.06, -1088.47], [-2336.26, -1083.43], [-2361.51, -1053.11], [-2386.79, -1022.95], [-2390.6, -1018.4], [-2395.87, -1022.9], [-2400.52, -1026.85], [-2523.07, -1131.29], [-2527.72, -1135.39], [-2522.92, -1141.02], [-2497.93, -1170.37], [-2473.2, -1200.72], [-2469.67, -1205.05], [-2465.06, -1201.14], [-2338.25, -1093.71]], [[-2447.62, -1221.03], [-2437.83, -1221.25], [-2325.88, -1223.91], [-2320.04, -1224.04], [-2319.93, -1217.21], [-2319.89, -1215.29], [-2319.44, -1186.61], [-2318.64, -1136.9], [-2317.88, -1124.97], [-2316.95, -1117.64], [-2314.82, -1107.44], [-2315.96, -1106.93], [-2319.78, -1102.03], [-2324.37, -1097.19], [-2328.14, -1093.01], [-2332.32, -1096.55], [-2334.37, -1098.29], [-2461.18, -1205.72], [-2465.8, -1209.63], [-2461.67, -1214.37], [-2456.78, -1219.48], [-2455.75, -1220.2], [-2454.76, -1220.55], [-2453.96, -1220.72], [-2447.62, -1221.03]], [[-2314.04, -1224.2], [-2308.06, -1224.38], [-2181.39, -1228.14], [-2177.28, -1228.25], [-2171.1, -1228.44], [-2170.96, -1220.46], [-2170.07, -1171.09], [-2168.8, -1121.64], [-2168.6, -1113.79], [-2174.94, -1113.68], [-2240.99, -1111.69], [-2297.62, -1109.98], [-2304.75, -1109.76], [-2308.74, -1109.65], [-2309.13, -1109.53], [-2311.03, -1118.63], [-2311.9, -1125.54], [-2312.64, -1137.13], [-2313.44, -1186.7], [-2313.9, -1215.39], [-2313.93, -1217.31], [-2314.04, -1224.2]], [[-2381.61, -1333.12], [-2379.83, -1329.41], [-2374.51, -1320.99], [-2370.61, -1316.36], [-2364.41, -1311.68], [-2356.23, -1307.93], [-2347.24, -1304.75], [-2340.11, -1302.87], [-2328.32, -1301.56], [-2322.6, -1301.99], [-2322.56, -1300.41], [-2322.22, -1287.38], [-2320.49, -1238.17], [-2320.36, -1234.49], [-2320.2, -1230.04], [-2326.03, -1229.9], [-2437.97, -1227.25], [-2444.73, -1227.1], [-2444.74, -1237.11], [-2444.77, -1257.08], [-2445.5, -1284.83], [-2446.87, -1320.45], [-2447.19, -1338.46], [-2447.26, -1341.94], [-2441.04, -1342.13], [-2385.13, -1343.65], [-2384.66, -1340.97], [-2382.66, -1335.31], [-2381.61, -1333.12]], [[-2363.04, -1378.21], [-2357.34, -1381.3], [-2348.13, -1384.38], [-2340.49, -1386.44], [-2327.39, -1388.76], [-2321.16, -1388.89], [-2316.37, -1388.45], [-2308.22, -1387.39], [-2300.33, -1385.32], [-2293.31, -1382.34], [-2287.76, -1379.33], [-2281.39, -1374.16], [-2275.55, -1367.03], [-2272.32, -1360.21], [-2270.84, -1355.49], [-2270.39, -1349.97], [-2270.98, -1342.59], [-2271.6, -1340.54], [-2272.7, -1336.94], [-2275.21, -1331.09], [-2277.82, -1326.92], [-2280.74, -1323.59], [-2284.17, -1320.43], [-2287.74, -1317.58], [-2293.63, -1314.73], [-2298.4, -1313.12], [-2305.87, -1310.79], [-2311.47, -1309.56], [-2314.89, -1308.81], [-2319.98, -1308.21], [-2328.21, -1307.59], [-2339.01, -1308.79], [-2345.47, -1310.49], [-2353.98, -1313.5], [-2361.32, -1316.86], [-2366.46, -1320.75], [-2369.66, -1324.54], [-2374.57, -1332.32], [-2376.2, -1335.72], [-2377.11, -1337.61], [-2378.84, -1342.5], [-2379.62, -1346.92], [-2379.41, -1352.61], [-2378.45, -1356.2], [-2377.84, -1358.49], [-2375.17, -1364.53], [-2371.47, -1369.93], [-2368.3, -1373.51], [-2363.04, -1378.21]], [[-2175.07, -1344.22], [-2174.98, -1341.69], [-2173.2, -1292.3], [-2171.51, -1242.41], [-2171.25, -1234.44], [-2177.46, -1234.25], [-2181.57, -1234.13], [-2308.24, -1230.38], [-2314.2, -1230.2], [-2314.36, -1234.71], [-2314.49, -1238.38], [-2316.22, -1287.57], [-2316.56, -1300.57], [-2316.62, -1302.57], [-2313.9, -1302.89], [-2310.18, -1303.7], [-2304.34, -1304.98], [-2296.55, -1307.41], [-2291.35, -1309.17], [-2284.53, -1312.47], [-2280.26, -1315.87], [-2276.44, -1319.4], [-2272.99, -1323.33], [-2269.87, -1328.3], [-2267.06, -1334.88], [-2265.87, -1338.79], [-2265.05, -1341.47], [-2264.61, -1346.99], [-2262.67, -1347.01], [-2184.71, -1349.42], [-2181.5, -1349.47], [-2180.63, -1349.5], [-2179.39, -1347.28], [-2177.39, -1345.38], [-2175.07, -1344.22]], [[-2503.46, -1368.89], [-2505.63, -1370.7], [-2510.27, -1374.46], [-2506.24, -1379.38], [-2474.71, -1417.12], [-2463.85, -1430.17], [-2459.89, -1426.09], [-2457.65, -1423.78], [-2456.19, -1422.27], [-2455.13, -1404.94], [-2453.47, -1358.61], [-2453.35, -1355.17], [-2453.32, -1347.76], [-2477.25, -1347.06], [-2503.46, -1368.89]], [[-2169.47, -1354.93], [-2168.97, -1353.99], [-2168.8, -1352.95], [-2168.97, -1351.96], [-2169.44, -1351.06], [-2170.17, -1350.35], [-2171.08, -1349.9], [-2172.12, -1349.75], [-2173.05, -1349.91], [-2173.9, -1350.34], [-2174.6, -1351.01], [-2175.06, -1351.83], [-2175.26, -1352.76], [-2175.18, -1353.75], [-2174.78, -1354.67], [-2174.13, -1355.42], [-2173.27, -1355.94], [-2172.3, -1356.17], [-2171.23, -1356.08], [-2170.26, -1355.65], [-2169.47, -1354.93]], [[-2470.29, -1341.26], [-2453.26, -1341.76], [-2453.19, -1338.35], [-2452.99, -1326.86], [-2467.19, -1338.69], [-2470.29, -1341.26]], [[-2247.06, -886.95], [-2217.41, -861.98], [-2199.29, -845.11], [-2199.24, -844.25], [-2199.17, -841.98], [-2264.23, -839.28], [-2298.1, -837.89], [-2324.27, -836.57], [-2330.8, -836.28], [-2335.68, -836.08], [-2335.77, -839.17], [-2337.51, -844.32], [-2445.81, -937.62], [-2450.14, -941.29], [-2445.68, -946.33], [-2420.08, -975.27], [-2393.98, -1005.29], [-2389.94, -1009.93], [-2386.14, -1006.66], [-2381.2, -1002.41], [-2247.06, -886.95]], [[-2183.5, -961.6], [-2180.8, -959.98], [-2178.83, -959.19], [-2176.96, -958.53], [-2174.19, -958.14], [-2171.22, -957.75], [-2167.26, -957.78], [-2164.11, -957.98], [-2162.72, -914.88], [-2162.03, -880.95], [-2161.74, -873.99], [-2161.61, -867.4], [-2161.59, -866.4], [-2161.16, -845.6], [-2161.13, -843.56], [-2168.23, -843.15], [-2193.18, -842.22], [-2193.24, -844.51], [-2193.43, -847.85], [-2213.44, -866.47], [-2243.17, -891.52], [-2377.29, -1006.96], [-2382.23, -1011.21], [-2386.04, -1014.49], [-2382.19, -1019.09], [-2356.9, -1049.27], [-2331.65, -1079.6], [-2327.49, -1084.58], [-2322.67, -1080.46], [-2320.32, -1078.46], [-2183.5, -961.6]], [[-2240.81, -1105.69], [-2174.8, -1107.68], [-2168.48, -1107.79], [-2168.37, -1099.95], [-2166.17, -1049.23], [-2166.03, -1044.06], [-2165.79, -1034.95], [-2164.8, -997.78], [-2164.58, -989.49], [-2164.47, -981.4], [-2164.24, -963.99], [-2167.47, -963.78], [-2170.86, -963.76], [-2173.38, -964.08], [-2175.54, -964.39], [-2176.73, -964.81], [-2178.12, -965.36], [-2179.98, -966.48], [-2316.42, -1083.02], [-2318.77, -1085.02], [-2323.57, -1089.12], [-2319.96, -1093.12], [-2315.23, -1098.11], [-2312.15, -1102.06], [-2310.33, -1102.87], [-2307.75, -1103.68], [-2304.57, -1103.77], [-2297.44, -1103.98], [-2240.81, -1105.69]], [[-2459.41, -800.69], [-2467.78, -802.66], [-2476.29, -805.25], [-2481.49, -807.36], [-2484.57, -809.15], [-2487.68, -811.61], [-2489.09, -812.81], [-2479.2, -813.64], [-2473.27, -814.14], [-2468.64, -818.4], [-2458.78, -810.0], [-2453.14, -805.01], [-2448.85, -801.4], [-2453.05, -800.27], [-2456.11, -800.23], [-2459.41, -800.69]], [[-2452.49, -796.27], [-2445.13, -798.26], [-2444.6, -797.81], [-2443.96, -798.58], [-2443.75, -798.63], [-2443.85, -798.5], [-2428.6, -786.59], [-2446.23, -792.84], [-2458.49, -796.52], [-2456.36, -796.23], [-2452.49, -796.27]], [[-2435.43, 0.38], [-2435.71, -4.98], [-2429.14, -5.25], [-2403.86, -6.31], [-2331.5, -9.34], [-2328.59, -9.47], [-2258.86, -12.38], [-2256.45, -12.49], [-2251.08, -12.71], [-2251.23, -16.2], [-2251.08, -12.71], [-2228.62, -13.65], [-2228.77, -17.15], [-2228.62, -13.65], [-2222.96, -13.89], [-2219.68, -14.03], [-2205.61, -14.61], [-2189.63, -15.28], [-2182.22, -15.6], [-2108.67, -18.68], [-2098.2, -19.11], [-2025.65, -22.15], [-2005.17, -23.01], [-2001.3, -23.16], [-1919.07, -26.63], [-1912.03, -26.88], [-1911.76, -16.9], [-1910.18, -7.87], [-1906.93, 3.33], [-1903.66, 11.83], [-1894.18, 39.87], [-1885.15, 68.69], [-1882.1, 77.27], [-1889.0, 81.9], [-1898.56, 89.11], [-1911.22, 98.57], [-1924.23, 108.35], [-1931.0, 113.44], [-1937.27, 117.5], [-1944.95, 121.64], [-1954.97, 125.57], [-1961.88, 127.46], [-1969.41, 128.99], [-1977.19, 130.02], [-1991.76, 131.62], [-2011.18, 133.18], [-2022.16, 133.98], [-2032.52, 134.52], [-2042.98, 134.62], [-2054.97, 134.82], [-2068.77, 134.58], [-2097.26, 132.63], [-2119.22, 130.89], [-2136.22, 130.28], [-2157.07, 130.41], [-2167.67, 131.03], [-2178.9, 132.19], [-2194.69, 134.8], [-2209.54, 137.62], [-2233.76, 144.45], [-2256.23, 150.99], [-2274.39, 155.33], [-2284.48, 156.53], [-2302.96, 157.28], [-2314.5, 155.93], [-2321.94, 154.36], [-2332.37, 151.73], [-2339.3, 149.31], [-2348.46, 145.63], [-2367.06, 136.14], [-2374.21, 133.26], [-2388.0, 129.75], [-2395.54, 129.16], [-2423.06, 129.82], [-2429.08, 129.99], [-2429.24, 125.31], [-2429.44, 118.95], [-2429.57, 114.74], [-2435.43, 0.38]], [[-2182.71, -84.47], [-2188.71, -84.24], [-2188.38, -75.44], [-2187.82, -67.96], [-2185.5, -26.25], [-2185.43, -22.47], [-2189.92, -22.28], [-2205.91, -21.61], [-2219.97, -21.03], [-2223.26, -20.89], [-2227.17, -20.72], [-2227.42, -26.31], [-2227.54, -29.06], [-2228.72, -56.18], [-2230.47, -56.1], [-2228.72, -56.18], [-2229.89, -82.71], [-2230.13, -88.27], [-2230.51, -97.75], [-2231.21, -111.29], [-2231.72, -124.46], [-2232.3, -137.65], [-2232.8, -155.02], [-2234.45, -197.94], [-2234.57, -202.03], [-2224.98, -203.74], [-2210.05, -205.29], [-2189.5, -206.59], [-2140.33, -208.18], [-2140.56, -215.17], [-2140.24, -208.18], [-2127.9, -208.74], [-2124.03, -208.84], [-2107.16, -209.54], [-2014.96, -213.33], [-2006.73, -213.72], [-2002.88, -213.83], [-1999.66, -213.96], [-1966.45, -215.33], [-1963.87, -215.43], [-1920.38, -217.27], [-1908.69, -217.72], [-1911.02, -212.32], [-1911.57, -210.15], [-1911.8, -209.53], [-1914.9, -200.26], [-1915.76, -194.54], [-1916.37, -189.16], [-1916.64, -183.71], [-1914.97, -126.91], [-1914.91, -125.52], [-1914.65, -116.15], [-1913.6, -80.47], [-1912.7, -49.71], [-1912.61, -46.98], [-1912.23, -33.88], [-1919.34, -33.63], [-2001.59, -30.16], [-2005.46, -30.0], [-2025.94, -29.15], [-2098.49, -26.11], [-2108.96, -25.67], [-2179.43, -22.72], [-2179.5, -26.47], [-2181.84, -68.34], [-2182.38, -75.77], [-2182.71, -84.47]], [[-2188.77, -241.65], [-2188.8, -245.24], [-2188.92, -250.15], [-2188.5, -250.36], [-2187.74, -248.79], [-2154.56, -264.85], [-2151.14, -266.51], [-2149.56, -267.29], [-2149.46, -264.64], [-2148.08, -228.6], [-2147.92, -224.37], [-2147.83, -221.94], [-2188.3, -220.63], [-2188.38, -223.13], [-2188.47, -227.25], [-2188.77, -241.65]], [[-2440.9, -86.51], [-2441.33, -103.54], [-2441.34, -117.76], [-2440.22, -122.69], [-2438.06, -127.22], [-2436.27, -129.71], [-2431.38, -134.79], [-2426.87, -138.29], [-2416.52, -143.18], [-2402.35, -149.92], [-2342.65, -177.3], [-2319.49, -190.47], [-2307.05, -198.0], [-2306.75, -194.72], [-2304.1, -194.95], [-2298.61, -195.56], [-2260.95, -199.92], [-2260.51, -195.09], [-2259.78, -180.97], [-2258.4, -153.97], [-2257.7, -136.87], [-2257.67, -135.03], [-2256.57, -110.36], [-2256.03, -96.52], [-2255.65, -87.07], [-2254.36, -55.34], [-2252.61, -55.41], [-2254.36, -55.34], [-2253.12, -25.19], [-2253.03, -19.63], [-2256.75, -19.48], [-2259.16, -19.38], [-2328.89, -16.46], [-2331.8, -16.33], [-2404.16, -13.31], [-2429.43, -12.24], [-2437.88, -11.89], [-2438.43, -19.81], [-2439.33, -46.19], [-2439.58, -53.44], [-2440.22, -68.5], [-2440.78, -81.49], [-2440.9, -86.51]], [[-2230.09, -229.75], [-2192.38, -248.44], [-2192.3, -245.18], [-2192.27, -241.6], [-2191.97, -227.18], [-2191.88, -223.04], [-2191.8, -220.47], [-2211.21, -219.25], [-2226.93, -217.61], [-2237.64, -215.7], [-2260.73, -212.27], [-2260.47, -210.54], [-2287.55, -207.41], [-2299.46, -207.54], [-2304.94, -207.6], [-2319.77, -206.6], [-2333.07, -205.7], [-2353.2, -203.5], [-2368.38, -201.71], [-2379.26, -200.38], [-2389.49, -198.73], [-2402.0, -196.16], [-2410.49, -193.52], [-2419.54, -190.46], [-2431.42, -185.69], [-2436.65, -183.72], [-2443.62, -182.2], [-2449.16, -182.0], [-2456.32, -182.9], [-2456.9, -183.08], [-2451.05, -187.1], [-2442.95, -190.42], [-2428.4, -194.87], [-2414.17, -198.64], [-2393.66, -203.21], [-2369.63, -207.2], [-2323.59, -210.89], [-2305.01, -212.37], [-2270.87, -215.66], [-2255.13, -218.67], [-2249.72, -220.68], [-2242.4, -223.39], [-2230.09, -229.75]], [[-2252.53, -96.66], [-2253.01, -108.75], [-2234.62, -109.41], [-2234.01, -97.58], [-2233.62, -88.12], [-2233.38, -82.56], [-2232.3, -57.8], [-2250.93, -57.21], [-2252.15, -87.21], [-2252.53, -96.66]], [[-2254.18, -135.14], [-2254.2, -136.97], [-2254.9, -154.13], [-2256.28, -181.15], [-2257.02, -195.34], [-2257.32, -198.62], [-2238.06, -201.48], [-2237.95, -197.83], [-2236.3, -154.9], [-2235.79, -137.52], [-2235.22, -124.31], [-2234.78, -112.9], [-2240.73, -112.69], [-2253.15, -112.24], [-2254.18, -135.14]], [[-2231.03, -28.91], [-2230.91, -26.15], [-2230.67, -20.57], [-2249.53, -19.78], [-2249.62, -25.29], [-2250.79, -53.72], [-2232.15, -54.3], [-2231.03, -28.91]], [[-2296.29, 256.62], [-2296.46, 257.06], [-2297.88, 258.62], [-2299.93, 259.88], [-2302.71, 261.0], [-2305.34, 261.38], [-2308.47, 261.49], [-2311.49, 260.93], [-2313.95, 260.14], [-2315.53, 259.04], [-2316.87, 257.93], [-2318.67, 256.28], [-2319.91, 254.7], [-2320.66, 253.47], [-2321.55, 251.78], [-2322.45, 250.18], [-2318.02, 249.9], [-2308.45, 249.43], [-2303.51, 249.15], [-2298.5, 249.48], [-2297.57, 249.71], [-2297.27, 249.85], [-2296.9, 250.42], [-2296.09, 251.89], [-2295.68, 253.53], [-2295.79, 255.33], [-2296.29, 256.62]], [[-2008.23, -1720.66], [-2011.09, -1720.55], [-2011.21, -1724.53], [-2012.94, -1790.48], [-2013.51, -1810.57], [-2013.64, -1814.92], [-2013.67, -1823.75], [-2013.87, -1856.32], [-2015.33, -1867.07], [-2020.3, -1885.5], [-2021.59, -1890.42], [-2015.17, -1892.45], [-1992.72, -1900.67], [-1970.92, -1912.2], [-1942.71, -1930.07], [-1939.61, -1932.04], [-1919.96, -1944.49], [-1909.96, -1950.5], [-1905.43, -1953.22], [-1878.33, -1969.53], [-1850.47, -1986.13], [-1831.93, -1997.42], [-1815.46, -2006.03], [-1806.75, -2008.24], [-1796.14, -2008.52], [-1791.54, -2008.55], [-1791.61, -2002.94], [-1791.32, -1987.44], [-1787.32, -1987.51], [-1791.32, -1987.41], [-1790.98, -1973.64], [-1790.46, -1951.62], [-1794.88, -1929.76], [-1795.9, -1918.02], [-1796.08, -1893.59], [-1795.27, -1872.73], [-1791.27, -1824.97], [-1790.75, -1820.97], [-1789.52, -1811.28], [-1786.49, -1801.96], [-1785.93, -1784.03], [-1784.15, -1734.81], [-1783.93, -1728.83], [-1787.81, -1728.75], [-1813.31, -1728.18], [-1896.06, -1724.99], [-2008.23, -1720.66]], [[-2060.71, -1713.36], [-2020.42, -1714.28], [-2016.92, -1714.37], [-2016.8, -1708.49], [-2014.95, -1621.03], [-2014.37, -1604.46], [-2014.07, -1596.32], [-2011.08, -1596.42], [-2014.07, -1596.31], [-2013.78, -1588.75], [-2011.85, -1488.77], [-2011.69, -1480.46], [-2014.39, -1480.36], [-2029.51, -1479.87], [-2111.69, -1478.1], [-2111.91, -1486.39], [-2113.51, -1555.07], [-2110.04, -1555.14], [-2066.74, -1555.99], [-2066.86, -1561.99], [-2110.16, -1561.14], [-2113.65, -1561.07], [-2114.9, -1615.72], [-2111.73, -1615.81], [-2065.28, -1617.08], [-2065.45, -1623.07], [-2111.89, -1621.81], [-2115.02, -1621.72], [-2115.53, -1653.19], [-2117.44, -1706.19], [-2117.56, -1710.22], [-2117.47, -1711.96], [-2117.3, -1712.41], [-2117.26, -1712.42], [-2113.98, -1712.6], [-2060.71, -1713.36]], [[-1896.18, -637.7], [-1887.68, -638.13], [-1887.44, -631.8], [-1887.18, -625.36], [-1886.77, -608.66], [-1886.75, -607.86], [-1886.55, -597.9], [-1886.21, -581.04], [-1885.37, -538.97], [-1885.32, -536.55], [-1884.66, -503.94], [-1884.53, -493.35], [-1884.5, -491.41], [-1884.42, -485.57], [-1890.44, -485.27], [-2006.89, -479.55], [-2013.04, -479.22], [-2013.14, -484.01], [-2014.08, -527.54], [-2014.15, -530.8], [-2014.21, -533.81], [-2014.73, -557.84], [-2015.15, -577.19], [-2015.65, -600.23], [-2016.19, -625.48], [-2016.33, -631.74], [-2010.5, -632.02], [-1977.35, -633.67], [-1966.47, -634.21], [-1921.91, -636.42], [-1896.18, -637.7]], [[-1898.99, -1054.07], [-1890.91, -1054.17], [-1890.95, -1057.17], [-1890.85, -1054.17], [-1882.97, -1054.42], [-1848.68, -1055.21], [-1848.64, -1053.73], [-1848.63, -1053.29], [-1847.3, -1005.54], [-1847.19, -1001.54], [-1892.87, -1000.21], [-1899.05, -1000.03], [-2011.36, -996.74], [-2017.45, -996.56], [-2017.39, -1001.56], [-2017.02, -1036.19], [-2016.82, -1050.6], [-2011.68, -1050.79], [-2000.31, -1051.18], [-1951.45, -1052.83], [-1945.62, -1052.97], [-1927.42, -1053.5], [-1898.99, -1054.07]], [[-1895.94, -1121.09], [-1901.08, -1120.96], [-1910.53, -1120.61], [-1932.36, -1120.14], [-2013.16, -1118.05], [-2017.62, -1117.9], [-2017.9, -1126.15], [-2019.54, -1175.3], [-2020.55, -1224.5], [-2020.71, -1232.3], [-2015.9, -1232.43], [-1903.47, -1235.09], [-1898.67, -1235.24], [-1898.5, -1227.45], [-1897.44, -1178.27], [-1896.16, -1129.35], [-1895.94, -1121.09]], [[-1898.99, -1249.9], [-1898.8, -1241.23], [-1903.63, -1241.09], [-2016.05, -1238.43], [-2020.87, -1238.3], [-2021.13, -1246.98], [-2022.62, -1295.44], [-2023.92, -1345.5], [-2024.13, -1353.76], [-2018.82, -1353.89], [-1906.79, -1356.71], [-1901.71, -1356.8], [-1901.42, -1350.99], [-1901.36, -1348.31], [-1900.84, -1325.18], [-1900.09, -1298.44], [-1898.99, -1249.9]], [[-1894.11, -1062.21], [-1894.04, -1060.13], [-1899.09, -1060.07], [-1927.57, -1059.5], [-1945.78, -1058.96], [-1951.62, -1058.83], [-2000.51, -1057.17], [-2011.89, -1056.79], [-2016.82, -1056.6], [-2017.08, -1078.22], [-2017.39, -1103.73], [-2017.49, -1111.9], [-2012.98, -1112.05], [-1932.22, -1114.14], [-1910.36, -1114.61], [-1900.89, -1114.96], [-1895.77, -1115.09], [-1895.51, -1106.96], [-1895.43, -1104.28], [-1894.11, -1062.21]], [[-2013.64, -916.45], [-1923.8, -918.98], [-1899.17, -919.47], [-1894.22, -919.7], [-1893.56, -894.37], [-1893.23, -882.61], [-1892.91, -869.32], [-1892.87, -867.76], [-1892.7, -860.63], [-1892.67, -859.19], [-1892.66, -856.91], [-1898.33, -856.65], [-1914.29, -855.9], [-1915.98, -855.83], [-1962.55, -853.67], [-1996.25, -852.11], [-2015.5, -851.23], [-2021.04, -850.97], [-2021.11, -853.25], [-2021.02, -856.06], [-2020.79, -863.46], [-2020.12, -885.17], [-2020.06, -889.41], [-2019.44, -916.41], [-2013.64, -916.45]], [[-1891.32, -780.31], [-1890.89, -768.69], [-1890.42, -745.07], [-1890.34, -742.84], [-1897.36, -742.48], [-1923.32, -741.13], [-1956.99, -739.39], [-1957.01, -740.59], [-1957.52, -765.4], [-1957.77, -777.64], [-1958.03, -790.39], [-1958.45, -810.22], [-1959.01, -837.44], [-1959.06, -839.82], [-1915.36, -841.84], [-1913.67, -841.91], [-1897.68, -842.66], [-1892.53, -842.9], [-1892.49, -840.64], [-1892.35, -832.89], [-1891.69, -793.66], [-1891.32, -780.31]], [[-2017.49, -985.47], [-2017.49, -990.55], [-2011.19, -990.74], [-1898.88, -994.03], [-1895.72, -994.12], [-1895.64, -990.33], [-1894.35, -925.7], [-1899.37, -925.46], [-1923.94, -924.98], [-2013.74, -922.45], [-2019.29, -922.41], [-2017.49, -985.47]], [[-2020.68, -836.97], [-2014.85, -837.24], [-1995.6, -838.13], [-1965.06, -839.54], [-1965.01, -837.3], [-1964.45, -810.09], [-1964.03, -790.27], [-1963.77, -777.51], [-1963.52, -765.27], [-1963.01, -740.47], [-1962.98, -739.07], [-1984.1, -737.97], [-2012.84, -736.48], [-2018.54, -736.18], [-2019.11, -762.83], [-2019.62, -787.11], [-2019.87, -799.0], [-2020.04, -807.02], [-2020.3, -819.1], [-2020.58, -832.23], [-2020.63, -834.87], [-2020.68, -836.97]], [[-1896.48, -643.7], [-1922.21, -642.41], [-1966.77, -640.2], [-1977.65, -639.67], [-2010.79, -638.02], [-2016.46, -637.74], [-2016.56, -642.56], [-2017.1, -668.0], [-2017.17, -671.53], [-2017.54, -688.76], [-2017.65, -694.17], [-2018.41, -730.18], [-2012.53, -730.49], [-1983.78, -731.98], [-1959.76, -733.23], [-1923.01, -735.13], [-1897.05, -736.49], [-1890.13, -736.84], [-1888.56, -690.39], [-1888.83, -663.35], [-1888.68, -651.83], [-1888.04, -644.12], [-1896.48, -643.7]], [[-2070.06, -469.41], [-2054.18, -470.2], [-2024.92, -471.64], [-2018.86, -471.92], [-2018.69, -465.97], [-2017.69, -445.18], [-2011.69, -445.47], [-2012.7, -466.2], [-2012.86, -472.22], [-2006.53, -472.56], [-1890.1, -478.28], [-1884.78, -478.54], [-1884.65, -473.26], [-1884.56, -469.59], [-1884.08, -450.69], [-1884.23, -428.8], [-1882.6, -391.92], [-1882.5, -388.37], [-1882.09, -371.96], [-1881.96, -367.21], [-1881.85, -362.77], [-1890.0, -362.2], [-1893.59, -361.97], [-1908.19, -361.04], [-1941.72, -359.27], [-1950.09, -358.63], [-1962.81, -357.35], [-1980.03, -354.67], [-1992.19, -351.9], [-2003.39, -349.2], [-2012.17, -346.47], [-2020.49, -344.07], [-2036.05, -338.36], [-2054.03, -330.7], [-2100.4, -307.35], [-2098.13, -302.85], [-2098.14, -302.85], [-2099.62, -305.78], [-2105.35, -302.88], [-2106.03, -302.88], [-2113.34, -304.29], [-2117.88, -307.08], [-2121.5, -309.59], [-2125.1, -312.49], [-2129.07, -318.15], [-2130.73, -321.3], [-2131.35, -322.83], [-2132.83, -327.69], [-2133.9, -330.53], [-2134.96, -332.73], [-2138.05, -338.69], [-2138.23, -342.16], [-2139.8, -342.08], [-2139.88, -342.23], [-2138.26, -342.46], [-2138.75, -346.0], [-2139.51, -355.82], [-2140.65, -370.43], [-2141.74, -382.69], [-2142.65, -396.11], [-2143.42, -398.89], [-2145.96, -404.39], [-2145.3, -404.4], [-2145.48, -434.41], [-2145.65, -459.08], [-2145.68, -465.33], [-2140.61, -465.87], [-2074.73, -469.19], [-2070.06, -469.41]], [[-2012.91, -330.16], [-2010.35, -234.36], [-2010.22, -229.53], [-2010.17, -227.58], [-2015.58, -227.32], [-2107.74, -223.53], [-2124.5, -222.84], [-2128.41, -222.74], [-2133.84, -222.49], [-2133.93, -224.91], [-2134.09, -229.14], [-2135.47, -265.18], [-2135.64, -269.54], [-2135.88, -275.92], [-2128.52, -279.35], [-2094.89, -296.41], [-2094.1, -294.85], [-2048.13, -317.99], [-2030.89, -325.34], [-2016.13, -330.75], [-2012.95, -331.68], [-2012.91, -330.16]], [[-1892.71, -348.0], [-1889.08, -348.23], [-1881.94, -348.73], [-1881.86, -346.34], [-1881.77, -342.59], [-1880.72, -297.5], [-1880.56, -282.52], [-1881.38, -270.11], [-1882.82, -263.47], [-1885.15, -256.62], [-1887.51, -251.56], [-1889.27, -248.54], [-1891.45, -245.57], [-1894.83, -241.42], [-1897.67, -238.32], [-1902.23, -232.56], [-1902.55, -231.97], [-1920.95, -231.26], [-1964.45, -229.42], [-1967.03, -229.31], [-2000.23, -227.95], [-2003.36, -227.83], [-2004.18, -227.8], [-2004.23, -229.68], [-2004.36, -234.52], [-2006.91, -330.32], [-2006.99, -333.42], [-1999.67, -335.7], [-1988.99, -338.27], [-1977.4, -340.92], [-1961.03, -343.45], [-1948.86, -344.68], [-1940.82, -345.3], [-1907.38, -347.07], [-1892.71, -348.0]], [[-2148.62, -348.96], [-2148.85, -354.98], [-2149.41, -370.65], [-2149.57, -382.96], [-2149.57, -394.69], [-2148.72, -382.14], [-2147.63, -369.85], [-2146.49, -355.28], [-2145.72, -345.35], [-2144.61, -345.44], [-2144.73, -345.28], [-2145.69, -345.14], [-2145.58, -344.29], [-2147.76, -342.21], [-2148.31, -342.0], [-2148.62, -348.96]], [[-2143.94, -283.94], [-2144.43, -284.78], [-2144.95, -287.29], [-2145.38, -295.12], [-2145.7, -303.69], [-2147.45, -331.31], [-2148.1, -338.32], [-2145.85, -339.2], [-2145.12, -339.89], [-2144.68, -331.63], [-2143.95, -309.98], [-2143.39, -299.46], [-2142.86, -291.41], [-2142.83, -287.91], [-2143.04, -286.3], [-2143.52, -284.74], [-2143.94, -283.94]], [[-2135.82, -287.53], [-2135.86, -291.67], [-2136.4, -299.87], [-2136.95, -310.28], [-2137.63, -330.22], [-2137.12, -329.15], [-2136.14, -326.56], [-2134.65, -321.66], [-2133.91, -319.83], [-2132.06, -316.32], [-2127.68, -310.07], [-2123.6, -306.78], [-2119.8, -304.15], [-2114.63, -300.97], [-2110.63, -300.2], [-2133.12, -288.8], [-2135.82, -287.53]], [[-1763.91, -2056.6], [-1759.47, -2054.47], [-1755.95, -2052.79], [-1670.14, -2006.14], [-1665.97, -2003.87], [-1668.17, -1999.76], [-1669.28, -1997.77], [-1697.26, -1947.23], [-1698.53, -1944.92], [-1699.96, -1942.17], [-1702.21, -1943.37], [-1742.94, -1966.29], [-1773.49, -1983.79], [-1775.95, -1985.21], [-1783.35, -1988.89], [-1783.61, -2002.97], [-1783.51, -2011.36], [-1782.88, -2018.32], [-1779.2, -2035.34], [-1773.53, -2043.77], [-1768.63, -2051.1], [-1767.14, -2052.93], [-1763.91, -2056.6]], [[-1594.24, -2282.38], [-1571.58, -2273.05], [-1532.21, -2260.2], [-1519.92, -2256.19], [-1529.05, -2247.57], [-1537.34, -2235.92], [-1559.88, -2195.03], [-1592.34, -2138.63], [-1620.07, -2087.35], [-1659.48, -2015.74], [-1662.15, -2010.9], [-1666.32, -2013.17], [-1752.31, -2059.92], [-1756.02, -2061.69], [-1758.48, -2062.87], [-1754.12, -2067.94], [-1735.95, -2089.01], [-1690.87, -2139.4], [-1661.97, -2176.74], [-1647.41, -2197.13], [-1622.43, -2238.91], [-1603.37, -2277.27], [-1599.87, -2284.64], [-1594.24, -2282.38]], [[-1588.38, -1961.12], [-1582.57, -1958.0], [-1584.32, -1954.79], [-1585.11, -1953.34], [-1615.24, -1898.24], [-1615.79, -1897.22], [-1620.48, -1899.8], [-1655.73, -1919.12], [-1692.88, -1938.44], [-1694.65, -1939.37], [-1693.24, -1942.09], [-1692.01, -1944.32], [-1664.03, -1994.86], [-1662.91, -1996.89], [-1660.72, -2000.96], [-1656.67, -1998.67], [-1623.36, -1979.85], [-1588.38, -1961.12]], [[-1785.5, -1851.89], [-1787.28, -1873.22], [-1788.08, -1893.72], [-1787.9, -1917.65], [-1787.29, -1924.68], [-1787.27, -1924.34], [-1785.83, -1873.23], [-1785.5, -1851.89]], [[-1500.15, -2854.36], [-1521.03, -2889.11], [-1515.01, -2890.71], [-1512.12, -2891.56], [-1503.11, -2893.99], [-1488.59, -2896.1], [-1470.97, -2894.8], [-1459.75, -2895.63], [-1451.3, -2896.62], [-1443.44, -2898.26], [-1427.35, -2901.22], [-1387.21, -2909.44], [-1334.68, -2919.44], [-1304.2, -2925.74], [-1288.33, -2928.37], [-1279.81, -2929.78], [-1275.92, -2930.43], [-1137.45, -2955.69], [-1097.48, -2962.98], [-1019.1, -2978.1], [-1015.6, -2978.51], [-1011.33, -2978.93], [-1010.81, -2970.14], [-1010.78, -2949.56], [-1010.73, -2943.57], [-1010.26, -2934.59], [-1016.03, -2933.72], [-1102.77, -2917.79], [-1157.48, -2907.56], [-1187.88, -2901.69], [-1245.67, -2890.53], [-1262.37, -2887.3], [-1305.29, -2879.02], [-1314.19, -2877.29], [-1327.51, -2874.75], [-1330.64, -2874.14], [-1365.21, -2866.03], [-1401.19, -2855.16], [-1416.67, -2847.39], [-1450.75, -2821.96], [-1449.83, -2820.73], [-1449.86, -2820.73], [-1451.09, -2822.33], [-1454.14, -2820.0], [-1460.86, -2818.86], [-1464.91, -2818.74], [-1467.71, -2819.32], [-1473.29, -2821.78], [-1479.95, -2825.72], [-1489.82, -2831.82], [-1492.08, -2835.8], [-1494.26, -2834.57], [-1494.29, -2834.59], [-1489.97, -2837.15], [-1500.15, -2854.36]], [[-1348.65, 34.3], [-1440.78, 38.72], [-1444.18, 38.88], [-1444.36, 34.28], [-1444.87, 21.66], [-1449.13, -58.0], [-1449.88, -80.64], [-1449.95, -84.6], [-1451.66, -140.72], [-1449.91, -140.76], [-1451.09, -204.33], [-1450.93, -227.19], [-1450.95, -232.26], [-1450.89, -240.29], [-1446.01, -240.51], [-1441.11, -240.72], [-1379.52, -243.45], [-1340.09, -245.21], [-1331.38, -245.52], [-1323.3, -246.02], [-1280.45, -248.33], [-1211.88, -252.07], [-1206.73, -252.05], [-1206.64, -244.76], [-1204.8, -204.56], [-1203.42, -174.68], [-1200.56, -125.15], [-1200.13, -114.05], [-1199.79, -106.7], [-1198.25, -78.67], [-1196.13, -69.23], [-1195.25, -61.59], [-1192.61, -11.91], [-1191.33, 12.07], [-1190.84, 21.38], [-1190.52, 26.86], [-1192.67, 27.17], [-1304.24, 32.16], [-1348.65, 34.3]], [[-1323.91, -256.51], [-1331.89, -256.01], [-1340.52, -255.7], [-1379.98, -253.94], [-1441.56, -251.21], [-1446.47, -251.0], [-1452.67, -250.72], [-1451.68, -253.81], [-1450.54, -257.89], [-1449.52, -263.99], [-1450.99, -295.21], [-1451.83, -313.17], [-1453.82, -332.5], [-1457.9, -353.12], [-1461.09, -366.58], [-1462.1, -371.41], [-1457.92, -371.61], [-1390.33, -374.95], [-1346.86, -377.1], [-1337.9, -377.54], [-1329.88, -377.93], [-1291.36, -379.84], [-1269.91, -380.9], [-1217.35, -383.5], [-1214.89, -383.62], [-1214.39, -378.31], [-1212.56, -350.84], [-1212.13, -341.46], [-1211.74, -336.24], [-1211.56, -332.27], [-1211.5, -330.78], [-1208.6, -271.72], [-1208.57, -267.77], [-1208.56, -262.56], [-1212.14, -262.58], [-1281.01, -258.81], [-1323.91, -256.51]], [[-1291.88, -390.32], [-1330.39, -388.42], [-1338.41, -388.02], [-1347.37, -387.59], [-1390.84, -385.44], [-1458.44, -382.1], [-1464.1, -381.82], [-1465.15, -387.94], [-1467.14, -401.37], [-1471.7, -469.48], [-1473.3, -493.04], [-1473.73, -499.41], [-1465.94, -499.87], [-1465.32, -499.9], [-1411.09, -502.59], [-1352.14, -505.5], [-1344.28, -505.87], [-1334.55, -506.37], [-1224.95, -511.95], [-1217.93, -512.31], [-1217.53, -505.67], [-1217.33, -502.4], [-1211.64, -399.57], [-1210.9, -394.33], [-1217.87, -393.98], [-1270.43, -391.39], [-1291.88, -390.32]], [[-1344.62, -512.86], [-1352.47, -512.49], [-1411.44, -509.58], [-1465.66, -506.9], [-1466.31, -506.87], [-1472.42, -506.5], [-1472.76, -512.5], [-1474.31, -539.85], [-1477.03, -588.09], [-1480.42, -622.38], [-1481.34, -632.94], [-1481.61, -635.51], [-1485.08, -675.4], [-1485.54, -684.0], [-1490.78, -683.71], [-1485.79, -683.99], [-1488.97, -741.36], [-1489.3, -747.77], [-1494.3, -747.51], [-1489.32, -747.96], [-1489.46, -749.54], [-1490.63, -775.62], [-1490.94, -819.77], [-1490.97, -833.18], [-1491.76, -858.6], [-1491.89, -861.46], [-1488.9, -861.53], [-1365.76, -867.54], [-1365.59, -862.93], [-1364.64, -844.23], [-1363.25, -813.28], [-1363.11, -810.21], [-1362.44, -795.37], [-1361.86, -782.65], [-1355.87, -782.92], [-1356.45, -795.64], [-1357.12, -810.48], [-1357.25, -813.54], [-1358.65, -844.51], [-1359.59, -863.19], [-1359.76, -867.78], [-1359.21, -867.78], [-1359.22, -868.7], [-1355.9, -866.79], [-1348.92, -864.69], [-1272.85, -859.55], [-1256.52, -860.13], [-1237.32, -861.27], [-1221.24, -863.44], [-1207.04, -866.56], [-1180.15, -875.75], [-1162.13, -883.67], [-1148.58, -889.93], [-1111.73, -905.69], [-1113.1, -908.9], [-1113.08, -908.91], [-1112.38, -907.32], [-1097.23, -914.02], [-1056.89, -927.02], [-1040.01, -928.94], [-1034.67, -929.01], [-1028.02, -927.32], [-1021.21, -924.34], [-1005.42, -911.03], [-992.22, -902.13], [-984.79, -899.49], [-982.08, -896.98], [-981.0, -898.15], [-980.94, -898.13], [-982.0, -896.91], [-966.01, -882.94], [-958.23, -876.06], [-949.28, -868.24], [-929.49, -851.26], [-921.85, -850.71], [-923.57, -848.75], [-922.37, -847.69], [-919.09, -844.81], [-907.13, -834.3], [-905.34, -832.72], [-870.24, -801.86], [-859.44, -792.36], [-847.83, -782.16], [-838.24, -773.73], [-821.06, -758.63], [-816.19, -754.35], [-822.67, -747.23], [-823.88, -745.89], [-866.01, -699.33], [-868.77, -696.25], [-893.7, -668.73], [-897.18, -664.88], [-901.31, -668.65], [-903.4, -670.55], [-942.61, -706.37], [-947.33, -701.2], [-908.11, -665.37], [-906.03, -663.48], [-901.87, -659.69], [-905.96, -655.18], [-938.92, -618.49], [-941.5, -614.79], [-943.32, -611.12], [-944.67, -606.3], [-945.01, -600.42], [-944.75, -591.62], [-944.75, -589.59], [-944.33, -569.94], [-943.75, -540.64], [-943.7, -538.11], [-943.56, -533.2], [-946.76, -533.06], [-977.81, -531.49], [-987.5, -531.0], [-997.27, -530.51], [-1035.78, -528.57], [-1075.04, -526.6], [-1078.81, -526.41], [-1079.05, -531.39], [-1079.19, -534.08], [-1081.37, -578.5], [-1081.67, -583.25], [-1085.83, -664.04], [-1086.85, -685.86], [-1085.55, -693.75], [-1092.46, -694.88], [-1093.87, -686.27], [-1092.82, -663.7], [-1088.66, -582.86], [-1088.36, -578.11], [-1086.18, -533.72], [-1086.04, -531.04], [-1085.8, -525.94], [-1092.29, -525.41], [-1204.59, -520.0], [-1209.4, -519.75], [-1214.82, -519.47], [-1225.3, -518.94], [-1334.91, -513.36], [-1344.62, -512.86]], [[-1166.44, -893.25], [-1183.96, -885.55], [-1209.88, -876.69], [-1223.07, -873.78], [-1238.34, -871.72], [-1257.02, -870.62], [-1272.68, -870.06], [-1334.07, -874.21], [-1315.2, -874.88], [-1257.19, -877.96], [-1236.75, -879.41], [-1221.55, -881.24], [-1206.14, -884.45], [-1190.62, -889.64], [-1168.9, -898.61], [-1092.77, -928.7], [-1094.61, -933.35], [-1092.63, -928.76], [-1050.93, -946.75], [-1043.22, -950.85], [-1038.78, -947.31], [-1044.06, -945.2], [-1115.17, -913.74], [-1115.86, -915.35], [-1152.85, -899.52], [-1166.44, -893.25]], [[-1208.76, -894.12], [-1223.17, -891.12], [-1237.7, -889.36], [-1257.81, -887.94], [-1315.64, -884.87], [-1349.0, -883.7], [-1355.45, -882.12], [-1356.7, -881.57], [-1359.34, -880.3], [-1359.35, -881.78], [-1361.25, -881.76], [-1363.3, -881.68], [-1363.02, -874.69], [-1363.36, -881.68], [-1489.41, -875.53], [-1492.29, -875.46], [-1492.62, -882.52], [-1493.5, -903.31], [-1493.13, -915.08], [-1492.36, -926.64], [-1491.61, -938.87], [-1488.93, -971.85], [-1488.21, -992.88], [-1488.01, -997.52], [-1487.36, -1011.91], [-1487.26, -1013.78], [-1483.17, -1013.65], [-1441.93, -1013.8], [-1399.88, -1006.07], [-1383.24, -1003.07], [-1362.78, -1002.73], [-1356.78, -1003.09], [-1307.57, -1003.34], [-1296.9, -1002.57], [-1273.65, -1002.62], [-1264.42, -1002.91], [-1261.01, -1011.22], [-1261.05, -1022.15], [-1261.94, -1026.75], [-1261.94, -1033.36], [-1262.31, -1081.53], [-1262.03, -1084.74], [-1261.52, -1088.03], [-1260.89, -1091.04], [-1260.12, -1093.99], [-1259.19, -1096.81], [-1258.17, -1099.37], [-1257.1, -1101.65], [-1255.94, -1103.79], [-1254.62, -1105.79], [-1253.36, -1107.43], [-1251.8, -1109.18], [-1241.98, -1119.91], [-1237.17, -1125.06], [-1143.19, -1040.04], [-1135.1, -1032.71], [-1109.74, -1009.77], [-1069.3, -973.18], [-1067.96, -971.96], [-1066.33, -966.0], [-1066.45, -963.27], [-1067.65, -958.38], [-1071.24, -953.79], [-1085.88, -942.56], [-1096.52, -937.98], [-1172.64, -907.88], [-1194.12, -899.01], [-1208.76, -894.12]], [[-1362.77, -1248.13], [-1363.83, -1246.96], [-1363.83, -1246.96], [-1362.77, -1248.13], [-1365.37, -1250.49], [-1370.72, -1262.71], [-1373.36, -1268.04], [-1373.57, -1268.51], [-1266.84, -1172.09], [-1229.87, -1138.7], [-1221.31, -1130.97], [-1171.06, -1085.56], [-1133.1, -1051.27], [-1124.71, -1043.69], [-1090.47, -1012.76], [-1063.58, -988.46], [-1040.8, -965.75], [-1039.0, -964.15], [-1044.99, -961.18], [-1051.1, -965.97], [-1064.57, -978.35], [-1066.94, -975.77], [-1064.59, -978.36], [-1105.04, -1014.97], [-1130.4, -1037.9], [-1138.5, -1045.23], [-1234.66, -1132.23], [-1237.01, -1129.64], [-1234.66, -1132.23], [-1272.97, -1166.88], [-1362.77, -1248.13]], [[-1325.77, -2057.79], [-1347.05, -2069.77], [-1350.64, -2071.73], [-1346.04, -2079.58], [-1334.57, -2100.01], [-1327.76, -2112.05], [-1306.84, -2149.05], [-1300.25, -2149.29], [-1297.25, -2149.4], [-1291.35, -2149.61], [-1285.42, -2149.83], [-1282.19, -2149.94], [-1252.41, -2151.03], [-1242.85, -2151.37], [-1080.72, -2160.96], [-1074.94, -2161.3], [-1074.59, -2155.16], [-1069.33, -2061.33], [-1069.16, -2058.05], [-1095.86, -2060.23], [-1159.55, -2069.75], [-1199.39, -2072.97], [-1207.46, -2072.97], [-1225.6, -2069.49], [-1241.16, -2064.34], [-1250.46, -2059.09], [-1260.17, -2052.11], [-1269.98, -2044.19], [-1280.89, -2031.99], [-1285.13, -2034.33], [-1319.94, -2054.57], [-1325.77, -2057.79]], [[-1250.43, -2248.66], [-1242.5, -2262.66], [-1237.67, -2271.2], [-1233.07, -2270.79], [-1230.98, -2270.61], [-1222.88, -2269.88], [-1183.95, -2271.48], [-1080.39, -2276.38], [-1080.12, -2270.54], [-1077.79, -2221.77], [-1075.53, -2173.25], [-1075.3, -2168.29], [-1081.14, -2167.95], [-1243.18, -2158.36], [-1252.66, -2158.02], [-1282.44, -2156.94], [-1285.67, -2156.82], [-1291.6, -2156.61], [-1297.5, -2156.4], [-1300.5, -2156.29], [-1302.79, -2156.2], [-1297.76, -2165.1], [-1291.61, -2175.95], [-1250.43, -2248.66]], [[-1203.11, -2334.16], [-1171.61, -2387.8], [-1167.1, -2387.6], [-1158.15, -2387.22], [-1153.7, -2387.02], [-1140.97, -2386.46], [-1130.06, -2386.9], [-1124.93, -2387.34], [-1091.7, -2390.15], [-1083.56, -2390.84], [-1083.41, -2385.64], [-1083.33, -2383.01], [-1081.96, -2335.01], [-1080.61, -2282.38], [-1184.21, -2277.47], [-1222.74, -2275.9], [-1230.45, -2276.59], [-1232.54, -2276.77], [-1234.51, -2276.95], [-1210.21, -2321.68], [-1207.51, -2326.65], [-1203.11, -2334.16]], [[-964.3, -2178.67], [-964.09, -2173.78], [-969.7, -2173.45], [-1022.4, -2170.33], [-1063.13, -2168.81], [-1069.31, -2168.58], [-1069.54, -2173.53], [-1071.8, -2222.05], [-1074.13, -2270.82], [-1074.4, -2276.66], [-968.68, -2281.69], [-968.44, -2276.08], [-964.3, -2178.67]], [[-827.39, -2352.21], [-828.46, -2395.16], [-828.53, -2397.93], [-828.74, -2403.17], [-823.21, -2403.47], [-714.74, -2408.66], [-708.59, -2405.61], [-681.04, -2406.88], [-673.91, -2407.3], [-665.01, -2407.77], [-644.86, -2408.73], [-641.89, -2408.88], [-641.79, -2406.98], [-641.56, -2404.56], [-628.64, -2292.85], [-624.79, -2262.39], [-619.34, -2217.54], [-617.87, -2191.05], [-617.62, -2186.41], [-621.3, -2186.28], [-668.83, -2185.1], [-783.9, -2181.42], [-790.76, -2181.08], [-796.58, -2180.92], [-860.73, -2178.17], [-951.77, -2174.37], [-958.1, -2174.1], [-958.3, -2178.92], [-962.44, -2276.33], [-962.68, -2281.99], [-878.39, -2286.43], [-825.8, -2288.75], [-827.39, -2352.21]], [[-970.86, -2403.45], [-970.7, -2399.95], [-970.87, -2403.45], [-1074.28, -2398.42], [-1080.83, -2398.09], [-1080.66, -2394.6], [-1080.96, -2398.09], [-1092.29, -2397.13], [-1125.52, -2394.31], [-1130.5, -2393.89], [-1140.95, -2393.47], [-1153.39, -2394.01], [-1157.84, -2394.21], [-1166.79, -2394.6], [-1167.81, -2394.64], [-1163.65, -2402.26], [-1139.17, -2447.14], [-1130.5, -2462.63], [-1111.38, -2496.02], [-1104.17, -2507.82], [-1097.74, -2507.82], [-1095.61, -2507.81], [-1089.61, -2507.8], [-1079.27, -2507.78], [-1061.87, -2508.64], [-987.67, -2512.27], [-959.6, -2514.07], [-845.42, -2519.69], [-839.41, -2519.99], [-839.17, -2513.95], [-839.04, -2510.68], [-835.31, -2418.48], [-835.2, -2415.7], [-835.0, -2409.88], [-839.64, -2409.68], [-892.58, -2407.02], [-970.86, -2403.45]], [[-988.01, -2518.26], [-1062.16, -2514.63], [-1079.41, -2513.79], [-1089.6, -2513.8], [-1095.6, -2513.81], [-1097.73, -2513.82], [-1100.51, -2513.82], [-1095.2, -2522.53], [-1089.37, -2532.06], [-1071.61, -2570.13], [-1065.98, -2582.18], [-1064.9, -2584.72], [-1060.55, -2594.88], [-1052.98, -2612.54], [-1042.97, -2639.32], [-1035.16, -2635.18], [-1033.75, -2637.83], [-1035.15, -2635.17], [-1024.77, -2629.72], [-1021.37, -2629.73], [-1019.16, -2629.68], [-1015.04, -2629.59], [-972.84, -2629.46], [-929.75, -2630.76], [-850.77, -2634.02], [-845.65, -2634.23], [-845.41, -2629.87], [-845.17, -2625.53], [-842.76, -2581.62], [-840.21, -2535.43], [-840.02, -2531.92], [-839.7, -2525.99], [-845.72, -2525.69], [-959.94, -2520.06], [-988.01, -2518.26]], [[-972.92, -2635.46], [-1014.97, -2635.59], [-1019.02, -2635.68], [-1021.3, -2635.74], [-1023.31, -2635.73], [-1029.01, -2638.72], [-1022.13, -2646.65], [-1003.97, -2667.17], [-981.82, -2693.86], [-976.64, -2700.59], [-953.35, -2730.84], [-944.2, -2748.27], [-935.4, -2748.06], [-931.56, -2747.97], [-924.59, -2747.81], [-856.85, -2751.11], [-850.34, -2751.42], [-850.15, -2746.16], [-850.01, -2742.49], [-848.27, -2696.54], [-846.43, -2652.25], [-846.24, -2647.58], [-845.94, -2640.23], [-851.02, -2640.02], [-929.97, -2636.75], [-972.92, -2635.46]], [[-931.42, -2753.97], [-935.25, -2754.06], [-941.41, -2754.2], [-940.71, -2755.77], [-925.63, -2789.3], [-921.13, -2799.32], [-916.59, -2809.4], [-907.79, -2828.97], [-897.76, -2851.29], [-890.59, -2867.24], [-883.0, -2866.92], [-880.5, -2866.81], [-868.74, -2866.33], [-837.83, -2867.64], [-830.33, -2859.64], [-817.68, -2827.86], [-812.67, -2815.27], [-790.83, -2760.42], [-792.43, -2760.34], [-798.11, -2760.05], [-838.81, -2758.0], [-847.6, -2757.56], [-857.14, -2757.1], [-924.66, -2753.81], [-931.42, -2753.97]], [[-1557.29, -247.44], [-1591.96, -245.79], [-1597.1, -245.53], [-1601.4, -245.34], [-1601.53, -247.8], [-1601.69, -251.76], [-1603.34, -282.58], [-1604.63, -306.59], [-1608.13, -306.41], [-1604.63, -306.61], [-1607.19, -350.19], [-1607.71, -358.96], [-1607.94, -362.98], [-1601.04, -363.33], [-1491.18, -368.69], [-1482.59, -368.96], [-1481.33, -364.05], [-1474.57, -338.64], [-1472.08, -322.51], [-1470.81, -307.66], [-1468.98, -263.44], [-1466.67, -256.77], [-1464.95, -253.09], [-1464.49, -251.92], [-1472.65, -251.54], [-1503.06, -250.05], [-1532.44, -248.65], [-1557.29, -247.44]], [[-1609.31, -379.91], [-1612.08, -433.79], [-1612.55, -444.47], [-1614.26, -483.39], [-1614.42, -486.97], [-1614.63, -491.84], [-1608.99, -492.12], [-1586.72, -493.21], [-1546.61, -495.19], [-1503.43, -497.31], [-1500.54, -497.45], [-1496.34, -497.66], [-1496.17, -492.23], [-1494.63, -459.65], [-1494.56, -458.19], [-1493.94, -439.07], [-1493.17, -420.8], [-1492.45, -412.59], [-1491.49, -404.4], [-1488.51, -385.59], [-1487.84, -382.8], [-1491.75, -382.68], [-1601.73, -377.31], [-1609.18, -376.94], [-1609.31, -379.91]], [[-1587.07, -500.21], [-1609.33, -499.11], [-1617.95, -498.69], [-1627.19, -498.23], [-1739.61, -492.08], [-1745.51, -491.9], [-1745.58, -494.69], [-1745.75, -499.9], [-1746.07, -534.48], [-1746.17, -564.66], [-1746.83, -586.45], [-1747.12, -596.23], [-1747.92, -609.71], [-1748.29, -648.08], [-1751.79, -648.05], [-1748.29, -648.09], [-1748.39, -656.9], [-1748.45, -661.81], [-1748.61, -669.72], [-1743.58, -669.93], [-1741.83, -670.01], [-1714.69, -671.16], [-1709.6, -671.37], [-1688.3, -672.29], [-1688.08, -666.67], [-1686.3, -630.58], [-1684.82, -600.48], [-1678.83, -600.77], [-1680.31, -630.87], [-1682.08, -666.93], [-1682.3, -672.54], [-1635.13, -674.56], [-1624.73, -675.0], [-1623.73, -669.48], [-1623.64, -666.83], [-1622.92, -646.56], [-1622.0, -620.3], [-1621.28, -599.67], [-1620.96, -593.79], [-1614.97, -594.11], [-1615.28, -599.93], [-1616.0, -620.51], [-1616.92, -646.77], [-1617.64, -667.04], [-1617.75, -670.12], [-1618.68, -675.26], [-1582.3, -676.81], [-1579.34, -676.94], [-1514.96, -679.69], [-1508.49, -679.96], [-1508.12, -674.04], [-1503.52, -628.18], [-1503.3, -625.51], [-1502.46, -615.19], [-1495.38, -511.28], [-1494.94, -504.74], [-1500.88, -504.44], [-1503.77, -504.3], [-1546.96, -502.18], [-1587.07, -500.21]], [[-1619.62, -681.23], [-1620.48, -687.8], [-1620.52, -689.1], [-1620.83, -699.79], [-1621.26, -736.72], [-1621.29, -739.21], [-1615.35, -739.58], [-1613.58, -739.67], [-1594.77, -740.74], [-1517.87, -743.49], [-1512.89, -743.66], [-1512.8, -741.75], [-1510.31, -685.89], [-1515.21, -685.68], [-1579.6, -682.94], [-1582.56, -682.81], [-1619.62, -681.23]], [[-1615.7, -745.57], [-1621.53, -745.21], [-1621.63, -746.68], [-1622.11, -770.93], [-1622.65, -792.99], [-1622.75, -796.69], [-1616.72, -796.82], [-1523.98, -801.28], [-1520.57, -801.45], [-1515.15, -801.68], [-1513.16, -749.65], [-1518.08, -749.49], [-1595.05, -746.74], [-1613.91, -745.66], [-1615.7, -745.57]], [[-1622.89, -802.69], [-1622.96, -805.33], [-1623.76, -837.38], [-1624.03, -849.27], [-1624.14, -850.76], [-1624.21, -855.52], [-1618.78, -855.78], [-1586.12, -857.25], [-1524.81, -860.03], [-1517.8, -860.35], [-1517.65, -857.26], [-1515.4, -807.68], [-1520.86, -807.45], [-1524.27, -807.27], [-1616.93, -802.82], [-1622.89, -802.69]], [[-1508.48, -970.3], [-1506.73, -973.5], [-1504.11, -985.45], [-1503.71, -992.99], [-1503.47, -997.69], [-1502.92, -1008.73], [-1501.12, -1012.48], [-1500.6, -1013.22], [-1500.0, -1013.56], [-1497.76, -1014.07], [-1497.84, -1012.42], [-1498.5, -997.99], [-1498.7, -993.28], [-1499.42, -972.46], [-1502.09, -939.62], [-1502.84, -927.31], [-1503.62, -915.59], [-1504.01, -903.25], [-1503.11, -882.05], [-1502.69, -873.08], [-1505.84, -872.93], [-1509.74, -872.74], [-1509.88, -881.09], [-1509.47, -934.47], [-1508.6, -967.69], [-1508.48, -970.3]], [[-1516.77, -874.41], [-1525.44, -874.02], [-1586.75, -871.24], [-1619.43, -869.77], [-1624.53, -869.52], [-1624.61, -871.94], [-1624.65, -873.53], [-1625.71, -908.85], [-1626.11, -922.87], [-1626.7, -944.12], [-1627.84, -991.96], [-1628.1, -1002.7], [-1631.1, -1002.63], [-1628.1, -1002.75], [-1628.56, -1014.28], [-1629.9, -1062.84], [-1630.61, -1087.35], [-1631.2, -1113.11], [-1631.53, -1123.64], [-1631.85, -1135.27], [-1632.03, -1140.9], [-1634.67, -1230.53], [-1634.77, -1234.27], [-1634.97, -1240.91], [-1627.9, -1241.1], [-1520.69, -1244.11], [-1517.25, -1244.2], [-1512.69, -1244.28], [-1512.41, -1233.65], [-1512.32, -1231.33], [-1511.85, -1203.5], [-1511.07, -1157.03], [-1511.37, -1141.64], [-1512.34, -1093.34], [-1512.5, -1084.98], [-1510.75, -1084.94], [-1512.03, -1050.33], [-1513.81, -1024.05], [-1513.8, -1018.53], [-1513.79, -1013.21], [-1514.28, -997.97], [-1514.55, -993.26], [-1514.93, -981.74], [-1515.6, -967.99], [-1512.1, -967.82], [-1515.6, -967.91], [-1516.47, -934.58], [-1516.88, -881.06], [-1516.77, -874.41]], [[-1635.04, -1246.91], [-1634.98, -1255.97], [-1634.98, -1258.31], [-1634.76, -1305.61], [-1636.02, -1353.85], [-1636.24, -1362.44], [-1630.75, -1362.54], [-1549.42, -1363.93], [-1529.68, -1364.35], [-1519.19, -1364.54], [-1516.42, -1364.59], [-1516.01, -1355.26], [-1515.7, -1348.24], [-1515.24, -1337.74], [-1514.97, -1331.68], [-1514.37, -1318.25], [-1513.91, -1307.71], [-1512.83, -1250.28], [-1517.38, -1250.2], [-1520.86, -1250.1], [-1628.07, -1247.1], [-1635.04, -1246.91]], [[-1511.47, -1486.33], [-1503.93, -1486.4], [-1504.72, -1478.14], [-1503.84, -1441.01], [-1502.96, -1414.46], [-1502.46, -1399.55], [-1504.2, -1399.55], [-1504.12, -1379.58], [-1504.01, -1372.89], [-1507.96, -1372.78], [-1508.17, -1379.6], [-1509.75, -1429.35], [-1511.24, -1478.84], [-1511.47, -1486.33]], [[-1514.3, -1607.82], [-1506.1, -1607.93], [-1506.08, -1600.96], [-1505.63, -1571.67], [-1504.57, -1528.32], [-1503.91, -1501.36], [-1503.69, -1492.41], [-1511.67, -1492.32], [-1512.02, -1501.27], [-1513.88, -1550.17], [-1514.24, -1600.46], [-1514.3, -1607.82]], [[-1514.43, -1686.81], [-1515.47, -1722.62], [-1515.85, -1728.41], [-1508.73, -1728.56], [-1507.95, -1723.13], [-1507.51, -1703.02], [-1506.74, -1655.31], [-1506.26, -1622.6], [-1506.15, -1614.93], [-1514.37, -1614.82], [-1514.45, -1622.49], [-1515.15, -1661.29], [-1514.85, -1672.22], [-1514.43, -1686.81]], [[-1510.18, -1807.5], [-1500.8, -1829.94], [-1496.72, -1830.12], [-1489.9, -1832.13], [-1492.34, -1827.14], [-1500.99, -1803.93], [-1501.57, -1801.82], [-1504.04, -1792.82], [-1506.64, -1783.32], [-1509.13, -1761.51], [-1509.99, -1742.42], [-1509.37, -1734.54], [-1516.17, -1734.41], [-1516.54, -1743.25], [-1514.98, -1781.4], [-1510.18, -1807.5]], [[-1675.03, -736.56], [-1633.32, -738.59], [-1627.28, -738.88], [-1627.26, -736.65], [-1626.83, -699.67], [-1626.51, -688.93], [-1626.47, -687.32], [-1625.64, -680.97], [-1685.54, -678.41], [-1685.42, -675.41], [-1685.54, -678.41], [-1709.85, -677.37], [-1714.94, -677.16], [-1742.08, -676.0], [-1743.83, -675.93], [-1748.22, -675.74], [-1749.18, -733.35], [-1745.03, -733.54], [-1743.23, -733.62], [-1716.59, -734.84], [-1675.03, -736.56]], [[-1640.77, -1234.1], [-1640.67, -1230.35], [-1638.03, -1140.72], [-1637.85, -1135.09], [-1637.61, -1126.49], [-1643.37, -1126.38], [-1645.58, -1126.34], [-1703.27, -1125.17], [-1710.24, -1125.04], [-1756.16, -1124.11], [-1759.81, -1124.04], [-1759.98, -1132.21], [-1760.98, -1182.59], [-1762.24, -1231.12], [-1762.44, -1238.91], [-1758.54, -1239.01], [-1731.12, -1239.71], [-1707.2, -1240.0], [-1646.08, -1240.73], [-1640.97, -1240.79], [-1640.77, -1234.1]], [[-1700.14, -1603.66], [-1657.56, -1604.53], [-1654.71, -1604.59], [-1648.28, -1604.59], [-1648.11, -1597.63], [-1646.92, -1547.58], [-1646.17, -1500.99], [-1646.12, -1497.79], [-1645.98, -1489.54], [-1651.99, -1489.48], [-1652.21, -1489.48], [-1764.03, -1487.56], [-1769.21, -1487.48], [-1769.37, -1495.26], [-1770.36, -1543.98], [-1771.23, -1595.49], [-1771.34, -1602.01], [-1767.17, -1602.2], [-1764.42, -1602.25], [-1700.14, -1603.66]], [[-1518.45, -1485.69], [-1518.24, -1478.62], [-1516.75, -1429.14], [-1515.17, -1379.38], [-1514.9, -1370.62], [-1519.3, -1370.54], [-1529.8, -1370.35], [-1549.53, -1369.93], [-1630.86, -1368.54], [-1636.4, -1368.44], [-1636.58, -1375.08], [-1636.64, -1377.16], [-1638.05, -1427.11], [-1639.45, -1471.24], [-1639.6, -1475.86], [-1639.82, -1482.62], [-1634.2, -1482.71], [-1602.38, -1483.28], [-1558.5, -1484.6], [-1554.8, -1484.71], [-1529.62, -1485.38], [-1524.18, -1485.53], [-1522.14, -1485.59], [-1518.45, -1485.69]], [[-1657.78, -1724.97], [-1651.23, -1725.06], [-1651.05, -1718.41], [-1651.01, -1714.9], [-1650.5, -1677.83], [-1650.37, -1668.4], [-1648.73, -1619.15], [-1648.48, -1611.59], [-1654.78, -1611.59], [-1657.71, -1611.52], [-1700.29, -1610.66], [-1764.57, -1609.25], [-1767.4, -1609.19], [-1771.52, -1609.01], [-1771.8, -1616.55], [-1773.62, -1666.11], [-1775.41, -1714.74], [-1775.7, -1722.55], [-1770.31, -1722.71], [-1725.11, -1724.1], [-1675.11, -1724.74], [-1657.78, -1724.97]], [[-1612.04, -1725.9], [-1603.1, -1726.09], [-1556.44, -1727.07], [-1527.67, -1727.65], [-1522.82, -1727.76], [-1522.46, -1722.29], [-1521.43, -1686.81], [-1521.85, -1672.42], [-1522.16, -1661.33], [-1521.45, -1622.39], [-1521.36, -1614.67], [-1524.62, -1614.58], [-1527.17, -1614.54], [-1594.28, -1613.36], [-1634.5, -1611.97], [-1636.77, -1611.89], [-1642.48, -1611.69], [-1642.73, -1619.35], [-1644.37, -1668.54], [-1644.5, -1677.91], [-1645.01, -1714.98], [-1645.05, -1718.53], [-1645.23, -1725.11], [-1639.73, -1725.13], [-1612.04, -1725.9]], [[-1519.01, -1501.0], [-1518.69, -1492.69], [-1522.34, -1492.58], [-1524.37, -1492.53], [-1529.8, -1492.38], [-1554.99, -1491.7], [-1558.71, -1491.6], [-1602.55, -1490.28], [-1634.32, -1489.71], [-1639.98, -1489.61], [-1640.12, -1497.89], [-1640.17, -1501.09], [-1640.93, -1547.7], [-1642.12, -1597.77], [-1642.28, -1604.69], [-1636.53, -1604.9], [-1634.26, -1604.97], [-1594.09, -1606.37], [-1527.05, -1607.54], [-1524.47, -1607.58], [-1521.3, -1607.67], [-1521.24, -1600.41], [-1520.88, -1550.01], [-1519.01, -1501.0]], [[-1640.98, -1258.32], [-1640.98, -1255.98], [-1641.04, -1246.79], [-1646.15, -1246.73], [-1707.27, -1246.0], [-1731.23, -1245.71], [-1758.7, -1245.01], [-1762.59, -1244.91], [-1762.79, -1253.55], [-1763.93, -1302.34], [-1765.2, -1352.45], [-1765.4, -1360.44], [-1760.86, -1360.57], [-1758.43, -1360.6], [-1649.02, -1362.25], [-1647.08, -1362.27], [-1642.24, -1362.34], [-1642.01, -1353.7], [-1640.77, -1305.54], [-1640.98, -1258.32]], [[-1642.58, -1374.92], [-1642.4, -1368.34], [-1647.16, -1368.27], [-1649.1, -1368.25], [-1758.52, -1366.6], [-1760.98, -1366.56], [-1765.56, -1366.44], [-1765.74, -1373.99], [-1766.98, -1423.25], [-1768.74, -1472.89], [-1769.01, -1480.48], [-1763.91, -1480.56], [-1652.05, -1482.48], [-1651.86, -1482.48], [-1645.82, -1482.54], [-1645.6, -1475.67], [-1645.45, -1471.05], [-1644.05, -1426.93], [-1642.64, -1376.99], [-1642.58, -1374.92]], [[-1754.76, -929.04], [-1756.47, -990.74], [-1756.65, -997.44], [-1751.85, -997.54], [-1750.24, -997.57], [-1715.54, -998.31], [-1702.8, -998.46], [-1696.29, -998.41], [-1692.15, -998.43], [-1675.84, -998.95], [-1643.21, -999.48], [-1639.9, -999.53], [-1634.03, -999.6], [-1633.84, -991.82], [-1632.7, -943.96], [-1632.1, -922.7], [-1631.71, -908.67], [-1630.65, -873.36], [-1630.6, -871.77], [-1630.53, -869.24], [-1636.82, -868.93], [-1658.18, -867.9], [-1694.47, -866.14], [-1720.49, -864.93], [-1748.5, -863.58], [-1753.0, -863.36], [-1753.06, -865.49], [-1753.42, -879.71], [-1753.46, -881.13], [-1754.45, -917.65], [-1754.68, -926.47], [-1758.68, -926.36], [-1754.68, -926.48], [-1754.76, -929.04]], [[-1710.12, -1119.04], [-1703.16, -1119.17], [-1645.47, -1120.34], [-1643.25, -1120.38], [-1637.44, -1120.49], [-1637.2, -1112.94], [-1636.61, -1087.2], [-1635.89, -1062.67], [-1634.56, -1014.08], [-1634.22, -1005.6], [-1639.98, -1005.53], [-1643.3, -1005.48], [-1675.98, -1004.95], [-1692.25, -1004.43], [-1696.28, -1004.41], [-1702.81, -1004.46], [-1715.63, -1004.31], [-1750.37, -1003.57], [-1751.97, -1003.54], [-1756.79, -1003.43], [-1756.92, -1010.16], [-1757.83, -1059.97], [-1761.83, -1059.89], [-1757.83, -1060.02], [-1759.42, -1110.55], [-1759.66, -1118.04], [-1756.04, -1118.11], [-1710.12, -1119.04]], [[-1628.74, -796.47], [-1628.65, -792.85], [-1628.11, -770.79], [-1627.62, -746.41], [-1627.52, -744.88], [-1633.61, -744.59], [-1675.3, -742.56], [-1716.85, -740.83], [-1743.5, -739.61], [-1745.31, -739.53], [-1749.34, -739.35], [-1751.14, -790.12], [-1746.6, -790.33], [-1708.95, -792.31], [-1691.54, -793.21], [-1671.87, -794.23], [-1655.41, -795.08], [-1637.41, -796.02], [-1634.54, -796.17], [-1628.74, -796.47]], [[-1629.76, -837.24], [-1628.96, -805.19], [-1628.89, -802.47], [-1634.85, -802.16], [-1637.73, -802.01], [-1655.72, -801.07], [-1672.18, -800.22], [-1691.85, -799.2], [-1709.26, -798.3], [-1746.89, -796.32], [-1751.38, -796.12], [-1751.46, -797.89], [-1751.84, -805.32], [-1751.94, -810.77], [-1752.1, -820.67], [-1752.54, -847.32], [-1752.59, -849.37], [-1747.83, -849.59], [-1719.83, -850.94], [-1693.8, -852.15], [-1657.5, -853.92], [-1636.15, -854.95], [-1630.21, -855.24], [-1630.13, -850.5], [-1630.02, -848.99], [-1629.76, -837.24]], [[-1745.35, -484.9], [-1739.32, -485.08], [-1626.83, -491.24], [-1620.62, -491.55], [-1620.41, -486.7], [-1620.25, -483.13], [-1618.54, -444.21], [-1618.07, -433.51], [-1615.3, -379.62], [-1615.17, -376.64], [-1621.33, -376.33], [-1684.23, -373.15], [-1734.36, -370.63], [-1741.26, -370.28], [-1741.32, -374.79], [-1742.09, -394.71], [-1742.29, -400.02], [-1743.24, -428.84], [-1744.82, -460.73], [-1745.25, -479.24], [-1745.35, -484.9]], [[-1611.53, -304.49], [-1610.33, -282.2], [-1608.69, -251.43], [-1608.52, -247.48], [-1608.4, -245.01], [-1696.73, -240.77], [-1733.14, -239.01], [-1737.85, -238.79], [-1738.03, -241.73], [-1738.1, -245.23], [-1738.62, -268.19], [-1739.86, -298.7], [-1734.38, -298.98], [-1681.83, -301.15], [-1616.83, -304.24], [-1611.53, -304.49]], [[-1616.99, -307.74], [-1681.99, -304.65], [-1734.54, -302.48], [-1739.97, -302.2], [-1740.95, -352.61], [-1741.03, -356.28], [-1733.66, -356.65], [-1683.53, -359.16], [-1620.63, -362.35], [-1614.94, -362.63], [-1614.7, -358.55], [-1614.18, -349.78], [-1611.73, -307.99], [-1616.99, -307.74]], [[-1373.15, -2169.88], [-1375.16, -2253.69], [-1375.3, -2259.62], [-1382.3, -2259.45], [-1375.31, -2259.8], [-1375.64, -2266.41], [-1380.05, -2355.71], [-1380.23, -2359.23], [-1380.2, -2359.23], [-1377.29, -2359.37], [-1375.68, -2359.45], [-1324.61, -2362.0], [-1279.93, -2364.3], [-1274.29, -2361.6], [-1245.72, -2344.82], [-1235.55, -2339.08], [-1232.17, -2337.16], [-1229.57, -2335.69], [-1230.65, -2333.83], [-1241.77, -2314.76], [-1259.44, -2284.29], [-1265.9, -2273.14], [-1290.44, -2230.82], [-1292.02, -2228.1], [-1318.69, -2178.13], [-1327.13, -2162.32], [-1350.95, -2117.7], [-1361.3, -2099.59], [-1365.36, -2090.51], [-1365.38, -2090.57], [-1367.19, -2099.65], [-1369.04, -2111.75], [-1372.57, -2116.57], [-1370.97, -2116.64], [-1372.54, -2151.48], [-1372.91, -2159.55], [-1373.15, -2169.88]], [[-1352.11, -2083.06], [-1355.52, -2077.25], [-1361.23, -2082.58], [-1355.05, -2096.42], [-1344.82, -2114.32], [-1322.61, -2155.92], [-1313.73, -2151.1], [-1333.86, -2115.5], [-1340.66, -2103.45], [-1352.11, -2083.06]], [[-1223.48, -2332.24], [-1215.04, -2327.46], [-1216.36, -2325.03], [-1241.58, -2278.6], [-1251.75, -2283.59], [-1235.72, -2311.24], [-1224.61, -2330.31], [-1223.48, -2332.24]], [[-1268.89, -2365.39], [-1263.78, -2375.05], [-1252.77, -2392.32], [-1247.0, -2401.38], [-1243.97, -2406.12], [-1201.38, -2487.72], [-1206.7, -2490.49], [-1249.17, -2409.12], [-1252.06, -2404.6], [-1257.83, -2395.55], [-1264.0, -2385.87], [-1264.43, -2392.24], [-1266.64, -2424.79], [-1267.05, -2435.22], [-1267.84, -2455.06], [-1268.99, -2483.89], [-1270.13, -2512.69], [-1271.07, -2520.47], [-1271.35, -2522.72], [-1272.34, -2530.95], [-1272.53, -2532.47], [-1281.63, -2561.37], [-1291.07, -2591.33], [-1292.07, -2594.48], [-1293.88, -2610.41], [-1288.98, -2610.94], [-1243.77, -2612.97], [-1227.87, -2617.71], [-1214.79, -2623.48], [-1195.08, -2636.3], [-1180.22, -2640.22], [-1149.44, -2643.61], [-1110.52, -2646.89], [-1082.18, -2648.57], [-1068.18, -2647.83], [-1064.65, -2646.48], [-1069.57, -2634.26], [-1072.84, -2626.12], [-1080.89, -2606.06], [-1082.23, -2602.95], [-1095.99, -2570.94], [-1113.54, -2537.7], [-1115.07, -2534.93], [-1124.7, -2517.48], [-1121.64, -2515.79], [-1124.71, -2517.47], [-1132.82, -2502.58], [-1144.58, -2483.04], [-1152.0, -2470.7], [-1185.01, -2413.39], [-1192.91, -2398.24], [-1206.6, -2374.91], [-1223.83, -2345.51], [-1226.54, -2340.87], [-1229.22, -2342.39], [-1232.6, -2344.3], [-1242.73, -2350.02], [-1268.89, -2365.39]], [[-1299.73, -2695.79], [-1301.91, -2744.52], [-1302.97, -2768.03], [-1304.7, -2806.63], [-1307.18, -2839.25], [-1308.89, -2861.66], [-1309.22, -2864.14], [-1310.12, -2870.95], [-1303.97, -2872.14], [-1261.04, -2880.43], [-1244.34, -2883.66], [-1186.55, -2894.81], [-1156.18, -2900.68], [-1101.49, -2910.91], [-1014.87, -2926.81], [-1009.91, -2927.56], [-1009.63, -2921.65], [-1012.0, -2879.02], [-1017.14, -2839.8], [-1019.82, -2820.35], [-1026.62, -2778.98], [-1034.49, -2744.38], [-1042.13, -2714.57], [-1044.39, -2707.21], [-1057.69, -2663.81], [-1062.42, -2652.04], [-1066.92, -2653.77], [-1082.2, -2654.58], [-1110.95, -2652.87], [-1150.03, -2649.58], [-1181.32, -2646.13], [-1197.54, -2641.85], [-1217.66, -2628.77], [-1229.94, -2623.35], [-1244.77, -2618.93], [-1289.44, -2616.93], [-1294.63, -2616.36], [-1295.87, -2625.2], [-1296.9, -2633.55], [-1297.05, -2636.21], [-1299.73, -2695.79]], [[-1460.12, -2815.43], [-1469.11, -2808.56], [-1474.27, -2804.62], [-1476.62, -2808.57], [-1486.22, -2825.48], [-1481.76, -2822.73], [-1474.89, -2818.66], [-1468.78, -2815.97], [-1465.22, -2815.23], [-1460.52, -2815.36], [-1460.12, -2815.43]], [[-1316.02, -2869.82], [-1315.17, -2863.35], [-1314.86, -2861.03], [-1313.16, -2838.79], [-1310.69, -2806.27], [-1308.96, -2767.76], [-1307.9, -2744.25], [-1305.72, -2695.52], [-1303.05, -2635.9], [-1302.88, -2633.01], [-1301.81, -2624.42], [-1300.63, -2615.94], [-1306.51, -2615.73], [-1339.93, -2614.24], [-1348.17, -2614.03], [-1389.96, -2612.2], [-1392.81, -2611.77], [-1393.58, -2618.44], [-1395.03, -2631.02], [-1396.7, -2638.62], [-1407.88, -2678.32], [-1420.1, -2710.6], [-1426.95, -2726.31], [-1443.35, -2759.5], [-1465.49, -2794.97], [-1468.11, -2799.26], [-1464.26, -2802.2], [-1446.23, -2815.98], [-1446.53, -2816.37], [-1412.98, -2841.41], [-1398.59, -2848.63], [-1363.4, -2859.26], [-1329.18, -2867.3], [-1326.19, -2867.87], [-1316.02, -2869.82]], [[-1386.77, -2505.54], [-1390.55, -2572.43], [-1391.76, -2598.97], [-1392.04, -2605.13], [-1392.11, -2605.8], [-1389.38, -2606.22], [-1347.97, -2608.03], [-1339.72, -2608.25], [-1306.27, -2609.74], [-1299.87, -2609.96], [-1297.96, -2593.22], [-1296.79, -2589.52], [-1287.35, -2559.56], [-1278.42, -2531.2], [-1278.3, -2530.24], [-1277.31, -2521.99], [-1277.03, -2519.74], [-1276.12, -2512.21], [-1274.98, -2483.66], [-1273.83, -2454.82], [-1273.05, -2434.98], [-1272.63, -2424.47], [-1270.42, -2391.84], [-1269.43, -2377.2], [-1274.19, -2368.2], [-1278.72, -2370.37], [-1324.91, -2367.99], [-1375.97, -2365.44], [-1377.58, -2365.36], [-1379.98, -2365.24], [-1380.53, -2365.31], [-1380.77, -2370.68], [-1384.76, -2475.29], [-1385.48, -2490.69], [-1392.47, -2490.37], [-1385.49, -2490.8], [-1385.97, -2498.48], [-1386.77, -2505.54]], [[-1477.4, -2787.61], [-1455.59, -2752.68], [-1439.65, -2720.41], [-1433.07, -2705.32], [-1421.19, -2673.94], [-1410.29, -2635.22], [-1408.85, -2628.71], [-1407.49, -2616.83], [-1406.34, -2606.93], [-1399.39, -2607.74], [-1406.34, -2606.93], [-1406.0, -2604.01], [-1405.74, -2598.34], [-1404.53, -2571.71], [-1400.73, -2504.35], [-1399.92, -2497.25], [-1399.68, -2493.52], [-1406.06, -2493.65], [-1409.44, -2493.47], [-1503.3, -2488.42], [-1538.58, -2487.59], [-1542.18, -2487.5], [-1539.64, -2507.84], [-1520.13, -2720.33], [-1516.73, -2744.77], [-1512.85, -2759.48], [-1497.29, -2776.33], [-1482.03, -2788.39], [-1479.23, -2790.61], [-1477.4, -2787.61]], [[-1297.7, -2179.4], [-1303.85, -2168.55], [-1310.28, -2157.19], [-1319.32, -2162.09], [-1312.51, -2174.84], [-1285.9, -2224.69], [-1284.38, -2227.31], [-1259.85, -2269.63], [-1254.77, -2278.39], [-1244.5, -2273.34], [-1248.6, -2266.11], [-1256.53, -2252.11], [-1297.7, -2179.4]], [[-1507.91, -862.82], [-1505.36, -862.94], [-1501.97, -863.1], [-1501.75, -858.22], [-1500.97, -833.02], [-1500.94, -819.72], [-1500.63, -775.36], [-1499.5, -750.26], [-1503.17, -750.07], [-1505.27, -805.08], [-1510.26, -804.89], [-1505.27, -805.12], [-1507.66, -857.73], [-1507.91, -862.82]], [[-1460.41, -1887.21], [-1467.57, -1874.35], [-1484.0, -1844.15], [-1486.31, -1839.43], [-1497.71, -1836.08], [-1497.72, -1836.08], [-1479.1, -1871.19], [-1468.1, -1891.89], [-1466.55, -1894.8], [-1462.94, -1892.77], [-1458.52, -1890.27], [-1459.81, -1888.1], [-1460.41, -1887.21]], [[-1353.58, -2066.49], [-1349.96, -2064.52], [-1328.69, -2052.55], [-1322.9, -2049.35], [-1288.09, -2029.11], [-1284.9, -2027.35], [-1299.51, -2010.07], [-1319.64, -1979.38], [-1345.11, -1924.74], [-1381.07, -1858.55], [-1385.83, -1849.75], [-1418.86, -1789.31], [-1421.99, -1783.06], [-1427.43, -1768.72], [-1429.67, -1757.89], [-1430.31, -1748.13], [-1430.38, -1736.07], [-1433.45, -1736.01], [-1465.85, -1735.38], [-1469.46, -1735.31], [-1497.12, -1734.77], [-1502.36, -1734.68], [-1502.97, -1742.53], [-1502.15, -1760.96], [-1499.75, -1781.99], [-1497.29, -1790.96], [-1494.82, -1799.97], [-1494.32, -1801.78], [-1485.91, -1824.37], [-1480.41, -1835.57], [-1483.55, -1837.12], [-1480.41, -1835.58], [-1477.78, -1840.93], [-1461.43, -1870.97], [-1454.45, -1883.53], [-1453.9, -1884.34], [-1450.42, -1890.2], [-1453.43, -1891.98], [-1450.39, -1890.25], [-1397.89, -1982.13], [-1386.88, -2003.38], [-1385.26, -2006.5], [-1369.46, -2036.99], [-1365.02, -2045.1], [-1353.58, -2066.49]], [[-1404.04, -1985.48], [-1454.49, -1897.18], [-1459.01, -1899.73], [-1461.23, -1900.98], [-1446.67, -1927.51], [-1429.76, -1958.34], [-1412.29, -1990.09], [-1409.86, -1994.44], [-1391.37, -2027.92], [-1382.42, -2045.15], [-1377.76, -2053.67], [-1379.2, -2054.46], [-1372.64, -2061.5], [-1365.51, -2074.26], [-1360.08, -2069.18], [-1371.18, -2048.43], [-1375.64, -2040.28], [-1391.47, -2009.73], [-1393.09, -2006.6], [-1404.04, -1985.48]], [[-1376.95, -2101.22], [-1376.99, -2104.22], [-1376.11, -2098.46], [-1376.95, -2101.22]], [[-1379.46, -2072.37], [-1380.25, -2085.17], [-1380.26, -2086.21], [-1375.84, -2079.34], [-1371.49, -2077.89], [-1378.34, -2065.66], [-1379.53, -2064.37], [-1379.26, -2067.16], [-1379.46, -2072.37]], [[-1429.23, -1494.24], [-1441.87, -1494.08], [-1467.56, -1493.34], [-1478.29, -1493.03], [-1481.11, -1492.95], [-1482.71, -1492.91], [-1490.0, -1492.72], [-1492.16, -1492.66], [-1496.69, -1492.54], [-1496.91, -1501.53], [-1497.57, -1528.49], [-1498.63, -1571.81], [-1499.08, -1601.03], [-1499.1, -1608.07], [-1494.32, -1608.19], [-1491.06, -1608.27], [-1485.96, -1608.34], [-1481.06, -1608.42], [-1431.57, -1609.24], [-1427.22, -1609.31], [-1424.05, -1494.28], [-1429.23, -1494.24]], [[-1491.19, -1615.27], [-1494.5, -1615.19], [-1499.16, -1615.07], [-1499.26, -1622.7], [-1499.74, -1655.41], [-1500.51, -1703.15], [-1500.96, -1723.7], [-1501.67, -1728.69], [-1497.01, -1728.77], [-1469.34, -1729.31], [-1465.73, -1729.38], [-1433.33, -1730.01], [-1430.32, -1730.07], [-1427.41, -1616.31], [-1431.68, -1616.24], [-1481.18, -1615.42], [-1486.06, -1615.34], [-1491.19, -1615.27]], [[-1478.79, -1331.6], [-1475.42, -1332.14], [-1472.14, -1332.16], [-1468.34, -1331.41], [-1464.32, -1330.44], [-1462.44, -1328.85], [-1398.86, -1271.34], [-1390.83, -1264.07], [-1367.46, -1242.94], [-1277.66, -1161.69], [-1241.62, -1129.09], [-1246.38, -1123.98], [-1256.26, -1113.2], [-1257.98, -1111.26], [-1259.51, -1109.28], [-1261.1, -1106.86], [-1262.45, -1104.36], [-1263.68, -1101.76], [-1264.84, -1098.86], [-1265.87, -1095.69], [-1266.73, -1092.41], [-1267.42, -1089.11], [-1268.0, -1085.46], [-1268.31, -1081.76], [-1267.94, -1033.34], [-1267.94, -1029.46], [-1273.69, -1029.47], [-1297.27, -1029.1], [-1351.57, -1029.75], [-1357.4, -1029.93], [-1381.84, -1028.63], [-1393.2, -1026.88], [-1409.58, -1024.03], [-1417.08, -1022.72], [-1441.84, -1019.8], [-1483.09, -1019.65], [-1487.06, -1019.77], [-1486.97, -1026.22], [-1485.2, -1062.73], [-1484.4, -1091.57], [-1482.52, -1122.14], [-1485.0, -1183.54], [-1487.29, -1227.7], [-1487.35, -1234.5], [-1487.5, -1247.69], [-1492.75, -1247.63], [-1487.5, -1247.91], [-1489.93, -1292.54], [-1491.01, -1312.26], [-1492.76, -1312.16], [-1492.96, -1316.77], [-1492.07, -1320.23], [-1490.62, -1323.18], [-1489.01, -1325.68], [-1487.54, -1327.23], [-1485.4, -1329.05], [-1483.42, -1330.05], [-1478.79, -1331.6]], [[-1501.92, -1233.99], [-1502.19, -1244.46], [-1497.96, -1244.53], [-1497.85, -1234.4], [-1497.79, -1227.38], [-1495.49, -1183.06], [-1493.04, -1122.25], [-1494.89, -1092.03], [-1495.7, -1063.13], [-1497.46, -1026.55], [-1497.5, -1024.29], [-1498.4, -1025.11], [-1499.28, -1028.42], [-1499.72, -1031.99], [-1500.15, -1042.13], [-1500.1, -1050.21], [-1500.24, -1067.58], [-1500.98, -1074.2], [-1502.44, -1079.41], [-1503.84, -1082.37], [-1503.76, -1084.74], [-1505.0, -1084.79], [-1505.02, -1084.83], [-1502.01, -1084.77], [-1501.84, -1093.13], [-1500.87, -1141.43], [-1500.57, -1157.02], [-1501.35, -1203.67], [-1501.83, -1231.63], [-1501.92, -1233.99]], [[-1506.94, -1008.31], [-1506.79, -1013.11], [-1506.8, -1018.55], [-1506.81, -1023.81], [-1505.04, -1049.96], [-1504.36, -1068.41], [-1504.24, -1067.35], [-1504.1, -1050.21], [-1504.15, -1042.06], [-1503.71, -1031.66], [-1503.22, -1027.66], [-1501.96, -1022.93], [-1497.57, -1018.96], [-1497.58, -1018.19], [-1497.79, -1018.17], [-1501.47, -1017.33], [-1503.36, -1016.25], [-1504.58, -1014.51], [-1506.87, -1009.74], [-1506.94, -1008.31]], [[-1498.16, -1250.53], [-1502.33, -1250.46], [-1503.41, -1308.04], [-1503.88, -1318.71], [-1504.48, -1332.15], [-1504.75, -1338.21], [-1505.21, -1348.7], [-1505.52, -1355.72], [-1505.66, -1358.92], [-1501.55, -1355.75], [-1501.34, -1349.78], [-1501.06, -1341.82], [-1499.75, -1311.82], [-1496.25, -1311.97], [-1501.49, -1311.68], [-1500.42, -1291.97], [-1498.16, -1250.53]], [[-1476.99, -1359.38], [-1468.84, -1357.14], [-1468.57, -1358.13], [-1441.6, -1332.34], [-1412.77, -1306.28], [-1380.53, -1277.15], [-1379.69, -1278.08], [-1379.69, -1278.08], [-1381.7, -1275.85], [-1378.97, -1273.39], [-1378.66, -1271.39], [-1376.53, -1266.55], [-1373.89, -1261.23], [-1371.7, -1256.2], [-1386.13, -1269.26], [-1394.16, -1276.53], [-1457.79, -1334.08], [-1460.14, -1331.49], [-1457.88, -1334.16], [-1471.11, -1345.34], [-1481.65, -1353.78], [-1484.7, -1355.15], [-1493.19, -1359.09], [-1493.37, -1362.54], [-1486.13, -1361.89], [-1476.99, -1359.38]], [[-1493.62, -1379.7], [-1493.66, -1388.36], [-1487.03, -1380.9], [-1485.36, -1378.8], [-1478.79, -1370.45], [-1478.58, -1370.18], [-1484.35, -1371.77], [-1493.5, -1372.59], [-1493.62, -1379.7]], [[-1492.17, -1328.16], [-1493.38, -1326.29], [-1494.07, -1342.09], [-1494.34, -1350.03], [-1494.41, -1351.94], [-1487.6, -1348.78], [-1485.33, -1347.76], [-1475.56, -1339.93], [-1470.89, -1335.99], [-1471.76, -1336.16], [-1475.75, -1336.14], [-1479.74, -1335.5], [-1484.97, -1333.75], [-1487.63, -1332.4], [-1490.29, -1330.14], [-1492.17, -1328.16]], [[-1267.42, -1023.46], [-1267.05, -1021.56], [-1267.01, -1012.39], [-1268.49, -1008.78], [-1273.75, -1008.62], [-1296.69, -1008.57], [-1307.37, -1009.34], [-1356.98, -1009.09], [-1362.91, -1008.73], [-1382.65, -1009.06], [-1398.81, -1011.97], [-1421.55, -1016.16], [-1416.21, -1016.78], [-1408.55, -1018.12], [-1392.23, -1020.96], [-1381.22, -1022.65], [-1357.34, -1023.93], [-1351.7, -1023.75], [-1297.26, -1023.1], [-1273.64, -1023.47], [-1267.42, -1023.46]], [[-1477.11, -383.13], [-1478.21, -387.65], [-1481.08, -405.83], [-1482.01, -413.66], [-1482.69, -421.48], [-1483.45, -439.47], [-1484.07, -458.59], [-1484.14, -460.13], [-1485.67, -492.64], [-1485.85, -498.4], [-1485.71, -498.41], [-1480.71, -498.87], [-1480.28, -492.57], [-1478.69, -469.01], [-1474.11, -400.62], [-1472.06, -386.83], [-1471.46, -383.3], [-1477.11, -383.13]], [[-1482.89, -505.7], [-1485.88, -505.43], [-1487.95, -505.23], [-1488.4, -511.75], [-1495.48, -615.72], [-1496.33, -626.07], [-1496.54, -628.81], [-1501.14, -674.61], [-1501.49, -680.25], [-1495.87, -680.49], [-1495.55, -674.67], [-1492.06, -634.51], [-1491.79, -631.94], [-1490.87, -621.41], [-1487.5, -587.27], [-1484.79, -539.26], [-1483.24, -511.9], [-1482.89, -505.7]], [[-1500.32, -686.31], [-1502.81, -742.23], [-1502.9, -744.08], [-1499.13, -744.27], [-1498.96, -740.83], [-1495.94, -686.5], [-1500.32, -686.31]], [[-1458.39, -255.82], [-1458.44, -255.66], [-1458.51, -255.85], [-1460.18, -259.41], [-1462.03, -264.76], [-1463.82, -308.1], [-1465.13, -323.35], [-1467.71, -340.08], [-1474.55, -365.82], [-1475.42, -369.17], [-1468.82, -369.37], [-1467.92, -365.05], [-1464.74, -351.64], [-1460.75, -331.46], [-1458.81, -312.64], [-1457.98, -294.88], [-1456.54, -264.41], [-1457.38, -259.41], [-1458.39, -255.82]], [[-1004.14, -2823.26], [-1004.6, -2819.28], [-1006.22, -2805.83], [-1008.32, -2788.39], [-1016.2, -2749.24], [-1017.19, -2745.37], [-1022.9, -2723.22], [-1027.69, -2704.63], [-1043.14, -2658.6], [-1047.34, -2647.56], [-1055.75, -2649.87], [-1051.08, -2661.48], [-1037.7, -2705.16], [-1035.39, -2712.67], [-1027.68, -2742.74], [-1019.75, -2777.63], [-1012.9, -2819.3], [-1010.2, -2838.86], [-1005.03, -2878.37], [-1002.62, -2921.62], [-1002.92, -2928.04], [-996.22, -2928.9], [-996.4, -2923.07], [-997.11, -2900.51], [-998.34, -2880.27], [-999.34, -2863.99], [-1004.14, -2823.26]], [[-887.73, -2942.63], [-887.31, -2936.68], [-887.02, -2926.32], [-887.47, -2915.15], [-888.3, -2903.58], [-889.91, -2892.39], [-891.22, -2885.15], [-895.31, -2871.37], [-903.23, -2853.75], [-913.27, -2831.43], [-922.06, -2811.87], [-926.6, -2801.78], [-931.1, -2791.76], [-946.18, -2758.23], [-948.69, -2752.62], [-958.43, -2734.09], [-981.39, -2704.25], [-986.5, -2697.61], [-1008.53, -2671.07], [-1026.64, -2650.61], [-1034.46, -2641.6], [-1040.84, -2644.98], [-1036.54, -2656.23], [-1020.97, -2702.64], [-1016.12, -2721.48], [-1010.42, -2743.62], [-1009.37, -2747.68], [-1001.4, -2787.28], [-999.27, -2804.99], [-997.65, -2818.46], [-997.18, -2822.44], [-992.36, -2863.37], [-991.36, -2879.85], [-990.12, -2900.18], [-989.41, -2922.85], [-989.19, -2929.83], [-983.75, -2930.58], [-969.43, -2932.56], [-942.56, -2936.26], [-894.96, -2941.95], [-892.0, -2942.23], [-887.73, -2942.63]], [[-1003.32, -2936.06], [-1003.73, -2943.79], [-1003.78, -2949.6], [-1003.81, -2970.35], [-1004.35, -2979.44], [-996.51, -2979.79], [-996.33, -2972.2], [-995.93, -2959.99], [-995.98, -2951.95], [-996.04, -2947.73], [-995.99, -2944.99], [-996.05, -2936.98], [-1003.32, -2936.06]], [[-1117.41, -2499.59], [-1136.6, -2466.08], [-1145.3, -2450.53], [-1169.8, -2405.61], [-1175.26, -2395.6], [-1184.82, -2398.63], [-1178.87, -2410.02], [-1145.97, -2467.15], [-1138.58, -2479.43], [-1126.75, -2499.1], [-1119.71, -2512.01], [-1111.47, -2509.31], [-1117.41, -2499.59]], [[-1101.17, -2526.18], [-1108.25, -2514.57], [-1116.77, -2517.36], [-1108.94, -2531.55], [-1107.38, -2534.38], [-1089.67, -2567.92], [-1075.79, -2600.19], [-1074.42, -2603.38], [-1066.34, -2623.51], [-1063.07, -2631.65], [-1058.0, -2644.27], [-1049.47, -2641.92], [-1059.48, -2615.15], [-1066.98, -2597.64], [-1071.34, -2587.47], [-1072.38, -2585.04], [-1077.95, -2573.09], [-1095.55, -2535.38], [-1101.17, -2526.18]], [[-1217.79, -2341.97], [-1200.56, -2371.37], [-1188.24, -2392.37], [-1178.8, -2389.38], [-1209.14, -2337.7], [-1212.09, -2332.68], [-1220.45, -2337.42], [-1217.79, -2341.97]], [[-1077.34, -2383.18], [-1077.41, -2385.81], [-1077.57, -2391.25], [-1073.94, -2391.42], [-973.55, -2396.31], [-973.3, -2390.35], [-973.2, -2388.0], [-968.93, -2287.69], [-1074.61, -2282.66], [-1075.97, -2335.18], [-1077.34, -2383.18]], [[-878.68, -2292.42], [-962.94, -2287.99], [-967.2, -2388.25], [-967.3, -2390.61], [-967.55, -2396.59], [-892.25, -2400.03], [-839.31, -2402.69], [-834.73, -2402.89], [-834.53, -2397.73], [-834.46, -2395.01], [-833.39, -2352.06], [-831.95, -2294.48], [-878.68, -2292.42]], [[-536.25, -2278.26], [-516.92, -2279.27], [-471.11, -2281.65], [-421.97, -2284.21], [-406.67, -2285.01], [-406.5, -2281.59], [-402.42, -2200.11], [-402.16, -2194.9], [-429.9, -2193.69], [-468.24, -2192.04], [-471.05, -2191.91], [-515.21, -2190.0], [-531.48, -2189.29], [-535.46, -2189.12], [-535.77, -2194.53], [-538.75, -2233.66], [-541.73, -2277.98], [-536.25, -2278.26]], [[-541.45, -2188.86], [-547.3, -2188.61], [-550.25, -2188.48], [-560.0, -2188.06], [-585.16, -2187.32], [-606.12, -2186.75], [-611.62, -2186.6], [-611.88, -2191.38], [-613.36, -2218.07], [-618.84, -2263.13], [-622.68, -2293.57], [-635.6, -2405.17], [-635.8, -2407.42], [-636.0, -2410.89], [-633.13, -2411.0], [-588.55, -2413.07], [-542.31, -2414.8], [-503.7, -2417.58], [-452.16, -2422.9], [-427.26, -2427.1], [-421.58, -2428.05], [-421.46, -2425.05], [-420.21, -2392.83], [-420.04, -2388.64], [-469.39, -2385.66], [-516.0, -2384.11], [-536.33, -2383.54], [-540.64, -2383.6], [-546.56, -2382.79], [-549.41, -2380.17], [-551.26, -2377.06], [-551.22, -2374.05], [-550.68, -2331.58], [-547.92, -2280.65], [-544.92, -2280.81], [-547.92, -2280.61], [-544.73, -2233.23], [-541.75, -2194.13], [-541.45, -2188.86]], [[-542.5, -2418.3], [-588.7, -2416.57], [-633.28, -2414.5], [-636.18, -2414.39], [-636.37, -2418.21], [-634.12, -2418.3], [-589.63, -2420.48], [-542.95, -2423.08], [-496.82, -2425.76], [-461.29, -2429.71], [-435.51, -2432.54], [-427.58, -2434.02], [-421.86, -2435.08], [-421.72, -2431.58], [-427.84, -2430.55], [-452.64, -2426.37], [-504.0, -2421.07], [-542.5, -2418.3]], [[-860.44, -2171.18], [-796.34, -2173.93], [-793.39, -2174.01], [-793.02, -2168.54], [-790.55, -2092.43], [-790.34, -2087.87], [-838.68, -2088.19], [-854.47, -2085.97], [-869.89, -2084.02], [-882.98, -2082.33], [-953.91, -2075.63], [-954.08, -2079.73], [-957.54, -2160.96], [-957.8, -2167.1], [-951.47, -2167.38], [-860.44, -2171.18]], [[-981.51, -2070.34], [-1001.36, -2064.2], [-1028.05, -2057.63], [-1046.46, -2056.45], [-1063.12, -2057.59], [-1063.34, -2061.65], [-1068.6, -2155.49], [-1068.95, -2161.58], [-1062.87, -2161.81], [-1022.06, -2163.34], [-969.28, -2166.46], [-963.79, -2166.79], [-963.54, -2160.7], [-960.08, -2079.48], [-959.88, -2074.77], [-981.51, -2070.34]], [[-756.77, -2524.19], [-698.08, -2527.83], [-694.27, -2528.06], [-686.05, -2528.57], [-683.39, -2520.83], [-682.32, -2517.0], [-677.64, -2425.95], [-677.51, -2423.43], [-677.44, -2421.31], [-681.5, -2421.12], [-709.2, -2419.67], [-715.15, -2415.64], [-823.56, -2410.46], [-829.0, -2410.17], [-829.21, -2415.93], [-829.32, -2418.72], [-833.04, -2510.92], [-833.17, -2514.19], [-833.42, -2520.29], [-827.19, -2520.6], [-756.77, -2524.19]], [[-797.81, -2754.06], [-792.13, -2754.34], [-788.37, -2754.53], [-763.07, -2699.78], [-759.2, -2691.26], [-738.06, -2646.82], [-743.3, -2646.48], [-747.94, -2646.18], [-751.95, -2645.92], [-839.95, -2640.53], [-840.25, -2647.82], [-840.44, -2652.49], [-842.27, -2696.77], [-844.01, -2742.71], [-844.15, -2746.38], [-844.35, -2751.72], [-838.51, -2752.01], [-797.81, -2754.06]], [[-698.45, -2533.82], [-757.11, -2530.18], [-827.49, -2526.6], [-833.71, -2526.28], [-834.03, -2532.25], [-834.22, -2535.75], [-836.77, -2581.95], [-839.18, -2625.86], [-839.42, -2630.2], [-839.66, -2634.54], [-751.57, -2639.93], [-747.55, -2640.19], [-742.92, -2640.49], [-735.38, -2640.98], [-728.73, -2625.37], [-716.08, -2595.66], [-713.55, -2589.72], [-705.09, -2569.87], [-695.94, -2550.27], [-688.53, -2534.43], [-694.64, -2534.05], [-698.45, -2533.82]], [[-615.39, -2148.94], [-614.52, -2133.01], [-613.69, -2103.93], [-614.28, -2101.25], [-615.35, -2099.37], [-618.27, -2097.6], [-622.17, -2096.4], [-625.12, -2095.91], [-631.11, -2095.41], [-662.82, -2094.06], [-777.94, -2087.25], [-784.32, -2087.67], [-784.56, -2092.67], [-787.03, -2168.83], [-787.39, -2174.24], [-783.61, -2174.42], [-668.63, -2178.1], [-621.09, -2179.28], [-617.34, -2179.41], [-617.2, -2173.37], [-616.27, -2159.62], [-615.39, -2148.94]], [[-665.47, -2414.91], [-645.69, -2416.07], [-642.28, -2416.21], [-642.26, -2415.87], [-645.2, -2415.72], [-665.36, -2414.76], [-671.22, -2414.45], [-671.22, -2414.61], [-665.47, -2414.91]], [[-677.21, -2414.12], [-681.41, -2413.87], [-707.02, -2412.69], [-706.89, -2412.78], [-681.16, -2414.13], [-677.22, -2414.31], [-677.21, -2414.12]], [[-291.26, -2246.57], [-289.25, -2207.37], [-289.14, -2205.21], [-288.87, -2199.82], [-292.85, -2199.65], [-383.37, -2195.72], [-383.22, -2192.22], [-383.37, -2195.72], [-389.14, -2195.46], [-398.66, -2195.05], [-398.92, -2200.28], [-403.0, -2281.77], [-403.17, -2285.19], [-294.82, -2290.83], [-293.52, -2290.9], [-291.26, -2246.57]], [[-305.61, -2466.58], [-299.17, -2469.07], [-297.69, -2400.06], [-297.55, -2393.83], [-346.36, -2391.46], [-350.29, -2391.28], [-409.22, -2389.15], [-409.12, -2386.16], [-409.24, -2389.15], [-414.05, -2388.95], [-414.21, -2393.07], [-415.47, -2425.29], [-415.63, -2429.38], [-408.73, -2431.39], [-396.79, -2434.86], [-363.48, -2444.4], [-348.8, -2449.95], [-335.49, -2454.99], [-306.24, -2468.21], [-305.61, -2466.58]], [[-254.77, -2395.8], [-291.56, -2394.11], [-291.69, -2400.19], [-293.22, -2471.37], [-257.75, -2485.08], [-257.11, -2472.78], [-253.68, -2399.35], [-253.51, -2395.86], [-254.77, -2395.8]], [[-397.76, -2438.22], [-409.71, -2434.75], [-415.77, -2432.99], [-415.91, -2436.41], [-409.16, -2438.24], [-402.61, -2440.01], [-377.57, -2446.64], [-352.53, -2453.85], [-333.33, -2459.81], [-336.83, -2458.23], [-350.04, -2453.22], [-364.59, -2447.72], [-397.76, -2438.22]], [[-283.15, -2205.52], [-283.26, -2207.68], [-285.27, -2246.88], [-287.68, -2294.19], [-291.18, -2383.2], [-291.37, -2388.11], [-254.49, -2389.81], [-253.27, -2389.87], [-253.11, -2384.74], [-250.28, -2295.72], [-245.97, -2207.03], [-245.72, -2201.68], [-280.06, -2200.2], [-282.87, -2200.08], [-283.15, -2205.52]], [[-517.23, -2285.26], [-536.56, -2284.25], [-542.09, -2283.97], [-544.68, -2331.79], [-545.22, -2374.13], [-545.24, -2375.44], [-544.7, -2376.35], [-543.88, -2377.1], [-540.27, -2377.59], [-536.29, -2377.53], [-515.82, -2378.12], [-469.11, -2379.67], [-416.78, -2382.83], [-410.74, -2383.08], [-410.52, -2377.53], [-408.85, -2336.92], [-407.18, -2296.66], [-406.94, -2291.0], [-422.28, -2290.21], [-471.42, -2287.64], [-517.23, -2285.26]], [[-297.17, -2382.96], [-293.79, -2296.89], [-295.13, -2296.83], [-403.45, -2291.18], [-403.68, -2296.81], [-405.35, -2337.06], [-407.02, -2377.67], [-407.25, -2383.22], [-350.04, -2385.28], [-346.07, -2385.47], [-297.37, -2387.83], [-297.17, -2382.96]], [[-950.69, -897.02], [-986.64, -929.35], [-987.69, -928.17], [-987.7, -928.19], [-986.66, -929.37], [-989.21, -931.63], [-991.1, -935.94], [-992.62, -941.69], [-993.68, -945.44], [-993.22, -953.06], [-985.75, -962.59], [-982.73, -964.14], [-983.44, -965.54], [-983.15, -965.92], [-982.02, -964.62], [-973.51, -972.04], [-966.4, -978.99], [-939.83, -1006.63], [-922.14, -1026.12], [-918.89, -1030.23], [-915.21, -1026.97], [-912.89, -1024.9], [-895.38, -1008.85], [-854.78, -971.1], [-846.76, -963.58], [-836.35, -953.98], [-828.52, -946.8], [-822.45, -941.39], [-811.91, -931.71], [-802.26, -922.35], [-796.59, -916.98], [-789.15, -910.01], [-756.01, -880.07], [-729.59, -856.58], [-726.35, -853.45], [-728.99, -850.59], [-763.62, -812.79], [-772.15, -803.43], [-798.77, -773.33], [-800.68, -771.23], [-806.73, -764.68], [-811.81, -769.14], [-829.0, -784.24], [-838.58, -792.67], [-850.19, -802.88], [-860.99, -812.37], [-896.1, -843.24], [-897.89, -844.81], [-909.85, -855.33], [-913.14, -858.22], [-914.35, -859.27], [-915.78, -857.64], [-916.54, -865.82], [-932.14, -880.26], [-941.15, -888.91], [-950.69, -897.02]], [[-911.41, -1039.02], [-849.57, -1107.54], [-845.55, -1103.85], [-844.4, -1102.86], [-828.71, -1089.42], [-889.32, -1020.55], [-892.98, -1016.15], [-908.2, -1030.09], [-910.56, -1032.2], [-914.4, -1035.61], [-911.41, -1039.02]], [[-774.94, -1178.95], [-771.21, -1175.57], [-763.02, -1167.6], [-759.7, -1165.68], [-754.61, -1164.11], [-749.8, -1163.6], [-723.51, -1142.14], [-716.71, -1136.23], [-711.73, -1129.22], [-710.12, -1124.17], [-710.34, -1121.16], [-711.58, -1119.28], [-712.74, -1117.51], [-730.49, -1096.1], [-737.66, -1085.25], [-764.31, -1045.16], [-767.04, -1043.4], [-769.2, -1042.6], [-771.1, -1042.53], [-773.1, -1043.25], [-775.15, -1044.81], [-791.53, -1064.27], [-822.45, -1091.95], [-824.45, -1089.71], [-822.5, -1091.99], [-840.49, -1107.42], [-841.57, -1108.34], [-845.51, -1111.96], [-779.63, -1182.48], [-778.89, -1182.13], [-776.59, -1180.44], [-774.94, -1178.95]], [[-772.05, -1036.5], [-768.03, -1036.63], [-764.34, -1038.0], [-760.01, -1040.8], [-732.66, -1081.94], [-725.67, -1092.52], [-707.92, -1113.93], [-706.57, -1115.97], [-704.46, -1119.17], [-704.05, -1124.89], [-706.29, -1131.93], [-712.23, -1140.29], [-719.65, -1146.73], [-746.3, -1168.49], [-748.34, -1171.87], [-750.79, -1175.11], [-767.48, -1191.18], [-770.48, -1192.7], [-737.09, -1230.55], [-729.91, -1238.42], [-726.38, -1241.22], [-722.15, -1244.58], [-713.89, -1251.06], [-705.52, -1255.72], [-694.73, -1259.58], [-685.2, -1261.92], [-675.21, -1263.12], [-645.77, -1261.11], [-634.02, -1257.4], [-621.38, -1250.8], [-615.83, -1246.99], [-606.68, -1239.11], [-601.6, -1233.91], [-597.23, -1229.45], [-593.29, -1223.87], [-586.63, -1213.06], [-574.46, -1190.11], [-571.7, -1184.94], [-521.73, -1093.73], [-516.66, -1085.08], [-522.37, -1078.81], [-524.41, -1076.27], [-552.12, -1045.92], [-580.53, -1015.41], [-582.32, -1013.52], [-586.28, -1008.46], [-590.99, -1012.73], [-593.01, -1014.57], [-596.49, -1017.74], [-650.85, -1067.14], [-671.65, -1086.05], [-674.65, -1094.59], [-680.31, -1092.6], [-676.81, -1082.63], [-654.89, -1062.7], [-600.53, -1013.3], [-597.05, -1010.13], [-595.02, -1008.29], [-589.97, -1003.7], [-594.11, -998.33], [-627.79, -962.36], [-649.77, -937.26], [-653.45, -933.08], [-657.44, -936.85], [-708.96, -985.47], [-711.01, -987.4], [-724.08, -999.73], [-728.19, -995.36], [-715.13, -983.03], [-713.08, -981.1], [-661.56, -932.49], [-657.45, -928.61], [-661.64, -924.0], [-689.06, -894.11], [-692.44, -890.43], [-695.21, -887.48], [-717.79, -862.43], [-721.55, -858.55], [-724.83, -861.71], [-751.33, -885.28], [-784.41, -915.17], [-791.79, -922.07], [-797.41, -927.4], [-807.1, -936.8], [-817.76, -946.58], [-823.83, -951.99], [-831.62, -959.13], [-841.99, -968.7], [-850.0, -976.22], [-888.56, -1012.07], [-884.76, -1016.65], [-824.2, -1085.46], [-795.84, -1060.08], [-779.32, -1040.44], [-775.99, -1037.91], [-772.05, -1036.5]], [[-580.56, -1216.54], [-587.44, -1227.73], [-591.84, -1233.95], [-596.6, -1238.81], [-601.89, -1244.22], [-611.55, -1252.54], [-617.76, -1256.81], [-631.33, -1263.89], [-644.46, -1268.04], [-675.39, -1270.15], [-686.46, -1268.82], [-696.74, -1266.3], [-708.42, -1262.12], [-717.77, -1256.91], [-724.19, -1251.87], [-728.84, -1257.46], [-718.66, -1265.59], [-707.69, -1270.14], [-692.02, -1274.76], [-678.77, -1276.54], [-670.89, -1277.4], [-662.57, -1277.16], [-652.01, -1276.29], [-642.23, -1274.31], [-634.16, -1272.13], [-625.33, -1268.6], [-616.24, -1263.97], [-610.42, -1260.56], [-608.21, -1259.28], [-597.69, -1251.77], [-588.4, -1242.28], [-580.67, -1231.91], [-555.0, -1186.1], [-543.72, -1164.51], [-532.2, -1139.34], [-513.6, -1105.3], [-507.23, -1095.09], [-511.67, -1090.41], [-515.64, -1097.18], [-565.54, -1188.27], [-568.28, -1193.39], [-580.56, -1216.54]], [[-920.6, -1049.33], [-887.38, -1086.23], [-807.39, -1172.96], [-805.62, -1174.87], [-794.71, -1183.21], [-787.65, -1187.54], [-785.14, -1188.67], [-783.06, -1189.08], [-783.39, -1188.71], [-852.7, -1114.52], [-850.14, -1112.13], [-852.74, -1114.48], [-916.64, -1043.67], [-919.65, -1040.25], [-924.47, -1044.49], [-920.6, -1049.33]], [[-971.67, -1086.51], [-1009.08, -1120.64], [-1016.81, -1128.04], [-1027.45, -1136.75], [-1044.57, -1152.98], [-1046.23, -1155.01], [-1047.04, -1156.59], [-1047.35, -1158.09], [-1047.24, -1160.01], [-1045.73, -1162.15], [-1013.65, -1187.64], [-990.33, -1206.35], [-985.83, -1202.01], [-984.92, -1201.23], [-969.78, -1188.11], [-945.96, -1166.07], [-936.75, -1157.93], [-926.47, -1148.79], [-922.23, -1146.42], [-918.04, -1147.66], [-903.03, -1165.26], [-784.72, -1295.96], [-781.76, -1299.22], [-759.65, -1279.84], [-753.8, -1274.6], [-743.98, -1265.47], [-737.82, -1258.67], [-740.96, -1255.26], [-743.13, -1252.91], [-750.57, -1244.87], [-812.53, -1177.71], [-809.96, -1175.33], [-812.53, -1177.71], [-892.56, -1090.95], [-925.93, -1053.86], [-929.96, -1048.84], [-934.02, -1052.67], [-936.31, -1054.67], [-953.73, -1069.92], [-963.67, -1079.22], [-971.67, -1086.51]], [[-936.94, -875.17], [-923.26, -862.51], [-922.83, -857.8], [-926.68, -858.08], [-944.7, -873.53], [-953.61, -881.31], [-961.38, -888.19], [-977.36, -902.15], [-1021.26, -942.85], [-1024.76, -945.41], [-1017.82, -948.22], [-1012.59, -942.99], [-991.31, -924.13], [-955.3, -891.75], [-945.85, -883.71], [-936.94, -875.17]], [[-995.99, -940.77], [-994.92, -936.68], [-1007.79, -948.08], [-1010.76, -951.06], [-1007.04, -952.55], [-995.02, -957.85], [-993.17, -958.79], [-996.64, -954.36], [-997.21, -945.05], [-995.99, -940.77]], [[-823.1, -1336.38], [-821.27, -1334.82], [-794.55, -1310.44], [-786.27, -1303.18], [-789.16, -1299.99], [-907.54, -1169.22], [-921.45, -1152.91], [-921.51, -1152.89], [-922.97, -1153.71], [-932.77, -1162.42], [-941.93, -1170.52], [-965.78, -1192.58], [-980.99, -1205.76], [-981.78, -1206.44], [-985.59, -1210.12], [-830.51, -1332.99], [-828.06, -1334.75], [-827.35, -1335.26], [-825.99, -1335.85], [-823.97, -1336.35], [-823.19, -1336.42], [-823.1, -1336.38]], [[-1009.76, -959.0], [-1016.35, -956.36], [-1023.22, -962.09], [-1015.59, -965.31], [-1000.51, -971.78], [-993.3, -975.34], [-986.13, -979.97], [-974.32, -990.98], [-932.39, -1035.53], [-929.03, -1039.18], [-924.14, -1034.87], [-927.48, -1030.65], [-944.95, -1011.41], [-971.37, -983.92], [-978.26, -977.18], [-986.3, -970.18], [-998.03, -964.17], [-1009.76, -959.0]], [[-1062.42, -966.86], [-1055.64, -960.63], [-1051.79, -957.61], [-1055.27, -955.77], [-1070.86, -949.04], [-1068.4, -950.92], [-1063.97, -956.59], [-1062.47, -962.69], [-1062.31, -966.46], [-1062.42, -966.86]], [[-1029.11, -957.88], [-1023.71, -953.39], [-1031.32, -950.32], [-1036.33, -954.31], [-1029.11, -957.88]], [[-1057.64, -930.46], [-1066.6, -927.57], [-1041.34, -938.75], [-1032.4, -942.33], [-1025.72, -937.44], [-992.09, -906.26], [-1003.31, -913.82], [-1019.34, -927.34], [-1026.88, -930.64], [-1034.26, -932.51], [-1040.23, -932.44], [-1057.64, -930.46]], [[-786.96, -1194.43], [-788.02, -1193.96], [-745.43, -1240.12], [-737.99, -1248.16], [-735.81, -1250.51], [-733.22, -1253.34], [-728.91, -1248.16], [-730.73, -1246.71], [-734.71, -1243.56], [-742.3, -1235.23], [-777.84, -1194.94], [-779.48, -1195.24], [-783.35, -1195.13], [-786.96, -1194.43]], [[-770.91, -1183.39], [-772.79, -1185.09], [-775.47, -1187.06], [-774.67, -1187.96], [-773.98, -1187.74], [-770.99, -1186.24], [-755.29, -1171.11], [-754.78, -1170.44], [-757.28, -1171.21], [-759.37, -1172.42], [-767.11, -1179.94], [-770.91, -1183.39]], [[-897.01, 17.96], [-903.12, 14.99], [-908.53, 13.34], [-909.41, 13.06], [-915.98, 12.12], [-951.63, 13.2], [-952.66, 13.24], [-968.12, 14.24], [-986.34, 15.27], [-1013.68, 17.43], [-1018.06, 17.5], [-1018.28, 12.24], [-1018.41, 8.76], [-1019.67, -22.67], [-1019.82, -26.24], [-1019.84, -26.79], [-1026.83, -26.49], [-1026.81, -25.95], [-1026.67, -22.39], [-1025.4, 9.03], [-1025.27, 12.52], [-1025.06, 17.63], [-1030.69, 17.75], [-1057.25, 18.88], [-1093.01, 20.6], [-1132.97, 22.7], [-1140.18, 22.98], [-1174.73, 24.68], [-1176.61, 24.93], [-1176.86, 20.61], [-1177.35, 11.34], [-1178.63, -12.65], [-1181.29, -62.76], [-1182.31, -71.58], [-1184.33, -80.6], [-1185.81, -107.4], [-1186.14, -114.63], [-1186.57, -125.83], [-1189.44, -175.41], [-1190.81, -205.2], [-1192.64, -245.17], [-1192.71, -250.52], [-1191.13, -250.58], [-1135.01, -253.45], [-1078.13, -256.28], [-1072.44, -256.57], [-1072.2, -251.23], [-1070.81, -219.43], [-1070.25, -206.68], [-1069.83, -197.09], [-1069.53, -190.35], [-1069.13, -181.36], [-1068.68, -169.82], [-1068.26, -160.37], [-1066.64, -124.77], [-1059.65, -125.08], [-1061.27, -160.68], [-1061.69, -170.12], [-1062.14, -181.65], [-1062.53, -190.66], [-1062.83, -197.4], [-1063.25, -206.99], [-1063.81, -219.73], [-1065.21, -251.54], [-1065.45, -256.91], [-1063.95, -256.99], [-1051.74, -249.52], [-1048.73, -246.86], [-1040.0, -239.0], [-1013.07, -214.72], [-992.67, -196.35], [-946.6, -154.83], [-930.79, -140.57], [-908.96, -120.9], [-899.76, -112.62], [-882.68, -97.21], [-879.37, -94.33], [-876.55, -92.2], [-871.3, -89.28], [-866.05, -87.2], [-863.4, -86.23], [-862.49, -82.69], [-861.06, -78.51], [-858.98, -74.52], [-857.07, -71.82], [-854.87, -69.16], [-852.52, -66.94], [-851.81, -66.27], [-833.31, -49.86], [-812.78, -31.63], [-805.75, -25.4], [-799.63, -19.97], [-799.0, -19.41], [-792.04, -13.23], [-776.98, 0.13], [-776.31, 0.74], [-769.75, 6.56], [-767.63, 8.43], [-760.99, 14.33], [-739.06, 33.79], [-729.82, 42.0], [-724.75, 46.5], [-727.78, 49.8], [-746.96, 70.6], [-749.34, 73.25], [-760.64, 85.56], [-762.71, 87.8], [-782.99, 109.86], [-785.07, 112.13], [-787.9, 115.2], [-792.04, 111.46], [-816.52, 89.39], [-852.9, 56.6], [-866.48, 44.35], [-879.41, 32.69], [-882.9, 29.55], [-885.25, 32.15], [-882.9, 29.55], [-891.49, 21.81], [-893.71, 20.26], [-897.01, 17.96]], [[-875.59, -98.99], [-878.7, -101.7], [-895.74, -117.07], [-904.94, -125.36], [-926.77, -145.03], [-942.59, -159.28], [-988.65, -200.8], [-1009.05, -219.18], [-1035.98, -243.45], [-1044.73, -251.34], [-1048.16, -254.37], [-1053.29, -257.5], [-1050.78, -257.62], [-1026.86, -258.76], [-980.62, -260.98], [-969.07, -261.53], [-956.36, -262.14], [-944.76, -262.55], [-936.95, -262.65], [-933.6, -262.44], [-930.04, -261.97], [-926.61, -261.12], [-923.13, -260.06], [-922.67, -261.59], [-922.41, -261.44], [-918.17, -259.33], [-915.58, -257.94], [-912.29, -255.61], [-909.07, -253.18], [-905.63, -250.24], [-901.73, -246.51], [-881.36, -227.64], [-871.33, -218.64], [-860.35, -209.01], [-850.53, -199.91], [-846.96, -203.77], [-849.33, -201.19], [-827.21, -180.86], [-812.52, -167.38], [-807.79, -163.44], [-811.87, -158.91], [-817.61, -152.59], [-840.52, -127.36], [-837.93, -125.01], [-840.52, -127.36], [-854.91, -111.46], [-857.86, -107.76], [-860.5, -103.96], [-862.54, -99.92], [-863.77, -93.8], [-863.78, -92.76], [-863.91, -92.81], [-868.72, -94.71], [-873.27, -97.24], [-875.59, -98.99]], [[-874.28, -235.4], [-894.53, -254.15], [-898.58, -258.04], [-902.49, -261.37], [-906.09, -264.09], [-910.05, -266.89], [-913.35, -268.65], [-917.4, -270.68], [-918.08, -271.08], [-918.04, -280.01], [-917.91, -297.63], [-917.8, -318.23], [-917.59, -323.35], [-916.9, -328.32], [-915.95, -332.01], [-914.9, -335.32], [-913.35, -338.7], [-911.58, -341.44], [-909.61, -344.03], [-906.98, -347.11], [-892.42, -362.13], [-885.92, -369.06], [-882.89, -366.78], [-880.64, -364.65], [-862.83, -348.82], [-848.25, -335.98], [-834.43, -323.8], [-824.47, -315.02], [-743.65, -243.32], [-740.42, -240.25], [-745.42, -234.64], [-766.41, -209.84], [-769.6, -206.47], [-767.14, -204.14], [-767.19, -204.11], [-768.4, -205.18], [-771.16, -202.08], [-779.88, -197.63], [-783.63, -193.83], [-787.12, -191.08], [-790.96, -188.87], [-794.27, -187.71], [-797.3, -186.94], [-800.57, -186.49], [-804.13, -186.29], [-807.69, -186.45], [-810.85, -187.03], [-814.1, -187.88], [-817.22, -189.29], [-832.81, -199.71], [-841.24, -203.26], [-844.58, -206.33], [-843.4, -207.62], [-853.32, -216.81], [-864.36, -226.49], [-874.28, -235.4]], [[-917.25, -399.99], [-923.15, -402.89], [-931.77, -405.59], [-934.72, -406.53], [-944.26, -407.64], [-950.22, -407.57], [-955.86, -407.41], [-971.49, -406.88], [-976.9, -406.67], [-977.13, -410.69], [-977.3, -413.57], [-977.74, -421.47], [-981.24, -482.61], [-981.47, -486.44], [-983.17, -516.21], [-983.3, -518.56], [-983.63, -524.19], [-977.46, -524.5], [-946.43, -526.07], [-939.82, -526.36], [-917.74, -527.17], [-914.19, -526.89], [-911.2, -526.43], [-908.98, -525.92], [-906.7, -525.24], [-904.19, -524.2], [-902.37, -522.97], [-901.38, -522.25], [-886.19, -508.91], [-877.42, -501.07], [-871.57, -495.94], [-862.68, -488.13], [-847.84, -475.08], [-826.25, -456.1], [-824.09, -454.17], [-821.91, -452.0], [-821.4, -451.47], [-826.48, -445.92], [-850.37, -419.87], [-856.13, -413.6], [-861.43, -407.82], [-865.63, -403.23], [-882.56, -384.97], [-886.72, -380.37], [-888.62, -381.68], [-891.06, -383.15], [-906.7, -394.18], [-917.25, -399.99]], [[-843.22, -480.33], [-858.06, -493.38], [-866.95, -501.2], [-872.77, -506.31], [-881.55, -514.15], [-897.01, -527.73], [-898.35, -528.7], [-900.86, -530.39], [-904.36, -531.85], [-907.2, -532.69], [-909.89, -533.31], [-913.37, -533.84], [-917.58, -534.18], [-936.57, -533.49], [-936.7, -538.27], [-936.75, -540.78], [-937.33, -570.09], [-937.75, -589.65], [-937.75, -591.71], [-938.0, -600.33], [-937.73, -605.14], [-936.76, -608.6], [-935.46, -611.21], [-933.43, -614.13], [-900.77, -650.49], [-896.7, -654.98], [-892.84, -651.47], [-890.89, -649.69], [-842.57, -605.7], [-839.32, -602.75], [-827.46, -591.95], [-810.44, -576.46], [-806.26, -572.66], [-791.44, -559.16], [-781.08, -549.73], [-759.0, -529.61], [-756.94, -527.74], [-754.75, -525.74], [-752.66, -523.84], [-756.71, -519.43], [-791.47, -481.52], [-812.46, -458.64], [-815.45, -455.38], [-816.93, -456.91], [-819.28, -459.26], [-821.61, -461.34], [-843.22, -480.33]], [[-1082.28, -452.59], [-1081.3, -433.98], [-1081.06, -429.19], [-1080.0, -406.32], [-1079.73, -401.45], [-1086.76, -400.63], [-1195.27, -395.9], [-1203.91, -394.89], [-1204.67, -400.26], [-1210.35, -502.81], [-1210.55, -506.09], [-1210.94, -512.66], [-1209.04, -512.76], [-1204.24, -513.01], [-1091.83, -518.42], [-1085.49, -518.95], [-1085.25, -512.93], [-1085.02, -509.96], [-1082.28, -452.59]], [[-988.45, -486.04], [-988.23, -482.21], [-984.73, -421.07], [-984.29, -413.17], [-984.12, -410.28], [-983.89, -406.36], [-989.76, -406.07], [-1026.03, -404.3], [-1028.48, -404.18], [-1068.49, -402.22], [-1072.75, -402.01], [-1073.01, -406.68], [-1074.07, -429.52], [-1074.3, -434.34], [-1075.28, -452.94], [-1078.03, -510.4], [-1078.26, -513.33], [-1078.5, -519.42], [-1074.68, -519.61], [-1035.43, -521.58], [-996.92, -523.52], [-990.62, -523.84], [-990.29, -518.17], [-990.16, -515.81], [-988.45, -486.04]], [[-1196.95, -379.72], [-1197.45, -385.07], [-1194.44, -385.42], [-1085.92, -390.16], [-1082.0, -390.61], [-1082.03, -385.58], [-1080.53, -356.3], [-1080.37, -352.89], [-1079.52, -333.91], [-1079.4, -331.54], [-1079.18, -326.38], [-1078.28, -310.38], [-1076.38, -276.71], [-1076.17, -273.58], [-1075.88, -270.42], [-1078.82, -270.27], [-1135.72, -267.43], [-1191.06, -264.6], [-1191.07, -267.85], [-1191.1, -272.21], [-1194.02, -331.56], [-1194.08, -333.0], [-1194.27, -337.29], [-1194.66, -342.51], [-1195.08, -351.82], [-1196.95, -379.72]], [[-1068.54, -356.88], [-1070.03, -385.85], [-1069.99, -391.64], [-1067.98, -391.73], [-1027.96, -393.69], [-1025.5, -393.82], [-989.25, -395.58], [-979.87, -396.04], [-971.11, -396.39], [-955.54, -396.91], [-950.01, -397.07], [-944.8, -397.14], [-936.94, -396.22], [-934.92, -395.58], [-927.06, -393.11], [-922.1, -390.67], [-912.27, -385.26], [-896.8, -374.35], [-894.31, -372.85], [-892.05, -371.29], [-896.76, -366.27], [-911.42, -351.15], [-914.28, -347.8], [-916.49, -344.89], [-918.62, -341.6], [-920.51, -337.48], [-921.72, -333.66], [-922.79, -329.49], [-923.57, -323.88], [-923.79, -318.37], [-923.91, -297.67], [-924.04, -280.05], [-924.06, -274.91], [-927.42, -275.74], [-932.22, -276.38], [-936.6, -276.66], [-945.1, -276.55], [-956.94, -276.13], [-969.74, -275.52], [-981.29, -274.97], [-1027.53, -272.74], [-1051.45, -271.61], [-1063.88, -271.01], [-1064.2, -274.54], [-1064.41, -277.46], [-1066.3, -311.05], [-1067.2, -326.98], [-1067.42, -332.1], [-1067.53, -334.48], [-1068.38, -353.42], [-1068.54, -356.88]], [[-911.91, 126.6], [-860.22, 69.2], [-858.55, 67.36], [-855.36, 63.81], [-821.21, 94.59], [-796.73, 116.66], [-792.24, 120.71], [-796.16, 125.06], [-800.22, 129.57], [-848.39, 183.08], [-850.63, 181.08], [-873.63, 160.65], [-881.37, 153.75], [-883.45, 151.91], [-885.75, 149.86], [-893.37, 143.08], [-909.72, 128.55], [-911.91, 126.6]], [[-620.06, -902.53], [-644.52, -924.85], [-648.32, -928.31], [-644.51, -932.65], [-622.6, -957.66], [-588.77, -993.79], [-584.77, -998.98], [-580.72, -995.29], [-578.85, -993.6], [-548.63, -966.12], [-533.91, -952.75], [-504.97, -926.45], [-502.42, -924.12], [-480.01, -903.76], [-442.55, -870.43], [-438.86, -869.12], [-445.15, -863.23], [-462.76, -845.07], [-467.98, -835.97], [-470.82, -833.59], [-469.95, -832.54], [-470.11, -832.26], [-471.2, -833.23], [-472.65, -831.59], [-499.72, -800.73], [-503.58, -796.26], [-505.77, -798.26], [-508.31, -800.57], [-569.04, -855.99], [-607.25, -890.86], [-620.06, -902.53]], [[-818.74, -438.82], [-813.85, -444.17], [-811.5, -442.02], [-809.17, -439.9], [-772.63, -406.63], [-758.08, -393.39], [-736.98, -374.17], [-728.61, -366.55], [-676.59, -319.2], [-675.22, -317.95], [-672.82, -315.76], [-676.64, -311.32], [-733.13, -248.71], [-735.83, -245.54], [-738.92, -248.47], [-819.83, -320.27], [-829.8, -329.05], [-843.62, -341.23], [-858.19, -354.06], [-875.9, -369.8], [-878.36, -372.14], [-879.35, -372.88], [-874.82, -377.87], [-857.91, -396.12], [-853.69, -400.73], [-848.39, -406.5], [-842.63, -412.78], [-818.74, -438.82]], [[-716.74, -844.62], [-708.43, -837.12], [-696.1, -825.98], [-693.24, -823.4], [-688.77, -819.37], [-660.52, -793.84], [-645.09, -779.91], [-632.35, -768.42], [-627.06, -763.63], [-610.63, -748.8], [-603.23, -742.13], [-595.57, -735.04], [-580.64, -721.62], [-577.76, -719.03], [-575.87, -717.34], [-579.63, -713.2], [-597.06, -693.95], [-598.66, -692.45], [-649.22, -637.31], [-657.86, -627.41], [-660.41, -629.72], [-664.25, -633.24], [-666.62, -635.35], [-678.55, -646.21], [-692.42, -658.87], [-701.11, -666.82], [-710.5, -675.24], [-718.2, -682.37], [-734.01, -696.76], [-742.12, -704.15], [-770.58, -730.05], [-774.61, -733.76], [-779.41, -738.11], [-798.33, -755.32], [-802.59, -758.85], [-795.52, -766.5], [-793.56, -768.66], [-766.94, -798.75], [-758.45, -808.07], [-723.83, -845.86], [-721.24, -848.68], [-716.74, -844.62]], [[-648.56, -920.42], [-624.1, -898.1], [-611.3, -886.42], [-573.09, -851.56], [-512.35, -796.13], [-509.81, -793.83], [-507.57, -791.78], [-511.66, -787.33], [-526.39, -771.26], [-527.38, -770.19], [-538.49, -758.06], [-545.72, -750.18], [-547.8, -747.91], [-567.3, -726.65], [-571.15, -722.5], [-573.08, -724.23], [-575.96, -726.83], [-590.86, -740.21], [-598.51, -747.3], [-605.94, -754.0], [-622.37, -768.82], [-627.66, -773.61], [-640.4, -785.11], [-655.83, -799.04], [-684.08, -824.56], [-688.55, -828.59], [-691.41, -831.18], [-703.74, -842.32], [-712.05, -849.82], [-716.43, -853.77], [-712.67, -857.66], [-690.06, -882.74], [-687.31, -885.66], [-683.9, -889.37], [-656.47, -919.28], [-652.32, -923.84], [-648.56, -920.42]], [[-822.75, -597.13], [-834.61, -607.92], [-837.86, -610.88], [-886.18, -654.87], [-888.13, -656.64], [-892.0, -660.17], [-888.51, -664.03], [-863.57, -691.57], [-860.81, -694.65], [-818.69, -741.19], [-817.49, -742.52], [-809.69, -751.1], [-805.22, -747.39], [-786.47, -730.33], [-781.69, -726.0], [-777.66, -722.3], [-749.19, -696.39], [-741.08, -689.0], [-725.3, -674.63], [-717.57, -667.48], [-708.16, -659.04], [-699.5, -651.12], [-685.62, -638.45], [-673.65, -627.56], [-671.3, -625.46], [-667.48, -621.95], [-664.48, -619.24], [-672.93, -607.93], [-674.23, -606.42], [-707.58, -570.64], [-721.25, -556.28], [-744.53, -532.71], [-747.93, -529.0], [-750.03, -530.91], [-752.22, -532.92], [-754.29, -534.79], [-776.37, -554.9], [-786.72, -564.33], [-801.55, -577.83], [-805.73, -581.64], [-822.75, -597.13]], [[-603.41, -563.67], [-602.56, -562.89], [-587.8, -549.45], [-572.4, -535.42], [-558.64, -522.89], [-557.17, -521.57], [-542.73, -508.41], [-519.9, -487.62], [-517.39, -485.33], [-526.99, -474.63], [-574.6, -423.03], [-597.01, -398.23], [-600.88, -394.0], [-603.34, -396.5], [-605.52, -398.85], [-633.87, -425.16], [-657.01, -446.23], [-671.08, -459.03], [-685.69, -472.34], [-700.31, -485.65], [-715.72, -499.68], [-716.68, -500.56], [-736.99, -519.05], [-739.4, -521.24], [-742.75, -524.29], [-739.46, -527.89], [-716.22, -551.41], [-702.49, -565.84], [-669.01, -601.75], [-667.47, -603.55], [-659.27, -614.52], [-656.08, -611.61], [-639.94, -596.92], [-639.37, -596.4], [-630.59, -588.4], [-617.17, -576.18], [-603.41, -563.67]], [[-705.02, -480.47], [-690.4, -467.16], [-675.79, -453.85], [-661.73, -441.05], [-638.61, -420.0], [-610.48, -393.9], [-608.4, -391.66], [-605.62, -388.84], [-608.76, -385.44], [-613.95, -380.12], [-632.74, -359.63], [-664.84, -324.62], [-668.17, -320.99], [-670.51, -323.12], [-671.88, -324.37], [-723.9, -371.73], [-732.26, -379.35], [-753.37, -398.56], [-767.92, -411.81], [-804.46, -445.07], [-806.78, -447.2], [-810.42, -450.51], [-807.3, -453.91], [-786.31, -476.79], [-751.56, -514.69], [-747.48, -519.13], [-744.11, -516.06], [-741.7, -513.87], [-721.39, -495.37], [-720.43, -494.5], [-705.02, -480.47]], [[-655.65, -18.48], [-651.86, -22.62], [-648.5, -19.58], [-624.51, 2.12], [-620.35, 5.88], [-617.17, 8.75], [-616.47, 9.39], [-604.56, 20.16], [-579.53, 42.78], [-557.27, 62.92], [-546.5, 72.66], [-512.67, 103.25], [-508.39, 107.11], [-512.52, 111.65], [-513.87, 113.13], [-542.55, 144.62], [-552.56, 155.6], [-553.36, 156.48], [-555.27, 158.58], [-568.28, 172.87], [-571.48, 176.39], [-575.54, 172.7], [-606.75, 144.32], [-612.98, 138.64], [-624.83, 127.87], [-636.68, 117.08], [-637.65, 116.21], [-653.12, 102.14], [-655.64, 99.84], [-663.96, 92.28], [-664.67, 91.63], [-666.27, 90.18], [-673.76, 83.36], [-685.21, 72.94], [-685.83, 72.37], [-711.38, 49.14], [-714.81, 46.02], [-711.55, 42.48], [-695.29, 24.78], [-694.66, 24.1], [-675.52, 3.28], [-674.52, 2.19], [-657.93, -15.87], [-655.65, -18.48]], [[-709.77, -212.73], [-705.82, -209.06], [-669.7, -176.75], [-648.25, -155.78], [-598.25, -108.87], [-590.65, -102.34], [-591.79, -101.57], [-593.58, -99.76], [-594.71, -97.69], [-595.19, -96.31], [-595.5, -94.92], [-595.74, -92.54], [-595.98, -90.75], [-596.13, -90.33], [-596.42, -89.96], [-629.82, -52.96], [-644.37, -35.85], [-646.34, -34.21], [-650.6, -30.91], [-657.57, -37.21], [-688.5, -65.18], [-696.0, -71.97], [-715.34, -89.46], [-723.56, -96.89], [-732.4, -104.9], [-775.94, -144.66], [-794.19, -160.84], [-797.25, -163.58], [-793.42, -166.48], [-763.25, -200.45], [-761.98, -199.25], [-758.59, -202.83], [-737.5, -227.75], [-732.7, -233.14], [-730.02, -230.74], [-709.77, -212.73]], [[-725.23, -241.79], [-668.76, -304.38], [-665.05, -308.69], [-660.91, -304.93], [-659.7, -303.82], [-634.61, -281.01], [-623.07, -270.52], [-602.74, -252.02], [-575.16, -226.95], [-556.8, -210.26], [-526.76, -182.93], [-525.67, -181.94], [-522.99, -179.51], [-527.66, -174.22], [-529.33, -172.31], [-579.1, -115.86], [-586.23, -107.77], [-593.57, -114.08], [-643.41, -160.84], [-664.91, -181.86], [-701.1, -214.24], [-705.06, -217.91], [-725.36, -235.97], [-728.1, -238.41], [-725.23, -241.79]], [[-785.15, -188.18], [-781.29, -191.22], [-777.78, -194.77], [-777.55, -194.88], [-798.2, -171.64], [-802.65, -168.27], [-807.92, -172.65], [-822.48, -186.01], [-832.78, -195.49], [-818.93, -186.22], [-815.27, -184.57], [-811.61, -183.62], [-808.09, -182.97], [-804.12, -182.79], [-800.23, -183.0], [-796.63, -183.5], [-793.26, -184.36], [-789.5, -185.67], [-785.15, -188.18]], [[-802.49, -158.87], [-798.85, -155.61], [-780.62, -139.46], [-737.11, -99.72], [-728.26, -91.7], [-720.04, -84.26], [-700.7, -66.78], [-693.2, -59.99], [-662.26, -32.02], [-657.05, -27.31], [-660.87, -23.14], [-663.14, -20.54], [-679.67, -2.55], [-680.67, -1.47], [-699.83, 19.37], [-700.45, 20.06], [-716.7, 37.74], [-720.01, 41.34], [-725.18, 36.76], [-734.41, 28.56], [-756.34, 9.1], [-762.99, 3.2], [-765.1, 1.32], [-771.65, -4.48], [-772.31, -5.08], [-787.4, -18.47], [-794.35, -24.63], [-794.98, -25.19], [-801.11, -30.64], [-808.13, -36.86], [-828.66, -55.09], [-847.09, -71.45], [-847.72, -72.04], [-849.75, -73.96], [-851.51, -76.08], [-852.99, -78.17], [-854.61, -81.28], [-855.77, -84.7], [-856.82, -88.73], [-856.78, -93.07], [-855.86, -97.61], [-854.47, -100.37], [-852.25, -103.58], [-849.57, -106.92], [-835.33, -122.66], [-812.43, -147.89], [-806.68, -154.21], [-802.49, -158.87]], [[-719.54, 51.17], [-716.09, 54.32], [-690.56, 77.53], [-689.94, 78.1], [-678.47, 88.54], [-670.98, 95.35], [-669.38, 96.81], [-668.67, 97.46], [-660.35, 105.02], [-657.83, 107.31], [-642.35, 121.4], [-641.38, 122.27], [-629.54, 133.05], [-617.7, 143.82], [-611.46, 149.5], [-580.25, 177.88], [-576.2, 181.56], [-580.1, 185.84], [-603.27, 211.28], [-633.58, 244.92], [-635.32, 246.85], [-638.47, 250.38], [-641.94, 246.8], [-663.27, 227.58], [-678.75, 213.62], [-697.22, 196.66], [-704.35, 190.53], [-717.43, 178.77], [-734.49, 163.36], [-778.97, 123.25], [-782.7, 119.89], [-779.92, 116.87], [-777.83, 114.59], [-757.57, 92.55], [-755.5, 90.31], [-744.16, 77.95], [-741.78, 75.31], [-722.63, 54.53], [-719.54, 51.17]], [[-386.54, -985.36], [-398.4, -990.48], [-411.09, -996.64], [-420.12, -1001.4], [-430.03, -1007.47], [-440.04, -1014.21], [-449.7, -1021.35], [-456.5, -1026.93], [-462.91, -1032.4], [-469.89, -1039.01], [-476.52, -1045.43], [-484.49, -1054.11], [-492.31, -1063.38], [-499.79, -1073.04], [-504.38, -1079.47], [-507.82, -1084.31], [-503.19, -1089.18], [-500.42, -1085.34], [-493.74, -1076.83], [-486.25, -1067.89], [-478.39, -1059.61], [-465.89, -1046.99], [-446.31, -1029.27], [-435.79, -1021.91], [-426.01, -1015.54], [-415.2, -1008.95], [-406.2, -1004.25], [-385.84, -994.76], [-363.72, -985.73], [-345.13, -980.86], [-332.71, -980.31], [-319.59, -977.3], [-310.04, -976.28], [-298.4, -976.23], [-284.37, -976.44], [-275.24, -977.5], [-273.7, -973.93], [-275.7, -972.4], [-280.39, -969.2], [-284.81, -967.02], [-290.77, -965.12], [-304.06, -963.65], [-303.82, -965.32], [-317.28, -967.26], [-331.61, -970.0], [-352.24, -974.7], [-364.34, -977.71], [-374.64, -980.91], [-386.54, -985.36]], [[-291.42, -994.34], [-289.38, -997.3], [-288.19, -1001.69], [-287.88, -1005.45], [-280.18, -989.33], [-278.06, -984.22], [-284.82, -983.43], [-298.44, -983.23], [-309.65, -983.28], [-314.56, -983.8], [-309.62, -984.24], [-305.84, -984.92], [-303.72, -985.56], [-300.47, -986.69], [-296.44, -989.24], [-293.51, -991.52], [-291.42, -994.34]], [[-267.32, -978.26], [-267.81, -977.95], [-267.92, -978.21], [-267.32, -978.26]], [[-236.77, -903.19], [-231.11, -893.39], [-224.77, -882.54], [-222.79, -879.17], [-226.42, -883.25], [-235.33, -894.75], [-243.13, -907.41], [-246.51, -913.32], [-261.65, -942.01], [-266.49, -949.1], [-271.22, -952.62], [-278.23, -955.55], [-286.23, -957.54], [-296.33, -960.98], [-290.03, -961.68], [-283.49, -963.77], [-278.62, -966.17], [-273.65, -969.56], [-272.16, -970.7], [-264.75, -955.74], [-254.44, -934.8], [-248.99, -924.73], [-242.83, -913.77], [-236.77, -903.19]], [[-459.54, -842.64], [-442.35, -860.37], [-435.47, -866.82], [-432.66, -854.16], [-432.15, -851.83], [-435.2, -851.79], [-438.07, -851.53], [-442.09, -850.73], [-446.86, -849.22], [-452.0, -846.87], [-456.52, -844.12], [-460.0, -841.84], [-459.54, -842.64]], [[-775.14, -2975.73], [-777.97, -2980.4], [-791.4, -3079.74], [-792.15, -3085.95], [-693.94, -3090.76], [-677.7, -2971.13], [-678.31, -2963.82], [-680.5, -2960.95], [-685.7, -2959.64], [-769.94, -2973.15], [-775.14, -2975.73]], [[920.48, 1835.3], [923.09, 1832.72], [1078.92, 1696.43], [1207.76, 1552.98], [1211.34, 1549.38], [1218.83, 1556.05], [1302.82, 1625.11], [1313.16, 1634.23], [1425.98, 1736.69], [1448.14, 1754.49], [1480.52, 1783.58], [1552.85, 1849.48], [1603.62, 1890.62], [1609.03, 1896.72], [1609.25, 1896.96], [1607.05, 1906.7], [1607.04, 1909.85], [1608.73, 1929.63], [1614.02, 1945.13], [1615.19, 1960.94], [1616.15, 1973.97], [1621.06, 2020.65], [1624.76, 2055.78], [1628.33, 2089.73], [1631.84, 2123.11], [1634.18, 2158.34], [1636.32, 2190.59], [1634.36, 2211.64], [1631.98, 2226.15], [1627.22, 2247.3], [1614.25, 2280.06], [1608.0, 2294.21], [1602.68, 2308.39], [1598.79, 2318.75], [1595.88, 2318.01], [1588.59, 2317.03], [1580.01, 2316.56], [1567.92, 2316.84], [1386.04, 2322.03], [1379.2, 2322.74], [1369.86, 2325.12], [1361.19, 2328.95], [1348.14, 2336.5], [1290.61, 2368.44], [1286.33, 2371.05], [1283.01, 2364.78], [1271.39, 2343.07], [1260.27, 2322.28], [1258.42, 2318.35], [1256.2, 2312.79], [1252.47, 2303.57], [1256.7, 2301.69], [1277.74, 2292.74], [1296.55, 2285.67], [1333.39, 2271.62], [1347.5, 2266.06], [1356.09, 2260.63], [1362.08, 2255.7], [1367.5, 2250.28], [1370.15, 2246.57], [1374.52, 2239.25], [1377.45, 2229.61], [1378.43, 2223.11], [1384.12, 2195.07], [1391.1, 2196.59], [1398.49, 2163.08], [1380.13, 2159.12], [1372.66, 2192.52], [1378.26, 2193.77], [1372.52, 2222.07], [1371.58, 2228.29], [1368.99, 2236.81], [1365.12, 2243.28], [1362.91, 2246.38], [1358.04, 2251.25], [1352.56, 2255.76], [1344.78, 2260.69], [1331.22, 2266.02], [1294.42, 2280.06], [1275.51, 2287.17], [1254.31, 2296.19], [1250.71, 2297.79], [1250.11, 2296.23], [1233.32, 2252.8], [1224.17, 2230.07], [1208.93, 2187.42], [1206.9, 2182.27], [1205.46, 2178.63], [1199.99, 2166.75], [1189.31, 2144.37], [1182.5, 2129.95], [1153.75, 2094.87], [1143.53, 2084.29], [1137.36, 2078.58], [1127.92, 2070.85], [1107.44, 2048.29], [1093.64, 2025.18], [1085.06, 2015.59], [1077.25, 2007.32], [1039.86, 1971.03], [925.28, 1840.69], [920.48, 1835.3]], [[862.92, 1770.67], [860.6, 1767.93], [863.69, 1765.36], [883.78, 1747.98], [1020.51, 1627.38], [1061.51, 1590.53], [1058.84, 1587.56], [1061.51, 1590.53], [1080.04, 1573.87], [1092.44, 1562.37], [1106.01, 1547.45], [1145.87, 1503.59], [1146.99, 1502.27], [1150.37, 1498.67], [1154.85, 1502.27], [1202.94, 1542.29], [1206.77, 1545.47], [1203.39, 1548.86], [1074.7, 1692.16], [919.0, 1828.32], [916.44, 1830.86], [913.49, 1827.67], [862.92, 1770.67]], [[1216.16, 1544.31], [1220.17, 1539.91], [1227.64, 1546.21], [1305.35, 1617.74], [1305.14, 1617.96], [1223.38, 1550.73], [1216.16, 1544.31]], [[1320.18, 1610.4], [1374.35, 1549.67], [1377.23, 1546.44], [1381.61, 1550.45], [1384.56, 1553.12], [1474.04, 1634.83], [1503.07, 1661.33], [1517.73, 1675.58], [1519.98, 1677.77], [1513.92, 1681.16], [1486.4, 1701.57], [1480.14, 1707.0], [1484.07, 1711.53], [1490.16, 1706.25], [1517.18, 1686.21], [1526.43, 1681.05], [1524.96, 1678.43], [1526.43, 1681.04], [1555.15, 1664.93], [1559.35, 1662.58], [1556.41, 1657.34], [1552.22, 1659.69], [1525.45, 1674.71], [1521.91, 1671.27], [1507.19, 1656.96], [1478.09, 1630.4], [1388.6, 1548.68], [1385.65, 1546.01], [1381.23, 1541.97], [1385.87, 1536.81], [1441.97, 1474.34], [1446.31, 1469.5], [1446.31, 1469.5], [1453.86, 1461.73], [1501.96, 1409.38], [1519.54, 1390.39], [1523.13, 1386.5], [1527.42, 1381.87], [1535.5, 1389.4], [1577.25, 1428.31], [1581.56, 1432.32], [1585.34, 1435.75], [1606.09, 1454.56], [1630.39, 1476.6], [1669.08, 1511.68], [1665.2, 1515.34], [1651.09, 1528.65], [1641.38, 1537.8], [1635.96, 1541.72], [1629.78, 1546.2], [1633.3, 1551.06], [1639.48, 1546.58], [1645.21, 1542.43], [1655.2, 1533.02], [1669.31, 1519.7], [1673.58, 1515.68], [1681.88, 1522.83], [1683.26, 1524.13], [1683.52, 1524.38], [1710.27, 1549.56], [1734.52, 1572.34], [1748.65, 1585.7], [1777.91, 1613.62], [1828.63, 1662.17], [1833.24, 1666.59], [1850.11, 1684.49], [1864.82, 1698.38], [1924.82, 1755.04], [1925.76, 1754.05], [1925.84, 1754.25], [1925.01, 1755.22], [1926.79, 1756.73], [1927.34, 1758.18], [1927.89, 1762.47], [1926.87, 1766.47], [1925.74, 1769.13], [1915.34, 1785.96], [1908.21, 1795.14], [1903.29, 1801.46], [1895.37, 1811.66], [1889.96, 1816.33], [1890.89, 1817.41], [1890.55, 1817.86], [1870.06, 1840.43], [1860.97, 1850.45], [1863.56, 1852.8], [1860.94, 1850.48], [1854.59, 1857.65], [1841.92, 1871.95], [1824.51, 1897.42], [1823.15, 1899.4], [1820.79, 1896.93], [1811.26, 1906.06], [1800.44, 1914.92], [1795.03, 1920.23], [1787.76, 1926.6], [1762.1, 1949.06], [1764.11, 1951.36], [1762.43, 1951.78], [1760.69, 1950.74], [1759.67, 1952.46], [1752.4, 1954.25], [1739.82, 1965.64], [1734.12, 1970.79], [1730.6, 1967.73], [1705.73, 1948.15], [1693.36, 1938.07], [1670.88, 1917.77], [1667.44, 1914.65], [1665.13, 1912.7], [1644.0, 1894.67], [1639.45, 1891.25], [1637.36, 1894.03], [1627.93, 1885.11], [1626.38, 1883.84], [1620.33, 1879.34], [1619.12, 1878.43], [1616.26, 1876.05], [1609.01, 1870.01], [1534.74, 1809.42], [1498.32, 1780.33], [1489.59, 1773.58], [1457.25, 1744.31], [1435.22, 1724.47], [1412.01, 1703.15], [1323.54, 1622.97], [1315.25, 1615.84], [1317.84, 1613.01], [1320.18, 1610.4]], [[1480.89, 1327.01], [1473.13, 1320.24], [1426.56, 1279.39], [1400.91, 1256.88], [1392.27, 1249.31], [1389.7, 1247.06], [1383.98, 1242.04], [1389.13, 1236.14], [1395.11, 1241.49], [1527.58, 1360.07], [1533.82, 1365.65], [1529.99, 1370.04], [1523.37, 1364.24], [1480.89, 1327.01]], [[1402.11, 1233.67], [1397.05, 1229.13], [1402.41, 1223.26], [1404.75, 1220.69], [1415.83, 1208.54], [1440.19, 1181.83], [1466.84, 1152.62], [1476.52, 1142.0], [1505.84, 1109.84], [1514.35, 1100.52], [1520.92, 1092.95], [1528.34, 1085.18], [1529.97, 1083.54], [1534.68, 1078.5], [1540.73, 1072.08], [1545.44, 1067.13], [1548.85, 1063.21], [1559.79, 1051.05], [1574.23, 1034.97], [1591.49, 1015.77], [1603.39, 1002.53], [1606.59, 999.04], [1611.01, 994.21], [1613.54, 996.6], [1659.22, 1039.78], [1654.9, 1044.36], [1625.05, 1076.07], [1623.29, 1079.4], [1623.0, 1083.42], [1624.43, 1086.71], [1626.62, 1089.31], [1655.36, 1115.65], [1662.79, 1122.42], [1684.98, 1142.63], [1708.39, 1164.07], [1713.01, 1168.27], [1710.76, 1170.73], [1697.89, 1184.81], [1693.11, 1189.87], [1685.24, 1198.21], [1682.71, 1201.07], [1670.17, 1215.28], [1660.74, 1225.95], [1638.29, 1250.65], [1624.81, 1265.49], [1621.47, 1269.17], [1617.13, 1265.1], [1615.15, 1263.25], [1600.42, 1249.46], [1597.9, 1247.18], [1593.88, 1251.63], [1596.36, 1253.88], [1611.04, 1267.63], [1613.03, 1269.48], [1617.45, 1273.62], [1612.65, 1278.94], [1606.77, 1285.45], [1605.4, 1286.98], [1576.68, 1318.81], [1571.71, 1324.31], [1568.53, 1327.76], [1563.55, 1333.17], [1546.76, 1351.41], [1544.85, 1353.39], [1540.81, 1357.82], [1534.58, 1352.24], [1402.11, 1233.67]], [[1381.92, 1215.53], [1250.55, 1097.2], [1236.23, 1084.35], [1102.26, 963.65], [1097.12, 959.02], [1102.74, 952.67], [1136.94, 914.06], [1146.75, 902.98], [1155.96, 893.45], [1170.7, 877.13], [1177.15, 870.01], [1174.55, 867.66], [1177.15, 870.0], [1181.39, 865.3], [1206.96, 837.01], [1220.24, 822.31], [1239.53, 800.95], [1242.52, 797.65], [1245.02, 794.89], [1253.42, 785.61], [1288.65, 746.59], [1291.35, 743.59], [1299.71, 734.35], [1303.42, 730.24], [1305.92, 727.48], [1310.35, 722.57], [1314.58, 726.4], [1317.31, 728.87], [1384.65, 789.91], [1392.21, 796.76], [1394.99, 799.28], [1407.96, 811.04], [1436.18, 836.66], [1440.27, 840.3], [1452.8, 851.46], [1457.78, 856.19], [1459.85, 854.01], [1457.85, 856.25], [1464.53, 862.22], [1486.14, 881.67], [1505.19, 898.84], [1525.98, 917.54], [1546.04, 935.59], [1569.53, 956.72], [1581.97, 967.91], [1600.09, 984.21], [1603.29, 987.1], [1598.84, 991.95], [1595.61, 995.48], [1583.68, 1008.75], [1566.42, 1027.95], [1551.98, 1044.03], [1540.99, 1056.25], [1537.67, 1060.06], [1533.11, 1064.86], [1527.03, 1071.32], [1522.41, 1076.26], [1520.82, 1077.86], [1513.16, 1085.88], [1506.51, 1093.53], [1498.09, 1102.76], [1468.76, 1134.92], [1459.08, 1145.54], [1432.43, 1174.76], [1408.08, 1201.46], [1396.99, 1213.61], [1394.65, 1216.18], [1389.24, 1222.12], [1384.65, 1217.99], [1381.92, 1215.53]], [[1482.13, 833.48], [1488.12, 826.82], [1489.67, 825.1], [1499.32, 814.38], [1503.39, 809.87], [1522.61, 788.46], [1526.27, 784.43], [1530.27, 787.97], [1552.77, 807.49], [1554.49, 809.02], [1555.81, 810.22], [1567.95, 821.08], [1569.39, 822.38], [1572.7, 825.34], [1605.03, 854.26], [1614.02, 862.35], [1622.41, 869.87], [1629.75, 876.49], [1666.56, 910.34], [1670.85, 914.22], [1665.51, 919.74], [1664.69, 920.58], [1648.47, 938.87], [1638.4, 950.21], [1632.74, 956.61], [1611.95, 980.04], [1608.61, 983.81], [1604.1, 979.75], [1585.98, 963.45], [1573.54, 952.26], [1550.06, 931.13], [1529.99, 913.08], [1509.21, 894.38], [1490.15, 877.21], [1468.54, 857.76], [1464.13, 853.82], [1467.53, 850.17], [1479.58, 836.3], [1482.13, 833.48]], [[1498.14, 749.06], [1439.25, 694.82], [1431.57, 688.28], [1425.99, 682.98], [1425.4, 682.42], [1413.89, 672.07], [1411.14, 669.53], [1396.17, 655.7], [1395.67, 655.24], [1394.13, 653.77], [1387.73, 647.91], [1382.29, 642.95], [1386.1, 638.73], [1405.33, 617.45], [1405.56, 617.2], [1412.98, 608.98], [1413.87, 608.0], [1439.99, 579.03], [1444.06, 574.52], [1448.35, 578.34], [1471.95, 599.27], [1486.44, 612.12], [1503.1, 626.9], [1584.97, 701.69], [1589.02, 705.27], [1585.21, 709.93], [1529.99, 771.35], [1526.46, 775.28], [1522.26, 771.61], [1498.14, 749.06]], [[1508.69, 503.06], [1512.95, 498.34], [1518.67, 503.55], [1653.39, 626.23], [1657.96, 630.38], [1653.3, 635.22], [1628.72, 660.76], [1598.68, 694.43], [1593.6, 699.97], [1589.65, 696.48], [1507.79, 621.7], [1491.09, 606.88], [1476.6, 594.03], [1453.0, 573.1], [1448.76, 569.33], [1453.75, 563.85], [1508.69, 503.06]], [[58.42, 610.81], [54.99, 607.65], [58.05, 604.4], [59.7, 602.57], [113.41, 542.72], [114.6, 541.4], [116.23, 539.58], [120.5, 543.45], [147.9, 568.3], [218.57, 632.35], [255.8, 666.09], [260.44, 670.29], [258.93, 671.94], [257.66, 673.34], [203.58, 732.82], [202.13, 734.38], [198.19, 738.3], [193.66, 733.98], [161.92, 705.39], [58.42, 610.81]], [[47.96, 463.35], [50.14, 460.95], [50.93, 460.09], [69.73, 439.39], [140.0, 362.02], [153.99, 346.6], [173.45, 325.17], [173.97, 324.75], [175.66, 325.16], [177.79, 325.08], [179.82, 324.42], [181.09, 323.56], [182.42, 324.7], [222.24, 361.27], [241.17, 378.66], [243.11, 380.45], [246.24, 383.32], [242.76, 387.34], [193.4, 442.97], [182.62, 455.13], [181.62, 456.24], [175.61, 462.93], [167.34, 472.13], [148.44, 493.21], [120.11, 524.68], [118.02, 527.04], [114.05, 523.43], [52.6, 467.56], [47.96, 463.35]], [[135.55, 357.99], [65.29, 435.35], [46.49, 456.05], [45.7, 456.92], [43.52, 459.32], [39.34, 455.53], [-6.7, 413.12], [-13.16, 407.13], [-11.54, 405.38], [24.02, 366.85], [70.04, 316.97], [110.84, 274.17], [114.07, 270.84], [117.67, 266.86], [122.23, 270.94], [168.68, 313.06], [169.62, 313.95], [168.9, 315.85], [168.74, 318.03], [169.19, 320.14], [169.48, 320.67], [169.3, 320.82], [149.55, 342.57], [135.55, 357.99]], [[122.43, 261.73], [126.07, 257.9], [165.04, 214.03], [167.3, 211.57], [193.13, 183.59], [194.95, 181.63], [197.94, 178.38], [202.48, 182.39], [248.89, 223.83], [253.78, 228.06], [250.12, 231.9], [235.72, 246.96], [182.33, 306.68], [181.26, 307.89], [179.25, 310.39], [178.7, 310.14], [176.64, 309.81], [175.55, 309.93], [173.44, 307.92], [126.91, 265.74], [122.43, 261.73]], [[240.13, 251.03], [254.45, 236.05], [259.16, 231.13], [263.38, 234.93], [309.65, 276.35], [320.31, 285.74], [327.74, 292.5], [323.52, 296.98], [305.77, 317.15], [301.24, 322.19], [296.95, 326.97], [283.79, 341.63], [269.81, 357.22], [254.47, 373.59], [250.55, 377.78], [247.86, 375.3], [245.91, 373.51], [226.97, 356.12], [187.07, 319.47], [184.06, 316.87], [183.94, 315.77], [183.53, 314.65], [185.84, 311.76], [186.8, 310.68], [240.13, 251.03]], [[366.66, 300.05], [363.15, 303.95], [395.39, 333.01], [399.98, 337.16], [420.64, 355.77], [423.25, 358.13], [460.05, 391.29], [483.63, 412.55], [489.81, 418.12], [483.81, 425.1], [478.16, 419.93], [470.96, 413.35], [396.69, 344.08], [371.09, 320.21], [339.71, 290.95], [344.59, 286.06], [363.23, 303.68], [366.66, 300.05]], [[366.46, 267.43], [363.96, 273.64], [362.89, 276.82], [361.16, 282.77], [360.86, 287.68], [351.52, 278.86], [355.11, 274.98], [372.49, 257.39], [366.46, 267.43]], [[368.1, 283.98], [369.58, 278.91], [370.53, 276.06], [372.74, 270.57], [378.54, 260.91], [385.66, 248.53], [390.25, 239.51], [392.89, 241.68], [399.67, 233.46], [400.7, 232.35], [406.22, 226.08], [427.62, 202.47], [430.47, 198.86], [431.73, 200.1], [434.09, 202.32], [454.33, 220.49], [456.5, 222.37], [463.58, 228.77], [466.18, 231.06], [499.74, 260.97], [533.17, 291.7], [568.1, 322.6], [573.0, 327.14], [568.61, 331.33], [566.9, 333.3], [537.84, 366.89], [534.36, 370.9], [533.25, 372.27], [530.98, 374.64], [501.69, 405.14], [499.22, 407.75], [496.97, 410.44], [490.66, 404.75], [467.08, 383.5], [430.29, 350.33], [427.67, 347.97], [407.02, 329.36], [402.42, 325.21], [370.18, 296.15], [370.01, 296.33], [368.86, 295.25], [368.38, 293.65], [367.79, 289.04], [368.1, 283.98]], [[503.77, 256.53], [470.16, 226.57], [467.57, 224.29], [460.48, 217.87], [458.29, 215.98], [438.15, 197.91], [435.89, 195.77], [434.28, 194.2], [439.67, 187.93], [463.66, 161.86], [487.91, 135.09], [494.53, 127.9], [498.49, 123.61], [499.37, 124.38], [501.82, 126.66], [522.98, 146.3], [546.34, 167.99], [558.95, 179.69], [576.94, 195.54], [632.66, 248.09], [635.16, 250.45], [640.29, 255.33], [584.13, 315.99], [582.9, 317.46], [577.32, 322.96], [572.13, 318.15], [537.19, 287.24], [503.77, 256.53]], [[575.78, 33.94], [577.96, 30.37], [580.44, 23.36], [588.56, 25.43], [590.84, 26.06], [635.06, 37.67], [641.3, 39.2], [687.45, 51.76], [694.65, 54.26], [701.68, 57.23], [707.2, 59.93], [712.45, 63.04], [717.47, 66.17], [722.13, 69.62], [725.95, 72.71], [747.99, 92.85], [763.1, 106.86], [767.77, 111.22], [764.09, 114.16], [742.31, 137.58], [713.63, 168.95], [712.21, 170.64], [706.38, 179.56], [700.14, 186.96], [690.19, 198.87], [683.58, 206.57], [662.84, 229.97], [644.31, 250.88], [639.28, 246.1], [636.78, 243.73], [580.98, 191.1], [562.98, 175.24], [550.42, 163.59], [527.06, 141.9], [505.91, 122.26], [503.39, 119.92], [502.51, 119.15], [537.88, 79.06], [559.85, 55.26], [575.78, 33.94]], [[544.93, 8.34], [538.58, 6.25], [531.16, 3.17], [521.47, -1.66], [516.18, -4.85], [511.1, -8.45], [494.67, -21.13], [490.08, -24.79], [492.75, -27.71], [497.17, -23.77], [501.63, -20.27], [506.39, -17.08], [511.02, -14.4], [516.53, -11.53], [520.41, -9.66], [524.41, -7.93], [529.51, -6.01], [534.58, -4.22], [541.59, -2.04], [548.58, -0.03], [551.0, 0.6], [564.22, 3.27], [568.71, 13.28], [562.56, 11.84], [550.3, 9.83], [544.93, 8.34]], [[569.11, -20.16], [567.93, -28.1], [555.28, -50.05], [490.33, -134.66], [430.18, -200.99], [366.53, -264.77], [279.96, -347.29], [69.51, -558.43], [46.49, -581.47], [5.85, -621.1], [-39.66, -669.58], [-97.04, -729.97], [-147.36, -788.73], [-158.84, -802.13], [-173.73, -821.59], [-176.11, -824.91], [-173.09, -824.09], [-160.18, -812.26], [-148.85, -801.89], [-146.66, -798.07], [-145.44, -798.76], [-145.21, -798.55], [-147.73, -796.54], [-129.79, -773.97], [-96.16, -733.85], [-67.6, -702.11], [-37.41, -674.17], [-8.89, -645.75], [0.41, -636.21], [19.9, -615.28], [48.55, -584.42], [71.44, -560.19], [168.57, -464.74], [282.1, -349.13], [369.83, -270.6], [398.87, -242.41], [424.98, -215.39], [534.57, -85.82], [569.98, -43.67], [571.28, -44.76], [578.13, -33.0], [581.21, -25.81], [582.55, -21.61], [582.91, -20.44], [583.77, -17.76], [584.93, -12.78], [584.95, -10.89], [584.97, -8.16], [584.57, -5.36], [584.4, -4.43], [583.98, -2.42], [583.19, 1.49], [579.39, 0.4], [571.44, -2.01], [567.68, -10.59], [567.88, -11.32], [569.11, -20.16]], [[-192.77, 448.23], [-195.86, 451.56], [-225.94, 484.02], [-225.97, 484.05], [-227.17, 484.77], [-228.66, 485.01], [-229.71, 484.91], [-232.99, 483.07], [-242.62, 474.37], [-252.69, 465.25], [-255.0, 463.16], [-261.31, 457.46], [-276.05, 444.12], [-278.27, 442.11], [-279.15, 441.31], [-294.59, 427.36], [-307.19, 415.96], [-314.48, 409.37], [-318.26, 405.95], [-325.06, 399.79], [-346.03, 380.83], [-346.9, 380.03], [-369.1, 359.96], [-372.1, 357.24], [-369.37, 354.35], [-349.55, 332.73], [-329.32, 310.05], [-326.94, 307.42], [-314.51, 293.67], [-313.02, 292.03], [-308.83, 287.39], [-304.66, 291.14], [-256.17, 334.9], [-248.21, 342.08], [-213.9, 373.06], [-202.14, 383.66], [-184.65, 399.43], [-168.08, 414.4], [-164.49, 417.64], [-168.53, 422.02], [-169.91, 423.51], [-171.16, 424.86], [-192.77, 448.23]], [[-279.71, 255.18], [-272.97, 247.73], [-247.49, 219.57], [-244.89, 216.68], [-244.02, 215.72], [-239.78, 219.59], [-224.12, 233.9], [-222.02, 235.8], [-211.04, 245.83], [-210.31, 246.5], [-196.28, 259.31], [-195.07, 260.41], [-178.2, 275.82], [-165.82, 287.13], [-155.82, 296.26], [-141.39, 309.44], [-134.25, 314.88], [-120.75, 326.51], [-117.48, 329.28], [-108.4, 337.81], [-99.47, 347.36], [-104.71, 353.02], [-130.16, 380.53], [-149.21, 401.12], [-154.24, 406.57], [-156.63, 409.15], [-159.73, 412.5], [-163.39, 409.2], [-179.96, 394.24], [-197.45, 378.46], [-209.21, 367.86], [-243.52, 336.88], [-251.48, 329.71], [-299.97, 285.94], [-304.13, 282.2], [-300.9, 278.62], [-298.68, 276.16], [-283.94, 259.86], [-279.71, 255.18]], [[-274.19, 169.21], [-274.58, 168.85], [-278.04, 165.71], [-320.11, 127.31], [-326.36, 121.5], [-320.39, 114.8], [-317.73, 110.47], [-316.42, 106.16], [-315.82, 101.81], [-315.82, 101.78], [-314.49, 103.01], [-281.86, 67.57], [-285.06, 64.62], [-280.49, 64.1], [-275.5, 61.93], [-271.37, 59.01], [-268.27, 55.67], [-261.31, 61.84], [-234.76, 86.12], [-232.24, 88.37], [-226.22, 93.93], [-222.79, 97.07], [-219.41, 100.15], [-206.11, 112.31], [-184.62, 131.96], [-180.78, 135.46], [-183.21, 138.01], [-185.41, 140.46], [-209.84, 167.48], [-227.11, 186.58], [-237.58, 198.16], [-239.27, 200.03], [-239.8, 200.61], [-243.61, 197.14], [-260.78, 181.45], [-267.07, 175.72], [-274.19, 169.21]], [[-238.43, 1.09], [-235.65, -1.94], [-228.41, -9.87], [-225.12, -12.4], [-220.69, -14.3], [-215.6, -15.38], [-215.83, -10.81], [-217.31, -6.26], [-219.53, -2.49], [-240.52, 20.18], [-243.49, 23.39], [-261.58, 42.92], [-263.9, 45.43], [-271.92, 37.73], [-269.83, 35.44], [-241.48, 4.43], [-238.43, 1.09]], [[-238.23, -4.31], [-241.01, -1.27], [-244.07, 2.07], [-272.41, 33.08], [-274.5, 35.36], [-281.5, 29.18], [-293.24, 18.44], [-357.84, -40.59], [-360.11, -42.66], [-358.01, -43.9], [-336.93, -67.49], [-332.84, -74.53], [-338.89, -78.05], [-342.63, -71.62], [-362.5, -49.38], [-365.47, -47.63], [-370.89, -52.78], [-395.93, -76.33], [-408.13, -87.36], [-417.43, -95.77], [-419.43, -97.76], [-420.95, -99.57], [-422.23, -101.44], [-423.46, -103.79], [-424.45, -106.1], [-425.16, -110.65], [-425.18, -113.02], [-424.83, -116.71], [-423.56, -120.04], [-422.12, -122.86], [-420.18, -125.88], [-417.31, -129.78], [-411.77, -136.05], [-376.45, -173.72], [-372.51, -177.79], [-370.75, -176.28], [-340.57, -149.97], [-335.97, -155.25], [-366.17, -181.57], [-369.0, -184.0], [-365.53, -187.69], [-345.18, -210.3], [-337.61, -218.63], [-331.74, -225.4], [-323.65, -234.72], [-296.83, -265.35], [-286.52, -277.13], [-282.3, -273.27], [-263.25, -255.87], [-238.41, -233.3], [-221.14, -217.61], [-210.8, -208.22], [-217.57, -200.46], [-248.54, -166.87], [-281.49, -130.74], [-283.14, -128.85], [-281.97, -127.83], [-283.42, -127.23], [-283.91, -127.35], [-283.99, -126.99], [-289.22, -124.83], [-295.75, -121.32], [-305.26, -115.92], [-294.94, -110.86], [-289.22, -108.33], [-282.99, -106.45], [-282.85, -106.07], [-282.34, -106.26], [-280.83, -105.8], [-281.87, -104.62], [-209.69, -40.8], [-202.62, -34.11], [-212.06, -24.4], [-216.27, -19.98], [-215.27, -19.03], [-221.75, -17.65], [-226.91, -15.44], [-230.78, -12.45], [-238.23, -4.31]], [[-276.27, -126.07], [-243.38, -162.14], [-212.35, -195.79], [-203.33, -206.14], [-195.22, -214.61], [-155.82, -258.61], [-141.94, -273.51], [-130.97, -285.26], [-126.92, -287.57], [-122.32, -288.59], [-118.52, -288.32], [-114.9, -286.24], [-43.42, -222.42], [-34.3, -214.27], [-25.98, -206.22], [45.73, -142.35], [46.87, -139.46], [47.72, -135.89], [48.08, -133.01], [47.88, -129.45], [47.27, -127.12], [46.01, -125.32], [-18.09, -54.29], [-26.23, -44.92], [-35.31, -35.47], [-99.37, 34.79], [-99.99, 35.03], [-102.66, 36.26], [-106.41, 36.93], [-110.49, 36.7], [-113.74, 35.83], [-115.76, 34.97], [-186.43, -28.97], [-195.28, -36.8], [-204.96, -45.96], [-276.56, -109.27], [-278.36, -114.35], [-278.5, -119.77], [-277.3, -124.9], [-276.27, -126.07]], [[-277.58, -278.44], [-281.49, -282.02], [-271.39, -293.13], [-237.34, -330.57], [-228.7, -340.07], [-202.14, -369.28], [-198.82, -372.93], [-196.75, -369.22], [-194.19, -365.49], [-162.59, -336.53], [-150.03, -325.44], [-146.2, -322.88], [-141.15, -322.19], [-135.66, -322.53], [-132.31, -322.66], [-127.78, -322.91], [-126.89, -306.73], [-126.24, -294.89], [-129.46, -294.18], [-135.36, -290.81], [-147.06, -278.28], [-160.99, -263.33], [-200.35, -219.36], [-206.08, -213.39], [-216.43, -222.79], [-233.7, -238.48], [-258.53, -261.05], [-277.58, -278.44]], [[-277.3, -298.51], [-286.27, -288.65], [-291.13, -292.92], [-294.45, -295.81], [-304.82, -304.65], [-304.78, -308.27], [-305.99, -311.86], [-308.05, -314.97], [-320.52, -326.14], [-332.37, -336.75], [-347.96, -350.69], [-353.39, -355.55], [-348.24, -361.15], [-277.03, -438.77], [-272.78, -443.39], [-267.47, -438.4], [-229.37, -402.9], [-207.64, -382.94], [-203.92, -379.2], [-208.06, -374.66], [-234.62, -345.45], [-243.26, -335.95], [-277.3, -298.51]], [[-210.19, -511.59], [-206.15, -516.0], [-201.55, -511.72], [-199.15, -509.5], [-144.97, -459.95], [-139.63, -451.44], [-136.44, -446.39], [-138.78, -445.8], [-143.49, -443.68], [-148.19, -440.48], [-173.25, -413.56], [-196.1, -387.81], [-199.21, -384.39], [-202.79, -387.98], [-224.62, -408.04], [-262.69, -443.51], [-268.05, -448.55], [-264.9, -451.98], [-230.27, -489.72], [-211.59, -510.07], [-210.19, -511.59]], [[-87.38, -406.83], [-66.47, -387.64], [-60.19, -382.01], [-63.09, -377.32], [-104.84, -331.72], [-106.44, -330.54], [-108.47, -329.97], [-115.03, -329.61], [-118.17, -329.46], [-121.12, -329.3], [-121.38, -334.22], [-121.63, -338.68], [-124.18, -385.21], [-124.46, -390.44], [-126.61, -429.6], [-127.08, -438.12], [-124.34, -437.48], [-122.33, -436.63], [-94.38, -413.25], [-87.38, -406.83]], [[6.47, -449.01], [7.9, -450.57], [10.66, -453.58], [14.62, -450.07], [26.16, -439.64], [88.0, -381.87], [94.57, -376.13], [102.06, -369.56], [99.89, -366.95], [98.76, -365.63], [71.74, -335.8], [44.06, -305.96], [41.66, -303.3], [34.14, -309.99], [-46.03, -383.22], [-50.05, -386.96], [-48.06, -390.13], [-45.77, -392.55], [-19.98, -420.18], [6.47, -449.01]], [[-380.31, -550.22], [-401.65, -569.81], [-409.98, -577.45], [-411.94, -579.24], [-417.55, -584.21], [-415.34, -587.68], [-359.38, -648.12], [-355.25, -652.69], [-352.52, -650.27], [-349.86, -647.85], [-324.37, -624.47], [-307.12, -608.82], [-291.35, -594.24], [-282.39, -585.96], [-281.82, -585.43], [-273.97, -578.25], [-267.84, -572.62], [-247.82, -554.26], [-217.07, -526.05], [-214.92, -524.09], [-210.55, -520.08], [-214.62, -515.65], [-216.01, -514.13], [-234.69, -493.78], [-269.32, -456.04], [-272.5, -452.57], [-276.31, -455.86], [-329.2, -503.59], [-341.2, -514.54], [-374.82, -545.18], [-380.31, -550.22]], [[-269.91, -582.67], [-277.75, -589.84], [-278.31, -590.37], [-287.28, -598.65], [-303.07, -613.25], [-320.33, -628.9], [-345.82, -652.28], [-348.51, -654.73], [-348.62, -654.83], [-343.08, -661.04], [-289.08, -717.28], [-283.73, -722.54], [-281.89, -720.8], [-265.85, -706.29], [-267.24, -704.85], [-256.68, -694.65], [-245.9, -684.85], [-230.73, -671.07], [-221.27, -662.44], [-189.96, -633.98], [-153.15, -600.47], [-142.56, -590.86], [-150.18, -585.61], [-163.38, -571.28], [-187.18, -545.45], [-201.68, -529.71], [-206.49, -524.49], [-210.87, -528.51], [-213.01, -530.47], [-243.77, -558.68], [-263.78, -577.04], [-269.91, -582.67]], [[-284.98, -122.8], [-285.52, -120.5], [-285.33, -113.06], [-284.44, -110.55], [-288.0, -111.62], [-293.46, -114.03], [-297.78, -116.15], [-294.06, -118.26], [-287.72, -121.66], [-284.98, -122.8]], [[-466.48, -453.18], [-481.85, -467.18], [-486.62, -471.52], [-499.15, -482.93], [-503.87, -487.23], [-494.74, -497.25], [-475.62, -518.22], [-458.95, -536.51], [-439.61, -557.72], [-425.04, -573.71], [-421.56, -578.42], [-416.62, -574.04], [-414.71, -572.29], [-406.39, -564.65], [-385.04, -545.06], [-379.54, -540.01], [-345.92, -509.37], [-333.9, -498.41], [-280.95, -450.61], [-277.24, -447.41], [-281.45, -442.82], [-352.66, -365.21], [-357.86, -359.55], [-361.46, -362.78], [-371.49, -371.75], [-375.08, -373.11], [-378.4, -373.4], [-381.01, -373.25], [-395.72, -387.62], [-413.89, -403.97], [-418.22, -407.81], [-420.18, -409.53], [-444.64, -432.23], [-465.62, -452.4], [-466.48, -453.18]], [[-271.09, -718.78], [-270.07, -715.68], [-269.94, -715.38], [-279.17, -723.74], [-283.03, -727.39], [-280.41, -729.9], [-270.43, -739.86], [-271.08, -738.32], [-272.14, -734.38], [-272.6, -730.96], [-272.62, -728.55], [-272.53, -725.57], [-271.94, -721.87], [-271.09, -718.78]], [[-371.52, -333.17], [-365.48, -341.68], [-360.43, -337.03], [-321.58, -301.31], [-318.65, -299.83], [-315.65, -299.1], [-313.62, -299.09], [-313.98, -298.67], [-301.3, -287.85], [-298.03, -285.01], [-292.88, -280.49], [-302.1, -269.96], [-328.93, -239.32], [-337.03, -229.98], [-342.85, -223.28], [-350.37, -215.0], [-370.68, -192.43], [-374.25, -188.63], [-379.39, -193.26], [-440.27, -248.17], [-444.93, -252.39], [-440.98, -256.15], [-436.39, -261.25], [-418.9, -280.63], [-413.42, -286.72], [-407.04, -293.79], [-394.75, -307.41], [-383.85, -319.51], [-371.52, -333.17]], [[-316.21, -306.44], [-317.55, -307.12], [-355.69, -342.18], [-361.09, -347.15], [-360.49, -347.81], [-354.96, -342.86], [-339.38, -328.92], [-327.52, -318.32], [-316.06, -308.05], [-315.5, -307.21], [-315.3, -306.61], [-315.3, -306.22], [-316.21, -306.44]], [[-364.96, -351.81], [-365.51, -351.22], [-369.03, -354.45], [-378.15, -362.84], [-377.43, -362.78], [-377.03, -362.62], [-368.47, -354.96], [-364.96, -351.81]], [[-284.0, 179.22], [-283.61, 179.57], [-276.51, 186.06], [-270.22, 191.8], [-253.05, 207.48], [-249.19, 211.0], [-250.08, 211.99], [-252.69, 214.87], [-278.16, 243.04], [-284.9, 250.49], [-289.13, 255.16], [-303.87, 271.47], [-306.09, 273.93], [-309.33, 277.51], [-313.27, 273.96], [-357.58, 233.96], [-359.67, 232.08], [-390.13, 204.59], [-398.71, 196.85], [-395.55, 193.33], [-381.86, 178.08], [-340.12, 131.56], [-338.29, 129.53], [-329.6, 137.61], [-287.47, 176.05], [-284.0, 179.22]], [[-288.51, 36.99], [-281.77, 42.95], [-285.06, 46.55], [-287.98, 51.61], [-289.26, 57.22], [-289.1, 60.91], [-292.16, 58.09], [-324.79, 93.53], [-323.19, 95.0], [-323.68, 95.03], [-328.39, 96.26], [-332.65, 98.76], [-335.88, 101.55], [-341.45, 107.67], [-347.69, 102.03], [-424.62, 32.99], [-428.35, 29.62], [-427.5, 28.69], [-406.11, 5.2], [-391.63, -10.68], [-371.61, -32.67], [-368.49, -36.1], [-364.92, -32.84], [-300.33, 26.19], [-288.51, 36.99]], [[-281.82, 48.92], [-278.83, 45.66], [-271.21, 52.96], [-274.02, 55.99], [-277.47, 58.42], [-281.54, 60.2], [-285.11, 60.6], [-285.24, 57.58], [-284.21, 53.08], [-281.82, 48.92]], [[-392.28, 168.73], [-405.97, 183.98], [-409.11, 187.47], [-412.97, 183.97], [-417.92, 179.49], [-446.82, 153.36], [-455.31, 145.68], [-458.93, 142.4], [-462.15, 139.49], [-465.75, 136.24], [-494.54, 110.22], [-498.49, 106.63], [-495.41, 103.26], [-493.44, 101.08], [-484.1, 90.84], [-454.56, 58.41], [-452.0, 55.6], [-439.56, 41.93], [-437.78, 39.97], [-433.99, 43.4], [-357.06, 112.43], [-348.61, 120.07], [-350.53, 122.21], [-392.28, 168.73]], [[-324.16, 107.57], [-326.03, 110.6], [-330.09, 115.16], [-332.88, 115.44], [-333.97, 114.43], [-335.08, 115.62], [-335.07, 115.5], [-334.05, 114.36], [-334.99, 113.5], [-334.89, 110.86], [-330.99, 106.58], [-328.56, 104.47], [-325.69, 102.79], [-322.92, 102.07], [-323.28, 104.66], [-324.16, 107.57]], [[-422.91, 217.54], [-422.68, 217.54], [-420.06, 216.84], [-417.5, 215.61], [-414.84, 213.89], [-411.14, 210.69], [-406.62, 206.37], [-405.47, 200.18], [-394.82, 209.79], [-364.36, 237.27], [-362.27, 239.16], [-317.96, 279.16], [-314.03, 282.7], [-318.22, 287.34], [-319.7, 288.98], [-332.13, 302.73], [-334.53, 305.37], [-354.74, 328.03], [-374.49, 349.58], [-377.3, 352.55], [-382.75, 347.62], [-400.03, 331.99], [-402.02, 330.18], [-403.11, 329.2], [-403.92, 328.46], [-425.39, 309.04], [-455.83, 281.51], [-457.84, 279.69], [-468.86, 269.72], [-465.17, 265.64], [-452.9, 252.07], [-449.66, 248.48], [-443.63, 241.81], [-439.14, 236.85], [-429.34, 226.01], [-422.24, 218.15], [-422.91, 217.54]], [[-421.28, 213.55], [-421.38, 213.57], [-421.23, 212.73], [-420.64, 211.07], [-419.53, 209.1], [-417.67, 206.35], [-413.71, 201.53], [-408.93, 199.61], [-409.85, 204.62], [-413.5, 208.11], [-416.94, 211.09], [-419.21, 212.55], [-421.28, 213.55]], [[-134.56, -454.64], [-140.33, -463.82], [-195.09, -513.91], [-197.46, -516.12], [-202.08, -520.42], [-197.27, -525.65], [-182.77, -541.39], [-158.97, -567.21], [-146.23, -581.05], [-140.16, -585.22], [-139.63, -571.43], [-137.13, -530.75], [-133.08, -462.96], [-133.37, -456.4], [-133.54, -453.54], [-133.58, -453.1], [-134.56, -454.64]], [[-91.69, -544.79], [-43.76, -502.07], [-34.56, -493.88], [-30.55, -490.31], [-21.26, -480.94], [-13.78, -474.27], [-9.14, -471.23], [-1.7, -464.6], [1.95, -461.34], [6.18, -457.57], [3.49, -454.63], [2.06, -453.08], [-24.38, -424.26], [-50.15, -396.65], [-52.83, -393.82], [-54.56, -391.06], [-59.41, -395.42], [-80.28, -414.56], [-87.46, -421.15], [-116.8, -445.7], [-121.09, -447.5], [-126.37, -448.74], [-126.91, -448.71], [-126.56, -453.05], [-126.38, -456.03], [-126.07, -463.02], [-130.14, -531.17], [-132.63, -571.78], [-133.04, -582.12], [-129.55, -578.53], [-103.28, -555.13], [-91.69, -544.79]], [[366.64, -3075.2], [375.39, -3068.42], [383.97, -3061.19], [388.85, -3055.98], [393.07, -3051.09], [396.14, -3045.92], [398.35, -3033.05], [402.27, -3015.22], [399.67, -3010.3], [363.8, -2942.39], [354.55, -2924.89], [342.62, -2896.72], [332.38, -2866.95], [317.69, -2818.75], [322.66, -2817.23], [322.63, -2817.18], [319.32, -2818.08], [316.09, -2806.2], [312.67, -2800.47], [302.54, -2786.19], [296.37, -2780.3], [287.75, -2772.09], [272.93, -2762.12], [252.53, -2755.09], [243.46, -2751.18], [231.5, -2741.69], [226.67, -2735.21], [222.15, -2731.83], [223.16, -2730.49], [223.03, -2730.33], [219.46, -2734.14], [207.41, -2722.85], [174.33, -2690.29], [162.36, -2679.63], [158.39, -2676.07], [146.47, -2666.62], [143.5, -2664.72], [125.13, -2653.0], [94.55, -2636.49], [72.61, -2626.95], [66.59, -2624.32], [65.17, -2623.8], [55.88, -2620.38], [52.18, -2630.07], [48.46, -2638.84], [46.26, -2644.06], [40.14, -2661.96], [34.85, -2675.41], [29.92, -2699.64], [28.3, -2717.55], [33.28, -2756.88], [39.54, -2806.26], [38.62, -2830.07], [35.81, -2851.64], [21.03, -2894.25], [-0.2, -2935.73], [-24.68, -2976.08], [-61.16, -3017.31], [-68.06, -3021.47], [-69.88, -3077.19], [-69.84, -3089.5], [22.09, -3093.41], [69.39, -3095.42], [131.69, -3098.93], [136.95, -3099.22], [177.97, -3098.91], [236.76, -3094.48], [253.75, -3092.79], [266.34, -3090.97], [289.07, -3087.57], [299.89, -3085.96], [357.72, -3076.45], [366.35, -3074.13], [366.64, -3075.2]], [[16.42, -2211.62], [8.09, -2211.38], [85.2, -2328.31], [145.22, -2411.14], [156.8, -2427.35], [204.49, -2492.63], [221.58, -2519.63], [237.74, -2547.54], [249.31, -2570.66], [264.16, -2604.24], [274.38, -2633.46], [269.43, -2635.19], [274.38, -2633.46], [285.09, -2664.08], [290.8, -2682.33], [296.31, -2701.53], [311.6, -2752.6], [319.3, -2751.29], [317.56, -2745.0], [311.27, -2719.05], [295.45, -2665.08], [279.66, -2617.41], [265.19, -2581.82], [249.92, -2550.09], [231.76, -2517.55], [211.11, -2485.82], [162.05, -2421.81], [150.04, -2405.4], [106.28, -2348.33], [61.24, -2281.94], [33.06, -2238.07], [37.48, -2235.23], [31.53, -2238.93], [21.04, -2222.03], [15.09, -2212.45], [16.42, -2211.62]], [[-44.44, -2215.85], [-17.58, -2262.57], [-12.26, -2272.02], [-5.92, -2282.19], [5.15, -2299.94], [34.69, -2347.31], [46.67, -2366.52], [48.58, -2372.37], [48.58, -2382.99], [47.92, -2387.89], [44.73, -2393.84], [41.94, -2397.08], [37.77, -2402.06], [23.82, -2405.34], [-0.38, -2405.33], [-113.15, -2401.52], [-154.27, -2400.13], [-160.39, -2399.92], [-164.9, -2508.03], [-166.48, -2514.48], [-167.2, -2517.42], [-162.18, -2519.79], [-127.15, -2533.18], [-80.35, -2551.63], [-48.43, -2563.88], [-35.26, -2569.08], [14.55, -2588.93], [18.18, -2590.38], [58.06, -2606.27], [69.99, -2610.66], [71.8, -2611.32], [78.2, -2614.11], [100.68, -2623.88], [132.23, -2640.92], [151.03, -2652.92], [154.61, -2655.21], [167.41, -2665.36], [171.68, -2669.18], [183.9, -2680.07], [217.11, -2712.75], [229.04, -2723.92], [226.66, -2726.46], [235.42, -2733.0], [248.2, -2739.83], [260.96, -2743.03], [270.2, -2742.19], [277.96, -2738.86], [282.72, -2733.06], [283.95, -2729.72], [285.11, -2726.55], [285.7, -2718.52], [285.16, -2708.72], [279.68, -2691.12], [269.38, -2655.88], [268.84, -2649.43], [264.47, -2636.93], [254.38, -2608.1], [239.81, -2575.14], [228.49, -2552.53], [212.59, -2525.07], [195.81, -2498.54], [148.29, -2433.5], [136.7, -2417.27], [76.56, -2334.28], [-4.72, -2211.02], [-4.64, -2210.96], [-26.7, -2210.1], [-44.82, -2209.4], [-48.32, -2209.27], [-44.44, -2215.85]], [[-159.87, -1941.84], [-110.61, -2019.5], [-56.06, -2109.41], [-36.08, -2139.52], [-6.04, -2188.02], [-4.37, -2190.67], [4.06, -2205.26], [12.61, -2205.51], [1.84, -2189.16], [-10.28, -2171.31], [-138.24, -1974.6], [-157.16, -1945.99], [-159.87, -1941.84]], [[39.75, -2390.42], [42.12, -2386.01], [42.58, -2382.59], [42.58, -2373.33], [41.19, -2369.08], [29.6, -2350.48], [0.06, -2303.12], [-11.02, -2285.37], [-17.43, -2275.08], [-22.79, -2265.53], [-49.63, -2218.87], [-55.44, -2208.99], [-87.2, -2207.75], [-112.02, -2206.78], [-116.77, -2206.6], [-152.65, -2205.2], [-152.88, -2211.05], [-159.92, -2388.19], [-160.15, -2393.92], [-154.07, -2394.13], [-112.95, -2395.52], [-0.28, -2399.33], [23.12, -2399.34], [34.45, -2396.68], [37.36, -2393.19], [39.75, -2390.42]], [[-101.43, -3041.06], [-75.64, -3069.62], [-74.18, -3025.08], [-101.43, -3041.06]], [[38.1, -2217.07], [40.46, -2213.43], [41.06, -2212.67], [32.28, -2212.22], [31.4, -2212.19], [32.93, -2214.65], [37.15, -2221.44], [38.1, -2217.07]], [[-210.15, -806.67], [-207.93, -803.97], [-210.17, -806.65], [-216.72, -801.18], [-219.54, -798.23], [-221.1, -797.89], [-220.82, -799.13], [-218.22, -802.24], [-216.47, -804.23], [-198.98, -819.48], [-192.95, -823.81], [-190.72, -824.46], [-190.32, -824.41], [-191.99, -822.48], [-197.63, -816.99], [-210.15, -806.67]], [[-184.86, -810.33], [-188.95, -810.67], [-190.7, -810.4], [-195.11, -809.8], [-195.46, -809.7], [-192.96, -811.77], [-186.88, -817.68], [-185.23, -819.6], [-182.17, -815.33], [-175.46, -806.57], [-182.03, -809.48], [-184.86, -810.33]], [[-389.09, -1487.36], [-388.42, -1464.39], [-389.34, -1484.92], [-389.09, -1487.36]], [[-342.67, -1650.08], [-337.77, -1659.59], [-329.56, -1672.67], [-331.99, -1668.64], [-342.67, -1650.08]], [[-195.31, -831.45], [-196.52, -831.1], [-203.95, -825.75], [-209.74, -820.71], [-205.53, -829.14], [-203.05, -833.55], [-202.08, -837.96], [-201.7, -841.28], [-195.31, -831.45]], [[-156.78, -815.69], [-155.42, -813.33], [-157.47, -815.21], [-171.1, -827.7], [-175.33, -828.84], [-178.16, -829.53], [-180.06, -829.73], [-180.71, -830.48], [-180.16, -832.01], [-179.1, -836.43], [-179.52, -842.45], [-181.78, -848.29], [-185.32, -855.28], [-187.26, -859.71], [-183.92, -855.62], [-172.26, -838.89], [-156.78, -815.69]], [[50.49, 190.99], [52.17, 189.13], [64.32, 175.66], [68.32, 171.24], [74.12, 164.79], [92.89, 144.0], [99.8, 136.34], [111.34, 123.54], [118.33, 115.81], [120.02, 113.99], [123.83, 109.74], [128.32, 113.89], [152.56, 136.26], [154.74, 138.28], [189.03, 170.22], [193.49, 174.36], [190.54, 177.55], [188.73, 179.52], [162.89, 207.5], [160.59, 210.0], [121.65, 253.84], [117.95, 257.73], [113.59, 253.82], [81.97, 225.1], [52.06, 198.23], [47.68, 194.1], [50.49, 190.99]], [[206.99, 160.08], [200.68, 166.7], [196.18, 162.53], [161.9, 130.6], [159.69, 128.55], [135.45, 106.19], [130.95, 102.01], [134.08, 98.7], [136.16, 96.51], [140.41, 100.42], [202.31, 155.87], [206.99, 160.08]], [[114.11, -27.04], [141.29, -56.68], [143.91, -59.54], [148.6, -55.46], [208.45, -3.34], [213.91, 1.42], [210.26, 5.45], [176.08, 43.79], [163.78, 57.21], [160.5, 60.79], [143.21, 80.3], [141.58, 82.05], [137.72, 86.14], [133.02, 81.97], [70.1, 25.94], [65.96, 25.81], [71.87, 18.97], [114.11, -27.04]], [[89.73, -114.88], [88.95, -116.43], [88.19, -127.78], [87.89, -132.52], [94.86, -132.93], [164.43, -136.53], [188.4, -137.73], [197.58, -138.19], [197.59, -137.37], [197.0, -133.26], [196.98, -133.11], [194.84, -127.08], [192.72, -123.57], [189.78, -119.87], [175.16, -104.37], [164.72, -93.32], [149.44, -77.13], [148.8, -76.46], [141.13, -68.31], [136.54, -72.38], [113.57, -92.67], [97.81, -106.79], [93.2, -111.38], [89.73, -114.88]], [[130.18, -200.62], [131.65, -202.24], [137.5, -205.56], [142.55, -201.0], [191.71, -156.48], [194.39, -152.95], [195.7, -150.06], [197.04, -145.28], [197.18, -144.18], [188.1, -143.72], [164.13, -142.52], [94.52, -138.92], [88.65, -138.58], [88.3, -142.1], [87.9, -153.28], [88.02, -154.17], [88.7, -155.16], [130.18, -200.62]], [[168.73, -247.53], [177.49, -257.0], [184.19, -260.59], [182.15, -254.59], [172.5, -244.33], [145.91, -214.15], [141.62, -212.62], [141.5, -212.73], [141.29, -212.5], [141.16, -212.45], [142.26, -213.72], [141.51, -214.37], [142.12, -217.42], [155.64, -233.73], [168.73, -247.53]], [[46.89, -298.65], [49.22, -301.23], [76.9, -331.07], [104.02, -361.01], [105.24, -362.44], [107.35, -364.97], [115.21, -358.2], [118.97, -355.32], [119.95, -354.45], [139.29, -335.94], [148.86, -326.72], [158.51, -317.88], [166.29, -310.77], [171.65, -305.65], [193.86, -285.37], [199.02, -281.01], [196.54, -278.88], [185.06, -266.24], [185.91, -265.48], [175.32, -259.81], [166.17, -249.92], [153.02, -236.06], [138.85, -218.97], [138.47, -217.02], [135.12, -219.93], [109.56, -243.12], [98.0, -253.54], [54.27, -292.12], [46.89, -298.65]], [[-123.84, 78.89], [-123.29, 78.56], [-122.6, 78.4], [-121.5, 78.25], [-113.97, 78.17], [-108.11, 77.94], [-107.85, 83.56], [-104.51, 155.79], [-103.45, 178.79], [-102.99, 188.84], [-104.44, 188.77], [-107.18, 187.77], [-110.01, 185.91], [-118.09, 178.54], [-124.41, 172.75], [-149.23, 150.07], [-164.5, 136.12], [-169.55, 131.49], [-167.41, 127.91], [-161.35, 121.06], [-152.83, 111.43], [-149.81, 108.02], [-124.47, 79.41], [-123.84, 78.89]], [[-89.09, 76.35], [-86.96, 76.36], [-85.03, 76.52], [-83.61, 76.82], [-82.41, 77.26], [-81.49, 77.72], [-80.73, 78.26], [-69.25, 89.04], [-37.58, 119.78], [-32.94, 124.29], [-39.84, 132.33], [-54.23, 146.36], [-86.96, 183.15], [-90.12, 186.53], [-93.28, 188.95], [-95.93, 189.9], [-96.93, 190.11], [-97.46, 178.51], [-98.52, 155.51], [-101.85, 83.29], [-102.17, 76.58], [-98.35, 76.6], [-89.09, 76.35]], [[53.86, 38.41], [54.94, 43.18], [116.22, 100.54], [120.56, 104.4], [115.59, 109.94], [113.9, 111.75], [106.89, 119.52], [95.34, 132.32], [88.44, 139.98], [69.67, 160.77], [63.86, 167.22], [59.87, 171.64], [47.71, 185.11], [46.04, 186.97], [43.31, 189.99], [39.52, 186.41], [29.96, 177.48], [-9.25, 140.8], [-21.29, 128.46], [-24.6, 125.15], [-22.78, 122.86], [0.28, 97.08], [15.22, 80.57], [19.23, 76.15], [46.11, 46.5], [53.86, 38.41]], [[90.72, -108.9], [95.41, -104.24], [111.24, -90.05], [134.22, -69.76], [138.75, -65.75], [135.39, -62.09], [108.22, -32.45], [65.9, 13.65], [56.29, 24.76], [51.61, 20.72], [31.87, 2.93], [19.66, -8.31], [-9.03, -34.61], [-18.7, -42.92], [-12.85, -49.65], [51.5, -120.96], [53.72, -124.13], [54.83, -128.36], [54.94, -130.36], [69.26, -131.37], [75.58, -131.77], [84.4, -132.31], [84.7, -127.55], [85.51, -115.49], [86.85, -112.82], [90.72, -108.9]], [[-53.15, -375.5], [27.11, -302.2], [34.6, -295.52], [32.12, -292.78], [5.87, -263.78], [-24.47, -230.27], [-32.18, -221.76], [-38.75, -227.64], [-110.78, -291.94], [-116.43, -295.19], [-119.26, -295.39], [-119.9, -307.11], [-120.79, -323.3], [-117.86, -323.47], [-114.73, -323.61], [-107.48, -324.02], [-103.75, -325.06], [-100.8, -327.25], [-58.29, -373.68], [-55.7, -377.88], [-53.15, -375.5]], [[-131.17, -384.83], [-128.62, -338.3], [-128.37, -333.84], [-128.1, -328.9], [-132.6, -328.65], [-135.96, -328.52], [-140.92, -328.21], [-144.02, -328.64], [-146.36, -330.2], [-158.57, -340.99], [-189.63, -369.45], [-191.64, -372.38], [-194.56, -377.61], [-190.15, -382.46], [-167.33, -408.18], [-142.94, -434.37], [-139.57, -436.67], [-136.14, -438.21], [-134.12, -438.72], [-133.6, -429.22], [-131.45, -390.06], [-131.17, -384.83]], [[131.58, -209.09], [127.86, -206.98], [125.75, -204.67], [83.99, -158.9], [82.24, -156.37], [81.89, -153.54], [82.31, -141.69], [82.66, -138.22], [75.21, -137.76], [68.86, -137.36], [54.72, -136.36], [54.62, -137.14], [53.57, -141.56], [51.63, -146.47], [-21.21, -211.35], [-27.05, -216.99], [-19.28, -225.57], [11.06, -259.08], [37.31, -288.08], [39.84, -290.87], [47.31, -284.25], [91.01, -245.7], [102.52, -235.33], [128.15, -212.07], [131.58, -209.09]], [[-211.2, -15.15], [-207.01, -19.55], [-197.46, -29.38], [-191.09, -23.75], [-119.59, 40.94], [-116.03, 42.47], [-111.61, 43.65], [-109.66, 43.76], [-109.51, 56.35], [-108.87, 71.96], [-114.12, 72.17], [-121.91, 72.26], [-123.69, 72.49], [-125.59, 72.95], [-127.31, 73.98], [-128.65, 75.09], [-154.3, 104.04], [-157.32, 107.45], [-165.85, 117.08], [-172.27, 124.35], [-174.07, 127.36], [-177.53, 124.21], [-199.02, 104.56], [-212.33, 92.4], [-215.71, 89.31], [-219.12, 86.2], [-225.18, 80.61], [-227.71, 78.34], [-254.29, 54.04], [-261.33, 47.8], [-259.01, 45.3], [-240.92, 25.77], [-237.95, 22.56], [-216.7, -0.39], [-214.1, -4.82], [-212.36, -10.17], [-212.06, -15.98], [-211.2, -15.15]], [[27.15, 8.1], [46.98, 25.97], [51.96, 30.26], [40.99, 41.73], [14.04, 71.45], [10.03, 75.87], [-4.93, 92.39], [-28.13, 118.34], [-30.71, 121.58], [-35.14, 117.27], [-66.83, 86.51], [-78.5, 75.55], [-79.69, 74.7], [-81.03, 74.04], [-82.64, 73.45], [-84.52, 73.05], [-86.81, 72.86], [-89.13, 72.85], [-98.39, 73.1], [-101.82, 73.08], [-102.51, 56.17], [-102.66, 43.37], [-100.55, 43.0], [-97.25, 41.48], [-95.3, 40.71], [-30.2, -30.68], [-23.42, -37.74], [-13.68, -29.37], [14.92, -3.15], [27.15, 8.1]], [[128.37, 87.2], [132.91, 91.22], [125.3, 99.25], [120.94, 95.37], [61.29, 39.54], [60.58, 36.39], [60.56, 33.09], [63.42, 32.73], [67.34, 32.85], [128.37, 87.2]], [[-94.74, 365.06], [-91.16, 460.65], [-90.96, 464.26], [-90.74, 474.33], [-90.73, 474.76], [-96.37, 469.67], [-120.08, 448.27], [-150.33, 420.99], [-154.54, 417.19], [-151.49, 413.91], [-149.1, 411.32], [-144.07, 405.88], [-125.02, 385.29], [-99.57, 357.78], [-95.37, 353.23], [-94.74, 365.06]], [[-75.65, 367.44], [-55.27, 384.88], [-26.81, 409.24], [-24.8, 410.9], [-26.82, 413.1], [-27.61, 413.94], [-30.89, 417.51], [-80.59, 471.37], [-83.73, 474.77], [-83.74, 474.18], [-83.96, 463.99], [-84.17, 460.32], [-87.74, 364.75], [-88.22, 355.84], [-84.41, 359.43], [-75.65, 367.44]], [[-171.59, 143.87], [-156.32, 157.82], [-131.5, 180.5], [-125.17, 186.28], [-116.47, 194.23], [-111.93, 197.21], [-106.55, 199.18], [-102.54, 199.38], [-102.3, 205.44], [-101.7, 218.43], [-100.06, 254.23], [-98.92, 273.31], [-98.85, 274.52], [-98.78, 275.87], [-96.32, 321.99], [-95.94, 330.64], [-98.48, 327.92], [-108.16, 318.82], [-111.67, 315.86], [-125.43, 304.0], [-132.4, 298.68], [-146.38, 285.92], [-156.38, 276.79], [-168.75, 265.49], [-185.63, 250.07], [-186.84, 248.97], [-200.86, 236.17], [-201.59, 235.51], [-212.59, 225.46], [-214.68, 223.56], [-230.33, 209.26], [-234.63, 205.33], [-234.08, 204.72], [-232.39, 202.85], [-221.92, 191.27], [-204.65, 172.18], [-180.21, 145.15], [-178.07, 142.76], [-175.61, 140.18], [-171.59, 143.87]], [[-94.03, 196.66], [-89.89, 195.17], [-85.4, 191.74], [-81.79, 187.86], [-49.16, 151.2], [-34.73, 137.13], [-29.09, 130.56], [-26.26, 133.38], [-14.15, 145.81], [25.18, 182.59], [34.73, 191.52], [38.62, 195.18], [34.4, 199.86], [32.31, 202.18], [12.45, 224.2], [-1.9, 240.1], [-13.97, 253.48], [-39.93, 282.23], [-61.63, 306.29], [-75.47, 321.64], [-84.64, 331.8], [-89.64, 337.33], [-90.32, 321.7], [-92.79, 275.56], [-92.86, 274.18], [-92.93, 272.95], [-94.07, 253.91], [-95.7, 218.15], [-96.3, 205.19], [-96.62, 197.19], [-94.03, 196.66]], [[19.61, 362.78], [-15.95, 401.31], [-17.67, 403.17], [-20.04, 401.2], [-48.44, 376.9], [-68.7, 359.57], [-77.26, 351.73], [-86.61, 342.93], [-80.19, 335.82], [-71.02, 325.65], [-57.18, 310.31], [-35.47, 286.25], [-9.52, 257.5], [2.55, 244.12], [16.9, 228.22], [36.76, 206.2], [38.85, 203.89], [42.99, 199.3], [47.32, 203.38], [77.28, 230.29], [108.9, 259.01], [113.19, 262.86], [109.69, 266.74], [106.51, 270.01], [65.66, 312.87], [19.61, 362.78]], [[36.46, 467.09], [33.92, 469.89], [9.51, 496.78], [-22.17, 531.68], [-24.97, 534.78], [-29.41, 530.91], [-79.43, 485.15], [-82.5, 482.28], [-81.02, 480.68], [-76.18, 475.44], [-26.47, 421.57], [-23.21, 418.02], [-22.42, 417.18], [-20.28, 414.85], [-13.83, 420.83], [32.26, 463.28], [36.46, 467.09]], [[45.03, 598.96], [-16.49, 542.86], [-20.56, 538.86], [-17.72, 535.71], [13.96, 500.81], [38.37, 473.92], [40.91, 471.13], [45.54, 475.33], [106.98, 531.2], [111.04, 534.88], [109.38, 536.73], [108.2, 538.05], [54.49, 597.89], [52.9, 599.66], [49.75, 603.0], [45.03, 598.96]], [[199.3, -119.0], [202.11, -123.64], [204.84, -131.33], [204.93, -132.27], [205.59, -136.82], [205.59, -137.65], [217.29, -138.43], [241.02, -139.48], [250.44, -139.95], [299.94, -142.22], [333.18, -143.98], [343.45, -142.37], [342.15, -139.41], [340.36, -136.7], [337.89, -132.98], [323.81, -117.78], [318.87, -112.37], [312.16, -104.76], [299.36, -91.13], [293.95, -85.26], [279.64, -69.79], [266.58, -55.68], [264.69, -53.64], [222.7, -8.14], [217.97, -3.01], [212.39, -7.87], [152.54, -59.98], [148.0, -63.94], [154.63, -70.97], [155.26, -71.65], [170.54, -87.82], [180.97, -98.88], [195.84, -114.63], [199.3, -119.0]], [[303.75, -87.04], [316.6, -100.72], [323.34, -108.36], [328.23, -113.72], [342.62, -129.25], [345.36, -133.39], [347.44, -136.53], [347.84, -137.45], [349.28, -135.26], [351.61, -132.84], [353.74, -130.5], [384.72, -103.26], [386.25, -101.92], [387.94, -100.44], [399.9, -90.0], [407.99, -84.05], [416.33, -78.52], [420.79, -75.78], [419.6, -74.48], [407.22, -60.84], [406.56, -60.09], [404.42, -57.99], [403.42, -56.9], [367.43, -17.46], [366.54, -16.48], [345.77, 6.28], [338.86, 14.24], [332.43, 21.38], [319.82, 35.38], [318.0, 37.4], [312.08, 44.02], [296.89, 60.63], [293.62, 64.24], [288.8, 59.94], [267.64, 41.14], [265.75, 39.46], [248.07, 23.72], [227.08, 5.05], [222.47, 0.96], [227.11, -4.07], [269.1, -49.56], [270.99, -51.6], [284.04, -65.71], [298.36, -81.19], [303.75, -87.04]], [[435.36, -76.06], [431.46, -78.54], [432.81, -80.01], [437.34, -76.93], [487.95, -31.35], [485.88, -29.08], [437.62, -74.5], [435.36, -76.06]], [[340.72, -154.33], [342.29, -151.58], [342.72, -150.58], [333.59, -152.01], [299.55, -150.21], [250.06, -147.94], [240.64, -147.47], [216.85, -146.42], [205.06, -145.64], [204.9, -146.87], [203.23, -152.81], [201.31, -157.06], [197.64, -161.91], [147.91, -206.94], [144.57, -209.95], [147.94, -211.16], [175.09, -241.97], [185.21, -252.74], [188.7, -262.95], [189.5, -262.21], [200.73, -274.56], [203.72, -277.13], [208.83, -273.06], [240.27, -245.59], [273.92, -216.66], [325.71, -170.54], [335.6, -160.86], [340.72, -154.33]], [[420.64, -85.27], [412.57, -90.61], [404.91, -96.24], [393.2, -106.47], [391.52, -107.94], [390.0, -109.27], [359.36, -136.21], [357.45, -138.31], [355.55, -140.28], [354.8, -141.43], [355.12, -141.38], [357.5, -140.83], [359.16, -139.57], [366.58, -133.02], [383.16, -118.06], [406.49, -97.31], [415.04, -90.78], [422.96, -86.03], [427.64, -83.25], [426.29, -81.79], [420.64, -85.27]], [[294.0, 72.72], [297.91, 76.43], [344.02, 118.7], [348.71, 122.9], [344.33, 127.36], [335.3, 137.07], [325.29, 148.2], [315.07, 159.59], [308.49, 166.89], [277.77, 201.05], [275.82, 203.21], [272.4, 207.07], [268.14, 202.93], [240.18, 176.71], [222.89, 160.49], [218.39, 156.28], [220.38, 153.87], [234.3, 138.49], [248.21, 123.17], [264.51, 105.22], [287.03, 80.41], [289.36, 77.76], [294.0, 72.72]], [[490.35, -15.62], [506.93, -2.82], [512.34, 1.01], [518.1, 4.48], [528.26, 9.54], [536.14, 12.81], [542.9, 15.04], [548.79, 16.68], [561.19, 18.71], [566.77, 20.02], [565.24, 24.34], [564.17, 26.09], [549.07, 46.3], [527.48, 69.68], [490.06, 112.1], [490.06, 112.1], [484.24, 118.41], [477.57, 125.65], [453.32, 152.43], [429.22, 178.62], [424.33, 184.3], [422.76, 182.72], [420.9, 180.63], [406.34, 167.31], [402.43, 163.82], [398.54, 160.27], [392.1, 154.37], [361.87, 126.9], [357.32, 122.65], [361.53, 118.28], [363.65, 115.92], [457.73, 10.86], [458.93, 9.56], [483.45, -17.63], [485.32, -19.63], [490.35, -15.62]], [[223.09, 9.54], [244.09, 28.2], [261.76, 43.94], [263.65, 45.62], [284.81, 64.43], [289.58, 68.67], [284.9, 73.75], [282.56, 76.41], [260.07, 101.19], [243.77, 119.13], [229.85, 134.46], [215.84, 149.94], [213.96, 152.22], [209.32, 148.06], [147.47, 92.65], [143.38, 88.89], [145.95, 86.16], [147.65, 84.33], [164.96, 64.8], [168.21, 61.26], [180.53, 47.81], [214.72, 9.46], [218.42, 5.38], [223.09, 9.54]], [[370.99, -12.45], [371.87, -13.43], [407.85, -52.85], [408.73, -53.82], [410.91, -55.95], [411.68, -56.83], [424.04, -70.45], [425.97, -72.56], [430.94, -69.4], [432.57, -68.27], [480.45, -23.2], [479.03, -21.68], [454.49, 5.52], [453.28, 6.84], [359.18, 111.92], [357.13, 114.2], [352.9, 118.6], [348.05, 114.25], [302.0, 72.04], [298.04, 68.29], [301.33, 64.67], [316.53, 48.04], [322.46, 41.41], [324.28, 39.39], [336.88, 25.4], [343.36, 18.22], [350.25, 10.27], [370.99, -12.45]], [[325.65, 279.78], [314.96, 270.37], [268.73, 228.98], [264.65, 225.31], [266.18, 223.66], [270.79, 218.12], [275.43, 222.09], [305.06, 251.04], [331.42, 273.26], [340.08, 280.67], [333.67, 287.09], [325.65, 279.78]], [[319.53, 163.6], [329.75, 152.21], [339.73, 141.12], [348.66, 131.51], [353.14, 126.96], [357.81, 131.32], [388.05, 158.8], [394.49, 164.69], [398.41, 168.27], [402.31, 171.76], [416.63, 184.86], [418.39, 186.83], [420.47, 188.93], [416.92, 193.43], [395.78, 216.75], [390.32, 222.95], [389.14, 224.22], [382.09, 232.77], [384.78, 234.99], [350.06, 270.14], [345.64, 274.9], [336.6, 267.16], [310.44, 245.12], [280.83, 216.18], [276.0, 212.05], [280.29, 207.21], [282.23, 205.06], [312.95, 170.9], [319.53, 163.6]], [[209.45, 174.54], [205.13, 170.72], [211.42, 164.13], [215.71, 168.15], [233.0, 184.36], [260.89, 210.52], [265.54, 215.04], [261.68, 219.7], [261.0, 220.42], [255.81, 215.94], [209.45, 174.54]], [[313.02, -2794.91], [310.21, -2784.59], [307.75, -2776.35], [302.99, -2760.46], [295.72, -2759.8], [286.16, -2758.95], [264.69, -2755.58], [274.51, -2758.96], [289.95, -2769.35], [298.78, -2777.77], [305.2, -2783.89], [313.02, -2794.91]], [[386.38, -3063.73], [377.59, -3071.14], [372.48, -3075.1], [376.56, -3074.97], [392.75, -3069.24], [400.37, -3064.27], [413.7, -3058.61], [420.74, -3057.96], [425.47, -3059.15], [404.8, -3020.01], [401.79, -3033.72], [399.48, -3047.15], [395.93, -3053.15], [391.45, -3058.32], [386.38, -3063.73]], [[330.99, -2814.69], [327.53, -2802.36], [321.13, -2778.62], [320.15, -2775.71], [318.48, -2770.72], [315.25, -2764.8], [317.81, -2773.34], [320.31, -2781.71], [329.41, -2815.17], [330.99, -2814.69]], [[368.62, -2904.07], [371.07, -2905.88], [358.89, -2878.89], [346.38, -2841.0], [336.54, -2805.96], [326.26, -2773.79], [321.57, -2759.02], [316.21, -2759.93], [318.2, -2761.85], [322.17, -2769.12], [323.94, -2774.44], [324.96, -2777.46], [331.39, -2801.3], [342.58, -2841.16], [348.38, -2859.32], [356.93, -2883.48], [360.02, -2890.33], [368.62, -2904.07]], [[285.81, -2734.82], [280.12, -2741.74], [271.07, -2745.62], [260.69, -2746.57], [256.72, -2745.58], [262.51, -2748.15], [287.02, -2752.0], [296.35, -2752.83], [300.83, -2753.23], [288.93, -2713.49], [289.21, -2718.56], [288.56, -2727.3], [287.23, -2730.93], [285.81, -2734.82]], [[710.47, 1083.55], [712.06, 1081.81], [713.35, 1080.4], [717.71, 1084.52], [852.63, 1209.1], [857.53, 1213.62], [857.38, 1213.79], [856.28, 1215.09], [853.92, 1217.87], [832.64, 1241.55], [800.52, 1276.88], [796.02, 1281.83], [790.97, 1277.14], [654.48, 1153.73], [650.35, 1149.42], [654.46, 1145.01], [655.34, 1144.04], [707.95, 1086.33], [710.47, 1083.55]], [[722.6, 1070.24], [723.88, 1068.85], [778.51, 1008.89], [782.66, 1004.34], [787.12, 1008.42], [789.41, 1010.52], [920.27, 1129.95], [922.61, 1132.09], [927.37, 1136.45], [923.33, 1140.88], [868.38, 1201.33], [864.43, 1205.71], [859.76, 1201.39], [724.88, 1076.85], [720.42, 1072.64], [722.6, 1070.24]], [[1003.16, 1070.67], [1138.74, 1193.9], [1142.43, 1197.27], [1138.19, 1201.96], [1136.78, 1203.5], [1084.07, 1261.66], [1080.21, 1265.93], [1076.33, 1262.4], [1074.31, 1260.56], [944.11, 1142.21], [941.11, 1139.57], [936.5, 1135.33], [940.74, 1130.65], [995.97, 1069.85], [998.79, 1066.75], [1003.16, 1070.67]], [[1063.53, 1043.13], [1067.22, 1046.42], [1081.58, 1059.17], [1087.85, 1064.76], [1126.78, 1099.92], [1131.97, 1104.61], [1140.11, 1112.14], [1170.17, 1139.93], [1173.97, 1143.45], [1179.9, 1148.7], [1183.63, 1152.02], [1174.42, 1162.14], [1152.57, 1186.12], [1150.47, 1188.43], [1147.14, 1192.09], [1143.45, 1188.72], [1007.85, 1065.48], [1003.49, 1061.57], [1007.66, 1056.98], [1039.57, 1021.85], [1044.33, 1026.08], [1063.53, 1043.13]], [[994.04, 1052.97], [957.82, 1020.0], [931.75, 996.11], [930.17, 994.65], [900.43, 967.39], [858.7, 929.72], [854.3, 925.75], [858.6, 921.02], [859.92, 919.59], [924.91, 848.27], [927.83, 845.07], [930.55, 842.09], [942.68, 852.59], [961.42, 868.82], [1006.9, 910.87], [1020.92, 923.85], [1068.07, 967.47], [1075.02, 973.9], [1072.03, 977.2], [1060.81, 989.55], [1047.93, 1003.73], [1037.13, 1015.62], [1039.35, 1017.64], [1037.13, 1015.62], [1003.22, 1052.94], [999.04, 1057.54], [994.04, 1052.97]], [[968.48, 861.05], [966.3, 863.41], [966.26, 863.36], [968.36, 860.93], [957.23, 851.3], [951.42, 843.54], [947.75, 839.03], [946.2, 835.64], [952.77, 841.63], [980.58, 866.99], [1012.47, 896.0], [1026.47, 908.84], [1041.17, 922.24], [1051.59, 931.74], [1078.08, 955.9], [1085.31, 962.49], [1082.06, 966.11], [1075.2, 959.76], [1028.05, 916.14], [1014.03, 903.16], [968.48, 861.05]], [[1033.55, 901.09], [1019.55, 888.25], [987.65, 859.22], [959.84, 833.87], [947.99, 823.07], [952.57, 818.04], [954.71, 815.68], [977.68, 790.48], [979.44, 788.55], [988.1, 779.06], [990.27, 776.68], [998.28, 767.88], [1021.96, 741.93], [1026.12, 737.36], [1029.3, 740.24], [1092.9, 797.8], [1104.24, 808.07], [1119.91, 822.24], [1163.99, 862.12], [1166.33, 864.24], [1169.95, 867.53], [1165.51, 872.44], [1150.85, 888.67], [1141.61, 898.23], [1131.7, 909.42], [1097.5, 948.03], [1091.93, 954.32], [1085.16, 948.14], [1058.66, 923.98], [1048.24, 914.48], [1033.55, 901.09]], [[931.35, 645.25], [883.43, 601.75], [878.99, 597.78], [884.65, 591.56], [909.38, 564.35], [937.83, 533.04], [939.06, 531.66], [948.31, 521.52], [951.59, 517.91], [976.56, 490.44], [996.89, 468.09], [1000.43, 464.19], [1012.27, 451.16], [1040.12, 420.52], [1051.43, 408.09], [1074.13, 383.09], [1077.6, 379.28], [1082.49, 383.6], [1104.7, 403.33], [1142.84, 437.16], [1155.73, 448.61], [1188.6, 477.77], [1194.94, 483.4], [1211.35, 497.97], [1218.97, 504.5], [1224.05, 508.84], [1220.03, 513.23], [1217.04, 516.5], [1194.32, 541.35], [1189.32, 546.82], [1187.44, 548.87], [1155.35, 582.22], [1145.37, 593.94], [1141.69, 598.86], [1133.2, 608.49], [1126.6, 615.93], [1095.22, 651.41], [1091.93, 654.9], [1087.44, 659.9], [1079.13, 669.15], [1028.97, 723.88], [1024.95, 728.26], [1020.24, 724.09], [961.08, 671.62], [958.38, 669.23], [931.35, 645.25]], [[1042.11, 336.88], [1026.59, 322.46], [1000.66, 298.4], [994.29, 292.49], [992.35, 290.69], [938.34, 241.01], [933.91, 236.59], [937.8, 232.43], [939.04, 231.12], [954.98, 214.06], [989.8, 176.79], [995.46, 170.73], [1001.55, 172.27], [1004.88, 174.82], [1012.26, 180.18], [1018.34, 185.15], [1138.45, 294.57], [1143.23, 298.92], [1138.33, 304.28], [1136.58, 306.24], [1119.22, 325.33], [1083.24, 364.9], [1078.23, 370.43], [1072.31, 365.0], [1058.38, 351.98], [1049.99, 344.21], [1042.11, 336.88]], [[1030.29, 175.2], [1035.55, 172.55], [1040.11, 171.23], [1045.27, 171.4], [1071.27, 177.51], [1070.98, 178.73], [1075.29, 179.76], [1157.98, 199.49], [1185.56, 206.6], [1195.65, 209.57], [1205.68, 217.57], [1206.94, 218.6], [1212.25, 223.0], [1206.02, 229.86], [1204.37, 231.67], [1152.29, 288.95], [1151.62, 289.7], [1147.27, 294.49], [1142.48, 290.14], [1023.58, 181.8], [1025.85, 179.21], [1028.18, 177.11], [1028.97, 176.39], [1030.29, 175.2]], [[504.69, 1018.58], [500.46, 1014.92], [504.89, 1010.05], [561.03, 948.43], [562.83, 946.45], [563.57, 945.64], [567.88, 949.36], [577.55, 957.79], [592.05, 971.12], [606.47, 984.85], [625.48, 1002.96], [631.94, 1009.08], [630.12, 1011.04], [602.95, 1040.36], [573.82, 1071.77], [570.13, 1075.74], [563.12, 1070.13], [558.04, 1065.69], [544.19, 1052.81], [529.65, 1040.21], [514.19, 1026.81], [504.69, 1018.58]], [[492.91, 869.65], [492.14, 868.94], [477.62, 855.46], [474.59, 852.59], [425.68, 806.4], [421.5, 802.39], [423.99, 799.65], [425.11, 798.42], [479.54, 738.76], [485.05, 732.71], [488.54, 735.88], [491.19, 738.34], [621.81, 859.25], [623.91, 861.22], [627.83, 864.74], [624.02, 868.92], [567.82, 930.59], [565.38, 933.27], [560.92, 929.3], [538.46, 909.42], [529.48, 901.61], [499.84, 875.9], [492.91, 869.65]], [[555.31, 663.07], [609.09, 712.03], [690.95, 786.53], [695.41, 790.58], [691.68, 794.67], [636.33, 855.43], [632.55, 859.57], [628.64, 856.06], [626.59, 854.13], [495.95, 733.21], [493.28, 730.73], [489.77, 727.54], [492.17, 724.91], [518.6, 695.93], [547.49, 664.26], [551.62, 659.73], [555.31, 663.07]], [[435.56, 545.82], [409.76, 522.68], [406.9, 520.07], [410.17, 516.47], [411.59, 514.92], [436.91, 487.15], [444.24, 479.11], [452.04, 470.57], [477.48, 442.66], [479.6, 440.33], [482.05, 437.65], [486.87, 441.94], [532.16, 482.24], [565.3, 511.81], [627.02, 566.67], [623.54, 570.49], [567.62, 631.8], [553.47, 646.9], [550.97, 649.86], [546.43, 646.04], [488.34, 593.31], [453.46, 561.99], [450.66, 559.41], [435.56, 545.82]], [[545.08, 464.0], [542.98, 466.27], [548.54, 471.4], [550.83, 476.31], [562.97, 490.28], [593.94, 520.25], [618.72, 543.67], [622.51, 547.06], [625.19, 549.35], [626.62, 550.73], [628.11, 552.64], [629.46, 554.8], [572.28, 503.97], [539.15, 474.4], [493.85, 434.1], [489.01, 429.79], [495.13, 422.67], [500.85, 427.31], [542.98, 466.27], [545.08, 464.0], [545.08, 464.0]], [[535.31, 378.79], [537.75, 376.24], [538.96, 374.76], [542.37, 370.82], [571.44, 337.23], [572.95, 335.48], [577.55, 331.09], [581.98, 334.65], [651.27, 395.39], [716.4, 458.17], [720.59, 462.19], [717.05, 466.09], [675.58, 511.79], [668.24, 520.76], [649.02, 542.25], [646.13, 544.93], [643.3, 542.38], [628.17, 529.0], [611.34, 514.4], [580.31, 486.47], [550.11, 458.56], [507.73, 419.37], [501.53, 414.34], [503.7, 411.75], [506.03, 409.29], [535.31, 378.79]], [[269.34, 678.35], [405.37, 801.82], [409.3, 805.37], [407.86, 806.95], [406.74, 808.18], [403.83, 811.37], [364.33, 854.67], [351.64, 868.59], [350.85, 869.45], [347.61, 873.01], [343.85, 869.51], [207.24, 746.87], [203.27, 743.12], [207.16, 739.25], [208.73, 737.56], [262.83, 678.05], [264.1, 676.66], [265.63, 674.99], [269.34, 678.35]], [[283.33, 412.55], [280.98, 415.14], [286.87, 420.48], [328.4, 458.07], [329.48, 459.06], [339.76, 468.41], [354.85, 482.0], [392.34, 516.27], [397.01, 520.52], [393.42, 524.46], [390.68, 527.46], [371.53, 548.47], [350.4, 571.65], [337.86, 585.4], [334.81, 588.74], [330.06, 584.34], [327.42, 582.16], [292.31, 550.53], [285.84, 544.75], [244.12, 507.49], [232.8, 497.38], [195.91, 464.43], [193.3, 462.07], [189.15, 458.31], [198.64, 447.61], [248.03, 391.96], [251.73, 387.68], [257.53, 392.99], [259.27, 394.59], [281.3, 414.76], [283.33, 412.55]], [[285.68, 409.95], [285.34, 410.32], [263.32, 390.17], [261.58, 388.57], [256.11, 383.55], [260.31, 379.06], [275.71, 362.62], [289.75, 346.98], [302.9, 332.31], [307.19, 327.53], [311.74, 322.47], [329.44, 302.37], [332.77, 298.83], [363.92, 327.89], [389.53, 351.76], [463.83, 421.06], [471.07, 427.68], [476.85, 432.96], [474.43, 435.61], [472.31, 437.94], [446.86, 465.85], [439.07, 474.4], [431.74, 482.43], [406.43, 510.2], [405.0, 511.75], [401.72, 515.35], [397.05, 511.1], [359.55, 476.81], [344.46, 463.22], [334.19, 453.89], [333.1, 452.89], [291.57, 415.29], [285.68, 409.95]], [[177.16, 318.97], [176.73, 319.11], [176.27, 319.13], [175.82, 319.02], [175.43, 318.8], [175.1, 318.46], [174.88, 318.05], [174.79, 317.61], [174.82, 317.15], [174.98, 316.72], [175.25, 316.35], [175.63, 316.07], [176.04, 315.91], [176.49, 315.86], [176.92, 315.93], [177.32, 316.12], [177.68, 316.42], [177.91, 316.74], [178.05, 317.14], [178.1, 317.55], [178.03, 317.93], [177.84, 318.36], [177.54, 318.71], [177.16, 318.97]], [[394.54, 651.77], [473.5, 722.2], [475.16, 723.67], [479.88, 727.99], [474.36, 734.04], [419.94, 793.7], [418.82, 794.94], [416.38, 797.62], [412.43, 794.04], [276.39, 670.57], [272.71, 667.24], [275.17, 664.54], [292.5, 645.53], [293.6, 644.32], [316.77, 618.92], [330.92, 603.39], [335.27, 598.63], [338.33, 601.38], [340.76, 603.81], [394.54, 651.77]], [[430.88, 551.03], [445.95, 564.58], [448.74, 567.17], [483.65, 598.51], [541.82, 651.31], [546.35, 655.12], [542.32, 659.54], [513.43, 691.21], [487.0, 720.19], [484.6, 722.82], [479.85, 718.47], [478.16, 716.97], [399.2, 646.54], [345.57, 598.72], [343.15, 596.3], [339.98, 593.46], [343.03, 590.12], [355.57, 576.37], [376.7, 553.18], [395.86, 532.18], [398.59, 529.18], [402.18, 525.24], [405.06, 527.87], [430.88, 551.03]], [[322.85, 587.47], [325.45, 589.61], [330.09, 593.91], [325.75, 598.67], [311.59, 614.2], [288.42, 639.61], [287.33, 640.82], [269.99, 659.83], [267.52, 662.54], [262.85, 658.31], [225.62, 624.57], [154.95, 560.52], [127.55, 535.67], [123.21, 531.74], [125.33, 529.34], [153.65, 497.89], [172.55, 476.81], [180.82, 467.61], [184.48, 463.53], [188.6, 467.26], [191.24, 469.64], [228.13, 502.6], [239.46, 512.71], [281.18, 549.97], [287.64, 555.74], [322.85, 587.47]], [[350.94, 1021.41], [351.33, 1020.96], [410.39, 953.38], [412.73, 950.71], [416.68, 946.19], [455.04, 981.65], [486.75, 1011.79], [490.93, 1015.75], [488.43, 1018.51], [425.19, 1088.57], [421.31, 1085.06], [389.81, 1056.56], [350.94, 1021.41]], [[467.38, 860.22], [470.44, 863.12], [485.01, 876.65], [485.83, 877.41], [492.89, 883.76], [522.59, 909.54], [531.53, 917.31], [553.96, 937.15], [558.31, 941.03], [557.66, 941.74], [555.86, 943.71], [499.72, 1005.33], [495.27, 1010.22], [491.57, 1006.71], [459.83, 976.54], [419.15, 938.95], [416.78, 941.52], [419.15, 938.94], [356.83, 881.51], [352.75, 877.76], [356.03, 874.17], [356.82, 873.3], [369.5, 859.38], [409.0, 816.09], [411.91, 812.9], [413.03, 811.67], [414.42, 810.15], [418.44, 814.01], [467.38, 860.22]], [[810.52, 139.45], [812.14, 140.91], [819.79, 147.76], [824.61, 152.08], [850.87, 175.66], [874.71, 197.05], [905.93, 225.06], [917.38, 235.62], [922.02, 239.8], [919.74, 242.26], [917.31, 244.79], [889.52, 274.44], [881.39, 283.1], [856.05, 312.74], [847.91, 321.88], [844.51, 325.77], [798.96, 374.78], [789.32, 385.07], [729.82, 451.67], [724.58, 457.7], [720.56, 453.84], [655.33, 390.97], [585.84, 330.06], [581.89, 326.88], [587.32, 321.53], [588.64, 319.95], [646.7, 257.23], [644.5, 255.19], [646.74, 257.18], [667.33, 233.95], [688.1, 210.51], [694.77, 202.75], [704.74, 190.82], [711.2, 183.14], [717.03, 174.23], [718.14, 172.92], [746.72, 141.65], [768.18, 118.57], [772.23, 115.34], [778.46, 119.12], [798.96, 132.15], [806.82, 135.89], [812.53, 137.22], [810.52, 139.45]], [[704.58, 50.85], [697.16, 47.72], [689.52, 45.07], [643.05, 32.43], [636.78, 30.89], [592.67, 19.3], [590.36, 18.66], [583.2, 16.84], [585.31, 15.4], [587.65, 10.37], [592.21, 11.34], [604.62, 14.92], [605.72, 11.07], [604.89, 14.47], [606.87, 14.96], [635.97, 22.15], [667.72, 30.64], [695.36, 39.51], [702.35, 41.95], [715.43, 49.02], [727.36, 58.61], [738.9, 71.07], [770.8, 98.16], [775.1, 101.87], [776.66, 103.06], [773.23, 106.75], [767.87, 101.74], [752.73, 87.7], [730.52, 67.4], [726.41, 64.09], [721.41, 60.38], [716.09, 57.06], [710.53, 53.76], [704.58, 50.85]], [[576.28, 13.07], [573.02, 5.78], [577.4, 7.11], [580.97, 8.14], [579.78, 10.7], [576.28, 13.07]], [[587.78, -28.25], [587.38, -29.17], [589.96, -24.04], [591.15, -20.0], [594.16, -9.5], [597.05, -3.06], [598.25, -1.63], [601.45, 5.68], [594.15, 3.58], [590.08, 2.71], [590.84, -1.01], [591.27, -3.09], [591.48, -4.23], [591.98, -7.69], [591.95, -10.95], [591.93, -13.62], [590.52, -19.62], [589.59, -22.55], [589.22, -23.72], [587.78, -28.25]], [[803.98, 125.05], [807.85, 128.62], [802.35, 126.01], [782.15, 113.18], [777.87, 110.57], [781.2, 106.98], [786.69, 110.68], [803.98, 125.05]], [[572.76, 636.55], [628.72, 575.2], [632.29, 571.29], [633.97, 572.75], [671.35, 605.13], [706.66, 638.0], [739.45, 668.25], [743.01, 664.39], [739.45, 668.25], [767.55, 694.14], [775.92, 702.23], [772.37, 706.13], [769.62, 709.15], [717.35, 766.5], [702.76, 782.2], [700.05, 785.34], [695.67, 781.35], [613.8, 706.85], [560.01, 657.89], [556.24, 654.47], [558.7, 651.56], [572.76, 636.55]], [[908.21, 798.1], [908.24, 798.14], [906.16, 800.53], [913.94, 807.29], [914.5, 807.78], [920.74, 817.38], [925.07, 822.62], [925.31, 823.06], [920.19, 818.32], [796.57, 706.9], [794.11, 704.67], [787.36, 698.58], [790.5, 695.12], [797.2, 701.22], [834.01, 734.77], [843.39, 743.3], [906.06, 800.45], [908.21, 798.1]], [[805.21, 678.93], [840.73, 639.87], [844.8, 635.37], [872.19, 605.25], [874.95, 602.21], [879.41, 606.2], [927.34, 649.72], [954.4, 673.72], [957.1, 676.11], [1016.26, 728.58], [1020.9, 732.69], [1016.78, 737.21], [993.11, 763.17], [985.09, 771.97], [982.92, 774.35], [974.26, 783.84], [972.51, 785.77], [949.54, 810.97], [947.4, 813.32], [942.76, 818.41], [930.0, 807.33], [924.07, 802.17], [920.82, 799.36], [913.09, 792.65], [850.46, 735.53], [841.07, 727.0], [804.27, 693.46], [797.57, 687.35], [803.12, 681.23], [805.21, 678.93]], [[886.61, 287.77], [894.62, 279.23], [922.39, 249.61], [924.83, 247.07], [929.49, 242.06], [933.49, 246.06], [987.6, 295.84], [989.53, 297.62], [995.89, 303.53], [1021.82, 327.59], [1037.34, 342.0], [1045.23, 349.34], [1053.61, 357.1], [1067.56, 370.14], [1073.89, 375.94], [1070.43, 379.73], [1047.73, 404.72], [1036.42, 417.16], [1008.57, 447.8], [996.72, 460.83], [993.18, 464.73], [972.86, 487.07], [947.89, 514.55], [944.61, 518.16], [935.34, 528.31], [934.11, 529.71], [905.68, 560.99], [880.95, 588.19], [875.28, 594.43], [870.18, 589.8], [842.98, 565.15], [831.8, 555.02], [803.23, 529.54], [789.08, 516.23], [786.19, 513.67], [734.19, 466.55], [729.7, 462.48], [735.07, 456.3], [794.48, 389.79], [804.08, 379.55], [849.71, 330.46], [853.16, 326.51], [861.32, 317.34], [886.61, 287.77]], [[650.48, 569.67], [648.91, 567.37], [647.48, 565.23], [646.93, 563.5], [646.14, 560.6], [645.87, 559.03], [707.6, 617.42], [777.24, 683.0], [786.81, 691.75], [783.71, 695.16], [774.75, 686.5], [746.57, 660.53], [741.92, 656.24], [741.63, 655.42], [706.03, 620.9], [687.93, 603.99], [669.52, 587.75], [663.41, 582.24], [657.16, 576.17], [650.48, 569.67]], [[785.04, 520.67], [799.18, 533.97], [827.79, 559.48], [838.95, 569.6], [866.15, 594.25], [871.24, 598.87], [868.49, 601.88], [841.1, 632.01], [837.02, 636.51], [801.51, 675.57], [799.42, 677.87], [793.87, 683.98], [784.38, 675.31], [714.81, 609.79], [651.28, 549.7], [654.02, 547.16], [673.56, 525.32], [680.88, 516.36], [722.23, 470.8], [725.71, 466.97], [730.16, 471.0], [782.18, 518.14], [785.04, 520.67]], [[621.44, 540.73], [596.71, 517.36], [565.88, 487.52], [565.45, 487.03], [573.24, 494.23], [604.39, 522.27], [621.25, 536.9], [636.31, 550.21], [641.32, 554.73], [642.43, 555.78], [642.32, 556.22], [642.24, 558.62], [642.72, 561.36], [643.57, 564.5], [644.3, 566.76], [645.95, 569.23], [640.84, 564.81], [636.64, 561.17], [635.26, 559.94], [635.07, 558.64], [634.52, 556.04], [633.33, 553.42], [631.38, 550.34], [629.61, 548.05], [627.88, 546.39], [625.14, 544.05], [621.44, 540.73]], [[773.88, 996.57], [778.19, 1000.34], [774.08, 1004.85], [719.45, 1064.8], [718.17, 1066.19], [715.98, 1068.6], [711.12, 1064.36], [654.48, 1014.97], [641.22, 1003.41], [632.71, 995.34], [613.72, 977.25], [599.22, 963.45], [584.55, 949.96], [574.76, 941.43], [570.65, 937.88], [573.0, 935.31], [629.19, 873.64], [633.11, 869.34], [637.84, 873.33], [640.02, 875.18], [771.13, 994.07], [773.88, 996.57]], [[700.58, 795.29], [704.45, 798.82], [840.44, 922.62], [845.13, 926.89], [841.84, 930.51], [839.07, 933.55], [786.32, 991.42], [782.91, 995.17], [778.54, 991.35], [775.83, 988.89], [644.64, 869.92], [642.36, 867.98], [637.83, 864.16], [641.5, 860.14], [696.85, 799.39], [700.58, 795.29]], [[913.11, 826.08], [926.08, 838.09], [923.39, 841.03], [920.48, 844.23], [855.48, 915.54], [854.17, 916.98], [849.85, 921.72], [845.15, 917.44], [709.16, 793.64], [705.23, 790.05], [707.98, 786.87], [722.5, 771.24], [774.79, 713.86], [777.54, 710.84], [781.03, 707.01], [787.06, 712.46], [789.53, 714.69], [913.11, 826.08]], [[943.55, 839.46], [935.32, 832.33], [932.34, 829.57], [931.58, 826.28], [928.4, 820.38], [926.87, 818.52], [938.37, 828.51], [940.91, 830.83], [941.72, 835.47], [943.55, 839.46]], [[650.05, 1140.95], [646.23, 1145.04], [642.1, 1140.57], [622.05, 1122.2], [586.39, 1089.23], [575.14, 1080.04], [574.7, 1079.64], [578.21, 1075.85], [607.35, 1044.44], [634.52, 1015.12], [636.38, 1013.12], [647.58, 1022.88], [704.21, 1072.27], [708.91, 1076.37], [707.63, 1077.77], [706.04, 1079.51], [703.51, 1082.28], [650.9, 1140.01], [650.05, 1140.95]], [[927.01, 1001.26], [953.1, 1025.17], [989.32, 1058.15], [994.34, 1062.73], [991.53, 1065.81], [936.3, 1126.61], [932.08, 1131.27], [927.33, 1126.92], [924.98, 1124.78], [794.13, 1005.35], [791.85, 1003.26], [787.38, 999.17], [790.76, 995.46], [843.51, 937.59], [846.27, 934.55], [849.58, 930.92], [854.01, 934.92], [895.72, 972.57], [925.43, 999.8], [927.01, 1001.26]], [[1003.35, 1530.95], [922.79, 1457.98], [918.41, 1454.02], [922.53, 1449.25], [939.35, 1430.7], [942.14, 1427.52], [945.05, 1424.33], [950.51, 1428.15], [974.6, 1445.01], [983.06, 1451.16], [996.17, 1458.55], [1009.31, 1462.75], [1022.05, 1465.13], [1034.35, 1466.32], [1059.67, 1465.57], [1074.94, 1465.37], [1093.94, 1467.77], [1104.3, 1470.86], [1114.73, 1475.28], [1123.8, 1480.0], [1140.75, 1491.7], [1143.9, 1493.88], [1141.01, 1496.94], [1139.85, 1498.32], [1100.1, 1542.07], [1086.75, 1556.73], [1074.65, 1567.97], [1058.19, 1582.76], [1055.66, 1580.33], [1021.69, 1547.58], [1003.35, 1530.95], [1001.34, 1533.17], [1003.35, 1530.95]], [[1009.11, 1355.47], [1011.74, 1352.62], [1013.02, 1351.2], [1016.77, 1354.64], [1058.07, 1392.55], [1149.6, 1476.57], [1151.92, 1478.56], [1155.96, 1481.78], [1148.84, 1488.78], [1144.73, 1485.94], [1127.42, 1473.99], [1117.71, 1468.94], [1106.67, 1464.26], [1095.39, 1460.89], [1075.34, 1458.37], [1059.52, 1458.57], [1034.58, 1459.31], [1023.03, 1458.19], [1011.03, 1455.95], [998.99, 1452.1], [986.85, 1445.26], [978.67, 1439.31], [954.52, 1422.41], [949.79, 1419.11], [953.47, 1415.05], [955.12, 1413.22], [972.65, 1393.82], [1007.17, 1357.58], [1009.11, 1355.47]], [[1085.09, 1279.93], [1086.98, 1281.67], [1133.39, 1324.52], [1147.12, 1337.04], [1152.0, 1341.49], [1162.45, 1351.03], [1177.66, 1364.93], [1201.45, 1386.64], [1217.7, 1401.46], [1219.73, 1403.32], [1220.73, 1404.25], [1217.84, 1407.47], [1215.82, 1409.71], [1211.29, 1415.77], [1201.08, 1431.38], [1163.88, 1473.15], [1160.8, 1476.69], [1156.38, 1473.17], [1154.24, 1471.33], [1062.8, 1387.4], [1021.5, 1349.49], [1017.73, 1346.02], [1021.2, 1342.29], [1023.21, 1340.06], [1076.86, 1278.77], [1079.98, 1275.21], [1085.09, 1279.93]], [[821.49, 1561.43], [827.42, 1554.96], [825.21, 1552.94], [827.44, 1554.94], [892.04, 1483.21], [914.43, 1458.51], [918.76, 1462.43], [996.84, 1533.14], [993.25, 1536.32], [808.04, 1700.09], [805.78, 1702.08], [801.87, 1697.68], [762.56, 1653.51], [760.32, 1650.55], [758.14, 1645.45], [756.28, 1640.46], [754.89, 1635.89], [753.66, 1631.86], [755.19, 1631.26], [756.95, 1630.32], [760.07, 1628.64], [764.47, 1625.02], [795.52, 1589.74], [821.49, 1561.43]], [[858.52, 1759.26], [855.26, 1761.97], [852.51, 1759.07], [812.92, 1710.23], [809.74, 1706.59], [812.01, 1704.58], [997.22, 1540.81], [1001.31, 1537.2], [1017.6, 1551.96], [1051.49, 1584.64], [1053.71, 1586.79], [1015.19, 1621.41], [878.52, 1741.95], [858.52, 1759.26]], [[744.59, 1432.56], [748.98, 1436.65], [790.59, 1392.04], [816.58, 1416.48], [783.89, 1452.18], [782.75, 1453.85], [782.04, 1455.95], [781.94, 1458.18], [782.41, 1460.13], [814.91, 1543.16], [816.72, 1546.65], [818.01, 1549.14], [821.2, 1552.87], [817.07, 1557.38], [791.05, 1585.73], [760.28, 1620.7], [756.71, 1623.63], [754.11, 1625.03], [752.67, 1625.8], [751.88, 1626.11], [750.32, 1621.1], [729.83, 1555.54], [698.45, 1457.05], [683.03, 1409.04], [686.51, 1407.55], [696.23, 1401.11], [741.56, 1350.71], [743.88, 1348.13], [746.96, 1351.03], [786.22, 1387.93], [744.59, 1432.56]], [[936.16, 1416.82], [940.35, 1420.58], [937.66, 1423.52], [934.87, 1426.71], [918.04, 1445.27], [911.98, 1452.29], [889.64, 1476.92], [885.51, 1473.03], [822.85, 1414.13], [792.51, 1385.6], [790.45, 1387.79], [792.51, 1385.6], [751.07, 1346.65], [747.9, 1343.68], [792.75, 1294.34], [795.75, 1291.05], [799.46, 1294.37], [936.16, 1416.82]], [[743.69, 1343.84], [741.46, 1341.84], [737.1, 1346.7], [692.28, 1396.53], [683.65, 1402.25], [681.21, 1403.29], [679.42, 1397.58], [620.9, 1215.14], [615.99, 1199.37], [615.69, 1197.81], [615.58, 1196.31], [615.56, 1192.08], [616.51, 1189.27], [622.1, 1181.16], [625.43, 1177.5], [640.2, 1161.81], [643.14, 1158.69], [646.28, 1155.28], [649.6, 1158.75], [786.24, 1282.3], [791.31, 1287.01], [788.31, 1290.31], [741.47, 1341.83], [743.69, 1343.84]], [[1003.73, 1342.53], [1008.62, 1347.11], [1007.3, 1348.59], [1004.7, 1351.4], [1002.79, 1353.48], [968.25, 1389.74], [950.67, 1409.2], [949.02, 1411.02], [945.06, 1415.4], [940.83, 1411.6], [804.13, 1289.15], [800.46, 1285.87], [804.96, 1280.92], [837.09, 1245.58], [858.45, 1221.82], [860.85, 1218.97], [861.96, 1217.67], [863.1, 1216.32], [867.43, 1220.2], [927.78, 1274.17], [1003.73, 1342.53]], [[1075.55, 1271.15], [1072.34, 1274.82], [1018.72, 1336.07], [1016.77, 1338.24], [1013.33, 1341.94], [1008.46, 1337.37], [932.46, 1268.96], [872.1, 1214.98], [867.7, 1211.05], [872.83, 1205.36], [927.77, 1144.92], [931.79, 1140.51], [936.43, 1144.78], [939.45, 1147.43], [1069.6, 1265.73], [1071.62, 1267.58], [1075.55, 1271.15]], [[787.97, 1457.6], [788.0, 1457.06], [788.17, 1456.55], [788.6, 1455.92], [820.96, 1420.59], [881.4, 1477.4], [885.62, 1481.37], [825.27, 1548.39], [823.02, 1545.77], [822.04, 1543.88], [820.38, 1540.68], [788.15, 1458.32], [787.97, 1457.6]], [[1292.09, 444.88], [1296.85, 439.68], [1300.42, 443.09], [1331.29, 470.53], [1417.75, 550.39], [1435.08, 566.86], [1438.76, 569.94], [1434.79, 574.34], [1408.67, 603.31], [1407.79, 604.29], [1400.37, 612.49], [1400.15, 612.74], [1380.9, 634.04], [1377.11, 638.24], [1372.78, 634.32], [1364.96, 627.37], [1356.86, 619.92], [1320.27, 587.56], [1304.69, 573.77], [1296.96, 566.91], [1292.45, 562.82], [1290.26, 560.81], [1283.12, 554.06], [1282.9, 553.87], [1268.13, 539.62], [1258.21, 530.61], [1238.49, 512.42], [1234.01, 508.32], [1237.34, 504.69], [1239.06, 502.8], [1256.89, 483.32], [1290.59, 446.52], [1292.09, 444.88]], [[1356.62, 369.47], [1358.45, 367.34], [1362.53, 362.59], [1368.11, 367.72], [1375.58, 374.59], [1395.42, 392.83], [1404.4, 401.08], [1434.08, 428.36], [1447.35, 440.56], [1450.6, 443.55], [1504.33, 490.7], [1507.73, 493.67], [1503.49, 498.37], [1448.57, 559.15], [1443.46, 564.75], [1439.75, 561.63], [1422.53, 545.28], [1335.99, 465.34], [1305.17, 437.94], [1301.28, 434.23], [1305.17, 430.18], [1318.29, 417.82], [1330.31, 403.76], [1343.89, 384.29], [1356.62, 369.47]], [[1282.01, 288.33], [1314.29, 318.07], [1356.17, 356.73], [1358.11, 358.52], [1353.9, 363.43], [1352.07, 365.56], [1339.15, 380.61], [1325.56, 400.08], [1313.94, 413.67], [1300.94, 425.92], [1296.55, 430.49], [1291.22, 425.63], [1155.35, 301.86], [1151.7, 298.53], [1156.06, 293.73], [1156.73, 292.99], [1208.81, 235.71], [1210.46, 233.9], [1216.75, 226.98], [1220.56, 230.58], [1282.01, 288.33]], [[1408.11, 302.34], [1409.71, 303.62], [1387.62, 327.04], [1368.14, 347.69], [1366.52, 349.41], [1362.13, 354.06], [1360.24, 352.32], [1320.57, 315.7], [1324.88, 311.06], [1326.21, 309.62], [1364.25, 268.61], [1366.1, 268.26], [1366.7, 268.54], [1404.81, 299.64], [1408.11, 302.34]], [[1292.07, 434.53], [1286.93, 440.15], [1285.42, 441.8], [1251.73, 478.59], [1233.89, 498.08], [1232.17, 499.96], [1228.77, 503.67], [1223.52, 499.18], [1215.95, 492.69], [1199.59, 478.17], [1193.24, 472.54], [1160.38, 443.38], [1147.48, 431.93], [1109.35, 398.09], [1087.13, 378.36], [1082.69, 374.44], [1087.68, 368.94], [1123.66, 329.37], [1141.03, 310.26], [1142.78, 308.3], [1147.66, 302.96], [1151.31, 306.29], [1287.18, 430.06], [1292.07, 434.53]], [[1287.28, 1329.38], [1291.97, 1333.65], [1289.69, 1336.1], [1254.93, 1373.27], [1254.76, 1372.97], [1247.59, 1377.14], [1241.8, 1381.75], [1229.95, 1394.53], [1225.5, 1399.13], [1224.46, 1398.17], [1222.42, 1396.3], [1206.17, 1381.47], [1182.38, 1359.76], [1167.17, 1345.86], [1156.72, 1336.32], [1151.84, 1331.87], [1138.13, 1319.36], [1091.73, 1276.53], [1089.84, 1274.78], [1084.63, 1269.98], [1088.52, 1265.69], [1141.22, 1207.54], [1142.63, 1206.0], [1146.86, 1201.31], [1151.86, 1205.89], [1287.28, 1329.38]], [[1203.38, 1139.78], [1223.19, 1118.85], [1225.96, 1115.92], [1229.4, 1112.27], [1233.79, 1116.16], [1279.99, 1159.24], [1337.47, 1212.86], [1365.14, 1238.54], [1371.52, 1244.82], [1369.53, 1247.04], [1366.56, 1250.36], [1350.71, 1268.03], [1301.41, 1323.21], [1296.69, 1328.49], [1292.0, 1324.21], [1156.58, 1200.72], [1151.57, 1196.13], [1154.92, 1192.47], [1157.01, 1190.15], [1178.85, 1166.18], [1190.09, 1153.83], [1201.23, 1142.06], [1203.38, 1139.78]], [[1388.68, 785.47], [1321.34, 724.43], [1318.61, 721.96], [1314.53, 718.26], [1317.71, 715.17], [1356.03, 672.01], [1357.08, 670.85], [1373.48, 652.7], [1377.6, 648.14], [1383.0, 653.08], [1389.35, 658.89], [1390.91, 660.37], [1391.45, 660.87], [1406.38, 674.67], [1409.17, 677.24], [1420.64, 687.55], [1421.16, 688.05], [1426.89, 693.49], [1434.61, 700.06], [1493.38, 754.19], [1517.57, 776.8], [1521.77, 780.47], [1518.15, 784.44], [1498.92, 805.86], [1494.87, 810.36], [1485.21, 821.08], [1483.66, 822.81], [1477.67, 829.46], [1475.08, 832.32], [1463.07, 846.16], [1459.72, 849.75], [1456.87, 847.04], [1444.26, 835.82], [1440.19, 832.2], [1412.0, 806.59], [1399.02, 794.83], [1396.23, 792.31], [1388.68, 785.47]], [[1147.13, 603.28], [1150.84, 598.3], [1160.54, 586.92], [1192.54, 553.67], [1194.49, 551.54], [1199.48, 546.08], [1222.2, 521.23], [1225.2, 517.96], [1229.29, 513.48], [1233.75, 517.58], [1253.48, 535.78], [1263.35, 544.73], [1278.12, 558.98], [1278.36, 559.2], [1285.49, 565.94], [1287.74, 567.99], [1292.28, 572.11], [1300.04, 579.01], [1315.64, 592.8], [1352.17, 625.12], [1360.27, 632.56], [1368.11, 639.53], [1372.42, 643.43], [1368.29, 648.0], [1351.88, 666.16], [1350.81, 667.35], [1312.65, 710.33], [1309.24, 713.63], [1305.23, 710.26], [1302.89, 708.28], [1272.79, 682.84], [1257.61, 670.0], [1253.73, 674.59], [1268.91, 687.42], [1299.02, 712.86], [1301.37, 714.85], [1305.08, 717.97], [1300.72, 722.79], [1298.23, 725.55], [1294.52, 729.65], [1286.15, 738.91], [1283.45, 741.91], [1248.22, 780.92], [1239.83, 790.19], [1237.33, 792.95], [1234.34, 796.26], [1215.04, 817.61], [1201.77, 832.32], [1176.2, 860.61], [1173.97, 863.08], [1170.36, 859.8], [1168.02, 857.67], [1123.94, 817.79], [1108.27, 803.62], [1096.92, 793.35], [1033.32, 735.8], [1030.16, 732.93], [1034.13, 728.61], [1084.32, 673.85], [1092.65, 664.58], [1097.08, 659.64], [1100.39, 656.13], [1131.84, 620.57], [1138.44, 613.13], [1147.13, 603.28]], [[1085.56, 1054.69], [1071.21, 1041.93], [1067.51, 1038.65], [1048.32, 1021.6], [1043.61, 1017.41], [1052.37, 1007.77], [1065.25, 993.59], [1076.47, 981.23], [1079.46, 977.94], [1084.77, 982.69], [1103.15, 999.16], [1106.1, 1001.8], [1121.42, 1015.54], [1152.89, 1043.73], [1166.97, 1056.35], [1183.33, 1071.0], [1219.9, 1103.79], [1224.92, 1108.28], [1221.6, 1111.79], [1218.83, 1114.73], [1199.02, 1135.66], [1196.87, 1137.94], [1187.71, 1147.62], [1183.88, 1144.21], [1178.0, 1139.0], [1174.24, 1135.53], [1144.19, 1107.73], [1136.02, 1100.18], [1130.81, 1095.47], [1091.86, 1060.29], [1085.56, 1054.69]], [[1091.77, 974.87], [1086.5, 970.15], [1089.76, 966.52], [1095.23, 971.45], [1229.21, 1092.15], [1243.53, 1105.01], [1374.89, 1223.33], [1377.62, 1225.79], [1383.18, 1230.79], [1378.13, 1236.59], [1372.39, 1230.95], [1344.62, 1205.17], [1287.15, 1151.56], [1240.85, 1108.39], [1234.26, 1102.54], [1226.91, 1095.97], [1190.33, 1063.18], [1173.98, 1048.53], [1159.9, 1035.91], [1128.43, 1007.72], [1113.1, 993.98], [1110.15, 991.34], [1091.77, 974.87]], [[1356.53, 1528.22], [1366.99, 1537.77], [1368.85, 1539.46], [1372.47, 1542.77], [1369.87, 1545.68], [1315.7, 1606.4], [1313.4, 1608.99], [1311.44, 1611.12], [1233.59, 1539.46], [1223.81, 1531.21], [1220.91, 1534.65], [1223.65, 1531.08], [1217.0, 1525.98], [1171.53, 1484.69], [1167.55, 1481.11], [1169.89, 1478.44], [1207.09, 1436.66], [1220.81, 1424.74], [1226.58, 1420.2], [1229.32, 1417.15], [1231.77, 1414.43], [1233.82, 1416.3], [1235.12, 1417.49], [1356.53, 1528.22]], [[1300.91, 1341.8], [1348.27, 1384.92], [1349.04, 1385.62], [1400.32, 1431.98], [1411.7, 1442.44], [1428.31, 1457.68], [1433.79, 1462.73], [1436.45, 1465.17], [1439.57, 1468.03], [1437.5, 1470.33], [1381.4, 1532.8], [1377.14, 1537.55], [1373.57, 1534.29], [1371.71, 1532.6], [1361.25, 1523.05], [1239.84, 1412.32], [1238.54, 1411.14], [1236.58, 1409.34], [1241.01, 1404.84], [1252.12, 1390.62], [1260.1, 1378.64], [1259.72, 1378.39], [1294.8, 1340.88], [1297.15, 1338.37], [1300.91, 1341.8]], [[1393.99, 1264.78], [1419.64, 1287.28], [1466.21, 1328.14], [1473.98, 1334.91], [1516.45, 1372.13], [1522.96, 1377.85], [1518.73, 1382.42], [1515.13, 1386.32], [1497.55, 1405.31], [1449.5, 1457.61], [1444.35, 1462.91], [1441.18, 1460.01], [1438.53, 1457.58], [1433.05, 1452.53], [1416.44, 1437.28], [1405.04, 1426.8], [1353.75, 1380.44], [1352.98, 1379.74], [1305.63, 1336.62], [1301.87, 1333.2], [1306.63, 1327.87], [1355.92, 1272.7], [1371.77, 1255.03], [1374.74, 1251.71], [1376.65, 1249.58], [1382.78, 1254.96], [1385.34, 1257.21], [1393.99, 1264.78]], [[1155.3, 1493.65], [1161.39, 1487.67], [1165.49, 1491.37], [1211.23, 1532.89], [1215.48, 1536.15], [1211.61, 1540.39], [1207.42, 1536.91], [1159.28, 1496.85], [1155.3, 1493.65]], [[1919.68, 2309.66], [1918.33, 2254.78], [1924.27, 2257.44], [1939.23, 2258.1], [1955.93, 2255.22], [1967.0, 2252.65], [1976.82, 2251.59], [1985.88, 2253.85], [2014.18, 2277.72], [2013.04, 2279.04], [2017.29, 2282.71], [2014.48, 2285.8], [1979.95, 2321.02], [1977.41, 2323.61], [1975.78, 2325.27], [1963.03, 2338.28], [1956.73, 2344.69], [1932.18, 2367.18], [1930.06, 2369.07], [1925.71, 2348.15], [1921.3, 2326.63], [1919.68, 2309.66]], [[1915.57, 2205.56], [1911.84, 2188.11], [1915.14, 2190.51], [1932.28, 2197.75], [1938.68, 2201.2], [1974.76, 2235.23], [1994.6, 2256.62], [1987.52, 2250.65], [1977.07, 2248.05], [1966.41, 2249.19], [1955.24, 2251.78], [1939.01, 2254.59], [1925.09, 2253.97], [1918.23, 2250.9], [1918.22, 2250.36], [1917.94, 2230.66], [1915.57, 2205.56]], [[1906.96, 2180.24], [1909.9, 2179.21], [1901.49, 2155.04], [1890.37, 2132.26], [1893.97, 2128.4], [1943.72, 2078.62], [1948.26, 2074.08], [1952.17, 2077.91], [2082.63, 2206.4], [2087.03, 2210.5], [2082.76, 2214.61], [2025.67, 2273.85], [2022.07, 2277.59], [2017.61, 2273.74], [2016.47, 2275.06], [1977.25, 2232.77], [1940.75, 2198.33], [1933.8, 2194.59], [1916.88, 2187.44], [1910.75, 2182.99], [1910.08, 2179.84], [1907.25, 2180.45], [1906.96, 2180.24]], [[2161.72, 2142.54], [2165.98, 2146.67], [2297.25, 2273.68], [2302.54, 2278.76], [2299.72, 2281.61], [2267.83, 2314.11], [2253.9, 2328.64], [2241.4, 2341.67], [2236.29, 2347.01], [2231.22, 2342.06], [2099.94, 2214.58], [2095.65, 2210.42], [2099.94, 2206.04], [2157.87, 2146.48], [2161.72, 2142.54]], [[2165.96, 2138.29], [2170.05, 2134.3], [2207.63, 2095.83], [2222.48, 2080.93], [2243.2, 2060.14], [2246.7, 2056.63], [2250.27, 2060.07], [2261.57, 2070.99], [2264.3, 2073.63], [2368.68, 2174.39], [2381.64, 2186.9], [2386.68, 2191.76], [2381.89, 2196.24], [2364.22, 2215.26], [2342.02, 2238.61], [2312.15, 2268.94], [2306.74, 2274.48], [2301.41, 2269.36], [2170.16, 2142.36], [2165.96, 2138.29]], [[2233.05, 2029.52], [2161.11, 1959.45], [2153.43, 1952.24], [2159.37, 1946.22], [2167.2, 1953.8], [2252.1, 2036.01], [2263.42, 2046.96], [2394.07, 2173.48], [2399.61, 2178.85], [2394.18, 2184.42], [2388.93, 2179.35], [2375.97, 2166.84], [2271.6, 2066.07], [2268.87, 2063.44], [2257.56, 2052.52], [2251.89, 2047.04], [2248.24, 2050.82], [2251.82, 2046.98], [2244.92, 2040.57], [2233.05, 2029.52]], [[2228.51, 1875.37], [2232.94, 1879.65], [2277.44, 1933.31], [2302.47, 1960.86], [2336.09, 2001.55], [2360.34, 2030.21], [2440.4, 2128.15], [2444.33, 2132.96], [2434.25, 2143.3], [2409.97, 2168.23], [2406.94, 2171.33], [2401.37, 2165.94], [2270.72, 2039.42], [2259.4, 2028.47], [2174.51, 1946.26], [2166.73, 1938.73], [2169.01, 1936.4], [2226.04, 1877.89], [2228.51, 1875.37]], [[2252.12, 1850.62], [2281.25, 1819.67], [2290.44, 1810.68], [2303.63, 1797.76], [2308.97, 1792.53], [2310.2, 1791.31], [2311.62, 1790.15], [2319.95, 1785.94], [2323.96, 1783.83], [2324.28, 1784.34], [2325.22, 1785.9], [2336.25, 1804.06], [2346.92, 1821.6], [2349.31, 1825.54], [2368.25, 1855.76], [2370.34, 1859.2], [2372.74, 1863.13], [2370.46, 1864.53], [2366.18, 1867.17], [2327.46, 1890.96], [2313.43, 1899.58], [2310.0, 1901.69], [2313.14, 1906.8], [2316.57, 1904.69], [2330.6, 1896.07], [2369.32, 1872.28], [2373.6, 1869.64], [2375.92, 1868.22], [2377.35, 1870.44], [2398.14, 1902.84], [2423.19, 1943.14], [2437.42, 1965.27], [2447.04, 1980.55], [2451.73, 1988.02], [2456.48, 1995.72], [2501.27, 2068.41], [2504.66, 2073.92], [2500.68, 2077.37], [2481.77, 2093.76], [2461.01, 2116.84], [2459.52, 2118.57], [2448.64, 2128.75], [2445.05, 2124.35], [2364.96, 2026.37], [2340.69, 1997.7], [2307.01, 1956.93], [2281.97, 1929.38], [2237.35, 1875.56], [2232.67, 1871.04], [2236.59, 1866.91], [2248.03, 1854.85], [2252.12, 1850.62]], [[2306.19, 1786.85], [2304.77, 1788.24], [2299.43, 1793.47], [2286.24, 1806.39], [2276.96, 1815.47], [2247.78, 1846.48], [2243.7, 1850.7], [2232.24, 1862.78], [2228.36, 1866.86], [2223.77, 1862.38], [2048.24, 1691.07], [2044.91, 1687.81], [2046.9, 1685.65], [2052.0, 1679.69], [2055.61, 1675.42], [2057.26, 1673.37], [2063.71, 1666.53], [2081.82, 1647.35], [2085.76, 1643.18], [2099.26, 1629.23], [2107.91, 1620.3], [2106.68, 1619.11], [2115.96, 1613.07], [2121.14, 1608.74], [2125.06, 1605.46], [2126.0, 1604.39], [2129.3, 1607.55], [2178.34, 1654.73], [2204.83, 1680.21], [2214.49, 1689.51], [2238.02, 1712.14], [2252.55, 1726.13], [2260.22, 1733.51], [2265.75, 1736.81], [2272.62, 1738.19], [2296.1, 1738.12], [2297.5, 1740.37], [2297.47, 1741.11], [2297.97, 1741.13], [2301.71, 1747.12], [2314.95, 1768.37], [2321.25, 1778.47], [2317.2, 1780.61], [2308.32, 1785.09], [2306.19, 1786.85]], [[2265.11, 1727.11], [2258.1, 1720.36], [2243.56, 1706.38], [2220.04, 1683.75], [2210.38, 1674.45], [2183.89, 1648.96], [2134.84, 1601.78], [2131.29, 1598.38], [2135.52, 1593.57], [2140.83, 1587.54], [2156.2, 1569.32], [2160.16, 1572.76], [2179.65, 1550.38], [2179.87, 1550.13], [2181.3, 1552.33], [2190.77, 1566.14], [2212.0, 1600.68], [2232.29, 1633.69], [2240.5, 1647.06], [2248.96, 1660.82], [2267.8, 1691.48], [2284.43, 1718.93], [2291.22, 1730.13], [2273.4, 1730.19], [2268.67, 1729.24], [2265.11, 1727.11]], [[2238.25, 1630.03], [2217.96, 1597.01], [2196.64, 1562.32], [2187.12, 1548.44], [2184.61, 1544.59], [2190.66, 1537.16], [2216.27, 1504.92], [2218.38, 1502.26], [2221.87, 1498.14], [2223.21, 1499.12], [2249.61, 1515.53], [2265.29, 1522.21], [2264.31, 1523.62], [2281.91, 1535.81], [2338.47, 1574.99], [2340.46, 1572.11], [2338.47, 1574.99], [2343.97, 1578.79], [2421.08, 1632.21], [2418.49, 1635.17], [2416.33, 1638.3], [2412.25, 1644.23], [2408.44, 1650.94], [2404.72, 1659.27], [2402.23, 1667.2], [2397.86, 1683.18], [2393.99, 1697.34], [2393.35, 1699.65], [2390.88, 1708.63], [2388.72, 1715.59], [2386.81, 1724.79], [2382.34, 1743.78], [2382.16, 1744.53], [2364.47, 1740.18], [2331.94, 1732.19], [2313.59, 1727.68], [2297.98, 1727.12], [2297.96, 1727.74], [2290.42, 1715.31], [2275.34, 1690.42], [2279.9, 1687.69], [2283.66, 1685.48], [2302.39, 1674.46], [2304.0, 1673.52], [2322.38, 1662.82], [2325.65, 1649.77], [2337.77, 1602.3], [2338.9, 1596.98], [2333.03, 1595.73], [2331.92, 1600.94], [2319.83, 1648.3], [2317.18, 1658.91], [2300.98, 1668.34], [2299.36, 1669.29], [2280.62, 1680.31], [2276.84, 1682.53], [2272.22, 1685.3], [2254.92, 1657.16], [2246.46, 1643.39], [2238.25, 1630.03]], [[2228.53, 1491.23], [2186.32, 1464.64], [2175.66, 1457.98], [2176.65, 1456.54], [2161.29, 1445.97], [2154.94, 1441.59], [2144.84, 1433.9], [2135.48, 1426.45], [2128.43, 1420.15], [2121.49, 1413.27], [2101.08, 1394.29], [2095.78, 1388.15], [2071.35, 1356.88], [2074.23, 1354.9], [2072.15, 1351.86], [2067.72, 1344.28], [2065.52, 1340.81], [2068.87, 1338.5], [2106.28, 1310.14], [2159.65, 1268.8], [2176.41, 1252.54], [2184.23, 1246.08], [2187.42, 1249.24], [2188.97, 1250.77], [2213.23, 1274.75], [2221.47, 1281.96], [2242.98, 1300.54], [2246.86, 1304.07], [2242.4, 1307.64], [2240.41, 1309.24], [2168.7, 1366.77], [2162.46, 1370.24], [2137.53, 1384.1], [2140.45, 1389.35], [2165.38, 1375.49], [2170.23, 1372.79], [2175.54, 1376.41], [2255.39, 1430.64], [2260.46, 1434.08], [2318.25, 1473.57], [2375.72, 1513.34], [2373.3, 1517.57], [2353.09, 1547.86], [2348.05, 1554.9], [2344.78, 1559.56], [2339.85, 1567.43], [2285.9, 1530.05], [2268.3, 1517.87], [2267.31, 1519.3], [2256.44, 1510.53], [2237.44, 1496.57], [2228.53, 1491.23]], [[2175.43, 1369.07], [2244.17, 1313.92], [2246.16, 1312.32], [2251.32, 1308.18], [2255.0, 1311.66], [2268.77, 1324.7], [2284.41, 1338.0], [2298.59, 1348.31], [2307.86, 1354.45], [2309.6, 1355.6], [2306.76, 1360.09], [2305.43, 1362.19], [2295.26, 1378.27], [2262.72, 1425.5], [2261.37, 1427.45], [2258.76, 1425.67], [2178.91, 1371.44], [2175.43, 1369.07]], [[2218.83, 1268.72], [2194.76, 1244.92], [2193.21, 1243.38], [2190.42, 1240.62], [2194.13, 1237.15], [2225.23, 1205.16], [2260.73, 1165.67], [2317.05, 1104.51], [2318.73, 1102.68], [2322.06, 1099.06], [2324.98, 1101.64], [2346.62, 1120.81], [2382.58, 1152.66], [2383.95, 1153.87], [2379.59, 1158.93], [2377.73, 1161.1], [2365.74, 1175.01], [2259.43, 1291.86], [2257.2, 1294.17], [2255.39, 1296.04], [2253.0, 1298.52], [2248.44, 1294.38], [2226.87, 1275.75], [2218.83, 1268.72]], [[2256.0, 1161.36], [2220.56, 1200.78], [2189.65, 1232.58], [2183.01, 1238.78], [2172.14, 1247.76], [2155.45, 1263.96], [2102.38, 1305.06], [2065.12, 1333.31], [2062.28, 1335.26], [2056.12, 1324.06], [2038.43, 1295.24], [2031.88, 1286.48], [2033.8, 1284.68], [2034.91, 1283.65], [2063.32, 1258.01], [2066.23, 1255.38], [2125.08, 1199.68], [2132.23, 1192.91], [2140.83, 1185.12], [2196.14, 1134.89], [2206.66, 1124.66], [2203.58, 1121.49], [2206.8, 1124.51], [2213.07, 1117.83], [2237.64, 1089.93], [2266.41, 1057.57], [2267.52, 1056.04], [2270.47, 1051.97], [2277.82, 1058.56], [2279.32, 1059.9], [2313.12, 1090.44], [2317.39, 1094.68], [2314.01, 1098.35], [2312.34, 1100.17], [2256.0, 1161.36]], [[1725.66, 1989.9], [1729.59, 1985.41], [1734.62, 1989.8], [1730.36, 1994.19], [1725.66, 1989.9]], [[1852.44, 2097.83], [1868.69, 2117.6], [1880.54, 2136.06], [1891.78, 2159.09], [1899.88, 2182.35], [1905.17, 2207.16], [1907.45, 2231.23], [1907.61, 2242.54], [1906.04, 2241.2], [1899.56, 2233.86], [1895.41, 2227.05], [1869.76, 2159.47], [1868.41, 2152.6], [1867.24, 2152.83], [1867.18, 2152.66], [1868.36, 2152.37], [1864.97, 2138.5], [1858.48, 2120.86], [1849.26, 2107.91], [1830.54, 2089.37], [1804.67, 2064.22], [1751.6, 2012.83], [1746.81, 2008.32], [1737.89, 2000.79], [1743.38, 1995.13], [1752.47, 2003.11], [1772.32, 2020.63], [1852.44, 2097.83]], [[1802.67, 1932.15], [1808.38, 1937.47], [1939.2, 2065.23], [1943.97, 2069.89], [1939.48, 2074.37], [1889.65, 2124.23], [1887.15, 2126.91], [1877.2, 2111.41], [1860.17, 2090.69], [1779.44, 2012.91], [1759.41, 1995.23], [1752.07, 1988.79], [1758.56, 1981.65], [1772.15, 1958.87], [1796.98, 1937.13], [1802.67, 1932.15]], [[1828.06, 1904.52], [1854.45, 1883.5], [1867.81, 1870.19], [1872.93, 1865.1], [1876.36, 1868.4], [2007.58, 1994.75], [2012.66, 1999.64], [2009.36, 2003.01], [1952.63, 2061.08], [1948.19, 2065.62], [1943.39, 2060.93], [1812.52, 1933.13], [1807.06, 1928.04], [1809.8, 1925.35], [1820.55, 1916.55], [1830.47, 1907.04], [1828.06, 1904.52]], [[1928.02, 1809.72], [1953.07, 1787.63], [1958.78, 1782.46], [1964.79, 1787.22], [1967.22, 1789.26], [1973.42, 1794.5], [2088.19, 1902.94], [2134.0, 1948.4], [2141.77, 1955.7], [2137.63, 1960.11], [2124.16, 1974.18], [2103.17, 1996.87], [2080.99, 2018.83], [2066.52, 2034.43], [2062.22, 2039.03], [2056.69, 2033.7], [2031.87, 2009.81], [2024.62, 2002.83], [2019.0, 1997.42], [2016.92, 1999.58], [2019.0, 1997.42], [2011.74, 1990.43], [1880.52, 1864.08], [1877.15, 1860.84], [1884.34, 1853.47], [1907.23, 1830.0], [1918.74, 1818.2], [1928.02, 1809.72]], [[1902.22, 1825.12], [1879.33, 1848.58], [1871.98, 1856.11], [1868.23, 1852.87], [1875.25, 1845.13], [1895.53, 1822.78], [1896.5, 1823.9], [1943.14, 1783.59], [1945.59, 1781.36], [1950.91, 1776.52], [1953.11, 1778.16], [1948.41, 1782.41], [1923.34, 1804.52], [1913.87, 1813.17], [1902.22, 1825.12]], [[1931.98, 1772.35], [1933.52, 1768.72], [1934.83, 1763.6], [1939.61, 1767.68], [1942.89, 1770.3], [1938.86, 1773.96], [1936.5, 1776.11], [1921.81, 1788.8], [1931.98, 1772.35]], [[1835.89, 1654.59], [1785.17, 1606.03], [1755.88, 1578.08], [1741.72, 1564.7], [1717.47, 1541.91], [1690.75, 1516.76], [1690.49, 1516.52], [1688.91, 1515.03], [1678.62, 1506.15], [1637.45, 1468.82], [1613.15, 1446.78], [1592.4, 1427.97], [1588.66, 1424.59], [1584.41, 1420.63], [1542.66, 1381.72], [1534.44, 1374.06], [1537.89, 1370.11], [1538.25, 1369.7], [1546.54, 1377.41], [1578.96, 1407.56], [1583.13, 1411.59], [1620.48, 1447.6], [1664.45, 1487.42], [1675.06, 1496.88], [1676.21, 1497.91], [1683.03, 1504.25], [1699.23, 1518.91], [1701.45, 1520.96], [1702.16, 1521.57], [1720.18, 1538.64], [1744.67, 1561.38], [1753.77, 1569.87], [1763.05, 1578.21], [1805.31, 1618.02], [1836.32, 1647.01], [1836.94, 1647.57], [1848.32, 1658.2], [1863.24, 1672.08], [1870.59, 1679.0], [1876.07, 1683.95], [1951.24, 1751.88], [1952.59, 1753.21], [1957.54, 1757.62], [1950.88, 1763.25], [1946.3, 1759.58], [1931.93, 1747.32], [1872.03, 1690.75], [1857.55, 1677.07], [1840.7, 1659.2], [1835.89, 1654.59]], [[1877.71, 1671.28], [1870.42, 1664.41], [1855.48, 1650.52], [1844.03, 1639.82], [1843.4, 1639.26], [1812.5, 1610.36], [1770.16, 1570.49], [1760.86, 1562.13], [1751.83, 1553.7], [1727.37, 1530.98], [1709.21, 1513.78], [1708.44, 1513.12], [1706.3, 1511.15], [1690.13, 1496.51], [1683.28, 1490.15], [1682.05, 1489.05], [1671.47, 1479.61], [1627.65, 1439.92], [1590.42, 1404.03], [1586.18, 1399.94], [1553.7, 1369.72], [1545.24, 1361.86], [1549.23, 1357.49], [1551.13, 1355.52], [1567.96, 1337.24], [1572.94, 1331.83], [1576.14, 1328.35], [1581.13, 1322.83], [1609.85, 1291.0], [1611.23, 1289.47], [1617.1, 1282.96], [1621.86, 1277.69], [1626.33, 1281.74], [1628.38, 1283.61], [1654.26, 1307.08], [1685.41, 1335.34], [1714.11, 1361.36], [1723.04, 1369.46], [1771.31, 1414.31], [1797.98, 1439.09], [1799.18, 1440.2], [1800.71, 1441.86], [1805.43, 1445.85], [1819.27, 1458.61], [1842.94, 1480.66], [1852.3, 1488.41], [1867.7, 1502.03], [2046.27, 1666.1], [2050.37, 1670.76], [2050.21, 1670.96], [2046.67, 1675.16], [2041.66, 1681.0], [2037.79, 1685.21], [2039.03, 1686.35], [2030.92, 1691.32], [2029.08, 1692.44], [1974.06, 1747.85], [1968.07, 1752.95], [1959.77, 1745.54], [1958.44, 1744.24], [1883.11, 1676.16], [1877.71, 1671.28]], [[1874.08, 1491.85], [1869.69, 1495.78], [1856.2, 1483.85], [1846.9, 1476.15], [1823.34, 1454.21], [1809.4, 1441.36], [1804.87, 1437.52], [1803.43, 1435.96], [1802.07, 1434.69], [1775.4, 1409.91], [1729.26, 1367.05], [1731.37, 1364.68], [1734.82, 1360.82], [1743.91, 1350.63], [1756.52, 1335.74], [1758.04, 1329.96], [1759.5, 1324.4], [1758.22, 1316.04], [1754.33, 1309.22], [1747.89, 1302.51], [1726.94, 1283.01], [1720.8, 1277.31], [1698.34, 1256.55], [1671.39, 1231.65], [1667.17, 1227.74], [1674.67, 1219.25], [1687.21, 1205.05], [1689.67, 1202.26], [1697.48, 1193.99], [1702.29, 1188.89], [1715.19, 1174.77], [1719.47, 1170.1], [1717.25, 1168.07], [1719.51, 1170.06], [1752.59, 1132.49], [1753.52, 1131.14], [1758.62, 1125.31], [1764.78, 1118.71], [1795.63, 1085.65], [1797.16, 1084.02], [1818.45, 1061.19], [1820.27, 1059.24], [1822.13, 1057.24], [1825.92, 1061.35], [1838.69, 1075.21], [1843.36, 1080.78], [1866.53, 1108.4], [1894.56, 1141.81], [1922.02, 1176.24], [1944.05, 1202.74], [1950.15, 1210.07], [1954.94, 1215.85], [1985.64, 1252.86], [1991.03, 1248.39], [1985.75, 1252.99], [1990.95, 1258.95], [1993.17, 1261.48], [1997.72, 1266.78], [2013.44, 1285.82], [2015.71, 1288.58], [2013.31, 1290.43], [2011.53, 1291.74], [2010.19, 1292.72], [1988.46, 1301.0], [1984.22, 1302.68], [1971.92, 1306.38], [1967.17, 1307.22], [1962.09, 1306.82], [1961.38, 1315.63], [1967.6, 1316.13], [1973.97, 1314.99], [1987.13, 1311.04], [1991.66, 1309.24], [2014.46, 1300.55], [2016.77, 1298.86], [2018.63, 1297.49], [2021.17, 1295.54], [2026.84, 1303.12], [2044.01, 1331.1], [2051.91, 1345.45], [2058.04, 1342.08], [2052.13, 1345.82], [2055.75, 1351.56], [2060.31, 1359.36], [2062.68, 1362.81], [2065.55, 1360.85], [2085.93, 1398.25], [2087.89, 1401.76], [2086.38, 1403.17], [2066.58, 1421.12], [2042.39, 1447.05], [2016.69, 1474.6], [1990.27, 1502.71], [1994.65, 1506.82], [2021.07, 1478.7], [2046.78, 1451.15], [2070.8, 1425.4], [2090.44, 1407.59], [2091.05, 1407.02], [2093.6, 1411.09], [2114.49, 1441.53], [2113.01, 1442.47], [2131.62, 1471.7], [2129.58, 1473.76], [2053.58, 1550.44], [2057.84, 1554.66], [2133.84, 1477.98], [2134.8, 1477.01], [2137.13, 1481.02], [2168.88, 1535.56], [2170.92, 1539.07], [2169.09, 1541.18], [2149.6, 1563.57], [2153.55, 1567.01], [2129.54, 1588.19], [2122.24, 1594.64], [2118.48, 1597.95], [2114.33, 1602.11], [2111.49, 1604.97], [2104.11, 1616.62], [2102.87, 1615.43], [2094.23, 1624.36], [2080.7, 1638.34], [2076.73, 1642.55], [2058.62, 1661.73], [2054.37, 1666.23], [2050.56, 1661.9], [1874.17, 1499.83], [1877.97, 1496.42], [1915.11, 1466.29], [1911.33, 1461.63], [1874.08, 1491.85]], [[1877.25, 1099.4], [1854.09, 1071.79], [1849.21, 1065.97], [1836.21, 1051.86], [1831.64, 1046.9], [1832.84, 1045.57], [1834.87, 1043.32], [1851.44, 1024.98], [1888.2, 984.3], [1891.74, 980.38], [1895.69, 983.97], [1912.25, 1000.01], [1983.01, 1064.4], [1992.34, 1072.9], [2022.02, 1099.98], [2035.24, 1112.04], [2032.25, 1115.22], [1994.91, 1154.89], [1978.98, 1174.71], [1973.08, 1181.34], [1959.08, 1197.09], [1958.29, 1197.97], [1954.82, 1193.79], [1932.88, 1167.4], [1905.39, 1132.94], [1877.25, 1099.4]], [[1959.83, 905.58], [1963.11, 908.52], [2084.57, 1017.66], [2099.65, 1031.22], [2106.99, 1037.82], [2114.63, 1044.8], [2195.84, 1119.14], [2197.8, 1120.94], [2190.09, 1128.45], [2134.89, 1178.57], [2129.3, 1183.63], [2127.34, 1181.9], [2094.39, 1151.37], [2091.28, 1154.72], [2094.29, 1151.28], [2050.77, 1113.34], [2043.61, 1107.3], [2028.18, 1093.22], [1998.5, 1066.15], [1989.17, 1057.64], [1918.51, 993.34], [1901.95, 977.3], [1897.87, 973.6], [1900.3, 970.92], [1921.37, 947.91], [1955.79, 910.02], [1959.83, 905.58]], [[1816.43, 765.07], [1820.64, 760.44], [1874.68, 700.94], [1879.62, 695.5], [1883.24, 698.79], [2017.11, 820.13], [2019.84, 822.6], [2022.86, 825.34], [2018.2, 830.61], [1963.83, 892.08], [1960.1, 896.29], [1956.68, 893.05], [1910.8, 849.47], [1820.16, 768.4], [1816.43, 765.07]], [[1932.79, 635.47], [1933.95, 636.51], [1939.35, 630.49], [1942.18, 628.51], [1945.2, 627.57], [1948.65, 627.44], [1951.08, 628.44], [1954.87, 631.42], [2084.87, 749.72], [2089.94, 754.33], [2087.07, 757.36], [2030.42, 817.2], [2026.91, 820.91], [2023.87, 818.15], [2021.14, 815.68], [1887.28, 694.35], [1883.31, 690.75], [1886.28, 687.56], [1906.01, 666.36], [1924.89, 645.3], [1932.79, 635.47]], [[1608.47, 1885.54], [1557.41, 1844.17], [1489.95, 1782.71], [1493.99, 1785.83], [1530.34, 1814.87], [1604.56, 1875.41], [1611.78, 1881.43], [1613.12, 1882.55], [1613.43, 1884.4], [1614.8, 1892.67], [1614.26, 1892.07], [1608.47, 1885.54]], [[1318.9, 1628.22], [1407.29, 1708.32], [1430.51, 1729.65], [1447.91, 1745.32], [1430.53, 1731.36], [1317.83, 1629.01], [1309.71, 1621.86], [1310.51, 1621.0], [1318.9, 1628.22]], [[1663.67, 770.06], [1734.19, 836.02], [1736.14, 837.83], [1731.78, 842.76], [1680.24, 901.09], [1677.18, 904.2], [1673.91, 907.56], [1671.28, 905.17], [1634.47, 871.32], [1627.09, 864.66], [1618.69, 857.14], [1609.71, 849.05], [1577.37, 820.12], [1574.07, 817.18], [1572.62, 815.87], [1560.49, 805.01], [1559.16, 803.81], [1557.4, 802.24], [1534.88, 782.71], [1530.97, 779.24], [1534.45, 775.36], [1589.76, 713.83], [1593.46, 709.31], [1598.2, 713.75], [1663.67, 770.06]], [[1815.49, 773.62], [1906.06, 854.61], [1951.86, 898.12], [1955.42, 901.51], [1951.35, 905.98], [1916.94, 943.87], [1895.86, 966.88], [1893.43, 969.57], [1889.53, 966.03], [1753.28, 842.59], [1748.47, 838.23], [1751.84, 834.51], [1805.63, 776.28], [1806.7, 775.19], [1811.63, 770.17], [1815.49, 773.62]], [[1874.45, 690.79], [1869.5, 696.23], [1815.45, 755.74], [1810.89, 760.76], [1806.7, 756.97], [1670.8, 633.92], [1666.43, 629.97], [1670.5, 625.18], [1726.68, 564.55], [1729.93, 561.23], [1733.31, 564.22], [1816.33, 637.52], [1869.8, 686.53], [1874.45, 690.79]], [[1722.34, 560.42], [1666.01, 621.2], [1661.98, 625.93], [1657.43, 621.79], [1522.71, 499.12], [1516.66, 493.6], [1521.2, 488.83], [1578.48, 429.02], [1581.87, 425.25], [1585.29, 428.37], [1652.36, 489.51], [1720.38, 552.35], [1725.5, 557.18], [1722.34, 560.42]], [[1801.7, 770.29], [1800.56, 771.46], [1746.67, 829.79], [1742.59, 834.28], [1738.97, 830.9], [1668.34, 764.85], [1602.88, 708.54], [1598.04, 704.01], [1603.13, 698.45], [1633.12, 664.84], [1657.62, 639.38], [1662.4, 634.42], [1666.77, 638.37], [1802.68, 761.42], [1806.77, 765.13], [1801.7, 770.29]], [[1717.02, 1163.8], [1712.44, 1159.64], [1689.02, 1138.2], [1666.83, 1117.99], [1659.41, 1111.22], [1630.96, 1085.15], [1629.58, 1083.52], [1629.09, 1082.38], [1629.18, 1081.09], [1629.97, 1079.59], [1659.27, 1048.48], [1663.63, 1043.85], [1725.25, 1099.31], [1746.4, 1118.36], [1748.66, 1120.38], [1752.18, 1123.55], [1748.78, 1127.45], [1747.85, 1128.79], [1717.02, 1163.8]], [[1883.74, 980.28], [1846.98, 1020.96], [1830.42, 1039.3], [1828.39, 1041.54], [1827.36, 1042.68], [1822.86, 1038.59], [1801.3, 1018.95], [1771.67, 991.65], [1747.63, 969.6], [1737.66, 960.46], [1716.53, 941.39], [1688.65, 916.22], [1685.17, 913.04], [1685.68, 912.52], [1688.94, 909.19], [1740.69, 850.63], [1744.18, 846.68], [1747.15, 849.37], [1883.39, 972.8], [1887.3, 976.35], [1883.74, 980.28]], [[1762.2, 1001.95], [1791.84, 1029.27], [1813.43, 1048.94], [1817.89, 1053.0], [1815.88, 1055.14], [1814.06, 1057.1], [1792.77, 1079.92], [1791.25, 1081.55], [1760.39, 1114.61], [1756.21, 1119.1], [1752.67, 1115.92], [1750.41, 1113.89], [1729.26, 1094.85], [1665.49, 1037.46], [1617.66, 992.24], [1613.76, 988.56], [1617.19, 984.69], [1637.98, 961.25], [1643.64, 954.86], [1653.71, 943.51], [1669.82, 925.35], [1670.53, 924.61], [1673.6, 921.44], [1679.25, 926.59], [1707.14, 951.78], [1728.24, 970.82], [1738.17, 979.92], [1762.2, 1001.95]], [[1752.23, 1328.44], [1751.06, 1332.9], [1739.38, 1346.69], [1730.35, 1356.82], [1726.89, 1360.69], [1724.84, 1362.99], [1718.14, 1356.92], [1689.45, 1330.9], [1658.29, 1302.63], [1632.41, 1279.17], [1630.36, 1277.3], [1625.88, 1273.24], [1629.25, 1269.53], [1642.73, 1254.69], [1663.16, 1232.21], [1667.32, 1236.06], [1694.27, 1260.96], [1716.73, 1281.71], [1722.85, 1287.4], [1743.68, 1306.78], [1749.49, 1312.84], [1752.46, 1318.05], [1753.38, 1324.08], [1752.23, 1328.44]], [[1841.66, 1884.74], [1847.45, 1876.27], [1859.83, 1862.3], [1864.22, 1857.34], [1867.75, 1860.38], [1862.87, 1865.23], [1849.79, 1878.26], [1841.66, 1884.74]], [[1696.98, 1959.08], [1721.67, 1978.52], [1724.31, 1980.81], [1720.49, 1985.18], [1717.6, 1982.54], [1708.6, 1974.27], [1701.4, 1967.75], [1684.86, 1952.73], [1672.41, 1941.8], [1663.96, 1934.45], [1661.44, 1932.35], [1640.66, 1915.09], [1633.9, 1909.11], [1628.87, 1904.78], [1625.9, 1902.07], [1623.31, 1899.63], [1623.07, 1895.24], [1625.11, 1895.38], [1630.69, 1897.36], [1632.84, 1899.39], [1633.75, 1898.44], [1633.99, 1898.52], [1631.04, 1902.45], [1635.25, 1905.6], [1656.07, 1923.38], [1658.23, 1925.2], [1661.49, 1928.15], [1684.24, 1948.7], [1696.98, 1959.08]], [[1623.54, 1917.26], [1623.46, 1914.35], [1623.46, 1913.98], [1625.69, 1915.9], [1623.54, 1917.26]], [[1622.67, 1891.23], [1622.4, 1889.64], [1623.3, 1890.37], [1624.3, 1891.32], [1623.0, 1891.23], [1622.67, 1891.23]], [[1615.5, 1905.58], [1615.46, 1914.4], [1615.04, 1909.51], [1615.04, 1907.59], [1615.5, 1905.58]], [[1747.26, 1973.27], [1742.71, 1978.27], [1739.44, 1975.43], [1744.52, 1970.83], [1753.63, 1962.58], [1747.26, 1973.27]], [[1481.32, 2741.06], [1463.16, 2707.38], [1426.29, 2636.61], [1412.61, 2610.34], [1397.15, 2580.68], [1364.32, 2517.66], [1362.07, 2513.44], [1343.23, 2477.9], [1336.15, 2464.55], [1341.4, 2461.18], [1346.87, 2457.68], [1356.6, 2452.8], [1395.45, 2433.64], [1400.52, 2431.59], [1405.34, 2430.2], [1409.41, 2430.75], [1411.77, 2432.55], [1414.14, 2436.11], [1424.44, 2456.16], [1434.05, 2474.31], [1437.25, 2479.56], [1440.77, 2482.27], [1444.84, 2483.69], [1449.06, 2483.39], [1473.18, 2472.6], [1488.04, 2466.91], [1513.8, 2458.98], [1568.07, 2439.97], [1578.56, 2436.02], [1583.02, 2434.93], [1587.2, 2434.07], [1587.24, 2435.19], [1588.59, 2454.99], [1590.49, 2482.89], [1585.23, 2483.45], [1576.28, 2484.41], [1543.67, 2493.5], [1521.23, 2499.75], [1517.13, 2500.82], [1502.5, 2504.63], [1460.28, 2517.9], [1459.92, 2517.88], [1459.07, 2517.03], [1456.37, 2512.97], [1453.15, 2506.42], [1449.15, 2498.88], [1443.85, 2501.7], [1447.81, 2509.14], [1451.16, 2515.97], [1454.41, 2520.85], [1457.24, 2523.68], [1460.97, 2523.98], [1504.16, 2510.4], [1518.64, 2506.62], [1522.79, 2505.55], [1545.28, 2499.28], [1577.41, 2490.32], [1585.87, 2489.41], [1590.82, 2488.89], [1591.62, 2508.07], [1592.52, 2529.93], [1592.61, 2532.22], [1593.82, 2562.01], [1595.13, 2594.13], [1596.34, 2623.91], [1596.45, 2626.44], [1597.46, 2651.3], [1598.02, 2662.67], [1599.95, 2701.44], [1601.26, 2728.35], [1601.41, 2731.51], [1599.17, 2731.65], [1595.61, 2732.29], [1592.52, 2733.69], [1586.26, 2736.53], [1547.77, 2755.88], [1544.31, 2757.62], [1518.37, 2771.19], [1508.49, 2776.36], [1502.56, 2779.46], [1491.92, 2760.75], [1489.26, 2755.8], [1484.81, 2747.53], [1481.32, 2741.06]], [[1566.02, 2434.33], [1511.93, 2453.28], [1486.08, 2461.23], [1470.88, 2467.05], [1447.57, 2477.48], [1445.65, 2477.62], [1443.66, 2476.92], [1441.8, 2475.49], [1439.27, 2471.34], [1429.76, 2453.38], [1419.32, 2433.07], [1416.21, 2428.38], [1411.78, 2425.01], [1404.89, 2424.09], [1398.56, 2425.91], [1393.0, 2428.16], [1353.93, 2447.43], [1343.9, 2452.45], [1338.16, 2456.13], [1333.34, 2459.22], [1324.22, 2441.9], [1306.14, 2407.18], [1303.03, 2408.8], [1306.1, 2407.12], [1289.18, 2376.34], [1293.63, 2373.62], [1351.1, 2341.72], [1363.91, 2334.31], [1371.83, 2330.81], [1380.26, 2328.66], [1386.43, 2328.02], [1568.08, 2322.84], [1579.92, 2322.56], [1588.03, 2323.01], [1594.74, 2323.91], [1597.11, 2324.52], [1593.13, 2342.8], [1589.47, 2342.61], [1585.19, 2342.7], [1581.08, 2344.76], [1579.37, 2349.63], [1577.23, 2379.0], [1576.4, 2406.42], [1577.95, 2412.72], [1582.71, 2414.98], [1586.89, 2415.06], [1587.04, 2428.02], [1586.76, 2428.04], [1581.71, 2429.08], [1576.78, 2430.28], [1566.02, 2434.33]], [[1066.79, 2008.31], [1071.55, 2012.94], [1079.17, 2021.01], [1082.53, 2024.76], [1078.67, 2020.94], [1070.45, 2013.39], [1066.79, 2008.31]], [[1379.82, 2187.97], [1384.69, 2166.24], [1391.33, 2167.67], [1386.53, 2189.45], [1382.43, 2188.56], [1379.82, 2187.97]], [[1328.7, 2465.42], [1337.05, 2481.18], [1355.89, 2516.72], [1358.12, 2520.92], [1390.94, 2583.91], [1406.4, 2613.57], [1420.08, 2639.84], [1454.76, 2706.4], [1452.65, 2706.55], [1406.17, 2709.93], [1398.85, 2704.55], [1385.87, 2696.06], [1375.14, 2684.97], [1353.35, 2661.2], [1344.44, 2650.68], [1339.99, 2644.75], [1328.25, 2626.15], [1306.18, 2586.02], [1279.96, 2532.32], [1265.46, 2498.63], [1259.22, 2481.75], [1255.99, 2466.67], [1257.57, 2454.52], [1263.12, 2446.58], [1279.45, 2429.6], [1297.18, 2417.19], [1301.64, 2413.7], [1318.02, 2445.15], [1328.69, 2465.41], [1331.79, 2463.78], [1328.7, 2465.42]], [[1300.85, 2588.78], [1323.08, 2629.2], [1335.05, 2648.16], [1339.74, 2654.42], [1348.85, 2665.17], [1370.77, 2689.08], [1382.02, 2700.71], [1395.43, 2709.48], [1396.91, 2710.57], [1383.04, 2711.52], [1326.19, 2712.8], [1290.46, 2714.14], [1276.2, 2713.89], [1267.39, 2712.73], [1257.07, 2710.69], [1248.37, 2706.38], [1243.69, 2702.7], [1241.27, 2700.78], [1225.75, 2685.11], [1210.93, 2663.31], [1206.27, 2656.46], [1197.0, 2639.28], [1190.13, 2620.13], [1182.95, 2593.58], [1176.7, 2574.87], [1173.95, 2566.66], [1171.94, 2560.07], [1169.55, 2552.18], [1168.17, 2541.63], [1169.16, 2534.26], [1171.47, 2527.14], [1175.35, 2519.86], [1175.44, 2519.69], [1176.67, 2518.54], [1174.61, 2516.35], [1176.74, 2518.47], [1185.45, 2509.75], [1200.23, 2501.82], [1220.44, 2489.28], [1234.17, 2480.13], [1242.9, 2473.22], [1249.68, 2465.83], [1250.14, 2465.17], [1249.91, 2466.91], [1253.44, 2483.43], [1259.89, 2500.86], [1274.51, 2534.82], [1300.85, 2588.78]], [[1904.18, 2250.14], [1907.76, 2252.14], [1909.19, 2310.29], [1910.91, 2328.19], [1915.43, 2350.28], [1920.74, 2375.8], [1918.7, 2376.78], [1916.45, 2377.85], [1910.31, 2350.53], [1909.21, 2345.6], [1884.21, 2230.04], [1879.39, 2208.44], [1878.96, 2206.24], [1888.19, 2230.58], [1893.1, 2238.62], [1900.41, 2246.9], [1904.18, 2250.14]], [[2238.81, 888.06], [2235.54, 891.68], [2180.29, 952.82], [2176.86, 956.61], [2172.55, 952.72], [2037.88, 830.84], [2035.47, 828.66], [2031.36, 824.94], [2034.78, 821.32], [2091.43, 761.49], [2094.4, 758.35], [2097.23, 760.86], [2206.85, 858.05], [2234.04, 883.58], [2238.81, 888.06]], [[2031.44, 833.11], [2033.85, 835.29], [2168.53, 957.17], [2172.82, 961.06], [2168.15, 966.19], [2114.31, 1025.31], [2109.47, 1030.63], [2104.33, 1026.01], [2089.24, 1012.45], [1967.79, 903.32], [1964.5, 900.37], [1968.32, 896.05], [2022.69, 834.58], [2027.31, 829.37], [2031.44, 833.11]], [[2314.37, 989.53], [2314.09, 990.49], [2313.56, 991.37], [2273.29, 1034.31], [2271.59, 1036.12], [2268.74, 1039.16], [2267.48, 1037.94], [2186.87, 965.02], [2181.64, 960.27], [2184.74, 956.84], [2239.99, 895.71], [2243.16, 892.2], [2247.4, 896.28], [2251.5, 900.22], [2307.56, 976.62], [2313.94, 987.2], [2314.37, 989.53]], [[2231.02, 1084.07], [2206.53, 1111.88], [2202.72, 1115.95], [2200.57, 1113.98], [2119.36, 1039.64], [2113.91, 1034.66], [2118.75, 1029.35], [2172.59, 970.23], [2176.93, 965.46], [2182.17, 970.21], [2262.7, 1043.06], [2264.65, 1044.93], [2260.37, 1050.86], [2259.52, 1052.03], [2231.02, 1084.07]], [[2085.8, 1156.01], [2082.26, 1159.91], [2055.78, 1190.47], [2051.99, 1194.72], [2048.44, 1197.93], [2042.8, 1202.6], [2027.51, 1215.09], [2012.22, 1227.62], [1998.14, 1238.71], [1995.61, 1240.87], [1994.55, 1241.67], [1965.72, 1206.91], [1962.17, 1202.64], [1963.57, 1201.07], [1977.56, 1185.33], [1983.56, 1178.58], [1999.43, 1158.83], [2036.62, 1119.33], [2039.75, 1116.0], [2044.82, 1120.28], [2085.8, 1156.01]], [[2060.58, 1194.7], [2087.05, 1164.15], [2090.56, 1160.28], [2121.2, 1188.68], [2122.57, 1189.89], [2119.0, 1193.26], [2060.23, 1248.89], [2057.4, 1251.45], [2028.94, 1277.13], [2027.78, 1278.21], [2026.38, 1279.52], [2024.25, 1276.92], [2008.43, 1257.76], [2003.74, 1252.31], [2001.49, 1249.74], [1998.71, 1246.55], [1999.63, 1245.85], [2002.2, 1243.66], [2016.23, 1232.61], [2031.56, 1220.04], [2046.87, 1207.55], [2052.63, 1202.77], [2056.54, 1199.23], [2060.58, 1194.7]], [[2098.03, 1401.01], [2116.64, 1418.32], [2123.63, 1425.25], [2130.96, 1431.8], [2140.54, 1439.42], [2150.83, 1447.25], [2157.32, 1451.73], [2172.69, 1462.31], [2173.65, 1460.9], [2181.86, 1469.78], [2210.46, 1489.95], [2207.55, 1493.39], [2205.31, 1496.21], [2179.75, 1528.39], [2178.06, 1530.46], [2177.95, 1530.27], [2146.2, 1475.74], [2141.6, 1467.83], [2137.06, 1470.47], [2141.49, 1467.65], [2121.87, 1436.83], [2117.44, 1439.65], [2120.33, 1437.67], [2099.46, 1407.25], [2096.38, 1402.34], [2098.03, 1401.01]], [[2091.6, 1394.02], [2093.87, 1396.65], [2093.31, 1397.11], [2092.06, 1394.87], [2091.6, 1394.02]], [[2217.34, 1492.66], [2218.34, 1491.23], [2188.11, 1469.9], [2226.7, 1494.21], [2235.5, 1499.49], [2254.3, 1513.3], [2255.42, 1514.21], [2251.23, 1512.42], [2225.17, 1496.21], [2218.37, 1491.24], [2217.34, 1492.66]], [[2121.59, 1599.87], [2123.52, 1601.91], [2122.61, 1602.95], [2118.9, 1606.05], [2113.87, 1610.25], [2111.17, 1612.01], [2114.24, 1607.17], [2116.81, 1604.58], [2120.88, 1600.5], [2121.59, 1599.87]], [[2127.6, 1594.57], [2131.86, 1590.81], [2138.25, 1585.17], [2138.18, 1585.25], [2132.9, 1591.26], [2128.83, 1595.88], [2127.6, 1594.57]], [[1980.42, 1786.67], [1973.98, 1781.22], [1971.42, 1779.08], [1967.66, 1776.1], [1972.52, 1771.31], [1976.65, 1775.16], [2147.01, 1934.65], [2155.02, 1942.09], [2149.06, 1948.13], [2141.29, 1940.84], [2095.5, 1895.4], [1980.42, 1786.67]], [[2224.2, 1871.19], [2221.75, 1873.7], [2164.71, 1932.21], [2162.38, 1934.6], [2154.17, 1926.97], [1983.82, 1767.5], [1977.5, 1761.59], [1982.68, 1756.14], [1984.76, 1753.79], [2036.29, 1698.8], [2037.53, 1696.5], [2040.19, 1691.59], [2044.05, 1695.36], [2219.58, 1866.67], [2224.2, 1871.19]], [[1974.94, 1759.21], [1970.69, 1755.32], [1976.44, 1750.43], [2031.27, 1695.21], [2032.75, 1694.3], [2035.74, 1692.47], [2034.46, 1694.84], [2033.43, 1696.74], [1982.17, 1751.43], [1980.09, 1753.78], [1974.94, 1759.21]], [[1965.18, 1764.51], [1959.66, 1769.94], [1959.02, 1769.47], [1965.03, 1764.38], [1965.18, 1764.51]], [[2062.34, 2043.3], [2060.26, 2045.47], [2066.09, 2051.05], [2152.94, 2134.24], [2157.37, 2138.4], [2153.57, 2142.29], [2095.65, 2201.84], [2091.3, 2206.28], [2086.78, 2202.06], [1956.38, 2073.63], [1952.48, 2069.82], [1956.92, 2065.28], [2013.65, 2007.2], [2016.98, 2003.8], [2020.45, 2007.15], [2027.71, 2014.13], [2052.53, 2038.02], [2060.25, 2045.46], [2062.34, 2043.3]], [[2157.06, 2129.89], [2070.24, 2046.72], [2066.55, 2043.18], [2070.91, 2038.52], [2085.3, 2023.01], [2105.38, 2003.13], [2109.2, 2006.75], [2201.22, 2093.81], [2165.81, 2130.06], [2161.61, 2134.15], [2157.06, 2129.89]], [[2218.23, 2076.7], [2205.43, 2089.54], [2113.33, 2002.39], [2109.55, 1998.82], [2128.53, 1978.29], [2141.99, 1964.24], [2146.15, 1959.8], [2153.86, 1967.04], [2225.81, 2037.12], [2237.77, 2048.26], [2242.34, 2052.5], [2238.95, 2055.91], [2218.23, 2076.7]], [[1586.67, 2348.67], [1589.39, 2348.61], [1592.04, 2348.75], [1588.95, 2368.2], [1586.9, 2396.31], [1586.86, 2409.06], [1584.12, 2409.0], [1583.09, 2408.51], [1582.42, 2405.78], [1583.22, 2379.31], [1585.29, 2350.86], [1585.93, 2349.04], [1586.67, 2348.67]], [[2295.42, 2553.13], [2299.85, 2557.6], [2410.03, 2664.6], [2415.02, 2668.24], [2411.0, 2673.05], [2409.12, 2675.02], [2353.99, 2732.73], [2349.67, 2737.1], [2345.33, 2733.09], [2234.23, 2624.98], [2230.01, 2621.1], [2234.26, 2616.6], [2257.78, 2592.55], [2291.69, 2556.91], [2295.42, 2553.13]], [[2362.69, 2485.78], [2367.55, 2481.47], [2371.6, 2485.41], [2443.11, 2554.49], [2479.63, 2591.09], [2484.15, 2595.42], [2480.0, 2599.94], [2424.9, 2657.71], [2422.89, 2659.83], [2419.73, 2663.02], [2414.55, 2659.23], [2304.77, 2552.62], [2300.34, 2548.15], [2304.26, 2544.19], [2315.45, 2533.16], [2357.26, 2490.39], [2362.69, 2485.78]], [[2563.31, 2532.59], [2595.61, 2562.48], [2627.2, 2592.57], [2660.05, 2625.0], [2682.16, 2645.75], [2684.65, 2648.09], [2680.1, 2653.32], [2679.66, 2653.73], [2657.8, 2675.84], [2650.56, 2683.15], [2622.18, 2713.48], [2619.36, 2716.49], [2618.03, 2717.58], [2619.94, 2719.9], [2617.8, 2717.8], [2609.12, 2726.7], [2592.33, 2743.9], [2555.21, 2782.3], [2552.74, 2784.87], [2549.31, 2788.41], [2543.61, 2783.8], [2458.03, 2699.59], [2427.8, 2671.79], [2424.07, 2667.17], [2427.19, 2664.0], [2429.25, 2661.85], [2484.39, 2604.04], [2488.48, 2599.58], [2492.75, 2603.69], [2522.37, 2632.44], [2527.86, 2637.83], [2536.79, 2646.41], [2540.12, 2649.7], [2545.46, 2656.15], [2550.08, 2652.32], [2544.55, 2645.65], [2540.98, 2642.11], [2532.04, 2633.52], [2526.56, 2628.14], [2496.92, 2599.38], [2492.68, 2595.29], [2496.98, 2591.17], [2555.12, 2532.53], [2559.11, 2528.29], [2563.31, 2532.59]], [[2648.36, 2447.22], [2657.49, 2455.95], [2688.16, 2484.34], [2691.65, 2487.66], [2710.93, 2506.02], [2721.4, 2515.3], [2764.25, 2555.63], [2769.09, 2560.18], [2763.76, 2565.72], [2746.76, 2583.37], [2731.94, 2598.76], [2692.17, 2640.07], [2688.71, 2643.66], [2686.26, 2641.37], [2664.21, 2620.68], [2631.38, 2588.26], [2599.71, 2558.11], [2567.49, 2528.28], [2563.26, 2523.96], [2567.44, 2519.71], [2640.02, 2446.29], [2643.37, 2442.48], [2648.36, 2447.22]], [[2533.91, 2321.56], [2526.53, 2314.55], [2528.25, 2311.99], [2528.44, 2309.76], [2527.92, 2307.84], [2526.89, 2306.66], [2521.8, 2300.84], [2517.61, 2296.07], [2537.51, 2314.95], [2540.81, 2318.07], [2577.94, 2353.29], [2583.87, 2358.92], [2587.48, 2355.11], [2583.87, 2358.92], [2591.3, 2365.96], [2605.97, 2380.01], [2645.74, 2417.55], [2647.38, 2419.09], [2651.84, 2423.31], [2645.46, 2429.89], [2641.07, 2425.57], [2586.04, 2371.39], [2572.7, 2358.65], [2533.91, 2321.56]], [[2598.54, 2358.36], [2593.42, 2353.51], [2596.2, 2350.81], [2621.27, 2326.63], [2638.43, 2310.06], [2641.5, 2307.11], [2646.34, 2302.43], [2649.39, 2307.05], [2665.89, 2326.55], [2678.72, 2340.63], [2678.35, 2340.87], [2682.91, 2348.04], [2687.61, 2354.7], [2688.96, 2356.11], [2692.58, 2359.63], [2695.09, 2363.55], [2694.72, 2366.72], [2695.34, 2370.25], [2694.14, 2373.75], [2693.02, 2375.75], [2690.11, 2380.25], [2680.26, 2395.47], [2662.23, 2413.0], [2659.26, 2415.88], [2654.58, 2411.45], [2652.94, 2409.9], [2613.21, 2372.4], [2598.54, 2358.36]], [[2592.02, 2346.5], [2589.07, 2349.38], [2585.16, 2345.68], [2548.03, 2310.45], [2544.74, 2307.33], [2516.2, 2280.25], [2423.9, 2187.98], [2417.92, 2182.1], [2411.23, 2175.52], [2414.26, 2172.41], [2438.54, 2147.49], [2450.45, 2135.28], [2463.85, 2122.73], [2465.51, 2120.81], [2485.98, 2098.05], [2504.61, 2081.91], [2507.84, 2079.11], [2511.44, 2085.0], [2555.66, 2157.47], [2563.69, 2170.64], [2568.33, 2177.81], [2569.94, 2180.36], [2571.82, 2179.18], [2573.33, 2182.99], [2603.85, 2238.92], [2611.52, 2248.9], [2612.99, 2251.11], [2613.72, 2252.36], [2613.12, 2254.07], [2615.1, 2254.77], [2619.58, 2262.5], [2621.94, 2266.58], [2627.9, 2276.89], [2636.64, 2288.34], [2640.82, 2292.94], [2643.95, 2296.4], [2637.33, 2302.79], [2634.26, 2305.74], [2617.1, 2322.31], [2592.02, 2346.5]], [[2624.79, 2257.46], [2625.6, 2257.5], [2625.67, 2257.62], [2640.68, 2282.73], [2643.99, 2289.09], [2644.13, 2289.89], [2644.45, 2291.74], [2643.41, 2290.59], [2639.33, 2286.1], [2630.82, 2274.95], [2624.97, 2264.83], [2622.61, 2260.75], [2620.01, 2256.26], [2623.93, 2257.32], [2624.39, 2255.62], [2624.85, 2256.34], [2624.79, 2257.46]], [[2582.29, 2184.66], [2578.02, 2180.22], [2574.85, 2177.27], [2576.71, 2176.1], [2576.71, 2176.1], [2579.99, 2174.08], [2581.99, 2172.88], [2614.83, 2152.83], [2613.26, 2150.27], [2614.9, 2152.79], [2653.42, 2127.76], [2669.89, 2117.88], [2671.25, 2117.06], [2678.99, 2255.7], [2679.15, 2258.56], [2679.2, 2260.87], [2675.78, 2261.05], [2660.3, 2260.31], [2645.66, 2251.68], [2636.93, 2249.86], [2632.27, 2249.61], [2625.66, 2249.26], [2624.22, 2248.87], [2612.51, 2230.54], [2587.53, 2192.61], [2582.29, 2184.66]], [[2539.34, 2023.81], [2504.06, 1966.15], [2501.46, 1961.9], [2502.77, 1961.08], [2527.59, 1945.51], [2532.29, 1942.22], [2535.25, 1940.13], [2538.26, 1945.09], [2643.73, 2117.32], [2645.41, 2120.06], [2647.82, 2124.25], [2614.25, 2146.05], [2603.39, 2127.7], [2575.81, 2082.86], [2565.35, 2064.58], [2539.34, 2023.81]], [[2540.24, 1936.78], [2541.76, 1935.8], [2544.65, 1933.77], [2550.35, 1932.55], [2655.35, 1929.39], [2657.98, 1929.32], [2660.77, 1929.24], [2660.95, 1932.52], [2663.98, 1986.83], [2666.88, 2038.78], [2668.55, 2068.7], [2668.89, 2074.8], [2669.45, 2084.71], [2670.87, 2110.29], [2666.8, 2112.73], [2652.91, 2121.07], [2650.57, 2117.0], [2648.85, 2114.19], [2543.38, 1941.97], [2540.24, 1936.78]], [[2546.68, 1927.2], [2548.1, 1921.44], [2553.22, 1900.76], [2556.44, 1887.77], [2559.24, 1876.45], [2568.25, 1840.04], [2575.08, 1812.5], [2575.47, 1810.93], [2577.96, 1811.53], [2586.81, 1813.71], [2587.64, 1810.31], [2594.33, 1812.39], [2595.26, 1809.4], [2595.26, 1809.4], [2594.33, 1812.39], [2595.38, 1812.72], [2595.38, 1813.05], [2596.43, 1813.05], [2615.8, 1819.07], [2618.35, 1819.76], [2625.9, 1821.8], [2629.37, 1822.74], [2653.97, 1829.4], [2655.21, 1829.73], [2655.27, 1830.81], [2656.91, 1860.2], [2657.34, 1867.81], [2658.71, 1892.34], [2660.12, 1917.71], [2660.43, 1923.25], [2657.82, 1923.32], [2655.17, 1923.39], [2549.63, 1926.57], [2546.68, 1927.2]], [[2620.18, 1813.0], [2617.76, 1812.34], [2613.61, 1811.05], [2614.66, 1810.69], [2616.13, 1809.78], [2618.09, 1808.57], [2620.89, 1806.2], [2623.43, 1803.24], [2630.64, 1792.54], [2636.23, 1784.0], [2637.27, 1782.09], [2639.04, 1783.34], [2684.36, 1812.6], [2718.81, 1831.53], [2741.26, 1842.17], [2724.08, 1838.72], [2700.2, 1833.19], [2668.33, 1825.74], [2658.92, 1823.48], [2655.8, 1822.64], [2631.19, 1815.98], [2627.73, 1815.05], [2620.18, 1813.0]], [[2630.51, 1777.32], [2630.7, 1777.45], [2629.37, 1779.87], [2628.02, 1781.93], [2629.55, 1779.12], [2630.51, 1777.32]], [[2427.87, 1628.4], [2347.95, 1573.04], [2344.79, 1570.85], [2349.78, 1562.87], [2352.94, 1558.37], [2358.02, 1551.28], [2378.41, 1520.72], [2380.71, 1516.69], [2390.75, 1523.28], [2397.99, 1528.02], [2435.68, 1554.72], [2437.42, 1552.27], [2435.69, 1554.72], [2453.01, 1566.93], [2498.34, 1597.12], [2560.47, 1640.38], [2622.18, 1681.82], [2624.93, 1683.28], [2627.48, 1684.41], [2628.43, 1684.85], [2631.89, 1685.89], [2635.45, 1685.97], [2636.51, 1694.33], [2635.52, 1698.0], [2635.29, 1704.87], [2635.62, 1713.59], [2635.67, 1721.28], [2635.63, 1729.66], [2635.54, 1742.01], [2634.7, 1748.25], [2633.61, 1753.44], [2630.33, 1763.25], [2628.36, 1767.27], [2622.19, 1763.0], [2618.02, 1760.11], [2434.58, 1633.04], [2427.87, 1628.4]], [[2627.56, 1677.88], [2625.26, 1676.66], [2563.86, 1635.43], [2501.71, 1592.16], [2456.4, 1561.98], [2441.63, 1551.57], [2443.3, 1549.26], [2488.35, 1487.1], [2489.13, 1486.03], [2493.18, 1480.45], [2495.88, 1482.61], [2505.07, 1489.95], [2540.31, 1513.39], [2561.78, 1525.17], [2564.73, 1526.8], [2571.4, 1529.59], [2578.39, 1532.51], [2586.09, 1533.49], [2587.17, 1533.63], [2595.69, 1534.7], [2619.95, 1535.08], [2626.63, 1535.33], [2626.9, 1539.74], [2627.75, 1554.05], [2628.35, 1564.19], [2630.82, 1605.62], [2632.72, 1637.68], [2634.94, 1679.95], [2632.84, 1679.91], [2630.55, 1679.22], [2629.94, 1678.94], [2627.56, 1677.88]], [[2633.75, 1451.86], [2636.23, 1451.9], [2716.81, 1454.86], [2720.45, 1454.99], [2720.18, 1459.86], [2720.11, 1461.14], [2716.43, 1526.8], [2716.17, 1531.37], [2651.89, 1528.94], [2638.17, 1528.56], [2632.27, 1528.39], [2632.07, 1523.4], [2630.61, 1488.08], [2628.02, 1451.66], [2633.75, 1451.86]], [[2584.67, 1382.57], [2580.82, 1385.31], [2584.55, 1382.41], [2535.7, 1319.74], [2538.91, 1317.09], [2591.77, 1273.49], [2641.93, 1332.74], [2659.39, 1353.71], [2719.24, 1374.71], [2725.24, 1376.81], [2724.85, 1383.1], [2721.01, 1445.64], [2720.97, 1446.4], [2720.81, 1449.0], [2717.03, 1448.86], [2636.39, 1445.91], [2633.91, 1445.86], [2628.8, 1445.68], [2627.33, 1441.44], [2626.76, 1439.82], [2616.38, 1427.01], [2584.67, 1382.57]], [[2176.42, 2415.36], [2221.8, 2370.84], [2222.61, 2369.99], [2233.17, 2358.95], [2238.52, 2353.34], [2245.73, 2345.83], [2258.23, 2332.79], [2272.14, 2318.29], [2303.99, 2285.82], [2308.94, 2280.82], [2306.81, 2278.71], [2308.95, 2280.81], [2316.43, 2273.14], [2346.33, 2242.78], [2368.59, 2219.37], [2386.14, 2200.48], [2390.98, 2195.96], [2397.86, 2202.72], [2517.01, 2319.94], [2513.54, 2325.32], [2441.83, 2397.38], [2436.32, 2403.19], [2429.22, 2409.98], [2414.24, 2425.1], [2371.24, 2468.92], [2367.44, 2473.13], [2362.66, 2468.8], [2334.65, 2440.94], [2330.42, 2445.2], [2358.53, 2473.15], [2363.16, 2477.35], [2358.76, 2481.25], [2353.16, 2485.99], [2311.2, 2528.93], [2300.03, 2539.94], [2296.06, 2543.94], [2291.97, 2539.99], [2174.93, 2426.45], [2170.54, 2422.2], [2174.09, 2417.64], [2176.42, 2415.36]], [[2218.27, 2365.85], [2217.53, 2366.62], [2172.22, 2411.08], [2169.6, 2413.64], [2166.22, 2417.99], [2162.01, 2413.86], [2112.29, 2365.0], [2053.17, 2306.79], [2030.52, 2285.47], [2026.51, 2281.63], [2029.99, 2278.01], [2087.0, 2218.85], [2091.39, 2214.64], [2095.76, 2218.88], [2227.04, 2346.36], [2232.14, 2351.34], [2228.83, 2354.8], [2218.27, 2365.85]], [[2399.14, 1701.24], [2399.77, 1698.92], [2403.65, 1684.76], [2407.99, 1668.89], [2410.34, 1661.4], [2413.8, 1653.65], [2417.34, 1647.42], [2421.27, 1641.71], [2423.24, 1638.86], [2426.04, 1635.65], [2430.6, 1638.8], [2614.03, 1765.87], [2618.2, 1768.75], [2624.74, 1773.28], [2623.39, 1775.79], [2616.92, 1787.67], [2613.79, 1792.46], [2611.26, 1795.57], [2609.1, 1797.75], [2606.5, 1799.14], [2602.1, 1800.77], [2596.2, 1802.17], [2589.38, 1803.23], [2590.15, 1800.11], [2581.28, 1797.93], [2576.67, 1796.81], [2572.87, 1795.83], [2551.24, 1790.24], [2526.78, 1783.93], [2524.29, 1783.29], [2510.25, 1779.67], [2484.33, 1772.71], [2478.52, 1771.15], [2472.92, 1769.59], [2408.34, 1751.69], [2387.97, 1746.04], [2388.18, 1745.16], [2392.67, 1726.09], [2394.53, 1717.09], [2396.64, 1710.32], [2399.14, 1701.24]], [[2384.14, 1162.85], [2388.33, 1157.99], [2427.07, 1196.42], [2427.67, 1197.02], [2423.88, 1200.7], [2422.34, 1202.19], [2413.91, 1210.38], [2409.53, 1216.85], [2406.01, 1224.48], [2391.34, 1263.15], [2378.2, 1280.15], [2375.11, 1284.16], [2369.58, 1290.09], [2319.98, 1343.29], [2317.81, 1345.6], [2314.6, 1349.05], [2312.4, 1347.59], [2303.28, 1341.55], [2289.51, 1331.53], [2274.27, 1318.57], [2260.65, 1305.69], [2257.4, 1302.61], [2259.71, 1300.21], [2261.51, 1298.33], [2263.81, 1295.96], [2370.23, 1178.99], [2382.28, 1165.01], [2384.14, 1162.85]], [[2575.01, 1385.54], [2571.66, 1387.74], [2568.92, 1389.54], [2564.02, 1392.75], [2532.71, 1417.93], [2529.02, 1421.61], [2525.75, 1418.55], [2474.23, 1370.47], [2400.46, 1304.1], [2384.09, 1288.36], [2381.42, 1285.8], [2382.95, 1283.82], [2396.63, 1266.11], [2411.54, 1226.81], [2414.78, 1219.81], [2418.53, 1214.26], [2426.52, 1206.5], [2428.06, 1205.01], [2431.7, 1201.47], [2432.72, 1202.72], [2435.77, 1206.56], [2447.53, 1221.35], [2477.29, 1260.4], [2526.48, 1323.28], [2575.01, 1385.54]], [[2587.91, 1268.89], [2535.09, 1312.46], [2532.0, 1315.01], [2484.77, 1254.63], [2454.99, 1215.55], [2443.17, 1200.68], [2441.52, 1198.6], [2444.63, 1195.21], [2446.27, 1193.43], [2486.51, 1149.49], [2488.76, 1151.59], [2495.79, 1158.18], [2587.91, 1268.89]], [[2372.37, 1045.79], [2373.84, 1047.16], [2404.56, 1075.58], [2479.34, 1143.0], [2482.06, 1145.46], [2441.85, 1189.37], [2440.21, 1191.15], [2437.7, 1193.89], [2436.85, 1192.85], [2433.19, 1195.84], [2436.52, 1192.49], [2433.72, 1189.71], [2392.61, 1148.93], [2389.28, 1152.28], [2392.41, 1148.74], [2388.85, 1145.59], [2352.88, 1113.73], [2331.25, 1094.57], [2328.41, 1092.06], [2330.76, 1089.58], [2332.66, 1087.58], [2372.37, 1045.79]], [[2446.95, 1449.21], [2485.27, 1474.85], [2488.34, 1476.9], [2484.26, 1482.51], [2483.49, 1483.59], [2438.44, 1545.73], [2436.73, 1548.11], [2401.37, 1523.07], [2394.04, 1518.26], [2381.36, 1509.95], [2321.65, 1468.63], [2266.33, 1430.83], [2267.66, 1428.91], [2300.26, 1381.57], [2310.5, 1365.4], [2311.83, 1363.29], [2314.58, 1358.95], [2318.9, 1361.9], [2446.95, 1449.21]], [[2373.96, 1294.18], [2377.52, 1290.37], [2379.94, 1292.69], [2396.37, 1308.49], [2470.18, 1374.9], [2521.66, 1422.94], [2524.8, 1425.87], [2519.07, 1431.75], [2496.31, 1465.38], [2494.93, 1467.41], [2493.07, 1470.16], [2489.84, 1468.01], [2451.56, 1442.39], [2323.53, 1355.1], [2319.64, 1352.44], [2322.2, 1349.7], [2324.37, 1347.38], [2373.96, 1294.18]], [[2618.39, 1444.49], [2618.41, 1444.54], [2620.33, 1450.09], [2621.86, 1449.56], [2624.62, 1488.42], [2626.07, 1523.64], [2626.21, 1527.08], [2620.17, 1526.85], [2596.27, 1526.48], [2588.2, 1525.47], [2587.13, 1525.33], [2580.54, 1524.49], [2574.58, 1522.0], [2568.31, 1519.37], [2565.74, 1517.96], [2544.58, 1506.34], [2509.93, 1483.29], [2501.02, 1476.18], [2497.92, 1473.7], [2499.9, 1470.78], [2501.27, 1468.75], [2523.74, 1435.56], [2531.22, 1427.88], [2536.72, 1422.41], [2567.55, 1397.61], [2572.21, 1394.55], [2574.95, 1392.75], [2578.61, 1390.35], [2608.86, 1432.74], [2618.39, 1444.49]], [[2496.34, 1965.02], [2498.94, 1969.28], [2534.25, 2026.99], [2560.21, 2067.68], [2570.65, 2085.93], [2598.25, 2130.8], [2609.17, 2149.25], [2578.87, 2167.75], [2576.88, 2168.96], [2573.48, 2171.04], [2570.47, 2166.39], [2562.49, 2153.31], [2518.27, 2080.84], [2512.74, 2071.77], [2509.32, 2073.85], [2512.73, 2071.75], [2508.08, 2064.22], [2463.29, 1991.53], [2460.15, 1986.42], [2464.24, 1984.0], [2496.34, 1965.02]], [[2331.11, 1780.19], [2329.36, 1777.31], [2325.94, 1779.39], [2328.91, 1777.54], [2320.9, 1764.67], [2307.65, 1743.42], [2306.41, 1741.43], [2311.65, 1741.62], [2328.6, 1745.79], [2361.13, 1753.78], [2381.69, 1758.83], [2404.6, 1765.18], [2469.17, 1783.08], [2472.16, 1783.91], [2471.48, 1786.74], [2469.88, 1793.47], [2467.08, 1805.16], [2465.34, 1810.66], [2464.58, 1813.84], [2463.74, 1817.34], [2463.15, 1822.38], [2464.14, 1826.96], [2466.27, 1832.25], [2469.49, 1837.77], [2481.9, 1855.68], [2497.82, 1881.86], [2500.97, 1887.03], [2505.86, 1895.07], [2526.9, 1928.27], [2528.72, 1930.76], [2531.93, 1935.14], [2528.84, 1937.31], [2524.27, 1940.51], [2499.59, 1955.99], [2495.79, 1958.37], [2461.18, 1978.84], [2456.98, 1981.33], [2453.81, 1976.29], [2444.17, 1960.97], [2429.96, 1938.86], [2404.9, 1898.57], [2384.08, 1866.12], [2381.1, 1861.47], [2377.17, 1855.03], [2375.06, 1851.56], [2356.12, 1821.34], [2353.75, 1817.44], [2343.09, 1799.9], [2332.06, 1781.75], [2331.11, 1780.19]], [[2474.56, 1834.55], [2471.68, 1829.6], [2469.89, 1825.19], [2469.23, 1822.09], [2469.66, 1818.39], [2470.41, 1815.24], [2471.13, 1812.26], [2472.86, 1806.77], [2475.72, 1794.87], [2477.32, 1788.13], [2477.95, 1785.49], [2480.69, 1786.23], [2506.69, 1793.21], [2520.79, 1796.84], [2523.29, 1797.48], [2547.74, 1803.8], [2569.37, 1809.38], [2571.1, 1809.83], [2570.71, 1811.42], [2563.88, 1838.96], [2554.88, 1875.37], [2552.07, 1886.68], [2548.85, 1899.68], [2543.73, 1920.36], [2541.72, 1928.52], [2541.71, 1928.51], [2538.41, 1930.82], [2536.91, 1931.79], [2533.56, 1927.21], [2531.86, 1924.89], [2510.96, 1891.91], [2506.1, 1883.91], [2502.95, 1878.74], [2486.93, 1852.41], [2474.56, 1834.55]], [[2510.75, 2285.81], [2510.76, 2285.89], [2508.93, 2287.82], [2511.26, 2290.04], [2511.95, 2295.68], [2518.79, 2303.47], [2523.87, 2309.28], [2524.29, 2309.77], [2524.39, 2310.12], [2524.35, 2310.62], [2523.62, 2311.71], [2405.22, 2195.24], [2398.48, 2188.61], [2403.91, 2183.04], [2410.55, 2189.58], [2416.5, 2195.44], [2508.83, 2287.73], [2510.75, 2285.81]], [[2615.2, 2248.12], [2614.37, 2246.87], [2606.79, 2237.0], [2579.26, 2186.56], [2579.55, 2186.85], [2584.61, 2194.53], [2609.57, 2232.44], [2619.18, 2247.47], [2615.84, 2246.3], [2615.2, 2248.12]], [[2550.44, 2519.64], [2554.88, 2524.03], [2550.81, 2528.37], [2492.78, 2586.89], [2488.34, 2591.13], [2483.83, 2586.8], [2447.32, 2550.21], [2375.78, 2481.11], [2371.81, 2477.24], [2375.61, 2473.03], [2418.52, 2429.32], [2433.43, 2414.26], [2438.45, 2409.46], [2442.76, 2413.59], [2477.82, 2447.27], [2509.71, 2478.69], [2550.44, 2519.64]], [[2639.05, 2438.31], [2635.63, 2442.2], [2563.17, 2515.5], [2559.03, 2519.7], [2554.68, 2515.39], [2513.95, 2474.44], [2482.01, 2442.97], [2446.91, 2409.27], [2442.68, 2405.2], [2446.13, 2401.56], [2518.25, 2329.1], [2521.42, 2324.17], [2526.67, 2329.16], [2565.45, 2366.24], [2578.73, 2378.93], [2633.71, 2433.05], [2639.05, 2438.31]], [[2750.92, 1922.58], [2756.07, 2010.76], [2758.49, 2063.55], [2758.65, 2068.36], [2753.76, 2068.54], [2678.56, 2071.28], [2674.71, 2071.48], [2674.54, 2068.37], [2672.87, 2038.45], [2669.97, 1986.49], [2666.94, 1932.18], [2666.76, 1928.85], [2671.29, 1928.36], [2673.48, 1928.14], [2692.6, 1926.22], [2746.37, 1922.86], [2750.92, 1922.58]], [[2757.25, 1865.1], [2760.09, 1858.71], [2762.15, 1854.07], [2764.83, 1854.67], [2764.06, 1857.57], [2772.24, 1859.73], [2809.91, 1869.85], [2836.22, 1876.92], [2842.16, 1878.68], [2841.88, 1881.02], [2841.87, 1888.01], [2842.27, 1894.04], [2842.87, 1898.89], [2842.88, 1905.15], [2843.13, 1916.36], [2838.79, 1913.26], [2798.46, 1881.28], [2794.73, 1885.98], [2835.18, 1918.06], [2841.96, 1922.89], [2844.08, 1938.83], [2849.55, 2059.07], [2849.76, 2062.84], [2844.37, 2062.94], [2769.94, 2067.72], [2764.64, 2068.06], [2764.48, 2063.31], [2762.06, 2010.45], [2756.74, 1919.28], [2756.63, 1914.16], [2755.03, 1886.19], [2754.89, 1882.35], [2755.41, 1872.85], [2757.25, 1865.1]], [[2799.27, 1683.03], [2798.31, 1687.85], [2793.26, 1712.97], [2783.99, 1755.29], [2783.46, 1757.71], [2782.74, 1761.01], [2778.99, 1760.03], [2709.43, 1741.83], [2682.39, 1733.56], [2652.98, 1727.8], [2651.09, 1727.43], [2648.38, 1727.21], [2647.12, 1717.3], [2645.34, 1704.82], [2643.88, 1697.3], [2642.49, 1693.79], [2641.09, 1682.76], [2638.93, 1641.51], [2643.46, 1642.76], [2646.47, 1643.51], [2707.06, 1658.62], [2728.71, 1664.67], [2792.26, 1681.21], [2794.68, 1681.84], [2799.27, 1683.03]], [[2819.66, 1549.43], [2819.78, 1547.58], [2820.16, 1541.84], [2823.52, 1541.97], [2866.91, 1543.66], [2908.26, 1547.43], [2913.85, 1547.94], [2913.09, 1551.48], [2899.97, 1612.52], [2898.87, 1617.66], [2882.09, 1695.8], [2881.72, 1697.51], [2876.98, 1696.33], [2813.29, 1680.38], [2810.18, 1679.6], [2806.38, 1678.65], [2807.12, 1675.58], [2814.05, 1646.77], [2816.72, 1621.14], [2817.03, 1600.14], [2818.3, 1570.06], [2819.66, 1549.43]], [[2813.48, 1399.41], [2820.69, 1400.5], [2818.79, 1447.6], [2818.67, 1450.66], [2818.54, 1453.78], [2812.06, 1453.46], [2731.22, 1449.48], [2726.8, 1449.26], [2726.96, 1446.76], [2727.0, 1445.99], [2730.84, 1383.47], [2731.14, 1378.64], [2733.49, 1379.31], [2791.19, 1395.77], [2813.48, 1399.41]], [[2812.31, 1569.74], [2811.03, 1599.97], [2810.72, 1620.78], [2808.12, 1645.76], [2801.28, 1674.18], [2800.57, 1677.17], [2796.19, 1676.03], [2793.77, 1675.4], [2730.28, 1658.88], [2708.59, 1652.82], [2647.92, 1637.69], [2644.99, 1636.96], [2638.58, 1635.19], [2636.81, 1605.27], [2634.34, 1563.83], [2633.74, 1553.69], [2632.89, 1539.38], [2632.59, 1534.4], [2638.0, 1534.56], [2651.69, 1534.94], [2718.88, 1537.48], [2808.75, 1541.36], [2814.16, 1541.59], [2813.8, 1547.19], [2813.68, 1549.04], [2812.31, 1569.74]], [[2818.05, 1464.26], [2817.9, 1467.24], [2814.68, 1532.3], [2814.58, 1534.23], [2814.51, 1535.6], [2809.01, 1535.37], [2722.17, 1531.61], [2722.42, 1527.13], [2726.1, 1461.48], [2726.17, 1460.2], [2726.45, 1455.25], [2730.93, 1455.47], [2811.76, 1459.45], [2818.28, 1459.77], [2818.05, 1464.26]], [[2649.22, 1740.95], [2649.12, 1738.64], [2648.87, 1733.27], [2650.26, 1733.38], [2651.82, 1733.69], [2680.93, 1739.39], [2707.79, 1747.61], [2777.47, 1765.83], [2781.45, 1766.87], [2780.7, 1770.25], [2780.09, 1773.0], [2773.24, 1803.93], [2771.78, 1810.25], [2765.69, 1836.34], [2760.44, 1843.04], [2760.25, 1843.41], [2752.89, 1839.93], [2722.0, 1825.3], [2687.95, 1806.58], [2642.96, 1777.54], [2639.67, 1775.21], [2641.92, 1770.32], [2644.69, 1764.47], [2646.81, 1760.05], [2648.55, 1753.94], [2649.34, 1749.62], [2649.37, 1746.23], [2649.22, 1740.95]], [[2811.84, 1686.2], [2875.53, 1702.16], [2880.46, 1703.38], [2879.47, 1707.96], [2864.1, 1779.54], [2863.64, 1781.68], [2859.11, 1780.51], [2792.37, 1763.48], [2788.55, 1762.51], [2789.32, 1759.0], [2789.85, 1756.57], [2799.13, 1714.21], [2804.19, 1689.03], [2805.09, 1684.51], [2808.72, 1685.42], [2811.84, 1686.2]], [[2642.29, 1726.84], [2641.64, 1726.81], [2641.67, 1721.97], [2642.29, 1726.84]], [[2636.49, 1767.78], [2634.68, 1771.7], [2633.33, 1770.75], [2635.89, 1765.53], [2639.41, 1755.01], [2640.62, 1749.27], [2641.54, 1742.43], [2641.61, 1732.82], [2642.84, 1732.87], [2643.12, 1738.92], [2643.23, 1741.17], [2643.37, 1746.28], [2643.34, 1749.05], [2642.7, 1752.57], [2641.18, 1757.92], [2639.27, 1761.89], [2636.49, 1767.78]], [[2749.44, 1871.99], [2748.89, 1882.3], [2749.04, 1886.47], [2750.63, 1914.39], [2750.68, 1916.58], [2746.0, 1916.87], [2692.11, 1920.24], [2672.89, 1922.17], [2670.67, 1922.39], [2666.42, 1922.85], [2666.11, 1917.38], [2664.7, 1892.0], [2663.33, 1867.48], [2662.9, 1859.86], [2661.31, 1831.25], [2666.72, 1832.55], [2698.61, 1840.0], [2722.6, 1845.56], [2749.48, 1850.96], [2756.36, 1852.34], [2754.61, 1856.27], [2751.54, 1863.18], [2749.44, 1871.99]], [[2790.89, 1769.3], [2857.62, 1786.32], [2862.38, 1787.55], [2861.5, 1791.65], [2846.89, 1859.67], [2846.4, 1861.98], [2845.26, 1865.0], [2840.03, 1863.45], [2813.55, 1856.33], [2775.84, 1846.2], [2767.63, 1844.04], [2766.92, 1846.71], [2765.78, 1845.95], [2771.23, 1839.0], [2777.62, 1811.61], [2779.09, 1805.25], [2785.95, 1774.29], [2786.56, 1771.54], [2787.26, 1768.37], [2790.89, 1769.3]], [[2768.0, 2252.52], [2768.17, 2255.92], [2763.24, 2256.2], [2688.19, 2260.52], [2685.19, 2260.61], [2685.15, 2258.33], [2684.98, 2255.36], [2676.96, 2111.77], [2675.44, 2084.38], [2675.05, 2077.47], [2678.83, 2077.28], [2753.98, 2074.54], [2758.92, 2074.36], [2759.21, 2079.42], [2768.0, 2252.52]], [[2854.53, 2251.47], [2778.93, 2255.34], [2774.16, 2255.59], [2773.99, 2252.21], [2765.2, 2079.1], [2764.91, 2074.05], [2770.32, 2073.71], [2844.62, 2068.94], [2850.1, 2068.84], [2850.46, 2075.14], [2860.54, 2248.47], [2860.68, 2251.19], [2854.53, 2251.47]], [[2944.96, 2247.72], [2870.61, 2250.77], [2866.67, 2250.93], [2866.53, 2248.14], [2856.45, 2074.8], [2856.09, 2068.47], [2860.69, 2067.99], [2937.01, 2064.07], [2941.74, 2063.83], [2942.09, 2070.18], [2951.42, 2243.67], [2951.6, 2247.28], [2944.96, 2247.72]], [[2938.57, 2005.0], [2938.73, 2007.93], [2941.21, 2053.96], [2941.42, 2057.84], [2936.7, 2058.08], [2860.22, 2062.0], [2855.75, 2062.47], [2855.54, 2058.76], [2850.06, 1938.3], [2848.75, 1928.47], [2851.89, 1931.1], [2854.76, 1933.3], [2930.4, 1989.4], [2938.04, 1995.08], [2938.57, 2005.0]], [[2796.61, 2561.92], [2819.67, 2586.09], [2834.71, 2610.22], [2842.88, 2624.17], [2847.51, 2631.67], [2841.09, 2635.45], [2836.3, 2627.88], [2818.89, 2599.57], [2806.27, 2584.21], [2797.49, 2574.56], [2785.56, 2562.03], [2778.72, 2554.84], [2774.92, 2558.46], [2778.51, 2554.63], [2771.45, 2547.99], [2728.48, 2507.55], [2718.04, 2498.29], [2698.89, 2480.06], [2695.35, 2476.68], [2664.68, 2448.31], [2655.6, 2439.61], [2651.22, 2435.45], [2657.64, 2428.83], [2662.4, 2433.37], [2769.73, 2535.86], [2772.12, 2538.14], [2776.74, 2542.56], [2791.0, 2556.45], [2796.61, 2561.92]], [[2718.91, 2383.05], [2723.61, 2380.49], [2727.36, 2376.62], [2729.8, 2371.82], [2730.67, 2366.61], [2730.39, 2363.26], [2730.23, 2363.28], [2731.06, 2362.04], [2732.32, 2361.31], [2738.44, 2358.72], [2743.77, 2357.28], [2753.35, 2355.39], [2762.38, 2354.15], [2767.7, 2355.77], [2773.34, 2357.98], [2780.49, 2361.72], [2785.56, 2364.92], [2789.64, 2368.15], [2792.61, 2370.88], [2801.62, 2379.67], [2864.02, 2440.5], [2866.92, 2443.33], [2867.73, 2444.14], [2868.47, 2444.9], [2890.84, 2467.45], [2910.65, 2484.17], [2922.08, 2494.54], [2929.87, 2502.93], [2932.58, 2506.83], [2933.02, 2507.46], [2935.53, 2514.41], [2937.16, 2520.58], [2938.35, 2532.29], [2938.62, 2535.58], [2940.1, 2554.46], [2940.67, 2562.13], [2942.94, 2592.2], [2943.1, 2595.34], [2943.4, 2601.0], [2940.72, 2600.09], [2933.3, 2598.72], [2929.64, 2598.82], [2919.29, 2599.09], [2910.41, 2600.03], [2901.39, 2602.54], [2888.68, 2608.85], [2879.37, 2614.41], [2862.0, 2624.28], [2856.94, 2626.96], [2851.88, 2618.76], [2843.7, 2604.79], [2828.01, 2579.63], [2804.08, 2554.53], [2798.33, 2548.93], [2784.03, 2535.0], [2779.37, 2530.55], [2776.98, 2528.27], [2669.65, 2425.78], [2665.06, 2421.4], [2667.81, 2418.73], [2685.92, 2401.12], [2701.0, 2390.7], [2704.08, 2388.56], [2711.32, 2383.95], [2714.26, 2384.08], [2718.91, 2383.05]], [[2721.33, 2361.4], [2722.46, 2364.48], [2722.61, 2366.28], [2722.11, 2369.29], [2720.77, 2371.92], [2718.71, 2374.05], [2716.08, 2375.49], [2713.56, 2376.04], [2710.95, 2375.92], [2708.42, 2375.11], [2706.2, 2373.66], [2704.45, 2371.68], [2703.3, 2369.33], [2702.8, 2366.49], [2703.13, 2363.68], [2704.4, 2360.87], [2706.45, 2358.59], [2709.12, 2357.05], [2712.3, 2356.35], [2713.38, 2356.37], [2716.65, 2357.19], [2719.34, 2358.92], [2721.33, 2361.4]], [[2727.98, 2356.9], [2724.92, 2353.09], [2734.48, 2351.05], [2739.36, 2350.01], [2744.96, 2349.64], [2749.28, 2350.08], [2742.41, 2351.43], [2736.48, 2353.04], [2729.63, 2355.93], [2727.98, 2356.9]], [[2699.03, 2354.87], [2698.82, 2354.54], [2694.8, 2350.63], [2695.22, 2350.77], [2696.61, 2351.24], [2700.94, 2352.75], [2699.03, 2354.87]], [[2699.65, 2381.9], [2697.69, 2383.26], [2699.88, 2379.88], [2700.32, 2379.09], [2700.92, 2379.77], [2701.94, 2380.44], [2699.65, 2381.9]], [[2798.33, 2591.08], [2810.32, 2605.68], [2827.4, 2633.44], [2832.84, 2642.05], [2828.78, 2645.67], [2825.53, 2649.5], [2821.02, 2654.83], [2818.55, 2659.73], [2816.69, 2668.01], [2816.04, 2678.34], [2815.7, 2679.42], [2813.13, 2687.37], [2801.23, 2724.28], [2796.82, 2737.94], [2794.46, 2745.25], [2790.59, 2742.55], [2789.61, 2741.62], [2744.6, 2699.12], [2695.42, 2650.21], [2693.02, 2647.83], [2696.49, 2644.23], [2736.26, 2602.92], [2751.08, 2587.53], [2768.08, 2569.88], [2773.34, 2564.42], [2777.95, 2569.26], [2789.8, 2581.72], [2798.33, 2591.08]], [[2845.16, 2642.35], [2851.55, 2638.57], [2854.29, 2643.5], [2848.27, 2648.03], [2845.16, 2642.35]], [[2860.47, 2633.01], [2865.37, 2630.41], [2882.89, 2620.46], [2892.03, 2615.0], [2903.91, 2609.11], [2911.73, 2606.93], [2919.75, 2606.08], [2926.82, 2605.9], [2922.56, 2606.87], [2907.12, 2611.97], [2883.77, 2622.51], [2867.57, 2633.0], [2862.34, 2636.38], [2860.47, 2633.01]], [[2839.65, 2654.16], [2832.36, 2658.98], [2828.0, 2661.86], [2824.41, 2665.58], [2825.19, 2662.11], [2826.9, 2658.72], [2830.88, 2654.02], [2833.8, 2650.56], [2836.41, 2648.24], [2839.65, 2654.16]]]}}]} \ No newline at end of file diff --git a/public/routing_graph.json b/public/routing_graph.json index 81da878..05d5d5b 100644 --- a/public/routing_graph.json +++ b/public/routing_graph.json @@ -1 +1 @@ -{"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 +{"nodes": {"37923758": {"x": -1877.89, "y": 78.66, "pop": 0, "jobs": 29487}, "37924361": {"x": -1908.63, "y": -30.5, "pop": 27, "jobs": 25907}, "53288573": {"x": -106.13, "y": -3040.34, "pop": 0, "jobs": 0}, "53288575": {"x": -72.88, "y": -3077.15, "pop": 0, "jobs": 0}, "53290647": {"x": 1446.5, "y": 2500.29, "pop": 2318, "jobs": 703}, "53311057": {"x": -2989.65, "y": -638.78, "pop": 1681, "jobs": 0}, "53311058": {"x": -2990.62, "y": -618.52, "pop": 1747, "jobs": 0}, "53326149": {"x": -23.65, "y": -42.56, "pop": 0, "jobs": 16826}, "53332729": {"x": -31.92, "y": -216.83, "pop": 0, "jobs": 14032}, "53332734": {"x": -205.91, "y": -208.51, "pop": 1123, "jobs": 4839}, "53370932": {"x": -2945.15, "y": -8.22, "pop": 0, "jobs": 3456}, "53370937": {"x": -2947.64, "y": -80.69, "pop": 452, "jobs": 1275}, "53385421": {"x": -197.64, "y": -34.22, "pop": 3449, "jobs": 4243}, "53407742": {"x": 2040.37, "y": 1687.58, "pop": 1848, "jobs": 252}, "53407747": {"x": 2228.45, "y": 1871.13, "pop": 2115, "jobs": 706}, "53407767": {"x": 2448.35, "y": 2133.14, "pop": 1591, "jobs": 46}, "53407902": {"x": 85.95, "y": -135.41, "pop": 551, "jobs": 32351}, "53407911": {"x": 142.92, "y": -64.38, "pop": 551, "jobs": 36733}, "53407922": {"x": 218.19, "y": 1.17, "pop": 344, "jobs": 16860}, "53407926": {"x": 293.85, "y": 68.45, "pop": 2131, "jobs": 1670}, "53407932": {"x": 353.05, "y": 122.77, "pop": 2646, "jobs": 1502}, "53407941": {"x": 427.3, "y": 191.57, "pop": 1272, "jobs": 2331}, "53407975": {"x": 875.11, "y": 598.33, "pop": 1521, "jobs": 7585}, "53408000": {"x": 1174.55, "y": 867.66, "pop": 8, "jobs": 968}, "53408480": {"x": 1595.89, "y": 1249.41, "pop": 0, "jobs": 3311}, "53408487": {"x": 1621.65, "y": 1273.44, "pop": 97, "jobs": 3455}, "53408490": {"x": 1725.07, "y": 1367.25, "pop": 1223, "jobs": 5393}, "53408525": {"x": 1869.71, "y": 1499.8, "pop": 5837, "jobs": 0}, "53408558": {"x": 51.59, "y": -133.13, "pop": 276, "jobs": 33955}, "53413603": {"x": -2432.47, "y": 133.58, "pop": 546, "jobs": 10618}, "53413619": {"x": -2694.88, "y": 144.3, "pop": 0, "jobs": 3487}, "53414098": {"x": 125.14, "y": 103.78, "pop": 3425, "jobs": 11397}, "53416322": {"x": 560.88, "y": 1072.82, "pop": 3150, "jobs": 1130}, "53416782": {"x": -1065.98, "y": -2054.78, "pop": 1159, "jobs": 0}, "53416784": {"x": -1072.14, "y": -2164.97, "pop": 2373, "jobs": 0}, "53416786": {"x": -1077.53, "y": -2279.52, "pop": 1828, "jobs": 0}, "53416788": {"x": -1080.66, "y": -2394.6, "pop": 1712, "jobs": 394}, "53417779": {"x": -820.87, "y": 249.98, "pop": 3694, "jobs": 0}, "53417781": {"x": -867.97, "y": 209.31, "pop": 5183, "jobs": 0}, "53421608": {"x": -2800.26, "y": -967.89, "pop": 3535, "jobs": 0}, "53421612": {"x": -2800.81, "y": -1004.42, "pop": 3491, "jobs": 0}, "53421621": {"x": -2800.01, "y": -1072.78, "pop": 5897, "jobs": 1540}, "53421750": {"x": -1044.11, "y": -956.04, "pop": 987, "jobs": 2543}, "53423466": {"x": 495.83, "y": 416.48, "pop": 655, "jobs": 2232}, "53423470": {"x": 633.18, "y": 565.12, "pop": 11641, "jobs": 2606}, "53423501": {"x": 1230.77, "y": 1106.47, "pop": 1603, "jobs": 6371}, "53423508": {"x": 1377.53, "y": 1243.36, "pop": 1811, "jobs": 2358}, "53423520": {"x": 1528.79, "y": 1375.97, "pop": 0, "jobs": 5708}, "53423529": {"x": 1675.14, "y": 1510.09, "pop": 0, "jobs": 1799}, "53423552": {"x": 2147.55, "y": 1953.92, "pop": 1757, "jobs": 638}, "53423556": {"x": 2248.24, "y": 2050.82, "pop": 2622, "jobs": 150}, "53423565": {"x": 2644.66, "y": 2436.46, "pop": 1977, "jobs": 2172}, "53423568": {"x": 2774.92, "y": 2558.46, "pop": 1518, "jobs": 1815}, "53423575": {"x": 2845.97, "y": 2654.77, "pop": 1644, "jobs": 2258}, "53425693": {"x": 251.11, "y": 383.04, "pop": 3977, "jobs": 0}, "53425702": {"x": 117.14, "y": 533.32, "pop": 3761, "jobs": 0}, "53426174": {"x": 138.82, "y": -209.76, "pop": 2767, "jobs": 16624}, "53426175": {"x": 204.03, "y": -281.35, "pop": 2893, "jobs": 15227}, "53426575": {"x": -155.53, "y": -2202.09, "pop": 1564, "jobs": 761}, "53426577": {"x": -163.27, "y": -2396.82, "pop": 1204, "jobs": 0}, "53428594": {"x": -2704.43, "y": -937.59, "pop": 1725, "jobs": 238}, "53428597": {"x": -2705.98, "y": -969.32, "pop": 3469, "jobs": 545}, "53429624": {"x": 1220.91, "y": 1534.65, "pop": 1782, "jobs": 0}, "53430018": {"x": 1039.35, "y": 1017.64, "pop": 14484, "jobs": 2139}, "53430027": {"x": 1187.89, "y": 1151.79, "pop": 2728, "jobs": 244}, "53430437": {"x": -1631.1, "y": -1002.63, "pop": 565, "jobs": 7739}, "53430443": {"x": -1760.74, "y": -1000.35, "pop": 2468, "jobs": 585}, "53430446": {"x": -1844.11, "y": -998.63, "pop": 2321, "jobs": 1904}, "53430836": {"x": 2869.24, "y": 2332.21, "pop": 1648, "jobs": 0}, "53430839": {"x": 2863.88, "y": 2255.16, "pop": 2242, "jobs": 0}, "53430844": {"x": 2852.93, "y": 2065.78, "pop": 2647, "jobs": 0}, "53430857": {"x": 2845.67, "y": 1872.42, "pop": 1503, "jobs": 1551}, "53432331": {"x": 929.4, "y": 237.03, "pop": 3004, "jobs": 1705}, "53432339": {"x": 1377.36, "y": 643.19, "pop": 2607, "jobs": 1004}, "53432346": {"x": 1675.88, "y": 914.05, "pop": 2001, "jobs": 2831}, "53432349": {"x": 1824.88, "y": 1049.9, "pop": 2149, "jobs": 1145}, "53432353": {"x": 1955.53, "y": 1205.6, "pop": 1931, "jobs": 742}, "53432356": {"x": 1991.03, "y": 1248.39, "pop": 1407, "jobs": 742}, "53433643": {"x": 820.8, "y": 1416.32, "pop": 2678, "jobs": 0}, "53433662": {"x": 825.21, "y": 1552.94, "pop": 3097, "jobs": 0}, "53434711": {"x": -1093.98, "y": 117.9, "pop": 9297, "jobs": 597}, "53434862": {"x": -831.87, "y": -2406.51, "pop": 1183, "jobs": 0}, "53434863": {"x": -836.54, "y": -2523.14, "pop": 1425, "jobs": 417}, "53434865": {"x": -842.82, "y": -2637.35, "pop": 1485, "jobs": 417}, "53434867": {"x": -847.46, "y": -2754.57, "pop": 1852, "jobs": 0}, "53434870": {"x": -787.2, "y": -2084.85, "pop": 1315, "jobs": 0}, "53434871": {"x": -790.62, "y": -2177.58, "pop": 1471, "jobs": 0}, "53436855": {"x": -3131.94, "y": -534.52, "pop": 743, "jobs": 0}, "53437415": {"x": 2138.99, "y": 1386.73, "pop": 1668, "jobs": 549}, "53437417": {"x": 2170.38, "y": 1369.27, "pop": 1870, "jobs": 549}, "53437418": {"x": 2252.36, "y": 1303.51, "pop": 2721, "jobs": 0}, "53437425": {"x": 2389.28, "y": 1152.28, "pop": 2360, "jobs": 0}, "53437707": {"x": 743.69, "y": 1343.84, "pop": 2071, "jobs": 0}, "53437708": {"x": 790.45, "y": 1387.79, "pop": 2537, "jobs": 0}, "53437716": {"x": 914.22, "y": 1454.27, "pop": 2601, "jobs": 0}, "53437718": {"x": 1001.34, "y": 1533.17, "pop": 2396, "jobs": 0}, "53437720": {"x": 1058.84, "y": 1587.56, "pop": 3075, "jobs": 0}, "53438623": {"x": -538.26, "y": -2185.5, "pop": 833, "jobs": 865}, "53438624": {"x": -544.92, "y": -2280.81, "pop": 1376, "jobs": 111}, "53438915": {"x": -2691.97, "y": 55.03, "pop": 220, "jobs": 5559}, "53441253": {"x": -638.37, "y": 255.52, "pop": 4065, "jobs": 0}, "53441256": {"x": -787.67, "y": 120.12, "pop": 4838, "jobs": 0}, "53441258": {"x": -885.25, "y": 32.15, "pop": 4968, "jobs": 2607}, "53441265": {"x": -1021.42, "y": 21.05, "pop": 15399, "jobs": 931}, "53444038": {"x": -122.59, "y": -292.11, "pop": 6372, "jobs": 14860}, "53444048": {"x": -136.89, "y": -591.11, "pop": 3795, "jobs": 6466}, "53444545": {"x": -1280.24, "y": -2028.2, "pop": 1284, "jobs": 0}, "53444600": {"x": -2161.21, "y": -961.17, "pop": 2278, "jobs": 212}, "53444613": {"x": -2327.85, "y": -1088.84, "pop": 2263, "jobs": 0}, "53444622": {"x": -2470.06, "y": -1209.31, "pop": 2445, "jobs": 0}, "53444627": {"x": -2576.79, "y": -1300.53, "pop": 2221, "jobs": 0}, "53444632": {"x": -2676.11, "y": -1384.84, "pop": 2573, "jobs": 0}, "53444642": {"x": -2775.24, "y": -1469.05, "pop": 2620, "jobs": 0}, "53444645": {"x": -2872.82, "y": -1553.43, "pop": 2156, "jobs": 0}, "53445464": {"x": 1078.09, "y": 375.04, "pop": 5546, "jobs": 1867}, "53445467": {"x": 1147.47, "y": 298.73, "pop": 2971, "jobs": 248}, "53447046": {"x": 2647.22, "y": 2297.41, "pop": 1890, "jobs": 231}, "53447075": {"x": 86.09, "y": -2057.01, "pop": 0, "jobs": 1150}, "53447076": {"x": 80.58, "y": -2213.68, "pop": 0, "jobs": 0}, "53447618": {"x": -1578.01, "y": -1960.1, "pop": 4144, "jobs": 0}, "53447620": {"x": -1661.44, "y": -2005.96, "pop": 2016, "jobs": 0}, "53453124": {"x": 1147.0, "y": 1196.69, "pop": 3552, "jobs": 318}, "53453137": {"x": 1080.08, "y": 1270.54, "pop": 2571, "jobs": 123}, "53453147": {"x": 1013.14, "y": 1346.56, "pop": 2441, "jobs": 0}, "53453152": {"x": 944.95, "y": 1419.99, "pop": 2372, "jobs": 0}, "53453164": {"x": 889.81, "y": 1481.2, "pop": 2733, "jobs": 0}, "53453173": {"x": 749.04, "y": 1630.45, "pop": 2266, "jobs": 0}, "53454630": {"x": -2531.92, "y": -1135.08, "pop": 2233, "jobs": 0}, "53454656": {"x": -2449.87, "y": -1320.36, "pop": 1834, "jobs": 0}, "53454658": {"x": -2450.31, "y": -1344.85, "pop": 1841, "jobs": 0}, "53455651": {"x": 301.7, "y": 980.93, "pop": 2027, "jobs": 0}, "53455653": {"x": 346.73, "y": 1021.65, "pop": 2719, "jobs": 0}, "53455657": {"x": 425.4, "y": 1092.81, "pop": 2721, "jobs": 0}, "53456047": {"x": -2189.83, "y": -213.58, "pop": 0, "jobs": 4762}, "53456049": {"x": -2190.79, "y": -255.09, "pop": 0, "jobs": 4762}, "53456081": {"x": 462.87, "y": -117.11, "pop": 2476, "jobs": 1381}, "53461150": {"x": 415.43, "y": 803.84, "pop": 3009, "jobs": 652}, "53461154": {"x": 347.81, "y": 877.97, "pop": 2528, "jobs": 0}, "53461430": {"x": 2314.3, "y": 1353.78, "pop": 2840, "jobs": 0}, "53461432": {"x": 2493.25, "y": 1475.24, "pop": 3021, "jobs": 0}, "53461443": {"x": 2629.39, "y": 1531.31, "pop": 2027, "jobs": 4234}, "53461447": {"x": 839.29, "y": 126.92, "pop": 3512, "jobs": 1229}, "53461450": {"x": 994.48, "y": 167.39, "pop": 2083, "jobs": 209}, "53461456": {"x": 1020.3, "y": 182.87, "pop": 2143, "jobs": 209}, "53461463": {"x": 1296.68, "y": 434.68, "pop": 2331, "jobs": 299}, "53461467": {"x": 1443.78, "y": 569.59, "pop": 2911, "jobs": 607}, "53461474": {"x": 1593.49, "y": 704.54, "pop": 2632, "jobs": 642}, "53461478": {"x": 1742.8, "y": 839.27, "pop": 2558, "jobs": 2115}, "53461491": {"x": 1892.58, "y": 974.97, "pop": 2274, "jobs": 163}, "53461499": {"x": 2040.6, "y": 1110.73, "pop": 1531, "jobs": 6087}, "53461500": {"x": 2091.28, "y": 1154.72, "pop": 1340, "jobs": 6102}, "53461503": {"x": 2129.23, "y": 1189.66, "pop": 1004, "jobs": 6087}, "53461749": {"x": -1901.82, "y": -224.99, "pop": 0, "jobs": 20470}, "53461758": {"x": -2140.56, "y": -215.17, "pop": 0, "jobs": 14010}, "53461764": {"x": -2259.7, "y": -205.35, "pop": 0, "jobs": 7979}, "53461796": {"x": -2370.27, "y": -212.41, "pop": 0, "jobs": 18892}, "53461816": {"x": -2940.8, "y": -219.11, "pop": 2467, "jobs": 110}, "53461818": {"x": -3004.54, "y": -228.98, "pop": 2705, "jobs": 0}, "53461820": {"x": -3069.77, "y": -239.07, "pop": 3285, "jobs": 0}, "53462362": {"x": -2555.98, "y": -897.73, "pop": 2523, "jobs": 560}, "53462374": {"x": -2769.66, "y": -1081.93, "pop": 5890, "jobs": 1453}, "53462383": {"x": -2863.74, "y": -1163.15, "pop": 4599, "jobs": 1595}, "53462390": {"x": -2962.4, "y": -1246.7, "pop": 2574, "jobs": 1258}, "53462393": {"x": -2980.97, "y": -1262.15, "pop": 2256, "jobs": 1258}, "53462402": {"x": -3062.15, "y": -1330.4, "pop": 2465, "jobs": 0}, "53463508": {"x": -674.11, "y": -2410.8, "pop": 1023, "jobs": 350}, "53463513": {"x": -683.95, "y": -2531.71, "pop": 1176, "jobs": 1032}, "53463519": {"x": -733.45, "y": -2644.11, "pop": 1207, "jobs": 682}, "53463523": {"x": -786.49, "y": -2757.63, "pop": 1405, "jobs": 2509}, "53463532": {"x": -892.49, "y": -2870.32, "pop": 1087, "jobs": 2375}, "53463567": {"x": -639.09, "y": -2412.52, "pop": 984, "jobs": 350}, "53465696": {"x": 103.0, "y": -2233.66, "pop": 0, "jobs": 0}, "53467195": {"x": 2819.51, "y": 2679.0, "pop": 1145, "jobs": 2166}, "53467197": {"x": 2796.5, "y": 2750.33, "pop": 1579, "jobs": 641}, "53467413": {"x": -915.37, "y": 125.96, "pop": 6387, "jobs": 0}, "53467500": {"x": -272.6, "y": -448.03, "pop": 4774, "jobs": 7744}, "53467506": {"x": -206.31, "y": -520.26, "pop": 1689, "jobs": 7744}, "53470168": {"x": -956.78, "y": -2072.34, "pop": 1416, "jobs": 0}, "53470169": {"x": -960.95, "y": -2170.47, "pop": 2374, "jobs": 0}, "53470170": {"x": -965.81, "y": -2284.83, "pop": 2001, "jobs": 0}, "53470173": {"x": -970.7, "y": -2399.95, "pop": 1787, "jobs": 0}, "53472268": {"x": -1887.23, "y": -739.99, "pop": 79, "jobs": 7833}, "53472269": {"x": -1959.92, "y": -736.23, "pop": 616, "jobs": 5406}, "53472270": {"x": -2021.47, "y": -733.03, "pop": 2157, "jobs": 3788}, "53472460": {"x": -503.44, "y": 106.87, "pop": 2762, "jobs": 2959}, "53472467": {"x": -652.09, "y": -27.55, "pop": 4100, "jobs": 2275}, "53472474": {"x": -802.75, "y": -163.8, "pop": 16254, "jobs": 1759}, "53473010": {"x": -1266.38, "y": -2376.56, "pop": 1142, "jobs": 5279}, "53473027": {"x": -1313.53, "y": -2873.86, "pop": 136, "jobs": 3795}, "53473264": {"x": -2195.98, "y": -835.11, "pop": 5318, "jobs": 859}, "53473273": {"x": -2390.24, "y": -1014.15, "pop": 2337, "jobs": 59}, "53473289": {"x": -2640.88, "y": -1224.85, "pop": 2555, "jobs": 0}, "53473302": {"x": -2738.68, "y": -1308.39, "pop": 2889, "jobs": 0}, "53473312": {"x": -2838.73, "y": -1393.78, "pop": 2665, "jobs": 0}, "53473321": {"x": -2936.88, "y": -1477.62, "pop": 2478, "jobs": 0}, "53475092": {"x": 2959.77, "y": 2342.96, "pop": 667, "jobs": 0}, "53475094": {"x": 2954.79, "y": 2251.18, "pop": 1213, "jobs": 0}, "53475096": {"x": 2944.58, "y": 2060.68, "pop": 1300, "jobs": 0}, "53475099": {"x": 2940.96, "y": 1993.51, "pop": 1004, "jobs": 310}, "53475305": {"x": -3017.62, "y": -146.56, "pop": 1516, "jobs": 0}, "53475312": {"x": -2991.29, "y": -314.4, "pop": 2254, "jobs": 0}, "53475324": {"x": -3034.29, "y": -386.85, "pop": 1896, "jobs": 0}, "53478277": {"x": -2013.99, "y": -1717.44, "pop": 2219, "jobs": 600}, "53479821": {"x": -571.25, "y": 181.33, "pop": 3244, "jobs": 203}, "53480554": {"x": 2377.71, "y": 1863.6, "pop": 2154, "jobs": 2878}, "53481435": {"x": -2831.52, "y": -384.93, "pop": 1950, "jobs": 0}, "53481441": {"x": -2846.34, "y": -291.68, "pop": 2981, "jobs": 0}, "53481638": {"x": -993.08, "y": -2982.95, "pop": 85, "jobs": 1665}, "53481665": {"x": -1529.68, "y": -2889.9, "pop": 0, "jobs": 2141}, "53482952": {"x": -422.1, "y": -583.57, "pop": 1557, "jobs": 4400}, "53482954": {"x": -355.85, "y": -657.24, "pop": 2881, "jobs": 833}, "53482965": {"x": -287.39, "y": -728.76, "pop": 3576, "jobs": 0}, "53483330": {"x": -1758.68, "y": -926.36, "pop": 1171, "jobs": 2044}, "53483354": {"x": -2159.72, "y": -914.95, "pop": 2740, "jobs": 268}, "53483529": {"x": 348.17, "y": -145.68, "pop": 12966, "jobs": 1493}, "53483907": {"x": -2158.04, "y": -836.72, "pop": 6672, "jobs": 566}, "53483912": {"x": -2161.58, "y": -989.55, "pop": 2376, "jobs": 875}, "53483915": {"x": -2163.17, "y": -1049.33, "pop": 2108, "jobs": 875}, "53485100": {"x": -2626.37, "y": -287.68, "pop": 1884, "jobs": 1313}, "53485102": {"x": -2736.08, "y": -283.11, "pop": 2805, "jobs": 163}, "53486800": {"x": -2182.37, "y": -19.09, "pop": 0, "jobs": 10844}, "53486805": {"x": -2228.77, "y": -17.15, "pop": 0, "jobs": 4757}, "53486808": {"x": -2251.23, "y": -16.2, "pop": 0, "jobs": 4172}, "53486814": {"x": -2439.39, "y": -8.32, "pop": 79, "jobs": 19711}, "53486858": {"x": -2792.84, "y": 41.69, "pop": 252, "jobs": 8066}, "53486863": {"x": -2942.8, "y": 49.48, "pop": 0, "jobs": 6964}, "53487523": {"x": 2865.92, "y": 1785.37, "pop": 1748, "jobs": 1205}, "53487528": {"x": 2884.01, "y": 1701.17, "pop": 2009, "jobs": 0}, "53487531": {"x": 2901.8, "y": 1618.29, "pop": 2019, "jobs": 0}, "53487538": {"x": 2917.49, "y": 1545.26, "pop": 1952, "jobs": 0}, "53488193": {"x": -1608.13, "y": -306.41, "pop": 1754, "jobs": 16895}, "53488195": {"x": -1743.43, "y": -300.27, "pop": 4323, "jobs": 6045}, "53489932": {"x": -2949.04, "y": -172.88, "pop": 1956, "jobs": 110}, "53489934": {"x": -2953.61, "y": -139.26, "pop": 1386, "jobs": 1385}, "53489947": {"x": -2889.21, "y": -163.52, "pop": 1703, "jobs": 2926}, "53490476": {"x": 2383.47, "y": 1752.06, "pop": 2463, "jobs": 2521}, "53490480": {"x": 2476.67, "y": 1777.9, "pop": 3022, "jobs": 2356}, "53490485": {"x": 2574.96, "y": 1803.6, "pop": 1344, "jobs": 2677}, "53490487": {"x": 2588.48, "y": 1806.91, "pop": 1355, "jobs": 2851}, "53490491": {"x": 2658.06, "y": 1826.87, "pop": 2406, "jobs": 908}, "53490496": {"x": 2760.83, "y": 1849.67, "pop": 2406, "jobs": 912}, "53493114": {"x": -198.74, "y": -378.95, "pop": 5203, "jobs": 15013}, "53493128": {"x": -570.92, "y": -717.59, "pop": 4541, "jobs": 0}, "53493129": {"x": -721.47, "y": -853.6, "pop": 4922, "jobs": 2303}, "53493140": {"x": -893.0, "y": -1011.42, "pop": 1340, "jobs": 961}, "53494572": {"x": 2109.35, "y": 1035.22, "pop": 1504, "jobs": 6087}, "53494580": {"x": 2177.07, "y": 960.85, "pop": 3046, "jobs": 0}, "53494585": {"x": 2244.07, "y": 886.73, "pop": 1880, "jobs": 0}, "53496307": {"x": 2635.71, "y": 1637.51, "pop": 1835, "jobs": 5504}, "53496315": {"x": 2802.77, "y": 1680.84, "pop": 2651, "jobs": 0}, "53498225": {"x": 2091.4, "y": 2210.47, "pop": 2518, "jobs": 0}, "53498229": {"x": 2021.92, "y": 2282.08, "pop": 1498, "jobs": 322}, "53498398": {"x": 2682.28, "y": 2264.82, "pop": 1482, "jobs": 231}, "53498412": {"x": 2673.97, "y": 2111.93, "pop": 2414, "jobs": 68}, "53498415": {"x": 2671.89, "y": 2074.64, "pop": 2170, "jobs": 0}, "53498417": {"x": 2663.6, "y": 1926.17, "pop": 3240, "jobs": 342}, "53498437": {"x": 2638.63, "y": 1729.68, "pop": 1385, "jobs": 188}, "53498440": {"x": 2638.1, "y": 1683.02, "pop": 1717, "jobs": 4910}, "53498447": {"x": 2624.79, "y": 1448.54, "pop": 2618, "jobs": 0}, "53499266": {"x": 1605.55, "y": 2734.25, "pop": 207, "jobs": 20058}, "53499287": {"x": -1014.74, "y": 169.62, "pop": 3566, "jobs": 597}, "53499299": {"x": -1089.01, "y": -694.31, "pop": 0, "jobs": 19825}, "53503712": {"x": 2325.94, "y": 1779.39, "pop": 1087, "jobs": 4225}, "53503834": {"x": -1890.95, "y": -1057.17, "pop": 1681, "jobs": 1904}, "53503843": {"x": -1895.73, "y": -1238.33, "pop": 2380, "jobs": 0}, "53503849": {"x": -1898.86, "y": -1359.85, "pop": 2499, "jobs": 439}, "53503855": {"x": -1899.72, "y": -1415.5, "pop": 2025, "jobs": 439}, "53503864": {"x": -1889.65, "y": -850.04, "pop": 847, "jobs": 2761}, "53504312": {"x": -2550.41, "y": -545.22, "pop": 1589, "jobs": 0}, "53504327": {"x": -2634.04, "y": -541.76, "pop": 2696, "jobs": 0}, "53504329": {"x": -2779.3, "y": -536.14, "pop": 2347, "jobs": 0}, "53508174": {"x": -808.85, "y": -757.22, "pop": 6325, "jobs": 1231}, "53508176": {"x": -896.94, "y": -659.93, "pop": 7730, "jobs": 561}, "53509875": {"x": -1685.42, "y": -675.41, "pop": 3548, "jobs": 810}, "53509878": {"x": -1752.17, "y": -672.57, "pop": 2390, "jobs": 1942}, "53509962": {"x": -1751.79, "y": -648.05, "pop": 2350, "jobs": 74}, "53510000": {"x": -2154.48, "y": -627.78, "pop": 3984, "jobs": 1163}, "53510799": {"x": 1254.69, "y": 2453.4, "pop": 1567, "jobs": 0}, "53510828": {"x": 1405.29, "y": 2713.01, "pop": 1898, "jobs": 17}, "53511571": {"x": -1420.96, "y": -1491.31, "pop": 821, "jobs": 607}, "53511582": {"x": -1642.93, "y": -1486.06, "pop": 2711, "jobs": 0}, "53511589": {"x": -1773.13, "y": -1483.91, "pop": 2097, "jobs": 0}, "53511593": {"x": -2008.64, "y": -1477.58, "pop": 2461, "jobs": 0}, "53511598": {"x": -2029.43, "y": -1476.87, "pop": 2498, "jobs": 0}, "53511603": {"x": -2114.61, "y": -1475.04, "pop": 2396, "jobs": 117}, "53511694": {"x": -902.49, "y": -3083.55, "pop": 485, "jobs": 1302}, "53511712": {"x": -945.99, "y": -2751.31, "pop": 1404, "jobs": 903}, "53511723": {"x": -1033.75, "y": -2637.83, "pop": 727, "jobs": 118}, "53514806": {"x": -2782.71, "y": -627.02, "pop": 2544, "jobs": 0}, "53514812": {"x": -2777.48, "y": -464.5, "pop": 2029, "jobs": 0}, "53514818": {"x": -2776.91, "y": -371.04, "pop": 1861, "jobs": 0}, "53515071": {"x": 1459.85, "y": 854.01, "pop": 777, "jobs": 1284}, "53515077": {"x": 1609.22, "y": 988.4, "pop": 2199, "jobs": 1446}, "53515080": {"x": 1663.45, "y": 1039.66, "pop": 2231, "jobs": 590}, "53515081": {"x": 1756.39, "y": 1123.3, "pop": 1134, "jobs": 1831}, "53515084": {"x": 106.94, "y": -369.95, "pop": 0, "jobs": 39284}, "53515093": {"x": 485.36, "y": -24.07, "pop": 1972, "jobs": 332}, "53516186": {"x": -2546.15, "y": -400.14, "pop": 1289, "jobs": 0}, "53521155": {"x": -2957.19, "y": -895.97, "pop": 1918, "jobs": 354}, "53521446": {"x": -847.38, "y": 186.44, "pop": 5602, "jobs": 0}, "53521450": {"x": -884.66, "y": 153.28, "pop": 6796, "jobs": 0}, "53522245": {"x": 2543.43, "y": 1930.96, "pop": 2384, "jobs": 0}, "53523650": {"x": -2142.23, "y": -345.62, "pop": 0, "jobs": 8944}, "53525132": {"x": 57.04, "y": 30.02, "pop": 2850, "jobs": 26303}, "53529499": {"x": 2536.15, "y": 1935.84, "pop": 2412, "jobs": 0}, "53529508": {"x": 2651.83, "y": 2125.21, "pop": 2445, "jobs": 68}, "53529532": {"x": 2688.81, "y": 2647.88, "pop": 2135, "jobs": 849}, "53529537": {"x": 2619.94, "y": 2719.9, "pop": 1540, "jobs": 1655}, "53529540": {"x": 2549.21, "y": 2792.83, "pop": 653, "jobs": 1655}, "53529686": {"x": -1645.36, "y": -1608.09, "pop": 1952, "jobs": 0}, "53529689": {"x": -1775.39, "y": -1605.34, "pop": 2180, "jobs": 0}, "53529692": {"x": -2011.08, "y": -1596.42, "pop": 2727, "jobs": 0}, "53534017": {"x": -2454.42, "y": -940.98, "pop": 3747, "jobs": 277}, "53536993": {"x": 1296.95, "y": 1333.45, "pop": 2391, "jobs": 0}, "53536994": {"x": 1256.77, "y": 1376.42, "pop": 2726, "jobs": 0}, "53536997": {"x": 1204.27, "y": 1433.81, "pop": 2090, "jobs": 199}, "53536998": {"x": 1161.62, "y": 1481.82, "pop": 1893, "jobs": 199}, "53537015": {"x": 854.94, "y": 1767.44, "pop": 2056, "jobs": 0}, "53537030": {"x": 2262.15, "y": 1431.6, "pop": 2351, "jobs": 0}, "53537035": {"x": 2379.68, "y": 1512.44, "pop": 2677, "jobs": 118}, "53537040": {"x": 2437.42, "y": 1552.27, "pop": 2466, "jobs": 118}, "53538723": {"x": 1872.54, "y": 1860.55, "pop": 11794, "jobs": 220}, "53538727": {"x": 2016.92, "y": 1999.58, "pop": 2222, "jobs": 638}, "53538730": {"x": 2062.34, "y": 2043.3, "pop": 2196, "jobs": 638}, "53538734": {"x": 2161.66, "y": 2138.3, "pop": 2408, "jobs": 0}, "53538736": {"x": -105.25, "y": 74.82, "pop": 5101, "jobs": 8598}, "53538741": {"x": -29.29, "y": 125.41, "pop": 7693, "jobs": 8013}, "53538743": {"x": 117.77, "y": 262.27, "pop": 4439, "jobs": 864}, "53538776": {"x": 1444.12, "y": 1467.45, "pop": 608, "jobs": 8918}, "53538791": {"x": 2559.06, "y": 2523.96, "pop": 2428, "jobs": 220}, "53538820": {"x": -106.2, "y": 40.45, "pop": 1408, "jobs": 10032}, "53539161": {"x": 40.74, "y": -297.08, "pop": 0, "jobs": 34433}, "53539171": {"x": 201.56, "y": -141.39, "pop": 4770, "jobs": 14798}, "53539549": {"x": 1992.46, "y": 1504.76, "pop": 1647, "jobs": 0}, "53539556": {"x": 2068.45, "y": 1358.86, "pop": 1015, "jobs": 549}, "53540659": {"x": -55.12, "y": -384.51, "pop": 2710, "jobs": 29143}, "53540665": {"x": 10.78, "y": -458.15, "pop": 87, "jobs": 36240}, "53540837": {"x": 2796.59, "y": 1883.63, "pop": 2509, "jobs": 888}, "53540839": {"x": 2844.76, "y": 1921.2, "pop": 1440, "jobs": 1326}, "53541408": {"x": 42.21, "y": 465.22, "pop": 4039, "jobs": 0}, "53543498": {"x": -290.67, "y": -2294.05, "pop": 2489, "jobs": 0}, "53544863": {"x": -242.55, "y": -2198.31, "pop": 2055, "jobs": 0}, "53544865": {"x": -250.37, "y": -2393.01, "pop": 2051, "jobs": 0}, "53545466": {"x": -1624.32, "y": -742.03, "pop": 2877, "jobs": 1308}, "53545473": {"x": -1753.23, "y": -736.17, "pop": 2038, "jobs": 2131}, "53545894": {"x": -1962.23, "y": -846.68, "pop": 911, "jobs": 3644}, "53549773": {"x": -2871.89, "y": -514.13, "pop": 1958, "jobs": 0}, "53549801": {"x": -2959.18, "y": -454.29, "pop": 2029, "jobs": 0}, "53549949": {"x": -2978.09, "y": -1020.46, "pop": 2027, "jobs": 0}, "53549957": {"x": -3098.43, "y": -1122.62, "pop": 2345, "jobs": 0}, "53551340": {"x": -189.73, "y": -2120.76, "pop": 1956, "jobs": 0}, "53551342": {"x": -192.82, "y": -2200.47, "pop": 1925, "jobs": 109}, "53552967": {"x": -285.69, "y": -2196.45, "pop": 2080, "jobs": 0}, "53552968": {"x": -294.49, "y": -2390.97, "pop": 2073, "jobs": 0}, "53555070": {"x": 1174.61, "y": 2516.35, "pop": 2080, "jobs": 0}, "53556263": {"x": -2973.37, "y": -3036.17, "pop": 573, "jobs": 0}, "53556383": {"x": -2338.48, "y": -828.96, "pop": 4920, "jobs": 800}, "53556400": {"x": -2801.53, "y": -1236.1, "pop": 2521, "jobs": 887}, "53556402": {"x": -2901.59, "y": -1319.52, "pop": 2685, "jobs": 153}, "53556407": {"x": -3000.03, "y": -1402.9, "pop": 2658, "jobs": 0}, "53558103": {"x": 1534.79, "y": 378.66, "pop": 1708, "jobs": 673}, "53558110": {"x": 1818.34, "y": 635.29, "pop": 2775, "jobs": 0}, "53558116": {"x": 1879.05, "y": 690.93, "pop": 2834, "jobs": 0}, "53558125": {"x": 2027.07, "y": 825.11, "pop": 2936, "jobs": 0}, "53558139": {"x": 2269.95, "y": 1045.16, "pop": 1649, "jobs": 0}, "53558145": {"x": 2433.19, "y": 1195.84, "pop": 2435, "jobs": 0}, "53558147": {"x": 2436.4, "y": 1199.75, "pop": 2376, "jobs": 0}, "53558151": {"x": 2530.21, "y": 1320.38, "pop": 2916, "jobs": 0}, "53558152": {"x": 2580.82, "y": 1385.31, "pop": 2839, "jobs": 0}, "53558155": {"x": 1414.12, "y": 303.31, "pop": 1291, "jobs": 673}, "53558157": {"x": 1419.4, "y": 297.72, "pop": 1209, "jobs": 673}, "53558159": {"x": 1461.95, "y": 338.07, "pop": 1631, "jobs": 673}, "53560253": {"x": -1498.67, "y": -1368.03, "pop": 1183, "jobs": 1494}, "53560766": {"x": 1539.5, "y": 1363.7, "pop": 0, "jobs": 371}, "53560776": {"x": 1662.98, "y": 1227.95, "pop": 154, "jobs": 5197}, "53560780": {"x": 1717.25, "y": 1168.07, "pop": 591, "jobs": 3341}, "53560789": {"x": 1959.95, "y": 900.98, "pop": 2358, "jobs": 0}, "53560795": {"x": 2095.3, "y": 753.03, "pop": 2268, "jobs": 0}, "53560796": {"x": 2121.05, "y": 724.36, "pop": 1610, "jobs": 0}, "53562507": {"x": -409.12, "y": -2386.16, "pop": 1580, "jobs": 0}, "53562563": {"x": 2155.84, "y": 2693.58, "pop": 751, "jobs": 0}, "53568332": {"x": 2723.62, "y": 1452.1, "pop": 2343, "jobs": 0}, "53568810": {"x": 1210.63, "y": 2389.22, "pop": 1687, "jobs": 0}, "53570522": {"x": 2105.33, "y": 1998.96, "pop": 1958, "jobs": 638}, "53570527": {"x": 2205.5, "y": 2093.72, "pop": 2270, "jobs": 150}, "53571775": {"x": 1811.47, "y": 765.33, "pop": 3197, "jobs": 0}, "53571781": {"x": 1930.55, "y": 633.46, "pop": 1978, "jobs": 0}, "53572019": {"x": 2455.13, "y": 1985.9, "pop": 1838, "jobs": 871}, "53572020": {"x": 2497.35, "y": 1960.93, "pop": 2409, "jobs": 419}, "53572027": {"x": 2753.74, "y": 1919.4, "pop": 2885, "jobs": 472}, "53572824": {"x": -3018.73, "y": -617.15, "pop": 1751, "jobs": 0}, "53572846": {"x": -3015.09, "y": -500.88, "pop": 2084, "jobs": 0}, "53573840": {"x": 248.73, "y": -2262.36, "pop": 890, "jobs": 0}, "53573861": {"x": -53.68, "y": -2206.06, "pop": 283, "jobs": 2906}, "53575900": {"x": -2116.58, "y": -1558.01, "pop": 2482, "jobs": 0}, "53575901": {"x": -2117.97, "y": -1618.64, "pop": 2633, "jobs": 0}, "53576821": {"x": -1756.79, "y": -856.17, "pop": 1167, "jobs": 1648}, "53576823": {"x": -1761.83, "y": -1059.89, "pop": 2695, "jobs": 1048}, "53576826": {"x": -1763.75, "y": -1120.96, "pop": 3262, "jobs": 1048}, "53576829": {"x": -1766.52, "y": -1241.81, "pop": 3200, "jobs": 0}, "53576831": {"x": -1769.48, "y": -1363.33, "pop": 2196, "jobs": 439}, "53578330": {"x": 611.55, "y": 1191.43, "pop": 1436, "jobs": 1016}, "53578339": {"x": 678.41, "y": 1407.75, "pop": 1970, "jobs": 0}, "53578351": {"x": 1036.97, "y": 1973.79, "pop": 0, "jobs": 0}, "53578355": {"x": 1104.21, "y": 2050.69, "pop": 133, "jobs": 0}, "53578357": {"x": 1125.16, "y": 2073.76, "pop": 133, "jobs": 0}, "53578366": {"x": 1248.14, "y": 2302.21, "pop": 2032, "jobs": 0}, "53578383": {"x": 1460.07, "y": 2709.02, "pop": 1818, "jobs": 17}, "53578394": {"x": 1500.94, "y": 2783.7, "pop": 788, "jobs": 455}, "53578514": {"x": -502.96, "y": -791.63, "pop": 3973, "jobs": 0}, "53578519": {"x": -652.88, "y": -928.42, "pop": 4944, "jobs": 540}, "53578682": {"x": -2636.24, "y": -633.47, "pop": 2975, "jobs": 0}, "53578687": {"x": -2985.81, "y": -618.61, "pop": 1755, "jobs": 0}, "53580606": {"x": -2427.11, "y": 247.98, "pop": 2783, "jobs": 0}, "53580611": {"x": -2418.07, "y": 286.66, "pop": 2899, "jobs": 0}, "53580632": {"x": 746.79, "y": 1434.61, "pop": 2668, "jobs": 0}, "53582203": {"x": -1214.64, "y": -515.98, "pop": 4384, "jobs": 11540}, "53582205": {"x": -1206.64, "y": -389.29, "pop": 31378, "jobs": 2401}, "53582923": {"x": -2639.01, "y": -724.72, "pop": 2406, "jobs": 0}, "53589708": {"x": -2254.83, "y": -110.43, "pop": 0, "jobs": 6232}, "53589713": {"x": -2232.96, "y": -111.22, "pop": 0, "jobs": 10527}, "53589715": {"x": -2230.47, "y": -56.1, "pop": 0, "jobs": 4813}, "53589716": {"x": -2236.52, "y": -208.79, "pop": 0, "jobs": 6766}, "53589760": {"x": 2529.09, "y": 1425.77, "pop": 3132, "jobs": 0}, "53589769": {"x": 2340.46, "y": 1572.11, "pop": 1956, "jobs": 466}, "53589794": {"x": 2270.79, "y": 1689.66, "pop": 2824, "jobs": 3312}, "53589799": {"x": 2335.96, "y": 1596.36, "pop": 1879, "jobs": 647}, "53589977": {"x": -3141.96, "y": -2913.12, "pop": 337, "jobs": 0}, "53590668": {"x": -795.51, "y": -3088.79, "pop": 1088, "jobs": 0}, "53590699": {"x": -2311.4, "y": -1105.68, "pop": 2166, "jobs": 0}, "53590707": {"x": -2317.09, "y": -1227.11, "pop": 2149, "jobs": 0}, "53590715": {"x": -2321.06, "y": -1391.89, "pop": 1267, "jobs": 0}, "53591793": {"x": -449.69, "y": -251.99, "pop": 0, "jobs": 24258}, "53591794": {"x": -518.45, "y": -180.11, "pop": 10568, "jobs": 14221}, "53591804": {"x": -875.13, "y": 217.26, "pop": 4671, "jobs": 0}, "53596324": {"x": 2719.0, "y": 1534.48, "pop": 2476, "jobs": 0}, "53596328": {"x": 2817.36, "y": 1538.72, "pop": 2894, "jobs": 0}, "53596618": {"x": 1771.11, "y": 509.14, "pop": 1385, "jobs": 0}, "53596818": {"x": -2142.99, "y": -278.4, "pop": 0, "jobs": 7892}, "53599217": {"x": 2898.35, "y": 2705.9, "pop": 780, "jobs": 1436}, "53601429": {"x": 2613.26, "y": 2150.27, "pop": 2074, "jobs": 131}, "53602671": {"x": -2023.82, "y": -843.83, "pop": 2253, "jobs": 2109}, "53604256": {"x": -338.27, "y": -152.61, "pop": 1324, "jobs": 10420}, "53604257": {"x": -374.05, "y": -183.74, "pop": 920, "jobs": 20253}, "53604259": {"x": -599.55, "y": -387.68, "pop": 8237, "jobs": 413}, "53604263": {"x": -747.7, "y": -524.07, "pop": 5856, "jobs": 124}, "53604267": {"x": -944.97, "y": -703.79, "pop": 7701, "jobs": 561}, "53604822": {"x": 2571.7, "y": 2175.65, "pop": 1677, "jobs": 131}, "53604832": {"x": 2761.75, "y": 2071.25, "pop": 2515, "jobs": 0}, "53607068": {"x": -1881.37, "y": -482.21, "pop": 328, "jobs": 15958}, "53607075": {"x": -1878.18, "y": -356.0, "pop": 341, "jobs": 7141}, "53608986": {"x": -734.28, "y": -239.25, "pop": 27281, "jobs": 188}, "53610868": {"x": -2920.62, "y": -1091.55, "pop": 4946, "jobs": 251}, "53610896": {"x": -3079.4, "y": -890.42, "pop": 1770, "jobs": 0}, "53610898": {"x": -3061.68, "y": -913.19, "pop": 1953, "jobs": 0}, "53611257": {"x": 2775.04, "y": 2304.47, "pop": 1135, "jobs": 0}, "53611260": {"x": 2771.37, "y": 2259.86, "pop": 1745, "jobs": 0}, "53611268": {"x": 2785.0, "y": 1764.7, "pop": 1864, "jobs": 570}, "53611281": {"x": 2821.42, "y": 1456.92, "pop": 2305, "jobs": 0}, "53612039": {"x": -1514.19, "y": -2257.48, "pop": 2121, "jobs": 0}, "53612042": {"x": -1602.3, "y": -2288.85, "pop": 937, "jobs": 0}, "53615252": {"x": -286.8, "y": -282.13, "pop": 1123, "jobs": 11104}, "53615260": {"x": -658.72, "y": -621.11, "pop": 3604, "jobs": 767}, "53616146": {"x": 495.26, "y": 116.79, "pop": 1595, "jobs": 5130}, "53616166": {"x": -1627.33, "y": -862.38, "pop": 2437, "jobs": 3103}, "53616173": {"x": -1622.24, "y": -678.11, "pop": 3627, "jobs": 736}, "53616175": {"x": -1617.96, "y": -593.95, "pop": 3315, "jobs": 0}, "53616182": {"x": -1617.78, "y": -495.19, "pop": 1664, "jobs": 2597}, "53616188": {"x": -1611.85, "y": -369.8, "pop": 2152, "jobs": 18039}, "53616189": {"x": -1604.54, "y": -238.19, "pop": 2763, "jobs": 18745}, "53620227": {"x": -101.05, "y": -2123.85, "pop": 799, "jobs": 652}, "53621162": {"x": -2478.3, "y": -1344.03, "pop": 1808, "jobs": 0}, "53621164": {"x": -2514.5, "y": -1374.03, "pop": 1825, "jobs": 0}, "53621168": {"x": -2613.72, "y": -1458.66, "pop": 1989, "jobs": 0}, "53621256": {"x": -1639.32, "y": -1365.38, "pop": 2069, "jobs": 0}, "53621269": {"x": -2027.21, "y": -1356.68, "pop": 2683, "jobs": 0}, "53621277": {"x": -2267.38, "y": -1349.97, "pop": 1782, "jobs": 0}, "53621652": {"x": 1912.31, "y": 615.17, "pop": 1898, "jobs": 0}, "53624470": {"x": -72.83, "y": -3092.38, "pop": 0, "jobs": 0}, "53625770": {"x": -3040.41, "y": -1191.09, "pop": 2369, "jobs": 973}, "53626974": {"x": 2367.65, "y": 2477.37, "pop": 2038, "jobs": 0}, "53626978": {"x": 2295.76, "y": 2548.51, "pop": 2143, "jobs": 0}, "53626983": {"x": 2131.29, "y": 2717.72, "pop": 533, "jobs": 0}, "53628825": {"x": 2377.4, "y": 1286.1, "pop": 2968, "jobs": 0}, "53628954": {"x": -1625.82, "y": -799.63, "pop": 3892, "jobs": 1737}, "53628956": {"x": -1755.24, "y": -792.94, "pop": 1312, "jobs": 2443}, "53629591": {"x": -782.0, "y": -1303.43, "pop": 1320, "jobs": 125}, "53631422": {"x": 416.78, "y": 941.52, "pop": 3585, "jobs": 62}, "53636372": {"x": 2137.06, "y": 1470.47, "pop": 1763, "jobs": 0}, "53636377": {"x": 2509.32, "y": 2073.85, "pop": 2327, "jobs": 0}, "53637455": {"x": -377.1, "y": 357.44, "pop": 3034, "jobs": 2477}, "53639872": {"x": -1377.96, "y": -2116.33, "pop": 3278, "jobs": 664}, "53639885": {"x": -1495.99, "y": -2833.58, "pop": 142, "jobs": 0}, "53640713": {"x": 2015.32, "y": 2276.39, "pop": 1539, "jobs": 322}, "53640720": {"x": 1904.94, "y": 2180.94, "pop": 941, "jobs": 3665}, "53640725": {"x": 1885.13, "y": 2133.48, "pop": 994, "jobs": 5610}, "53640736": {"x": 1743.28, "y": 1988.05, "pop": 375, "jobs": 2274}, "53640824": {"x": 714.7, "y": 1074.46, "pop": 3013, "jobs": 0}, "53640831": {"x": 266.57, "y": 668.77, "pop": 2724, "jobs": 654}, "53640838": {"x": -241.91, "y": 208.16, "pop": 3516, "jobs": 2418}, "53640863": {"x": 1912.97, "y": 2250.47, "pop": 491, "jobs": 4294}, "53642012": {"x": -860.32, "y": -88.3, "pop": 3876, "jobs": 3586}, "53642768": {"x": -372.67, "y": -1955.72, "pop": 1564, "jobs": 0}, "53642775": {"x": -383.22, "y": -2192.22, "pop": 1765, "jobs": 1422}, "53642782": {"x": -416.93, "y": -2385.82, "pop": 1557, "jobs": 0}, "53643765": {"x": -2019.78, "y": -1053.48, "pop": 2170, "jobs": 1407}, "53643768": {"x": -2020.52, "y": -1114.81, "pop": 2480, "jobs": 0}, "53643772": {"x": -2023.77, "y": -1235.22, "pop": 2811, "jobs": 0}, "53644201": {"x": 293.62, "y": -2254.41, "pop": 806, "jobs": 0}, "53644706": {"x": 1863.26, "y": 2153.61, "pop": 617, "jobs": 5610}, "53645079": {"x": 1316.32, "y": 315.86, "pop": 2714, "jobs": 299}, "53645778": {"x": -2893.34, "y": -410.25, "pop": 2037, "jobs": 0}, "53646359": {"x": -915.37, "y": 188.1, "pop": 5534, "jobs": 0}, "53646449": {"x": -1681.82, "y": -600.63, "pop": 3201, "jobs": 0}, "53647040": {"x": -2065.37, "y": -1620.07, "pop": 2861, "jobs": 0}, "53649099": {"x": 2174.67, "y": 1459.42, "pop": 2137, "jobs": 0}, "53649103": {"x": 2266.31, "y": 1520.74, "pop": 2084, "jobs": 446}, "53649105": {"x": 2425.88, "y": 1631.27, "pop": 1850, "jobs": 415}, "53652463": {"x": -1740.94, "y": -231.63, "pop": 0, "jobs": 7625}, "53655118": {"x": -174.57, "y": 134.02, "pop": 3088, "jobs": 7036}, "53655130": {"x": -451.36, "y": 439.81, "pop": 1507, "jobs": 410}, "53659829": {"x": -3083.51, "y": -148.53, "pop": 1951, "jobs": 0}, "53663953": {"x": -585.53, "y": -1003.73, "pop": 3363, "jobs": 1951}, "53663960": {"x": -677.48, "y": -1093.6, "pop": 6504, "jobs": 3381}, "53663978": {"x": -468.58, "y": -830.91, "pop": 4296, "jobs": 0}, "53667246": {"x": 1071.67, "y": 175.81, "pop": 1606, "jobs": 0}, "53667261": {"x": 1362.27, "y": 358.28, "pop": 2200, "jobs": 972}, "53667521": {"x": 335.02, "y": 593.7, "pop": 2457, "jobs": 2268}, "53668846": {"x": 1231.16, "y": 1409.14, "pop": 2369, "jobs": 199}, "53668858": {"x": 1377.01, "y": 1542.18, "pop": 1641, "jobs": 2958}, "53668862": {"x": 1524.96, "y": 1678.43, "pop": 740, "jobs": 1929}, "53668890": {"x": 2488.34, "y": 2595.28, "pop": 2468, "jobs": 0}, "53668892": {"x": 2547.77, "y": 2654.23, "pop": 1212, "jobs": 1655}, "53668897": {"x": 1799.79, "y": 1925.37, "pop": 1186, "jobs": 2274}, "53668900": {"x": 1948.24, "y": 2069.86, "pop": 2181, "jobs": 0}, "53668988": {"x": -1748.91, "y": -488.3, "pop": 26, "jobs": 6951}, "53668996": {"x": -1744.67, "y": -363.1, "pop": 4323, "jobs": 8658}, "53670180": {"x": 1869.54, "y": 579.78, "pop": 1543, "jobs": 0}, "53672055": {"x": 1381.78, "y": 2191.49, "pop": 1374, "jobs": 0}, "53672772": {"x": -3032.1, "y": -892.74, "pop": 1875, "jobs": 0}, "53672943": {"x": 804.78, "y": 1706.97, "pop": 2299, "jobs": 0}, "53672961": {"x": 391.9, "y": 1129.93, "pop": 1662, "jobs": 0}, "53676376": {"x": -1634.53, "y": -1123.55, "pop": 1683, "jobs": 12071}, "53677752": {"x": -2802.33, "y": -3.25, "pop": 278, "jobs": 5525}, "53679791": {"x": -445.48, "y": -1945.76, "pop": 1027, "jobs": 0}, "53679815": {"x": -1567.5, "y": -2383.08, "pop": 968, "jobs": 0}, "53679819": {"x": -1546.6, "y": -2484.4, "pop": 1110, "jobs": 0}, "53680486": {"x": -2781.54, "y": -2837.43, "pop": 0, "jobs": 0}, "53680499": {"x": -2911.61, "y": -2971.92, "pop": 1164, "jobs": 0}, "53680515": {"x": -1845.76, "y": -1058.28, "pop": 1921, "jobs": 1904}, "53684762": {"x": -2641.99, "y": -817.18, "pop": 2104, "jobs": 90}, "53684770": {"x": -2629.69, "y": -397.82, "pop": 2367, "jobs": 0}, "53692030": {"x": -2168.16, "y": -1231.53, "pop": 2177, "jobs": 0}, "53692040": {"x": -2447.73, "y": -1224.02, "pop": 2275, "jobs": 0}, "53695962": {"x": -2066.8, "y": -1558.99, "pop": 2833, "jobs": 0}, "53699396": {"x": -666.65, "y": -314.88, "pop": 15176, "jobs": 413}, "53700390": {"x": -2986.58, "y": -2901.49, "pop": 676, "jobs": 0}, "53700870": {"x": -434.27, "y": -870.69, "pop": 4316, "jobs": 0}, "53700872": {"x": -382.95, "y": -924.04, "pop": 2053, "jobs": 0}, "53703066": {"x": -2185.71, "y": -84.35, "pop": 0, "jobs": 9986}, "53709531": {"x": -1892.87, "y": -1118.17, "pop": 1928, "jobs": 1904}, "53709543": {"x": -2165.52, "y": -1110.84, "pop": 2055, "jobs": 875}, "53711224": {"x": 1426.43, "y": 290.26, "pop": 1140, "jobs": 673}, "53713371": {"x": 1557.88, "y": 1659.96, "pop": 311, "jobs": 1929}, "53713378": {"x": 1482.11, "y": 1709.27, "pop": 1017, "jobs": 181}, "53714922": {"x": 2201.67, "y": 2597.89, "pop": 1087, "jobs": 0}, "53714925": {"x": 2225.74, "y": 2621.25, "pop": 1457, "jobs": 0}, "53719166": {"x": 1965.35, "y": 1757.55, "pop": 1162, "jobs": 272}, "53720172": {"x": -435.66, "y": 32.45, "pop": 1083, "jobs": 14399}, "53723920": {"x": 2055.71, "y": 1552.55, "pop": 1917, "jobs": 0}, "53725877": {"x": -2327.84, "y": 247.5, "pop": 2555, "jobs": 0}, "53727021": {"x": 2419.7, "y": 2667.32, "pop": 2293, "jobs": 0}, "53727030": {"x": 2349.77, "y": 2741.27, "pop": 2076, "jobs": 0}, "53727087": {"x": 367.13, "y": -3077.03, "pop": 0, "jobs": 0}, "258725731": {"x": -2671.06, "y": -1897.28, "pop": 0, "jobs": 0}, "270405510": {"x": -1787.51, "y": -2011.57, "pop": 670, "jobs": 0}, "316165989": {"x": 255.67, "y": -2280.05, "pop": 738, "jobs": 0}, "316292003": {"x": -159.51, "y": 417.41, "pop": 2315, "jobs": 75}, "316292008": {"x": 198.24, "y": 743.19, "pop": 2219, "jobs": 0}, "316302550": {"x": 484.82, "y": 727.76, "pop": 6024, "jobs": 1903}, "316302556": {"x": 632.8, "y": 864.49, "pop": 2305, "jobs": 125}, "316302558": {"x": 700.35, "y": 790.34, "pop": 987, "jobs": 1665}, "316303180": {"x": 781.97, "y": 700.78, "pop": 1704, "jobs": 2124}, "316305090": {"x": 1581.65, "y": 421.0, "pop": 1731, "jobs": 33}, "316305093": {"x": 1729.77, "y": 557.09, "pop": 1998, "jobs": 0}, "316305099": {"x": 1512.37, "y": 493.76, "pop": 2178, "jobs": 33}, "316306590": {"x": 1514.14, "y": 2807.62, "pop": 1533, "jobs": 455}, "316334513": {"x": 333.44, "y": 292.28, "pop": 1535, "jobs": 2234}, "316334514": {"x": 366.66, "y": 300.05, "pop": 689, "jobs": 1708}, "316342869": {"x": 2297.73, "y": 1734.11, "pop": 2828, "jobs": 3108}, "316349604": {"x": 345.58, "y": 280.12, "pop": 1413, "jobs": 2234}, "316357138": {"x": -1498.11, "y": -1357.52, "pop": 836, "jobs": 1494}, "316357429": {"x": -1467.52, "y": -1361.97, "pop": 721, "jobs": 1494}, "316357431": {"x": -1029.88, "y": -963.08, "pop": 987, "jobs": 656}, "316562664": {"x": -171.66, "y": -2523.05, "pop": 386, "jobs": 0}, "316562665": {"x": -306.87, "y": -2469.85, "pop": 777, "jobs": 0}, "316562667": {"x": -418.95, "y": -2437.4, "pop": 1087, "jobs": 0}, "349368476": {"x": 2166.22, "y": 2422.88, "pop": 1102, "jobs": 566}, "349378518": {"x": 998.9, "y": 1062.16, "pop": 15090, "jobs": 2112}, "362566885": {"x": -212.46, "y": -868.43, "pop": 409, "jobs": 0}, "362597488": {"x": -1378.18, "y": -1279.75, "pop": 1559, "jobs": 440}, "366215894": {"x": 644.88, "y": 550.87, "pop": 11641, "jobs": 7493}, "366215899": {"x": 792.19, "y": 689.55, "pop": 1704, "jobs": 2124}, "366215907": {"x": 941.86, "y": 824.59, "pop": 15796, "jobs": 193}, "366215913": {"x": 1091.04, "y": 960.61, "pop": 13825, "jobs": 3107}, "366215925": {"x": 1389.6, "y": 1229.51, "pop": 6462, "jobs": 1858}, "366220625": {"x": 239.88, "y": -318.84, "pop": 2135, "jobs": 12757}, "366229504": {"x": -0.34, "y": -2208.13, "pop": 0, "jobs": 2797}, "366229507": {"x": 21.04, "y": -2208.76, "pop": 0, "jobs": 2145}, "387001668": {"x": -280.5, "y": -126.55, "pop": 3561, "jobs": 8208}, "387096443": {"x": -279.56, "y": -107.25, "pop": 11871, "jobs": 6542}, "387186790": {"x": -1016.98, "y": -952.33, "pop": 987, "jobs": 656}, "387186883": {"x": -256.84, "y": -982.68, "pop": 0, "jobs": 0}, "387186935": {"x": -304.32, "y": -961.86, "pop": 15, "jobs": 0}, "387187387": {"x": -502.83, "y": -1094.65, "pop": 0, "jobs": 2934}, "387187392": {"x": -724.32, "y": -1247.33, "pop": 3708, "jobs": 125}, "445963180": {"x": -1447.94, "y": 86.04, "pop": 0, "jobs": 16971}, "446196405": {"x": 1912.27, "y": 2383.17, "pop": 0, "jobs": 2144}, "446196406": {"x": 1926.24, "y": 2376.5, "pop": 101, "jobs": 2159}, "446198895": {"x": 1730.4, "y": 2001.33, "pop": 248, "jobs": 0}, "447178131": {"x": 2713.91, "y": 2352.37, "pop": 1086, "jobs": 1952}, "447178140": {"x": 2762.63, "y": 2351.09, "pop": 1788, "jobs": 1952}, "449907112": {"x": 482.97, "y": 431.45, "pop": 596, "jobs": 3180}, "449917758": {"x": 909.6, "y": 796.57, "pop": 595, "jobs": 2186}, "449920083": {"x": 964.92, "y": 864.9, "pop": 15779, "jobs": 5343}, "449934218": {"x": 1631.54, "y": 1548.63, "pop": 0, "jobs": 2575}, "449952494": {"x": 2160.91, "y": 1940.4, "pop": 1777, "jobs": 638}, "449952498": {"x": 2405.43, "y": 2177.18, "pop": 1520, "jobs": 152}, "449956571": {"x": 2587.48, "y": 2355.11, "pop": 2208, "jobs": 451}, "449957352": {"x": 2658.4, "y": 2422.3, "pop": 1587, "jobs": 2172}, "449959902": {"x": 2512.54, "y": 2284.01, "pop": 1205, "jobs": 231}, "449967724": {"x": 2860.48, "y": 2643.84, "pop": 1430, "jobs": 2025}, "450505541": {"x": -2501.8, "y": 294.45, "pop": 2844, "jobs": 0}, "450714559": {"x": -1069.25, "y": -263.74, "pop": 2591, "jobs": 4022}, "450714993": {"x": -1458.1, "y": -245.22, "pop": 2322, "jobs": 28483}, "450716051": {"x": -1449.29, "y": 42.64, "pop": 0, "jobs": 12144}, "452816427": {"x": 325.58, "y": -2754.28, "pop": 0, "jobs": 0}, "452816429": {"x": 307.54, "y": -2757.35, "pop": 0, "jobs": 0}, "452817475": {"x": -1031.9, "y": -946.3, "pop": 987, "jobs": 2543}, "452866506": {"x": -2465.13, "y": -183.8, "pop": 29, "jobs": 11408}, "456681760": {"x": 1619.51, "y": 1903.26, "pop": 1343, "jobs": 0}, "456681765": {"x": 1616.95, "y": 1881.18, "pop": 714, "jobs": 0}, "469603287": {"x": -1456.91, "y": -140.63, "pop": 2322, "jobs": 11694}, "469603304": {"x": -1784.74, "y": -138.13, "pop": 18, "jobs": 17234}, "482811372": {"x": -2079.93, "y": -551.08, "pop": 4050, "jobs": 510}, "496686159": {"x": 1594.68, "y": 2485.46, "pop": 433, "jobs": 177}, "496686170": {"x": 1596.53, "y": 2345.98, "pop": 2211, "jobs": 0}, "496686196": {"x": 1331.79, "y": 2463.78, "pop": 1912, "jobs": 0}, "496686202": {"x": 1303.03, "y": 2408.8, "pop": 1832, "jobs": 0}, "845773140": {"x": 259.69, "y": 226.23, "pop": 5363, "jobs": 967}, "845773190": {"x": 199.25, "y": 172.54, "pop": 4155, "jobs": 1485}, "845773212": {"x": 137.56, "y": 90.67, "pop": 3181, "jobs": 11397}, "845773213": {"x": 212.85, "y": 158.28, "pop": 3953, "jobs": 1996}, "845773215": {"x": 271.06, "y": 213.09, "pop": 4434, "jobs": 967}, "847061279": {"x": -71.01, "y": -3019.74, "pop": 0, "jobs": 0}, "917593109": {"x": -365.67, "y": -346.61, "pop": 4027, "jobs": 13351}, "917593526": {"x": -510.0, "y": -485.71, "pop": 7907, "jobs": 2269}, "917880340": {"x": -929.29, "y": -1044.08, "pop": 720, "jobs": 305}, "1142902939": {"x": 2629.29, "y": 1772.18, "pop": 1950, "jobs": 1096}, "1142903012": {"x": 2092.04, "y": 1402.0, "pop": 1504, "jobs": 549}, "1142903104": {"x": 1635.25, "y": 1896.85, "pop": 651, "jobs": 0}, "1142903570": {"x": 1637.24, "y": 1919.08, "pop": 63, "jobs": 0}, "1142903857": {"x": 725.13, "y": 462.4, "pop": 142, "jobs": 16151}, "1142903904": {"x": 2098.56, "y": 1396.72, "pop": 1526, "jobs": 549}, "1142904042": {"x": 1961.74, "y": 1311.22, "pop": 761, "jobs": 589}, "1142904218": {"x": 644.5, "y": 255.19, "pop": 35, "jobs": 7481}, "1153239288": {"x": -1764.92, "y": -2061.52, "pop": 913, "jobs": 0}, "1157073442": {"x": -143.14, "y": -724.84, "pop": 4329, "jobs": 0}, "1160692039": {"x": -276.73, "y": 40.4, "pop": 11946, "jobs": 8997}, "1160692043": {"x": -367.54, "y": -42.34, "pop": 9808, "jobs": 18194}, "1178694147": {"x": -2319.69, "y": -1305.22, "pop": 1708, "jobs": 0}, "1179459672": {"x": -1494.3, "y": -747.51, "pop": 6444, "jobs": 4955}, "1179459686": {"x": -1480.79, "y": -376.02, "pop": 6048, "jobs": 14919}, "1179459693": {"x": -1466.73, "y": -376.43, "pop": 6048, "jobs": 13521}, "1179459694": {"x": -1492.75, "y": -1247.63, "pop": 1574, "jobs": 5386}, "1179459701": {"x": -1491.2, "y": -501.42, "pop": 4072, "jobs": 0}, "1179459703": {"x": -1508.05, "y": -746.83, "pop": 6514, "jobs": 0}, "1179459707": {"x": -1505.18, "y": -683.1, "pop": 5006, "jobs": 0}, "1179459709": {"x": -1510.26, "y": -804.89, "pop": 2952, "jobs": 5359}, "1179459724": {"x": -1477.46, "y": -502.69, "pop": 9920, "jobs": 0}, "1179459735": {"x": -1441.66, "y": -1016.8, "pop": 0, "jobs": 5186}, "1179459737": {"x": -1507.52, "y": -1247.36, "pop": 1522, "jobs": 5386}, "1179459754": {"x": -1490.78, "y": -683.71, "pop": 4998, "jobs": 0}, "1179459768": {"x": -1507.25, "y": -1084.87, "pop": 300, "jobs": 6378}, "1179459773": {"x": -1513.15, "y": -867.57, "pop": 1816, "jobs": 3027}, "1179795897": {"x": -1443.66, "y": -1367.47, "pop": 627, "jobs": 1356}, "1179795931": {"x": -1502.61, "y": -1611.48, "pop": 1269, "jobs": 2004}, "1179795960": {"x": -1505.63, "y": -1731.62, "pop": 1237, "jobs": 3982}, "1179795984": {"x": -1511.3, "y": -1367.68, "pop": 1332, "jobs": 1494}, "1179796012": {"x": -1460.14, "y": -1331.49, "pop": 557, "jobs": 1051}, "1179796036": {"x": -1467.72, "y": -1900.06, "pop": 3186, "jobs": 1367}, "1179796039": {"x": -1498.95, "y": -1399.57, "pop": 1369, "jobs": 1054}, "1179796054": {"x": -1496.25, "y": -1311.97, "pop": 519, "jobs": 971}, "1179796056": {"x": -1517.83, "y": -1611.27, "pop": 1344, "jobs": 2004}, "1179796074": {"x": -1365.88, "y": -2080.76, "pop": 1071, "jobs": 939}, "1179796096": {"x": -1515.06, "y": -1489.29, "pop": 2198, "jobs": 1432}, "1179796106": {"x": -1500.12, "y": -1489.44, "pop": 2276, "jobs": 1364}, "1179956582": {"x": -1358.87, "y": -782.79, "pop": 0, "jobs": 9116}, "1179956625": {"x": -1094.61, "y": -933.35, "pop": 1344, "jobs": 1887}, "1179967125": {"x": -824.45, "y": -1089.71, "pop": 1685, "jobs": 1946}, "1180005819": {"x": -2559.46, "y": -820.8, "pop": 1977, "jobs": 308}, "1180005830": {"x": -2859.22, "y": -206.48, "pop": 2190, "jobs": 2926}, "1180005831": {"x": -2019.39, "y": -634.59, "pop": 2568, "jobs": 2526}, "1180005834": {"x": -2015.96, "y": -475.56, "pop": 2471, "jobs": 15449}, "1180005838": {"x": -2150.2, "y": -468.38, "pop": 2422, "jobs": 1827}, "1180079551": {"x": -1365.11, "y": -1245.53, "pop": 2425, "jobs": 0}, "1180102573": {"x": -1066.94, "y": -975.77, "pop": 1425, "jobs": 0}, "1180120602": {"x": -988.98, "y": -926.75, "pop": 0, "jobs": 3554}, "1180120617": {"x": -984.32, "y": -967.26, "pop": 0, "jobs": 961}, "1180120831": {"x": -979.7, "y": -899.55, "pop": 0, "jobs": 3554}, "1180187456": {"x": -1173.56, "y": -2391.39, "pop": 2654, "jobs": 394}, "1180187478": {"x": -992.58, "y": -2933.4, "pop": 203, "jobs": 2212}, "1180187483": {"x": -1308.93, "y": -2152.48, "pop": 2922, "jobs": 71}, "1180187485": {"x": -1381.44, "y": -2100.52, "pop": 886, "jobs": 939}, "1180187507": {"x": -1239.87, "y": -2274.41, "pop": 2053, "jobs": 1228}, "1180187532": {"x": -1006.59, "y": -2931.61, "pop": 203, "jobs": 2090}, "1180187547": {"x": -1106.44, "y": -2510.82, "pop": 1663, "jobs": 1666}, "1180187568": {"x": -1324.04, "y": -2160.67, "pop": 3372, "jobs": 411}, "1180187578": {"x": -1060.27, "y": -2648.01, "pop": 3333, "jobs": 2634}, "1180187579": {"x": -1382.36, "y": -2056.19, "pop": 1280, "jobs": 939}, "1180187588": {"x": -1256.41, "y": -2282.53, "pop": 1665, "jobs": 3616}, "1180187595": {"x": -1189.85, "y": -2396.55, "pop": 2334, "jobs": 394}, "1180187596": {"x": -1045.03, "y": -2643.81, "pop": 578, "jobs": 118}, "1180187620": {"x": -885.03, "y": -2946.9, "pop": 271, "jobs": 1821}, "1180187658": {"x": -1210.56, "y": -2328.37, "pop": 1688, "jobs": 248}, "1180187677": {"x": -1225.01, "y": -2336.56, "pop": 1550, "jobs": 248}, "1180187697": {"x": -1008.02, "y": -2982.27, "pop": 0, "jobs": 1665}, "1180187704": {"x": -1355.23, "y": -2070.82, "pop": 1161, "jobs": 939}, "1180876933": {"x": -266.2, "y": 50.49, "pop": 11946, "jobs": 5918}, "1181085486": {"x": -855.25, "y": 59.2, "pop": 4721, "jobs": 1104}, "1181184017": {"x": -968.47, "y": 114.63, "pop": 8438, "jobs": 597}, "1181324562": {"x": -949.32, "y": 163.66, "pop": 5547, "jobs": 0}, "1181378741": {"x": -846.96, "y": -203.77, "pop": 13884, "jobs": 1191}, "1182091234": {"x": -1063.15, "y": -124.92, "pop": 8872, "jobs": 4915}, "1182471954": {"x": -317.76, "y": -757.68, "pop": 3691, "jobs": 0}, "1182471991": {"x": -267.43, "y": -748.51, "pop": 6033, "jobs": 0}, "1185580621": {"x": -512.34, "y": -1084.63, "pop": 0, "jobs": 2934}, "1186826669": {"x": -124.45, "y": -326.1, "pop": 6586, "jobs": 13556}, "1186826687": {"x": -130.86, "y": -443.18, "pop": 3025, "jobs": 19806}, "1188388070": {"x": -205.15, "y": -856.22, "pop": 498, "jobs": 0}, "1188388071": {"x": -143.62, "y": -799.81, "pop": 3041, "jobs": 0}, "1188388110": {"x": -185.35, "y": -827.83, "pop": 636, "jobs": 0}, "1188388114": {"x": -162.92, "y": -798.83, "pop": 3454, "jobs": 0}, "1188388115": {"x": -200.64, "y": -881.64, "pop": 94, "jobs": 0}, "1188394181": {"x": -219.29, "y": -807.07, "pop": 4108, "jobs": 0}, "1188394186": {"x": -226.27, "y": -793.19, "pop": 4312, "jobs": 0}, "1191535148": {"x": -733.42, "y": -1258.28, "pop": 3803, "jobs": 125}, "1192150160": {"x": 574.8, "y": 18.31, "pop": 465, "jobs": 4803}, "1192150246": {"x": 566.68, "y": 0.2, "pop": 495, "jobs": 2004}, "1192150256": {"x": 585.86, "y": 5.9, "pop": 495, "jobs": 2004}, "1192150405": {"x": 772.75, "y": 111.09, "pop": 3984, "jobs": 632}, "1192150406": {"x": 815.21, "y": 134.25, "pop": 3194, "jobs": 1229}, "1192150409": {"x": 829.29, "y": 49.19, "pop": 1348, "jobs": 597}, "1192150413": {"x": 781.44, "y": 102.31, "pop": 3984, "jobs": 1229}, "1192211510": {"x": 387.49, "y": 237.23, "pop": 439, "jobs": 4877}, "1192248462": {"x": 1255.67, "y": 672.3, "pop": 692, "jobs": 2217}, "1192282519": {"x": 2765.85, "y": 1850.8, "pop": 2370, "jobs": 942}, "1246389199": {"x": -691.34, "y": -3093.89, "pop": 920, "jobs": 0}, "1345392073": {"x": -99.74, "y": 194.26, "pop": 7495, "jobs": 4751}, "1345420597": {"x": -2149.8, "y": -404.37, "pop": 105, "jobs": 8944}, "1345424861": {"x": -2141.72, "y": -341.98, "pop": 0, "jobs": 8944}, "1345424866": {"x": -2010.16, "y": -339.77, "pop": 27, "jobs": 27226}, "1345424868": {"x": -2097.25, "y": -301.1, "pop": 0, "jobs": 15009}, "1345424871": {"x": -2006.99, "y": -220.72, "pop": 0, "jobs": 26785}, "1423974459": {"x": -213.73, "y": -17.57, "pop": 11811, "jobs": 4243}, "1424945190": {"x": -137.95, "y": -613.99, "pop": 3669, "jobs": 0}, "1425249983": {"x": 426.14, "y": -77.19, "pop": 1984, "jobs": 1591}, "1425249997": {"x": 492.88, "y": -32.29, "pop": 1840, "jobs": 332}, "1425250001": {"x": 433.04, "y": -84.69, "pop": 1700, "jobs": 1591}, "1425304284": {"x": -80.66, "y": -658.22, "pop": 2191, "jobs": 0}, "1426438819": {"x": -2441.7, "y": -801.26, "pop": 1131, "jobs": 6528}, "1426438835": {"x": -2153.51, "y": -602.23, "pop": 3930, "jobs": 0}, "1426438850": {"x": -2526.62, "y": -824.18, "pop": 2336, "jobs": 308}, "1612121520": {"x": -400.23, "y": -2191.48, "pop": 1573, "jobs": 1671}, "1699123250": {"x": 931.94, "y": 1135.89, "pop": 2221, "jobs": 2112}, "1699123263": {"x": 863.12, "y": 1211.65, "pop": 3065, "jobs": 0}, "1699123264": {"x": 1149.65, "y": 1493.6, "pop": 2064, "jobs": 199}, "1699123266": {"x": 495.45, "y": 1015.22, "pop": 3694, "jobs": 549}, "1699123271": {"x": 564.46, "y": 939.47, "pop": 3520, "jobs": 788}, "1699123277": {"x": 795.87, "y": 1286.46, "pop": 2830, "jobs": 0}, "1699123283": {"x": 1211.56, "y": 1544.9, "pop": 1733, "jobs": 0}, "1699123288": {"x": 782.81, "y": 999.73, "pop": 2188, "jobs": 0}, "1701854143": {"x": -406.25, "y": 194.77, "pop": 2368, "jobs": 4478}, "1706427633": {"x": 2854.13, "y": 2632.4, "pop": 1309, "jobs": 2493}, "1706427636": {"x": 2683.37, "y": 2398.02, "pop": 1223, "jobs": 2172}, "1706427646": {"x": 2726.4, "y": 2363.6, "pop": 1090, "jobs": 1952}, "1706427647": {"x": 2838.71, "y": 2641.51, "pop": 1576, "jobs": 2258}, "1706427648": {"x": 2236.36, "y": 2351.27, "pop": 1220, "jobs": 0}, "1706427652": {"x": 2711.9, "y": 2352.34, "pop": 1086, "jobs": 1952}, "1706427657": {"x": 2710.23, "y": 2379.9, "pop": 940, "jobs": 1952}, "1706427666": {"x": 2522.09, "y": 2317.58, "pop": 1414, "jobs": 231}, "1706427669": {"x": 2311.57, "y": 1904.24, "pop": 1679, "jobs": 1387}, "1706427672": {"x": 2392.68, "y": 2190.26, "pop": 1523, "jobs": 152}, "1706427684": {"x": 2699.23, "y": 2362.6, "pop": 1045, "jobs": 1952}, "1710317933": {"x": -1519.55, "y": -1731.34, "pop": 1331, "jobs": 3982}, "1777291055": {"x": 1310.61, "y": 1616.47, "pop": 981, "jobs": 0}, "1777291057": {"x": 1305.08, "y": 1622.45, "pop": 937, "jobs": 0}, "1850006055": {"x": -2904.82, "y": 371.63, "pop": 601, "jobs": 631}, "1850006061": {"x": -2901.56, "y": 152.9, "pop": 0, "jobs": 4261}, "1857601486": {"x": -2623.71, "y": -198.63, "pop": 538, "jobs": 4792}, "1857601633": {"x": -2151.66, "y": -338.82, "pop": 0, "jobs": 9411}, "1944740975": {"x": -2785.23, "y": -718.55, "pop": 1733, "jobs": 1989}, "2298789012": {"x": -2953.34, "y": -803.9, "pop": 1396, "jobs": 354}, "2298789025": {"x": -2949.62, "y": -710.96, "pop": 1387, "jobs": 0}, "2298789030": {"x": -2791.96, "y": -810.6, "pop": 1303, "jobs": 1989}, "2384881527": {"x": 2217.34, "y": 1492.66, "pop": 1964, "jobs": 0}, "2384881533": {"x": 2154.88, "y": 1568.17, "pop": 2348, "jobs": 1049}, "2384881547": {"x": 2105.39, "y": 1617.86, "pop": 1649, "jobs": 951}, "2384881587": {"x": 1928.42, "y": 1751.23, "pop": 11204, "jobs": 272}, "2384881594": {"x": 1972.61, "y": 1764.2, "pop": 1266, "jobs": 272}, "2384881598": {"x": 1950.78, "y": 1769.89, "pop": 11554, "jobs": 272}, "2384881601": {"x": 1959.95, "y": 1776.69, "pop": 1194, "jobs": 272}, "2384881629": {"x": 1893.23, "y": 1820.11, "pop": 11518, "jobs": 272}, "2384881635": {"x": 1863.56, "y": 1852.8, "pop": 11615, "jobs": 220}, "2384881652": {"x": 1618.94, "y": 1893.22, "pop": 714, "jobs": 0}, "2384881654": {"x": 1613.47, "y": 1896.44, "pop": 1343, "jobs": 0}, "2384881666": {"x": 1619.99, "y": 1934.89, "pop": 1343, "jobs": 0}, "2384881679": {"x": 1617.97, "y": 1944.33, "pop": 1343, "jobs": 1045}, "2573847767": {"x": -1614.6, "y": -1893.15, "pop": 2861, "jobs": 5856}, "2573847770": {"x": -1787.32, "y": -1987.51, "pop": 655, "jobs": 1788}, "2573847776": {"x": -1698.69, "y": -1938.1, "pop": 1021, "jobs": 4137}, "2573847782": {"x": -1779.82, "y": -1725.92, "pop": 1428, "jobs": 2432}, "2573847784": {"x": -1648.32, "y": -1728.6, "pop": 1126, "jobs": 7158}, "2573847790": {"x": -1638.06, "y": -1243.82, "pop": 2590, "jobs": 4699}, "2627868774": {"x": 2625.01, "y": 2253.35, "pop": 1614, "jobs": 299}, "2627868777": {"x": 2573.32, "y": 2178.23, "pop": 1638, "jobs": 362}, "2634682652": {"x": -254.99, "y": -2489.89, "pop": 777, "jobs": 0}, "2634682653": {"x": -296.27, "y": -2473.94, "pop": 736, "jobs": 0}, "2634682669": {"x": -418.67, "y": -2430.32, "pop": 1087, "jobs": 0}, "2634693264": {"x": 74.32, "y": -2056.49, "pop": 0, "jobs": 1150}, "2634693266": {"x": 96.27, "y": -2057.46, "pop": 0, "jobs": 1150}, "2634693274": {"x": -470.89, "y": -2188.41, "pop": 954, "jobs": 2139}, "2634693276": {"x": -405.07, "y": -2288.1, "pop": 1831, "jobs": 1281}, "2634693278": {"x": -1424.32, "y": -1612.86, "pop": 785, "jobs": 678}, "2634693299": {"x": -621.48, "y": -2093.47, "pop": 801, "jobs": 197}, "2634708186": {"x": -614.43, "y": -2183.02, "pop": 1479, "jobs": 493}, "2635256558": {"x": -2909.89, "y": -1710.85, "pop": 632, "jobs": 0}, "2635256569": {"x": -2810.9, "y": -1626.71, "pop": 1053, "jobs": 0}, "2635256574": {"x": -2712.3, "y": -1542.08, "pop": 1358, "jobs": 0}, "2637056004": {"x": -2972.37, "y": -1636.06, "pop": 1201, "jobs": 0}, "2637157420": {"x": -2382.63, "y": -1346.72, "pop": 1660, "jobs": 0}, "2637707069": {"x": 441.05, "y": -3073.66, "pop": 0, "jobs": 1589}, "2637710726": {"x": 300.36, "y": -3088.92, "pop": 455, "jobs": 402}, "2637766380": {"x": 324.39, "y": -2816.71, "pop": 0, "jobs": 0}, "2637766387": {"x": 224.25, "y": -2729.03, "pop": 243, "jobs": 0}, "2637766399": {"x": 269.43, "y": -2635.19, "pop": 320, "jobs": 0}, "2638675157": {"x": -1475.8, "y": -2798.42, "pop": 522, "jobs": 0}, "2638675190": {"x": -1392.47, "y": -2490.37, "pop": 908, "jobs": 0}, "2638675236": {"x": -1121.64, "y": -2515.79, "pop": 1472, "jobs": 1666}, "2638675244": {"x": -1387.43, "y": -2363.15, "pop": 1032, "jobs": 5181}, "2638675253": {"x": -1272.88, "y": -2364.25, "pop": 1142, "jobs": 6409}, "2638675264": {"x": -1204.04, "y": -2489.11, "pop": 1242, "jobs": 146}, "2705148498": {"x": 570.09, "y": 1080.19, "pop": 3013, "jobs": 1130}, "2705148499": {"x": 637.69, "y": 1007.3, "pop": 3853, "jobs": 333}, "2705148524": {"x": 280.48, "y": 951.8, "pop": 1633, "jobs": 0}, "2705151904": {"x": 460.49, "y": 1138.52, "pop": 1913, "jobs": 1016}, "2707919647": {"x": 1015.13, "y": 138.02, "pop": 1233, "jobs": 83}, "2707919868": {"x": 2203.58, "y": 1121.49, "pop": 1212, "jobs": 0}, "2712062758": {"x": 1591.08, "y": 2430.82, "pop": 1368, "jobs": 177}, "2712062759": {"x": 1590.85, "y": 2412.14, "pop": 1785, "jobs": 0}, "2712062761": {"x": 1601.63, "y": 2322.57, "pop": 1838, "jobs": 0}, "2713279290": {"x": -287.01, "y": 62.83, "pop": 9103, "jobs": 7021}, "2713279291": {"x": -338.74, "y": 119.55, "pop": 267, "jobs": 5601}, "2713292536": {"x": 577.38, "y": 327.11, "pop": 112, "jobs": 2142}, "2713311875": {"x": 1913.22, "y": 1463.96, "pop": 797, "jobs": 0}, "2713311958": {"x": 743.01, "y": 664.39, "pop": 31781, "jobs": 1034}, "2713311960": {"x": 551.39, "y": 654.79, "pop": 16345, "jobs": 1903}, "2713311962": {"x": 401.95, "y": 520.29, "pop": 1173, "jobs": 6142}, "2713353784": {"x": 1662.26, "y": 630.24, "pop": 2176, "jobs": 0}, "2713365262": {"x": 1825.63, "y": 1901.99, "pop": 1286, "jobs": 2274}, "2713365265": {"x": 1185.7, "y": 2146.09, "pop": 751, "jobs": 1298}, "2713391900": {"x": 1284.74, "y": 2375.53, "pop": 1925, "jobs": 0}, "2713391937": {"x": 915.63, "y": 1835.88, "pop": 990, "jobs": 151}, "2714912985": {"x": 2306.81, "y": 2278.71, "pop": 1242, "jobs": 12452}, "2714912986": {"x": 2438.45, "y": 2405.31, "pop": 1621, "jobs": 12424}, "2714977035": {"x": -719.77, "y": 46.24, "pop": 5179, "jobs": 1096}, "2726180832": {"x": -2845.05, "y": -1748.83, "pop": 148, "jobs": 0}, "2771341200": {"x": -1382.3, "y": -2259.45, "pop": 3322, "jobs": 3616}, "2816310343": {"x": -2443.97, "y": -1459.38, "pop": 804, "jobs": 0}, "2816310345": {"x": -2020.48, "y": -993.47, "pop": 1863, "jobs": 1407}, "2816310353": {"x": -2022.38, "y": -919.39, "pop": 2387, "jobs": 148}, "2848493171": {"x": -2770.72, "y": -192.11, "pop": 1490, "jobs": 3109}, "2848493172": {"x": -2732.81, "y": -190.04, "pop": 1397, "jobs": 4007}, "2848493173": {"x": -2623.51, "y": -192.45, "pop": 403, "jobs": 4792}, "2848493174": {"x": -2540.36, "y": -203.83, "pop": 320, "jobs": 7983}, "2856773811": {"x": 1280.67, "y": 2800.49, "pop": 1033, "jobs": 0}, "2857394107": {"x": 1504.69, "y": 2813.22, "pop": 1516, "jobs": 455}, "2858999189": {"x": -18.92, "y": 408.95, "pop": 4254, "jobs": 0}, "2859093884": {"x": 2178.28, "y": 1541.28, "pop": 1659, "jobs": 1049}, "2859245506": {"x": -939.96, "y": -529.86, "pop": 3162, "jobs": 2449}, "2859245549": {"x": 43.15, "y": 194.64, "pop": 4715, "jobs": 4202}, "2859245565": {"x": -987.32, "y": -527.51, "pop": 2483, "jobs": 2449}, "2859245573": {"x": -1082.14, "y": -522.73, "pop": 760, "jobs": 2449}, "2859245574": {"x": -1075.96, "y": -396.6, "pop": 9859, "jobs": 2753}, "2859245582": {"x": -1199.8, "y": -257.26, "pop": 27711, "jobs": 4533}, "2859245583": {"x": -1183.37, "y": 29.37, "pop": 7507, "jobs": 14532}, "2859302267": {"x": -1497.21, "y": -868.33, "pop": 1802, "jobs": 7714}, "2859302272": {"x": -1363.02, "y": -874.69, "pop": 499, "jobs": 10563}, "2859304393": {"x": -2150.71, "y": -548.45, "pop": 4985, "jobs": 0}, "2859304395": {"x": -2159.2, "y": -579.4, "pop": 5289, "jobs": 0}, "2859304803": {"x": -2388.8, "y": -759.96, "pop": 93, "jobs": 8249}, "2925569869": {"x": 2761.37, "y": 1847.82, "pop": 2406, "jobs": 912}, "2925570317": {"x": 1526.39, "y": 779.86, "pop": 1783, "jobs": 2944}, "2938172405": {"x": -273.05, "y": -981.27, "pop": 0, "jobs": 0}, "2938172406": {"x": -270.12, "y": -974.47, "pop": 0, "jobs": 0}, "2948594974": {"x": 1080.76, "y": 972.05, "pop": 13886, "jobs": 3107}, "2948595023": {"x": 2614.48, "y": 2250.19, "pop": 1541, "jobs": 362}, "2948595043": {"x": 2699.46, "y": 2370.57, "pop": 958, "jobs": 1952}, "2948595076": {"x": 1309.77, "y": 717.99, "pop": 1555, "jobs": 2217}, "2948601585": {"x": 1025.54, "y": 732.79, "pop": 387, "jobs": 16125}, "2948601586": {"x": 2024.07, "y": 1287.73, "pop": 700, "jobs": 742}, "2955373055": {"x": 2946.66, "y": 2605.82, "pop": 1514, "jobs": 580}, "2985254834": {"x": -2014.69, "y": -445.33, "pop": 801, "jobs": 22097}, "2987035532": {"x": -2466.85, "y": -822.79, "pop": 1222, "jobs": 6528}, "2987035535": {"x": -2494.04, "y": -814.4, "pop": 2059, "jobs": 6528}, "2988375113": {"x": -2793.25, "y": 13.13, "pop": 278, "jobs": 5525}, "2988748407": {"x": -2252.61, "y": -55.41, "pop": 0, "jobs": 4889}, "3031362525": {"x": -2426.04, "y": 281.41, "pop": 2899, "jobs": 0}, "3035654115": {"x": -2454.01, "y": -823.58, "pop": 1222, "jobs": 6528}, "3088209646": {"x": -87.06, "y": 482.8, "pop": 2390, "jobs": 75}, "3088209647": {"x": -25.05, "y": 539.35, "pop": 2307, "jobs": 0}, "3088209649": {"x": 50.0, "y": 607.82, "pop": 2225, "jobs": 304}, "3088209661": {"x": 168.54, "y": 776.15, "pop": 1147, "jobs": 0}, "3157337335": {"x": -309.08, "y": 282.45, "pop": 3414, "jobs": 570}, "3208339050": {"x": 2592.15, "y": 1269.29, "pop": 1361, "jobs": 0}, "3208339051": {"x": 2185.13, "y": 1241.19, "pop": 1620, "jobs": 0}, "3208339054": {"x": 2058.04, "y": 1342.08, "pop": 740, "jobs": 939}, "3208342164": {"x": 2322.87, "y": 1093.46, "pop": 1442, "jobs": 0}, "3208342165": {"x": 2486.35, "y": 1145.22, "pop": 1158, "jobs": 0}, "3227608153": {"x": -92.31, "y": 344.77, "pop": 4040, "jobs": 0}, "3227608154": {"x": -704.73, "y": 329.1, "pop": 2823, "jobs": 0}, "3235649725": {"x": 1229.07, "y": 508.53, "pop": 1633, "jobs": 878}, "3235650820": {"x": 1216.58, "y": 222.7, "pop": 1947, "jobs": 149}, "3241106071": {"x": -815.37, "y": -450.28, "pop": 4068, "jobs": 48}, "3241106091": {"x": -885.92, "y": -373.44, "pop": 17366, "jobs": 48}, "3264677727": {"x": 548.17, "y": 1260.05, "pop": 544, "jobs": 0}, "3269827284": {"x": -726.13, "y": -997.54, "pop": 4628, "jobs": 1437}, "3270240364": {"x": 931.81, "y": 836.24, "pop": 15796, "jobs": 193}, "3270240367": {"x": 849.71, "y": 926.33, "pop": 16525, "jobs": 0}, "3271744858": {"x": -837.93, "y": -125.01, "pop": 3857, "jobs": 3072}, "3306923767": {"x": -1492.35, "y": -1016.93, "pop": 197, "jobs": 7040}, "3306923798": {"x": -1512.1, "y": -967.82, "pop": 211, "jobs": 6527}, "3358764343": {"x": -207.93, "y": -803.97, "pop": 3916, "jobs": 0}, "3455711385": {"x": 283.33, "y": 412.55, "pop": 3814, "jobs": 628}, "3607816606": {"x": -2843.04, "y": -203.98, "pop": 2380, "jobs": 2926}, "3607816648": {"x": -2539.89, "y": -194.04, "pop": 253, "jobs": 7872}, "3637918464": {"x": -3148.35, "y": -1404.08, "pop": 1122, "jobs": 0}, "3755083604": {"x": -448.8, "y": -1977.41, "pop": 1446, "jobs": 0}, "3755083605": {"x": -416.41, "y": -1979.18, "pop": 1643, "jobs": 0}, "3786903332": {"x": 2054.62, "y": 1671.06, "pop": 1676, "jobs": 252}, "3786906785": {"x": 2639.56, "y": 1694.54, "pop": 1665, "jobs": 4910}, "3786906803": {"x": 2645.71, "y": 1730.0, "pop": 1424, "jobs": 188}, "3786906811": {"x": 2635.68, "y": 1776.69, "pop": 1985, "jobs": 1096}, "3786906822": {"x": 2595.36, "y": 1809.05, "pop": 1325, "jobs": 1909}, "3786910293": {"x": 2127.38, "y": 1600.17, "pop": 1608, "jobs": 951}, "3786910294": {"x": 2123.39, "y": 1595.95, "pop": 1786, "jobs": 951}, "3786926320": {"x": 2728.37, "y": 1374.73, "pop": 1342, "jobs": 0}, "3811323394": {"x": -1892.78, "y": -997.21, "pop": 1509, "jobs": 1904}, "3811323395": {"x": -1891.3, "y": -922.84, "pop": 1403, "jobs": 474}, "3812685575": {"x": -2658.03, "y": -987.99, "pop": 1997, "jobs": 560}, "3812685579": {"x": -2696.4, "y": -1019.41, "pop": 3753, "jobs": 841}, "3812685605": {"x": -3085.99, "y": -1475.59, "pop": 1184, "jobs": 0}, "3812685612": {"x": -2176.24, "y": -1473.32, "pop": 1784, "jobs": 117}, "3812685620": {"x": -2323.31, "y": -1469.94, "pop": 786, "jobs": 0}, "3812685626": {"x": -2464.02, "y": -1434.65, "pop": 871, "jobs": 0}, "3812685629": {"x": -3022.23, "y": -1550.48, "pop": 1343, "jobs": 0}, "3859915626": {"x": 1226.0, "y": 1404.36, "pop": 2421, "jobs": 199}, "3886439879": {"x": 574.0, "y": -47.05, "pop": 495, "jobs": 2004}, "3894523242": {"x": -2706.37, "y": -190.68, "pop": 776, "jobs": 1191}, "3937040986": {"x": 37.48, "y": -2235.23, "pop": 0, "jobs": 0}, "3937040992": {"x": 48.32, "y": -2210.03, "pop": 0, "jobs": 0}, "3951970461": {"x": 381.39, "y": -2916.0, "pop": 45, "jobs": 0}, "4055610627": {"x": -2708.7, "y": 337.97, "pop": 1199, "jobs": 0}, "4089413144": {"x": -1503.29, "y": -1833.04, "pop": 3058, "jobs": 5775}, "4089413153": {"x": -1483.55, "y": -1837.12, "pop": 3126, "jobs": 2748}, "4091376211": {"x": -332.24, "y": -983.79, "pop": 15, "jobs": 0}, "4091376224": {"x": -292.45, "y": -1021.49, "pop": 0, "jobs": 0}, "4095606995": {"x": -2025.22, "y": -1892.43, "pop": 186, "jobs": 752}, "4095618185": {"x": -2192.22, "y": -1699.6, "pop": 936, "jobs": 1180}, "4095648221": {"x": -2172.53, "y": -1359.2, "pop": 2315, "jobs": 117}, "4095648223": {"x": -2178.29, "y": -1352.57, "pop": 2267, "jobs": 117}, "4095648225": {"x": -2172.16, "y": -1346.72, "pop": 2205, "jobs": 117}, "4095648227": {"x": -2165.76, "y": -1352.94, "pop": 2152, "jobs": 117}, "4095666564": {"x": -1782.51, "y": -1802.66, "pop": 449, "jobs": 6177}, "4095684894": {"x": -1786.45, "y": -1951.27, "pop": 522, "jobs": 5067}, "4139816155": {"x": -1884.79, "y": -641.28, "pop": 888, "jobs": 4007}, "4172253594": {"x": 645.88, "y": 1149.81, "pop": 2023, "jobs": 1016}, "4173748917": {"x": -586.27, "y": -103.19, "pop": 12051, "jobs": 3115}, "4173789198": {"x": -980.1, "y": -401.29, "pop": 13336, "jobs": 400}, "4173796882": {"x": -382.57, "y": -367.45, "pop": 9691, "jobs": 12316}, "4173797761": {"x": -264.46, "y": -707.73, "pop": 6194, "jobs": 549}, "4194510097": {"x": -2384.6, "y": -1468.15, "pop": 709, "jobs": 0}, "4214349299": {"x": -2556.41, "y": -728.02, "pop": 1345, "jobs": 271}, "4248707700": {"x": -1453.43, "y": -1891.98, "pop": 3292, "jobs": 1367}, "4248941674": {"x": -1448.66, "y": -2819.15, "pop": 371, "jobs": 3078}, "4687823320": {"x": 405.86, "y": -3007.03, "pop": 45, "jobs": 941}, "4874980024": {"x": -2594.59, "y": -1061.75, "pop": 1992, "jobs": 475}, "4874980027": {"x": -2702.49, "y": -1152.65, "pop": 2056, "jobs": 1040}, "5112004105": {"x": -487.18, "y": 393.48, "pop": 1167, "jobs": 16457}, "5446595705": {"x": -1447.47, "y": 159.49, "pop": 0, "jobs": 15615}, "5463552488": {"x": -540.85, "y": 344.15, "pop": 2282, "jobs": 16457}, "5468393309": {"x": -473.8, "y": 269.97, "pop": 3142, "jobs": 2467}, "5497859257": {"x": -1379.91, "y": -2159.31, "pop": 2949, "jobs": 664}, "5730487258": {"x": 174.15, "y": 313.43, "pop": 6874, "jobs": 198}, "5730487259": {"x": 180.93, "y": 318.8, "pop": 3818, "jobs": 198}, "5730487260": {"x": 179.91, "y": 314.37, "pop": 6725, "jobs": 198}, "5730487261": {"x": 173.57, "y": 321.19, "pop": 3919, "jobs": 198}, "5890633223": {"x": -674.33, "y": -2417.95, "pop": 978, "jobs": 350}, "5890633230": {"x": -714.0, "y": -2412.2, "pop": 990, "jobs": 350}, "6233229328": {"x": -639.45, "y": -2419.83, "pop": 927, "jobs": 350}, "6275800735": {"x": -1113.8, "y": -910.52, "pop": 1595, "jobs": 2839}, "6291669589": {"x": 55.56, "y": -2612.81, "pop": 0, "jobs": 1787}, "6401044369": {"x": 349.69, "y": -2664.53, "pop": 0, "jobs": 0}, "6401044370": {"x": 233.96, "y": -2454.75, "pop": 0, "jobs": 0}, "6404917413": {"x": -495.67, "y": -2817.71, "pop": 247, "jobs": 2434}, "6577170380": {"x": 2117.44, "y": 1439.65, "pop": 1547, "jobs": 549}, "6577823481": {"x": -2307.22, "y": -199.94, "pop": 0, "jobs": 5216}, "6610389586": {"x": -921.1, "y": -266.76, "pop": 19844, "jobs": 524}, "6915301805": {"x": 2332.54, "y": 2443.07, "pop": 1174, "jobs": 0}, "7189398145": {"x": -748.6, "y": -1166.49, "pop": 3617, "jobs": 1946}, "7189398161": {"x": -809.96, "y": -1175.33, "pop": 1655, "jobs": 1160}, "8174660902": {"x": -429.35, "y": -848.36, "pop": 4696, "jobs": 0}, "8316813421": {"x": -3035.81, "y": 158.04, "pop": 42, "jobs": 14383}, "8729846828": {"x": 184.23, "y": 458.57, "pop": 3622, "jobs": 0}, "8868957845": {"x": -1264.94, "y": -1026.46, "pop": 1408, "jobs": 1107}, "9146885459": {"x": -1297.2, "y": -2613.06, "pop": 0, "jobs": 711}, "10829398901": {"x": -1399.39, "y": -2607.74, "pop": 550, "jobs": 0}, "11205598924": {"x": 2681.72, "y": 2338.73, "pop": 1353, "jobs": 1952}, "11390496552": {"x": 1606.79, "y": 390.62, "pop": 1073, "jobs": 0}, "11603196290": {"x": -1237.01, "y": -1129.64, "pop": 2082, "jobs": 0}, "11793715342": {"x": 1766.71, "y": 1954.33, "pop": 623, "jobs": 2274}, "12849307402": {"x": -335.87, "y": -76.29, "pop": 12529, "jobs": 5961}, "12911858844": {"x": -990.15, "y": -1210.34, "pop": 1195, "jobs": 0}, "12911858894": {"x": -1427.4, "y": -1733.13, "pop": 1071, "jobs": 518}, "13009756501": {"x": -2798.01, "y": -870.27, "pop": 1507, "jobs": 0}, "13018504178": {"x": 605.72, "y": 11.07, "pop": 371, "jobs": 1770}, "13030502563": {"x": -2496.9, "y": -847.94, "pop": 2554, "jobs": 308}, "13030502564": {"x": -2516.23, "y": -869.57, "pop": 2611, "jobs": 445}, "13030502567": {"x": -2553.03, "y": -895.22, "pop": 2366, "jobs": 560}, "13056348945": {"x": -776.14, "y": -1191.57, "pop": 4362, "jobs": 1160}, "13056348946": {"x": -780.81, "y": -1186.35, "pop": 4357, "jobs": 1160}, "13056348947": {"x": -850.14, "y": -1112.13, "pop": 2268, "jobs": 1160}, "13056348949": {"x": -919.33, "y": -1035.3, "pop": 1567, "jobs": 305}, "13069954941": {"x": -765.79, "y": -202.86, "pop": 14694, "jobs": 1183}, "13091071866": {"x": 187.28, "y": -264.23, "pop": 2942, "jobs": 8660}, "13132340420": {"x": 546.55, "y": 462.41, "pop": 192, "jobs": 1250}, "13146093508": {"x": -1359.28, "y": -874.78, "pop": 499, "jobs": 10981}, "13151160466": {"x": -918.96, "y": -854.01, "pop": 987, "jobs": 2680}, "13191853166": {"x": -1023.34, "y": -26.64, "pop": 10031, "jobs": 748}, "13202666793": {"x": 1731.55, "y": 1977.84, "pop": 248, "jobs": 2274}, "13206778050": {"x": 1719.62, "y": 1991.5, "pop": 173, "jobs": 0}, "13324853243": {"x": -310.57, "y": -302.66, "pop": 881, "jobs": 10690}, "13324853247": {"x": -359.18, "y": -353.68, "pop": 4032, "jobs": 13351}, "13334632578": {"x": -319.64, "y": 98.27, "pop": 768, "jobs": 8846}, "13334632600": {"x": -424.84, "y": 215.8, "pop": 2683, "jobs": 3316}, "13334818837": {"x": -258.99, "y": -757.26, "pop": 5818, "jobs": 0}}, "edges": [{"u": 37923758, "v": 445963180, "oneway": false, "points": [[-1877.89, 78.66], [-1868.96, 74.78], [-1856.1, 70.67], [-1845.17, 67.29], [-1834.52, 64.87], [-1820.86, 63.1], [-1807.08, 62.24], [-1784.03, 62.16], [-1770.08, 60.74], [-1752.47, 58.01], [-1729.91, 54.71], [-1713.28, 53.25], [-1703.17, 52.79], [-1693.18, 52.8], [-1684.03, 54.2], [-1675.15, 57.32], [-1655.02, 67.63], [-1646.45, 72.12], [-1637.06, 76.27], [-1628.39, 80.38], [-1621.05, 83.61], [-1614.93, 88.56], [-1607.41, 95.76], [-1597.84, 107.07], [-1589.3, 118.48], [-1584.89, 126.65], [-1580.37, 135.02], [-1577.94, 139.33], [-1575.19, 143.03], [-1571.37, 145.57], [-1567.78, 146.43], [-1565.58, 146.1], [-1562.73, 144.67], [-1560.67, 142.72], [-1558.95, 138.84], [-1557.62, 133.29], [-1557.45, 126.04], [-1557.51, 118.97], [-1557.76, 109.18], [-1557.79, 103.84], [-1557.23, 99.45], [-1555.87, 95.98], [-1554.21, 94.25], [-1551.88, 92.81], [-1548.53, 91.47], [-1544.5, 90.97], [-1539.02, 90.62], [-1515.61, 89.52], [-1487.21, 88.09], [-1474.01, 87.47], [-1458.11, 86.42], [-1455.46, 86.34], [-1447.94, 86.04]], "length": 515.8}, {"u": 37923758, "v": 37924361, "oneway": false, "points": [[-1877.89, 78.66], [-1881.83, 67.58], [-1890.85, 38.79], [-1900.37, 10.64], [-1903.61, 2.21], [-1906.76, -8.66], [-1908.27, -17.25], [-1908.63, -30.5]], "length": 113.98}, {"u": 37923758, "v": 53413603, "oneway": false, "points": [[-1877.89, 78.66], [-1886.97, 84.75], [-1896.45, 91.91], [-1909.12, 101.37], [-1922.13, 111.14], [-1929.0, 116.31], [-1935.48, 120.52], [-1943.48, 124.82], [-1953.86, 128.89], [-1961.06, 130.87], [-1968.83, 132.45], [-1976.77, 133.5], [-1991.42, 135.11], [-2010.91, 136.67], [-2021.94, 137.47], [-2032.41, 138.02], [-2042.94, 138.12], [-2054.97, 138.32], [-2068.92, 138.08], [-2097.52, 136.12], [-2119.42, 134.38], [-2136.27, 133.78], [-2156.96, 133.9], [-2167.39, 134.52], [-2178.44, 135.66], [-2194.08, 138.25], [-2208.74, 141.03], [-2232.79, 147.81], [-2255.34, 154.37], [-2273.77, 158.78], [-2284.2, 160.03], [-2303.09, 160.79], [-2315.06, 159.39], [-2322.74, 157.77], [-2333.37, 155.08], [-2340.52, 152.59], [-2349.91, 148.82], [-2368.51, 139.33], [-2375.3, 136.59], [-2388.58, 133.22], [-2395.63, 132.66], [-2422.97, 133.32], [-2432.47, 133.58]], "length": 578.93}, {"u": 37924361, "v": 37923758, "oneway": false, "points": [[-1908.63, -30.5], [-1908.27, -17.25], [-1906.76, -8.66], [-1903.61, 2.21], [-1900.37, 10.64], [-1890.85, 38.79], [-1881.83, 67.58], [-1877.89, 78.66]], "length": 113.98}, {"u": 37924361, "v": 53486800, "oneway": false, "points": [[-1908.63, -30.5], [-1919.2, -30.13], [-2001.45, -26.66], [-2005.31, -26.5], [-2025.8, -25.65], [-2098.34, -22.61], [-2108.82, -22.17], [-2182.37, -19.09]], "length": 273.98}, {"u": 37924361, "v": 53461749, "oneway": false, "points": [[-1908.63, -30.5], [-1909.11, -47.08], [-1909.2, -49.81], [-1910.1, -80.58], [-1911.15, -116.25], [-1911.41, -125.65], [-1911.47, -127.04], [-1913.14, -183.68], [-1912.88, -188.88], [-1912.29, -194.08], [-1911.49, -199.44], [-1908.49, -208.38], [-1908.22, -209.12], [-1907.69, -211.19], [-1903.53, -220.84], [-1901.82, -224.99]], "length": 196.46}, {"u": 53288573, "v": 53288575, "oneway": false, "points": [[-106.13, -3040.34], [-72.88, -3077.15]], "length": 49.6}, {"u": 53288573, "v": 847061279, "oneway": false, "points": [[-106.13, -3040.34], [-71.01, -3019.74]], "length": 40.72}, {"u": 53288575, "v": 53288573, "oneway": false, "points": [[-72.88, -3077.15], [-106.13, -3040.34]], "length": 49.6}, {"u": 53288575, "v": 847061279, "oneway": false, "points": [[-72.88, -3077.15], [-71.01, -3019.74]], "length": 57.44}, {"u": 53288575, "v": 53624470, "oneway": false, "points": [[-72.88, -3077.15], [-72.83, -3092.38]], "length": 15.23}, {"u": 53290647, "v": 496686159, "oneway": false, "points": [[1446.5, 2500.29], [1450.48, 2507.78], [1453.76, 2514.47], [1456.74, 2518.94], [1458.58, 2520.78], [1460.62, 2520.94], [1503.33, 2507.51], [1517.88, 2503.72], [1522.01, 2502.65], [1544.47, 2496.39], [1576.85, 2487.36], [1585.55, 2486.43], [1594.68, 2485.46]], "length": 164.88}, {"u": 53311057, "v": 53311058, "oneway": false, "points": [[-2989.65, -638.78], [-2990.26, -625.99], [-2990.62, -618.52]], "length": 20.28}, {"u": 53311057, "v": 53572824, "oneway": false, "points": [[-2989.65, -638.78], [-3002.74, -629.17], [-3008.38, -625.74], [-3012.35, -623.34], [-3018.73, -617.15]], "length": 36.36}, {"u": 53311057, "v": 2298789025, "oneway": false, "points": [[-2989.65, -638.78], [-2978.02, -645.34], [-2969.42, -652.14], [-2963.34, -658.76], [-2957.55, -667.05], [-2952.65, -677.97], [-2949.2, -694.29], [-2949.45, -702.71], [-2949.62, -710.96]], "length": 88.74}, {"u": 53311058, "v": 53578687, "oneway": false, "points": [[-2990.62, -618.52], [-2985.81, -618.61]], "length": 4.81}, {"u": 53311058, "v": 53311057, "oneway": false, "points": [[-2990.62, -618.52], [-2990.26, -625.99], [-2989.65, -638.78]], "length": 20.28}, {"u": 53311058, "v": 53572824, "oneway": false, "points": [[-2990.62, -618.52], [-2995.18, -618.61], [-3018.73, -617.15]], "length": 28.16}, {"u": 53326149, "v": 53525132, "oneway": false, "points": [[-23.65, -42.56], [-11.35, -31.99], [17.29, -5.73], [29.51, 5.51], [49.29, 23.35], [57.04, 30.02]], "length": 108.53}, {"u": 53326149, "v": 53538820, "oneway": true, "points": [[-23.65, -42.56], [-32.75, -33.07], [-97.33, 37.75], [-98.62, 38.25], [-101.61, 39.63], [-106.2, 40.45]], "length": 118.33}, {"u": 53332729, "v": 53539161, "oneway": false, "points": [[-31.92, -216.83], [-21.87, -227.92], [8.46, -261.43], [34.71, -290.43], [40.74, -297.08]], "length": 108.25}, {"u": 53332729, "v": 53408558, "oneway": true, "points": [[-31.92, -216.83], [-23.6, -208.79], [48.68, -144.41], [50.22, -140.51], [51.17, -136.51], [51.59, -133.13]], "length": 120.07}, {"u": 53332734, "v": 53444038, "oneway": true, "points": [[-205.91, -208.51], [-197.78, -216.98], [-158.41, -260.97], [-144.5, -275.9], [-133.17, -288.03], [-128.19, -290.88], [-122.59, -292.11]], "length": 119.26}, {"u": 53332734, "v": 53615252, "oneway": false, "points": [[-205.91, -208.51], [-218.78, -220.2], [-236.06, -235.89], [-260.89, -258.46], [-279.94, -275.86], [-286.8, -282.13]], "length": 109.38}, {"u": 53370932, "v": 53370937, "oneway": false, "points": [[-2945.15, -8.22], [-2945.9, -23.27], [-2947.21, -56.7], [-2947.54, -75.14], [-2947.61, -78.72], [-2947.64, -80.69]], "length": 72.51}, {"u": 53370932, "v": 53486863, "oneway": false, "points": [[-2945.15, -8.22], [-2944.82, -2.11], [-2944.4, 5.97], [-2944.21, 10.95], [-2943.4, 32.42], [-2943.02, 42.26], [-2942.8, 49.48]], "length": 57.76}, {"u": 53370932, "v": 53677752, "oneway": false, "points": [[-2945.15, -8.22], [-2911.6, -9.84], [-2887.91, -11.14], [-2864.82, -10.82], [-2814.69, -11.74], [-2809.72, -9.29], [-2808.02, -7.8], [-2802.33, -3.25]], "length": 145.63}, {"u": 53370937, "v": 53370932, "oneway": false, "points": [[-2947.64, -80.69], [-2947.61, -78.72], [-2947.54, -75.14], [-2947.21, -56.7], [-2945.9, -23.27], [-2945.15, -8.22]], "length": 72.51}, {"u": 53385421, "v": 387096443, "oneway": true, "points": [[-197.64, -34.22], [-207.32, -43.38], [-279.56, -107.25]], "length": 109.74}, {"u": 53385421, "v": 1423974459, "oneway": false, "points": [[-197.64, -34.22], [-209.53, -21.98], [-213.73, -17.57]], "length": 23.16}, {"u": 53407742, "v": 53407747, "oneway": false, "points": [[2040.37, 1687.58], [2046.15, 1693.22], [2221.67, 1864.52], [2228.45, 1871.13]], "length": 262.8}, {"u": 53407742, "v": 3786903332, "oneway": false, "points": [[2040.37, 1687.58], [2044.28, 1683.32], [2049.34, 1677.42], [2052.91, 1673.19], [2054.62, 1671.06]], "length": 21.82}, {"u": 53407742, "v": 2384881594, "oneway": true, "points": [[2040.37, 1687.58], [2035.99, 1695.67], [2034.86, 1697.77], [1983.46, 1752.61], [1981.38, 1754.96], [1972.61, 1764.2]], "length": 102.62}, {"u": 53407747, "v": 53407767, "oneway": false, "points": [[2228.45, 1871.13], [2235.15, 1877.6], [2279.7, 1931.35], [2304.74, 1958.9], [2338.39, 1999.63], [2362.65, 2028.29], [2442.72, 2126.25], [2448.35, 2133.14]], "length": 342.15}, {"u": 53407747, "v": 53407742, "oneway": false, "points": [[2228.45, 1871.13], [2221.67, 1864.52], [2046.15, 1693.22], [2040.37, 1687.58]], "length": 262.8}, {"u": 53407747, "v": 53503712, "oneway": false, "points": [[2228.45, 1871.13], [2234.41, 1864.84], [2245.87, 1852.77], [2249.95, 1848.55], [2279.1, 1817.57], [2288.34, 1808.53], [2301.53, 1795.61], [2306.87, 1790.39], [2308.2, 1789.08], [2309.97, 1787.62], [2318.58, 1783.28], [2325.94, 1779.39]], "length": 134.71}, {"u": 53407747, "v": 449952494, "oneway": false, "points": [[2228.45, 1871.13], [2223.89, 1875.8], [2166.86, 1934.31], [2160.91, 1940.4]], "length": 96.74}, {"u": 53407767, "v": 53407747, "oneway": false, "points": [[2448.35, 2133.14], [2442.72, 2126.25], [2362.65, 2028.29], [2338.39, 1999.63], [2304.74, 1958.9], [2279.7, 1931.35], [2235.15, 1877.6], [2228.45, 1871.13]], "length": 342.15}, {"u": 53407767, "v": 53636377, "oneway": false, "points": [[2448.35, 2133.14], [2461.68, 2120.65], [2463.26, 2118.82], [2483.88, 2095.91], [2502.64, 2079.64], [2509.32, 2073.85]], "length": 85.18}, {"u": 53407767, "v": 449952498, "oneway": false, "points": [[2448.35, 2133.14], [2436.39, 2145.4], [2412.11, 2170.32], [2405.43, 2177.18]], "length": 61.49}, {"u": 53407902, "v": 53426174, "oneway": true, "points": [[85.95, -135.41], [85.31, -141.89], [84.9, -153.41], [85.13, -155.27], [86.34, -157.03], [127.96, -202.65], [129.76, -204.61], [138.82, -209.76]], "length": 96.88}, {"u": 53407902, "v": 53539171, "oneway": false, "points": [[85.95, -135.41], [94.69, -135.93], [164.28, -139.52], [188.25, -140.73], [201.56, -141.39]], "length": 115.76}, {"u": 53407902, "v": 53408558, "oneway": false, "points": [[85.95, -135.41], [75.4, -134.77], [69.06, -134.36], [51.59, -133.13]], "length": 34.44}, {"u": 53407911, "v": 53525132, "oneway": true, "points": [[142.92, -64.38], [138.34, -59.39], [111.17, -29.75], [68.88, 16.31], [57.04, 30.02]], "length": 127.63}, {"u": 53407911, "v": 53407902, "oneway": true, "points": [[142.92, -64.38], [135.38, -71.07], [112.41, -91.36], [96.61, -105.52], [91.96, -110.14], [88.29, -113.85], [87.23, -115.96], [86.44, -127.67], [85.95, -135.41]], "length": 95.57}, {"u": 53407911, "v": 53407922, "oneway": false, "points": [[142.92, -64.38], [150.57, -57.72], [210.42, -5.6], [218.19, 1.17]], "length": 99.81}, {"u": 53407922, "v": 53483529, "oneway": false, "points": [[218.19, 1.17], [224.91, -6.1], [266.9, -51.6], [268.79, -53.64], [281.84, -67.75], [296.15, -83.23], [301.55, -89.08], [314.38, -102.74], [321.11, -110.37], [326.02, -115.75], [340.25, -131.11], [342.86, -135.05], [344.79, -137.97], [348.17, -145.68]], "length": 196.63}, {"u": 53407922, "v": 845773212, "oneway": false, "points": [[218.19, 1.17], [212.49, 7.45], [178.31, 45.8], [165.99, 59.23], [162.73, 62.79], [145.43, 82.31], [143.76, 84.11], [137.56, 90.67]], "length": 120.47}, {"u": 53407922, "v": 53407926, "oneway": false, "points": [[218.19, 1.17], [225.08, 7.3], [246.08, 25.96], [263.76, 41.7], [265.65, 43.38], [286.8, 62.18], [293.85, 68.45]], "length": 101.25}, {"u": 53407922, "v": 53407911, "oneway": false, "points": [[218.19, 1.17], [210.42, -5.6], [150.57, -57.72], [142.92, -64.38]], "length": 99.81}, {"u": 53407926, "v": 1425249983, "oneway": true, "points": [[293.85, 68.45], [299.11, 62.65], [314.31, 46.03], [320.23, 39.41], [322.05, 37.39], [334.65, 23.39], [341.11, 16.23], [348.01, 8.28], [368.76, -14.46], [369.65, -15.45], [405.63, -54.88], [406.58, -55.91], [408.73, -58.02], [409.45, -58.83], [421.82, -72.47], [426.14, -77.19]], "length": 196.76}, {"u": 53407926, "v": 53407932, "oneway": false, "points": [[293.85, 68.45], [299.95, 74.24], [346.04, 116.48], [353.05, 122.77]], "length": 80.35}, {"u": 53407926, "v": 53407922, "oneway": false, "points": [[293.85, 68.45], [286.8, 62.18], [265.65, 43.38], [263.76, 41.7], [246.08, 25.96], [225.08, 7.3], [218.19, 1.17]], "length": 101.25}, {"u": 53407932, "v": 845773215, "oneway": true, "points": [[353.05, 122.77], [346.5, 129.43], [337.51, 139.09], [327.52, 150.2], [317.3, 161.59], [310.72, 168.89], [280.0, 203.05], [278.05, 205.21], [271.06, 213.09]], "length": 122.0}, {"u": 53407932, "v": 53407941, "oneway": false, "points": [[353.05, 122.77], [359.84, 129.11], [390.07, 156.58], [396.51, 162.48], [400.42, 166.05], [404.32, 169.54], [418.76, 182.75], [420.58, 184.77], [427.3, 191.57]], "length": 101.25}, {"u": 53407932, "v": 53407926, "oneway": false, "points": [[353.05, 122.77], [346.04, 116.48], [299.95, 74.24], [293.85, 68.45]], "length": 80.35}, {"u": 53407941, "v": 53616146, "oneway": false, "points": [[427.3, 191.57], [434.44, 183.28], [458.49, 157.14], [482.74, 130.37], [489.38, 123.16], [495.26, 116.79]], "length": 101.05}, {"u": 53407941, "v": 1192211510, "oneway": false, "points": [[427.3, 191.57], [422.27, 197.95], [401.0, 221.42], [395.51, 227.65], [394.4, 228.84], [387.49, 237.23]], "length": 60.59}, {"u": 53407941, "v": 2713292536, "oneway": false, "points": [[427.3, 191.57], [433.81, 197.93], [436.12, 200.11], [456.31, 218.24], [458.49, 220.12], [465.57, 226.53], [468.17, 228.81], [501.76, 258.75], [535.18, 289.47], [570.12, 320.38], [577.38, 327.11]], "length": 202.24}, {"u": 53407941, "v": 53407932, "oneway": false, "points": [[427.3, 191.57], [420.58, 184.77], [418.76, 182.75], [404.32, 169.54], [400.42, 166.05], [396.51, 162.48], [390.07, 156.58], [359.84, 129.11], [353.05, 122.77]], "length": 101.25}, {"u": 53407975, "v": 2948601585, "oneway": false, "points": [[875.11, 598.33], [881.42, 603.97], [929.34, 647.49], [956.39, 671.47], [959.09, 673.87], [1018.25, 726.33], [1025.54, 732.79]], "length": 201.77}, {"u": 53407975, "v": 1142903857, "oneway": false, "points": [[875.11, 598.33], [868.16, 592.02], [840.96, 567.37], [829.8, 557.25], [801.2, 531.75], [787.06, 518.45], [784.19, 515.91], [732.18, 468.78], [725.13, 462.4]], "length": 202.41}, {"u": 53407975, "v": 53445464, "oneway": false, "points": [[875.11, 598.33], [882.8, 589.87], [907.53, 562.67], [935.97, 531.38], [937.2, 529.98], [946.46, 519.84], [949.74, 516.23], [974.71, 488.76], [995.03, 466.41], [998.57, 462.51], [1010.42, 449.48], [1038.27, 418.84], [1049.58, 406.4], [1072.28, 381.41], [1078.09, 375.04]], "length": 301.76}, {"u": 53407975, "v": 366215899, "oneway": false, "points": [[875.11, 598.33], [870.34, 603.56], [842.95, 633.69], [838.88, 638.19], [803.36, 677.25], [801.27, 679.55], [792.19, 689.55]], "length": 123.28}, {"u": 53408000, "v": 2948595076, "oneway": false, "points": [[1174.55, 867.66], [1178.8, 862.96], [1204.37, 834.66], [1217.64, 819.96], [1236.94, 798.61], [1239.92, 795.3], [1242.42, 792.54], [1250.82, 783.27], [1286.05, 744.25], [1288.75, 741.25], [1297.11, 732.0], [1300.82, 727.89], [1303.32, 725.13], [1309.77, 717.99]], "length": 201.7}, {"u": 53408000, "v": 366215913, "oneway": false, "points": [[1174.55, 867.66], [1168.11, 874.79], [1153.41, 891.06], [1144.18, 900.6], [1134.32, 911.74], [1100.12, 950.35], [1091.04, 960.61]], "length": 124.97}, {"u": 53408000, "v": 2948601585, "oneway": false, "points": [[1174.55, 867.66], [1168.34, 862.02], [1166.0, 859.9], [1121.92, 820.02], [1106.26, 805.85], [1094.91, 795.57], [1031.31, 738.02], [1025.54, 732.79]], "length": 200.98}, {"u": 53408480, "v": 53408487, "oneway": false, "points": [[1595.89, 1249.41], [1598.39, 1251.67], [1613.1, 1265.44], [1615.08, 1267.29], [1621.65, 1273.44]], "length": 35.23}, {"u": 53408487, "v": 53408490, "oneway": false, "points": [[1621.65, 1273.44], [1628.34, 1279.52], [1630.4, 1281.39], [1656.27, 1304.86], [1687.43, 1333.12], [1716.13, 1359.14], [1725.07, 1367.25]], "length": 139.62}, {"u": 53408487, "v": 53408480, "oneway": false, "points": [[1621.65, 1273.44], [1615.08, 1267.29], [1613.1, 1265.44], [1598.39, 1251.67], [1595.89, 1249.41]], "length": 35.23}, {"u": 53408487, "v": 53560776, "oneway": false, "points": [[1621.65, 1273.44], [1627.03, 1267.51], [1640.51, 1252.67], [1662.98, 1227.95]], "length": 61.46}, {"u": 53408487, "v": 53560766, "oneway": false, "points": [[1621.65, 1273.44], [1614.88, 1280.95], [1609.0, 1287.46], [1607.63, 1288.99], [1578.9, 1320.82], [1573.93, 1326.33], [1570.73, 1329.8], [1565.75, 1335.2], [1548.94, 1353.46], [1547.04, 1355.44], [1539.5, 1363.7]], "length": 122.04}, {"u": 53408490, "v": 53408525, "oneway": false, "points": [[1725.07, 1367.25], [1773.36, 1412.11], [1800.02, 1436.89], [1801.3, 1438.08], [1802.79, 1439.69], [1807.41, 1443.61], [1821.31, 1456.41], [1844.92, 1478.4], [1854.25, 1486.13], [1869.71, 1499.8]], "length": 196.23}, {"u": 53408490, "v": 53408487, "oneway": false, "points": [[1725.07, 1367.25], [1716.13, 1359.14], [1687.43, 1333.12], [1656.27, 1304.86], [1630.4, 1281.39], [1628.34, 1279.52], [1621.65, 1273.44]], "length": 139.62}, {"u": 53408490, "v": 53560776, "oneway": false, "points": [[1725.07, 1367.25], [1729.13, 1362.69], [1732.58, 1358.82], [1741.65, 1348.66], [1753.79, 1334.32], [1755.14, 1329.2], [1756.44, 1324.24], [1755.34, 1317.05], [1751.91, 1311.03], [1745.78, 1304.64], [1724.9, 1285.2], [1718.76, 1279.51], [1696.31, 1258.76], [1669.36, 1233.85], [1662.98, 1227.95]], "length": 190.04}, {"u": 53408525, "v": 3786903332, "oneway": false, "points": [[1869.71, 1499.8], [2048.41, 1664.0], [2054.62, 1671.06]], "length": 252.09}, {"u": 53408525, "v": 53408490, "oneway": false, "points": [[1869.71, 1499.8], [1854.25, 1486.13], [1844.92, 1478.4], [1821.31, 1456.41], [1807.41, 1443.61], [1802.79, 1439.69], [1801.3, 1438.08], [1800.02, 1436.89], [1773.36, 1412.11], [1725.07, 1367.25]], "length": 196.23}, {"u": 53408525, "v": 2713311875, "oneway": false, "points": [[1869.71, 1499.8], [1876.02, 1494.13], [1913.22, 1463.96]], "length": 56.38}, {"u": 53408558, "v": 53326149, "oneway": true, "points": [[51.59, -133.13], [51.35, -128.9], [50.49, -125.62], [48.76, -123.14], [-15.47, -51.97], [-23.65, -42.56]], "length": 118.99}, {"u": 53408558, "v": 53407902, "oneway": false, "points": [[51.59, -133.13], [69.06, -134.36], [75.4, -134.77], [85.95, -135.41]], "length": 34.44}, {"u": 53413603, "v": 53486814, "oneway": false, "points": [[-2432.47, 133.58], [-2432.73, 125.42], [-2432.93, 119.07], [-2433.07, 114.89], [-2438.93, 0.55], [-2439.39, -8.32]], "length": 142.08}, {"u": 53413603, "v": 53580606, "oneway": false, "points": [[-2432.47, 133.58], [-2431.95, 142.16], [-2431.45, 150.57], [-2430.73, 168.59], [-2430.25, 182.41], [-2428.67, 210.76], [-2427.8, 231.66], [-2427.11, 247.98]], "length": 114.53}, {"u": 53413603, "v": 53413619, "oneway": false, "points": [[-2432.47, 133.58], [-2442.77, 134.27], [-2461.87, 135.06], [-2573.24, 139.67], [-2580.28, 139.86], [-2684.42, 144.1], [-2694.88, 144.3]], "length": 262.64}, {"u": 53413603, "v": 37923758, "oneway": false, "points": [[-2432.47, 133.58], [-2422.97, 133.32], [-2395.63, 132.66], [-2388.58, 133.22], [-2375.3, 136.59], [-2368.51, 139.33], [-2349.91, 148.82], [-2340.52, 152.59], [-2333.37, 155.08], [-2322.74, 157.77], [-2315.06, 159.39], [-2303.09, 160.79], [-2284.2, 160.03], [-2273.77, 158.78], [-2255.34, 154.37], [-2232.79, 147.81], [-2208.74, 141.03], [-2194.08, 138.25], [-2178.44, 135.66], [-2167.39, 134.52], [-2156.96, 133.9], [-2136.27, 133.78], [-2119.42, 134.38], [-2097.52, 136.12], [-2068.92, 138.08], [-2054.97, 138.32], [-2042.94, 138.12], [-2032.41, 138.02], [-2021.94, 137.47], [-2010.91, 136.67], [-1991.42, 135.11], [-1976.77, 133.5], [-1968.83, 132.45], [-1961.06, 130.87], [-1953.86, 128.89], [-1943.48, 124.82], [-1935.48, 120.52], [-1929.0, 116.31], [-1922.13, 111.14], [-1909.12, 101.37], [-1896.45, 91.91], [-1886.97, 84.75], [-1877.89, 78.66]], "length": 578.93}, {"u": 53413619, "v": 53438915, "oneway": false, "points": [[-2694.88, 144.3], [-2695.13, 134.93], [-2697.42, 83.1], [-2697.03, 75.92], [-2696.01, 67.84], [-2694.75, 62.75], [-2691.97, 55.03]], "length": 90.04}, {"u": 53413619, "v": 1850006061, "oneway": false, "points": [[-2694.88, 144.3], [-2705.07, 144.68], [-2742.91, 146.26], [-2894.1, 152.58], [-2896.46, 152.68], [-2901.56, 152.9]], "length": 206.86}, {"u": 53413619, "v": 53413603, "oneway": false, "points": [[-2694.88, 144.3], [-2684.42, 144.1], [-2580.28, 139.86], [-2573.24, 139.67], [-2461.87, 135.06], [-2442.77, 134.27], [-2432.47, 133.58]], "length": 262.64}, {"u": 53413619, "v": 4055610627, "oneway": false, "points": [[-2694.88, 144.3], [-2694.68, 152.55], [-2690.78, 247.21], [-2690.37, 256.32], [-2689.69, 282.74], [-2689.71, 289.77], [-2689.74, 303.65], [-2694.91, 315.45], [-2697.23, 319.78], [-2708.7, 337.97]], "length": 198.74}, {"u": 53414098, "v": 845773212, "oneway": false, "points": [[125.14, 103.78], [137.56, 90.67]], "length": 18.07}, {"u": 53414098, "v": 2859245549, "oneway": false, "points": [[125.14, 103.78], [117.81, 111.96], [116.11, 113.78], [109.12, 121.53], [97.57, 134.33], [90.66, 141.99], [71.9, 162.78], [66.09, 169.23], [62.09, 173.65], [49.94, 187.12], [48.26, 188.98], [43.15, 194.64]], "length": 122.38}, {"u": 53414098, "v": 53525132, "oneway": true, "points": [[125.14, 103.78], [118.58, 97.96], [58.12, 41.36], [57.08, 36.8], [57.04, 30.02]], "length": 103.05}, {"u": 53416322, "v": 2705151904, "oneway": false, "points": [[560.88, 1072.82], [555.31, 1079.01], [552.5, 1082.13], [539.46, 1096.64], [495.97, 1145.01], [486.76, 1155.25], [485.2, 1156.43], [483.3, 1156.91], [481.37, 1156.64], [479.62, 1155.58], [460.49, 1138.52]], "length": 144.4}, {"u": 53416322, "v": 1699123266, "oneway": true, "points": [[560.88, 1072.82], [555.7, 1068.3], [541.85, 1055.42], [527.36, 1042.86], [511.9, 1029.46], [502.4, 1021.22], [495.45, 1015.22]], "length": 87.18}, {"u": 53416782, "v": 53416784, "oneway": false, "points": [[-1065.98, -2054.78], [-1066.33, -2061.49], [-1071.6, -2155.33], [-1072.14, -2164.97]], "length": 110.36}, {"u": 53416782, "v": 53444545, "oneway": false, "points": [[-1065.98, -2054.78], [-1096.21, -2057.25], [-1159.89, -2066.77], [-1199.51, -2069.97], [-1207.17, -2069.97], [-1224.84, -2066.58], [-1239.94, -2061.59], [-1248.84, -2056.55], [-1258.35, -2049.72], [-1267.91, -2042.0], [-1280.24, -2028.2]], "length": 228.75}, {"u": 53416782, "v": 53470168, "oneway": false, "points": [[-1065.98, -2054.78], [-1046.46, -2053.44], [-1027.59, -2054.65], [-1000.56, -2061.31], [-980.76, -2067.43], [-956.78, -2072.34]], "length": 111.52}, {"u": 53416784, "v": 53416786, "oneway": false, "points": [[-1072.14, -2164.97], [-1072.54, -2173.39], [-1074.8, -2221.91], [-1077.13, -2270.68], [-1077.53, -2279.52]], "length": 114.68}, {"u": 53416784, "v": 53416782, "oneway": false, "points": [[-1072.14, -2164.97], [-1071.6, -2155.33], [-1066.33, -2061.49], [-1065.98, -2054.78]], "length": 110.36}, {"u": 53416784, "v": 1180187483, "oneway": false, "points": [[-1072.14, -2164.97], [-1080.93, -2164.45], [-1243.01, -2154.86], [-1252.53, -2154.52], [-1282.32, -2153.44], [-1285.54, -2153.33], [-1291.48, -2153.11], [-1297.37, -2152.9], [-1300.38, -2152.79], [-1308.93, -2152.48]], "length": 237.13}, {"u": 53416784, "v": 53470169, "oneway": false, "points": [[-1072.14, -2164.97], [-1063.0, -2165.31], [-1022.23, -2166.84], [-969.49, -2169.96], [-960.95, -2170.47]], "length": 111.34}, {"u": 53416786, "v": 53470170, "oneway": false, "points": [[-1077.53, -2279.52], [-965.81, -2284.83]], "length": 111.85}, {"u": 53416786, "v": 53416788, "oneway": false, "points": [[-1077.53, -2279.52], [-1078.96, -2335.1], [-1080.34, -2383.09], [-1080.41, -2385.73], [-1080.66, -2394.6]], "length": 115.12}, {"u": 53416786, "v": 53416784, "oneway": false, "points": [[-1077.53, -2279.52], [-1077.13, -2270.68], [-1074.8, -2221.91], [-1072.54, -2173.39], [-1072.14, -2164.97]], "length": 114.68}, {"u": 53416786, "v": 1180187507, "oneway": false, "points": [[-1077.53, -2279.52], [-1184.08, -2274.47], [-1222.81, -2272.89], [-1230.72, -2273.6], [-1232.8, -2273.78], [-1239.87, -2274.41]], "length": 162.56}, {"u": 53416788, "v": 53416786, "oneway": false, "points": [[-1080.66, -2394.6], [-1080.41, -2385.73], [-1080.34, -2383.09], [-1078.96, -2335.1], [-1077.53, -2279.52]], "length": 115.12}, {"u": 53416788, "v": 1180187456, "oneway": false, "points": [[-1080.66, -2394.6], [-1092.0, -2393.64], [-1125.22, -2390.83], [-1130.28, -2390.39], [-1140.96, -2389.96], [-1153.55, -2390.52], [-1157.99, -2390.71], [-1166.95, -2391.1], [-1173.56, -2391.39]], "length": 93.12}, {"u": 53416788, "v": 53470173, "oneway": false, "points": [[-1080.66, -2394.6], [-1074.11, -2394.92], [-970.7, -2399.95]], "length": 110.09}, {"u": 53417779, "v": 53417781, "oneway": false, "points": [[-820.87, 249.98], [-863.7, 213.0], [-867.97, 209.31]], "length": 62.23}, {"u": 53417781, "v": 53521446, "oneway": false, "points": [[-867.97, 209.31], [-847.38, 186.44]], "length": 30.78}, {"u": 53417781, "v": 53417779, "oneway": false, "points": [[-867.97, 209.31], [-863.7, 213.0], [-820.87, 249.98]], "length": 62.23}, {"u": 53417781, "v": 53591804, "oneway": false, "points": [[-867.97, 209.31], [-872.4, 214.24], [-875.13, 217.26]], "length": 10.7}, {"u": 53421608, "v": 53421612, "oneway": false, "points": [[-2800.26, -967.89], [-2800.81, -1004.42]], "length": 36.53}, {"u": 53421608, "v": 53428597, "oneway": false, "points": [[-2800.26, -967.89], [-2794.82, -967.97], [-2793.18, -968.0], [-2713.41, -969.2], [-2705.98, -969.32]], "length": 94.3}, {"u": 53421608, "v": 13009756501, "oneway": false, "points": [[-2800.26, -967.89], [-2799.59, -946.38], [-2798.91, -921.41], [-2798.42, -903.14], [-2798.01, -870.27]], "length": 97.65}, {"u": 53421612, "v": 53421608, "oneway": false, "points": [[-2800.81, -1004.42], [-2800.26, -967.89]], "length": 36.53}, {"u": 53421612, "v": 53549949, "oneway": false, "points": [[-2800.81, -1004.42], [-2808.59, -1004.19], [-2811.89, -1004.09], [-2866.33, -1002.45], [-2884.85, -1003.14], [-2905.36, -1005.0], [-2954.33, -1010.48], [-2965.3, -1012.56], [-2969.76, -1014.33], [-2978.09, -1020.46]], "length": 180.26}, {"u": 53421612, "v": 53421621, "oneway": false, "points": [[-2800.81, -1004.42], [-2800.88, -1012.61], [-2801.09, -1028.44], [-2801.05, -1033.47], [-2802.05, -1064.18], [-2801.47, -1067.65], [-2800.01, -1072.78]], "length": 68.63}, {"u": 53421621, "v": 53610868, "oneway": false, "points": [[-2800.01, -1072.78], [-2807.56, -1073.89], [-2810.93, -1074.6], [-2815.78, -1075.77], [-2820.74, -1076.69], [-2823.5, -1076.93], [-2826.63, -1076.88], [-2838.29, -1076.71], [-2845.42, -1076.54], [-2864.76, -1076.04], [-2868.32, -1075.97], [-2887.33, -1075.69], [-2890.12, -1075.83], [-2892.57, -1076.07], [-2895.12, -1076.46], [-2897.69, -1077.0], [-2900.06, -1077.71], [-2902.82, -1078.77], [-2908.48, -1081.58], [-2913.9, -1085.56], [-2920.62, -1091.55]], "length": 125.66}, {"u": 53421621, "v": 53462374, "oneway": false, "points": [[-2800.01, -1072.78], [-2796.7, -1072.76], [-2793.8, -1073.25], [-2778.39, -1077.1], [-2769.66, -1081.93]], "length": 32.11}, {"u": 53421621, "v": 53421612, "oneway": false, "points": [[-2800.01, -1072.78], [-2801.47, -1067.65], [-2802.05, -1064.18], [-2801.05, -1033.47], [-2801.09, -1028.44], [-2800.88, -1012.61], [-2800.81, -1004.42]], "length": 68.63}, {"u": 53421750, "v": 316357431, "oneway": true, "points": [[-1044.11, -956.04], [-1029.88, -963.08]], "length": 15.88}, {"u": 53421750, "v": 1180102573, "oneway": true, "points": [[-1044.11, -956.04], [-1053.37, -963.3], [-1066.94, -975.77]], "length": 30.2}, {"u": 53423466, "v": 449907112, "oneway": false, "points": [[495.83, 416.48], [482.97, 431.45]], "length": 19.74}, {"u": 53423466, "v": 2713292536, "oneway": false, "points": [[495.83, 416.48], [501.46, 409.75], [503.86, 407.21], [533.14, 376.72], [535.5, 374.25], [536.66, 372.83], [540.11, 368.85], [569.17, 335.26], [570.78, 333.41], [577.38, 327.11]], "length": 121.05}, {"u": 53423466, "v": 13132340420, "oneway": true, "points": [[495.83, 416.48], [504.29, 423.34], [546.55, 462.41]], "length": 68.44}, {"u": 53423470, "v": 2713311960, "oneway": false, "points": [[633.18, 565.12], [626.13, 572.85], [570.19, 634.17], [556.09, 649.23], [551.39, 654.79]], "length": 121.37}, {"u": 53423470, "v": 449907112, "oneway": true, "points": [[633.18, 565.12], [568.79, 507.89], [535.66, 478.32], [490.36, 438.02], [482.97, 431.45]], "length": 201.08}, {"u": 53423501, "v": 2948594974, "oneway": true, "points": [[1230.77, 1106.47], [1223.4, 1099.88], [1186.83, 1067.09], [1170.47, 1052.44], [1156.4, 1039.82], [1124.93, 1011.63], [1109.6, 997.89], [1106.65, 995.25], [1088.27, 978.78], [1080.76, 972.05]], "length": 201.42}, {"u": 53423501, "v": 53430027, "oneway": false, "points": [[1230.77, 1106.47], [1223.78, 1113.85], [1221.01, 1116.79], [1201.2, 1137.72], [1199.05, 1140.0], [1187.89, 1151.79]], "length": 62.39}, {"u": 53423508, "v": 366215925, "oneway": false, "points": [[1377.53, 1243.36], [1389.6, 1229.51]], "length": 18.38}, {"u": 53423508, "v": 53536993, "oneway": false, "points": [[1377.53, 1243.36], [1372.13, 1249.37], [1369.16, 1252.69], [1353.31, 1270.37], [1304.01, 1325.54], [1296.95, 1333.45]], "length": 120.87}, {"u": 53423508, "v": 53423501, "oneway": true, "points": [[1377.53, 1243.36], [1368.76, 1234.74], [1341.05, 1209.02], [1283.57, 1155.4], [1237.32, 1112.27], [1230.77, 1106.47]], "length": 200.71}, {"u": 53423520, "v": 53560766, "oneway": false, "points": [[1528.79, 1375.97], [1539.5, 1363.7]], "length": 16.29}, {"u": 53423520, "v": 53538776, "oneway": false, "points": [[1528.79, 1375.97], [1520.93, 1384.46], [1517.33, 1388.35], [1499.75, 1407.34], [1451.68, 1459.67], [1444.12, 1467.45]], "length": 124.66}, {"u": 53423520, "v": 53423508, "oneway": true, "points": [[1528.79, 1375.97], [1519.91, 1368.19], [1477.44, 1330.96], [1469.67, 1324.19], [1423.1, 1283.33], [1397.45, 1260.83], [1388.8, 1253.26], [1386.24, 1251.01], [1377.53, 1243.36]], "length": 201.16}, {"u": 53423529, "v": 449934218, "oneway": false, "points": [[1675.14, 1510.09], [1667.25, 1517.52], [1653.15, 1530.83], [1643.3, 1540.11], [1637.72, 1544.15], [1631.54, 1548.63]], "length": 58.28}, {"u": 53423529, "v": 53423520, "oneway": true, "points": [[1675.14, 1510.09], [1633.92, 1472.71], [1609.62, 1450.67], [1588.87, 1431.86], [1585.11, 1428.45], [1580.83, 1424.47], [1539.08, 1385.56], [1528.79, 1375.97]], "length": 198.51}, {"u": 53423552, "v": 449952494, "oneway": false, "points": [[2147.55, 1953.92], [2160.91, 1940.4]], "length": 19.0}, {"u": 53423552, "v": 53570522, "oneway": false, "points": [[2147.55, 1953.92], [2139.81, 1962.18], [2126.34, 1976.24], [2105.33, 1998.96]], "length": 61.73}, {"u": 53423552, "v": 2384881601, "oneway": true, "points": [[2147.55, 1953.92], [2137.65, 1944.62], [2091.85, 1899.17], [1976.92, 1790.58], [1970.6, 1785.24], [1968.1, 1783.15], [1959.95, 1776.69]], "length": 258.16}, {"u": 53423556, "v": 53570527, "oneway": false, "points": [[2248.24, 2050.82], [2241.07, 2058.02], [2220.36, 2078.81], [2205.5, 2093.72]], "length": 60.56}, {"u": 53423556, "v": 53423552, "oneway": true, "points": [[2248.24, 2050.82], [2241.35, 2044.41], [2229.43, 2033.32], [2157.48, 1963.25], [2147.55, 1953.92]], "length": 139.75}, {"u": 53423565, "v": 449957352, "oneway": false, "points": [[2644.66, 2436.46], [2658.4, 2422.3]], "length": 19.74}, {"u": 53423565, "v": 1706427666, "oneway": true, "points": [[2644.66, 2436.46], [2637.39, 2429.31], [2582.38, 2375.16], [2569.08, 2362.45], [2530.29, 2325.36], [2522.09, 2317.58]], "length": 170.76}, {"u": 53423565, "v": 53538791, "oneway": false, "points": [[2644.66, 2436.46], [2637.82, 2444.25], [2565.3, 2517.6], [2559.06, 2523.96]], "length": 122.42}, {"u": 53423568, "v": 53529532, "oneway": false, "points": [[2774.92, 2558.46], [2765.92, 2567.8], [2748.92, 2585.45], [2734.1, 2600.84], [2694.33, 2642.15], [2688.81, 2647.88]], "length": 124.14}, {"u": 53423568, "v": 53423565, "oneway": true, "points": [[2774.92, 2558.46], [2767.85, 2551.81], [2724.94, 2511.42], [2714.48, 2502.16], [2695.27, 2483.86], [2691.76, 2480.51], [2661.09, 2452.13], [2651.98, 2443.41], [2644.66, 2436.46]], "length": 178.47}, {"u": 53423575, "v": 1706427647, "oneway": true, "points": [[2845.97, 2654.77], [2838.71, 2641.51]], "length": 15.12}, {"u": 53423575, "v": 53467195, "oneway": true, "points": [[2845.97, 2654.77], [2834.56, 2662.32], [2830.57, 2664.95], [2827.18, 2668.47], [2819.51, 2679.0]], "length": 36.38}, {"u": 53425693, "v": 5730487259, "oneway": false, "points": [[251.11, 383.04], [245.49, 377.88], [243.54, 376.09], [224.6, 358.7], [184.74, 322.08], [180.93, 318.8]], "length": 95.14}, {"u": 53425693, "v": 316334513, "oneway": true, "points": [[251.11, 383.04], [257.39, 376.33], [272.76, 359.92], [286.77, 344.31], [299.93, 329.64], [304.21, 324.86], [308.76, 319.81], [326.48, 299.68], [333.44, 292.28]], "length": 122.55}, {"u": 53425702, "v": 8729846828, "oneway": true, "points": [[117.14, 533.32], [122.72, 527.01], [151.04, 495.55], [169.95, 474.47], [178.22, 465.27], [184.23, 458.57]], "length": 100.44}, {"u": 53425702, "v": 53640831, "oneway": true, "points": [[117.14, 533.32], [124.02, 539.56], [151.43, 564.41], [222.1, 628.46], [259.32, 662.2], [266.57, 668.77]], "length": 201.68}, {"u": 53425702, "v": 3088209649, "oneway": false, "points": [[117.14, 533.32], [111.99, 539.06], [110.81, 540.38], [57.1, 600.23], [55.48, 602.03], [50.0, 607.82]], "length": 100.29}, {"u": 53426174, "v": 53539171, "oneway": true, "points": [[138.82, -209.76], [145.23, -203.97], [194.67, -159.19], [197.85, -155.0], [199.47, -151.44], [200.97, -146.08], [201.56, -141.39]], "length": 94.8}, {"u": 53426174, "v": 13091071866, "oneway": true, "points": [[138.82, -209.76], [140.48, -218.2], [154.33, -234.89], [167.45, -248.73], [176.41, -258.41], [187.28, -264.23]], "length": 74.88}, {"u": 53426175, "v": 53515084, "oneway": true, "points": [[204.03, -281.35], [196.17, -288.0], [174.04, -308.21], [168.68, -313.33], [160.88, -320.46], [151.26, -329.27], [141.71, -338.47], [122.32, -357.02], [121.19, -358.03], [117.41, -360.92], [106.94, -369.95]], "length": 131.48}, {"u": 53426175, "v": 366220625, "oneway": false, "points": [[204.03, -281.35], [209.71, -286.36], [212.19, -289.03], [213.57, -290.52], [227.31, -305.3], [239.88, -318.84]], "length": 51.9}, {"u": 53426175, "v": 13091071866, "oneway": false, "points": [[204.03, -281.35], [198.63, -276.72], [187.28, -264.23]], "length": 23.99}, {"u": 53426575, "v": 53426577, "oneway": false, "points": [[-155.53, -2202.09], [-155.88, -2210.93], [-162.92, -2388.07], [-163.27, -2396.82]], "length": 194.88}, {"u": 53426575, "v": 53573861, "oneway": false, "points": [[-155.53, -2202.09], [-116.66, -2203.6], [-111.9, -2203.78], [-87.08, -2204.75], [-53.68, -2206.06]], "length": 101.93}, {"u": 53426575, "v": 53551342, "oneway": false, "points": [[-155.53, -2202.09], [-186.35, -2200.75], [-192.82, -2200.47]], "length": 37.32}, {"u": 53426577, "v": 316562664, "oneway": false, "points": [[-163.27, -2396.82], [-167.88, -2507.61], [-169.4, -2513.77], [-171.66, -2523.05]], "length": 126.79}, {"u": 53426577, "v": 53426575, "oneway": false, "points": [[-163.27, -2396.82], [-162.92, -2388.07], [-155.88, -2210.93], [-155.53, -2202.09]], "length": 194.88}, {"u": 53426577, "v": 53544865, "oneway": false, "points": [[-163.27, -2396.82], [-172.77, -2396.4], [-250.37, -2393.01]], "length": 87.19}, {"u": 53426577, "v": 53573861, "oneway": false, "points": [[-163.27, -2396.82], [-154.17, -2397.13], [-113.05, -2398.52], [-0.33, -2402.33], [23.47, -2402.34], [36.11, -2399.37], [39.65, -2395.13], [42.24, -2392.13], [45.02, -2386.95], [45.58, -2382.79], [45.58, -2372.85], [43.93, -2367.8], [32.15, -2348.9], [2.61, -2301.53], [-8.47, -2283.78], [-14.85, -2273.55], [-20.18, -2264.05], [-47.03, -2217.36], [-53.68, -2206.06]], "length": 423.57}, {"u": 53428594, "v": 53428597, "oneway": false, "points": [[-2704.43, -937.59], [-2705.28, -947.85], [-2705.56, -955.68], [-2705.98, -969.32]], "length": 31.78}, {"u": 53428597, "v": 3812685579, "oneway": false, "points": [[-2705.98, -969.32], [-2706.22, -983.51], [-2706.98, -1003.21], [-2706.76, -1007.44], [-2705.83, -1009.33], [-2704.44, -1010.78], [-2702.25, -1013.0], [-2696.4, -1019.41]], "length": 54.06}, {"u": 53428597, "v": 53428594, "oneway": false, "points": [[-2705.98, -969.32], [-2705.56, -955.68], [-2705.28, -947.85], [-2704.43, -937.59]], "length": 31.78}, {"u": 53428597, "v": 53421608, "oneway": false, "points": [[-2705.98, -969.32], [-2713.41, -969.2], [-2793.18, -968.0], [-2794.82, -967.97], [-2800.26, -967.89]], "length": 94.3}, {"u": 53429624, "v": 1699123283, "oneway": false, "points": [[1220.91, 1534.65], [1211.56, 1544.9]], "length": 13.87}, {"u": 53429624, "v": 1777291055, "oneway": true, "points": [[1220.91, 1534.65], [1230.62, 1542.84], [1310.61, 1616.47]], "length": 121.42}, {"u": 53430018, "v": 53430027, "oneway": false, "points": [[1039.35, 1017.64], [1046.33, 1023.84], [1065.52, 1040.89], [1069.21, 1044.18], [1083.57, 1056.93], [1089.85, 1062.52], [1128.79, 1097.7], [1133.99, 1102.4], [1142.15, 1109.94], [1172.21, 1137.73], [1175.99, 1141.22], [1181.89, 1146.46], [1187.89, 1151.79]], "length": 200.17}, {"u": 53430018, "v": 349378518, "oneway": false, "points": [[1039.35, 1017.64], [1005.44, 1054.96], [998.9, 1062.16]], "length": 60.15}, {"u": 53430018, "v": 2948594974, "oneway": false, "points": [[1039.35, 1017.64], [1050.15, 1005.75], [1063.03, 991.57], [1074.25, 979.21], [1080.76, 972.05]], "length": 61.58}, {"u": 53430027, "v": 53430018, "oneway": false, "points": [[1187.89, 1151.79], [1181.89, 1146.46], [1175.99, 1141.22], [1172.21, 1137.73], [1142.15, 1109.94], [1133.99, 1102.4], [1128.79, 1097.7], [1089.85, 1062.52], [1083.57, 1056.93], [1069.21, 1044.18], [1065.52, 1040.89], [1046.33, 1023.84], [1039.35, 1017.64]], "length": 200.17}, {"u": 53430027, "v": 53453124, "oneway": false, "points": [[1187.89, 1151.79], [1176.64, 1164.16], [1154.79, 1188.14], [1152.69, 1190.45], [1147.0, 1196.69]], "length": 60.74}, {"u": 53430027, "v": 53423501, "oneway": false, "points": [[1187.89, 1151.79], [1199.05, 1140.0], [1201.2, 1137.72], [1221.01, 1116.79], [1223.78, 1113.85], [1230.77, 1106.47]], "length": 62.39}, {"u": 53430437, "v": 53616166, "oneway": false, "points": [[-1631.1, -1002.63], [-1630.84, -991.89], [-1629.7, -944.04], [-1629.1, -922.79], [-1628.71, -908.76], [-1627.65, -873.44], [-1627.61, -871.86], [-1627.33, -862.38]], "length": 140.3}, {"u": 53430437, "v": 53676376, "oneway": false, "points": [[-1631.1, -1002.63], [-1631.56, -1014.18], [-1632.89, -1062.76], [-1633.61, -1087.28], [-1634.2, -1113.02], [-1634.53, -1123.55]], "length": 120.97}, {"u": 53430437, "v": 53430443, "oneway": false, "points": [[-1631.1, -1002.63], [-1639.94, -1002.53], [-1643.25, -1002.48], [-1675.91, -1001.95], [-1692.2, -1001.43], [-1696.28, -1001.41], [-1702.8, -1001.46], [-1715.59, -1001.31], [-1750.3, -1000.57], [-1751.91, -1000.54], [-1760.74, -1000.35]], "length": 129.66}, {"u": 53430443, "v": 53430446, "oneway": false, "points": [[-1760.74, -1000.35], [-1769.88, -1000.27], [-1773.01, -1000.21], [-1801.22, -999.73], [-1844.11, -998.63]], "length": 83.39}, {"u": 53430443, "v": 53576823, "oneway": false, "points": [[-1760.74, -1000.35], [-1760.92, -1010.08], [-1761.83, -1059.89]], "length": 59.55}, {"u": 53430443, "v": 53483330, "oneway": false, "points": [[-1760.74, -1000.35], [-1760.47, -990.63], [-1758.75, -928.93], [-1758.68, -926.36]], "length": 74.02}, {"u": 53430443, "v": 53430437, "oneway": false, "points": [[-1760.74, -1000.35], [-1751.91, -1000.54], [-1750.3, -1000.57], [-1715.59, -1001.31], [-1702.8, -1001.46], [-1696.28, -1001.41], [-1692.2, -1001.43], [-1675.91, -1001.95], [-1643.25, -1002.48], [-1639.94, -1002.53], [-1631.1, -1002.63]], "length": 129.66}, {"u": 53430446, "v": 3811323394, "oneway": false, "points": [[-1844.11, -998.63], [-1892.78, -997.21]], "length": 48.69}, {"u": 53430446, "v": 53430443, "oneway": false, "points": [[-1844.11, -998.63], [-1801.22, -999.73], [-1773.01, -1000.21], [-1769.88, -1000.27], [-1760.74, -1000.35]], "length": 83.39}, {"u": 53430446, "v": 53680515, "oneway": false, "points": [[-1844.11, -998.63], [-1844.3, -1005.62], [-1845.63, -1053.38], [-1845.65, -1053.81], [-1845.76, -1058.28]], "length": 59.67}, {"u": 53430836, "v": 53430839, "oneway": false, "points": [[2869.24, 2332.21], [2864.04, 2264.17], [2863.88, 2255.16]], "length": 77.25}, {"u": 53430839, "v": 53430844, "oneway": false, "points": [[2863.88, 2255.16], [2863.54, 2248.31], [2853.46, 2074.97], [2852.93, 2065.78]], "length": 189.7}, {"u": 53430839, "v": 53430836, "oneway": false, "points": [[2863.88, 2255.16], [2864.04, 2264.17], [2869.24, 2332.21]], "length": 77.25}, {"u": 53430839, "v": 53475094, "oneway": false, "points": [[2863.88, 2255.16], [2870.77, 2254.88], [2945.18, 2251.83], [2954.79, 2251.18]], "length": 91.0}, {"u": 53430839, "v": 53611260, "oneway": false, "points": [[2863.88, 2255.16], [2854.72, 2255.58], [2779.14, 2259.45], [2771.37, 2259.86]], "length": 92.63}, {"u": 53430844, "v": 53540839, "oneway": false, "points": [[2852.93, 2065.78], [2852.54, 2058.91], [2847.07, 1938.57], [2844.76, 1921.2]], "length": 144.87}, {"u": 53430844, "v": 53430839, "oneway": false, "points": [[2852.93, 2065.78], [2853.46, 2074.97], [2863.54, 2248.31], [2863.88, 2255.16]], "length": 189.7}, {"u": 53430844, "v": 53475096, "oneway": false, "points": [[2852.93, 2065.78], [2860.45, 2064.99], [2936.86, 2061.08], [2944.58, 2060.68]], "length": 91.8}, {"u": 53430844, "v": 53604832, "oneway": false, "points": [[2852.93, 2065.78], [2844.5, 2065.94], [2770.13, 2070.72], [2761.75, 2071.25]], "length": 91.36}, {"u": 53430857, "v": 53487523, "oneway": false, "points": [[2845.67, 1872.42], [2849.28, 1862.83], [2849.82, 1860.3], [2864.44, 1792.28], [2865.92, 1785.37]], "length": 89.47}, {"u": 53430857, "v": 1192282519, "oneway": false, "points": [[2845.67, 1872.42], [2838.13, 1870.18], [2811.73, 1863.09], [2774.04, 1852.96], [2765.85, 1850.8]], "length": 82.7}, {"u": 53432331, "v": 1142903857, "oneway": false, "points": [[929.4, 237.03], [922.28, 244.66], [919.85, 247.2], [892.07, 276.84], [884.0, 285.44], [858.69, 315.04], [850.54, 324.19], [847.11, 328.11], [801.52, 377.16], [791.9, 387.43], [732.45, 453.99], [725.13, 462.4]], "length": 304.2}, {"u": 53432331, "v": 1192150406, "oneway": false, "points": [[929.4, 237.03], [922.09, 230.44], [910.64, 219.88], [879.38, 191.84], [855.55, 170.45], [829.28, 146.87], [824.47, 142.55], [816.82, 135.7], [815.21, 134.25]], "length": 153.63}, {"u": 53432331, "v": 53461450, "oneway": false, "points": [[929.4, 237.03], [935.61, 230.38], [936.85, 229.07], [952.79, 212.01], [987.61, 174.74], [994.48, 167.39]], "length": 95.32}, {"u": 53432331, "v": 53445464, "oneway": false, "points": [[929.4, 237.03], [935.91, 243.53], [989.98, 293.26], [991.91, 295.05], [998.28, 300.97], [1024.2, 325.03], [1039.73, 339.44], [1047.61, 346.77], [1055.99, 354.54], [1069.93, 367.57], [1078.09, 375.04]], "length": 202.88}, {"u": 53432339, "v": 2925570317, "oneway": false, "points": [[1377.36, 643.19], [1385.36, 650.5], [1391.74, 656.33], [1393.29, 657.81], [1393.81, 658.28], [1408.76, 672.1], [1411.53, 674.65], [1423.02, 684.99], [1423.58, 685.52], [1429.23, 690.88], [1436.93, 697.44], [1495.76, 751.62], [1519.91, 774.21], [1526.39, 779.86]], "length": 202.22}, {"u": 53432339, "v": 3235649725, "oneway": false, "points": [[1377.36, 643.19], [1370.45, 636.92], [1362.62, 629.96], [1354.51, 622.52], [1317.96, 590.18], [1302.36, 576.39], [1294.62, 569.51], [1290.09, 565.4], [1287.88, 563.38], [1280.74, 556.63], [1280.51, 556.43], [1265.74, 542.17], [1255.85, 533.19], [1236.12, 515.0], [1229.07, 508.53]], "length": 200.32}, {"u": 53432339, "v": 53461467, "oneway": false, "points": [[1377.36, 643.19], [1383.5, 636.39], [1402.74, 615.09], [1402.97, 614.84], [1410.38, 606.63], [1411.27, 605.65], [1437.39, 576.68], [1443.78, 569.59]], "length": 99.14}, {"u": 53432339, "v": 2948595076, "oneway": false, "points": [[1377.36, 643.19], [1370.88, 650.35], [1354.48, 668.51], [1353.42, 669.68], [1315.18, 712.75], [1309.77, 717.99]], "length": 100.84}, {"u": 53432346, "v": 53515077, "oneway": false, "points": [[1675.88, 914.05], [1668.02, 922.18], [1667.25, 922.96], [1651.09, 941.19], [1641.02, 952.53], [1635.36, 958.93], [1614.57, 982.37], [1609.22, 988.4]], "length": 99.87}, {"u": 53432346, "v": 53461478, "oneway": false, "points": [[1675.88, 914.05], [1681.43, 908.36], [1684.59, 905.14], [1736.24, 846.7], [1742.8, 839.27]], "length": 100.37}, {"u": 53432346, "v": 53432349, "oneway": false, "points": [[1675.88, 914.05], [1683.95, 921.4], [1711.84, 946.58], [1732.95, 965.64], [1742.9, 974.76], [1766.94, 996.8], [1796.57, 1024.11], [1818.15, 1043.76], [1824.88, 1049.9]], "length": 201.63}, {"u": 53432346, "v": 2925570317, "oneway": false, "points": [[1675.88, 914.05], [1668.92, 907.76], [1632.11, 873.91], [1624.75, 867.27], [1616.35, 859.75], [1607.37, 851.65], [1575.03, 822.73], [1571.73, 819.78], [1570.29, 818.48], [1558.15, 807.61], [1556.82, 806.42], [1555.08, 804.87], [1532.58, 785.34], [1526.39, 779.86]], "length": 200.9}, {"u": 53432349, "v": 53461491, "oneway": false, "points": [[1824.88, 1049.9], [1830.61, 1043.55], [1832.64, 1041.31], [1849.21, 1022.97], [1885.97, 982.29], [1892.58, 974.97]], "length": 100.99}, {"u": 53432349, "v": 53515081, "oneway": false, "points": [[1824.88, 1049.9], [1818.08, 1057.19], [1816.26, 1059.14], [1794.96, 1081.97], [1793.44, 1083.6], [1762.58, 1116.66], [1756.39, 1123.3]], "length": 100.39}, {"u": 53432349, "v": 53432353, "oneway": false, "points": [[1824.88, 1049.9], [1831.06, 1056.6], [1843.95, 1070.59], [1848.72, 1076.29], [1871.89, 1103.9], [1899.97, 1137.38], [1927.45, 1171.82], [1949.43, 1198.27], [1955.53, 1205.6]], "length": 203.3}, {"u": 53432349, "v": 53432346, "oneway": false, "points": [[1824.88, 1049.9], [1818.15, 1043.76], [1796.57, 1024.11], [1766.94, 996.8], [1742.9, 974.76], [1732.95, 965.64], [1711.84, 946.58], [1683.95, 921.4], [1675.88, 914.05]], "length": 201.63}, {"u": 53432353, "v": 53461499, "oneway": false, "points": [[1955.53, 1205.6], [1961.33, 1199.08], [1975.32, 1183.34], [1981.27, 1176.64], [1997.17, 1156.86], [2034.43, 1117.28], [2040.6, 1110.73]], "length": 127.48}, {"u": 53432353, "v": 53432356, "oneway": false, "points": [[1955.53, 1205.6], [1960.33, 1211.38], [1991.03, 1248.39]], "length": 55.6}, {"u": 53432353, "v": 53432349, "oneway": false, "points": [[1955.53, 1205.6], [1949.43, 1198.27], [1927.45, 1171.82], [1899.97, 1137.38], [1871.89, 1103.9], [1848.72, 1076.29], [1843.95, 1070.59], [1831.06, 1056.6], [1824.88, 1049.9]], "length": 203.3}, {"u": 53432356, "v": 2948601586, "oneway": false, "points": [[1991.03, 1248.39], [1996.22, 1254.35], [1998.45, 1256.9], [2003.08, 1262.27], [2018.85, 1281.37], [2024.07, 1287.73]], "length": 51.38}, {"u": 53432356, "v": 53432353, "oneway": false, "points": [[1991.03, 1248.39], [1960.33, 1211.38], [1955.53, 1205.6]], "length": 55.6}, {"u": 53433643, "v": 53437708, "oneway": false, "points": [[820.8, 1416.32], [790.45, 1387.79]], "length": 41.65}, {"u": 53433643, "v": 53433662, "oneway": false, "points": [[820.8, 1416.32], [786.24, 1454.05], [785.46, 1455.2], [785.02, 1456.51], [784.96, 1457.89], [785.28, 1459.23], [817.65, 1541.92], [819.38, 1545.26], [820.52, 1547.46], [825.21, 1552.94]], "length": 158.95}, {"u": 53433643, "v": 53453164, "oneway": false, "points": [[820.8, 1416.32], [883.45, 1475.22], [889.81, 1481.2]], "length": 94.72}, {"u": 53433662, "v": 53453164, "oneway": false, "points": [[825.21, 1552.94], [889.81, 1481.2]], "length": 96.54}, {"u": 53433662, "v": 53433643, "oneway": false, "points": [[825.21, 1552.94], [820.52, 1547.46], [819.38, 1545.26], [817.65, 1541.92], [785.28, 1459.23], [784.96, 1457.89], [785.02, 1456.51], [785.46, 1455.2], [786.24, 1454.05], [820.8, 1416.32]], "length": 158.95}, {"u": 53433662, "v": 53453173, "oneway": false, "points": [[825.21, 1552.94], [819.28, 1559.4], [793.29, 1587.74], [762.37, 1622.86], [758.39, 1626.14], [755.53, 1627.68], [753.93, 1628.53], [749.04, 1630.45]], "length": 109.49}, {"u": 53434711, "v": 2859245583, "oneway": false, "points": [[-1093.98, 117.9], [-1107.45, 118.61], [-1143.91, 120.5], [-1169.11, 121.81], [-1173.43, 122.03], [-1175.49, 120.94], [-1177.03, 118.95], [-1178.0, 116.41], [-1178.48, 113.51], [-1179.24, 98.97], [-1180.72, 73.25], [-1181.52, 59.41], [-1182.71, 38.64], [-1183.37, 29.37]], "length": 174.34}, {"u": 53434862, "v": 53434863, "oneway": false, "points": [[-831.87, -2406.51], [-832.2, -2415.82], [-832.32, -2418.6], [-836.04, -2510.8], [-836.17, -2514.07], [-836.54, -2523.14]], "length": 116.72}, {"u": 53434862, "v": 53470170, "oneway": false, "points": [[-831.87, -2406.51], [-831.53, -2397.83], [-831.46, -2395.09], [-830.39, -2352.14], [-828.87, -2291.62], [-878.53, -2289.42], [-965.81, -2284.83]], "length": 252.04}, {"u": 53434862, "v": 53470173, "oneway": false, "points": [[-831.87, -2406.51], [-839.48, -2406.18], [-892.41, -2403.53], [-970.7, -2399.95]], "length": 138.98}, {"u": 53434862, "v": 5890633230, "oneway": false, "points": [[-831.87, -2406.51], [-823.39, -2406.96], [-714.0, -2412.2]], "length": 118.01}, {"u": 53434863, "v": 53434865, "oneway": false, "points": [[-836.54, -2523.14], [-837.03, -2532.08], [-837.22, -2535.59], [-839.77, -2581.79], [-842.18, -2625.7], [-842.41, -2630.04], [-842.82, -2637.35]], "length": 114.39}, {"u": 53434863, "v": 53434862, "oneway": false, "points": [[-836.54, -2523.14], [-836.17, -2514.07], [-836.04, -2510.8], [-832.32, -2418.6], [-832.2, -2415.82], [-831.87, -2406.51]], "length": 116.72}, {"u": 53434863, "v": 1180187547, "oneway": false, "points": [[-836.54, -2523.14], [-845.57, -2522.69], [-959.77, -2517.07], [-987.84, -2515.26], [-1062.01, -2511.64], [-1079.34, -2510.78], [-1089.61, -2510.8], [-1095.61, -2510.81], [-1097.73, -2510.82], [-1106.44, -2510.82]], "length": 270.22}, {"u": 53434863, "v": 53463513, "oneway": false, "points": [[-836.54, -2523.14], [-827.34, -2523.6], [-756.94, -2527.19], [-698.26, -2530.83], [-694.46, -2531.06], [-683.95, -2531.71]], "length": 152.83}, {"u": 53434865, "v": 53434867, "oneway": false, "points": [[-842.82, -2637.35], [-843.24, -2647.7], [-843.43, -2652.37], [-845.27, -2696.66], [-847.01, -2742.6], [-847.15, -2746.27], [-847.46, -2754.57]], "length": 117.31}, {"u": 53434865, "v": 53434863, "oneway": false, "points": [[-842.82, -2637.35], [-842.41, -2630.04], [-842.18, -2625.7], [-839.77, -2581.79], [-837.22, -2535.59], [-837.03, -2532.08], [-836.54, -2523.14]], "length": 114.39}, {"u": 53434865, "v": 53511723, "oneway": false, "points": [[-842.82, -2637.35], [-850.89, -2637.02], [-929.86, -2633.76], [-972.88, -2632.46], [-1015.0, -2632.59], [-1019.09, -2632.68], [-1021.33, -2632.74], [-1024.04, -2632.72], [-1033.75, -2637.83]], "length": 192.29}, {"u": 53434865, "v": 53463519, "oneway": false, "points": [[-842.82, -2637.35], [-751.76, -2642.93], [-747.75, -2643.18], [-743.11, -2643.48], [-733.45, -2644.11]], "length": 109.57}, {"u": 53434867, "v": 53434865, "oneway": false, "points": [[-847.46, -2754.57], [-847.15, -2746.27], [-847.01, -2742.6], [-845.27, -2696.66], [-843.43, -2652.37], [-843.24, -2647.7], [-842.82, -2637.35]], "length": 117.31}, {"u": 53434867, "v": 53511712, "oneway": false, "points": [[-847.46, -2754.57], [-857.0, -2754.11], [-924.62, -2750.81], [-931.49, -2750.97], [-935.33, -2751.06], [-945.99, -2751.31]], "length": 98.63}, {"u": 53434867, "v": 53463523, "oneway": false, "points": [[-847.46, -2754.57], [-838.66, -2755.01], [-797.96, -2757.06], [-792.28, -2757.34], [-786.49, -2757.63]], "length": 61.04}, {"u": 53434870, "v": 53434871, "oneway": false, "points": [[-787.2, -2084.85], [-787.56, -2092.55], [-790.03, -2168.68], [-790.62, -2177.58]], "length": 92.8}, {"u": 53434870, "v": 53470168, "oneway": false, "points": [[-787.2, -2084.85], [-838.48, -2085.19], [-854.08, -2083.0], [-869.51, -2081.05], [-882.64, -2079.35], [-956.78, -2072.34]], "length": 170.3}, {"u": 53434870, "v": 2634693299, "oneway": false, "points": [[-787.2, -2084.85], [-777.95, -2084.25], [-662.66, -2091.07], [-630.92, -2092.42], [-624.75, -2092.93], [-621.48, -2093.47]], "length": 166.04}, {"u": 53434871, "v": 53434870, "oneway": false, "points": [[-790.62, -2177.58], [-790.03, -2168.68], [-787.56, -2092.55], [-787.2, -2084.85]], "length": 92.8}, {"u": 53434871, "v": 53470169, "oneway": false, "points": [[-790.62, -2177.58], [-796.46, -2177.43], [-860.59, -2174.67], [-951.62, -2170.88], [-960.95, -2170.47]], "length": 170.47}, {"u": 53434871, "v": 2634708186, "oneway": false, "points": [[-790.62, -2177.58], [-783.75, -2177.92], [-668.73, -2181.6], [-621.19, -2182.78], [-614.43, -2183.02]], "length": 176.28}, {"u": 53436855, "v": 53572846, "oneway": false, "points": [[-3131.94, -534.52], [-3125.31, -527.94], [-3118.94, -524.67], [-3107.82, -520.66], [-3104.63, -519.97], [-3098.5, -519.6], [-3089.64, -520.18], [-3075.62, -520.26], [-3068.85, -519.9], [-3051.49, -516.84], [-3042.21, -514.44], [-3030.58, -509.66], [-3023.55, -505.98], [-3015.09, -500.88]], "length": 125.0}, {"u": 53437415, "v": 53437417, "oneway": false, "points": [[2138.99, 1386.73], [2163.92, 1372.87], [2170.38, 1369.27]], "length": 35.92}, {"u": 53437417, "v": 53437418, "oneway": false, "points": [[2170.38, 1369.27], [2242.29, 1311.58], [2244.28, 1309.98], [2252.36, 1303.51]], "length": 105.1}, {"u": 53437417, "v": 53437415, "oneway": false, "points": [[2170.38, 1369.27], [2163.92, 1372.87], [2138.99, 1386.73]], "length": 35.92}, {"u": 53437417, "v": 53537030, "oneway": false, "points": [[2170.38, 1369.27], [2177.23, 1373.93], [2257.08, 1428.15], [2262.15, 1431.6]], "length": 110.93}, {"u": 53437418, "v": 53437425, "oneway": false, "points": [[2252.36, 1303.51], [2257.55, 1298.12], [2259.36, 1296.25], [2261.62, 1293.91], [2367.98, 1177.0], [2380.01, 1163.06], [2381.87, 1160.89], [2389.28, 1152.28]], "length": 204.02}, {"u": 53437418, "v": 53437417, "oneway": false, "points": [[2252.36, 1303.51], [2244.28, 1309.98], [2242.29, 1311.58], [2170.38, 1369.27]], "length": 105.1}, {"u": 53437418, "v": 53461430, "oneway": false, "points": [[2252.36, 1303.51], [2257.82, 1308.68], [2271.52, 1321.64], [2286.96, 1334.76], [2300.93, 1344.93], [2310.13, 1351.02], [2314.3, 1353.78]], "length": 79.95}, {"u": 53437418, "v": 3208339051, "oneway": false, "points": [[2252.36, 1303.51], [2245.71, 1297.46], [2224.17, 1278.86], [2216.03, 1271.74], [2191.87, 1247.84], [2190.32, 1246.31], [2185.13, 1241.19]], "length": 91.72}, {"u": 53437425, "v": 53437418, "oneway": false, "points": [[2389.28, 1152.28], [2381.87, 1160.89], [2380.01, 1163.06], [2367.98, 1177.0], [2261.62, 1293.91], [2259.36, 1296.25], [2257.55, 1298.12], [2252.36, 1303.51]], "length": 204.02}, {"u": 53437425, "v": 53558145, "oneway": false, "points": [[2389.28, 1152.28], [2430.39, 1193.06], [2433.19, 1195.84]], "length": 61.85}, {"u": 53437425, "v": 3208342164, "oneway": false, "points": [[2389.28, 1152.28], [2385.72, 1149.13], [2349.75, 1117.27], [2328.11, 1098.11], [2322.87, 1093.46]], "length": 88.72}, {"u": 53437707, "v": 53437708, "oneway": false, "points": [[743.69, 1343.84], [749.02, 1348.84], [790.45, 1387.79]], "length": 64.17}, {"u": 53437707, "v": 53578339, "oneway": true, "points": [[743.69, 1343.84], [739.33, 1348.7], [694.26, 1398.82], [685.08, 1404.9], [678.41, 1407.75]], "length": 92.19}, {"u": 53437708, "v": 53433643, "oneway": false, "points": [[790.45, 1387.79], [820.8, 1416.32]], "length": 41.65}, {"u": 53437708, "v": 53580632, "oneway": false, "points": [[790.45, 1387.79], [746.79, 1434.61]], "length": 64.02}, {"u": 53437708, "v": 53437707, "oneway": false, "points": [[790.45, 1387.79], [749.02, 1348.84], [743.69, 1343.84]], "length": 64.17}, {"u": 53437716, "v": 53453164, "oneway": false, "points": [[914.22, 1454.27], [889.81, 1481.2]], "length": 36.34}, {"u": 53437716, "v": 53437718, "oneway": false, "points": [[914.22, 1454.27], [920.78, 1460.2], [1001.34, 1533.17]], "length": 117.53}, {"u": 53437716, "v": 53453152, "oneway": false, "points": [[914.22, 1454.27], [920.29, 1447.26], [937.11, 1428.71], [939.9, 1425.52], [944.95, 1419.99]], "length": 46.04}, {"u": 53437718, "v": 53437720, "oneway": false, "points": [[1001.34, 1533.17], [1019.64, 1549.77], [1053.58, 1582.48], [1058.84, 1587.56]], "length": 79.16}, {"u": 53437718, "v": 53437716, "oneway": false, "points": [[1001.34, 1533.17], [920.78, 1460.2], [914.22, 1454.27]], "length": 117.53}, {"u": 53437718, "v": 53672943, "oneway": false, "points": [[1001.34, 1533.17], [995.23, 1538.57], [810.03, 1702.33], [804.78, 1706.97]], "length": 262.38}, {"u": 53437720, "v": 53437718, "oneway": false, "points": [[1058.84, 1587.56], [1053.58, 1582.48], [1019.64, 1549.77], [1001.34, 1533.17]], "length": 79.16}, {"u": 53437720, "v": 53537015, "oneway": false, "points": [[1058.84, 1587.56], [1017.85, 1624.4], [881.15, 1744.97], [861.11, 1762.31], [854.94, 1767.44]], "length": 271.91}, {"u": 53437720, "v": 1699123264, "oneway": false, "points": [[1058.84, 1587.56], [1077.35, 1570.92], [1089.59, 1559.55], [1103.06, 1544.76], [1142.86, 1500.96], [1144.0, 1499.6], [1149.65, 1493.6]], "length": 130.81}, {"u": 53438623, "v": 53438624, "oneway": false, "points": [[-538.26, -2185.5], [-538.76, -2194.33], [-541.74, -2233.45], [-544.92, -2280.81]], "length": 95.55}, {"u": 53438623, "v": 2634708186, "oneway": false, "points": [[-538.26, -2185.5], [-547.15, -2185.11], [-550.1, -2184.98], [-559.87, -2184.56], [-585.07, -2183.82], [-606.02, -2183.25], [-614.43, -2183.02]], "length": 76.21}, {"u": 53438623, "v": 2634693274, "oneway": false, "points": [[-538.26, -2185.5], [-535.58, -2185.62], [-531.33, -2185.79], [-515.06, -2186.5], [-470.89, -2188.41]], "length": 67.43}, {"u": 53438624, "v": 53642782, "oneway": false, "points": [[-544.92, -2280.81], [-547.68, -2331.68], [-548.22, -2374.09], [-548.25, -2376.25], [-547.05, -2378.26], [-545.22, -2379.95], [-540.45, -2380.59], [-536.31, -2380.53], [-515.91, -2381.12], [-469.25, -2382.67], [-416.93, -2385.82]], "length": 228.81}, {"u": 53438624, "v": 53438623, "oneway": false, "points": [[-544.92, -2280.81], [-541.74, -2233.45], [-538.76, -2194.33], [-538.26, -2185.5]], "length": 95.55}, {"u": 53438624, "v": 2634693276, "oneway": false, "points": [[-544.92, -2280.81], [-536.4, -2281.26], [-517.07, -2282.26], [-471.26, -2284.65], [-422.13, -2287.21], [-405.07, -2288.1]], "length": 140.04}, {"u": 53438915, "v": 53413619, "oneway": false, "points": [[-2691.97, 55.03], [-2694.75, 62.75], [-2696.01, 67.84], [-2697.03, 75.92], [-2697.42, 83.1], [-2695.13, 134.93], [-2694.88, 144.3]], "length": 90.04}, {"u": 53438915, "v": 53486858, "oneway": false, "points": [[-2691.97, 55.03], [-2701.07, 51.88], [-2710.48, 48.83], [-2720.15, 45.34], [-2729.98, 42.44], [-2737.75, 40.78], [-2747.51, 39.84], [-2761.14, 39.97], [-2792.84, 41.69]], "length": 103.18}, {"u": 53438915, "v": 53486814, "oneway": false, "points": [[-2691.97, 55.03], [-2685.52, 40.93], [-2679.63, 29.96], [-2679.27, 29.29], [-2676.27, 23.75], [-2671.08, 16.06], [-2664.4, 9.79], [-2657.38, 5.73], [-2652.82, 3.93], [-2645.37, 2.21], [-2622.96, 0.96], [-2592.85, -1.34], [-2558.59, -3.93], [-2450.35, -7.91], [-2444.37, -8.1], [-2439.39, -8.32]], "length": 280.4}, {"u": 53441253, "v": 3227608154, "oneway": false, "points": [[-638.37, 255.52], [-643.83, 261.53], [-646.22, 264.17], [-659.17, 278.54], [-672.79, 293.65], [-685.46, 307.71], [-691.33, 314.23], [-704.73, 329.1]], "length": 99.08}, {"u": 53441253, "v": 53479821, "oneway": false, "points": [[-638.37, 255.52], [-632.71, 249.19], [-630.98, 247.26], [-600.67, 213.63], [-577.51, 188.2], [-571.25, 181.33]], "length": 100.05}, {"u": 53441253, "v": 5463552488, "oneway": false, "points": [[-638.37, 255.52], [-631.29, 262.09], [-612.89, 278.75], [-592.66, 297.04], [-585.1, 304.16], [-554.4, 332.52], [-553.02, 333.71], [-547.44, 338.48], [-540.85, 344.15]], "length": 131.79}, {"u": 53441253, "v": 53441256, "oneway": false, "points": [[-638.37, 255.52], [-644.37, 249.32], [-665.61, 230.18], [-681.11, 216.2], [-699.55, 199.28], [-706.66, 193.16], [-719.77, 181.37], [-736.84, 165.96], [-781.32, 125.84], [-787.67, 120.12]], "length": 201.57}, {"u": 53441256, "v": 53521446, "oneway": false, "points": [[-787.67, 120.12], [-793.93, 127.07], [-797.99, 131.58], [-847.38, 186.44]], "length": 89.23}, {"u": 53441256, "v": 2714977035, "oneway": false, "points": [[-787.67, 120.12], [-782.5, 114.5], [-780.41, 112.23], [-760.14, 90.17], [-758.07, 87.94], [-746.75, 75.6], [-744.37, 72.95], [-725.2, 52.17], [-719.77, 46.24]], "length": 100.35}, {"u": 53441256, "v": 53441253, "oneway": false, "points": [[-787.67, 120.12], [-781.32, 125.84], [-736.84, 165.96], [-719.77, 181.37], [-706.66, 193.16], [-699.55, 199.28], [-681.11, 216.2], [-665.61, 230.18], [-644.37, 249.32], [-638.37, 255.52]], "length": 201.57}, {"u": 53441256, "v": 1181085486, "oneway": false, "points": [[-787.67, 120.12], [-794.39, 114.06], [-818.87, 91.99], [-855.25, 59.2]], "length": 90.98}, {"u": 53441258, "v": 1181184017, "oneway": false, "points": [[-885.25, 32.15], [-892.34, 39.92], [-893.14, 41.0], [-950.12, 104.89], [-952.78, 107.14], [-956.33, 109.53], [-961.71, 112.71], [-968.47, 114.63]], "length": 118.51}, {"u": 53441258, "v": 1181085486, "oneway": false, "points": [[-885.25, 32.15], [-881.76, 35.29], [-868.83, 46.95], [-855.25, 59.2]], "length": 40.4}, {"u": 53441258, "v": 53441265, "oneway": false, "points": [[-885.25, 32.15], [-893.68, 24.55], [-895.71, 23.13], [-898.79, 20.99], [-904.4, 18.26], [-909.57, 16.68], [-910.19, 16.49], [-916.17, 15.62], [-951.51, 16.7], [-952.47, 16.74], [-967.91, 17.74], [-986.1, 18.77], [-1013.51, 20.93], [-1021.42, 21.05]], "length": 141.33}, {"u": 53441265, "v": 53499287, "oneway": false, "points": [[-1021.42, 21.05], [-1020.82, 30.24], [-1020.76, 31.66], [-1019.74, 55.08], [-1018.46, 84.31], [-1017.78, 99.95], [-1017.24, 112.37], [-1017.2, 113.2], [-1015.74, 146.76], [-1015.47, 152.93], [-1014.9, 166.08], [-1014.74, 169.62]], "length": 148.72}, {"u": 53441265, "v": 13191853166, "oneway": false, "points": [[-1021.42, 21.05], [-1021.77, 12.38], [-1021.91, 8.9], [-1023.17, -22.53], [-1023.31, -26.1], [-1023.34, -26.64]], "length": 47.73}, {"u": 53441265, "v": 53441258, "oneway": false, "points": [[-1021.42, 21.05], [-1013.51, 20.93], [-986.1, 18.77], [-967.91, 17.74], [-952.47, 16.74], [-951.51, 16.7], [-916.17, 15.62], [-910.19, 16.49], [-909.57, 16.68], [-904.4, 18.26], [-898.79, 20.99], [-895.71, 23.13], [-893.68, 24.55], [-885.25, 32.15]], "length": 141.33}, {"u": 53441265, "v": 2859245583, "oneway": false, "points": [[-1021.42, 21.05], [-1030.58, 21.25], [-1057.1, 22.37], [-1092.83, 24.09], [-1132.81, 26.19], [-1140.02, 26.48], [-1174.42, 28.17], [-1183.37, 29.37]], "length": 162.2}, {"u": 53444038, "v": 53332729, "oneway": true, "points": [[-122.59, -292.11], [-117.47, -291.76], [-112.84, -289.09], [-41.09, -225.03], [-31.92, -216.83]], "length": 118.96}, {"u": 53444038, "v": 1186826669, "oneway": false, "points": [[-122.59, -292.11], [-123.4, -306.92], [-124.45, -326.1]], "length": 34.04}, {"u": 53444048, "v": 4173797761, "oneway": false, "points": [[-136.89, -591.11], [-150.46, -603.43], [-187.27, -636.94], [-218.57, -665.4], [-228.04, -674.02], [-243.21, -687.81], [-253.94, -697.57], [-264.46, -707.73]], "length": 172.85}, {"u": 53444048, "v": 1424945190, "oneway": false, "points": [[-136.89, -591.11], [-137.31, -600.09], [-137.56, -605.59], [-137.95, -613.99]], "length": 22.9}, {"u": 53444048, "v": 1186826687, "oneway": true, "points": [[-136.89, -591.11], [-136.13, -571.6], [-133.64, -530.96], [-129.58, -462.99], [-129.88, -456.21], [-130.05, -453.3], [-130.86, -443.18]], "length": 148.19}, {"u": 53444048, "v": 53467506, "oneway": false, "points": [[-136.89, -591.11], [-148.21, -583.33], [-161.18, -569.25], [-184.98, -543.42], [-199.47, -527.68], [-206.31, -520.26]], "length": 99.49}, {"u": 53444545, "v": 1180187704, "oneway": false, "points": [[-1280.24, -2028.2], [-1286.61, -2031.72], [-1321.42, -2051.96], [-1327.23, -2055.17], [-1348.5, -2067.14], [-1355.23, -2070.82]], "length": 86.26}, {"u": 53444545, "v": 12911858894, "oneway": false, "points": [[-1280.24, -2028.2], [-1297.1, -2008.27], [-1317.02, -1977.91], [-1342.43, -1923.39], [-1378.44, -1857.12], [-1383.2, -1848.31], [-1416.21, -1787.92], [-1419.24, -1781.85], [-1424.54, -1767.88], [-1426.69, -1757.48], [-1427.31, -1748.02], [-1427.4, -1733.13]], "length": 333.54}, {"u": 53444545, "v": 53416782, "oneway": false, "points": [[-1280.24, -2028.2], [-1267.91, -2042.0], [-1258.35, -2049.72], [-1248.84, -2056.55], [-1239.94, -2061.59], [-1224.84, -2066.58], [-1207.17, -2069.97], [-1199.51, -2069.97], [-1159.89, -2066.77], [-1096.21, -2057.25], [-1065.98, -2054.78]], "length": 228.75}, {"u": 53444600, "v": 53483354, "oneway": false, "points": [[-2161.21, -961.17], [-2159.72, -914.95]], "length": 46.24}, {"u": 53444600, "v": 53444613, "oneway": false, "points": [[-2161.21, -961.17], [-2167.36, -960.78], [-2171.04, -960.76], [-2173.79, -961.11], [-2176.25, -961.46], [-2177.78, -962.0], [-2179.46, -962.67], [-2181.74, -964.04], [-2318.37, -1080.74], [-2320.72, -1082.74], [-2327.85, -1088.84]], "length": 213.35}, {"u": 53444600, "v": 53483912, "oneway": false, "points": [[-2161.21, -961.17], [-2161.47, -981.44], [-2161.58, -989.55]], "length": 28.38}, {"u": 53444613, "v": 53444622, "oneway": false, "points": [[-2327.85, -1088.84], [-2334.26, -1094.27], [-2336.31, -1096.0], [-2463.12, -1203.43], [-2470.06, -1209.31]], "length": 186.38}, {"u": 53444613, "v": 53444600, "oneway": false, "points": [[-2327.85, -1088.84], [-2320.72, -1082.74], [-2318.37, -1080.74], [-2181.74, -964.04], [-2179.46, -962.67], [-2177.78, -962.0], [-2176.25, -961.46], [-2173.79, -961.11], [-2171.04, -960.76], [-2167.36, -960.78], [-2161.21, -961.17]], "length": 213.35}, {"u": 53444613, "v": 53590699, "oneway": false, "points": [[-2327.85, -1088.84], [-2322.17, -1095.16], [-2317.51, -1100.07], [-2314.05, -1104.49], [-2311.4, -1105.68]], "length": 23.8}, {"u": 53444613, "v": 53473273, "oneway": false, "points": [[-2327.85, -1088.84], [-2333.95, -1081.52], [-2359.21, -1051.19], [-2384.49, -1021.02], [-2390.24, -1014.15]], "length": 97.31}, {"u": 53444622, "v": 53444627, "oneway": false, "points": [[-2470.06, -1209.31], [-2476.67, -1214.96], [-2567.53, -1292.6], [-2569.94, -1294.67], [-2576.79, -1300.53]], "length": 140.4}, {"u": 53444622, "v": 53444613, "oneway": false, "points": [[-2470.06, -1209.31], [-2463.12, -1203.43], [-2336.31, -1096.0], [-2334.26, -1094.27], [-2327.85, -1088.84]], "length": 186.38}, {"u": 53444622, "v": 53692040, "oneway": false, "points": [[-2470.06, -1209.31], [-2463.89, -1216.39], [-2458.74, -1221.76], [-2457.14, -1222.9], [-2455.56, -1223.44], [-2454.35, -1223.7], [-2447.73, -1224.02]], "length": 28.34}, {"u": 53444622, "v": 53454630, "oneway": false, "points": [[-2470.06, -1209.31], [-2475.53, -1202.62], [-2500.24, -1172.29], [-2525.2, -1142.97], [-2531.92, -1135.08]], "length": 96.63}, {"u": 53444627, "v": 53444632, "oneway": false, "points": [[-2576.79, -1300.53], [-2583.7, -1306.4], [-2585.76, -1308.14], [-2669.46, -1379.2], [-2676.11, -1384.84]], "length": 130.28}, {"u": 53444627, "v": 53444622, "oneway": false, "points": [[-2576.79, -1300.53], [-2569.94, -1294.67], [-2567.53, -1292.6], [-2476.67, -1214.96], [-2470.06, -1209.31]], "length": 140.4}, {"u": 53444627, "v": 53621164, "oneway": false, "points": [[-2576.79, -1300.53], [-2570.82, -1307.71], [-2545.56, -1337.49], [-2520.01, -1367.61], [-2514.5, -1374.03]], "length": 96.35}, {"u": 53444627, "v": 53473289, "oneway": false, "points": [[-2576.79, -1300.53], [-2582.51, -1293.77], [-2608.26, -1263.35], [-2632.75, -1234.44], [-2640.88, -1224.85]], "length": 99.17}, {"u": 53444632, "v": 53444642, "oneway": false, "points": [[-2676.11, -1384.84], [-2682.78, -1390.51], [-2768.93, -1463.69], [-2775.24, -1469.05]], "length": 130.06}, {"u": 53444632, "v": 53444627, "oneway": false, "points": [[-2676.11, -1384.84], [-2669.46, -1379.2], [-2585.76, -1308.14], [-2583.7, -1306.4], [-2576.79, -1300.53]], "length": 130.28}, {"u": 53444632, "v": 53621168, "oneway": false, "points": [[-2676.11, -1384.84], [-2670.23, -1391.99], [-2643.96, -1422.29], [-2619.38, -1451.85], [-2613.72, -1458.66]], "length": 96.66}, {"u": 53444632, "v": 53473302, "oneway": false, "points": [[-2676.11, -1384.84], [-2681.67, -1377.92], [-2706.83, -1346.69], [-2731.44, -1317.09], [-2738.68, -1308.39]], "length": 98.79}, {"u": 53444642, "v": 53444645, "oneway": false, "points": [[-2775.24, -1469.05], [-2780.87, -1474.45], [-2853.09, -1537.05], [-2865.9, -1547.7], [-2872.82, -1553.43]], "length": 129.02}, {"u": 53444642, "v": 53444632, "oneway": false, "points": [[-2775.24, -1469.05], [-2768.93, -1463.69], [-2682.78, -1390.51], [-2676.11, -1384.84]], "length": 130.06}, {"u": 53444642, "v": 2635256574, "oneway": false, "points": [[-2775.24, -1469.05], [-2769.58, -1475.19], [-2743.3, -1505.65], [-2717.7, -1535.18], [-2712.3, -1542.08]], "length": 96.42}, {"u": 53444642, "v": 53473312, "oneway": false, "points": [[-2775.24, -1469.05], [-2781.41, -1461.96], [-2807.63, -1431.85], [-2831.92, -1402.11], [-2838.73, -1393.78]], "length": 98.48}, {"u": 53444645, "v": 2637056004, "oneway": false, "points": [[-2872.82, -1553.43], [-2880.27, -1559.61], [-2883.57, -1562.35], [-2905.28, -1580.37], [-2927.22, -1598.58], [-2951.11, -1618.41], [-2966.14, -1630.89], [-2972.37, -1636.06]], "length": 129.38}, {"u": 53444645, "v": 53444642, "oneway": false, "points": [[-2872.82, -1553.43], [-2865.9, -1547.7], [-2853.09, -1537.05], [-2780.87, -1474.45], [-2775.24, -1469.05]], "length": 129.02}, {"u": 53444645, "v": 2635256569, "oneway": false, "points": [[-2872.82, -1553.43], [-2867.72, -1559.47], [-2842.4, -1589.43], [-2816.91, -1619.6], [-2810.9, -1626.71]], "length": 95.94}, {"u": 53444645, "v": 53473321, "oneway": false, "points": [[-2872.82, -1553.43], [-2879.49, -1545.53], [-2905.56, -1514.68], [-2930.6, -1485.04], [-2936.88, -1477.62]], "length": 99.26}, {"u": 53445464, "v": 53445467, "oneway": false, "points": [[1078.09, 375.04], [1085.46, 366.92], [1121.44, 327.35], [1138.8, 308.25], [1140.56, 306.29], [1147.47, 298.73]], "length": 103.14}, {"u": 53445464, "v": 3235649725, "oneway": false, "points": [[1078.09, 375.04], [1084.81, 380.98], [1107.03, 400.71], [1145.16, 434.54], [1158.05, 445.99], [1190.92, 475.15], [1197.26, 480.79], [1213.65, 495.33], [1221.25, 501.84], [1229.07, 508.53]], "length": 201.53}, {"u": 53445464, "v": 53432331, "oneway": false, "points": [[1078.09, 375.04], [1069.93, 367.57], [1055.99, 354.54], [1047.61, 346.77], [1039.73, 339.44], [1024.2, 325.03], [998.28, 300.97], [991.91, 295.05], [989.98, 293.26], [935.91, 243.53], [929.4, 237.03]], "length": 202.88}, {"u": 53445464, "v": 53407975, "oneway": false, "points": [[1078.09, 375.04], [1072.28, 381.41], [1049.58, 406.4], [1038.27, 418.84], [1010.42, 449.48], [998.57, 462.51], [995.03, 466.41], [974.71, 488.76], [949.74, 516.23], [946.46, 519.84], [937.2, 529.98], [935.97, 531.38], [907.53, 562.67], [882.8, 589.87], [875.11, 598.33]], "length": 301.76}, {"u": 53445467, "v": 3235650820, "oneway": false, "points": [[1147.47, 298.73], [1153.84, 291.71], [1154.51, 290.97], [1206.59, 233.69], [1208.24, 231.88], [1216.58, 222.7]], "length": 102.75}, {"u": 53445467, "v": 53445464, "oneway": false, "points": [[1147.47, 298.73], [1140.56, 306.29], [1138.8, 308.25], [1121.44, 327.35], [1085.46, 366.92], [1078.09, 375.04]], "length": 103.14}, {"u": 53445467, "v": 53461456, "oneway": false, "points": [[1147.47, 298.73], [1140.47, 292.36], [1020.3, 182.87]], "length": 172.03}, {"u": 53445467, "v": 53461463, "oneway": false, "points": [[1147.47, 298.73], [1153.33, 304.07], [1289.2, 427.84], [1296.68, 434.68]], "length": 201.86}, {"u": 53447046, "v": 449956571, "oneway": false, "points": [[2647.22, 2297.41], [2639.41, 2304.95], [2636.34, 2307.9], [2619.18, 2324.47], [2594.11, 2348.65], [2587.48, 2355.11]], "length": 83.06}, {"u": 53447046, "v": 2948595023, "oneway": true, "points": [[2647.22, 2297.41], [2642.11, 2291.77], [2637.99, 2287.22], [2629.36, 2275.92], [2623.46, 2265.71], [2621.09, 2261.63], [2614.48, 2250.19]], "length": 57.69}, {"u": 53447046, "v": 11205598924, "oneway": false, "points": [[2647.22, 2297.41], [2652.2, 2304.95], [2668.52, 2324.24], [2681.72, 2338.73]], "length": 53.9}, {"u": 53447075, "v": 2634693266, "oneway": false, "points": [[86.09, -2057.01], [96.27, -2057.46]], "length": 10.18}, {"u": 53447075, "v": 53447076, "oneway": false, "points": [[86.09, -2057.01], [85.87, -2064.15], [80.97, -2202.5], [80.58, -2213.68]], "length": 156.77}, {"u": 53447075, "v": 2634693264, "oneway": false, "points": [[86.09, -2057.01], [82.99, -2056.87], [74.32, -2056.49]], "length": 11.78}, {"u": 53447076, "v": 53447075, "oneway": false, "points": [[80.58, -2213.68], [80.97, -2202.5], [85.87, -2064.15], [86.09, -2057.01]], "length": 156.77}, {"u": 53447076, "v": 53465696, "oneway": false, "points": [[80.58, -2213.68], [95.01, -2221.11], [100.14, -2228.35], [103.0, -2233.66]], "length": 31.13}, {"u": 53447076, "v": 3937040992, "oneway": false, "points": [[80.58, -2213.68], [71.21, -2211.72], [63.71, -2210.87], [48.32, -2210.03]], "length": 32.54}, {"u": 53447618, "v": 1179796036, "oneway": false, "points": [[-1578.01, -1960.1], [-1570.65, -1956.15], [-1515.35, -1926.49], [-1511.86, -1924.6], [-1499.07, -1917.67], [-1476.2, -1904.83], [-1473.91, -1903.54], [-1467.72, -1900.06]], "length": 125.58}, {"u": 53447618, "v": 5497859257, "oneway": false, "points": [[-1578.01, -1960.1], [-1573.36, -1968.62], [-1572.27, -1970.62], [-1498.6, -2105.76], [-1476.9, -2142.17], [-1468.14, -2149.31], [-1458.72, -2153.58], [-1447.52, -2154.97], [-1429.49, -2157.2], [-1414.67, -2158.09], [-1394.81, -2158.78], [-1390.15, -2158.95], [-1379.91, -2159.31]], "length": 309.02}, {"u": 53447618, "v": 53447620, "oneway": false, "points": [[-1578.01, -1960.1], [-1586.49, -1964.65], [-1621.43, -1983.35], [-1654.7, -2002.15], [-1661.44, -2005.96]], "length": 95.21}, {"u": 53447618, "v": 2573847767, "oneway": false, "points": [[-1578.01, -1960.1], [-1581.69, -1953.36], [-1582.48, -1951.9], [-1612.6, -1896.8], [-1614.6, -1893.15]], "length": 76.3}, {"u": 53447620, "v": 53612039, "oneway": false, "points": [[-1661.44, -2005.96], [-1656.85, -2014.29], [-1617.43, -2085.91], [-1589.72, -2137.16], [-1557.27, -2193.56], [-1534.8, -2234.32], [-1526.77, -2245.59], [-1514.19, -2257.48]], "length": 292.29}, {"u": 53447620, "v": 2573847776, "oneway": false, "points": [[-1661.44, -2005.96], [-1665.54, -1998.33], [-1666.66, -1996.32], [-1694.63, -1945.78], [-1695.89, -1943.51], [-1698.69, -1938.1]], "length": 77.41}, {"u": 53447620, "v": 1153239288, "oneway": false, "points": [[-1661.44, -2005.96], [-1668.23, -2009.65], [-1754.13, -2056.35], [-1757.75, -2058.08], [-1764.92, -2061.52]], "length": 117.47}, {"u": 53447620, "v": 53447618, "oneway": false, "points": [[-1661.44, -2005.96], [-1654.7, -2002.15], [-1621.43, -1983.35], [-1586.49, -1964.65], [-1578.01, -1960.1]], "length": 95.21}, {"u": 53453124, "v": 53536993, "oneway": false, "points": [[1147.0, 1196.69], [1154.22, 1203.3], [1289.64, 1326.79], [1296.95, 1333.45]], "length": 202.95}, {"u": 53453124, "v": 349378518, "oneway": false, "points": [[1147.0, 1196.69], [1141.09, 1191.31], [1005.51, 1068.07], [998.9, 1062.16]], "length": 200.08}, {"u": 53453124, "v": 53453137, "oneway": false, "points": [[1147.0, 1196.69], [1140.41, 1203.98], [1139.0, 1205.52], [1086.29, 1263.67], [1080.08, 1270.54]], "length": 99.66}, {"u": 53453124, "v": 53430027, "oneway": false, "points": [[1147.0, 1196.69], [1152.69, 1190.45], [1154.79, 1188.14], [1176.64, 1164.16], [1187.89, 1151.79]], "length": 60.74}, {"u": 53453137, "v": 3859915626, "oneway": false, "points": [[1080.08, 1270.54], [1087.46, 1277.35], [1089.35, 1279.1], [1135.76, 1321.94], [1149.48, 1334.45], [1154.36, 1338.91], [1164.81, 1348.45], [1180.02, 1362.34], [1203.81, 1384.06], [1220.06, 1398.88], [1222.1, 1400.74], [1226.0, 1404.36]], "length": 197.99}, {"u": 53453137, "v": 1699123250, "oneway": false, "points": [[1080.08, 1270.54], [1073.97, 1264.99], [1071.95, 1263.14], [941.78, 1144.82], [938.77, 1142.17], [931.94, 1135.89]], "length": 200.19}, {"u": 53453137, "v": 53453147, "oneway": false, "points": [[1080.08, 1270.54], [1074.6, 1276.8], [1020.96, 1338.06], [1018.98, 1340.27], [1013.14, 1346.56]], "length": 101.29}, {"u": 53453137, "v": 53453124, "oneway": false, "points": [[1080.08, 1270.54], [1086.29, 1263.67], [1139.0, 1205.52], [1140.41, 1203.98], [1147.0, 1196.69]], "length": 99.66}, {"u": 53453147, "v": 53453152, "oneway": false, "points": [[1013.14, 1346.56], [1009.52, 1350.6], [1006.91, 1353.43], [1004.98, 1355.53], [970.45, 1391.78], [952.9, 1411.21], [951.24, 1413.04], [944.95, 1419.99]], "length": 100.23}, {"u": 53453147, "v": 53536998, "oneway": true, "points": [[1013.14, 1346.56], [1019.14, 1352.06], [1060.43, 1389.98], [1151.92, 1473.95], [1154.15, 1475.86], [1161.62, 1481.82]], "length": 200.88}, {"u": 53453147, "v": 53453137, "oneway": false, "points": [[1013.14, 1346.56], [1018.98, 1340.27], [1020.96, 1338.06], [1074.6, 1276.8], [1080.08, 1270.54]], "length": 101.29}, {"u": 53453152, "v": 53437716, "oneway": false, "points": [[944.95, 1419.99], [939.9, 1425.52], [937.11, 1428.71], [920.29, 1447.26], [914.22, 1454.27]], "length": 46.04}, {"u": 53453152, "v": 53453147, "oneway": false, "points": [[944.95, 1419.99], [951.24, 1413.04], [952.9, 1411.21], [970.45, 1391.78], [1004.98, 1355.53], [1006.91, 1353.43], [1009.52, 1350.6], [1013.14, 1346.56]], "length": 100.23}, {"u": 53453152, "v": 1699123277, "oneway": true, "points": [[944.95, 1419.99], [938.5, 1414.21], [801.79, 1291.76], [795.87, 1286.46]], "length": 200.14}, {"u": 53453164, "v": 53433662, "oneway": false, "points": [[889.81, 1481.2], [825.21, 1552.94]], "length": 96.54}, {"u": 53453164, "v": 53437716, "oneway": false, "points": [[889.81, 1481.2], [914.22, 1454.27]], "length": 36.34}, {"u": 53453164, "v": 53433643, "oneway": false, "points": [[889.81, 1481.2], [883.45, 1475.22], [820.8, 1416.32]], "length": 94.72}, {"u": 53453173, "v": 53433662, "oneway": false, "points": [[749.04, 1630.45], [753.93, 1628.53], [755.53, 1627.68], [758.39, 1626.14], [762.37, 1622.86], [793.29, 1587.74], [819.28, 1559.4], [825.21, 1552.94]], "length": 109.49}, {"u": 53453173, "v": 53578339, "oneway": false, "points": [[749.04, 1630.45], [746.5, 1622.3], [726.02, 1556.74], [694.64, 1458.27], [678.41, 1407.75]], "length": 233.64}, {"u": 53453173, "v": 53672943, "oneway": false, "points": [[749.04, 1630.45], [751.06, 1637.06], [752.49, 1641.74], [754.43, 1646.93], [756.84, 1652.57], [759.46, 1656.05], [798.88, 1700.34], [804.78, 1706.97]], "length": 96.0}, {"u": 53454630, "v": 53444622, "oneway": false, "points": [[-2531.92, -1135.08], [-2525.2, -1142.97], [-2500.24, -1172.29], [-2475.53, -1202.62], [-2470.06, -1209.31]], "length": 96.63}, {"u": 53454630, "v": 4874980024, "oneway": false, "points": [[-2531.92, -1135.08], [-2537.62, -1128.53], [-2563.35, -1098.63], [-2586.78, -1071.12], [-2589.28, -1068.17], [-2594.59, -1061.75]], "length": 96.47}, {"u": 53454630, "v": 53473289, "oneway": false, "points": [[-2531.92, -1135.08], [-2539.64, -1141.32], [-2631.78, -1217.35], [-2634.43, -1219.53], [-2640.88, -1224.85]], "length": 141.17}, {"u": 53454630, "v": 53473273, "oneway": false, "points": [[-2531.92, -1135.08], [-2525.04, -1129.03], [-2402.46, -1024.57], [-2397.82, -1020.61], [-2390.24, -1014.15]], "length": 186.27}, {"u": 53454656, "v": 53621162, "oneway": false, "points": [[-2449.87, -1320.36], [-2478.3, -1344.03]], "length": 36.99}, {"u": 53454656, "v": 53454658, "oneway": false, "points": [[-2449.87, -1320.36], [-2450.19, -1338.4], [-2450.31, -1344.85]], "length": 24.49}, {"u": 53454656, "v": 53692040, "oneway": false, "points": [[-2449.87, -1320.36], [-2448.49, -1284.73], [-2447.77, -1257.03], [-2447.74, -1237.11], [-2447.73, -1224.02]], "length": 96.37}, {"u": 53454658, "v": 53621162, "oneway": false, "points": [[-2450.31, -1344.85], [-2478.3, -1344.03]], "length": 28.0}, {"u": 53454658, "v": 3812685626, "oneway": false, "points": [[-2450.31, -1344.85], [-2450.35, -1355.23], [-2450.48, -1358.71], [-2452.14, -1405.08], [-2453.26, -1423.57], [-2455.5, -1425.87], [-2457.74, -1428.18], [-2464.02, -1434.65]], "length": 94.23}, {"u": 53454658, "v": 53454656, "oneway": false, "points": [[-2450.31, -1344.85], [-2450.19, -1338.4], [-2449.87, -1320.36]], "length": 24.49}, {"u": 53454658, "v": 2637157420, "oneway": false, "points": [[-2450.31, -1344.85], [-2441.13, -1345.13], [-2382.63, -1346.72]], "length": 67.71}, {"u": 53455651, "v": 53455653, "oneway": false, "points": [[301.7, 980.93], [346.73, 1021.65]], "length": 60.72}, {"u": 53455653, "v": 53455651, "oneway": false, "points": [[346.73, 1021.65], [301.7, 980.93]], "length": 60.72}, {"u": 53455653, "v": 53455657, "oneway": false, "points": [[346.73, 1021.65], [387.8, 1058.79], [419.3, 1087.28], [425.4, 1092.81]], "length": 106.08}, {"u": 53455653, "v": 53631422, "oneway": true, "points": [[346.73, 1021.65], [349.07, 1018.98], [408.13, 951.41], [410.47, 948.73], [416.78, 941.52]], "length": 106.43}, {"u": 53455657, "v": 53672961, "oneway": false, "points": [[425.4, 1092.81], [391.9, 1129.93]], "length": 50.0}, {"u": 53455657, "v": 53455653, "oneway": false, "points": [[425.4, 1092.81], [419.3, 1087.28], [387.8, 1058.79], [346.73, 1021.65]], "length": 106.08}, {"u": 53455657, "v": 1699123266, "oneway": false, "points": [[425.4, 1092.81], [490.66, 1020.52], [495.45, 1015.22]], "length": 104.53}, {"u": 53456047, "v": 53456049, "oneway": true, "points": [[-2189.83, -213.58], [-2190.13, -223.08], [-2190.22, -227.22], [-2190.52, -241.62], [-2190.55, -245.21], [-2190.79, -255.09]], "length": 41.52}, {"u": 53456047, "v": 53589716, "oneway": true, "points": [[-2189.83, -213.58], [-2210.63, -212.27], [-2225.95, -210.67], [-2236.52, -208.79]], "length": 46.97}, {"u": 53456049, "v": 53596818, "oneway": true, "points": [[-2190.79, -255.09], [-2157.61, -271.14], [-2154.23, -272.79], [-2142.99, -278.4]], "length": 53.19}, {"u": 53456081, "v": 1425250001, "oneway": false, "points": [[462.87, -117.11], [438.64, -90.78], [437.71, -89.77], [433.04, -84.69]], "length": 44.06}, {"u": 53461150, "v": 316302550, "oneway": false, "points": [[415.43, 803.84], [421.4, 797.3], [422.53, 796.06], [476.95, 736.4], [484.82, 727.76]], "length": 102.97}, {"u": 53461150, "v": 1699123271, "oneway": true, "points": [[415.43, 803.84], [422.06, 810.2], [470.98, 856.41], [474.03, 859.29], [488.57, 872.79], [489.37, 873.53], [496.37, 879.83], [526.03, 905.57], [535.0, 913.37], [557.44, 933.23], [564.46, 939.47]], "length": 201.54}, {"u": 53461150, "v": 53461154, "oneway": false, "points": [[415.43, 803.84], [410.45, 809.31], [409.32, 810.54], [406.42, 813.73], [366.92, 857.03], [354.23, 870.95], [353.44, 871.81], [347.81, 877.97]], "length": 100.34}, {"u": 53461154, "v": 316292008, "oneway": true, "points": [[347.81, 877.97], [341.49, 872.1], [204.87, 749.45], [198.24, 743.19]], "length": 201.35}, {"u": 53461154, "v": 2705148524, "oneway": false, "points": [[347.81, 877.97], [341.42, 884.98], [339.11, 887.52], [280.48, 951.8]], "length": 99.92}, {"u": 53461154, "v": 53461150, "oneway": false, "points": [[347.81, 877.97], [353.44, 871.81], [354.23, 870.95], [366.92, 857.03], [406.42, 813.73], [409.32, 810.54], [410.45, 809.31], [415.43, 803.84]], "length": 100.34}, {"u": 53461430, "v": 53461432, "oneway": false, "points": [[2314.3, 1353.78], [2321.21, 1358.5], [2449.25, 1445.8], [2487.56, 1471.43], [2493.25, 1475.24]], "length": 216.28}, {"u": 53461430, "v": 53437418, "oneway": false, "points": [[2314.3, 1353.78], [2310.13, 1351.02], [2300.93, 1344.93], [2286.96, 1334.76], [2271.52, 1321.64], [2257.82, 1308.68], [2252.36, 1303.51]], "length": 79.95}, {"u": 53461430, "v": 53628825, "oneway": false, "points": [[2314.3, 1353.78], [2320.01, 1347.65], [2322.17, 1345.33], [2371.77, 1292.14], [2377.4, 1286.1]], "length": 92.54}, {"u": 53461430, "v": 53537030, "oneway": false, "points": [[2314.3, 1353.78], [2309.3, 1361.69], [2307.96, 1363.79], [2297.76, 1379.92], [2265.19, 1427.2], [2262.15, 1431.6]], "length": 93.69}, {"u": 53461432, "v": 53461443, "oneway": false, "points": [[2493.25, 1475.24], [2498.45, 1479.39], [2507.5, 1486.62], [2542.45, 1509.87], [2563.76, 1521.56], [2566.52, 1523.08], [2572.99, 1525.79], [2579.46, 1528.5], [2586.61, 1529.41], [2587.69, 1529.55], [2595.98, 1530.59], [2620.06, 1530.96], [2629.39, 1531.31]], "length": 151.78}, {"u": 53461432, "v": 53461430, "oneway": false, "points": [[2493.25, 1475.24], [2487.56, 1471.43], [2449.25, 1445.8], [2321.21, 1358.5], [2314.3, 1353.78]], "length": 216.28}, {"u": 53461432, "v": 53589760, "oneway": false, "points": [[2493.25, 1475.24], [2497.41, 1469.1], [2498.79, 1467.07], [2521.41, 1433.66], [2529.09, 1425.77]], "length": 61.22}, {"u": 53461432, "v": 53537040, "oneway": false, "points": [[2493.25, 1475.24], [2486.69, 1484.27], [2485.92, 1485.35], [2440.87, 1547.5], [2437.42, 1552.27]], "length": 95.14}, {"u": 53461443, "v": 53461432, "oneway": false, "points": [[2629.39, 1531.31], [2620.06, 1530.96], [2595.98, 1530.59], [2587.69, 1529.55], [2586.61, 1529.41], [2579.46, 1528.5], [2572.99, 1525.79], [2566.52, 1523.08], [2563.76, 1521.56], [2542.45, 1509.87], [2507.5, 1486.62], [2498.45, 1479.39], [2493.25, 1475.24]], "length": 151.78}, {"u": 53461443, "v": 53596324, "oneway": false, "points": [[2629.39, 1531.31], [2638.08, 1531.56], [2651.79, 1531.94], [2719.0, 1534.48]], "length": 89.67}, {"u": 53461443, "v": 53496307, "oneway": false, "points": [[2629.39, 1531.31], [2629.89, 1539.56], [2630.74, 1553.87], [2631.34, 1564.01], [2633.81, 1605.44], [2635.71, 1637.51]], "length": 106.39}, {"u": 53461443, "v": 53498447, "oneway": false, "points": [[2629.39, 1531.31], [2629.07, 1523.52], [2627.62, 1488.25], [2624.79, 1448.54]], "length": 82.91}, {"u": 53461447, "v": 53461450, "oneway": false, "points": [[839.29, 126.92], [876.88, 136.07], [895.53, 141.03], [913.04, 145.68], [936.98, 152.07], [957.75, 157.61], [983.52, 164.47], [994.48, 167.39]], "length": 160.39}, {"u": 53461450, "v": 53461447, "oneway": false, "points": [[994.48, 167.39], [983.52, 164.47], [957.75, 157.61], [936.98, 152.07], [913.04, 145.68], [895.53, 141.03], [876.88, 136.07], [839.29, 126.92]], "length": 160.39}, {"u": 53461450, "v": 53461456, "oneway": false, "points": [[994.48, 167.39], [1002.88, 169.52], [1006.67, 172.41], [1014.09, 177.8], [1020.3, 182.87]], "length": 30.62}, {"u": 53461450, "v": 2707919647, "oneway": false, "points": [[994.48, 167.39], [1002.31, 160.19], [1010.91, 145.82], [1011.59, 144.55], [1015.13, 138.02]], "length": 36.25}, {"u": 53461450, "v": 53432331, "oneway": false, "points": [[994.48, 167.39], [987.61, 174.74], [952.79, 212.01], [936.85, 229.07], [935.61, 230.38], [929.4, 237.03]], "length": 95.32}, {"u": 53461456, "v": 53461450, "oneway": false, "points": [[1020.3, 182.87], [1014.09, 177.8], [1006.67, 172.41], [1002.88, 169.52], [994.48, 167.39]], "length": 30.62}, {"u": 53461456, "v": 53445467, "oneway": false, "points": [[1020.3, 182.87], [1140.47, 292.36], [1147.47, 298.73]], "length": 172.03}, {"u": 53461463, "v": 53461467, "oneway": false, "points": [[1296.68, 434.68], [1302.8, 440.52], [1333.64, 467.93], [1420.14, 547.84], [1437.42, 564.25], [1443.78, 569.59]], "length": 199.62}, {"u": 53461463, "v": 53445467, "oneway": false, "points": [[1296.68, 434.68], [1289.2, 427.84], [1153.33, 304.07], [1147.47, 298.73]], "length": 201.86}, {"u": 53461463, "v": 53667261, "oneway": true, "points": [[1296.68, 434.68], [1303.06, 428.05], [1316.12, 415.75], [1327.93, 401.92], [1341.52, 382.45], [1354.35, 367.52], [1356.18, 365.39], [1362.27, 358.28]], "length": 100.92}, {"u": 53461463, "v": 3235649725, "oneway": false, "points": [[1296.68, 434.68], [1289.51, 442.52], [1288.01, 444.16], [1254.31, 480.95], [1236.48, 500.44], [1234.75, 502.32], [1229.07, 508.53]], "length": 100.13}, {"u": 53461467, "v": 53461463, "oneway": false, "points": [[1443.78, 569.59], [1437.42, 564.25], [1420.14, 547.84], [1333.64, 467.93], [1302.8, 440.52], [1296.68, 434.68]], "length": 199.62}, {"u": 53461467, "v": 53461474, "oneway": false, "points": [[1443.78, 569.59], [1450.68, 575.72], [1474.28, 596.65], [1488.77, 609.5], [1505.44, 624.3], [1587.31, 699.08], [1593.49, 704.54]], "length": 201.56}, {"u": 53461467, "v": 316305099, "oneway": false, "points": [[1443.78, 569.59], [1451.16, 561.5], [1506.09, 500.71], [1512.37, 493.76]], "length": 102.25}, {"u": 53461467, "v": 53432339, "oneway": false, "points": [[1443.78, 569.59], [1437.39, 576.68], [1411.27, 605.65], [1410.38, 606.63], [1402.97, 614.84], [1402.74, 615.09], [1383.5, 636.39], [1377.36, 643.19]], "length": 99.14}, {"u": 53461474, "v": 2713353784, "oneway": false, "points": [[1593.49, 704.54], [1600.91, 696.44], [1630.92, 662.8], [1655.46, 637.3], [1662.26, 630.24]], "length": 101.26}, {"u": 53461474, "v": 2925570317, "oneway": false, "points": [[1593.49, 704.54], [1587.48, 711.88], [1532.22, 773.36], [1526.39, 779.86]], "length": 100.88}, {"u": 53461474, "v": 53461467, "oneway": false, "points": [[1593.49, 704.54], [1587.31, 699.08], [1505.44, 624.3], [1488.77, 609.5], [1474.28, 596.65], [1450.68, 575.72], [1443.78, 569.59]], "length": 201.56}, {"u": 53461474, "v": 53461478, "oneway": false, "points": [[1593.49, 704.54], [1600.54, 711.15], [1666.01, 767.45], [1736.58, 833.46], [1742.8, 839.27]], "length": 201.15}, {"u": 53461478, "v": 53432346, "oneway": false, "points": [[1742.8, 839.27], [1736.24, 846.7], [1684.59, 905.14], [1681.43, 908.36], [1675.88, 914.05]], "length": 100.37}, {"u": 53461478, "v": 53571775, "oneway": false, "points": [[1742.8, 839.27], [1749.25, 832.15], [1803.09, 773.87], [1804.2, 772.74], [1811.47, 765.33]], "length": 100.91}, {"u": 53461478, "v": 53461474, "oneway": false, "points": [[1742.8, 839.27], [1736.58, 833.46], [1666.01, 767.45], [1600.54, 711.15], [1593.49, 704.54]], "length": 201.15}, {"u": 53461478, "v": 53461491, "oneway": false, "points": [[1742.8, 839.27], [1750.21, 845.98], [1886.46, 969.42], [1892.58, 974.97]], "length": 202.11}, {"u": 53461491, "v": 53560789, "oneway": false, "points": [[1892.58, 974.97], [1898.08, 968.9], [1919.15, 945.89], [1953.57, 908.0], [1959.95, 900.98]], "length": 100.06}, {"u": 53461491, "v": 53432349, "oneway": false, "points": [[1892.58, 974.97], [1885.97, 982.29], [1849.21, 1022.97], [1832.64, 1041.31], [1830.61, 1043.55], [1824.88, 1049.9]], "length": 100.99}, {"u": 53461491, "v": 53461499, "oneway": false, "points": [[1892.58, 974.97], [1898.82, 980.64], [1915.38, 996.68], [1986.09, 1061.02], [1995.42, 1069.52], [2025.1, 1096.6], [2040.6, 1110.73]], "length": 200.86}, {"u": 53461491, "v": 53461478, "oneway": false, "points": [[1892.58, 974.97], [1886.46, 969.42], [1750.21, 845.98], [1742.8, 839.27]], "length": 202.11}, {"u": 53461499, "v": 53432353, "oneway": false, "points": [[2040.6, 1110.73], [2034.43, 1117.28], [1997.17, 1156.86], [1981.27, 1176.64], [1975.32, 1183.34], [1961.33, 1199.08], [1955.53, 1205.6]], "length": 127.48}, {"u": 53461499, "v": 53461491, "oneway": false, "points": [[2040.6, 1110.73], [2025.1, 1096.6], [1995.42, 1069.52], [1986.09, 1061.02], [1915.38, 996.68], [1898.82, 980.64], [1892.58, 974.97]], "length": 200.86}, {"u": 53461499, "v": 53461500, "oneway": false, "points": [[2040.6, 1110.73], [2047.8, 1116.81], [2091.28, 1154.72]], "length": 67.11}, {"u": 53461500, "v": 53432356, "oneway": true, "points": [[2091.28, 1154.72], [2084.65, 1162.03], [2058.18, 1192.59], [2054.26, 1196.97], [2050.54, 1200.35], [2044.84, 1205.08], [2029.53, 1217.57], [2014.23, 1230.11], [2000.17, 1241.19], [1997.62, 1243.36], [1991.03, 1248.39]], "length": 137.69}, {"u": 53461500, "v": 53461499, "oneway": false, "points": [[2091.28, 1154.72], [2047.8, 1116.81], [2040.6, 1110.73]], "length": 67.11}, {"u": 53461500, "v": 53461503, "oneway": false, "points": [[2091.28, 1154.72], [2124.27, 1185.29], [2129.23, 1189.66]], "length": 51.59}, {"u": 53461503, "v": 2707919868, "oneway": false, "points": [[2129.23, 1189.66], [2137.86, 1181.84], [2193.11, 1131.67], [2203.58, 1121.49]], "length": 100.88}, {"u": 53461503, "v": 2948601586, "oneway": false, "points": [[2129.23, 1189.66], [2122.04, 1196.47], [2063.23, 1252.14], [2060.36, 1254.73], [2031.93, 1280.39], [2030.79, 1281.45], [2024.07, 1287.73]], "length": 143.8}, {"u": 53461503, "v": 53461500, "oneway": false, "points": [[2129.23, 1189.66], [2124.27, 1185.29], [2091.28, 1154.72]], "length": 51.59}, {"u": 53461749, "v": 53607075, "oneway": false, "points": [[-1901.82, -224.99], [-1898.88, -230.35], [-1894.63, -235.73], [-1891.81, -238.8], [-1888.28, -243.12], [-1885.92, -246.35], [-1883.96, -249.7], [-1881.44, -255.12], [-1878.96, -262.4], [-1877.41, -269.55], [-1876.56, -282.4], [-1876.72, -297.57], [-1877.77, -342.68], [-1877.86, -346.46], [-1878.18, -356.0]], "length": 138.08}, {"u": 53461749, "v": 1345424871, "oneway": true, "points": [[-1901.82, -224.99], [-1920.67, -224.26], [-1964.16, -222.43], [-1966.74, -222.32], [-1999.94, -220.96], [-2003.12, -220.83], [-2006.99, -220.72]], "length": 105.27}, {"u": 53461749, "v": 37924361, "oneway": false, "points": [[-1901.82, -224.99], [-1903.53, -220.84], [-1907.69, -211.19], [-1908.22, -209.12], [-1908.49, -208.38], [-1911.49, -199.44], [-1912.29, -194.08], [-1912.88, -188.88], [-1913.14, -183.68], [-1911.47, -127.04], [-1911.41, -125.65], [-1911.15, -116.25], [-1910.1, -80.58], [-1909.2, -49.81], [-1909.11, -47.08], [-1908.63, -30.5]], "length": 196.46}, {"u": 53461758, "v": 53456047, "oneway": true, "points": [[-2140.56, -215.17], [-2189.83, -213.58]], "length": 49.3}, {"u": 53461758, "v": 53596818, "oneway": false, "points": [[-2140.56, -215.17], [-2140.93, -224.64], [-2141.09, -228.87], [-2142.47, -264.91], [-2142.63, -269.27], [-2142.99, -278.4]], "length": 63.28}, {"u": 53461764, "v": 452866506, "oneway": true, "points": [[-2259.7, -205.35], [-2299.48, -205.79], [-2304.89, -205.85], [-2319.65, -204.86], [-2332.92, -203.95], [-2353.0, -201.76], [-2368.17, -199.97], [-2379.02, -198.65], [-2389.18, -197.01], [-2401.56, -194.46], [-2409.95, -191.85], [-2418.94, -188.82], [-2430.79, -184.06], [-2436.16, -182.04], [-2443.4, -180.46], [-2449.24, -180.24], [-2456.69, -181.18], [-2465.13, -183.8]], "length": 209.01}, {"u": 53461764, "v": 6577823481, "oneway": true, "points": [[-2259.7, -205.35], [-2299.2, -200.78], [-2304.62, -200.17], [-2307.22, -199.94]], "length": 47.83}, {"u": 53461796, "v": 53456049, "oneway": true, "points": [[-2370.27, -212.41], [-2324.0, -216.12], [-2305.47, -217.6], [-2271.62, -220.86], [-2256.54, -223.74], [-2251.54, -225.6], [-2244.53, -228.2], [-2232.46, -234.44], [-2190.79, -255.09]], "length": 187.27}, {"u": 53461816, "v": 53489932, "oneway": false, "points": [[-2940.8, -219.11], [-2942.33, -210.53], [-2942.72, -208.35], [-2949.04, -172.88]], "length": 46.96}, {"u": 53461816, "v": 1180005830, "oneway": false, "points": [[-2940.8, -219.11], [-2876.07, -209.08], [-2867.63, -207.78], [-2859.22, -206.48]], "length": 82.55}, {"u": 53461816, "v": 53461818, "oneway": false, "points": [[-2940.8, -219.11], [-2968.89, -223.46], [-2976.98, -224.71], [-2996.68, -227.77], [-3004.54, -228.98]], "length": 64.5}, {"u": 53461818, "v": 53475312, "oneway": false, "points": [[-3004.54, -228.98], [-3003.11, -238.07], [-3002.6, -240.97], [-2997.63, -272.91], [-2993.06, -302.72], [-2992.64, -305.5], [-2991.29, -314.4]], "length": 86.43}, {"u": 53461818, "v": 53475305, "oneway": false, "points": [[-3004.54, -228.98], [-3005.95, -220.23], [-3006.37, -217.49], [-3017.62, -146.56]], "length": 83.46}, {"u": 53461818, "v": 53461816, "oneway": false, "points": [[-3004.54, -228.98], [-2996.68, -227.77], [-2976.98, -224.71], [-2968.89, -223.46], [-2940.8, -219.11]], "length": 64.5}, {"u": 53461818, "v": 53461820, "oneway": false, "points": [[-3004.54, -228.98], [-3012.36, -230.19], [-3069.77, -239.07]], "length": 66.01}, {"u": 53461820, "v": 53659829, "oneway": false, "points": [[-3069.77, -239.07], [-3071.07, -230.9], [-3071.68, -227.01], [-3083.51, -148.53]], "length": 91.57}, {"u": 53461820, "v": 53461818, "oneway": false, "points": [[-3069.77, -239.07], [-3012.36, -230.19], [-3004.54, -228.98]], "length": 66.01}, {"u": 53462362, "v": 13030502567, "oneway": false, "points": [[-2555.98, -897.73], [-2553.03, -895.22]], "length": 3.88}, {"u": 53462362, "v": 1180005819, "oneway": false, "points": [[-2555.98, -897.73], [-2561.85, -890.6], [-2561.81, -886.76], [-2561.46, -858.14], [-2561.01, -848.51], [-2560.85, -829.37], [-2559.46, -820.8]], "length": 79.17}, {"u": 53462362, "v": 3812685575, "oneway": false, "points": [[-2555.98, -897.73], [-2566.84, -908.9], [-2574.11, -914.92], [-2583.98, -923.28], [-2589.06, -927.8], [-2641.62, -972.71], [-2651.38, -981.54], [-2658.03, -987.99]], "length": 136.31}, {"u": 53462374, "v": 4874980027, "oneway": false, "points": [[-2769.66, -1081.93], [-2760.04, -1087.7], [-2733.62, -1116.43], [-2708.32, -1146.21], [-2702.49, -1152.65]], "length": 98.01}, {"u": 53462374, "v": 53421621, "oneway": false, "points": [[-2769.66, -1081.93], [-2778.39, -1077.1], [-2793.8, -1073.25], [-2796.7, -1072.76], [-2800.01, -1072.78]], "length": 32.11}, {"u": 53462374, "v": 53462383, "oneway": false, "points": [[-2769.66, -1081.93], [-2784.56, -1095.61], [-2844.62, -1146.75], [-2856.83, -1157.24], [-2863.74, -1163.15]], "length": 124.29}, {"u": 53462374, "v": 3812685579, "oneway": false, "points": [[-2769.66, -1081.93], [-2759.29, -1073.83], [-2715.76, -1036.4], [-2702.37, -1025.04], [-2696.4, -1019.41]], "length": 96.34}, {"u": 53462383, "v": 53556400, "oneway": false, "points": [[-2863.74, -1163.15], [-2858.21, -1170.09], [-2856.12, -1172.58], [-2834.13, -1199.77], [-2807.09, -1230.14], [-2801.53, -1236.1]], "length": 95.91}, {"u": 53462383, "v": 53610868, "oneway": false, "points": [[-2863.74, -1163.15], [-2869.99, -1155.52], [-2871.31, -1154.11], [-2881.46, -1141.08], [-2894.46, -1124.9], [-2915.4, -1098.36], [-2920.62, -1091.55]], "length": 91.45}, {"u": 53462383, "v": 53462390, "oneway": false, "points": [[-2863.74, -1163.15], [-2870.67, -1169.22], [-2934.44, -1223.32], [-2953.89, -1239.79], [-2962.4, -1246.7]], "length": 129.29}, {"u": 53462383, "v": 53462374, "oneway": false, "points": [[-2863.74, -1163.15], [-2856.83, -1157.24], [-2844.62, -1146.75], [-2784.56, -1095.61], [-2769.66, -1081.93]], "length": 124.29}, {"u": 53462390, "v": 53556402, "oneway": false, "points": [[-2962.4, -1246.7], [-2956.08, -1254.46], [-2932.06, -1283.41], [-2905.65, -1314.31], [-2901.59, -1319.52]], "length": 94.88}, {"u": 53462390, "v": 53462393, "oneway": false, "points": [[-2962.4, -1246.7], [-2971.56, -1254.17], [-2980.97, -1262.15]], "length": 24.16}, {"u": 53462390, "v": 53462383, "oneway": false, "points": [[-2962.4, -1246.7], [-2953.89, -1239.79], [-2934.44, -1223.32], [-2870.67, -1169.22], [-2863.74, -1163.15]], "length": 129.29}, {"u": 53462393, "v": 53625770, "oneway": false, "points": [[-2980.97, -1262.15], [-2985.5, -1257.17], [-2987.94, -1254.42], [-3004.79, -1234.58], [-3011.16, -1226.93], [-3033.67, -1199.46], [-3040.41, -1191.09]], "length": 92.65}, {"u": 53462393, "v": 53462402, "oneway": false, "points": [[-2980.97, -1262.15], [-2986.92, -1267.72], [-3062.15, -1330.4]], "length": 106.07}, {"u": 53462393, "v": 53462390, "oneway": false, "points": [[-2980.97, -1262.15], [-2971.56, -1254.17], [-2962.4, -1246.7]], "length": 24.16}, {"u": 53462402, "v": 53556407, "oneway": false, "points": [[-3062.15, -1330.4], [-3055.95, -1337.75], [-3030.43, -1366.91], [-3004.57, -1397.51], [-3000.03, -1402.9]], "length": 95.48}, {"u": 53462402, "v": 3637918464, "oneway": false, "points": [[-3062.15, -1330.4], [-3068.93, -1336.2], [-3148.35, -1404.08]], "length": 113.4}, {"u": 53462402, "v": 53462393, "oneway": false, "points": [[-3062.15, -1330.4], [-2986.92, -1267.72], [-2980.97, -1262.15]], "length": 106.07}, {"u": 53463508, "v": 5890633223, "oneway": false, "points": [[-674.11, -2410.8], [-674.33, -2417.95]], "length": 7.15}, {"u": 53463508, "v": 5890633230, "oneway": true, "points": [[-674.11, -2410.8], [-681.23, -2410.37], [-707.84, -2409.15], [-714.0, -2412.2]], "length": 40.65}, {"u": 53463513, "v": 5890633223, "oneway": false, "points": [[-683.95, -2531.71], [-680.52, -2521.72], [-679.34, -2517.48], [-674.64, -2426.1], [-674.51, -2423.56], [-674.33, -2417.95]], "length": 114.62}, {"u": 53463513, "v": 53463519, "oneway": false, "points": [[-683.95, -2531.71], [-685.15, -2534.28], [-693.22, -2551.54], [-702.35, -2571.09], [-710.79, -2590.9], [-713.32, -2596.84], [-725.97, -2626.54], [-733.45, -2644.11]], "length": 122.84}, {"u": 53463513, "v": 53434863, "oneway": false, "points": [[-683.95, -2531.71], [-694.46, -2531.06], [-698.26, -2530.83], [-756.94, -2527.19], [-827.34, -2523.6], [-836.54, -2523.14]], "length": 152.83}, {"u": 53463519, "v": 53463513, "oneway": false, "points": [[-733.45, -2644.11], [-725.97, -2626.54], [-713.32, -2596.84], [-710.79, -2590.9], [-702.35, -2571.09], [-693.22, -2551.54], [-685.15, -2534.28], [-683.95, -2531.71]], "length": 122.84}, {"u": 53463519, "v": 53463523, "oneway": false, "points": [[-733.45, -2644.11], [-756.48, -2692.53], [-760.34, -2701.03], [-786.49, -2757.63]], "length": 125.3}, {"u": 53463519, "v": 53434865, "oneway": false, "points": [[-733.45, -2644.11], [-743.11, -2643.48], [-747.75, -2643.18], [-751.76, -2642.93], [-842.82, -2637.35]], "length": 109.57}, {"u": 53463523, "v": 53463519, "oneway": false, "points": [[-786.49, -2757.63], [-760.34, -2701.03], [-756.48, -2692.53], [-733.45, -2644.11]], "length": 125.3}, {"u": 53463523, "v": 53463532, "oneway": false, "points": [[-786.49, -2757.63], [-809.88, -2816.38], [-814.9, -2828.97], [-827.76, -2861.27], [-836.59, -2870.69], [-868.74, -2869.33], [-880.37, -2869.81], [-882.87, -2869.92], [-892.49, -2870.32]], "length": 180.42}, {"u": 53463523, "v": 53434867, "oneway": false, "points": [[-786.49, -2757.63], [-792.28, -2757.34], [-797.96, -2757.06], [-838.66, -2755.01], [-847.46, -2754.57]], "length": 61.04}, {"u": 53463532, "v": 53463523, "oneway": false, "points": [[-892.49, -2870.32], [-882.87, -2869.92], [-880.37, -2869.81], [-868.74, -2869.33], [-836.59, -2870.69], [-827.76, -2861.27], [-814.9, -2828.97], [-809.88, -2816.38], [-786.49, -2757.63]], "length": 180.42}, {"u": 53463532, "v": 53511712, "oneway": false, "points": [[-892.49, -2870.32], [-900.5, -2852.52], [-910.53, -2830.2], [-919.33, -2810.64], [-923.87, -2800.55], [-928.37, -2790.53], [-943.44, -2757.0], [-945.99, -2751.31]], "length": 130.48}, {"u": 53463532, "v": 1180187620, "oneway": false, "points": [[-892.49, -2870.32], [-888.3, -2884.45], [-886.95, -2891.91], [-885.31, -2903.26], [-884.47, -2914.98], [-884.01, -2926.3], [-884.32, -2936.83], [-885.03, -2946.9]], "length": 77.5}, {"u": 53463567, "v": 6233229328, "oneway": false, "points": [[-639.09, -2412.52], [-639.45, -2419.83]], "length": 7.32}, {"u": 53463567, "v": 2634708186, "oneway": false, "points": [[-639.09, -2412.52], [-638.79, -2407.2], [-638.58, -2404.86], [-625.66, -2293.21], [-621.82, -2262.76], [-616.35, -2217.8], [-614.88, -2191.22], [-614.43, -2183.02]], "length": 230.89}, {"u": 53463567, "v": 53463508, "oneway": true, "points": [[-639.09, -2412.52], [-645.03, -2412.23], [-665.19, -2411.26], [-674.11, -2410.8]], "length": 35.06}, {"u": 53465696, "v": 6401044370, "oneway": false, "points": [[103.0, -2233.66], [106.1, -2239.42], [108.62, -2251.16], [107.97, -2268.37], [106.99, -2279.79], [107.17, -2290.57], [108.51, -2298.06], [110.79, -2303.9], [142.37, -2348.48], [153.43, -2364.07], [172.83, -2384.85], [187.38, -2400.77], [198.56, -2413.54], [220.41, -2438.03], [225.66, -2443.76], [229.69, -2448.21], [233.96, -2454.75]], "length": 267.02}, {"u": 53465696, "v": 53573840, "oneway": false, "points": [[103.0, -2233.66], [109.14, -2229.65], [111.8, -2227.91], [127.43, -2220.24], [140.58, -2216.28], [156.12, -2214.27], [160.94, -2213.96], [177.21, -2214.11], [184.49, -2214.19], [198.45, -2216.14], [212.07, -2222.03], [218.41, -2226.43], [224.85, -2230.89], [231.34, -2239.03], [235.55, -2244.31], [248.73, -2262.36]], "length": 169.7}, {"u": 53465696, "v": 53447076, "oneway": false, "points": [[103.0, -2233.66], [100.14, -2228.35], [95.01, -2221.11], [80.58, -2213.68]], "length": 31.13}, {"u": 53467195, "v": 53467197, "oneway": false, "points": [[2819.51, 2679.0], [2819.03, 2680.49], [2816.46, 2688.44], [2804.56, 2725.35], [2800.15, 2739.01], [2796.5, 2750.33]], "length": 74.95}, {"u": 53467195, "v": 1706427647, "oneway": true, "points": [[2819.51, 2679.0], [2820.17, 2668.51], [2821.87, 2660.92], [2823.96, 2656.78], [2828.21, 2651.76], [2831.29, 2648.12], [2838.71, 2641.51]], "length": 44.21}, {"u": 53467197, "v": 53529532, "oneway": false, "points": [[2796.5, 2750.33], [2788.69, 2744.88], [2787.55, 2743.8], [2742.51, 2701.27], [2693.3, 2652.34], [2688.81, 2647.88]], "length": 148.77}, {"u": 53467197, "v": 53467195, "oneway": false, "points": [[2796.5, 2750.33], [2800.15, 2739.01], [2804.56, 2725.35], [2816.46, 2688.44], [2819.03, 2680.49], [2819.51, 2679.0]], "length": 74.95}, {"u": 53467413, "v": 1181324562, "oneway": false, "points": [[-915.37, 125.96], [-929.7, 141.86], [-941.31, 154.75], [-949.32, 163.66]], "length": 50.74}, {"u": 53467413, "v": 53521450, "oneway": false, "points": [[-915.37, 125.96], [-913.63, 127.51], [-910.94, 129.91], [-894.59, 144.45], [-886.97, 151.22], [-884.66, 153.28]], "length": 41.1}, {"u": 53467413, "v": 1181085486, "oneway": false, "points": [[-915.37, 125.96], [-862.45, 67.2], [-860.78, 65.35], [-855.25, 59.2]], "length": 89.84}, {"u": 53467500, "v": 53482952, "oneway": false, "points": [[-272.6, -448.03], [-278.63, -453.24], [-331.55, -501.0], [-343.56, -511.95], [-377.18, -542.6], [-382.68, -547.64], [-404.02, -567.23], [-412.35, -574.87], [-414.28, -576.64], [-422.1, -583.57]], "length": 201.81}, {"u": 53467500, "v": 53493114, "oneway": false, "points": [[-272.6, -448.03], [-265.08, -440.95], [-226.99, -405.47], [-205.22, -385.46], [-198.74, -378.95]], "length": 101.13}, {"u": 53467500, "v": 13324853247, "oneway": false, "points": [[-272.6, -448.03], [-279.24, -440.79], [-350.45, -363.18], [-359.18, -353.68]], "length": 128.05}, {"u": 53467500, "v": 53467506, "oneway": false, "points": [[-272.6, -448.03], [-267.11, -454.01], [-232.48, -491.75], [-213.8, -512.1], [-212.41, -513.62], [-206.31, -520.26]], "length": 98.04}, {"u": 53467506, "v": 53444048, "oneway": false, "points": [[-206.31, -520.26], [-199.47, -527.68], [-184.98, -543.42], [-161.18, -569.25], [-148.21, -583.33], [-136.89, -591.11]], "length": 99.49}, {"u": 53467506, "v": 53467500, "oneway": false, "points": [[-206.31, -520.26], [-212.41, -513.62], [-213.8, -512.1], [-232.48, -491.75], [-267.11, -454.01], [-272.6, -448.03]], "length": 98.04}, {"u": 53467506, "v": 53482954, "oneway": false, "points": [[-206.31, -520.26], [-212.9, -526.3], [-215.04, -528.26], [-245.8, -556.47], [-265.81, -574.83], [-271.94, -580.46], [-279.78, -587.64], [-280.35, -588.16], [-289.31, -596.45], [-305.1, -611.03], [-322.35, -626.68], [-347.84, -650.06], [-350.52, -652.5], [-355.85, -657.24]], "length": 202.79}, {"u": 53470168, "v": 53470169, "oneway": false, "points": [[-956.78, -2072.34], [-957.08, -2079.6], [-960.54, -2160.83], [-960.95, -2170.47]], "length": 98.21}, {"u": 53470168, "v": 53416782, "oneway": false, "points": [[-956.78, -2072.34], [-980.76, -2067.43], [-1000.56, -2061.31], [-1027.59, -2054.65], [-1046.46, -2053.44], [-1065.98, -2054.78]], "length": 111.52}, {"u": 53470168, "v": 53434870, "oneway": false, "points": [[-956.78, -2072.34], [-882.64, -2079.35], [-869.51, -2081.05], [-854.08, -2083.0], [-838.48, -2085.19], [-787.2, -2084.85]], "length": 170.3}, {"u": 53470169, "v": 53470170, "oneway": false, "points": [[-960.95, -2170.47], [-961.3, -2178.79], [-965.44, -2276.21], [-965.81, -2284.83]], "length": 114.47}, {"u": 53470169, "v": 53470168, "oneway": false, "points": [[-960.95, -2170.47], [-960.54, -2160.83], [-957.08, -2079.6], [-956.78, -2072.34]], "length": 98.21}, {"u": 53470169, "v": 53416784, "oneway": false, "points": [[-960.95, -2170.47], [-969.49, -2169.96], [-1022.23, -2166.84], [-1063.0, -2165.31], [-1072.14, -2164.97]], "length": 111.34}, {"u": 53470169, "v": 53434871, "oneway": false, "points": [[-960.95, -2170.47], [-951.62, -2170.88], [-860.59, -2174.67], [-796.46, -2177.43], [-790.62, -2177.58]], "length": 170.47}, {"u": 53470170, "v": 53416786, "oneway": false, "points": [[-965.81, -2284.83], [-1077.53, -2279.52]], "length": 111.85}, {"u": 53470170, "v": 53470173, "oneway": false, "points": [[-965.81, -2284.83], [-970.2, -2388.13], [-970.3, -2390.48], [-970.7, -2399.95]], "length": 115.22}, {"u": 53470170, "v": 53470169, "oneway": false, "points": [[-965.81, -2284.83], [-965.44, -2276.21], [-961.3, -2178.79], [-960.95, -2170.47]], "length": 114.47}, {"u": 53470170, "v": 53434862, "oneway": false, "points": [[-965.81, -2284.83], [-878.53, -2289.42], [-828.87, -2291.62], [-830.39, -2352.14], [-831.46, -2395.09], [-831.53, -2397.83], [-831.87, -2406.51]], "length": 252.04}, {"u": 53470173, "v": 53470170, "oneway": false, "points": [[-970.7, -2399.95], [-970.3, -2390.48], [-970.2, -2388.13], [-965.81, -2284.83]], "length": 115.22}, {"u": 53470173, "v": 53416788, "oneway": false, "points": [[-970.7, -2399.95], [-1074.11, -2394.92], [-1080.66, -2394.6]], "length": 110.09}, {"u": 53470173, "v": 53434862, "oneway": false, "points": [[-970.7, -2399.95], [-892.41, -2403.53], [-839.48, -2406.18], [-831.87, -2406.51]], "length": 138.98}, {"u": 53472268, "v": 53472269, "oneway": false, "points": [[-1887.23, -739.99], [-1897.21, -739.49], [-1923.17, -738.13], [-1959.92, -736.23]], "length": 72.78}, {"u": 53472268, "v": 4139816155, "oneway": true, "points": [[-1887.23, -739.99], [-1885.56, -690.43], [-1885.83, -663.35], [-1885.69, -651.98], [-1884.79, -641.28]], "length": 98.79}, {"u": 53472269, "v": 53472270, "oneway": false, "points": [[-1959.92, -736.23], [-1983.94, -734.97], [-2012.69, -733.48], [-2021.47, -733.03]], "length": 61.64}, {"u": 53472269, "v": 53472268, "oneway": false, "points": [[-1959.92, -736.23], [-1923.17, -738.13], [-1897.21, -739.49], [-1887.23, -739.99]], "length": 72.78}, {"u": 53472269, "v": 53545894, "oneway": false, "points": [[-1959.92, -736.23], [-1960.01, -740.53], [-1960.52, -765.33], [-1960.77, -777.57], [-1961.03, -790.33], [-1961.45, -810.16], [-1962.01, -837.37], [-1962.23, -846.68]], "length": 110.47}, {"u": 53472270, "v": 53472269, "oneway": false, "points": [[-2021.47, -733.03], [-2012.69, -733.48], [-1983.94, -734.97], [-1959.92, -736.23]], "length": 61.64}, {"u": 53472270, "v": 53602671, "oneway": true, "points": [[-2021.47, -733.03], [-2022.11, -762.77], [-2022.62, -787.05], [-2022.87, -798.93], [-2023.04, -806.95], [-2023.3, -819.04], [-2023.58, -832.17], [-2023.63, -834.81], [-2023.82, -843.83]], "length": 110.83}, {"u": 53472460, "v": 53479821, "oneway": false, "points": [[-503.44, 106.87], [-509.93, 114.0], [-511.29, 115.49], [-539.96, 146.98], [-549.98, 157.96], [-550.77, 158.84], [-552.68, 160.94], [-565.69, 175.22], [-571.25, 181.33]], "length": 100.71}, {"u": 53472460, "v": 53720172, "oneway": false, "points": [[-503.44, 106.87], [-498.01, 100.91], [-496.03, 98.73], [-486.69, 88.48], [-457.15, 56.05], [-454.59, 53.24], [-442.15, 39.57], [-435.66, 32.45]], "length": 100.66}, {"u": 53472460, "v": 53472467, "oneway": true, "points": [[-503.44, 106.87], [-510.32, 100.66], [-544.15, 70.07], [-554.92, 60.32], [-577.18, 40.19], [-602.21, 17.56], [-614.12, 6.79], [-614.82, 6.16], [-618.0, 3.28], [-622.16, -0.48], [-646.15, -22.18], [-652.09, -27.55]], "length": 200.41}, {"u": 53472467, "v": 2714977035, "oneway": false, "points": [[-652.09, -27.55], [-658.26, -20.81], [-660.54, -18.2], [-677.09, -0.18], [-678.1, 0.91], [-697.24, 21.74], [-697.87, 22.42], [-714.12, 40.11], [-719.77, 46.24]], "length": 100.12}, {"u": 53472467, "v": 53472474, "oneway": true, "points": [[-652.09, -27.55], [-659.91, -34.61], [-690.85, -62.58], [-698.35, -69.37], [-717.69, -86.86], [-725.91, -94.3], [-734.75, -102.31], [-778.28, -142.06], [-796.52, -158.22], [-802.75, -163.8]], "length": 203.14}, {"u": 53472474, "v": 3271744858, "oneway": true, "points": [[-802.75, -163.8], [-809.27, -156.56], [-815.02, -150.24], [-837.93, -125.01]], "length": 52.37}, {"u": 53472474, "v": 1181378741, "oneway": true, "points": [[-802.75, -163.8], [-810.22, -170.01], [-824.85, -183.44], [-846.96, -203.77]], "length": 59.61}, {"u": 53473010, "v": 2638675253, "oneway": false, "points": [[-1266.38, -2376.56], [-1272.88, -2364.25]], "length": 13.91}, {"u": 53473010, "v": 9146885459, "oneway": false, "points": [[-1266.38, -2376.56], [-1267.42, -2392.04], [-1269.64, -2424.63], [-1270.05, -2435.1], [-1270.84, -2454.94], [-1271.99, -2483.77], [-1273.12, -2512.45], [-1274.05, -2520.1], [-1274.33, -2522.35], [-1275.32, -2530.59], [-1275.47, -2531.83], [-1284.49, -2560.46], [-1293.93, -2590.43], [-1295.01, -2593.85], [-1297.2, -2613.06]], "length": 239.96}, {"u": 53473010, "v": 2638675264, "oneway": false, "points": [[-1266.38, -2376.56], [-1255.3, -2393.93], [-1249.53, -2402.99], [-1246.57, -2407.62], [-1204.04, -2489.11]], "length": 128.76}, {"u": 53473027, "v": 9146885459, "oneway": false, "points": [[-1313.53, -2873.86], [-1312.19, -2863.75], [-1311.87, -2861.34], [-1310.17, -2839.02], [-1307.69, -2806.45], [-1305.96, -2767.89], [-1304.91, -2744.38], [-1302.72, -2695.65], [-1300.05, -2636.05], [-1299.89, -2633.28], [-1298.84, -2624.81], [-1297.2, -2613.06]], "length": 261.42}, {"u": 53473027, "v": 4248941674, "oneway": false, "points": [[-1313.53, -2873.86], [-1326.85, -2871.31], [-1329.91, -2870.72], [-1364.3, -2862.65], [-1399.89, -2851.89], [-1414.83, -2844.4], [-1448.66, -2819.15]], "length": 148.1}, {"u": 53473027, "v": 1180187532, "oneway": false, "points": [[-1313.53, -2873.86], [-1304.63, -2875.58], [-1261.71, -2883.86], [-1245.01, -2887.1], [-1187.21, -2898.25], [-1156.83, -2904.12], [-1102.13, -2914.35], [-1015.45, -2930.26], [-1006.59, -2931.61]], "length": 312.33}, {"u": 53473264, "v": 53473273, "oneway": false, "points": [[-2195.98, -835.11], [-2196.24, -844.38], [-2196.36, -846.48], [-2215.43, -864.23], [-2245.11, -889.24], [-2379.24, -1004.69], [-2384.18, -1008.94], [-2390.24, -1014.15]], "length": 267.73}, {"u": 53473264, "v": 53556383, "oneway": false, "points": [[-2195.98, -835.11], [-2263.94, -832.29], [-2297.78, -830.89], [-2323.94, -829.57], [-2330.5, -829.29], [-2338.48, -828.96]], "length": 142.64}, {"u": 53473264, "v": 53483907, "oneway": false, "points": [[-2195.98, -835.11], [-2167.9, -836.16], [-2158.04, -836.72]], "length": 37.97}, {"u": 53473273, "v": 53454630, "oneway": false, "points": [[-2390.24, -1014.15], [-2397.82, -1020.61], [-2402.46, -1024.57], [-2525.04, -1129.03], [-2531.92, -1135.08]], "length": 186.27}, {"u": 53473273, "v": 53473264, "oneway": false, "points": [[-2390.24, -1014.15], [-2384.18, -1008.94], [-2379.24, -1004.69], [-2245.11, -889.24], [-2215.43, -864.23], [-2196.36, -846.48], [-2196.24, -844.38], [-2195.98, -835.11]], "length": 267.73}, {"u": 53473273, "v": 53444613, "oneway": false, "points": [[-2390.24, -1014.15], [-2384.49, -1021.02], [-2359.21, -1051.19], [-2333.95, -1081.52], [-2327.85, -1088.84]], "length": 97.31}, {"u": 53473273, "v": 53534017, "oneway": false, "points": [[-2390.24, -1014.15], [-2396.24, -1007.26], [-2422.34, -977.25], [-2447.93, -948.32], [-2454.42, -940.98]], "length": 97.33}, {"u": 53473289, "v": 53473302, "oneway": false, "points": [[-2640.88, -1224.85], [-2647.83, -1230.84], [-2650.31, -1232.94], [-2733.35, -1303.55], [-2738.68, -1308.39]], "length": 128.63}, {"u": 53473289, "v": 53454630, "oneway": false, "points": [[-2640.88, -1224.85], [-2634.43, -1219.53], [-2631.78, -1217.35], [-2539.64, -1141.32], [-2531.92, -1135.08]], "length": 141.17}, {"u": 53473289, "v": 53444627, "oneway": false, "points": [[-2640.88, -1224.85], [-2632.75, -1234.44], [-2608.26, -1263.35], [-2582.51, -1293.77], [-2576.79, -1300.53]], "length": 99.17}, {"u": 53473289, "v": 4874980027, "oneway": false, "points": [[-2640.88, -1224.85], [-2644.95, -1220.05], [-2671.96, -1188.16], [-2696.56, -1159.7], [-2702.49, -1152.65]], "length": 94.91}, {"u": 53473302, "v": 53473312, "oneway": false, "points": [[-2738.68, -1308.39], [-2746.39, -1315.28], [-2832.21, -1388.26], [-2838.73, -1393.78]], "length": 131.54}, {"u": 53473302, "v": 53473289, "oneway": false, "points": [[-2738.68, -1308.39], [-2733.35, -1303.55], [-2650.31, -1232.94], [-2647.83, -1230.84], [-2640.88, -1224.85]], "length": 128.63}, {"u": 53473302, "v": 53444632, "oneway": false, "points": [[-2738.68, -1308.39], [-2731.44, -1317.09], [-2706.83, -1346.69], [-2681.67, -1377.92], [-2676.11, -1384.84]], "length": 98.79}, {"u": 53473302, "v": 53556400, "oneway": false, "points": [[-2738.68, -1308.39], [-2743.33, -1303.26], [-2770.87, -1272.83], [-2795.31, -1243.56], [-2801.53, -1236.1]], "length": 95.81}, {"u": 53473312, "v": 53473321, "oneway": false, "points": [[-2838.73, -1393.78], [-2845.21, -1399.31], [-2929.64, -1471.42], [-2936.88, -1477.62]], "length": 129.08}, {"u": 53473312, "v": 53473302, "oneway": false, "points": [[-2838.73, -1393.78], [-2832.21, -1388.26], [-2746.39, -1315.28], [-2738.68, -1308.39]], "length": 131.54}, {"u": 53473312, "v": 53444642, "oneway": false, "points": [[-2838.73, -1393.78], [-2831.92, -1402.11], [-2807.63, -1431.85], [-2781.41, -1461.96], [-2775.24, -1469.05]], "length": 98.48}, {"u": 53473312, "v": 53556402, "oneway": false, "points": [[-2838.73, -1393.78], [-2843.41, -1388.06], [-2869.19, -1356.51], [-2894.46, -1327.67], [-2901.59, -1319.52]], "length": 97.31}, {"u": 53473321, "v": 3812685629, "oneway": false, "points": [[-2936.88, -1477.62], [-2943.24, -1483.05], [-3014.9, -1544.22], [-3022.23, -1550.48]], "length": 112.22}, {"u": 53473321, "v": 53473312, "oneway": false, "points": [[-2936.88, -1477.62], [-2929.64, -1471.42], [-2845.21, -1399.31], [-2838.73, -1393.78]], "length": 129.08}, {"u": 53473321, "v": 53444645, "oneway": false, "points": [[-2936.88, -1477.62], [-2930.6, -1485.04], [-2905.56, -1514.68], [-2879.49, -1545.53], [-2872.82, -1553.43]], "length": 99.26}, {"u": 53473321, "v": 53556407, "oneway": false, "points": [[-2936.88, -1477.62], [-2941.82, -1471.78], [-2967.97, -1440.83], [-2993.26, -1410.91], [-3000.03, -1402.9]], "length": 97.82}, {"u": 53475092, "v": 53475094, "oneway": false, "points": [[2959.77, 2342.96], [2955.29, 2259.6], [2954.79, 2251.18]], "length": 91.91}, {"u": 53475094, "v": 53475096, "oneway": false, "points": [[2954.79, 2251.18], [2954.42, 2243.51], [2945.08, 2070.01], [2944.58, 2060.68]], "length": 190.78}, {"u": 53475094, "v": 53475092, "oneway": false, "points": [[2954.79, 2251.18], [2955.29, 2259.6], [2959.77, 2342.96]], "length": 91.91}, {"u": 53475094, "v": 53430839, "oneway": false, "points": [[2954.79, 2251.18], [2945.18, 2251.83], [2870.77, 2254.88], [2863.88, 2255.16]], "length": 91.0}, {"u": 53475096, "v": 53475099, "oneway": false, "points": [[2944.58, 2060.68], [2944.2, 2053.8], [2941.73, 2007.77], [2941.57, 2004.84], [2940.96, 1993.51]], "length": 67.27}, {"u": 53475096, "v": 53475094, "oneway": false, "points": [[2944.58, 2060.68], [2945.08, 2070.01], [2954.42, 2243.51], [2954.79, 2251.18]], "length": 190.78}, {"u": 53475096, "v": 53430844, "oneway": false, "points": [[2944.58, 2060.68], [2936.86, 2061.08], [2860.45, 2064.99], [2852.93, 2065.78]], "length": 91.8}, {"u": 53475099, "v": 53475096, "oneway": false, "points": [[2940.96, 1993.51], [2941.57, 2004.84], [2941.73, 2007.77], [2944.2, 2053.8], [2944.58, 2060.68]], "length": 67.27}, {"u": 53475099, "v": 53540839, "oneway": false, "points": [[2940.96, 1993.51], [2932.18, 1987.0], [2856.57, 1930.91], [2853.77, 1928.76], [2844.76, 1921.2]], "length": 120.36}, {"u": 53475305, "v": 53461818, "oneway": false, "points": [[-3017.62, -146.56], [-3006.37, -217.49], [-3005.95, -220.23], [-3004.54, -228.98]], "length": 83.46}, {"u": 53475312, "v": 53475324, "oneway": false, "points": [[-2991.29, -314.4], [-2990.78, -320.85], [-2990.54, -323.74], [-2991.66, -327.06], [-2996.2, -334.71], [-3004.16, -342.26], [-3017.86, -356.76], [-3028.78, -373.67], [-3030.2, -377.08], [-3034.29, -386.85]], "length": 87.1}, {"u": 53475312, "v": 53461818, "oneway": false, "points": [[-2991.29, -314.4], [-2992.64, -305.5], [-2993.06, -302.72], [-2997.63, -272.91], [-3002.6, -240.97], [-3003.11, -238.07], [-3004.54, -228.98]], "length": 86.43}, {"u": 53475312, "v": 53481441, "oneway": false, "points": [[-2991.29, -314.4], [-2983.9, -313.19], [-2854.04, -292.8], [-2846.34, -291.68]], "length": 146.73}, {"u": 53475324, "v": 53475312, "oneway": false, "points": [[-3034.29, -386.85], [-3030.2, -377.08], [-3028.78, -373.67], [-3017.86, -356.76], [-3004.16, -342.26], [-2996.2, -334.71], [-2991.66, -327.06], [-2990.54, -323.74], [-2990.78, -320.85], [-2991.29, -314.4]], "length": 87.1}, {"u": 53475324, "v": 53645778, "oneway": false, "points": [[-3034.29, -386.85], [-2998.73, -382.76], [-2989.75, -382.35], [-2971.51, -382.88], [-2959.66, -384.33], [-2949.61, -386.4], [-2937.4, -389.64], [-2920.53, -395.02], [-2909.01, -399.91], [-2903.8, -402.84], [-2902.45, -403.79], [-2893.34, -410.25]], "length": 146.88}, {"u": 53478277, "v": 4095606995, "oneway": false, "points": [[-2013.99, -1717.44], [-2014.21, -1724.44], [-2015.93, -1790.39], [-2016.51, -1810.48], [-2016.64, -1814.87], [-2016.67, -1823.74], [-2016.87, -1856.11], [-2018.27, -1866.47], [-2023.2, -1884.73], [-2025.22, -1892.43]], "length": 176.04}, {"u": 53478277, "v": 53529692, "oneway": false, "points": [[-2013.99, -1717.44], [-2013.8, -1708.55], [-2011.95, -1621.12], [-2011.37, -1604.56], [-2011.08, -1596.42]], "length": 121.05}, {"u": 53478277, "v": 53575901, "oneway": false, "points": [[-2013.99, -1717.44], [-2020.49, -1717.28], [-2060.76, -1716.36], [-2114.08, -1715.6], [-2117.67, -1715.4], [-2118.93, -1715.12], [-2119.75, -1714.38], [-2120.44, -1712.59], [-2120.56, -1710.25], [-2120.44, -1706.09], [-2118.53, -1653.11], [-2117.97, -1618.64]], "length": 202.02}, {"u": 53478277, "v": 2573847782, "oneway": false, "points": [[-2013.99, -1717.44], [-2008.12, -1717.66], [-1895.95, -1721.99], [-1813.22, -1725.18], [-1787.75, -1725.75], [-1779.82, -1725.92]], "length": 234.32}, {"u": 53479821, "v": 53441253, "oneway": false, "points": [[-571.25, 181.33], [-577.51, 188.2], [-600.67, 213.63], [-630.98, 247.26], [-632.71, 249.19], [-638.37, 255.52]], "length": 100.05}, {"u": 53479821, "v": 53472460, "oneway": false, "points": [[-571.25, 181.33], [-565.69, 175.22], [-552.68, 160.94], [-550.77, 158.84], [-549.98, 157.96], [-539.96, 146.98], [-511.29, 115.49], [-509.93, 114.0], [-503.44, 106.87]], "length": 100.71}, {"u": 53479821, "v": 2714977035, "oneway": false, "points": [[-571.25, 181.33], [-577.89, 175.29], [-609.1, 146.91], [-615.34, 141.23], [-627.18, 130.46], [-639.03, 119.67], [-640.0, 118.8], [-655.47, 104.73], [-657.99, 102.43], [-666.32, 94.87], [-667.03, 94.22], [-668.62, 92.76], [-676.11, 85.95], [-687.58, 75.52], [-688.2, 74.95], [-713.74, 51.73], [-719.77, 46.24]], "length": 200.76}, {"u": 53479821, "v": 5468393309, "oneway": false, "points": [[-571.25, 181.33], [-564.97, 187.05], [-551.43, 199.37], [-539.51, 210.21], [-529.88, 218.96], [-510.62, 236.49], [-490.65, 254.66], [-488.38, 256.73], [-473.8, 269.97]], "length": 131.73}, {"u": 53480554, "v": 1706427669, "oneway": false, "points": [[2377.71, 1863.6], [2372.03, 1867.09], [2367.75, 1869.72], [2329.03, 1893.52], [2315.0, 1902.13], [2311.57, 1904.24]], "length": 77.63}, {"u": 53480554, "v": 53572019, "oneway": false, "points": [[2377.71, 1863.6], [2380.72, 1868.28], [2401.52, 1900.7], [2426.57, 1941.0], [2440.8, 1963.12], [2450.42, 1978.42], [2455.13, 1985.9]], "length": 144.75}, {"u": 53480554, "v": 53503712, "oneway": false, "points": [[2377.71, 1863.6], [2373.76, 1857.12], [2371.66, 1853.66], [2352.72, 1823.44], [2350.33, 1819.52], [2339.67, 1801.98], [2328.64, 1783.83], [2327.69, 1782.26], [2325.94, 1779.39]], "length": 98.85}, {"u": 53481435, "v": 53481441, "oneway": false, "points": [[-2831.52, -384.93], [-2832.65, -378.7], [-2835.01, -362.59], [-2845.25, -298.92], [-2846.34, -291.68]], "length": 94.42}, {"u": 53481435, "v": 53514818, "oneway": false, "points": [[-2831.52, -384.93], [-2821.0, -382.37], [-2792.11, -375.49], [-2778.72, -371.88], [-2776.91, -371.04]], "length": 56.39}, {"u": 53481435, "v": 53645778, "oneway": false, "points": [[-2831.52, -384.93], [-2856.78, -394.3], [-2886.31, -406.57], [-2893.34, -410.25]], "length": 66.86}, {"u": 53481441, "v": 1180005830, "oneway": false, "points": [[-2846.34, -291.68], [-2847.68, -282.88], [-2856.4, -225.59], [-2857.62, -217.33], [-2857.9, -215.42], [-2859.22, -206.48]], "length": 86.17}, {"u": 53481441, "v": 53481435, "oneway": false, "points": [[-2846.34, -291.68], [-2845.25, -298.92], [-2835.01, -362.59], [-2832.65, -378.7], [-2831.52, -384.93]], "length": 94.42}, {"u": 53481441, "v": 53475312, "oneway": false, "points": [[-2846.34, -291.68], [-2854.04, -292.8], [-2983.9, -313.19], [-2991.29, -314.4]], "length": 146.73}, {"u": 53481441, "v": 53485102, "oneway": false, "points": [[-2846.34, -291.68], [-2838.03, -290.36], [-2788.99, -282.55], [-2781.1, -281.44], [-2774.11, -281.54], [-2747.87, -282.5], [-2744.48, -282.63], [-2736.08, -283.11]], "length": 111.09}, {"u": 53481638, "v": 1180187697, "oneway": false, "points": [[-993.08, -2982.95], [-1008.02, -2982.27]], "length": 14.95}, {"u": 53481638, "v": 1180187478, "oneway": true, "points": [[-993.08, -2982.95], [-992.83, -2972.3], [-992.43, -2960.03], [-992.48, -2951.92], [-992.54, -2947.73], [-992.49, -2945.0], [-992.58, -2933.4]], "length": 49.57}, {"u": 53481665, "v": 53639885, "oneway": false, "points": [[-1529.68, -2889.9], [-1506.17, -2850.78], [-1495.99, -2833.58]], "length": 65.63}, {"u": 53481665, "v": 1180187697, "oneway": false, "points": [[-1529.68, -2889.9], [-1515.82, -2893.6], [-1512.93, -2894.45], [-1503.72, -2896.94], [-1488.7, -2899.11], [-1470.97, -2897.81], [-1460.04, -2898.62], [-1451.78, -2899.58], [-1444.02, -2901.2], [-1427.92, -2904.16], [-1387.79, -2912.38], [-1335.27, -2922.38], [-1304.75, -2928.69], [-1288.82, -2931.33], [-1280.3, -2932.74], [-1276.43, -2933.38], [-1137.98, -2958.64], [-1098.03, -2965.93], [-1019.55, -2981.06], [-1015.92, -2981.49], [-1008.02, -2982.27]], "length": 530.58}, {"u": 53482952, "v": 917593526, "oneway": true, "points": [[-422.1, -583.57], [-427.74, -575.93], [-442.2, -560.08], [-461.54, -538.87], [-478.2, -520.58], [-497.33, -499.61], [-510.0, -485.71]], "length": 131.59}, {"u": 53482952, "v": 53493128, "oneway": false, "points": [[-422.1, -583.57], [-427.74, -588.79], [-430.25, -591.03], [-436.48, -596.59], [-446.22, -605.34], [-460.62, -618.29], [-470.68, -627.33], [-477.87, -633.79], [-511.01, -663.55], [-518.13, -669.98], [-528.7, -679.51], [-533.16, -683.54], [-541.2, -690.81], [-547.58, -696.57], [-564.4, -711.75], [-570.92, -717.59]], "length": 200.27}, {"u": 53482952, "v": 53467500, "oneway": false, "points": [[-422.1, -583.57], [-414.28, -576.64], [-412.35, -574.87], [-404.02, -567.23], [-382.68, -547.64], [-377.18, -542.6], [-343.56, -511.95], [-331.55, -501.0], [-278.63, -453.24], [-272.6, -448.03]], "length": 201.81}, {"u": 53482954, "v": 53482952, "oneway": true, "points": [[-355.85, -657.24], [-361.96, -650.48], [-418.12, -589.82], [-422.1, -583.57]], "length": 99.18}, {"u": 53482954, "v": 53578514, "oneway": false, "points": [[-355.85, -657.24], [-361.51, -662.56], [-420.58, -716.47], [-428.64, -723.82], [-435.47, -730.05], [-442.95, -736.87], [-461.33, -753.66], [-472.94, -764.24], [-496.72, -785.94], [-502.96, -791.63]], "length": 199.25}, {"u": 53482954, "v": 53467506, "oneway": false, "points": [[-355.85, -657.24], [-350.52, -652.5], [-347.84, -650.06], [-322.35, -626.68], [-305.1, -611.03], [-289.31, -596.45], [-280.35, -588.16], [-279.78, -587.64], [-271.94, -580.46], [-265.81, -574.83], [-245.8, -556.47], [-215.04, -528.26], [-212.9, -526.3], [-206.31, -520.26]], "length": 202.79}, {"u": 53482954, "v": 53482965, "oneway": false, "points": [[-355.85, -657.24], [-348.22, -665.79], [-294.07, -722.19], [-287.39, -728.76]], "length": 99.02}, {"u": 53482965, "v": 1182471991, "oneway": false, "points": [[-287.39, -728.76], [-283.2, -732.76], [-267.43, -748.51]], "length": 28.08}, {"u": 53482965, "v": 53482954, "oneway": false, "points": [[-287.39, -728.76], [-294.07, -722.19], [-348.22, -665.79], [-355.85, -657.24]], "length": 99.02}, {"u": 53483330, "v": 3811323395, "oneway": true, "points": [[-1758.68, -926.36], [-1767.53, -926.13], [-1881.98, -923.02], [-1883.22, -922.98], [-1891.3, -922.84]], "length": 132.66}, {"u": 53483330, "v": 53576821, "oneway": false, "points": [[-1758.68, -926.36], [-1758.44, -917.54], [-1757.45, -881.02], [-1757.41, -879.61], [-1757.06, -865.38], [-1756.79, -856.17]], "length": 70.22}, {"u": 53483330, "v": 53430443, "oneway": false, "points": [[-1758.68, -926.36], [-1758.75, -928.93], [-1760.47, -990.63], [-1760.74, -1000.35]], "length": 74.02}, {"u": 53483354, "v": 53444600, "oneway": false, "points": [[-2159.72, -914.95], [-2161.21, -961.17]], "length": 46.24}, {"u": 53483354, "v": 53483907, "oneway": false, "points": [[-2159.72, -914.95], [-2159.04, -881.04], [-2158.74, -874.08], [-2158.61, -867.46], [-2158.59, -866.46], [-2158.16, -845.65], [-2158.04, -836.72]], "length": 78.25}, {"u": 53483529, "v": 53426175, "oneway": true, "points": [[348.17, -145.68], [346.48, -150.69], [345.42, -153.15], [343.63, -156.29], [338.22, -163.2], [328.1, -173.09], [276.22, -219.29], [242.57, -248.24], [211.08, -275.75], [204.03, -281.35]], "length": 199.19}, {"u": 53483529, "v": 1425250001, "oneway": true, "points": [[348.17, -145.68], [352.47, -145.83], [355.88, -145.31], [359.24, -144.54], [361.7, -142.66], [369.24, -136.01], [385.82, -121.04], [409.04, -100.4], [417.29, -94.1], [425.02, -89.46], [433.04, -84.69]], "length": 106.48}, {"u": 53483529, "v": 53539171, "oneway": false, "points": [[348.17, -145.68], [333.39, -147.99], [299.74, -146.22], [250.25, -143.94], [240.83, -143.48], [217.07, -142.42], [201.56, -141.39]], "length": 146.96}, {"u": 53483529, "v": 53407922, "oneway": false, "points": [[348.17, -145.68], [344.79, -137.97], [342.86, -135.05], [340.25, -131.11], [326.02, -115.75], [321.11, -110.37], [314.38, -102.74], [301.55, -89.08], [296.15, -83.23], [281.84, -67.75], [268.79, -53.64], [266.9, -51.6], [224.91, -6.1], [218.19, 1.17]], "length": 196.63}, {"u": 53483907, "v": 53483354, "oneway": false, "points": [[-2158.04, -836.72], [-2158.16, -845.65], [-2158.59, -866.46], [-2158.61, -867.46], [-2158.74, -874.08], [-2159.04, -881.04], [-2159.72, -914.95]], "length": 78.25}, {"u": 53483907, "v": 53510000, "oneway": false, "points": [[-2158.04, -836.72], [-2158.15, -827.23], [-2157.15, -793.14], [-2157.07, -789.23], [-2156.97, -784.6], [-2157.54, -776.63], [-2157.72, -770.4], [-2157.84, -763.01], [-2157.53, -751.74], [-2156.36, -732.32], [-2156.14, -726.81], [-2156.73, -710.17], [-2155.55, -664.82], [-2154.94, -640.27], [-2154.78, -635.77], [-2154.48, -627.78]], "length": 209.07}, {"u": 53483907, "v": 53602671, "oneway": false, "points": [[-2158.04, -836.72], [-2149.82, -836.99], [-2116.41, -839.56], [-2111.21, -839.8], [-2091.33, -840.72], [-2068.91, -841.75], [-2063.33, -842.01], [-2032.91, -843.42], [-2023.82, -843.83]], "length": 134.42}, {"u": 53483907, "v": 53473264, "oneway": false, "points": [[-2158.04, -836.72], [-2167.9, -836.16], [-2195.98, -835.11]], "length": 37.97}, {"u": 53483912, "v": 2816310345, "oneway": false, "points": [[-2161.58, -989.55], [-2153.61, -989.74], [-2029.74, -993.22], [-2020.48, -993.47]], "length": 141.15}, {"u": 53483912, "v": 53483915, "oneway": false, "points": [[-2161.58, -989.55], [-2161.8, -997.86], [-2162.79, -1035.03], [-2163.03, -1044.14], [-2163.17, -1049.33]], "length": 59.81}, {"u": 53483912, "v": 53444600, "oneway": false, "points": [[-2161.58, -989.55], [-2161.47, -981.44], [-2161.21, -961.17]], "length": 28.38}, {"u": 53483915, "v": 53709543, "oneway": false, "points": [[-2163.17, -1049.33], [-2165.38, -1100.03], [-2165.52, -1110.84]], "length": 61.56}, {"u": 53483915, "v": 53483912, "oneway": false, "points": [[-2163.17, -1049.33], [-2163.03, -1044.14], [-2162.79, -1035.03], [-2161.8, -997.86], [-2161.58, -989.55]], "length": 59.81}, {"u": 53483915, "v": 53643765, "oneway": false, "points": [[-2163.17, -1049.33], [-2155.49, -1049.52], [-2065.28, -1051.77], [-2027.92, -1053.17], [-2019.78, -1053.48]], "length": 143.45}, {"u": 53485100, "v": 53485102, "oneway": false, "points": [[-2626.37, -287.68], [-2634.83, -287.33], [-2637.43, -287.22], [-2726.22, -283.54], [-2728.41, -283.44], [-2736.08, -283.11]], "length": 109.81}, {"u": 53485100, "v": 1857601486, "oneway": false, "points": [[-2626.37, -287.68], [-2626.26, -284.14], [-2626.1, -279.41], [-2625.17, -250.25], [-2624.78, -237.77], [-2624.2, -217.92], [-2623.89, -207.01], [-2623.82, -204.52], [-2623.71, -198.63]], "length": 89.09}, {"u": 53485100, "v": 53684770, "oneway": false, "points": [[-2626.37, -287.68], [-2626.63, -295.89], [-2628.92, -367.75], [-2629.47, -389.3], [-2629.69, -397.82]], "length": 110.19}, {"u": 53485102, "v": 53485100, "oneway": false, "points": [[-2736.08, -283.11], [-2728.41, -283.44], [-2726.22, -283.54], [-2637.43, -287.22], [-2634.83, -287.33], [-2626.37, -287.68]], "length": 109.81}, {"u": 53485102, "v": 2848493172, "oneway": false, "points": [[-2736.08, -283.11], [-2735.83, -275.42], [-2735.35, -258.24], [-2735.13, -253.29], [-2734.83, -247.3], [-2734.23, -231.37], [-2733.11, -201.26], [-2733.08, -200.21], [-2732.81, -190.04]], "length": 93.13}, {"u": 53485102, "v": 53514818, "oneway": false, "points": [[-2736.08, -283.11], [-2736.6, -291.65], [-2738.84, -328.23], [-2740.93, -338.62], [-2745.29, -348.28], [-2750.6, -354.46], [-2758.92, -360.44], [-2776.91, -371.04]], "length": 105.67}, {"u": 53485102, "v": 53481441, "oneway": false, "points": [[-2736.08, -283.11], [-2744.48, -282.63], [-2747.87, -282.5], [-2774.11, -281.54], [-2781.1, -281.44], [-2788.99, -282.55], [-2838.03, -290.36], [-2846.34, -291.68]], "length": 111.09}, {"u": 53486800, "v": 37924361, "oneway": false, "points": [[-2182.37, -19.09], [-2108.82, -22.17], [-2098.34, -22.61], [-2025.8, -25.65], [-2005.31, -26.5], [-2001.45, -26.66], [-1919.2, -30.13], [-1908.63, -30.5]], "length": 273.98}, {"u": 53486800, "v": 53486805, "oneway": false, "points": [[-2182.37, -19.09], [-2189.78, -18.78], [-2205.76, -18.11], [-2219.82, -17.53], [-2223.11, -17.39], [-2228.77, -17.15]], "length": 46.44}, {"u": 53486800, "v": 53703066, "oneway": false, "points": [[-2182.37, -19.09], [-2182.5, -26.36], [-2184.83, -68.15], [-2185.38, -75.6], [-2185.71, -84.35]], "length": 65.35}, {"u": 53486805, "v": 53486808, "oneway": false, "points": [[-2228.77, -17.15], [-2251.23, -16.2]], "length": 22.48}, {"u": 53486805, "v": 53486800, "oneway": false, "points": [[-2228.77, -17.15], [-2223.11, -17.39], [-2219.82, -17.53], [-2205.76, -18.11], [-2189.78, -18.78], [-2182.37, -19.09]], "length": 46.44}, {"u": 53486808, "v": 53486805, "oneway": false, "points": [[-2251.23, -16.2], [-2228.77, -17.15]], "length": 22.48}, {"u": 53486808, "v": 53486814, "oneway": false, "points": [[-2251.23, -16.2], [-2256.6, -15.98], [-2259.01, -15.88], [-2328.74, -12.96], [-2331.65, -12.84], [-2404.01, -9.81], [-2429.29, -8.75], [-2439.39, -8.32]], "length": 188.32}, {"u": 53486808, "v": 2988748407, "oneway": true, "points": [[-2251.23, -16.2], [-2251.37, -25.24], [-2252.61, -55.41]], "length": 39.23}, {"u": 53486814, "v": 53486808, "oneway": false, "points": [[-2439.39, -8.32], [-2429.29, -8.75], [-2404.01, -9.81], [-2331.65, -12.84], [-2328.74, -12.96], [-2259.01, -15.88], [-2256.6, -15.98], [-2251.23, -16.2]], "length": 188.32}, {"u": 53486814, "v": 53413603, "oneway": false, "points": [[-2439.39, -8.32], [-2438.93, 0.55], [-2433.07, 114.89], [-2432.93, 119.07], [-2432.73, 125.42], [-2432.47, 133.58]], "length": 142.08}, {"u": 53486814, "v": 53438915, "oneway": false, "points": [[-2439.39, -8.32], [-2444.37, -8.1], [-2450.35, -7.91], [-2558.59, -3.93], [-2592.85, -1.34], [-2622.96, 0.96], [-2645.37, 2.21], [-2652.82, 3.93], [-2657.38, 5.73], [-2664.4, 9.79], [-2671.08, 16.06], [-2676.27, 23.75], [-2679.27, 29.29], [-2679.63, 29.96], [-2685.52, 40.93], [-2691.97, 55.03]], "length": 280.4}, {"u": 53486858, "v": 53486863, "oneway": false, "points": [[-2792.84, 41.69], [-2828.17, 43.73], [-2859.36, 45.46], [-2897.22, 47.59], [-2942.8, 49.48]], "length": 150.17}, {"u": 53486858, "v": 53438915, "oneway": false, "points": [[-2792.84, 41.69], [-2761.14, 39.97], [-2747.51, 39.84], [-2737.75, 40.78], [-2729.98, 42.44], [-2720.15, 45.34], [-2710.48, 48.83], [-2701.07, 51.88], [-2691.97, 55.03]], "length": 103.18}, {"u": 53486858, "v": 2988375113, "oneway": false, "points": [[-2792.84, 41.69], [-2793.09, 33.57], [-2793.41, 26.75], [-2793.25, 13.13]], "length": 28.58}, {"u": 53486863, "v": 8316813421, "oneway": false, "points": [[-2942.8, 49.48], [-2960.96, 49.76], [-2985.29, 50.94], [-3037.12, 52.87], [-3038.35, 53.21], [-3039.39, 54.56], [-3039.34, 56.47], [-3039.21, 57.72], [-3038.83, 63.19], [-3038.75, 65.69], [-3036.1, 149.1], [-3035.81, 158.04]], "length": 200.92}, {"u": 53486863, "v": 53486858, "oneway": false, "points": [[-2942.8, 49.48], [-2897.22, 47.59], [-2859.36, 45.46], [-2828.17, 43.73], [-2792.84, 41.69]], "length": 150.17}, {"u": 53486863, "v": 53370932, "oneway": false, "points": [[-2942.8, 49.48], [-2943.02, 42.26], [-2943.4, 32.42], [-2944.21, 10.95], [-2944.4, 5.97], [-2944.82, -2.11], [-2945.15, -8.22]], "length": 57.76}, {"u": 53487523, "v": 53487528, "oneway": false, "points": [[2865.92, 1785.37], [2867.04, 1780.17], [2882.41, 1708.6], [2884.01, 1701.17]], "length": 86.12}, {"u": 53487523, "v": 53430857, "oneway": false, "points": [[2865.92, 1785.37], [2864.44, 1792.28], [2849.82, 1860.3], [2849.28, 1862.83], [2845.67, 1872.42]], "length": 89.47}, {"u": 53487523, "v": 53611268, "oneway": false, "points": [[2865.92, 1785.37], [2858.36, 1783.41], [2791.63, 1766.39], [2785.0, 1764.7]], "length": 83.52}, {"u": 53487528, "v": 53487531, "oneway": false, "points": [[2884.01, 1701.17], [2885.02, 1696.43], [2901.8, 1618.29]], "length": 84.77}, {"u": 53487528, "v": 53487523, "oneway": false, "points": [[2884.01, 1701.17], [2882.41, 1708.6], [2867.04, 1780.17], [2865.92, 1785.37]], "length": 86.12}, {"u": 53487528, "v": 53496315, "oneway": false, "points": [[2884.01, 1701.17], [2876.25, 1699.24], [2812.57, 1683.29], [2809.45, 1682.51], [2802.77, 1680.84]], "length": 83.74}, {"u": 53487531, "v": 53487538, "oneway": false, "points": [[2901.8, 1618.29], [2902.91, 1613.15], [2916.02, 1552.11], [2917.49, 1545.26]], "length": 74.7}, {"u": 53487531, "v": 53487528, "oneway": false, "points": [[2901.8, 1618.29], [2885.02, 1696.43], [2884.01, 1701.17]], "length": 84.77}, {"u": 53487538, "v": 53487531, "oneway": false, "points": [[2917.49, 1545.26], [2916.02, 1552.11], [2902.91, 1613.15], [2901.8, 1618.29]], "length": 74.7}, {"u": 53487538, "v": 53596328, "oneway": false, "points": [[2917.49, 1545.26], [2908.53, 1544.44], [2867.1, 1540.67], [2823.64, 1538.97], [2817.36, 1538.72]], "length": 100.38}, {"u": 53488193, "v": 53616189, "oneway": false, "points": [[-1608.13, -306.41], [-1606.84, -282.39], [-1605.19, -251.59], [-1605.03, -247.64], [-1604.54, -238.19]], "length": 68.31}, {"u": 53488193, "v": 53616188, "oneway": false, "points": [[-1608.13, -306.41], [-1610.69, -349.98], [-1611.2, -358.76], [-1611.85, -369.8]], "length": 63.5}, {"u": 53488195, "v": 53488193, "oneway": true, "points": [[-1743.43, -300.27], [-1734.46, -300.73], [-1681.91, -302.9], [-1616.91, -305.99], [-1608.13, -306.41]], "length": 135.44}, {"u": 53488195, "v": 53652463, "oneway": false, "points": [[-1743.43, -300.27], [-1742.12, -268.08], [-1741.6, -245.15], [-1741.53, -241.59], [-1740.94, -231.63]], "length": 68.69}, {"u": 53488195, "v": 53668996, "oneway": false, "points": [[-1743.43, -300.27], [-1744.45, -352.54], [-1744.67, -363.1]], "length": 62.84}, {"u": 53489932, "v": 53489934, "oneway": false, "points": [[-2949.04, -172.88], [-2949.79, -167.39], [-2953.61, -139.26]], "length": 33.93}, {"u": 53489932, "v": 53461816, "oneway": false, "points": [[-2949.04, -172.88], [-2942.72, -208.35], [-2942.33, -210.53], [-2940.8, -219.11]], "length": 46.96}, {"u": 53489932, "v": 53489947, "oneway": false, "points": [[-2949.04, -172.88], [-2902.26, -165.51], [-2889.21, -163.52]], "length": 60.56}, {"u": 53489934, "v": 53489932, "oneway": false, "points": [[-2953.61, -139.26], [-2949.79, -167.39], [-2949.04, -172.88]], "length": 33.93}, {"u": 53489947, "v": 53489932, "oneway": false, "points": [[-2889.21, -163.52], [-2902.26, -165.51], [-2949.04, -172.88]], "length": 60.56}, {"u": 53490476, "v": 53649105, "oneway": false, "points": [[2383.47, 1752.06], [2385.26, 1744.47], [2389.74, 1725.44], [2391.63, 1716.34], [2393.76, 1709.48], [2396.25, 1700.45], [2396.88, 1698.13], [2400.75, 1683.97], [2405.11, 1668.05], [2407.53, 1660.33], [2411.12, 1652.29], [2414.79, 1645.82], [2418.8, 1640.01], [2420.86, 1637.02], [2425.88, 1631.27]], "length": 129.43}, {"u": 53490476, "v": 316342869, "oneway": false, "points": [[2383.47, 1752.06], [2362.8, 1746.98], [2330.27, 1738.99], [2312.62, 1734.65], [2297.73, 1734.11]], "length": 87.86}, {"u": 53490476, "v": 53490480, "oneway": false, "points": [[2383.47, 1752.06], [2406.47, 1758.43], [2471.04, 1776.34], [2476.67, 1777.9]], "length": 96.73}, {"u": 53490480, "v": 53529499, "oneway": false, "points": [[2476.67, 1777.9], [2475.23, 1783.96], [2474.4, 1787.44], [2472.8, 1794.17], [2469.97, 1805.97], [2468.23, 1811.46], [2467.5, 1814.54], [2466.7, 1817.86], [2466.19, 1822.23], [2467.01, 1826.08], [2468.98, 1830.92], [2472.02, 1836.16], [2484.42, 1854.04], [2500.39, 1880.3], [2503.54, 1885.47], [2508.41, 1893.49], [2529.38, 1926.58], [2531.14, 1928.99], [2536.15, 1935.84]], "length": 179.39}, {"u": 53490480, "v": 53490476, "oneway": false, "points": [[2476.67, 1777.9], [2471.04, 1776.34], [2406.47, 1758.43], [2383.47, 1752.06]], "length": 96.73}, {"u": 53490480, "v": 53490485, "oneway": false, "points": [[2476.67, 1777.9], [2482.51, 1779.47], [2508.47, 1786.44], [2522.54, 1790.06], [2525.04, 1790.71], [2549.49, 1797.02], [2571.12, 1802.6], [2574.96, 1803.6]], "length": 101.59}, {"u": 53490485, "v": 53522245, "oneway": false, "points": [[2574.96, 1803.6], [2573.75, 1808.51], [2572.89, 1811.96], [2566.06, 1839.5], [2557.06, 1875.91], [2554.26, 1887.22], [2551.04, 1900.22], [2545.92, 1920.9], [2543.43, 1930.96]], "length": 131.21}, {"u": 53490485, "v": 53490480, "oneway": false, "points": [[2574.96, 1803.6], [2571.12, 1802.6], [2549.49, 1797.02], [2525.04, 1790.71], [2522.54, 1790.06], [2508.47, 1786.44], [2482.51, 1779.47], [2476.67, 1777.9]], "length": 101.59}, {"u": 53490485, "v": 53490487, "oneway": false, "points": [[2574.96, 1803.6], [2579.62, 1804.73], [2588.48, 1806.91]], "length": 13.92}, {"u": 53490487, "v": 1142902939, "oneway": true, "points": [[2588.48, 1806.91], [2596.87, 1805.61], [2603.12, 1804.13], [2607.94, 1802.34], [2611.21, 1800.59], [2613.87, 1797.92], [2616.62, 1794.53], [2619.93, 1789.47], [2626.47, 1777.46], [2629.29, 1772.18]], "length": 57.61}, {"u": 53490487, "v": 53490485, "oneway": false, "points": [[2588.48, 1806.91], [2579.62, 1804.73], [2574.96, 1803.6]], "length": 13.92}, {"u": 53490491, "v": 53498417, "oneway": false, "points": [[2658.06, 1826.87], [2658.27, 1830.65], [2659.91, 1860.03], [2660.33, 1867.64], [2661.7, 1892.17], [2663.12, 1917.55], [2663.6, 1926.17]], "length": 99.45}, {"u": 53490491, "v": 3786906822, "oneway": true, "points": [[2658.06, 1826.87], [2654.89, 1826.02], [2630.28, 1819.36], [2626.82, 1818.43], [2619.27, 1816.38], [2616.78, 1815.71], [2595.36, 1809.05]], "length": 65.19}, {"u": 53490496, "v": 2925569869, "oneway": false, "points": [[2760.83, 1849.67], [2761.37, 1847.82]], "length": 1.93}, {"u": 53490496, "v": 53572027, "oneway": false, "points": [[2760.83, 1849.67], [2757.35, 1857.49], [2754.39, 1864.14], [2752.43, 1872.42], [2751.89, 1882.33], [2752.03, 1886.33], [2753.63, 1914.28], [2753.74, 1919.4]], "length": 71.39}, {"u": 53490496, "v": 53490491, "oneway": true, "points": [[2760.83, 1849.67], [2750.17, 1847.53], [2723.34, 1842.14], [2699.4, 1836.6], [2667.53, 1829.14], [2658.06, 1826.87]], "length": 105.28}, {"u": 53493114, "v": 1186826687, "oneway": true, "points": [[-198.74, -378.95], [-193.12, -385.14], [-170.29, -410.87], [-145.56, -437.43], [-141.53, -440.18], [-137.46, -442.0], [-133.84, -442.92], [-130.86, -443.18]], "length": 95.11}, {"u": 53493114, "v": 53467500, "oneway": false, "points": [[-198.74, -378.95], [-205.22, -385.46], [-226.99, -405.47], [-265.08, -440.95], [-272.6, -448.03]], "length": 101.13}, {"u": 53493128, "v": 53578514, "oneway": true, "points": [[-570.92, -717.59], [-564.73, -724.28], [-545.22, -745.54], [-543.14, -747.81], [-535.91, -755.7], [-524.8, -767.82], [-523.81, -768.89], [-509.08, -784.96], [-502.96, -791.63]], "length": 100.5}, {"u": 53493128, "v": 53493129, "oneway": false, "points": [[-570.92, -717.59], [-575.42, -721.63], [-578.3, -724.23], [-593.21, -737.63], [-600.87, -744.71], [-608.28, -751.4], [-624.72, -766.23], [-630.0, -771.01], [-642.74, -782.51], [-658.17, -796.44], [-686.43, -821.96], [-690.9, -825.99], [-693.76, -828.58], [-706.09, -839.72], [-714.39, -847.22], [-721.47, -853.6]], "length": 202.89}, {"u": 53493128, "v": 53482952, "oneway": false, "points": [[-570.92, -717.59], [-564.4, -711.75], [-547.58, -696.57], [-541.2, -690.81], [-533.16, -683.54], [-528.7, -679.51], [-518.13, -669.98], [-511.01, -663.55], [-477.87, -633.79], [-470.68, -627.33], [-460.62, -618.29], [-446.22, -605.34], [-436.48, -596.59], [-430.25, -591.03], [-427.74, -588.79], [-422.1, -583.57]], "length": 200.27}, {"u": 53493129, "v": 53578519, "oneway": false, "points": [[-721.47, -853.6], [-715.23, -860.04], [-692.64, -885.11], [-689.88, -888.04], [-686.48, -891.74], [-659.05, -921.64], [-652.88, -928.42]], "length": 101.5}, {"u": 53493129, "v": 53508174, "oneway": false, "points": [[-721.47, -853.6], [-726.41, -848.22], [-761.04, -810.43], [-769.55, -801.09], [-796.17, -771.0], [-798.1, -768.86], [-808.85, -757.22]], "length": 130.1}, {"u": 53493129, "v": 53493140, "oneway": false, "points": [[-721.47, -853.6], [-727.21, -859.15], [-753.67, -882.68], [-786.78, -912.59], [-794.19, -919.52], [-799.83, -924.88], [-809.5, -934.26], [-820.11, -943.98], [-826.18, -949.4], [-833.98, -956.56], [-844.38, -966.14], [-852.39, -973.66], [-893.0, -1011.42]], "length": 233.11}, {"u": 53493129, "v": 53493128, "oneway": false, "points": [[-721.47, -853.6], [-714.39, -847.22], [-706.09, -839.72], [-693.76, -828.58], [-690.9, -825.99], [-686.43, -821.96], [-658.17, -796.44], [-642.74, -782.51], [-630.0, -771.01], [-624.72, -766.23], [-608.28, -751.4], [-600.87, -744.71], [-593.21, -737.63], [-578.3, -724.23], [-575.42, -721.63], [-570.92, -717.59]], "length": 202.89}, {"u": 53493140, "v": 1179967125, "oneway": true, "points": [[-893.0, -1011.42], [-887.04, -1018.6], [-824.45, -1089.71]], "length": 104.06}, {"u": 53493140, "v": 53493129, "oneway": false, "points": [[-893.0, -1011.42], [-852.39, -973.66], [-844.38, -966.14], [-833.98, -956.56], [-826.18, -949.4], [-820.11, -943.98], [-809.5, -934.26], [-799.83, -924.88], [-794.19, -919.52], [-786.78, -912.59], [-753.67, -882.68], [-727.21, -859.15], [-721.47, -853.6]], "length": 233.11}, {"u": 53493140, "v": 13056348949, "oneway": false, "points": [[-893.0, -1011.42], [-910.54, -1027.49], [-912.89, -1029.58], [-919.33, -1035.3]], "length": 35.54}, {"u": 53494572, "v": 53494580, "oneway": false, "points": [[2109.35, 1035.22], [2116.53, 1027.33], [2170.37, 968.21], [2177.07, 960.85]], "length": 100.59}, {"u": 53494572, "v": 53560789, "oneway": false, "points": [[2109.35, 1035.22], [2101.99, 1028.62], [2086.9, 1015.06], [1965.45, 905.92], [1959.95, 900.98]], "length": 200.85}, {"u": 53494572, "v": 2707919868, "oneway": false, "points": [[2109.35, 1035.22], [2117.0, 1042.22], [2198.2, 1116.56], [2203.58, 1121.49]], "length": 127.76}, {"u": 53494580, "v": 53494572, "oneway": false, "points": [[2177.07, 960.85], [2170.37, 968.21], [2116.53, 1027.33], [2109.35, 1035.22]], "length": 100.59}, {"u": 53494580, "v": 53558125, "oneway": false, "points": [[2177.07, 960.85], [2170.54, 954.94], [2035.86, 833.06], [2033.46, 830.88], [2027.07, 825.11]], "length": 202.3}, {"u": 53494580, "v": 53558139, "oneway": false, "points": [[2177.07, 960.85], [2184.52, 967.61], [2265.09, 1040.5], [2269.95, 1045.16]], "length": 125.43}, {"u": 53494580, "v": 53494585, "oneway": false, "points": [[2177.07, 960.85], [2182.51, 954.83], [2237.76, 893.69], [2244.07, 886.73]], "length": 99.92}, {"u": 53494585, "v": 53558139, "oneway": false, "points": [[2244.07, 886.73], [2250.57, 892.99], [2254.95, 897.2], [2311.37, 974.08], [2318.29, 985.56], [2319.06, 989.76], [2318.32, 992.34], [2317.23, 994.15], [2276.62, 1037.44], [2274.92, 1039.25], [2271.51, 1042.89], [2269.95, 1045.16]], "length": 202.52}, {"u": 53494585, "v": 53560795, "oneway": false, "points": [[2244.07, 886.73], [2237.17, 880.25], [2209.93, 854.68], [2100.26, 757.44], [2095.3, 753.03]], "length": 200.03}, {"u": 53494585, "v": 53494580, "oneway": false, "points": [[2244.07, 886.73], [2237.76, 893.69], [2182.51, 954.83], [2177.07, 960.85]], "length": 99.92}, {"u": 53496307, "v": 53498440, "oneway": false, "points": [[2635.71, 1637.51], [2638.1, 1683.02]], "length": 45.58}, {"u": 53496307, "v": 53496315, "oneway": false, "points": [[2635.71, 1637.51], [2644.22, 1639.86], [2647.19, 1640.6], [2707.82, 1655.72], [2729.5, 1661.78], [2793.01, 1678.3], [2795.44, 1678.94], [2802.77, 1680.84]], "length": 172.6}, {"u": 53496307, "v": 53461443, "oneway": false, "points": [[2635.71, 1637.51], [2633.81, 1605.44], [2631.34, 1564.01], [2630.74, 1553.87], [2629.89, 1539.56], [2629.39, 1531.31]], "length": 106.39}, {"u": 53496315, "v": 53487528, "oneway": false, "points": [[2802.77, 1680.84], [2809.45, 1682.51], [2812.57, 1683.29], [2876.25, 1699.24], [2884.01, 1701.17]], "length": 83.74}, {"u": 53496315, "v": 53496307, "oneway": false, "points": [[2802.77, 1680.84], [2795.44, 1678.94], [2793.01, 1678.3], [2729.5, 1661.78], [2707.82, 1655.72], [2647.19, 1640.6], [2644.22, 1639.86], [2635.71, 1637.51]], "length": 172.6}, {"u": 53496315, "v": 53596328, "oneway": false, "points": [[2802.77, 1680.84], [2804.2, 1674.88], [2811.09, 1646.27], [2813.72, 1620.96], [2814.03, 1600.06], [2815.3, 1569.9], [2816.67, 1549.24], [2816.79, 1547.39], [2817.36, 1538.72]], "length": 143.34}, {"u": 53496315, "v": 53611268, "oneway": false, "points": [[2802.77, 1680.84], [2801.25, 1688.44], [2796.19, 1713.59], [2786.92, 1755.93], [2786.39, 1758.36], [2785.0, 1764.7]], "length": 85.72}, {"u": 53498225, "v": 53498229, "oneway": false, "points": [[2091.4, 2210.47], [2084.88, 2216.73], [2027.83, 2275.93], [2021.92, 2282.08]], "length": 99.78}, {"u": 53498225, "v": 53538734, "oneway": false, "points": [[2091.4, 2210.47], [2097.8, 2203.94], [2155.72, 2144.38], [2161.66, 2138.3]], "length": 100.72}, {"u": 53498225, "v": 53668900, "oneway": false, "points": [[2091.4, 2210.47], [2084.7, 2204.23], [1954.27, 2075.77], [1948.24, 2069.86]], "length": 200.67}, {"u": 53498225, "v": 1706427648, "oneway": false, "points": [[2091.4, 2210.47], [2097.85, 2216.73], [2229.13, 2344.21], [2236.36, 2351.27]], "length": 202.08}, {"u": 53498229, "v": 53640713, "oneway": false, "points": [[2021.92, 2282.08], [2015.32, 2276.39]], "length": 8.71}, {"u": 53498229, "v": 446196406, "oneway": false, "points": [[2021.92, 2282.08], [2016.66, 2287.86], [1982.1, 2323.12], [1979.56, 2325.71], [1977.92, 2327.37], [1965.17, 2340.38], [1958.82, 2346.85], [1934.19, 2369.4], [1926.24, 2376.5]], "length": 134.48}, {"u": 53498229, "v": 53498225, "oneway": false, "points": [[2021.92, 2282.08], [2027.83, 2275.93], [2084.88, 2216.73], [2091.4, 2210.47]], "length": 99.78}, {"u": 53498229, "v": 349368476, "oneway": false, "points": [[2021.92, 2282.08], [2028.11, 2288.0], [2050.74, 2309.31], [2109.84, 2367.5], [2159.56, 2416.36], [2166.22, 2422.88]], "length": 201.62}, {"u": 53498398, "v": 53498412, "oneway": false, "points": [[2682.28, 2264.82], [2682.15, 2258.45], [2681.99, 2255.53], [2673.97, 2111.93]], "length": 153.12}, {"u": 53498398, "v": 53611260, "oneway": false, "points": [[2682.28, 2264.82], [2688.37, 2264.63], [2763.48, 2260.31], [2771.37, 2259.86]], "length": 89.24}, {"u": 53498398, "v": 2627868774, "oneway": false, "points": [[2682.28, 2264.82], [2675.79, 2265.17], [2659.09, 2264.37], [2644.15, 2255.57], [2636.4, 2253.95], [2632.06, 2253.72], [2625.01, 2253.35]], "length": 59.89}, {"u": 53498412, "v": 53498415, "oneway": false, "points": [[2673.97, 2111.93], [2672.44, 2084.55], [2671.89, 2074.64]], "length": 37.36}, {"u": 53498412, "v": 53498398, "oneway": false, "points": [[2673.97, 2111.93], [2681.99, 2255.53], [2682.15, 2258.45], [2682.28, 2264.82]], "length": 153.12}, {"u": 53498412, "v": 53529508, "oneway": false, "points": [[2673.97, 2111.93], [2668.34, 2115.3], [2651.83, 2125.21]], "length": 25.81}, {"u": 53498415, "v": 53498417, "oneway": false, "points": [[2671.89, 2074.64], [2671.54, 2068.53], [2669.87, 2038.62], [2666.98, 1986.66], [2663.95, 1932.35], [2663.6, 1926.17]], "length": 148.7}, {"u": 53498415, "v": 53498412, "oneway": false, "points": [[2671.89, 2074.64], [2672.44, 2084.55], [2673.97, 2111.93]], "length": 37.36}, {"u": 53498415, "v": 53604832, "oneway": false, "points": [[2671.89, 2074.64], [2678.69, 2074.28], [2753.87, 2071.54], [2761.75, 2071.25]], "length": 89.92}, {"u": 53498417, "v": 53490491, "oneway": false, "points": [[2663.6, 1926.17], [2663.12, 1917.55], [2661.7, 1892.17], [2660.33, 1867.64], [2659.91, 1860.03], [2658.27, 1830.65], [2658.06, 1826.87]], "length": 99.45}, {"u": 53498417, "v": 53498415, "oneway": false, "points": [[2663.6, 1926.17], [2663.95, 1932.35], [2666.98, 1986.66], [2669.87, 2038.62], [2671.54, 2068.53], [2671.89, 2074.64]], "length": 148.7}, {"u": 53498417, "v": 53572027, "oneway": false, "points": [[2663.6, 1926.17], [2670.98, 1925.37], [2673.18, 1925.16], [2692.35, 1923.23], [2746.18, 1919.86], [2753.74, 1919.4]], "length": 90.41}, {"u": 53498417, "v": 53522245, "oneway": false, "points": [[2663.6, 1926.17], [2657.9, 1926.32], [2655.26, 1926.39], [2549.99, 1929.56], [2543.43, 1930.96]], "length": 120.37}, {"u": 53498437, "v": 3786906803, "oneway": false, "points": [[2638.63, 1729.68], [2645.71, 1730.0]], "length": 7.09}, {"u": 53498437, "v": 3786906785, "oneway": true, "points": [[2638.63, 1729.68], [2638.67, 1721.28], [2638.62, 1713.52], [2638.29, 1704.86], [2638.5, 1698.45], [2639.56, 1694.54]], "length": 35.29}, {"u": 53498440, "v": 53496307, "oneway": false, "points": [[2638.1, 1683.02], [2635.71, 1637.51]], "length": 45.58}, {"u": 53498440, "v": 3786906785, "oneway": false, "points": [[2638.1, 1683.02], [2639.56, 1694.54]], "length": 11.61}, {"u": 53498440, "v": 53537040, "oneway": false, "points": [[2638.1, 1683.02], [2632.37, 1682.9], [2629.49, 1682.03], [2628.71, 1681.68], [2626.25, 1680.58], [2623.72, 1679.24], [2562.17, 1637.91], [2500.02, 1594.64], [2454.7, 1564.46], [2437.42, 1552.27]], "length": 240.62}, {"u": 53498447, "v": 53568332, "oneway": false, "points": [[2624.79, 1448.54], [2633.83, 1448.86], [2636.31, 1448.91], [2716.92, 1451.86], [2723.62, 1452.1]], "length": 98.89}, {"u": 53498447, "v": 53558152, "oneway": false, "points": [[2624.79, 1448.54], [2622.87, 1442.99], [2622.58, 1442.16], [2612.62, 1429.88], [2580.82, 1385.31]], "length": 77.31}, {"u": 53498447, "v": 53461443, "oneway": false, "points": [[2624.79, 1448.54], [2627.62, 1488.25], [2629.07, 1523.52], [2629.39, 1531.31]], "length": 82.91}, {"u": 53499266, "v": 53578394, "oneway": false, "points": [[1605.55, 2734.25], [1599.53, 2734.63], [1596.51, 2735.17], [1593.76, 2736.42], [1587.56, 2739.24], [1549.12, 2758.56], [1545.68, 2760.29], [1519.76, 2773.85], [1509.88, 2779.02], [1500.94, 2783.7]], "length": 116.3}, {"u": 53499266, "v": 496686159, "oneway": false, "points": [[1605.55, 2734.25], [1605.25, 2728.16], [1603.95, 2701.24], [1602.02, 2662.47], [1601.45, 2651.12], [1600.44, 2626.27], [1600.34, 2623.74], [1599.12, 2593.97], [1597.82, 2561.85], [1596.61, 2532.05], [1596.51, 2529.77], [1595.62, 2507.91], [1594.68, 2485.46]], "length": 249.03}, {"u": 53499287, "v": 53441265, "oneway": false, "points": [[-1014.74, 169.62], [-1014.9, 166.08], [-1015.47, 152.93], [-1015.74, 146.76], [-1017.2, 113.2], [-1017.24, 112.37], [-1017.78, 99.95], [-1018.46, 84.31], [-1019.74, 55.08], [-1020.76, 31.66], [-1020.82, 30.24], [-1021.42, 21.05]], "length": 148.72}, {"u": 53499299, "v": 2859245573, "oneway": false, "points": [[-1089.01, -694.31], [-1090.36, -686.06], [-1089.33, -663.87], [-1085.17, -583.05], [-1084.87, -578.31], [-1082.69, -533.9], [-1082.55, -531.21], [-1082.14, -522.73]], "length": 171.9}, {"u": 53503712, "v": 53407747, "oneway": false, "points": [[2325.94, 1779.39], [2318.58, 1783.28], [2309.97, 1787.62], [2308.2, 1789.08], [2306.87, 1790.39], [2301.53, 1795.61], [2288.34, 1808.53], [2279.1, 1817.57], [2249.95, 1848.55], [2245.87, 1852.77], [2234.41, 1864.84], [2228.45, 1871.13]], "length": 134.71}, {"u": 53503712, "v": 53480554, "oneway": false, "points": [[2325.94, 1779.39], [2327.69, 1782.26], [2328.64, 1783.83], [2339.67, 1801.98], [2350.33, 1819.52], [2352.72, 1823.44], [2371.66, 1853.66], [2373.76, 1857.12], [2377.71, 1863.6]], "length": 98.85}, {"u": 53503712, "v": 316342869, "oneway": false, "points": [[2325.94, 1779.39], [2317.93, 1766.52], [2304.68, 1745.27], [2297.73, 1734.11]], "length": 53.35}, {"u": 53503834, "v": 53709531, "oneway": false, "points": [[-1890.95, -1057.17], [-1891.11, -1062.3], [-1892.43, -1104.38], [-1892.52, -1107.05], [-1892.87, -1118.17]], "length": 61.03}, {"u": 53503834, "v": 53643765, "oneway": false, "points": [[-1890.95, -1057.17], [-1899.04, -1057.07], [-1927.49, -1056.5], [-1945.7, -1055.97], [-1951.54, -1055.83], [-2000.41, -1054.17], [-2011.78, -1053.79], [-2019.78, -1053.48]], "length": 128.89}, {"u": 53503834, "v": 53680515, "oneway": false, "points": [[-1890.95, -1057.17], [-1883.05, -1057.42], [-1845.76, -1058.28]], "length": 45.19}, {"u": 53503843, "v": 53503849, "oneway": false, "points": [[-1895.73, -1238.33], [-1896.0, -1249.97], [-1897.09, -1298.52], [-1897.85, -1325.26], [-1898.36, -1348.38], [-1898.42, -1351.1], [-1898.86, -1359.85]], "length": 121.57}, {"u": 53503843, "v": 53709531, "oneway": false, "points": [[-1895.73, -1238.33], [-1895.5, -1227.52], [-1894.44, -1178.34], [-1893.16, -1129.43], [-1892.87, -1118.17]], "length": 120.19}, {"u": 53503843, "v": 53643772, "oneway": false, "points": [[-1895.73, -1238.33], [-1903.55, -1238.09], [-2015.97, -1235.43], [-2023.77, -1235.22]], "length": 128.08}, {"u": 53503843, "v": 53576829, "oneway": false, "points": [[-1895.73, -1238.33], [-1887.45, -1238.61], [-1775.82, -1241.42], [-1775.05, -1241.44], [-1766.52, -1241.81]], "length": 129.27}, {"u": 53503849, "v": 53503855, "oneway": false, "points": [[-1898.86, -1359.85], [-1898.96, -1371.04], [-1899.72, -1415.5]], "length": 55.66}, {"u": 53503849, "v": 53503843, "oneway": false, "points": [[-1898.86, -1359.85], [-1898.42, -1351.1], [-1898.36, -1348.38], [-1897.85, -1325.26], [-1897.09, -1298.52], [-1896.0, -1249.97], [-1895.73, -1238.33]], "length": 121.57}, {"u": 53503849, "v": 53621269, "oneway": false, "points": [[-1898.86, -1359.85], [-1906.85, -1359.71], [-2018.9, -1356.89], [-2027.21, -1356.68]], "length": 128.39}, {"u": 53503849, "v": 53576831, "oneway": false, "points": [[-1898.86, -1359.85], [-1891.56, -1360.05], [-1863.09, -1360.75], [-1831.3, -1361.71], [-1779.24, -1363.14], [-1777.1, -1363.2], [-1769.48, -1363.33]], "length": 129.43}, {"u": 53503855, "v": 53503849, "oneway": false, "points": [[-1899.72, -1415.5], [-1898.96, -1371.04], [-1898.86, -1359.85]], "length": 55.66}, {"u": 53503864, "v": 3811323395, "oneway": false, "points": [[-1889.65, -850.04], [-1889.67, -859.23], [-1889.7, -860.7], [-1889.87, -867.83], [-1889.91, -869.39], [-1890.23, -882.69], [-1890.56, -894.45], [-1891.3, -922.84]], "length": 72.82}, {"u": 53503864, "v": 53472268, "oneway": true, "points": [[-1889.65, -850.04], [-1889.49, -840.7], [-1889.35, -832.94], [-1888.69, -793.73], [-1888.32, -780.41], [-1887.9, -768.77], [-1887.42, -745.16], [-1887.23, -739.99]], "length": 110.07}, {"u": 53503864, "v": 53545894, "oneway": false, "points": [[-1889.65, -850.04], [-1898.01, -849.65], [-1913.98, -848.91], [-1915.67, -848.84], [-1962.23, -846.68]], "length": 72.65}, {"u": 53503864, "v": 53576821, "oneway": false, "points": [[-1889.65, -850.04], [-1881.34, -850.42], [-1871.71, -850.86], [-1839.34, -852.36], [-1835.76, -852.53], [-1815.44, -853.47], [-1808.44, -853.79], [-1798.73, -854.24], [-1765.79, -855.76], [-1756.79, -856.17]], "length": 133.0}, {"u": 53504312, "v": 53504327, "oneway": false, "points": [[-2550.41, -545.22], [-2560.9, -543.95], [-2626.07, -542.1], [-2634.04, -541.76]], "length": 83.74}, {"u": 53504312, "v": 53516186, "oneway": false, "points": [[-2550.41, -545.22], [-2550.2, -536.39], [-2547.87, -457.06], [-2546.41, -409.0], [-2546.15, -400.14]], "length": 145.14}, {"u": 53504312, "v": 4214349299, "oneway": false, "points": [[-2550.41, -545.22], [-2550.8, -552.16], [-2556.11, -718.93], [-2556.41, -728.02]], "length": 182.9}, {"u": 53504327, "v": 53504329, "oneway": false, "points": [[-2634.04, -541.76], [-2641.66, -541.46], [-2772.46, -536.4], [-2779.3, -536.14]], "length": 145.37}, {"u": 53504327, "v": 53504312, "oneway": false, "points": [[-2634.04, -541.76], [-2626.07, -542.1], [-2560.9, -543.95], [-2550.41, -545.22]], "length": 83.74}, {"u": 53504327, "v": 53684770, "oneway": false, "points": [[-2634.04, -541.76], [-2633.81, -533.83], [-2629.93, -405.99], [-2629.69, -397.82]], "length": 144.0}, {"u": 53504327, "v": 53578682, "oneway": false, "points": [[-2634.04, -541.76], [-2634.23, -550.14], [-2636.0, -625.23], [-2636.24, -633.47]], "length": 91.74}, {"u": 53504329, "v": 53504327, "oneway": false, "points": [[-2779.3, -536.14], [-2772.46, -536.4], [-2641.66, -541.46], [-2634.04, -541.76]], "length": 145.37}, {"u": 53504329, "v": 53514812, "oneway": false, "points": [[-2779.3, -536.14], [-2778.56, -476.36], [-2777.48, -464.5]], "length": 71.69}, {"u": 53504329, "v": 53514806, "oneway": false, "points": [[-2779.3, -536.14], [-2780.35, -578.12], [-2782.49, -619.02], [-2782.71, -627.02]], "length": 90.95}, {"u": 53508174, "v": 53493129, "oneway": false, "points": [[-808.85, -757.22], [-798.1, -768.86], [-796.17, -771.0], [-769.55, -801.09], [-761.04, -810.43], [-726.41, -848.22], [-721.47, -853.6]], "length": 130.1}, {"u": 53508174, "v": 13151160466, "oneway": false, "points": [[-808.85, -757.22], [-816.43, -763.88], [-833.62, -778.99], [-843.21, -787.42], [-854.82, -797.62], [-865.62, -807.12], [-900.72, -837.98], [-902.51, -839.55], [-914.47, -850.07], [-917.76, -852.95], [-918.96, -854.01]], "length": 146.6}, {"u": 53508174, "v": 53615260, "oneway": false, "points": [[-808.85, -757.22], [-801.78, -751.35], [-782.94, -734.22], [-778.15, -729.88], [-774.12, -726.18], [-745.66, -700.27], [-737.54, -692.88], [-721.75, -678.5], [-714.04, -671.36], [-704.64, -662.93], [-695.96, -655.0], [-682.08, -642.33], [-670.14, -631.46], [-667.78, -629.35], [-663.94, -625.83], [-658.72, -621.11]], "length": 202.66}, {"u": 53508174, "v": 53508176, "oneway": false, "points": [[-808.85, -757.22], [-820.08, -744.87], [-821.29, -743.54], [-863.41, -696.99], [-866.17, -693.91], [-891.11, -666.38], [-896.94, -659.93]], "length": 131.24}, {"u": 53508176, "v": 2859245506, "oneway": false, "points": [[-896.94, -659.93], [-903.37, -652.83], [-936.17, -616.31], [-938.48, -613.0], [-940.04, -609.86], [-941.2, -605.72], [-941.5, -600.37], [-941.25, -591.67], [-941.25, -589.62], [-940.83, -570.02], [-940.25, -540.71], [-940.2, -538.19], [-939.96, -529.86]], "length": 146.4}, {"u": 53508176, "v": 53604267, "oneway": false, "points": [[-896.94, -659.93], [-903.67, -666.06], [-905.75, -667.96], [-944.97, -703.79]], "length": 65.04}, {"u": 53508176, "v": 53604263, "oneway": false, "points": [[-896.94, -659.93], [-890.49, -654.06], [-888.54, -652.28], [-840.21, -608.29], [-836.97, -605.34], [-825.1, -594.54], [-808.09, -579.05], [-803.91, -575.25], [-789.08, -561.74], [-778.72, -552.31], [-756.65, -532.2], [-754.58, -530.33], [-752.39, -528.32], [-747.7, -524.07]], "length": 201.82}, {"u": 53508176, "v": 53508174, "oneway": false, "points": [[-896.94, -659.93], [-891.11, -666.38], [-866.17, -693.91], [-863.41, -696.99], [-821.29, -743.54], [-820.08, -744.87], [-808.85, -757.22]], "length": 131.24}, {"u": 53509875, "v": 53616173, "oneway": false, "points": [[-1685.42, -675.41], [-1622.24, -678.11]], "length": 63.23}, {"u": 53509875, "v": 53509878, "oneway": false, "points": [[-1685.42, -675.41], [-1709.73, -674.37], [-1714.81, -674.16], [-1741.96, -673.0], [-1743.71, -672.93], [-1752.17, -672.57]], "length": 66.82}, {"u": 53509875, "v": 53646449, "oneway": false, "points": [[-1685.42, -675.41], [-1685.08, -666.8], [-1683.3, -630.73], [-1681.82, -600.63]], "length": 74.87}, {"u": 53509878, "v": 53545473, "oneway": false, "points": [[-1752.17, -672.57], [-1753.23, -736.17]], "length": 63.61}, {"u": 53509878, "v": 53509875, "oneway": false, "points": [[-1752.17, -672.57], [-1743.71, -672.93], [-1741.96, -673.0], [-1714.81, -674.16], [-1709.73, -674.37], [-1685.42, -675.41]], "length": 66.82}, {"u": 53509878, "v": 53509962, "oneway": false, "points": [[-1752.17, -672.57], [-1751.95, -661.76], [-1751.89, -656.86], [-1751.79, -648.05]], "length": 24.52}, {"u": 53509962, "v": 4139816155, "oneway": false, "points": [[-1751.79, -648.05], [-1760.55, -647.6], [-1764.24, -647.41], [-1784.28, -646.39], [-1799.13, -645.63], [-1808.12, -645.18], [-1827.27, -644.19], [-1829.02, -644.1], [-1857.64, -642.64], [-1875.15, -641.75], [-1884.79, -641.28]], "length": 133.17}, {"u": 53509962, "v": 53509878, "oneway": false, "points": [[-1751.79, -648.05], [-1751.89, -656.86], [-1751.95, -661.76], [-1752.17, -672.57]], "length": 24.52}, {"u": 53509962, "v": 53668988, "oneway": false, "points": [[-1751.79, -648.05], [-1751.42, -609.59], [-1750.62, -596.07], [-1750.33, -586.35], [-1749.67, -564.6], [-1749.57, -534.46], [-1749.25, -499.83], [-1749.08, -494.59], [-1748.91, -488.3]], "length": 159.79}, {"u": 53510000, "v": 1426438835, "oneway": false, "points": [[-2154.48, -627.78], [-2154.27, -617.75], [-2153.51, -602.23]], "length": 25.57}, {"u": 53510000, "v": 53483907, "oneway": false, "points": [[-2154.48, -627.78], [-2154.78, -635.77], [-2154.94, -640.27], [-2155.55, -664.82], [-2156.73, -710.17], [-2156.14, -726.81], [-2156.36, -732.32], [-2157.53, -751.74], [-2157.84, -763.01], [-2157.72, -770.4], [-2157.54, -776.63], [-2156.97, -784.6], [-2157.07, -789.23], [-2157.15, -793.14], [-2158.15, -827.23], [-2158.04, -836.72]], "length": 209.07}, {"u": 53510000, "v": 1180005831, "oneway": false, "points": [[-2154.48, -627.78], [-2144.36, -628.38], [-2141.11, -628.54], [-2113.11, -629.93], [-2093.16, -630.92], [-2078.51, -631.65], [-2077.16, -631.72], [-2057.42, -632.7], [-2054.75, -632.83], [-2028.9, -634.12], [-2019.39, -634.59]], "length": 135.26}, {"u": 53510799, "v": 53510828, "oneway": false, "points": [[1254.69, 2453.4], [1252.95, 2466.79], [1256.33, 2482.59], [1262.68, 2499.75], [1277.24, 2533.57], [1303.52, 2587.4], [1325.67, 2627.67], [1337.52, 2646.46], [1342.09, 2652.55], [1351.1, 2663.19], [1372.95, 2687.02], [1383.94, 2698.38], [1397.14, 2707.01], [1405.29, 2713.01]], "length": 308.43}, {"u": 53510799, "v": 53555070, "oneway": false, "points": [[1254.69, 2453.4], [1247.33, 2463.95], [1240.85, 2471.02], [1232.41, 2477.71], [1218.82, 2486.76], [1198.73, 2499.22], [1183.64, 2507.32], [1174.61, 2516.35]], "length": 103.08}, {"u": 53510799, "v": 496686202, "oneway": false, "points": [[1254.69, 2453.4], [1260.8, 2444.67], [1277.49, 2427.31], [1295.4, 2414.77], [1303.03, 2408.8]], "length": 66.29}, {"u": 53510828, "v": 53510799, "oneway": false, "points": [[1405.29, 2713.01], [1397.14, 2707.01], [1383.94, 2698.38], [1372.95, 2687.02], [1351.1, 2663.19], [1342.09, 2652.55], [1337.52, 2646.46], [1325.67, 2627.67], [1303.52, 2587.4], [1277.24, 2533.57], [1262.68, 2499.75], [1256.33, 2482.59], [1252.95, 2466.79], [1254.69, 2453.4]], "length": 308.43}, {"u": 53510828, "v": 53578383, "oneway": false, "points": [[1405.29, 2713.01], [1452.87, 2709.54], [1460.07, 2709.02]], "length": 54.93}, {"u": 53510828, "v": 53555070, "oneway": false, "points": [[1405.29, 2713.01], [1383.18, 2714.52], [1326.28, 2715.79], [1290.49, 2717.14], [1275.98, 2716.88], [1266.91, 2715.69], [1256.1, 2713.55], [1246.76, 2708.93], [1241.84, 2705.05], [1239.26, 2703.03], [1223.42, 2687.02], [1208.45, 2665.0], [1203.7, 2658.02], [1194.25, 2640.5], [1187.27, 2621.03], [1180.08, 2594.44], [1173.85, 2575.82], [1171.09, 2567.58], [1169.07, 2560.94], [1166.6, 2552.81], [1165.15, 2541.63], [1166.22, 2533.59], [1168.7, 2525.97], [1172.7, 2518.45], [1173.03, 2517.84], [1174.61, 2516.35]], "length": 377.8}, {"u": 53511571, "v": 2634693278, "oneway": false, "points": [[-1420.96, -1491.31], [-1424.32, -1612.86]], "length": 121.6}, {"u": 53511571, "v": 1179795897, "oneway": false, "points": [[-1420.96, -1491.31], [-1420.21, -1416.98], [-1419.67, -1384.71], [-1420.77, -1377.27], [-1422.79, -1371.55], [-1427.08, -1368.81], [-1435.9, -1367.65], [-1443.66, -1367.47]], "length": 141.94}, {"u": 53511571, "v": 1179796106, "oneway": false, "points": [[-1420.96, -1491.31], [-1429.2, -1491.24], [-1441.8, -1491.08], [-1467.47, -1490.34], [-1478.2, -1490.03], [-1481.03, -1489.95], [-1482.62, -1489.91], [-1489.92, -1489.72], [-1492.07, -1489.66], [-1500.12, -1489.44]], "length": 79.18}, {"u": 53511582, "v": 53511589, "oneway": false, "points": [[-1642.93, -1486.06], [-1651.92, -1485.98], [-1652.13, -1485.98], [-1763.97, -1484.06], [-1773.13, -1483.91]], "length": 130.22}, {"u": 53511582, "v": 1179796096, "oneway": false, "points": [[-1642.93, -1486.06], [-1634.26, -1486.21], [-1602.47, -1486.78], [-1558.6, -1488.1], [-1554.9, -1488.21], [-1529.71, -1488.88], [-1524.28, -1489.03], [-1522.24, -1489.09], [-1515.06, -1489.29]], "length": 127.91}, {"u": 53511582, "v": 53621256, "oneway": false, "points": [[-1642.93, -1486.06], [-1642.6, -1475.77], [-1642.45, -1471.15], [-1641.05, -1427.02], [-1639.64, -1377.08], [-1639.58, -1375.0], [-1639.32, -1365.38]], "length": 120.73}, {"u": 53511582, "v": 53529686, "oneway": false, "points": [[-1642.93, -1486.06], [-1643.12, -1497.84], [-1643.17, -1501.04], [-1643.93, -1547.64], [-1645.11, -1597.7], [-1645.36, -1608.09]], "length": 122.05}, {"u": 53511589, "v": 53511582, "oneway": false, "points": [[-1773.13, -1483.91], [-1763.97, -1484.06], [-1652.13, -1485.98], [-1651.92, -1485.98], [-1642.93, -1486.06]], "length": 130.22}, {"u": 53511589, "v": 53576831, "oneway": false, "points": [[-1773.13, -1483.91], [-1772.74, -1472.75], [-1770.97, -1423.13], [-1769.74, -1373.89], [-1769.48, -1363.33]], "length": 120.64}, {"u": 53511589, "v": 53529689, "oneway": false, "points": [[-1773.13, -1483.91], [-1773.37, -1495.17], [-1774.36, -1543.91], [-1775.23, -1595.42], [-1775.39, -1605.34]], "length": 121.45}, {"u": 53511589, "v": 53511593, "oneway": false, "points": [[-1773.13, -1483.91], [-1781.11, -1483.71], [-2008.64, -1477.58]], "length": 235.59}, {"u": 53511593, "v": 53529692, "oneway": false, "points": [[-2008.64, -1477.58], [-2008.85, -1488.83], [-2010.78, -1588.84], [-2011.08, -1596.42]], "length": 118.87}, {"u": 53511593, "v": 53511598, "oneway": false, "points": [[-2008.64, -1477.58], [-2014.28, -1477.36], [-2029.43, -1476.87]], "length": 20.81}, {"u": 53511593, "v": 53511589, "oneway": false, "points": [[-2008.64, -1477.58], [-1781.11, -1483.71], [-1773.13, -1483.91]], "length": 235.59}, {"u": 53511598, "v": 53511603, "oneway": false, "points": [[-2029.43, -1476.87], [-2114.61, -1475.04]], "length": 85.2}, {"u": 53511598, "v": 53621269, "oneway": false, "points": [[-2029.43, -1476.87], [-2029.4, -1466.33], [-2027.42, -1368.02], [-2027.41, -1367.41], [-2027.21, -1356.68]], "length": 120.21}, {"u": 53511598, "v": 53511593, "oneway": false, "points": [[-2029.43, -1476.87], [-2014.28, -1477.36], [-2008.64, -1477.58]], "length": 20.81}, {"u": 53511603, "v": 53511598, "oneway": false, "points": [[-2114.61, -1475.04], [-2029.43, -1476.87]], "length": 85.2}, {"u": 53511603, "v": 53575900, "oneway": false, "points": [[-2114.61, -1475.04], [-2114.91, -1486.32], [-2116.58, -1558.01]], "length": 82.99}, {"u": 53511603, "v": 3812685612, "oneway": false, "points": [[-2114.61, -1475.04], [-2148.73, -1474.09], [-2166.99, -1473.58], [-2176.24, -1473.32]], "length": 61.65}, {"u": 53511694, "v": 1180187620, "oneway": false, "points": [[-902.49, -3083.55], [-899.54, -3060.96], [-896.57, -3038.16], [-895.14, -3027.16], [-892.13, -3003.71], [-888.69, -2976.87], [-886.26, -2957.59], [-886.04, -2956.02], [-885.03, -2946.9]], "length": 137.76}, {"u": 53511694, "v": 53590668, "oneway": false, "points": [[-902.49, -3083.55], [-893.0, -3084.01], [-890.96, -3084.11], [-851.89, -3086.02], [-847.48, -3086.24], [-795.51, -3088.79]], "length": 107.11}, {"u": 53511712, "v": 53434867, "oneway": false, "points": [[-945.99, -2751.31], [-935.33, -2751.06], [-931.49, -2750.97], [-924.62, -2750.81], [-857.0, -2754.11], [-847.46, -2754.57]], "length": 98.63}, {"u": 53511712, "v": 53511723, "oneway": false, "points": [[-945.99, -2751.31], [-955.89, -2732.47], [-979.01, -2702.42], [-984.16, -2695.74], [-1006.25, -2669.12], [-1024.39, -2648.63], [-1033.75, -2637.83]], "length": 143.89}, {"u": 53511712, "v": 53463532, "oneway": false, "points": [[-945.99, -2751.31], [-943.44, -2757.0], [-928.37, -2790.53], [-923.87, -2800.55], [-919.33, -2810.64], [-910.53, -2830.2], [-900.5, -2852.52], [-892.49, -2870.32]], "length": 130.48}, {"u": 53511723, "v": 1180187596, "oneway": false, "points": [[-1033.75, -2637.83], [-1045.03, -2643.81]], "length": 12.76}, {"u": 53511723, "v": 53434865, "oneway": false, "points": [[-1033.75, -2637.83], [-1024.04, -2632.72], [-1021.33, -2632.74], [-1019.09, -2632.68], [-1015.0, -2632.59], [-972.88, -2632.46], [-929.86, -2633.76], [-850.89, -2637.02], [-842.82, -2637.35]], "length": 192.29}, {"u": 53511723, "v": 53511712, "oneway": false, "points": [[-1033.75, -2637.83], [-1024.39, -2648.63], [-1006.25, -2669.12], [-984.16, -2695.74], [-979.01, -2702.42], [-955.89, -2732.47], [-945.99, -2751.31]], "length": 143.89}, {"u": 53514806, "v": 53504329, "oneway": false, "points": [[-2782.71, -627.02], [-2782.49, -619.02], [-2780.35, -578.12], [-2779.3, -536.14]], "length": 90.95}, {"u": 53514806, "v": 1944740975, "oneway": false, "points": [[-2782.71, -627.02], [-2782.97, -635.51], [-2784.77, -710.46], [-2785.23, -718.55]], "length": 91.57}, {"u": 53514806, "v": 53578687, "oneway": false, "points": [[-2782.71, -627.02], [-2790.8, -626.69], [-2958.39, -620.12], [-2985.81, -618.61]], "length": 203.27}, {"u": 53514806, "v": 53578682, "oneway": false, "points": [[-2782.71, -627.02], [-2775.03, -627.36], [-2644.49, -633.11], [-2636.24, -633.47]], "length": 146.61}, {"u": 53514812, "v": 53514818, "oneway": false, "points": [[-2777.48, -464.5], [-2776.65, -455.19], [-2776.52, -453.64], [-2776.32, -401.51], [-2776.76, -378.78], [-2776.91, -371.04]], "length": 93.51}, {"u": 53514812, "v": 53504329, "oneway": false, "points": [[-2777.48, -464.5], [-2778.56, -476.36], [-2779.3, -536.14]], "length": 71.69}, {"u": 53514812, "v": 53549773, "oneway": false, "points": [[-2777.48, -464.5], [-2785.83, -464.36], [-2793.73, -465.48], [-2800.63, -467.61], [-2810.79, -472.32], [-2845.46, -496.11], [-2853.88, -502.76], [-2871.89, -514.13]], "length": 108.82}, {"u": 53514812, "v": 53684770, "oneway": false, "points": [[-2777.48, -464.5], [-2769.94, -464.24], [-2763.29, -464.02], [-2751.99, -462.12], [-2734.57, -456.96], [-2719.86, -449.82], [-2707.29, -440.63], [-2698.13, -431.22], [-2684.34, -419.17], [-2677.92, -414.24], [-2671.11, -409.77], [-2659.81, -404.76], [-2642.25, -397.93], [-2637.57, -397.22], [-2629.69, -397.82]], "length": 167.27}, {"u": 53514818, "v": 53514812, "oneway": false, "points": [[-2776.91, -371.04], [-2776.76, -378.78], [-2776.32, -401.51], [-2776.52, -453.64], [-2776.65, -455.19], [-2777.48, -464.5]], "length": 93.51}, {"u": 53514818, "v": 53485102, "oneway": false, "points": [[-2776.91, -371.04], [-2758.92, -360.44], [-2750.6, -354.46], [-2745.29, -348.28], [-2740.93, -338.62], [-2738.84, -328.23], [-2736.6, -291.65], [-2736.08, -283.11]], "length": 105.67}, {"u": 53514818, "v": 53481435, "oneway": false, "points": [[-2776.91, -371.04], [-2778.72, -371.88], [-2792.11, -375.49], [-2821.0, -382.37], [-2831.52, -384.93]], "length": 56.39}, {"u": 53515071, "v": 2925570317, "oneway": false, "points": [[1459.85, 854.01], [1465.3, 848.17], [1477.33, 834.31], [1479.9, 831.47], [1485.89, 824.81], [1487.44, 823.09], [1497.09, 812.37], [1501.15, 807.87], [1520.38, 786.45], [1526.39, 779.86]], "length": 99.63}, {"u": 53515071, "v": 53515077, "oneway": false, "points": [[1459.85, 854.01], [1466.54, 859.99], [1488.14, 879.44], [1507.2, 896.61], [1527.98, 915.31], [1548.05, 933.36], [1571.54, 954.49], [1583.98, 965.68], [1602.1, 981.98], [1609.22, 988.4]], "length": 200.92}, {"u": 53515071, "v": 2948595076, "oneway": false, "points": [[1459.85, 854.01], [1454.84, 849.25], [1442.27, 838.06], [1438.19, 834.43], [1409.98, 808.82], [1397.0, 797.06], [1394.22, 794.53], [1386.66, 787.69], [1319.32, 726.65], [1316.6, 724.18], [1309.77, 717.99]], "length": 202.55}, {"u": 53515077, "v": 53515080, "oneway": false, "points": [[1609.22, 988.4], [1615.6, 994.42], [1663.45, 1039.66]], "length": 74.63}, {"u": 53515077, "v": 53515071, "oneway": false, "points": [[1609.22, 988.4], [1602.1, 981.98], [1583.98, 965.68], [1571.54, 954.49], [1548.05, 933.36], [1527.98, 915.31], [1507.2, 896.61], [1488.14, 879.44], [1466.54, 859.99], [1459.85, 854.01]], "length": 200.92}, {"u": 53515077, "v": 53432346, "oneway": false, "points": [[1609.22, 988.4], [1614.57, 982.37], [1635.36, 958.93], [1641.02, 952.53], [1651.09, 941.19], [1667.25, 922.96], [1668.02, 922.18], [1675.88, 914.05]], "length": 99.87}, {"u": 53515077, "v": 366215925, "oneway": false, "points": [[1609.22, 988.4], [1602.71, 995.49], [1599.5, 999.01], [1587.59, 1012.26], [1570.33, 1031.46], [1555.88, 1047.54], [1544.92, 1059.73], [1541.56, 1063.59], [1536.92, 1068.47], [1530.85, 1074.91], [1526.19, 1079.9], [1524.58, 1081.52], [1517.04, 1089.41], [1510.43, 1097.03], [1501.96, 1106.3], [1472.64, 1138.46], [1462.96, 1149.08], [1436.31, 1178.3], [1411.95, 1205.0], [1400.87, 1217.15], [1398.53, 1219.72], [1389.6, 1229.51]], "length": 326.15}, {"u": 53515080, "v": 53560780, "oneway": false, "points": [[1663.45, 1039.66], [1657.09, 1046.42], [1627.51, 1077.83], [1626.24, 1080.24], [1626.04, 1082.9], [1627.01, 1085.11], [1628.79, 1087.23], [1657.39, 1113.43], [1664.81, 1120.2], [1687.0, 1140.42], [1710.41, 1161.85], [1717.25, 1168.07]], "length": 182.84}, {"u": 53515080, "v": 53515081, "oneway": false, "points": [[1663.45, 1039.66], [1727.25, 1097.08], [1748.41, 1116.12], [1750.66, 1118.15], [1756.39, 1123.3]], "length": 125.03}, {"u": 53515080, "v": 53515077, "oneway": false, "points": [[1663.45, 1039.66], [1615.6, 994.42], [1609.22, 988.4]], "length": 74.63}, {"u": 53515081, "v": 53432349, "oneway": false, "points": [[1756.39, 1123.3], [1762.58, 1116.66], [1793.44, 1083.6], [1794.96, 1081.97], [1816.26, 1059.14], [1818.08, 1057.19], [1824.88, 1049.9]], "length": 100.39}, {"u": 53515081, "v": 53560780, "oneway": false, "points": [[1756.39, 1123.3], [1751.15, 1129.3], [1750.22, 1130.64], [1717.25, 1168.07]], "length": 59.48}, {"u": 53515081, "v": 53515080, "oneway": false, "points": [[1756.39, 1123.3], [1750.66, 1118.15], [1748.41, 1116.12], [1727.25, 1097.08], [1663.45, 1039.66]], "length": 125.03}, {"u": 53515084, "v": 53539161, "oneway": false, "points": [[106.94, -369.95], [102.57, -364.7], [101.39, -363.32], [74.32, -333.43], [46.64, -303.59], [40.74, -297.08]], "length": 98.46}, {"u": 53515084, "v": 53540665, "oneway": true, "points": [[106.94, -369.95], [96.87, -378.76], [90.34, -384.47], [28.53, -442.22], [16.95, -452.67], [10.78, -458.15]], "length": 130.5}, {"u": 53515093, "v": 53407932, "oneway": true, "points": [[485.36, -24.07], [481.24, -19.66], [456.71, 7.54], [455.51, 8.85], [361.41, 113.92], [359.33, 116.24], [353.05, 122.77]], "length": 197.66}, {"u": 53515093, "v": 1425249983, "oneway": true, "points": [[485.36, -24.07], [435.09, -71.39], [433.15, -72.73], [426.14, -77.19]], "length": 79.71}, {"u": 53516186, "v": 53684770, "oneway": false, "points": [[-2546.15, -400.14], [-2555.71, -399.82], [-2621.02, -398.06], [-2629.69, -397.82]], "length": 83.58}, {"u": 53516186, "v": 2848493174, "oneway": false, "points": [[-2546.15, -400.14], [-2545.92, -392.31], [-2541.62, -246.03], [-2540.59, -211.19], [-2540.36, -203.83]], "length": 196.4}, {"u": 53516186, "v": 53504312, "oneway": false, "points": [[-2546.15, -400.14], [-2546.41, -409.0], [-2547.87, -457.06], [-2550.2, -536.39], [-2550.41, -545.22]], "length": 145.14}, {"u": 53521155, "v": 53672772, "oneway": false, "points": [[-2957.19, -895.97], [-3032.1, -892.74]], "length": 74.98}, {"u": 53521155, "v": 2298789012, "oneway": false, "points": [[-2957.19, -895.97], [-2956.86, -888.1], [-2956.71, -884.37], [-2955.32, -850.55], [-2953.8, -813.39], [-2953.34, -803.9]], "length": 92.15}, {"u": 53521155, "v": 13009756501, "oneway": false, "points": [[-2957.19, -895.97], [-2949.3, -896.21], [-2888.86, -899.0], [-2874.5, -898.41], [-2862.07, -896.88], [-2849.6, -894.01], [-2835.75, -888.52], [-2812.41, -876.4], [-2807.99, -873.26], [-2805.09, -871.19], [-2798.01, -870.27]], "length": 165.41}, {"u": 53521446, "v": 53417781, "oneway": false, "points": [[-847.38, 186.44], [-867.97, 209.31]], "length": 30.78}, {"u": 53521446, "v": 53521450, "oneway": false, "points": [[-847.38, 186.44], [-851.85, 182.44], [-874.85, 162.01], [-882.59, 155.12], [-884.66, 153.28]], "length": 49.9}, {"u": 53521446, "v": 53441256, "oneway": false, "points": [[-847.38, 186.44], [-797.99, 131.58], [-793.93, 127.07], [-787.67, 120.12]], "length": 89.23}, {"u": 53521450, "v": 53467413, "oneway": false, "points": [[-884.66, 153.28], [-886.97, 151.22], [-894.59, 144.45], [-910.94, 129.91], [-913.63, 127.51], [-915.37, 125.96]], "length": 41.1}, {"u": 53521450, "v": 53521446, "oneway": false, "points": [[-884.66, 153.28], [-882.59, 155.12], [-874.85, 162.01], [-851.85, 182.44], [-847.38, 186.44]], "length": 49.9}, {"u": 53521450, "v": 53646359, "oneway": false, "points": [[-884.66, 153.28], [-913.0, 185.41], [-915.37, 188.1]], "length": 46.43}, {"u": 53522245, "v": 53490485, "oneway": false, "points": [[2543.43, 1930.96], [2545.92, 1920.9], [2551.04, 1900.22], [2554.26, 1887.22], [2557.06, 1875.91], [2566.06, 1839.5], [2572.89, 1811.96], [2573.75, 1808.51], [2574.96, 1803.6]], "length": 131.21}, {"u": 53522245, "v": 53498417, "oneway": false, "points": [[2543.43, 1930.96], [2549.99, 1929.56], [2655.26, 1926.39], [2657.9, 1926.32], [2663.6, 1926.17]], "length": 120.37}, {"u": 53522245, "v": 53529499, "oneway": false, "points": [[2543.43, 1930.96], [2540.08, 1933.31], [2536.15, 1935.84]], "length": 8.76}, {"u": 53523650, "v": 1345424861, "oneway": true, "points": [[-2142.23, -345.62], [-2141.72, -341.98]], "length": 3.68}, {"u": 53523650, "v": 1857601633, "oneway": true, "points": [[-2142.23, -345.62], [-2144.02, -343.36], [-2146.8, -340.7], [-2151.66, -338.82]], "length": 11.95}, {"u": 53525132, "v": 53538741, "oneway": true, "points": [[57.04, 30.02], [43.55, 44.12], [16.64, 73.8], [12.62, 78.22], [-2.32, 94.74], [-25.45, 120.6], [-29.29, 125.41]], "length": 128.68}, {"u": 53525132, "v": 845773212, "oneway": true, "points": [[57.04, 30.02], [63.25, 29.22], [68.72, 29.4], [130.69, 84.59], [137.56, 90.67]], "length": 103.9}, {"u": 53525132, "v": 53326149, "oneway": false, "points": [[57.04, 30.02], [49.29, 23.35], [29.51, 5.51], [17.29, -5.73], [-11.35, -31.99], [-23.65, -42.56]], "length": 108.53}, {"u": 53529499, "v": 53529508, "oneway": false, "points": [[2536.15, 1935.84], [2540.82, 1943.53], [2646.29, 2115.76], [2647.99, 2118.53], [2651.83, 2125.21]], "length": 221.92}, {"u": 53529499, "v": 53490480, "oneway": false, "points": [[2536.15, 1935.84], [2531.14, 1928.99], [2529.38, 1926.58], [2508.41, 1893.49], [2503.54, 1885.47], [2500.39, 1880.3], [2484.42, 1854.04], [2472.02, 1836.16], [2468.98, 1830.92], [2467.01, 1826.08], [2466.19, 1822.23], [2466.7, 1817.86], [2467.5, 1814.54], [2468.23, 1811.46], [2469.97, 1805.97], [2472.8, 1794.17], [2474.4, 1787.44], [2475.23, 1783.96], [2476.67, 1777.9]], "length": 179.39}, {"u": 53529499, "v": 53522245, "oneway": false, "points": [[2536.15, 1935.84], [2540.08, 1933.31], [2543.43, 1930.96]], "length": 8.76}, {"u": 53529499, "v": 53572020, "oneway": false, "points": [[2536.15, 1935.84], [2530.56, 1939.76], [2525.93, 1943.01], [2501.18, 1958.54], [2497.35, 1960.93]], "length": 46.22}, {"u": 53529508, "v": 53601429, "oneway": false, "points": [[2651.83, 2125.21], [2613.26, 2150.27]], "length": 46.0}, {"u": 53529508, "v": 53529499, "oneway": false, "points": [[2651.83, 2125.21], [2647.99, 2118.53], [2646.29, 2115.76], [2540.82, 1943.53], [2536.15, 1935.84]], "length": 221.92}, {"u": 53529508, "v": 53498412, "oneway": false, "points": [[2651.83, 2125.21], [2668.34, 2115.3], [2673.97, 2111.93]], "length": 25.81}, {"u": 53529532, "v": 53529537, "oneway": false, "points": [[2688.81, 2647.88], [2682.26, 2655.4], [2681.76, 2655.88], [2659.94, 2677.95], [2652.72, 2685.23], [2624.37, 2715.53], [2621.42, 2718.68], [2619.94, 2719.9]], "length": 99.68}, {"u": 53529532, "v": 53423568, "oneway": false, "points": [[2688.81, 2647.88], [2694.33, 2642.15], [2734.1, 2600.84], [2748.92, 2585.45], [2765.92, 2567.8], [2774.92, 2558.46]], "length": 124.14}, {"u": 53529532, "v": 53467197, "oneway": false, "points": [[2688.81, 2647.88], [2693.3, 2652.34], [2742.51, 2701.27], [2787.55, 2743.8], [2788.69, 2744.88], [2796.5, 2750.33]], "length": 148.77}, {"u": 53529532, "v": 53538791, "oneway": false, "points": [[2688.81, 2647.88], [2684.21, 2643.56], [2662.13, 2622.84], [2629.29, 2590.42], [2597.66, 2560.3], [2565.4, 2530.44], [2559.06, 2523.96]], "length": 179.44}, {"u": 53529537, "v": 53529540, "oneway": false, "points": [[2619.94, 2719.9], [2611.27, 2728.8], [2594.48, 2746.0], [2557.37, 2784.38], [2554.9, 2786.95], [2549.21, 2792.83]], "length": 101.6}, {"u": 53529537, "v": 53529532, "oneway": false, "points": [[2619.94, 2719.9], [2621.42, 2718.68], [2624.37, 2715.53], [2652.72, 2685.23], [2659.94, 2677.95], [2681.76, 2655.88], [2682.26, 2655.4], [2688.81, 2647.88]], "length": 99.68}, {"u": 53529540, "v": 53529537, "oneway": false, "points": [[2549.21, 2792.83], [2554.9, 2786.95], [2557.37, 2784.38], [2594.48, 2746.0], [2611.27, 2728.8], [2619.94, 2719.9]], "length": 101.6}, {"u": 53529540, "v": 53727021, "oneway": false, "points": [[2549.21, 2792.83], [2541.28, 2786.41], [2455.61, 2702.12], [2425.24, 2674.19], [2419.7, 2667.32]], "length": 180.48}, {"u": 53529686, "v": 53529689, "oneway": false, "points": [[-1645.36, -1608.09], [-1654.74, -1608.09], [-1657.64, -1608.03], [-1700.22, -1607.16], [-1764.5, -1605.75], [-1767.28, -1605.69], [-1775.39, -1605.34]], "length": 130.06}, {"u": 53529686, "v": 1179796056, "oneway": false, "points": [[-1645.36, -1608.09], [-1636.65, -1608.39], [-1634.38, -1608.47], [-1594.18, -1609.87], [-1527.11, -1611.04], [-1524.54, -1611.08], [-1517.83, -1611.27]], "length": 127.58}, {"u": 53529686, "v": 53511582, "oneway": false, "points": [[-1645.36, -1608.09], [-1645.11, -1597.7], [-1643.93, -1547.64], [-1643.17, -1501.04], [-1643.12, -1497.84], [-1642.93, -1486.06]], "length": 122.05}, {"u": 53529686, "v": 2573847784, "oneway": false, "points": [[-1645.36, -1608.09], [-1645.73, -1619.25], [-1647.37, -1668.47], [-1647.5, -1677.87], [-1648.01, -1714.94], [-1648.05, -1718.47], [-1648.32, -1728.6]], "length": 120.55}, {"u": 53529689, "v": 53529692, "oneway": false, "points": [[-1775.39, -1605.34], [-1784.46, -1605.17], [-1787.07, -1605.07], [-2005.03, -1596.59], [-2011.08, -1596.42]], "length": 235.86}, {"u": 53529689, "v": 53529686, "oneway": false, "points": [[-1775.39, -1605.34], [-1767.28, -1605.69], [-1764.5, -1605.75], [-1700.22, -1607.16], [-1657.64, -1608.03], [-1654.74, -1608.09], [-1645.36, -1608.09]], "length": 130.06}, {"u": 53529689, "v": 2573847782, "oneway": false, "points": [[-1775.39, -1605.34], [-1775.8, -1616.4], [-1777.62, -1665.96], [-1779.41, -1714.59], [-1779.82, -1725.92]], "length": 120.66}, {"u": 53529689, "v": 53511589, "oneway": false, "points": [[-1775.39, -1605.34], [-1775.23, -1595.42], [-1774.36, -1543.91], [-1773.37, -1495.17], [-1773.13, -1483.91]], "length": 121.45}, {"u": 53529692, "v": 53529689, "oneway": false, "points": [[-2011.08, -1596.42], [-2005.03, -1596.59], [-1787.07, -1605.07], [-1784.46, -1605.17], [-1775.39, -1605.34]], "length": 235.86}, {"u": 53529692, "v": 53478277, "oneway": false, "points": [[-2011.08, -1596.42], [-2011.37, -1604.56], [-2011.95, -1621.12], [-2013.8, -1708.55], [-2013.99, -1717.44]], "length": 121.05}, {"u": 53529692, "v": 53511593, "oneway": false, "points": [[-2011.08, -1596.42], [-2010.78, -1588.84], [-2008.85, -1488.83], [-2008.64, -1477.58]], "length": 118.87}, {"u": 53534017, "v": 53556383, "oneway": true, "points": [[-2454.42, -940.98], [-2447.76, -935.34], [-2340.09, -842.58], [-2338.76, -838.64], [-2338.48, -828.96]], "length": 164.7}, {"u": 53534017, "v": 53473273, "oneway": false, "points": [[-2454.42, -940.98], [-2447.93, -948.32], [-2422.34, -977.25], [-2396.24, -1007.26], [-2390.24, -1014.15]], "length": 97.33}, {"u": 53534017, "v": 4874980024, "oneway": false, "points": [[-2454.42, -940.98], [-2461.67, -946.8], [-2464.35, -949.12], [-2587.63, -1055.87], [-2594.59, -1061.75]], "length": 185.02}, {"u": 53536993, "v": 53536994, "oneway": false, "points": [[1296.95, 1333.45], [1292.24, 1338.49], [1256.77, 1376.42]], "length": 58.83}, {"u": 53536993, "v": 53423508, "oneway": false, "points": [[1296.95, 1333.45], [1304.01, 1325.54], [1353.31, 1270.37], [1369.16, 1252.69], [1372.13, 1249.37], [1377.53, 1243.36]], "length": 120.87}, {"u": 53536993, "v": 53538776, "oneway": false, "points": [[1296.95, 1333.45], [1303.27, 1339.21], [1350.63, 1382.33], [1351.4, 1383.03], [1402.68, 1429.39], [1414.07, 1439.86], [1430.68, 1455.11], [1436.16, 1460.15], [1438.82, 1462.59], [1444.12, 1467.45]], "length": 199.03}, {"u": 53536993, "v": 53453124, "oneway": false, "points": [[1296.95, 1333.45], [1289.64, 1326.79], [1154.22, 1203.3], [1147.0, 1196.69]], "length": 202.95}, {"u": 53536994, "v": 53536993, "oneway": false, "points": [[1256.77, 1376.42], [1292.24, 1338.49], [1296.95, 1333.45]], "length": 58.83}, {"u": 53536994, "v": 53668846, "oneway": true, "points": [[1256.77, 1376.42], [1248.88, 1388.27], [1238.0, 1402.2], [1231.16, 1409.14]], "length": 41.65}, {"u": 53536997, "v": 53536998, "oneway": false, "points": [[1204.27, 1433.81], [1166.88, 1475.79], [1161.62, 1481.82]], "length": 64.22}, {"u": 53536997, "v": 3859915626, "oneway": true, "points": [[1204.27, 1433.81], [1214.57, 1418.06], [1218.92, 1412.25], [1220.81, 1410.14], [1226.0, 1404.36]], "length": 36.68}, {"u": 53536998, "v": 1699123264, "oneway": false, "points": [[1161.62, 1481.82], [1149.65, 1493.6]], "length": 16.79}, {"u": 53536998, "v": 53536997, "oneway": false, "points": [[1161.62, 1481.82], [1166.88, 1475.79], [1204.27, 1433.81]], "length": 64.22}, {"u": 53536998, "v": 53429624, "oneway": true, "points": [[1161.62, 1481.82], [1168.51, 1488.03], [1214.12, 1529.43], [1220.91, 1534.65]], "length": 79.44}, {"u": 53537015, "v": 53437720, "oneway": false, "points": [[854.94, 1767.44], [861.11, 1762.31], [881.15, 1744.97], [1017.85, 1624.4], [1058.84, 1587.56]], "length": 271.91}, {"u": 53537015, "v": 2713391937, "oneway": false, "points": [[854.94, 1767.44], [859.9, 1773.29], [910.52, 1830.35], [915.63, 1835.88]], "length": 91.48}, {"u": 53537015, "v": 53672943, "oneway": false, "points": [[854.94, 1767.44], [849.5, 1761.71], [809.86, 1712.81], [804.78, 1706.97]], "length": 78.59}, {"u": 53537030, "v": 53537035, "oneway": false, "points": [[2262.15, 1431.6], [2319.95, 1471.1], [2379.68, 1512.44]], "length": 142.65}, {"u": 53537030, "v": 53437417, "oneway": false, "points": [[2262.15, 1431.6], [2257.08, 1428.15], [2177.23, 1373.93], [2170.38, 1369.27]], "length": 110.93}, {"u": 53537030, "v": 53461430, "oneway": false, "points": [[2262.15, 1431.6], [2265.19, 1427.2], [2297.76, 1379.92], [2307.96, 1363.79], [2309.3, 1361.69], [2314.3, 1353.78]], "length": 93.69}, {"u": 53537035, "v": 53537040, "oneway": false, "points": [[2379.68, 1512.44], [2392.4, 1520.77], [2399.68, 1525.54], [2437.42, 1552.27]], "length": 70.15}, {"u": 53537035, "v": 53537030, "oneway": false, "points": [[2379.68, 1512.44], [2319.95, 1471.1], [2262.15, 1431.6]], "length": 142.65}, {"u": 53537035, "v": 53589769, "oneway": false, "points": [[2379.68, 1512.44], [2375.86, 1519.15], [2355.56, 1549.57], [2350.49, 1556.64], [2347.28, 1561.22], [2340.46, 1572.11]], "length": 71.44}, {"u": 53537040, "v": 53498440, "oneway": false, "points": [[2437.42, 1552.27], [2454.7, 1564.46], [2500.02, 1594.64], [2562.17, 1637.91], [2623.72, 1679.24], [2626.25, 1680.58], [2628.71, 1681.68], [2629.49, 1682.03], [2632.37, 1682.9], [2638.1, 1683.02]], "length": 240.62}, {"u": 53537040, "v": 53537035, "oneway": false, "points": [[2437.42, 1552.27], [2399.68, 1525.54], [2392.4, 1520.77], [2379.68, 1512.44]], "length": 70.15}, {"u": 53537040, "v": 53461432, "oneway": false, "points": [[2437.42, 1552.27], [2440.87, 1547.5], [2485.92, 1485.35], [2486.69, 1484.27], [2493.25, 1475.24]], "length": 95.14}, {"u": 53538723, "v": 2384881635, "oneway": false, "points": [[1872.54, 1860.55], [1863.56, 1852.8]], "length": 11.86}, {"u": 53538723, "v": 53538727, "oneway": false, "points": [[1872.54, 1860.55], [1878.44, 1866.24], [2009.66, 1992.59], [2016.92, 1999.58]], "length": 200.43}, {"u": 53538723, "v": 2713365262, "oneway": true, "points": [[1872.54, 1860.55], [1865.34, 1867.71], [1852.12, 1880.88], [1825.63, 1901.99]], "length": 62.68}, {"u": 53538727, "v": 53538730, "oneway": false, "points": [[2016.92, 1999.58], [2022.53, 2004.99], [2029.79, 2011.97], [2054.61, 2035.86], [2062.34, 2043.3]], "length": 63.04}, {"u": 53538727, "v": 53538723, "oneway": false, "points": [[2016.92, 1999.58], [2009.66, 1992.59], [1878.44, 1866.24], [1872.54, 1860.55]], "length": 200.43}, {"u": 53538727, "v": 53668900, "oneway": false, "points": [[2016.92, 1999.58], [2011.51, 2005.11], [1954.78, 2063.18], [1948.24, 2069.86]], "length": 98.27}, {"u": 53538730, "v": 53538734, "oneway": false, "points": [[2062.34, 2043.3], [2068.16, 2048.88], [2155.0, 2132.07], [2161.66, 2138.3]], "length": 137.44}, {"u": 53538730, "v": 53538727, "oneway": false, "points": [[2062.34, 2043.3], [2054.61, 2035.86], [2029.79, 2011.97], [2022.53, 2004.99], [2016.92, 1999.58]], "length": 63.04}, {"u": 53538730, "v": 53570522, "oneway": false, "points": [[2062.34, 2043.3], [2068.72, 2036.47], [2083.14, 2020.92], [2105.33, 1998.96]], "length": 61.78}, {"u": 53538734, "v": 53498225, "oneway": false, "points": [[2161.66, 2138.3], [2155.72, 2144.38], [2097.8, 2203.94], [2091.4, 2210.47]], "length": 100.72}, {"u": 53538734, "v": 53570527, "oneway": false, "points": [[2161.66, 2138.3], [2167.93, 2132.18], [2205.5, 2093.72]], "length": 62.52}, {"u": 53538734, "v": 2714912985, "oneway": false, "points": [[2161.66, 2138.3], [2168.07, 2144.51], [2299.33, 2271.52], [2306.81, 2278.71]], "length": 201.95}, {"u": 53538734, "v": 53538730, "oneway": false, "points": [[2161.66, 2138.3], [2155.0, 2132.07], [2068.16, 2048.88], [2062.34, 2043.3]], "length": 137.44}, {"u": 53538736, "v": 53538741, "oneway": true, "points": [[-105.25, 74.82], [-98.37, 74.85], [-89.11, 74.6], [-86.88, 74.61], [-84.78, 74.78], [-83.13, 75.14], [-81.72, 75.65], [-80.59, 76.21], [-79.62, 76.9], [-68.04, 87.78], [-36.36, 118.52], [-29.29, 125.41]], "length": 96.02}, {"u": 53538736, "v": 53538820, "oneway": false, "points": [[-105.25, 74.82], [-106.01, 56.26], [-106.2, 40.45]], "length": 34.39}, {"u": 53538736, "v": 1345392073, "oneway": false, "points": [[-105.25, 74.82], [-104.85, 83.42], [-101.52, 155.65], [-100.46, 178.65], [-99.74, 194.26]], "length": 119.56}, {"u": 53538741, "v": 1345392073, "oneway": true, "points": [[-29.29, 125.41], [-37.28, 134.73], [-51.69, 148.78], [-84.37, 185.51], [-87.76, 189.14], [-91.59, 192.06], [-94.98, 193.28], [-99.74, 194.26]], "length": 99.81}, {"u": 53538741, "v": 2859245549, "oneway": false, "points": [[-29.29, 125.41], [-23.77, 130.92], [-11.7, 143.31], [27.57, 180.04], [37.12, 188.97], [43.15, 194.64]], "length": 100.22}, {"u": 53538743, "v": 845773190, "oneway": true, "points": [[117.77, 262.27], [123.86, 255.87], [162.81, 212.02], [165.1, 209.54], [190.93, 181.55], [192.75, 179.59], [199.25, 172.54]], "length": 121.21}, {"u": 53538743, "v": 5730487258, "oneway": false, "points": [[117.77, 262.27], [124.57, 268.34], [171.06, 310.49], [174.15, 313.43]], "length": 76.13}, {"u": 53538743, "v": 2859245549, "oneway": false, "points": [[117.77, 262.27], [111.24, 256.42], [79.62, 227.69], [49.69, 200.8], [43.15, 194.64]], "length": 100.71}, {"u": 53538776, "v": 53423520, "oneway": false, "points": [[1444.12, 1467.45], [1451.68, 1459.67], [1499.75, 1407.34], [1517.33, 1388.35], [1520.93, 1384.46], [1528.79, 1375.97]], "length": 124.66}, {"u": 53538776, "v": 53536993, "oneway": false, "points": [[1444.12, 1467.45], [1438.82, 1462.59], [1436.16, 1460.15], [1430.68, 1455.11], [1414.07, 1439.86], [1402.68, 1429.39], [1351.4, 1383.03], [1350.63, 1382.33], [1303.27, 1339.21], [1296.95, 1333.45]], "length": 199.03}, {"u": 53538776, "v": 53668858, "oneway": false, "points": [[1444.12, 1467.45], [1439.73, 1472.33], [1383.64, 1534.8], [1377.01, 1542.18]], "length": 100.44}, {"u": 53538791, "v": 53529532, "oneway": false, "points": [[2559.06, 2523.96], [2565.4, 2530.44], [2597.66, 2560.3], [2629.29, 2590.42], [2662.13, 2622.84], [2684.21, 2643.56], [2688.81, 2647.88]], "length": 179.44}, {"u": 53538791, "v": 2714912986, "oneway": false, "points": [[2559.06, 2523.96], [2552.56, 2517.51], [2511.83, 2476.57], [2479.92, 2445.12], [2444.83, 2411.43], [2438.45, 2405.31]], "length": 169.2}, {"u": 53538791, "v": 53423565, "oneway": false, "points": [[2559.06, 2523.96], [2565.3, 2517.6], [2637.82, 2444.25], [2644.66, 2436.46]], "length": 122.42}, {"u": 53538791, "v": 53668890, "oneway": false, "points": [[2559.06, 2523.96], [2552.97, 2530.45], [2494.88, 2589.03], [2488.34, 2595.28]], "length": 100.45}, {"u": 53538820, "v": 53385421, "oneway": true, "points": [[-106.2, 40.45], [-111.05, 40.18], [-114.88, 39.15], [-117.67, 37.95], [-188.76, -26.36], [-197.64, -34.22]], "length": 119.59}, {"u": 53538820, "v": 53538736, "oneway": false, "points": [[-106.2, 40.45], [-106.01, 56.26], [-105.25, 74.82]], "length": 34.39}, {"u": 53539161, "v": 53426174, "oneway": true, "points": [[40.74, -297.08], [50.79, -288.18], [94.51, -249.62], [106.04, -239.22], [131.63, -216.0], [138.82, -209.76]], "length": 131.32}, {"u": 53539161, "v": 53515084, "oneway": false, "points": [[40.74, -297.08], [46.64, -303.59], [74.32, -333.43], [101.39, -363.32], [102.57, -364.7], [106.94, -369.95]], "length": 98.46}, {"u": 53539161, "v": 53332729, "oneway": false, "points": [[40.74, -297.08], [34.71, -290.43], [8.46, -261.43], [-21.87, -227.92], [-31.92, -216.83]], "length": 108.25}, {"u": 53539171, "v": 53483529, "oneway": false, "points": [[201.56, -141.39], [217.07, -142.42], [240.83, -143.48], [250.25, -143.94], [299.74, -146.22], [333.39, -147.99], [348.17, -145.68]], "length": 146.96}, {"u": 53539171, "v": 53407902, "oneway": false, "points": [[201.56, -141.39], [188.25, -140.73], [164.28, -139.52], [94.69, -135.93], [85.95, -135.41]], "length": 115.76}, {"u": 53539171, "v": 53407911, "oneway": true, "points": [[201.56, -141.39], [201.59, -137.09], [200.96, -132.76], [200.91, -132.22], [198.48, -125.36], [196.01, -121.29], [192.81, -117.25], [178.06, -101.63], [167.63, -90.57], [152.35, -74.39], [151.72, -73.71], [142.92, -64.38]], "length": 99.1}, {"u": 53539549, "v": 1142903012, "oneway": false, "points": [[1992.46, 1504.76], [2018.88, 1476.65], [2044.58, 1449.1], [2068.69, 1423.26], [2088.41, 1405.38], [2092.04, 1402.0]], "length": 143.17}, {"u": 53539556, "v": 3208339054, "oneway": false, "points": [[2068.45, 1358.86], [2066.23, 1355.61], [2061.74, 1347.92], [2058.04, 1342.08]], "length": 19.75}, {"u": 53539556, "v": 1142903904, "oneway": true, "points": [[2068.45, 1358.86], [2093.08, 1390.37], [2098.56, 1396.72]], "length": 48.38}, {"u": 53540659, "v": 1186826669, "oneway": true, "points": [[-55.12, -384.51], [-60.69, -375.5], [-102.82, -329.49], [-105.1, -327.8], [-107.97, -326.99], [-114.88, -326.61], [-118.01, -326.46], [-124.45, -326.1]], "length": 95.3}, {"u": 53540659, "v": 53539161, "oneway": true, "points": [[-55.12, -384.51], [-49.59, -379.36], [30.63, -306.09], [40.74, -297.08]], "length": 129.75}, {"u": 53540659, "v": 53540665, "oneway": false, "points": [[-55.12, -384.51], [-50.44, -391.97], [-47.96, -394.6], [-22.18, -422.22], [4.26, -451.05], [5.69, -452.6], [10.78, -458.15]], "length": 98.96}, {"u": 53540665, "v": 53444048, "oneway": true, "points": [[10.78, -458.15], [4.28, -463.95], [0.63, -467.21], [-7.01, -474.01], [-11.65, -477.06], [-18.85, -483.48], [-28.14, -492.85], [-32.23, -496.49], [-41.43, -504.69], [-89.36, -547.4], [-100.95, -557.74], [-127.13, -581.06], [-136.89, -591.11]], "length": 198.83}, {"u": 53540665, "v": 53540659, "oneway": false, "points": [[10.78, -458.15], [5.69, -452.6], [4.26, -451.05], [-22.18, -422.22], [-47.96, -394.6], [-50.44, -391.97], [-55.12, -384.51]], "length": 98.96}, {"u": 53540837, "v": 53540839, "oneway": false, "points": [[2796.59, 1883.63], [2836.99, 1915.66], [2844.76, 1921.2]], "length": 61.1}, {"u": 53540839, "v": 53430844, "oneway": false, "points": [[2844.76, 1921.2], [2847.07, 1938.57], [2852.54, 2058.91], [2852.93, 2065.78]], "length": 144.87}, {"u": 53540839, "v": 53475099, "oneway": false, "points": [[2844.76, 1921.2], [2853.77, 1928.76], [2856.57, 1930.91], [2932.18, 1987.0], [2940.96, 1993.51]], "length": 120.36}, {"u": 53540839, "v": 53540837, "oneway": false, "points": [[2844.76, 1921.2], [2836.99, 1915.66], [2796.59, 1883.63]], "length": 61.1}, {"u": 53540839, "v": 53430857, "oneway": true, "points": [[2844.76, 1921.2], [2844.41, 1905.13], [2844.39, 1898.8], [2843.79, 1893.9], [2843.4, 1887.96], [2843.4, 1881.11], [2843.77, 1878.03], [2845.67, 1872.42]], "length": 49.17}, {"u": 53541408, "v": 3088209647, "oneway": true, "points": [[42.21, 465.22], [36.15, 471.91], [11.73, 498.8], [-19.94, 533.7], [-25.05, 539.35]], "length": 100.1}, {"u": 53541408, "v": 53425702, "oneway": true, "points": [[42.21, 465.22], [49.07, 471.45], [110.52, 527.31], [117.14, 533.32]], "length": 101.25}, {"u": 53543498, "v": 2634693276, "oneway": false, "points": [[-290.67, -2294.05], [-294.97, -2293.83], [-405.07, -2288.1]], "length": 114.55}, {"u": 53543498, "v": 53552967, "oneway": true, "points": [[-290.67, -2294.05], [-288.26, -2246.73], [-286.26, -2207.53], [-286.15, -2205.36], [-285.69, -2196.45]], "length": 97.73}, {"u": 53544863, "v": 53544865, "oneway": false, "points": [[-242.55, -2198.31], [-242.98, -2207.17], [-247.28, -2295.84], [-250.12, -2384.83], [-250.37, -2393.01]], "length": 194.86}, {"u": 53544863, "v": 53552967, "oneway": false, "points": [[-242.55, -2198.31], [-279.91, -2196.71], [-285.69, -2196.45]], "length": 43.18}, {"u": 53544863, "v": 53551342, "oneway": false, "points": [[-242.55, -2198.31], [-198.84, -2200.21], [-192.82, -2200.47]], "length": 49.79}, {"u": 53544865, "v": 2634682652, "oneway": false, "points": [[-250.37, -2393.01], [-250.68, -2399.49], [-254.11, -2472.92], [-254.99, -2489.89]], "length": 97.0}, {"u": 53544865, "v": 53544863, "oneway": false, "points": [[-250.37, -2393.01], [-250.12, -2384.83], [-247.28, -2295.84], [-242.98, -2207.17], [-242.55, -2198.31]], "length": 194.86}, {"u": 53544865, "v": 53552968, "oneway": false, "points": [[-250.37, -2393.01], [-254.63, -2392.81], [-294.49, -2390.97]], "length": 44.17}, {"u": 53544865, "v": 53426577, "oneway": false, "points": [[-250.37, -2393.01], [-172.77, -2396.4], [-163.27, -2396.82]], "length": 87.19}, {"u": 53545466, "v": 53545473, "oneway": true, "points": [[-1624.32, -742.03], [-1633.46, -741.59], [-1675.16, -739.56], [-1716.72, -737.84], [-1743.36, -736.62], [-1745.17, -736.53], [-1753.23, -736.17]], "length": 129.04}, {"u": 53545466, "v": 53616173, "oneway": false, "points": [[-1624.32, -742.03], [-1624.26, -736.69], [-1623.83, -699.73], [-1623.52, -689.01], [-1623.47, -687.56], [-1622.24, -678.11]], "length": 64.01}, {"u": 53545466, "v": 53628954, "oneway": false, "points": [[-1624.32, -742.03], [-1624.63, -746.54], [-1625.11, -770.86], [-1625.65, -792.92], [-1625.82, -799.63]], "length": 57.62}, {"u": 53545473, "v": 53628956, "oneway": false, "points": [[-1753.23, -736.17], [-1755.24, -792.94]], "length": 56.81}, {"u": 53545473, "v": 53509878, "oneway": false, "points": [[-1753.23, -736.17], [-1752.17, -672.57]], "length": 63.61}, {"u": 53545894, "v": 53472269, "oneway": false, "points": [[-1962.23, -846.68], [-1962.01, -837.37], [-1961.45, -810.16], [-1961.03, -790.33], [-1960.77, -777.57], [-1960.52, -765.33], [-1960.01, -740.53], [-1959.92, -736.23]], "length": 110.47}, {"u": 53545894, "v": 53602671, "oneway": false, "points": [[-1962.23, -846.68], [-1995.93, -845.12], [-2015.17, -844.24], [-2023.82, -843.83]], "length": 61.66}, {"u": 53545894, "v": 53503864, "oneway": false, "points": [[-1962.23, -846.68], [-1915.67, -848.84], [-1913.98, -848.91], [-1898.01, -849.65], [-1889.65, -850.04]], "length": 72.65}, {"u": 53549773, "v": 53549801, "oneway": false, "points": [[-2871.89, -514.13], [-2868.38, -505.45], [-2867.89, -503.56], [-2867.29, -501.32], [-2866.75, -497.09], [-2866.79, -492.82], [-2867.37, -488.75], [-2868.45, -484.8], [-2870.05, -481.0], [-2872.59, -476.76], [-2875.56, -472.82], [-2879.77, -468.44], [-2884.5, -464.65], [-2889.69, -461.49], [-2897.17, -458.1], [-2904.98, -455.51], [-2913.01, -453.75], [-2919.17, -452.97], [-2925.37, -452.68], [-2933.33, -452.97], [-2947.4, -453.93], [-2959.18, -454.29]], "length": 133.52}, {"u": 53549773, "v": 53578687, "oneway": false, "points": [[-2871.89, -514.13], [-2881.86, -526.29], [-2919.98, -562.43], [-2932.75, -575.95], [-2944.3, -589.4], [-2959.52, -605.63], [-2963.15, -608.27], [-2967.76, -611.62], [-2975.87, -615.72], [-2985.81, -618.61]], "length": 156.46}, {"u": 53549773, "v": 53514812, "oneway": false, "points": [[-2871.89, -514.13], [-2853.88, -502.76], [-2845.46, -496.11], [-2810.79, -472.32], [-2800.63, -467.61], [-2793.73, -465.48], [-2785.83, -464.36], [-2777.48, -464.5]], "length": 108.82}, {"u": 53549801, "v": 53549773, "oneway": false, "points": [[-2959.18, -454.29], [-2947.4, -453.93], [-2933.33, -452.97], [-2925.37, -452.68], [-2919.17, -452.97], [-2913.01, -453.75], [-2904.98, -455.51], [-2897.17, -458.1], [-2889.69, -461.49], [-2884.5, -464.65], [-2879.77, -468.44], [-2875.56, -472.82], [-2872.59, -476.76], [-2870.05, -481.0], [-2868.45, -484.8], [-2867.37, -488.75], [-2866.79, -492.82], [-2866.75, -497.09], [-2867.29, -501.32], [-2867.89, -503.56], [-2868.38, -505.45], [-2871.89, -514.13]], "length": 133.52}, {"u": 53549801, "v": 53645778, "oneway": false, "points": [[-2959.18, -454.29], [-2942.44, -439.85], [-2919.85, -425.27], [-2905.51, -416.79], [-2893.34, -410.25]], "length": 79.47}, {"u": 53549801, "v": 53572846, "oneway": false, "points": [[-2959.18, -454.29], [-3002.93, -491.68], [-3010.43, -497.68], [-3015.09, -500.88]], "length": 72.81}, {"u": 53549949, "v": 53549957, "oneway": false, "points": [[-2978.09, -1020.46], [-2984.29, -1025.85], [-3091.95, -1117.11], [-3098.43, -1122.62]], "length": 157.86}, {"u": 53549949, "v": 53421612, "oneway": false, "points": [[-2978.09, -1020.46], [-2969.76, -1014.33], [-2965.3, -1012.56], [-2954.33, -1010.48], [-2905.36, -1005.0], [-2884.85, -1003.14], [-2866.33, -1002.45], [-2811.89, -1004.09], [-2808.59, -1004.19], [-2800.81, -1004.42]], "length": 180.26}, {"u": 53549949, "v": 53610868, "oneway": false, "points": [[-2978.09, -1020.46], [-2973.45, -1026.2], [-2925.97, -1084.73], [-2920.62, -1091.55]], "length": 91.42}, {"u": 53549957, "v": 53549949, "oneway": false, "points": [[-3098.43, -1122.62], [-3091.95, -1117.11], [-2984.29, -1025.85], [-2978.09, -1020.46]], "length": 157.86}, {"u": 53549957, "v": 53625770, "oneway": false, "points": [[-3098.43, -1122.62], [-3093.45, -1128.63], [-3046.18, -1184.52], [-3040.41, -1191.09]], "length": 89.74}, {"u": 53551340, "v": 53551342, "oneway": false, "points": [[-189.73, -2120.76], [-192.42, -2188.62], [-192.54, -2191.52], [-192.82, -2200.47]], "length": 79.77}, {"u": 53551340, "v": 53552967, "oneway": false, "points": [[-189.73, -2120.76], [-189.49, -2115.09], [-188.71, -2096.48], [-187.48, -2067.18], [-187.18, -2060.04], [-185.73, -2039.17], [-185.54, -2036.47], [-184.78, -2013.24], [-184.59, -2007.4], [-184.88, -2002.78], [-185.24, -1997.07], [-186.06, -1992.02], [-187.13, -1987.63], [-189.84, -1981.15], [-195.75, -1972.62], [-201.47, -1966.13], [-205.72, -1962.1], [-208.94, -1959.6], [-214.64, -1956.43], [-219.37, -1954.71], [-224.25, -1953.64], [-232.35, -1952.84], [-238.75, -1952.87], [-262.15, -1952.98], [-271.11, -1953.53], [-275.24, -1956.25], [-276.87, -1958.82], [-278.55, -2003.99], [-278.98, -2015.49], [-283.64, -2140.91], [-285.38, -2187.97], [-285.69, -2196.45]], "length": 478.7}, {"u": 53551340, "v": 53620227, "oneway": false, "points": [[-189.73, -2120.76], [-182.55, -2121.0], [-148.2, -2122.2], [-142.66, -2122.41], [-127.81, -2122.92], [-112.08, -2123.47], [-101.05, -2123.85]], "length": 88.74}, {"u": 53551342, "v": 53551340, "oneway": false, "points": [[-192.82, -2200.47], [-192.54, -2191.52], [-192.42, -2188.62], [-189.73, -2120.76]], "length": 79.77}, {"u": 53551342, "v": 53544863, "oneway": false, "points": [[-192.82, -2200.47], [-198.84, -2200.21], [-242.55, -2198.31]], "length": 49.79}, {"u": 53551342, "v": 53426575, "oneway": false, "points": [[-192.82, -2200.47], [-186.35, -2200.75], [-155.53, -2202.09]], "length": 37.32}, {"u": 53552967, "v": 53551340, "oneway": false, "points": [[-285.69, -2196.45], [-285.38, -2187.97], [-283.64, -2140.91], [-278.98, -2015.49], [-278.55, -2003.99], [-276.87, -1958.82], [-275.24, -1956.25], [-271.11, -1953.53], [-262.15, -1952.98], [-238.75, -1952.87], [-232.35, -1952.84], [-224.25, -1953.64], [-219.37, -1954.71], [-214.64, -1956.43], [-208.94, -1959.6], [-205.72, -1962.1], [-201.47, -1966.13], [-195.75, -1972.62], [-189.84, -1981.15], [-187.13, -1987.63], [-186.06, -1992.02], [-185.24, -1997.07], [-184.88, -2002.78], [-184.59, -2007.4], [-184.78, -2013.24], [-185.54, -2036.47], [-185.73, -2039.17], [-187.18, -2060.04], [-187.48, -2067.18], [-188.71, -2096.48], [-189.49, -2115.09], [-189.73, -2120.76]], "length": 478.7}, {"u": 53552967, "v": 53642775, "oneway": false, "points": [[-285.69, -2196.45], [-292.7, -2196.15], [-383.22, -2192.22]], "length": 97.62}, {"u": 53552967, "v": 53544863, "oneway": false, "points": [[-285.69, -2196.45], [-279.91, -2196.71], [-242.55, -2198.31]], "length": 43.18}, {"u": 53552968, "v": 53562507, "oneway": false, "points": [[-294.49, -2390.97], [-346.22, -2388.47], [-350.17, -2388.28], [-409.12, -2386.16]], "length": 114.73}, {"u": 53552968, "v": 53544865, "oneway": false, "points": [[-294.49, -2390.97], [-254.63, -2392.81], [-250.37, -2393.01]], "length": 44.17}, {"u": 53552968, "v": 2634682653, "oneway": false, "points": [[-294.49, -2390.97], [-294.69, -2400.13], [-296.27, -2473.94]], "length": 82.98}, {"u": 53552968, "v": 53543498, "oneway": true, "points": [[-294.49, -2390.97], [-294.18, -2383.08], [-290.67, -2294.05]], "length": 97.0}, {"u": 53555070, "v": 53510828, "oneway": false, "points": [[1174.61, 2516.35], [1173.03, 2517.84], [1172.7, 2518.45], [1168.7, 2525.97], [1166.22, 2533.59], [1165.15, 2541.63], [1166.6, 2552.81], [1169.07, 2560.94], [1171.09, 2567.58], [1173.85, 2575.82], [1180.08, 2594.44], [1187.27, 2621.03], [1194.25, 2640.5], [1203.7, 2658.02], [1208.45, 2665.0], [1223.42, 2687.02], [1239.26, 2703.03], [1241.84, 2705.05], [1246.76, 2708.93], [1256.1, 2713.55], [1266.91, 2715.69], [1275.98, 2716.88], [1290.49, 2717.14], [1326.28, 2715.79], [1383.18, 2714.52], [1405.29, 2713.01]], "length": 377.8}, {"u": 53555070, "v": 53510799, "oneway": false, "points": [[1174.61, 2516.35], [1183.64, 2507.32], [1198.73, 2499.22], [1218.82, 2486.76], [1232.41, 2477.71], [1240.85, 2471.02], [1247.33, 2463.95], [1254.69, 2453.4]], "length": 103.08}, {"u": 53555070, "v": 53568810, "oneway": false, "points": [[1174.61, 2516.35], [1166.79, 2501.68], [1163.7, 2484.54], [1160.78, 2473.4], [1159.56, 2464.98], [1159.56, 2459.2], [1161.09, 2452.94], [1162.92, 2451.33], [1165.37, 2445.7], [1173.47, 2435.58], [1187.35, 2422.3], [1191.51, 2417.97], [1201.75, 2407.33], [1208.02, 2398.59], [1210.63, 2389.22]], "length": 148.3}, {"u": 53556263, "v": 53589977, "oneway": false, "points": [[-2973.37, -3036.17], [-2978.71, -3029.01], [-2987.57, -3019.64], [-2996.13, -3014.06], [-3007.99, -3009.72], [-3025.95, -3013.53], [-3049.63, -3020.41], [-3064.38, -3023.51], [-3070.1, -3021.05], [-3076.08, -3016.62], [-3083.91, -2999.19], [-3091.31, -2987.53], [-3103.37, -2970.17], [-3115.93, -2953.36], [-3126.96, -2934.48], [-3135.13, -2918.46], [-3141.96, -2913.12]], "length": 239.98}, {"u": 53556263, "v": 53680499, "oneway": false, "points": [[-2973.37, -3036.17], [-2947.29, -3010.69], [-2928.41, -2989.11], [-2911.61, -2971.92]], "length": 89.17}, {"u": 53556383, "v": 3035654115, "oneway": false, "points": [[-2338.48, -828.96], [-2386.43, -826.82], [-2395.52, -826.38], [-2409.27, -825.65], [-2454.01, -823.58]], "length": 115.66}, {"u": 53556383, "v": 53473264, "oneway": false, "points": [[-2338.48, -828.96], [-2330.5, -829.29], [-2323.94, -829.57], [-2297.78, -830.89], [-2263.94, -832.29], [-2195.98, -835.11]], "length": 142.64}, {"u": 53556400, "v": 53473302, "oneway": false, "points": [[-2801.53, -1236.1], [-2795.31, -1243.56], [-2770.87, -1272.83], [-2743.33, -1303.26], [-2738.68, -1308.39]], "length": 95.81}, {"u": 53556400, "v": 53462383, "oneway": false, "points": [[-2801.53, -1236.1], [-2807.09, -1230.14], [-2834.13, -1199.77], [-2856.12, -1172.58], [-2858.21, -1170.09], [-2863.74, -1163.15]], "length": 95.91}, {"u": 53556400, "v": 4874980027, "oneway": false, "points": [[-2801.53, -1236.1], [-2795.03, -1230.54], [-2792.93, -1228.81], [-2712.0, -1160.8], [-2709.14, -1158.37], [-2702.49, -1152.65]], "length": 129.51}, {"u": 53556400, "v": 53556402, "oneway": false, "points": [[-2801.53, -1236.1], [-2808.42, -1241.96], [-2811.3, -1244.4], [-2894.6, -1314.32], [-2901.59, -1319.52]], "length": 130.29}, {"u": 53556402, "v": 53473312, "oneway": false, "points": [[-2901.59, -1319.52], [-2894.46, -1327.67], [-2869.19, -1356.51], [-2843.41, -1388.06], [-2838.73, -1393.78]], "length": 97.31}, {"u": 53556402, "v": 53462390, "oneway": false, "points": [[-2901.59, -1319.52], [-2905.65, -1314.31], [-2932.06, -1283.41], [-2956.08, -1254.46], [-2962.4, -1246.7]], "length": 94.88}, {"u": 53556402, "v": 53556400, "oneway": false, "points": [[-2901.59, -1319.52], [-2894.6, -1314.32], [-2811.3, -1244.4], [-2808.42, -1241.96], [-2801.53, -1236.1]], "length": 130.29}, {"u": 53556402, "v": 53556407, "oneway": false, "points": [[-2901.59, -1319.52], [-2908.52, -1325.76], [-2994.15, -1397.95], [-3000.03, -1402.9]], "length": 129.01}, {"u": 53556407, "v": 53473321, "oneway": false, "points": [[-3000.03, -1402.9], [-2993.26, -1410.91], [-2967.97, -1440.83], [-2941.82, -1471.78], [-2936.88, -1477.62]], "length": 97.82}, {"u": 53556407, "v": 53462402, "oneway": false, "points": [[-3000.03, -1402.9], [-3004.57, -1397.51], [-3030.43, -1366.91], [-3055.95, -1337.75], [-3062.15, -1330.4]], "length": 95.48}, {"u": 53556407, "v": 53556402, "oneway": false, "points": [[-3000.03, -1402.9], [-2994.15, -1397.95], [-2908.52, -1325.76], [-2901.59, -1319.52]], "length": 129.01}, {"u": 53556407, "v": 3812685605, "oneway": false, "points": [[-3000.03, -1402.9], [-3004.95, -1407.06], [-3076.77, -1467.84], [-3079.06, -1469.78], [-3085.99, -1475.59]], "length": 112.58}, {"u": 53558103, "v": 316305090, "oneway": false, "points": [[1534.79, 378.66], [1573.61, 413.73], [1581.65, 421.0]], "length": 63.17}, {"u": 53558110, "v": 53670180, "oneway": false, "points": [[1818.34, 635.29], [1823.27, 629.94], [1869.54, 579.78]], "length": 75.52}, {"u": 53558110, "v": 53558116, "oneway": false, "points": [[1818.34, 635.29], [1871.83, 684.32], [1879.05, 690.93]], "length": 82.35}, {"u": 53558110, "v": 316305093, "oneway": false, "points": [[1818.34, 635.29], [1735.3, 561.97], [1729.77, 557.09]], "length": 118.14}, {"u": 53558116, "v": 53558125, "oneway": false, "points": [[1879.05, 690.93], [1885.26, 696.57], [2019.13, 817.91], [2021.85, 820.37], [2027.07, 825.11]], "length": 199.78}, {"u": 53558116, "v": 53558110, "oneway": false, "points": [[1879.05, 690.93], [1871.83, 684.32], [1818.34, 635.29]], "length": 82.35}, {"u": 53558116, "v": 53571781, "oneway": false, "points": [[1879.05, 690.93], [1884.09, 685.52], [1903.8, 664.34], [1922.6, 643.36], [1930.55, 633.46]], "length": 77.19}, {"u": 53558116, "v": 53571775, "oneway": false, "points": [[1879.05, 690.93], [1872.09, 698.58], [1818.05, 758.09], [1811.47, 765.33]], "length": 100.51}, {"u": 53558125, "v": 53560795, "oneway": false, "points": [[2027.07, 825.11], [2032.6, 819.26], [2089.25, 759.43], [2095.3, 753.03]], "length": 99.25}, {"u": 53558125, "v": 53560789, "oneway": false, "points": [[2027.07, 825.11], [2020.45, 832.59], [1966.08, 894.06], [1959.95, 900.98]], "length": 101.3}, {"u": 53558125, "v": 53494580, "oneway": false, "points": [[2027.07, 825.11], [2033.46, 830.88], [2035.86, 833.06], [2170.54, 954.94], [2177.07, 960.85]], "length": 202.3}, {"u": 53558125, "v": 53558116, "oneway": false, "points": [[2027.07, 825.11], [2021.85, 820.37], [2019.13, 817.91], [1885.26, 696.57], [1879.05, 690.93]], "length": 199.78}, {"u": 53558139, "v": 3208342164, "oneway": false, "points": [[2269.95, 1045.16], [2280.98, 1055.04], [2282.48, 1056.39], [2316.37, 1087.01], [2322.87, 1093.46]], "length": 71.66}, {"u": 53558139, "v": 53494585, "oneway": false, "points": [[2269.95, 1045.16], [2271.51, 1042.89], [2274.92, 1039.25], [2276.62, 1037.44], [2317.23, 994.15], [2318.32, 992.34], [2319.06, 989.76], [2318.29, 985.56], [2311.37, 974.08], [2254.95, 897.2], [2250.57, 892.99], [2244.07, 886.73]], "length": 202.52}, {"u": 53558139, "v": 53494580, "oneway": false, "points": [[2269.95, 1045.16], [2265.09, 1040.5], [2184.52, 967.61], [2177.07, 960.85]], "length": 125.43}, {"u": 53558139, "v": 2707919868, "oneway": false, "points": [[2269.95, 1045.16], [2263.95, 1053.45], [2262.97, 1054.8], [2234.33, 1087.0], [2209.8, 1114.86], [2203.58, 1121.49]], "length": 101.21}, {"u": 53558145, "v": 53558147, "oneway": false, "points": [[2433.19, 1195.84], [2436.4, 1199.75]], "length": 5.06}, {"u": 53558145, "v": 53628825, "oneway": false, "points": [[2433.19, 1195.84], [2425.97, 1202.86], [2424.43, 1204.34], [2416.22, 1212.32], [2412.16, 1218.33], [2408.78, 1225.65], [2393.99, 1264.63], [2380.58, 1281.99], [2377.4, 1286.1]], "length": 107.8}, {"u": 53558145, "v": 53437425, "oneway": false, "points": [[2433.19, 1195.84], [2430.39, 1193.06], [2389.28, 1152.28]], "length": 61.85}, {"u": 53558147, "v": 53558145, "oneway": false, "points": [[2436.4, 1199.75], [2433.19, 1195.84]], "length": 5.06}, {"u": 53558147, "v": 3208342165, "oneway": false, "points": [[2436.4, 1199.75], [2442.42, 1193.18], [2444.06, 1191.4], [2486.35, 1145.22]], "length": 73.95}, {"u": 53558147, "v": 53558151, "oneway": false, "points": [[2436.4, 1199.75], [2439.47, 1203.62], [2451.26, 1218.45], [2481.03, 1257.52], [2530.21, 1320.38]], "length": 152.81}, {"u": 53558151, "v": 53558152, "oneway": false, "points": [[2530.21, 1320.38], [2580.82, 1385.31]], "length": 82.33}, {"u": 53558151, "v": 3208339050, "oneway": false, "points": [[2530.21, 1320.38], [2537.0, 1314.77], [2592.15, 1269.29]], "length": 80.29}, {"u": 53558151, "v": 53558147, "oneway": false, "points": [[2530.21, 1320.38], [2481.03, 1257.52], [2451.26, 1218.45], [2439.47, 1203.62], [2436.4, 1199.75]], "length": 152.81}, {"u": 53558152, "v": 53558151, "oneway": false, "points": [[2580.82, 1385.31], [2530.21, 1320.38]], "length": 82.33}, {"u": 53558152, "v": 53589760, "oneway": false, "points": [[2580.82, 1385.31], [2573.3, 1390.24], [2570.57, 1392.04], [2565.78, 1395.18], [2534.72, 1420.17], [2529.09, 1425.77]], "length": 65.8}, {"u": 53558152, "v": 53498447, "oneway": false, "points": [[2580.82, 1385.31], [2612.62, 1429.88], [2622.58, 1442.16], [2622.87, 1442.99], [2624.79, 1448.54]], "length": 77.31}, {"u": 53558155, "v": 53558157, "oneway": false, "points": [[1414.12, 303.31], [1419.4, 297.72]], "length": 7.69}, {"u": 53558155, "v": 53667261, "oneway": false, "points": [[1414.12, 303.31], [1389.8, 329.1], [1370.32, 349.75], [1368.7, 351.46], [1362.27, 358.28]], "length": 75.56}, {"u": 53558155, "v": 53645079, "oneway": false, "points": [[1414.12, 303.31], [1410.0, 300.01], [1406.71, 297.32], [1368.3, 265.97], [1366.49, 265.13], [1362.73, 265.84], [1324.02, 307.58], [1322.68, 309.02], [1316.32, 315.86]], "length": 133.17}, {"u": 53558157, "v": 53711224, "oneway": false, "points": [[1419.4, 297.72], [1426.43, 290.26]], "length": 10.25}, {"u": 53558157, "v": 53558155, "oneway": false, "points": [[1419.4, 297.72], [1414.12, 303.31]], "length": 7.69}, {"u": 53558157, "v": 53558159, "oneway": false, "points": [[1419.4, 297.72], [1426.84, 304.31], [1461.95, 338.07]], "length": 58.65}, {"u": 53558159, "v": 53558157, "oneway": false, "points": [[1461.95, 338.07], [1426.84, 304.31], [1419.4, 297.72]], "length": 58.65}, {"u": 53560253, "v": 316357138, "oneway": true, "points": [[-1498.67, -1368.03], [-1498.11, -1357.52]], "length": 10.52}, {"u": 53560253, "v": 316357429, "oneway": true, "points": [[-1498.67, -1368.03], [-1485.24, -1366.83], [-1475.67, -1364.2], [-1467.52, -1361.97]], "length": 31.86}, {"u": 53560766, "v": 53423520, "oneway": false, "points": [[1539.5, 1363.7], [1528.79, 1375.97]], "length": 16.29}, {"u": 53560766, "v": 53408487, "oneway": false, "points": [[1539.5, 1363.7], [1547.04, 1355.44], [1548.94, 1353.46], [1565.75, 1335.2], [1570.73, 1329.8], [1573.93, 1326.33], [1578.9, 1320.82], [1607.63, 1288.99], [1609.0, 1287.46], [1614.88, 1280.95], [1621.65, 1273.44]], "length": 122.04}, {"u": 53560766, "v": 53719166, "oneway": true, "points": [[1539.5, 1363.7], [1550.12, 1373.57], [1582.57, 1403.75], [1586.77, 1407.81], [1624.06, 1443.76], [1667.96, 1483.51], [1678.55, 1492.96], [1679.75, 1494.03], [1686.58, 1500.38], [1702.76, 1515.03], [1704.95, 1517.04], [1705.68, 1517.67], [1723.78, 1534.81], [1748.25, 1557.54], [1757.31, 1566.0], [1766.6, 1574.35], [1808.9, 1614.19], [1839.86, 1643.13], [1840.49, 1643.69], [1851.9, 1654.36], [1866.83, 1668.25], [1874.15, 1675.14], [1879.59, 1680.06], [1954.84, 1748.06], [1956.18, 1749.38], [1965.35, 1757.55]], "length": 580.1}, {"u": 53560776, "v": 53560780, "oneway": false, "points": [[1662.98, 1227.95], [1672.42, 1217.26], [1684.96, 1203.06], [1687.46, 1200.23], [1695.3, 1191.93], [1700.09, 1186.85], [1712.98, 1172.75], [1717.25, 1168.07]], "length": 80.83}, {"u": 53560776, "v": 53408487, "oneway": false, "points": [[1662.98, 1227.95], [1640.51, 1252.67], [1627.03, 1267.51], [1621.65, 1273.44]], "length": 61.46}, {"u": 53560776, "v": 53408490, "oneway": false, "points": [[1662.98, 1227.95], [1669.36, 1233.85], [1696.31, 1258.76], [1718.76, 1279.51], [1724.9, 1285.2], [1745.78, 1304.64], [1751.91, 1311.03], [1755.34, 1317.05], [1756.44, 1324.24], [1755.14, 1329.2], [1753.79, 1334.32], [1741.65, 1348.66], [1732.58, 1358.82], [1729.13, 1362.69], [1725.07, 1367.25]], "length": 190.04}, {"u": 53560780, "v": 53515081, "oneway": false, "points": [[1717.25, 1168.07], [1750.22, 1130.64], [1751.15, 1129.3], [1756.39, 1123.3]], "length": 59.48}, {"u": 53560780, "v": 53560776, "oneway": false, "points": [[1717.25, 1168.07], [1712.98, 1172.75], [1700.09, 1186.85], [1695.3, 1191.93], [1687.46, 1200.23], [1684.96, 1203.06], [1672.42, 1217.26], [1662.98, 1227.95]], "length": 80.83}, {"u": 53560780, "v": 53515080, "oneway": false, "points": [[1717.25, 1168.07], [1710.41, 1161.85], [1687.0, 1140.42], [1664.81, 1120.2], [1657.39, 1113.43], [1628.79, 1087.23], [1627.01, 1085.11], [1626.04, 1082.9], [1626.24, 1080.24], [1627.51, 1077.83], [1657.09, 1046.42], [1663.45, 1039.66]], "length": 182.84}, {"u": 53560789, "v": 53558125, "oneway": false, "points": [[1959.95, 900.98], [1966.08, 894.06], [2020.45, 832.59], [2027.07, 825.11]], "length": 101.3}, {"u": 53560789, "v": 53461491, "oneway": false, "points": [[1959.95, 900.98], [1953.57, 908.0], [1919.15, 945.89], [1898.08, 968.9], [1892.58, 974.97]], "length": 100.06}, {"u": 53560789, "v": 53494572, "oneway": false, "points": [[1959.95, 900.98], [1965.45, 905.92], [2086.9, 1015.06], [2101.99, 1028.62], [2109.35, 1035.22]], "length": 200.85}, {"u": 53560789, "v": 53571775, "oneway": false, "points": [[1959.95, 900.98], [1954.27, 895.59], [1908.43, 852.04], [1817.82, 771.01], [1811.47, 765.33]], "length": 201.14}, {"u": 53560795, "v": 53560796, "oneway": false, "points": [[2095.3, 753.03], [2103.12, 744.32], [2121.05, 724.36]], "length": 38.54}, {"u": 53560795, "v": 53558125, "oneway": false, "points": [[2095.3, 753.03], [2089.25, 759.43], [2032.6, 819.26], [2027.07, 825.11]], "length": 99.25}, {"u": 53560795, "v": 53494585, "oneway": false, "points": [[2095.3, 753.03], [2100.26, 757.44], [2209.93, 854.68], [2237.17, 880.25], [2244.07, 886.73]], "length": 200.03}, {"u": 53560795, "v": 53571781, "oneway": false, "points": [[2095.3, 753.03], [2087.94, 746.34], [1957.82, 627.93], [1953.42, 624.46], [1949.48, 622.83], [1944.42, 623.03], [1940.14, 624.36], [1936.3, 627.04], [1930.55, 633.46]], "length": 218.6}, {"u": 53560796, "v": 53560795, "oneway": false, "points": [[2121.05, 724.36], [2103.12, 744.32], [2095.3, 753.03]], "length": 38.54}, {"u": 53562507, "v": 53642782, "oneway": false, "points": [[-409.12, -2386.16], [-416.93, -2385.82]], "length": 7.82}, {"u": 53562507, "v": 53552968, "oneway": false, "points": [[-409.12, -2386.16], [-350.17, -2388.28], [-346.22, -2388.47], [-294.49, -2390.97]], "length": 114.73}, {"u": 53562563, "v": 53626983, "oneway": false, "points": [[2155.84, 2693.58], [2131.29, 2717.72]], "length": 34.43}, {"u": 53562563, "v": 53714925, "oneway": false, "points": [[2155.84, 2693.58], [2162.32, 2687.02], [2219.73, 2627.53], [2225.74, 2621.25]], "length": 100.59}, {"u": 53568332, "v": 53611281, "oneway": false, "points": [[2723.62, 1452.1], [2731.07, 1452.47], [2811.91, 1456.45], [2821.42, 1456.92]], "length": 97.92}, {"u": 53568332, "v": 53498447, "oneway": false, "points": [[2723.62, 1452.1], [2716.92, 1451.86], [2636.31, 1448.91], [2633.83, 1448.86], [2624.79, 1448.54]], "length": 98.89}, {"u": 53568332, "v": 3786926320, "oneway": false, "points": [[2723.62, 1452.1], [2723.96, 1446.58], [2724.0, 1445.81], [2727.85, 1383.29], [2728.37, 1374.73]], "length": 77.52}, {"u": 53568332, "v": 53596324, "oneway": false, "points": [[2723.62, 1452.1], [2723.17, 1460.03], [2723.1, 1461.31], [2719.43, 1526.97], [2719.0, 1534.48]], "length": 82.5}, {"u": 53568810, "v": 53555070, "oneway": false, "points": [[1210.63, 2389.22], [1208.02, 2398.59], [1201.75, 2407.33], [1191.51, 2417.97], [1187.35, 2422.3], [1173.47, 2435.58], [1165.37, 2445.7], [1162.92, 2451.33], [1161.09, 2452.94], [1159.56, 2459.2], [1159.56, 2464.98], [1160.78, 2473.4], [1163.7, 2484.54], [1166.79, 2501.68], [1174.61, 2516.35]], "length": 148.3}, {"u": 53570522, "v": 53538730, "oneway": false, "points": [[2105.33, 1998.96], [2083.14, 2020.92], [2068.72, 2036.47], [2062.34, 2043.3]], "length": 61.78}, {"u": 53570522, "v": 53423552, "oneway": false, "points": [[2105.33, 1998.96], [2126.34, 1976.24], [2139.81, 1962.18], [2147.55, 1953.92]], "length": 61.73}, {"u": 53570527, "v": 53538734, "oneway": false, "points": [[2205.5, 2093.72], [2167.93, 2132.18], [2161.66, 2138.3]], "length": 62.52}, {"u": 53570527, "v": 53423556, "oneway": false, "points": [[2205.5, 2093.72], [2220.36, 2078.81], [2241.07, 2058.02], [2248.24, 2050.82]], "length": 60.56}, {"u": 53570527, "v": 53570522, "oneway": true, "points": [[2205.5, 2093.72], [2111.27, 2004.57], [2105.33, 1998.96]], "length": 137.89}, {"u": 53571775, "v": 53461478, "oneway": false, "points": [[1811.47, 765.33], [1804.2, 772.74], [1803.09, 773.87], [1749.25, 832.15], [1742.8, 839.27]], "length": 100.91}, {"u": 53571775, "v": 2713353784, "oneway": false, "points": [[1811.47, 765.33], [1804.69, 759.2], [1668.78, 636.15], [1662.26, 630.24]], "length": 201.28}, {"u": 53571775, "v": 53558116, "oneway": false, "points": [[1811.47, 765.33], [1818.05, 758.09], [1872.09, 698.58], [1879.05, 690.93]], "length": 100.51}, {"u": 53571775, "v": 53560789, "oneway": false, "points": [[1811.47, 765.33], [1817.82, 771.01], [1908.43, 852.04], [1954.27, 895.59], [1959.95, 900.98]], "length": 201.14}, {"u": 53571781, "v": 53621652, "oneway": false, "points": [[1930.55, 633.46], [1925.42, 627.12], [1923.88, 625.2], [1912.31, 615.17]], "length": 25.93}, {"u": 53571781, "v": 53560795, "oneway": false, "points": [[1930.55, 633.46], [1936.3, 627.04], [1940.14, 624.36], [1944.42, 623.03], [1949.48, 622.83], [1953.42, 624.46], [1957.82, 627.93], [2087.94, 746.34], [2095.3, 753.03]], "length": 218.6}, {"u": 53571781, "v": 53558116, "oneway": false, "points": [[1930.55, 633.46], [1922.6, 643.36], [1903.8, 664.34], [1884.09, 685.52], [1879.05, 690.93]], "length": 77.19}, {"u": 53572019, "v": 53572020, "oneway": false, "points": [[2455.13, 1985.9], [2462.71, 1981.42], [2497.35, 1960.93]], "length": 49.06}, {"u": 53572019, "v": 53636377, "oneway": false, "points": [[2455.13, 1985.9], [2459.88, 1993.63], [2504.68, 2066.31], [2509.32, 2073.85]], "length": 103.3}, {"u": 53572019, "v": 53480554, "oneway": false, "points": [[2455.13, 1985.9], [2450.42, 1978.42], [2440.8, 1963.12], [2426.57, 1941.0], [2401.52, 1900.7], [2380.72, 1868.28], [2377.71, 1863.6]], "length": 144.75}, {"u": 53572020, "v": 53529499, "oneway": false, "points": [[2497.35, 1960.93], [2501.18, 1958.54], [2525.93, 1943.01], [2530.56, 1939.76], [2536.15, 1935.84]], "length": 46.22}, {"u": 53572020, "v": 53572019, "oneway": false, "points": [[2497.35, 1960.93], [2462.71, 1981.42], [2455.13, 1985.9]], "length": 49.06}, {"u": 53572020, "v": 53601429, "oneway": false, "points": [[2497.35, 1960.93], [2501.5, 1967.72], [2536.79, 2025.4], [2562.78, 2066.13], [2573.23, 2084.4], [2600.82, 2129.25], [2613.26, 2150.27]], "length": 222.02}, {"u": 53572027, "v": 53498417, "oneway": false, "points": [[2753.74, 1919.4], [2746.18, 1919.86], [2692.35, 1923.23], [2673.18, 1925.16], [2670.98, 1925.37], [2663.6, 1926.17]], "length": 90.41}, {"u": 53572027, "v": 53490496, "oneway": false, "points": [[2753.74, 1919.4], [2753.63, 1914.28], [2752.03, 1886.33], [2751.89, 1882.33], [2752.43, 1872.42], [2754.39, 1864.14], [2757.35, 1857.49], [2760.83, 1849.67]], "length": 71.39}, {"u": 53572027, "v": 53604832, "oneway": false, "points": [[2753.74, 1919.4], [2759.07, 2010.61], [2761.49, 2063.43], [2761.75, 2071.25]], "length": 152.07}, {"u": 53572824, "v": 53311057, "oneway": false, "points": [[-3018.73, -617.15], [-3012.35, -623.34], [-3008.38, -625.74], [-3002.74, -629.17], [-2989.65, -638.78]], "length": 36.36}, {"u": 53572824, "v": 53572846, "oneway": false, "points": [[-3018.73, -617.15], [-3027.86, -606.34], [-3032.81, -598.3], [-3038.02, -589.48], [-3042.03, -576.13], [-3043.69, -565.75], [-3043.66, -553.52], [-3041.79, -542.24], [-3037.59, -529.47], [-3032.83, -520.36], [-3031.47, -517.75], [-3022.86, -507.55], [-3015.09, -500.88]], "length": 132.2}, {"u": 53572824, "v": 53311058, "oneway": false, "points": [[-3018.73, -617.15], [-2995.18, -618.61], [-2990.62, -618.52]], "length": 28.16}, {"u": 53572846, "v": 53549801, "oneway": false, "points": [[-3015.09, -500.88], [-3010.43, -497.68], [-3002.93, -491.68], [-2959.18, -454.29]], "length": 72.81}, {"u": 53572846, "v": 53436855, "oneway": false, "points": [[-3015.09, -500.88], [-3023.55, -505.98], [-3030.58, -509.66], [-3042.21, -514.44], [-3051.49, -516.84], [-3068.85, -519.9], [-3075.62, -520.26], [-3089.64, -520.18], [-3098.5, -519.6], [-3104.63, -519.97], [-3107.82, -520.66], [-3118.94, -524.67], [-3125.31, -527.94], [-3131.94, -534.52]], "length": 125.0}, {"u": 53572846, "v": 53572824, "oneway": false, "points": [[-3015.09, -500.88], [-3022.86, -507.55], [-3031.47, -517.75], [-3032.83, -520.36], [-3037.59, -529.47], [-3041.79, -542.24], [-3043.66, -553.52], [-3043.69, -565.75], [-3042.03, -576.13], [-3038.02, -589.48], [-3032.81, -598.3], [-3027.86, -606.34], [-3018.73, -617.15]], "length": 132.2}, {"u": 53573840, "v": 316165989, "oneway": false, "points": [[248.73, -2262.36], [255.67, -2280.05]], "length": 19.0}, {"u": 53573840, "v": 53465696, "oneway": false, "points": [[248.73, -2262.36], [235.55, -2244.31], [231.34, -2239.03], [224.85, -2230.89], [218.41, -2226.43], [212.07, -2222.03], [198.45, -2216.14], [184.49, -2214.19], [177.21, -2214.11], [160.94, -2213.96], [156.12, -2214.27], [140.58, -2216.28], [127.43, -2220.24], [111.8, -2227.91], [109.14, -2229.65], [103.0, -2233.66]], "length": 169.7}, {"u": 53573840, "v": 53644201, "oneway": false, "points": [[248.73, -2262.36], [255.45, -2258.48], [264.0, -2251.0], [271.12, -2245.39], [277.48, -2240.39], [279.76, -2240.34], [290.91, -2251.65], [293.62, -2254.41]], "length": 58.3}, {"u": 53573861, "v": 366229504, "oneway": false, "points": [[-53.68, -2206.06], [-44.7, -2206.4], [-26.58, -2207.11], [-0.34, -2208.13]], "length": 53.38}, {"u": 53573861, "v": 53426575, "oneway": false, "points": [[-53.68, -2206.06], [-87.08, -2204.75], [-111.9, -2203.78], [-116.66, -2203.6], [-155.53, -2202.09]], "length": 101.93}, {"u": 53573861, "v": 53426577, "oneway": false, "points": [[-53.68, -2206.06], [-47.03, -2217.36], [-20.18, -2264.05], [-14.85, -2273.55], [-8.47, -2283.78], [2.61, -2301.53], [32.15, -2348.9], [43.93, -2367.8], [45.58, -2372.85], [45.58, -2382.79], [45.02, -2386.95], [42.24, -2392.13], [39.65, -2395.13], [36.11, -2399.37], [23.47, -2402.34], [-0.33, -2402.33], [-113.05, -2398.52], [-154.17, -2397.13], [-163.27, -2396.82]], "length": 423.57}, {"u": 53575900, "v": 53575901, "oneway": false, "points": [[-2116.58, -1558.01], [-2117.97, -1618.64]], "length": 60.65}, {"u": 53575900, "v": 53511603, "oneway": false, "points": [[-2116.58, -1558.01], [-2114.91, -1486.32], [-2114.61, -1475.04]], "length": 82.99}, {"u": 53575900, "v": 53695962, "oneway": false, "points": [[-2116.58, -1558.01], [-2110.1, -1558.14], [-2066.8, -1558.99]], "length": 49.79}, {"u": 53575901, "v": 53575900, "oneway": false, "points": [[-2117.97, -1618.64], [-2116.58, -1558.01]], "length": 60.65}, {"u": 53575901, "v": 53478277, "oneway": false, "points": [[-2117.97, -1618.64], [-2118.53, -1653.11], [-2120.44, -1706.09], [-2120.56, -1710.25], [-2120.44, -1712.59], [-2119.75, -1714.38], [-2118.93, -1715.12], [-2117.67, -1715.4], [-2114.08, -1715.6], [-2060.76, -1716.36], [-2020.49, -1717.28], [-2013.99, -1717.44]], "length": 202.02}, {"u": 53575901, "v": 53647040, "oneway": false, "points": [[-2117.97, -1618.64], [-2111.81, -1618.81], [-2065.37, -1620.07]], "length": 52.62}, {"u": 53576821, "v": 53503864, "oneway": false, "points": [[-1756.79, -856.17], [-1765.79, -855.76], [-1798.73, -854.24], [-1808.44, -853.79], [-1815.44, -853.47], [-1835.76, -852.53], [-1839.34, -852.36], [-1871.71, -850.86], [-1881.34, -850.42], [-1889.65, -850.04]], "length": 133.0}, {"u": 53576821, "v": 53483330, "oneway": false, "points": [[-1756.79, -856.17], [-1757.06, -865.38], [-1757.41, -879.61], [-1757.45, -881.02], [-1758.44, -917.54], [-1758.68, -926.36]], "length": 70.22}, {"u": 53576821, "v": 53628956, "oneway": false, "points": [[-1756.79, -856.17], [-1756.53, -847.23], [-1756.1, -820.6], [-1755.94, -810.7], [-1755.83, -805.18], [-1755.46, -797.7], [-1755.24, -792.94]], "length": 63.26}, {"u": 53576821, "v": 53616166, "oneway": false, "points": [[-1756.79, -856.17], [-1748.16, -856.59], [-1720.16, -857.93], [-1694.14, -859.15], [-1657.84, -860.91], [-1636.49, -861.94], [-1627.33, -862.38]], "length": 129.61}, {"u": 53576823, "v": 53430443, "oneway": false, "points": [[-1761.83, -1059.89], [-1760.92, -1010.08], [-1760.74, -1000.35]], "length": 59.55}, {"u": 53576823, "v": 53576826, "oneway": false, "points": [[-1761.83, -1059.89], [-1763.42, -1110.42], [-1763.75, -1120.96]], "length": 61.1}, {"u": 53576823, "v": 53680515, "oneway": false, "points": [[-1761.83, -1059.89], [-1770.3, -1059.69], [-1773.89, -1059.62], [-1845.76, -1058.28]], "length": 83.95}, {"u": 53576826, "v": 53576823, "oneway": false, "points": [[-1763.75, -1120.96], [-1763.42, -1110.42], [-1761.83, -1059.89]], "length": 61.1}, {"u": 53576826, "v": 53676376, "oneway": false, "points": [[-1763.75, -1120.96], [-1756.1, -1121.11], [-1710.18, -1122.04], [-1703.21, -1122.17], [-1645.53, -1123.34], [-1643.31, -1123.38], [-1634.53, -1123.55]], "length": 129.25}, {"u": 53576826, "v": 53576829, "oneway": false, "points": [[-1763.75, -1120.96], [-1763.98, -1132.13], [-1764.98, -1182.5], [-1766.24, -1231.01], [-1766.52, -1241.81]], "length": 120.88}, {"u": 53576826, "v": 53709531, "oneway": false, "points": [[-1763.75, -1120.96], [-1772.76, -1120.77], [-1884.49, -1118.35], [-1892.87, -1118.17]], "length": 129.14}, {"u": 53576829, "v": 53503843, "oneway": false, "points": [[-1766.52, -1241.81], [-1775.05, -1241.44], [-1775.82, -1241.42], [-1887.45, -1238.61], [-1895.73, -1238.33]], "length": 129.27}, {"u": 53576829, "v": 2573847790, "oneway": false, "points": [[-1766.52, -1241.81], [-1758.62, -1242.01], [-1731.17, -1242.71], [-1707.23, -1243.0], [-1646.11, -1243.73], [-1638.06, -1243.82]], "length": 128.48}, {"u": 53576829, "v": 53576831, "oneway": false, "points": [[-1766.52, -1241.81], [-1766.79, -1253.46], [-1767.93, -1302.24], [-1769.2, -1352.35], [-1769.48, -1363.33]], "length": 121.56}, {"u": 53576829, "v": 53576826, "oneway": false, "points": [[-1766.52, -1241.81], [-1766.24, -1231.01], [-1764.98, -1182.5], [-1763.98, -1132.13], [-1763.75, -1120.96]], "length": 120.88}, {"u": 53576831, "v": 53503849, "oneway": false, "points": [[-1769.48, -1363.33], [-1777.1, -1363.2], [-1779.24, -1363.14], [-1831.3, -1361.71], [-1863.09, -1360.75], [-1891.56, -1360.05], [-1898.86, -1359.85]], "length": 129.43}, {"u": 53576831, "v": 53621256, "oneway": false, "points": [[-1769.48, -1363.33], [-1760.92, -1363.56], [-1758.48, -1363.6], [-1649.06, -1365.25], [-1647.12, -1365.27], [-1639.32, -1365.38]], "length": 130.18}, {"u": 53576831, "v": 53511589, "oneway": false, "points": [[-1769.48, -1363.33], [-1769.74, -1373.89], [-1770.97, -1423.13], [-1772.74, -1472.75], [-1773.13, -1483.91]], "length": 120.64}, {"u": 53576831, "v": 53576829, "oneway": false, "points": [[-1769.48, -1363.33], [-1769.2, -1352.35], [-1767.93, -1302.24], [-1766.79, -1253.46], [-1766.52, -1241.81]], "length": 121.56}, {"u": 53578330, "v": 53578339, "oneway": false, "points": [[611.55, 1191.43], [611.58, 1196.46], [611.72, 1198.33], [612.1, 1200.34], [617.08, 1216.35], [675.61, 1398.79], [678.41, 1407.75]], "length": 226.7}, {"u": 53578330, "v": 3264677727, "oneway": false, "points": [[611.55, 1191.43], [608.82, 1193.33], [606.42, 1195.46], [601.63, 1200.33], [598.51, 1203.86], [585.13, 1218.96], [577.87, 1227.13], [560.58, 1246.56], [548.17, 1260.05]], "length": 93.52}, {"u": 53578330, "v": 4172253594, "oneway": false, "points": [[611.55, 1191.43], [612.91, 1187.46], [618.95, 1178.67], [622.49, 1174.78], [637.29, 1159.07], [640.22, 1155.96], [645.88, 1149.81]], "length": 54.34}, {"u": 53578339, "v": 53453173, "oneway": false, "points": [[678.41, 1407.75], [694.64, 1458.27], [726.02, 1556.74], [746.5, 1622.3], [749.04, 1630.45]], "length": 233.64}, {"u": 53578339, "v": 53578330, "oneway": false, "points": [[678.41, 1407.75], [675.61, 1398.79], [617.08, 1216.35], [612.1, 1200.34], [611.72, 1198.33], [611.58, 1196.46], [611.55, 1191.43]], "length": 226.7}, {"u": 53578351, "v": 53578355, "oneway": true, "points": [[1036.97, 1973.79], [1074.4, 2010.13], [1082.12, 2018.3], [1090.4, 2027.56], [1104.21, 2050.69]], "length": 102.78}, {"u": 53578351, "v": 2713391937, "oneway": false, "points": [[1036.97, 1973.79], [922.28, 1843.34], [915.63, 1835.88]], "length": 183.69}, {"u": 53578355, "v": 53578357, "oneway": false, "points": [[1104.21, 2050.69], [1125.16, 2073.76]], "length": 31.16}, {"u": 53578355, "v": 53578351, "oneway": true, "points": [[1104.21, 2050.69], [1091.17, 2038.67], [1084.6, 2032.43], [1075.91, 2023.83], [1067.44, 2016.06], [1036.97, 1973.79]], "length": 102.63}, {"u": 53578357, "v": 53578355, "oneway": false, "points": [[1125.16, 2073.76], [1104.21, 2050.69]], "length": 31.16}, {"u": 53578357, "v": 2713365265, "oneway": true, "points": [[1125.16, 2073.76], [1134.73, 2081.6], [1140.73, 2087.15], [1150.76, 2097.53], [1179.09, 2132.11], [1185.7, 2146.09]], "length": 95.15}, {"u": 53578366, "v": 53672055, "oneway": false, "points": [[1248.14, 2302.21], [1255.51, 2298.94], [1276.62, 2289.95], [1295.48, 2282.86], [1332.31, 2268.82], [1346.14, 2263.37], [1354.33, 2258.2], [1360.06, 2253.48], [1365.21, 2248.33], [1367.64, 2244.93], [1371.76, 2238.03], [1374.51, 2228.95], [1375.48, 2222.59], [1381.78, 2191.49]], "length": 189.7}, {"u": 53578366, "v": 2713391900, "oneway": false, "points": [[1248.14, 2302.21], [1252.95, 2314.1], [1255.21, 2319.75], [1257.14, 2323.85], [1268.3, 2344.72], [1279.92, 2366.43], [1284.74, 2375.53]], "length": 82.04}, {"u": 53578366, "v": 2713365265, "oneway": false, "points": [[1248.14, 2302.21], [1246.38, 2297.68], [1229.6, 2254.27], [1220.43, 2231.49], [1205.19, 2188.83], [1203.18, 2183.74], [1201.78, 2180.2], [1196.37, 2168.45], [1185.7, 2146.09]], "length": 168.24}, {"u": 53578383, "v": 53510828, "oneway": false, "points": [[1460.07, 2709.02], [1452.87, 2709.54], [1405.29, 2713.01]], "length": 54.93}, {"u": 53578383, "v": 53578394, "oneway": false, "points": [[1460.07, 2709.02], [1478.24, 2742.72], [1481.73, 2749.19], [1486.18, 2757.46], [1488.86, 2762.44], [1500.94, 2783.7]], "length": 85.14}, {"u": 53578383, "v": 496686196, "oneway": false, "points": [[1460.07, 2709.02], [1423.19, 2638.22], [1409.5, 2611.96], [1394.05, 2582.3], [1361.22, 2519.29], [1358.98, 2515.08], [1340.14, 2479.54], [1331.79, 2463.78]], "length": 276.76}, {"u": 53578394, "v": 316306590, "oneway": false, "points": [[1500.94, 2783.7], [1514.14, 2807.62]], "length": 27.32}, {"u": 53578394, "v": 53499266, "oneway": false, "points": [[1500.94, 2783.7], [1509.88, 2779.02], [1519.76, 2773.85], [1545.68, 2760.29], [1549.12, 2758.56], [1587.56, 2739.24], [1593.76, 2736.42], [1596.51, 2735.17], [1599.53, 2734.63], [1605.55, 2734.25]], "length": 116.3}, {"u": 53578394, "v": 53578383, "oneway": false, "points": [[1500.94, 2783.7], [1488.86, 2762.44], [1486.18, 2757.46], [1481.73, 2749.19], [1478.24, 2742.72], [1460.07, 2709.02]], "length": 85.14}, {"u": 53578514, "v": 53578519, "oneway": false, "points": [[-502.96, -791.63], [-507.79, -796.05], [-510.33, -798.35], [-571.07, -853.77], [-609.28, -888.64], [-622.08, -900.31], [-646.54, -922.63], [-652.88, -928.42]], "length": 202.96}, {"u": 53578514, "v": 53482954, "oneway": false, "points": [[-502.96, -791.63], [-496.72, -785.94], [-472.94, -764.24], [-461.33, -753.66], [-442.95, -736.87], [-435.47, -730.05], [-428.64, -723.82], [-420.58, -716.47], [-361.51, -662.56], [-355.85, -657.24]], "length": 199.25}, {"u": 53578514, "v": 53663978, "oneway": true, "points": [[-502.96, -791.63], [-497.08, -798.43], [-470.02, -829.28], [-468.58, -830.91]], "length": 52.2}, {"u": 53578519, "v": 53663953, "oneway": false, "points": [[-652.88, -928.42], [-647.14, -934.95], [-625.2, -960.01], [-591.44, -996.06], [-585.53, -1003.73]], "length": 101.07}, {"u": 53578519, "v": 53493129, "oneway": false, "points": [[-652.88, -928.42], [-659.05, -921.64], [-686.48, -891.74], [-689.88, -888.04], [-692.64, -885.11], [-715.23, -860.04], [-721.47, -853.6]], "length": 101.5}, {"u": 53578519, "v": 3269827284, "oneway": false, "points": [[-652.88, -928.42], [-659.5, -934.67], [-711.02, -983.28], [-713.07, -985.21], [-726.13, -997.54]], "length": 100.72}, {"u": 53578519, "v": 53578514, "oneway": false, "points": [[-652.88, -928.42], [-646.54, -922.63], [-622.08, -900.31], [-609.28, -888.64], [-571.07, -853.77], [-510.33, -798.35], [-507.79, -796.05], [-502.96, -791.63]], "length": 202.96}, {"u": 53578682, "v": 53514806, "oneway": false, "points": [[-2636.24, -633.47], [-2644.49, -633.11], [-2775.03, -627.36], [-2782.71, -627.02]], "length": 146.61}, {"u": 53578682, "v": 53504327, "oneway": false, "points": [[-2636.24, -633.47], [-2636.0, -625.23], [-2634.23, -550.14], [-2634.04, -541.76]], "length": 91.74}, {"u": 53578682, "v": 53582923, "oneway": false, "points": [[-2636.24, -633.47], [-2636.42, -641.46], [-2638.6, -716.43], [-2639.01, -724.72]], "length": 91.29}, {"u": 53578687, "v": 53311058, "oneway": false, "points": [[-2985.81, -618.61], [-2990.62, -618.52]], "length": 4.81}, {"u": 53578687, "v": 53514806, "oneway": false, "points": [[-2985.81, -618.61], [-2958.39, -620.12], [-2790.8, -626.69], [-2782.71, -627.02]], "length": 203.27}, {"u": 53578687, "v": 53549773, "oneway": false, "points": [[-2985.81, -618.61], [-2975.87, -615.72], [-2967.76, -611.62], [-2963.15, -608.27], [-2959.52, -605.63], [-2944.3, -589.4], [-2932.75, -575.95], [-2919.98, -562.43], [-2881.86, -526.29], [-2871.89, -514.13]], "length": 156.46}, {"u": 53580606, "v": 3031362525, "oneway": false, "points": [[-2427.11, 247.98], [-2426.96, 254.05], [-2425.74, 269.72], [-2426.04, 281.41]], "length": 33.49}, {"u": 53580606, "v": 53413603, "oneway": false, "points": [[-2427.11, 247.98], [-2427.8, 231.66], [-2428.67, 210.76], [-2430.25, 182.41], [-2430.73, 168.59], [-2431.45, 150.57], [-2431.95, 142.16], [-2432.47, 133.58]], "length": 114.53}, {"u": 53580606, "v": 53725877, "oneway": false, "points": [[-2427.11, 247.98], [-2419.73, 247.66], [-2416.49, 247.5], [-2410.2, 247.36], [-2365.42, 245.82], [-2343.57, 245.23], [-2336.02, 245.43], [-2331.53, 246.48], [-2327.84, 247.5]], "length": 99.58}, {"u": 53580611, "v": 3031362525, "oneway": false, "points": [[-2418.07, 286.66], [-2426.04, 281.41]], "length": 9.54}, {"u": 53580632, "v": 53437708, "oneway": false, "points": [[746.79, 1434.61], [790.45, 1387.79]], "length": 64.02}, {"u": 53582203, "v": 53582205, "oneway": false, "points": [[-1214.64, -515.98], [-1214.04, -505.88], [-1213.84, -502.61], [-1208.16, -399.91], [-1206.64, -389.29]], "length": 126.98}, {"u": 53582203, "v": 2859245573, "oneway": false, "points": [[-1214.64, -515.98], [-1209.22, -516.26], [-1204.41, -516.5], [-1092.06, -521.92], [-1082.14, -522.73]], "length": 132.68}, {"u": 53582203, "v": 1179459724, "oneway": false, "points": [[-1214.64, -515.98], [-1225.13, -515.44], [-1334.73, -509.86], [-1344.45, -509.36], [-1352.31, -509.0], [-1411.27, -506.09], [-1465.49, -503.4], [-1466.13, -503.37], [-1477.46, -502.69]], "length": 263.16}, {"u": 53582205, "v": 53582203, "oneway": false, "points": [[-1206.64, -389.29], [-1208.16, -399.91], [-1213.84, -502.61], [-1214.04, -505.88], [-1214.64, -515.98]], "length": 126.98}, {"u": 53582205, "v": 2859245574, "oneway": true, "points": [[-1206.64, -389.29], [-1194.86, -390.66], [-1086.34, -395.39], [-1075.96, -396.6]], "length": 130.93}, {"u": 53582205, "v": 2859245582, "oneway": false, "points": [[-1206.64, -389.29], [-1205.67, -379.01], [-1203.82, -351.33], [-1203.4, -341.99], [-1203.0, -336.76], [-1202.82, -332.63], [-1202.76, -331.17], [-1199.85, -271.97], [-1199.82, -267.81], [-1199.8, -257.26]], "length": 132.23}, {"u": 53582923, "v": 1944740975, "oneway": false, "points": [[-2639.01, -724.72], [-2647.37, -724.55], [-2777.69, -718.91], [-2785.23, -718.55]], "length": 146.35}, {"u": 53582923, "v": 4214349299, "oneway": false, "points": [[-2639.01, -724.72], [-2630.98, -725.07], [-2566.43, -727.95], [-2556.41, -728.02]], "length": 82.67}, {"u": 53582923, "v": 53578682, "oneway": false, "points": [[-2639.01, -724.72], [-2638.6, -716.43], [-2636.42, -641.46], [-2636.24, -633.47]], "length": 91.29}, {"u": 53582923, "v": 53684762, "oneway": false, "points": [[-2639.01, -724.72], [-2639.13, -732.81], [-2641.9, -806.84], [-2641.99, -817.18]], "length": 92.51}, {"u": 53589708, "v": 53589713, "oneway": false, "points": [[-2254.83, -110.43], [-2232.96, -111.22]], "length": 21.88}, {"u": 53589708, "v": 53461764, "oneway": true, "points": [[-2254.83, -110.43], [-2255.93, -135.09], [-2255.95, -136.92], [-2256.65, -154.05], [-2258.03, -181.06], [-2258.76, -195.21], [-2259.7, -205.35]], "length": 95.05}, {"u": 53589713, "v": 53589708, "oneway": false, "points": [[-2232.96, -111.22], [-2254.83, -110.43]], "length": 21.88}, {"u": 53589713, "v": 53589715, "oneway": true, "points": [[-2232.96, -111.22], [-2232.26, -97.66], [-2231.88, -88.19], [-2231.64, -82.63], [-2230.47, -56.1]], "length": 55.17}, {"u": 53589715, "v": 2988748407, "oneway": false, "points": [[-2230.47, -56.1], [-2252.61, -55.41]], "length": 22.15}, {"u": 53589715, "v": 53486805, "oneway": true, "points": [[-2230.47, -56.1], [-2229.29, -28.98], [-2229.17, -26.23], [-2228.77, -17.15]], "length": 38.99}, {"u": 53589716, "v": 53461764, "oneway": true, "points": [[-2236.52, -208.79], [-2259.7, -205.35]], "length": 23.44}, {"u": 53589716, "v": 53589713, "oneway": true, "points": [[-2236.52, -208.79], [-2236.2, -197.88], [-2234.55, -154.96], [-2234.05, -137.58], [-2233.47, -124.38], [-2232.96, -111.22]], "length": 97.64}, {"u": 53589760, "v": 53558152, "oneway": false, "points": [[2529.09, 1425.77], [2534.72, 1420.17], [2565.78, 1395.18], [2570.57, 1392.04], [2573.3, 1390.24], [2580.82, 1385.31]], "length": 65.8}, {"u": 53589760, "v": 53461432, "oneway": false, "points": [[2529.09, 1425.77], [2521.41, 1433.66], [2498.79, 1467.07], [2497.41, 1469.1], [2493.25, 1475.24]], "length": 61.22}, {"u": 53589760, "v": 53628825, "oneway": false, "points": [[2529.09, 1425.77], [2523.7, 1420.74], [2472.21, 1372.69], [2398.41, 1306.29], [2382.01, 1290.53], [2377.4, 1286.1]], "length": 206.21}, {"u": 53589769, "v": 53537035, "oneway": false, "points": [[2340.46, 1572.11], [2347.28, 1561.22], [2350.49, 1556.64], [2355.56, 1549.57], [2375.86, 1519.15], [2379.68, 1512.44]], "length": 71.44}, {"u": 53589769, "v": 53649105, "oneway": true, "points": [[2340.46, 1572.11], [2345.96, 1575.91], [2425.88, 1631.27]], "length": 103.9}, {"u": 53589794, "v": 53589799, "oneway": false, "points": [[2270.79, 1689.66], [2278.37, 1685.11], [2282.14, 1682.89], [2300.87, 1671.87], [2302.49, 1670.93], [2319.78, 1660.86], [2322.74, 1649.03], [2334.85, 1601.62], [2335.96, 1596.36]], "length": 123.34}, {"u": 53589794, "v": 2859093884, "oneway": false, "points": [[2270.79, 1689.66], [2251.94, 1658.99], [2243.48, 1645.22], [2235.27, 1631.86], [2214.98, 1598.84], [2193.7, 1564.23], [2184.21, 1550.38], [2178.28, 1541.28]], "length": 174.87}, {"u": 53589794, "v": 316342869, "oneway": false, "points": [[2270.79, 1689.66], [2287.43, 1717.12], [2297.73, 1734.11]], "length": 51.98}, {"u": 53589799, "v": 53589794, "oneway": false, "points": [[2335.96, 1596.36], [2334.85, 1601.62], [2322.74, 1649.03], [2319.78, 1660.86], [2302.49, 1670.93], [2300.87, 1671.87], [2282.14, 1682.89], [2278.37, 1685.11], [2270.79, 1689.66]], "length": 123.34}, {"u": 53589977, "v": 53556263, "oneway": false, "points": [[-3141.96, -2913.12], [-3135.13, -2918.46], [-3126.96, -2934.48], [-3115.93, -2953.36], [-3103.37, -2970.17], [-3091.31, -2987.53], [-3083.91, -2999.19], [-3076.08, -3016.62], [-3070.1, -3021.05], [-3064.38, -3023.51], [-3049.63, -3020.41], [-3025.95, -3013.53], [-3007.99, -3009.72], [-2996.13, -3014.06], [-2987.57, -3019.64], [-2978.71, -3029.01], [-2973.37, -3036.17]], "length": 239.98}, {"u": 53589977, "v": 53700390, "oneway": false, "points": [[-3141.96, -2913.12], [-3135.95, -2911.18], [-3117.52, -2908.05], [-3097.32, -2908.52], [-3075.21, -2910.82], [-3055.93, -2912.27], [-3038.39, -2911.66], [-3020.9, -2910.05], [-2999.41, -2905.34], [-2986.58, -2901.49]], "length": 157.29}, {"u": 53590668, "v": 1246389199, "oneway": false, "points": [[-795.51, -3088.79], [-691.34, -3093.89]], "length": 104.3}, {"u": 53590668, "v": 1246389199, "oneway": false, "points": [[-795.51, -3088.79], [-794.38, -3079.36], [-780.86, -2979.38], [-777.25, -2973.43], [-770.86, -2970.26], [-685.57, -2956.58], [-678.75, -2958.29], [-675.39, -2962.7], [-674.69, -2971.21], [-691.34, -3093.89]], "length": 355.77}, {"u": 53590668, "v": 53511694, "oneway": false, "points": [[-795.51, -3088.79], [-847.48, -3086.24], [-851.89, -3086.02], [-890.96, -3084.11], [-893.0, -3084.01], [-902.49, -3083.55]], "length": 107.11}, {"u": 53590699, "v": 53444613, "oneway": false, "points": [[-2311.4, -1105.68], [-2314.05, -1104.49], [-2317.51, -1100.07], [-2322.17, -1095.16], [-2327.85, -1088.84]], "length": 23.8}, {"u": 53590699, "v": 53590707, "oneway": false, "points": [[-2311.4, -1105.68], [-2313.99, -1118.13], [-2314.89, -1125.26], [-2315.64, -1137.02], [-2316.44, -1186.65], [-2316.9, -1215.34], [-2316.93, -1217.26], [-2317.09, -1227.11]], "length": 121.79}, {"u": 53590699, "v": 53709543, "oneway": false, "points": [[-2311.4, -1105.68], [-2308.25, -1106.66], [-2304.66, -1106.77], [-2297.53, -1106.98], [-2240.9, -1108.69], [-2174.87, -1110.68], [-2165.52, -1110.84]], "length": 146.08}, {"u": 53590707, "v": 1178694147, "oneway": false, "points": [[-2317.09, -1227.11], [-2317.36, -1234.6], [-2317.49, -1238.27], [-2319.22, -1287.47], [-2319.56, -1300.49], [-2319.69, -1305.22]], "length": 78.15}, {"u": 53590707, "v": 53590699, "oneway": false, "points": [[-2317.09, -1227.11], [-2316.93, -1217.26], [-2316.9, -1215.34], [-2316.44, -1186.65], [-2315.64, -1137.02], [-2314.89, -1125.26], [-2313.99, -1118.13], [-2311.4, -1105.68]], "length": 121.79}, {"u": 53590707, "v": 53692040, "oneway": false, "points": [[-2317.09, -1227.11], [-2325.96, -1226.9], [-2437.9, -1224.25], [-2447.73, -1224.02]], "length": 130.67}, {"u": 53590707, "v": 53692030, "oneway": false, "points": [[-2317.09, -1227.11], [-2308.15, -1227.38], [-2181.48, -1231.13], [-2177.37, -1231.25], [-2168.16, -1231.53]], "length": 148.99}, {"u": 53590715, "v": 3812685620, "oneway": false, "points": [[-2321.06, -1391.89], [-2322.89, -1455.42], [-2323.0, -1459.33], [-2323.31, -1469.94]], "length": 78.08}, {"u": 53590715, "v": 53621277, "oneway": true, "points": [[-2321.06, -1391.89], [-2316.04, -1391.43], [-2307.64, -1390.34], [-2299.36, -1388.17], [-2292.01, -1385.04], [-2286.08, -1381.84], [-2279.27, -1376.3], [-2272.99, -1368.65], [-2269.52, -1361.3], [-2267.88, -1356.07], [-2267.38, -1349.97]], "length": 75.2}, {"u": 53591793, "v": 53591794, "oneway": false, "points": [[-449.69, -251.99], [-455.79, -245.4], [-513.06, -185.99], [-518.45, -180.11]], "length": 99.48}, {"u": 53591793, "v": 917593109, "oneway": false, "points": [[-449.69, -251.99], [-443.13, -258.24], [-438.62, -263.26], [-421.13, -282.64], [-415.65, -288.73], [-409.26, -295.8], [-396.98, -309.42], [-386.07, -321.52], [-373.87, -335.05], [-365.67, -346.61]], "length": 126.66}, {"u": 53591793, "v": 53604259, "oneway": false, "points": [[-449.69, -251.99], [-456.53, -258.42], [-479.08, -278.74], [-488.15, -286.91], [-493.57, -291.8], [-502.65, -299.99], [-511.15, -307.66], [-513.56, -309.83], [-562.4, -353.86], [-590.5, -379.19], [-592.91, -381.36], [-599.55, -387.68]], "length": 202.16}, {"u": 53591793, "v": 53604257, "oneway": false, "points": [[-449.69, -251.99], [-442.62, -245.57], [-381.74, -190.66], [-374.05, -183.74]], "length": 101.89}, {"u": 53591794, "v": 53699396, "oneway": false, "points": [[-518.45, -180.11], [-523.31, -184.53], [-524.41, -185.52], [-554.45, -212.85], [-572.8, -229.54], [-600.38, -254.61], [-620.72, -273.11], [-632.26, -283.6], [-657.34, -306.41], [-658.55, -307.52], [-666.65, -314.88]], "length": 200.31}, {"u": 53591794, "v": 53591793, "oneway": false, "points": [[-518.45, -180.11], [-513.06, -185.99], [-455.79, -245.4], [-449.69, -251.99]], "length": 99.48}, {"u": 53591804, "v": 53417781, "oneway": false, "points": [[-875.13, 217.26], [-872.4, 214.24], [-867.97, 209.31]], "length": 10.7}, {"u": 53596324, "v": 53596328, "oneway": false, "points": [[2719.0, 1534.48], [2808.88, 1538.36], [2817.36, 1538.72]], "length": 98.45}, {"u": 53596324, "v": 53461443, "oneway": false, "points": [[2719.0, 1534.48], [2651.79, 1531.94], [2638.08, 1531.56], [2629.39, 1531.31]], "length": 89.67}, {"u": 53596324, "v": 53568332, "oneway": false, "points": [[2719.0, 1534.48], [2719.43, 1526.97], [2723.1, 1461.31], [2723.17, 1460.03], [2723.62, 1452.1]], "length": 82.5}, {"u": 53596328, "v": 53487538, "oneway": false, "points": [[2817.36, 1538.72], [2823.64, 1538.97], [2867.1, 1540.67], [2908.53, 1544.44], [2917.49, 1545.26]], "length": 100.38}, {"u": 53596328, "v": 53596324, "oneway": false, "points": [[2817.36, 1538.72], [2808.88, 1538.36], [2719.0, 1534.48]], "length": 98.45}, {"u": 53596328, "v": 53611281, "oneway": false, "points": [[2817.36, 1538.72], [2817.57, 1534.38], [2817.67, 1532.45], [2820.9, 1467.38], [2821.05, 1464.41], [2821.42, 1456.92]], "length": 81.91}, {"u": 53596328, "v": 53496315, "oneway": false, "points": [[2817.36, 1538.72], [2816.79, 1547.39], [2816.67, 1549.24], [2815.3, 1569.9], [2814.03, 1600.06], [2813.72, 1620.96], [2811.09, 1646.27], [2804.2, 1674.88], [2802.77, 1680.84]], "length": 143.34}, {"u": 53596618, "v": 316305093, "oneway": false, "points": [[1771.11, 509.14], [1756.57, 526.81], [1753.85, 530.12], [1737.0, 549.36], [1729.77, 557.09]], "length": 63.33}, {"u": 53596818, "v": 1857601633, "oneway": true, "points": [[-2142.99, -278.4], [-2144.07, -279.53], [-2145.34, -280.51], [-2146.61, -281.6], [-2147.74, -283.5], [-2148.43, -286.84], [-2148.87, -294.96], [-2149.2, -303.51], [-2150.94, -331.03], [-2151.66, -338.82]], "length": 62.55}, {"u": 53596818, "v": 53461758, "oneway": false, "points": [[-2142.99, -278.4], [-2142.63, -269.27], [-2142.47, -264.91], [-2141.09, -228.87], [-2140.93, -224.64], [-2140.56, -215.17]], "length": 63.28}, {"u": 53596818, "v": 1345424868, "oneway": true, "points": [[-2142.99, -278.4], [-2130.82, -284.07], [-2097.25, -301.1]], "length": 51.07}, {"u": 53601429, "v": 53529508, "oneway": false, "points": [[2613.26, 2150.27], [2651.83, 2125.21]], "length": 46.0}, {"u": 53601429, "v": 53572020, "oneway": false, "points": [[2613.26, 2150.27], [2600.82, 2129.25], [2573.23, 2084.4], [2562.78, 2066.13], [2536.79, 2025.4], [2501.5, 1967.72], [2497.35, 1960.93]], "length": 222.02}, {"u": 53601429, "v": 53604822, "oneway": false, "points": [[2613.26, 2150.27], [2580.43, 2170.32], [2578.44, 2171.52], [2571.7, 2175.65]], "length": 48.7}, {"u": 53602671, "v": 2816310353, "oneway": false, "points": [[-2023.82, -843.83], [-2024.11, -853.25], [-2024.02, -856.15], [-2023.79, -863.55], [-2023.12, -885.24], [-2023.06, -889.47], [-2022.38, -919.39]], "length": 75.58}, {"u": 53602671, "v": 53483907, "oneway": false, "points": [[-2023.82, -843.83], [-2032.91, -843.42], [-2063.33, -842.01], [-2068.91, -841.75], [-2091.33, -840.72], [-2111.21, -839.8], [-2116.41, -839.56], [-2149.82, -836.99], [-2158.04, -836.72]], "length": 134.42}, {"u": 53602671, "v": 53545894, "oneway": false, "points": [[-2023.82, -843.83], [-2015.17, -844.24], [-1995.93, -845.12], [-1962.23, -846.68]], "length": 61.66}, {"u": 53604256, "v": 53604257, "oneway": false, "points": [[-338.27, -152.61], [-368.46, -178.93], [-374.05, -183.74]], "length": 47.42}, {"u": 53604257, "v": 53615252, "oneway": true, "points": [[-374.05, -183.74], [-368.1, -190.06], [-347.77, -212.65], [-340.23, -220.96], [-334.38, -227.69], [-326.29, -237.02], [-299.46, -267.65], [-286.8, -282.13]], "length": 131.51}, {"u": 53604257, "v": 53591793, "oneway": false, "points": [[-374.05, -183.74], [-381.74, -190.66], [-442.62, -245.57], [-449.69, -251.99]], "length": 101.89}, {"u": 53604257, "v": 53604256, "oneway": false, "points": [[-374.05, -183.74], [-368.46, -178.93], [-338.27, -152.61]], "length": 47.42}, {"u": 53604259, "v": 53591793, "oneway": false, "points": [[-599.55, -387.68], [-592.91, -381.36], [-590.5, -379.19], [-562.4, -353.86], [-513.56, -309.83], [-511.15, -307.66], [-502.65, -299.99], [-493.57, -291.8], [-488.15, -286.91], [-479.08, -278.74], [-456.53, -258.42], [-449.69, -251.99]], "length": 202.16}, {"u": 53604259, "v": 53604263, "oneway": false, "points": [[-599.55, -387.68], [-605.87, -394.08], [-608.0, -396.38], [-636.24, -422.58], [-659.37, -443.64], [-673.43, -456.44], [-688.05, -469.75], [-702.66, -483.06], [-718.07, -497.09], [-719.03, -497.97], [-739.35, -516.46], [-741.75, -518.65], [-747.7, -524.07]], "length": 201.4}, {"u": 53604259, "v": 53699396, "oneway": true, "points": [[-599.55, -387.68], [-604.95, -381.82], [-610.14, -376.51], [-628.88, -356.08], [-660.98, -321.07], [-666.65, -314.88]], "length": 99.01}, {"u": 53604263, "v": 53508176, "oneway": false, "points": [[-747.7, -524.07], [-752.39, -528.32], [-754.58, -530.33], [-756.65, -532.2], [-778.72, -552.31], [-789.08, -561.74], [-803.91, -575.25], [-808.09, -579.05], [-825.1, -594.54], [-836.97, -605.34], [-840.21, -608.29], [-888.54, -652.28], [-890.49, -654.06], [-896.94, -659.93]], "length": 201.82}, {"u": 53604263, "v": 53604259, "oneway": false, "points": [[-747.7, -524.07], [-741.75, -518.65], [-739.35, -516.46], [-719.03, -497.97], [-718.07, -497.09], [-702.66, -483.06], [-688.05, -469.75], [-673.43, -456.44], [-659.37, -443.64], [-636.24, -422.58], [-608.0, -396.38], [-605.87, -394.08], [-599.55, -387.68]], "length": 201.4}, {"u": 53604263, "v": 53615260, "oneway": true, "points": [[-747.7, -524.07], [-742.0, -530.3], [-718.74, -553.85], [-705.03, -568.24], [-671.62, -604.08], [-670.2, -605.74], [-658.72, -621.11]], "length": 131.79}, {"u": 53604267, "v": 53508176, "oneway": false, "points": [[-944.97, -703.79], [-905.75, -667.96], [-903.67, -666.06], [-896.94, -659.93]], "length": 65.04}, {"u": 53604822, "v": 2627868777, "oneway": false, "points": [[2571.7, 2175.65], [2573.32, 2178.23]], "length": 3.04}, {"u": 53604822, "v": 53601429, "oneway": false, "points": [[2571.7, 2175.65], [2578.44, 2171.52], [2580.43, 2170.32], [2613.26, 2150.27]], "length": 48.7}, {"u": 53604822, "v": 53636377, "oneway": false, "points": [[2571.7, 2175.65], [2567.08, 2168.52], [2559.07, 2155.39], [2514.85, 2082.92], [2509.32, 2073.85]], "length": 119.4}, {"u": 53604832, "v": 53430844, "oneway": false, "points": [[2761.75, 2071.25], [2770.13, 2070.72], [2844.5, 2065.94], [2852.93, 2065.78]], "length": 91.36}, {"u": 53604832, "v": 53498415, "oneway": false, "points": [[2761.75, 2071.25], [2753.87, 2071.54], [2678.69, 2074.28], [2671.89, 2074.64]], "length": 89.92}, {"u": 53604832, "v": 53572027, "oneway": false, "points": [[2761.75, 2071.25], [2761.49, 2063.43], [2759.07, 2010.61], [2753.74, 1919.4]], "length": 152.07}, {"u": 53604832, "v": 53611260, "oneway": false, "points": [[2761.75, 2071.25], [2762.21, 2079.26], [2770.99, 2252.37], [2771.37, 2259.86]], "length": 188.85}, {"u": 53607068, "v": 53607075, "oneway": false, "points": [[-1881.37, -482.21], [-1881.16, -473.35], [-1881.06, -469.68], [-1880.58, -450.72], [-1880.73, -428.87], [-1879.1, -392.05], [-1879.01, -388.46], [-1878.59, -372.05], [-1878.46, -367.3], [-1878.18, -356.0]], "length": 126.26}, {"u": 53607068, "v": 53668988, "oneway": false, "points": [[-1881.37, -482.21], [-1872.3, -482.66], [-1763.47, -487.44], [-1758.39, -487.91], [-1748.91, -488.3]], "length": 132.61}, {"u": 53607068, "v": 1180005834, "oneway": false, "points": [[-1881.37, -482.21], [-1890.27, -481.78], [-2006.71, -476.06], [-2015.96, -475.56]], "length": 134.75}, {"u": 53607075, "v": 53461749, "oneway": false, "points": [[-1878.18, -356.0], [-1877.86, -346.46], [-1877.77, -342.68], [-1876.72, -297.57], [-1876.56, -282.4], [-1877.41, -269.55], [-1878.96, -262.4], [-1881.44, -255.12], [-1883.96, -249.7], [-1885.92, -246.35], [-1888.28, -243.12], [-1891.81, -238.8], [-1894.63, -235.73], [-1898.88, -230.35], [-1901.82, -224.99]], "length": 138.08}, {"u": 53607075, "v": 53607068, "oneway": false, "points": [[-1878.18, -356.0], [-1878.46, -367.3], [-1878.59, -372.05], [-1879.01, -388.46], [-1879.1, -392.05], [-1880.73, -428.87], [-1880.58, -450.72], [-1881.06, -469.68], [-1881.16, -473.35], [-1881.37, -482.21]], "length": 126.26}, {"u": 53607075, "v": 53668996, "oneway": true, "points": [[-1878.18, -356.0], [-1868.82, -356.85], [-1757.39, -362.47], [-1744.67, -363.1]], "length": 133.71}, {"u": 53608986, "v": 4173748917, "oneway": true, "points": [[-734.28, -239.25], [-727.69, -233.36], [-707.41, -215.32], [-703.46, -211.65], [-667.31, -179.3], [-645.83, -158.31], [-595.91, -111.47], [-586.27, -103.19]], "length": 201.08}, {"u": 53608986, "v": 13069954941, "oneway": true, "points": [[-734.28, -239.25], [-741.46, -231.2], [-762.5, -206.33], [-765.79, -202.86]], "length": 48.14}, {"u": 53610868, "v": 53462383, "oneway": false, "points": [[-2920.62, -1091.55], [-2915.4, -1098.36], [-2894.46, -1124.9], [-2881.46, -1141.08], [-2871.31, -1154.11], [-2869.99, -1155.52], [-2863.74, -1163.15]], "length": 91.45}, {"u": 53610868, "v": 53549949, "oneway": false, "points": [[-2920.62, -1091.55], [-2925.97, -1084.73], [-2973.45, -1026.2], [-2978.09, -1020.46]], "length": 91.42}, {"u": 53610868, "v": 53625770, "oneway": false, "points": [[-2920.62, -1091.55], [-2927.87, -1097.01], [-2930.04, -1098.45], [-3034.52, -1185.96], [-3040.41, -1191.09]], "length": 155.78}, {"u": 53610868, "v": 53421621, "oneway": false, "points": [[-2920.62, -1091.55], [-2913.9, -1085.56], [-2908.48, -1081.58], [-2902.82, -1078.77], [-2900.06, -1077.71], [-2897.69, -1077.0], [-2895.12, -1076.46], [-2892.57, -1076.07], [-2890.12, -1075.83], [-2887.33, -1075.69], [-2868.32, -1075.97], [-2864.76, -1076.04], [-2845.42, -1076.54], [-2838.29, -1076.71], [-2826.63, -1076.88], [-2823.5, -1076.93], [-2820.74, -1076.69], [-2815.78, -1075.77], [-2810.93, -1074.6], [-2807.56, -1073.89], [-2800.01, -1072.78]], "length": 125.66}, {"u": 53610896, "v": 53610898, "oneway": false, "points": [[-3079.4, -890.42], [-3072.43, -899.38], [-3066.54, -906.95], [-3061.68, -913.19]], "length": 28.86}, {"u": 53610896, "v": 53672772, "oneway": false, "points": [[-3079.4, -890.42], [-3050.55, -891.83], [-3032.1, -892.74]], "length": 47.35}, {"u": 53610898, "v": 53610896, "oneway": false, "points": [[-3061.68, -913.19], [-3066.54, -906.95], [-3072.43, -899.38], [-3079.4, -890.42]], "length": 28.86}, {"u": 53610898, "v": 53672772, "oneway": false, "points": [[-3061.68, -913.19], [-3051.54, -905.64], [-3032.1, -892.74]], "length": 35.97}, {"u": 53611257, "v": 53611260, "oneway": false, "points": [[2775.04, 2304.47], [2771.85, 2269.01], [2771.37, 2259.86]], "length": 44.77}, {"u": 53611260, "v": 53604832, "oneway": false, "points": [[2771.37, 2259.86], [2770.99, 2252.37], [2762.21, 2079.26], [2761.75, 2071.25]], "length": 188.85}, {"u": 53611260, "v": 53611257, "oneway": false, "points": [[2771.37, 2259.86], [2771.85, 2269.01], [2775.04, 2304.47]], "length": 44.77}, {"u": 53611260, "v": 53430839, "oneway": false, "points": [[2771.37, 2259.86], [2779.14, 2259.45], [2854.72, 2255.58], [2863.88, 2255.16]], "length": 92.63}, {"u": 53611260, "v": 53498398, "oneway": false, "points": [[2771.37, 2259.86], [2763.48, 2260.31], [2688.37, 2264.63], [2682.28, 2264.82]], "length": 89.24}, {"u": 53611268, "v": 53487523, "oneway": false, "points": [[2785.0, 1764.7], [2791.63, 1766.39], [2858.36, 1783.41], [2865.92, 1785.37]], "length": 83.52}, {"u": 53611268, "v": 3786906803, "oneway": false, "points": [[2785.0, 1764.7], [2778.23, 1762.93], [2708.61, 1744.72], [2681.66, 1736.47], [2652.4, 1730.75], [2650.67, 1730.41], [2645.71, 1730.0]], "length": 143.7}, {"u": 53611268, "v": 53496315, "oneway": false, "points": [[2785.0, 1764.7], [2786.39, 1758.36], [2786.92, 1755.93], [2796.19, 1713.59], [2801.25, 1688.44], [2802.77, 1680.84]], "length": 85.72}, {"u": 53611268, "v": 2925569869, "oneway": false, "points": [[2785.0, 1764.7], [2783.63, 1770.89], [2783.02, 1773.64], [2776.17, 1804.59], [2774.7, 1810.93], [2768.46, 1837.67], [2762.98, 1844.66], [2761.37, 1847.82]], "length": 87.25}, {"u": 53611281, "v": 53568332, "oneway": false, "points": [[2821.42, 1456.92], [2811.91, 1456.45], [2731.07, 1452.47], [2723.62, 1452.1]], "length": 97.92}, {"u": 53611281, "v": 3786926320, "oneway": false, "points": [[2821.42, 1456.92], [2821.67, 1450.78], [2821.79, 1447.72], [2823.79, 1397.94], [2813.94, 1396.45], [2791.85, 1392.84], [2734.32, 1376.43], [2728.37, 1374.73]], "length": 157.39}, {"u": 53611281, "v": 53596328, "oneway": false, "points": [[2821.42, 1456.92], [2821.05, 1464.41], [2820.9, 1467.38], [2817.67, 1532.45], [2817.57, 1534.38], [2817.36, 1538.72]], "length": 81.91}, {"u": 53612039, "v": 53612042, "oneway": false, "points": [[-1514.19, -2257.48], [-1531.28, -2263.06], [-1570.55, -2275.87], [-1593.11, -2285.16], [-1602.3, -2288.85]], "length": 93.59}, {"u": 53612039, "v": 2771341200, "oneway": false, "points": [[-1514.19, -2257.48], [-1478.67, -2258.27], [-1433.11, -2260.86], [-1415.85, -2261.85], [-1399.05, -2262.32], [-1395.27, -2262.42], [-1382.3, -2259.45]], "length": 132.34}, {"u": 53612039, "v": 53447620, "oneway": false, "points": [[-1514.19, -2257.48], [-1526.77, -2245.59], [-1534.8, -2234.32], [-1557.27, -2193.56], [-1589.72, -2137.16], [-1617.43, -2085.91], [-1656.85, -2014.29], [-1661.44, -2005.96]], "length": 292.29}, {"u": 53612042, "v": 53612039, "oneway": false, "points": [[-1602.3, -2288.85], [-1593.11, -2285.16], [-1570.55, -2275.87], [-1531.28, -2263.06], [-1514.19, -2257.48]], "length": 93.59}, {"u": 53612042, "v": 53679815, "oneway": false, "points": [[-1602.3, -2288.85], [-1599.76, -2294.84], [-1591.29, -2314.18], [-1581.2, -2340.36], [-1569.47, -2376.18], [-1567.5, -2383.08]], "length": 100.54}, {"u": 53612042, "v": 1153239288, "oneway": false, "points": [[-1602.3, -2288.85], [-1606.96, -2279.02], [-1625.95, -2240.83], [-1650.76, -2199.33], [-1665.18, -2179.13], [-1693.94, -2141.96], [-1738.96, -2091.65], [-1757.15, -2070.55], [-1764.92, -2061.52]], "length": 280.98}, {"u": 53615252, "v": 53493114, "oneway": true, "points": [[-286.8, -282.13], [-274.35, -295.82], [-240.3, -333.26], [-231.66, -342.76], [-205.1, -371.97], [-198.74, -378.95]], "length": 130.88}, {"u": 53615252, "v": 13324853243, "oneway": false, "points": [[-286.8, -282.13], [-294.58, -288.97], [-297.88, -291.83], [-310.57, -302.66]], "length": 31.41}, {"u": 53615252, "v": 53332734, "oneway": false, "points": [[-286.8, -282.13], [-279.94, -275.86], [-260.89, -258.46], [-236.06, -235.89], [-218.78, -220.2], [-205.91, -208.51]], "length": 109.38}, {"u": 53615260, "v": 53493128, "oneway": true, "points": [[-658.72, -621.11], [-646.61, -634.97], [-596.17, -689.98], [-594.56, -691.5], [-577.03, -710.85], [-570.92, -717.59]], "length": 130.46}, {"u": 53615260, "v": 53508174, "oneway": false, "points": [[-658.72, -621.11], [-663.94, -625.83], [-667.78, -629.35], [-670.14, -631.46], [-682.08, -642.33], [-695.96, -655.0], [-704.64, -662.93], [-714.04, -671.36], [-721.75, -678.5], [-737.54, -692.88], [-745.66, -700.27], [-774.12, -726.18], [-778.15, -729.88], [-782.94, -734.22], [-801.78, -751.35], [-808.85, -757.22]], "length": 202.66}, {"u": 53615260, "v": 917593526, "oneway": false, "points": [[-658.72, -621.11], [-652.54, -615.49], [-636.41, -600.8], [-635.84, -600.28], [-627.05, -592.28], [-613.63, -580.06], [-599.88, -567.55], [-599.03, -566.77], [-584.26, -553.33], [-568.86, -539.3], [-555.11, -526.78], [-553.64, -525.45], [-539.2, -512.29], [-516.37, -491.5], [-510.0, -485.71]], "length": 201.13}, {"u": 53616146, "v": 1142904218, "oneway": false, "points": [[495.26, 116.79], [501.38, 122.15], [503.86, 124.46], [525.02, 144.1], [548.38, 165.79], [560.97, 177.47], [578.96, 193.32], [634.72, 245.91], [637.22, 248.28], [644.5, 255.19]], "length": 203.56}, {"u": 53616146, "v": 1192150160, "oneway": false, "points": [[495.26, 116.79], [532.68, 74.37], [554.46, 50.78], [569.98, 30.01], [571.6, 27.35], [574.8, 18.31]], "length": 127.31}, {"u": 53616146, "v": 53407941, "oneway": false, "points": [[495.26, 116.79], [489.38, 123.16], [482.74, 130.37], [458.49, 157.14], [434.44, 183.28], [427.3, 191.57]], "length": 101.05}, {"u": 53616166, "v": 53628954, "oneway": false, "points": [[-1627.33, -862.38], [-1627.14, -850.63], [-1627.03, -849.13], [-1626.76, -837.31], [-1625.96, -805.26], [-1625.82, -799.63]], "length": 62.78}, {"u": 53616166, "v": 53430437, "oneway": false, "points": [[-1627.33, -862.38], [-1627.61, -871.86], [-1627.65, -873.44], [-1628.71, -908.76], [-1629.1, -922.79], [-1629.7, -944.04], [-1630.84, -991.89], [-1631.1, -1002.63]], "length": 140.3}, {"u": 53616166, "v": 1179459773, "oneway": false, "points": [[-1627.33, -862.38], [-1619.11, -862.77], [-1586.43, -864.24], [-1525.12, -867.02], [-1513.15, -867.57]], "length": 114.29}, {"u": 53616166, "v": 53576821, "oneway": false, "points": [[-1627.33, -862.38], [-1636.49, -861.94], [-1657.84, -860.91], [-1694.14, -859.15], [-1720.16, -857.93], [-1748.16, -856.59], [-1756.79, -856.17]], "length": 129.61}, {"u": 53616173, "v": 53509875, "oneway": false, "points": [[-1622.24, -678.11], [-1685.42, -675.41]], "length": 63.23}, {"u": 53616173, "v": 1179459707, "oneway": false, "points": [[-1622.24, -678.11], [-1582.43, -679.81], [-1579.47, -679.94], [-1515.08, -682.68], [-1505.18, -683.1]], "length": 117.17}, {"u": 53616173, "v": 53616175, "oneway": false, "points": [[-1622.24, -678.11], [-1620.74, -669.8], [-1620.64, -666.93], [-1619.92, -646.67], [-1619.0, -620.41], [-1618.28, -599.8], [-1617.96, -593.95]], "length": 84.35}, {"u": 53616173, "v": 53545466, "oneway": false, "points": [[-1622.24, -678.11], [-1623.47, -687.56], [-1623.52, -689.01], [-1623.83, -699.73], [-1624.26, -736.69], [-1624.32, -742.03]], "length": 64.01}, {"u": 53616175, "v": 53616173, "oneway": false, "points": [[-1617.96, -593.95], [-1618.28, -599.8], [-1619.0, -620.41], [-1619.92, -646.67], [-1620.64, -666.93], [-1620.74, -669.8], [-1622.24, -678.11]], "length": 84.35}, {"u": 53616182, "v": 1179459701, "oneway": false, "points": [[-1617.78, -495.19], [-1609.16, -495.62], [-1586.89, -496.71], [-1546.79, -498.68], [-1503.6, -500.81], [-1500.71, -500.95], [-1491.2, -501.42]], "length": 126.73}, {"u": 53616182, "v": 53668988, "oneway": false, "points": [[-1617.78, -495.19], [-1627.01, -494.74], [-1739.46, -488.58], [-1748.91, -488.3]], "length": 131.31}, {"u": 53616182, "v": 53616188, "oneway": false, "points": [[-1617.78, -495.19], [-1617.41, -486.83], [-1617.25, -483.26], [-1615.54, -444.34], [-1615.07, -433.65], [-1612.31, -379.77], [-1611.85, -369.8]], "length": 125.53}, {"u": 53616188, "v": 53488193, "oneway": false, "points": [[-1611.85, -369.8], [-1611.2, -358.76], [-1610.69, -349.98], [-1608.13, -306.41]], "length": 63.5}, {"u": 53616188, "v": 53616182, "oneway": false, "points": [[-1611.85, -369.8], [-1612.31, -379.77], [-1615.07, -433.65], [-1615.54, -444.34], [-1617.25, -483.26], [-1617.41, -486.83], [-1617.78, -495.19]], "length": 125.53}, {"u": 53616188, "v": 1179459686, "oneway": true, "points": [[-1611.85, -369.8], [-1601.39, -370.32], [-1491.46, -375.68], [-1480.79, -376.02]], "length": 131.21}, {"u": 53616189, "v": 53488193, "oneway": false, "points": [[-1604.54, -238.19], [-1605.03, -247.64], [-1605.19, -251.59], [-1606.84, -282.39], [-1608.13, -306.41]], "length": 68.31}, {"u": 53616189, "v": 53652463, "oneway": true, "points": [[-1604.54, -238.19], [-1696.4, -233.78], [-1732.8, -232.02], [-1740.94, -231.63]], "length": 136.55}, {"u": 53620227, "v": 53551340, "oneway": false, "points": [[-101.05, -2123.85], [-112.08, -2123.47], [-127.81, -2122.92], [-142.66, -2122.41], [-148.2, -2122.2], [-182.55, -2121.0], [-189.73, -2120.76]], "length": 88.74}, {"u": 53621162, "v": 53454656, "oneway": false, "points": [[-2478.3, -1344.03], [-2449.87, -1320.36]], "length": 36.99}, {"u": 53621162, "v": 53454658, "oneway": false, "points": [[-2478.3, -1344.03], [-2450.31, -1344.85]], "length": 28.0}, {"u": 53621162, "v": 53621164, "oneway": false, "points": [[-2478.3, -1344.03], [-2505.38, -1366.58], [-2507.54, -1368.39], [-2514.5, -1374.03]], "length": 47.02}, {"u": 53621164, "v": 53621168, "oneway": false, "points": [[-2514.5, -1374.03], [-2520.96, -1380.0], [-2523.59, -1382.26], [-2557.01, -1411.06], [-2574.21, -1425.34], [-2607.17, -1453.14], [-2613.72, -1458.66]], "length": 130.42}, {"u": 53621164, "v": 53621162, "oneway": false, "points": [[-2514.5, -1374.03], [-2507.54, -1368.39], [-2505.38, -1366.58], [-2478.3, -1344.03]], "length": 47.02}, {"u": 53621164, "v": 3812685626, "oneway": false, "points": [[-2514.5, -1374.03], [-2508.56, -1381.29], [-2477.02, -1419.04], [-2464.02, -1434.65]], "length": 78.88}, {"u": 53621164, "v": 53444627, "oneway": false, "points": [[-2514.5, -1374.03], [-2520.01, -1367.61], [-2545.56, -1337.49], [-2570.82, -1307.71], [-2576.79, -1300.53]], "length": 96.35}, {"u": 53621168, "v": 53444632, "oneway": false, "points": [[-2613.72, -1458.66], [-2619.38, -1451.85], [-2643.96, -1422.29], [-2670.23, -1391.99], [-2676.11, -1384.84]], "length": 96.66}, {"u": 53621168, "v": 2635256574, "oneway": false, "points": [[-2613.72, -1458.66], [-2660.02, -1498.79], [-2692.4, -1525.75], [-2705.97, -1537.09], [-2712.3, -1542.08]], "length": 129.16}, {"u": 53621168, "v": 53621164, "oneway": false, "points": [[-2613.72, -1458.66], [-2607.17, -1453.14], [-2574.21, -1425.34], [-2557.01, -1411.06], [-2523.59, -1382.26], [-2520.96, -1380.0], [-2514.5, -1374.03]], "length": 130.42}, {"u": 53621256, "v": 53576831, "oneway": false, "points": [[-1639.32, -1365.38], [-1647.12, -1365.27], [-1649.06, -1365.25], [-1758.48, -1363.6], [-1760.92, -1363.56], [-1769.48, -1363.33]], "length": 130.18}, {"u": 53621256, "v": 1179795984, "oneway": false, "points": [[-1639.32, -1365.38], [-1630.8, -1365.54], [-1549.48, -1366.93], [-1529.74, -1367.35], [-1519.24, -1367.54], [-1511.3, -1367.68]], "length": 128.03}, {"u": 53621256, "v": 2573847790, "oneway": false, "points": [[-1639.32, -1365.38], [-1639.02, -1353.78], [-1637.76, -1305.57], [-1637.98, -1258.32], [-1637.98, -1255.97], [-1638.06, -1243.82]], "length": 121.58}, {"u": 53621256, "v": 53511582, "oneway": false, "points": [[-1639.32, -1365.38], [-1639.58, -1375.0], [-1639.64, -1377.08], [-1641.05, -1427.02], [-1642.45, -1471.15], [-1642.6, -1475.77], [-1642.93, -1486.06]], "length": 120.73}, {"u": 53621269, "v": 53511598, "oneway": false, "points": [[-2027.21, -1356.68], [-2027.41, -1367.41], [-2027.42, -1368.02], [-2029.4, -1466.33], [-2029.43, -1476.87]], "length": 120.21}, {"u": 53621269, "v": 53643772, "oneway": false, "points": [[-2027.21, -1356.68], [-2026.92, -1345.42], [-2025.62, -1295.35], [-2024.13, -1246.89], [-2023.77, -1235.22]], "length": 121.51}, {"u": 53621269, "v": 4095648227, "oneway": false, "points": [[-2027.21, -1356.68], [-2035.28, -1356.46], [-2161.55, -1353.06], [-2163.15, -1353.01], [-2165.76, -1352.94]], "length": 138.6}, {"u": 53621269, "v": 53503849, "oneway": false, "points": [[-2027.21, -1356.68], [-2018.9, -1356.89], [-1906.85, -1359.71], [-1898.86, -1359.85]], "length": 128.39}, {"u": 53621277, "v": 1178694147, "oneway": true, "points": [[-2267.38, -1349.97], [-2268.01, -1342.03], [-2268.73, -1339.66], [-2269.88, -1335.91], [-2272.54, -1329.7], [-2275.41, -1325.12], [-2278.59, -1321.5], [-2282.22, -1318.15], [-2286.14, -1315.02], [-2292.49, -1311.95], [-2297.47, -1310.26], [-2305.11, -1307.89], [-2310.82, -1306.63], [-2314.4, -1305.85], [-2319.69, -1305.22]], "length": 76.45}, {"u": 53621277, "v": 4095648223, "oneway": false, "points": [[-2267.38, -1349.97], [-2262.72, -1350.01], [-2184.78, -1352.42], [-2181.57, -1352.47], [-2178.29, -1352.57]], "length": 89.12}, {"u": 53621652, "v": 53571781, "oneway": false, "points": [[1912.31, 615.17], [1923.88, 625.2], [1925.42, 627.12], [1930.55, 633.46]], "length": 25.93}, {"u": 53624470, "v": 53288575, "oneway": false, "points": [[-72.83, -3092.38], [-72.88, -3077.15]], "length": 15.23}, {"u": 53624470, "v": 2637710726, "oneway": false, "points": [[-72.83, -3092.38], [21.97, -3096.4], [69.25, -3098.41], [131.52, -3101.93], [136.88, -3102.22], [178.09, -3101.91], [237.02, -3097.47], [254.12, -3095.77], [266.78, -3093.94], [289.51, -3090.53], [300.36, -3088.92]], "length": 374.18}, {"u": 53625770, "v": 53610868, "oneway": false, "points": [[-3040.41, -1191.09], [-3034.52, -1185.96], [-2930.04, -1098.45], [-2927.87, -1097.01], [-2920.62, -1091.55]], "length": 155.78}, {"u": 53625770, "v": 53462393, "oneway": false, "points": [[-3040.41, -1191.09], [-3033.67, -1199.46], [-3011.16, -1226.93], [-3004.79, -1234.58], [-2987.94, -1254.42], [-2985.5, -1257.17], [-2980.97, -1262.15]], "length": 92.65}, {"u": 53625770, "v": 53549957, "oneway": false, "points": [[-3040.41, -1191.09], [-3046.18, -1184.52], [-3093.45, -1128.63], [-3098.43, -1122.62]], "length": 89.74}, {"u": 53626974, "v": 53626978, "oneway": false, "points": [[2367.65, 2477.37], [2360.73, 2483.51], [2355.21, 2488.19], [2313.33, 2531.05], [2302.15, 2542.06], [2295.76, 2548.51]], "length": 101.18}, {"u": 53626974, "v": 2714912986, "oneway": false, "points": [[2367.65, 2477.37], [2373.42, 2470.97], [2416.38, 2427.21], [2431.33, 2412.12], [2438.45, 2405.31]], "length": 101.04}, {"u": 53626974, "v": 53668890, "oneway": false, "points": [[2367.65, 2477.37], [2373.69, 2483.26], [2445.22, 2552.35], [2481.73, 2588.95], [2488.34, 2595.28]], "length": 168.74}, {"u": 53626974, "v": 6915301805, "oneway": false, "points": [[2367.65, 2477.37], [2360.6, 2470.98], [2332.54, 2443.07]], "length": 49.1}, {"u": 53626978, "v": 53714925, "oneway": false, "points": [[2295.76, 2548.51], [2289.54, 2554.82], [2255.62, 2590.46], [2232.1, 2614.52], [2225.74, 2621.25]], "length": 100.97}, {"u": 53626978, "v": 53626974, "oneway": false, "points": [[2295.76, 2548.51], [2302.15, 2542.06], [2313.33, 2531.05], [2355.21, 2488.19], [2360.73, 2483.51], [2367.65, 2477.37]], "length": 101.18}, {"u": 53626978, "v": 53727021, "oneway": false, "points": [[2295.76, 2548.51], [2302.31, 2555.11], [2412.29, 2661.92], [2419.7, 2667.32]], "length": 171.77}, {"u": 53626978, "v": 349368476, "oneway": false, "points": [[2295.76, 2548.51], [2289.53, 2542.51], [2172.5, 2428.96], [2166.22, 2422.88]], "length": 180.46}, {"u": 53626983, "v": 53562563, "oneway": false, "points": [[2131.29, 2717.72], [2155.84, 2693.58]], "length": 34.43}, {"u": 53628825, "v": 53558145, "oneway": false, "points": [[2377.4, 1286.1], [2380.58, 1281.99], [2393.99, 1264.63], [2408.78, 1225.65], [2412.16, 1218.33], [2416.22, 1212.32], [2424.43, 1204.34], [2425.97, 1202.86], [2433.19, 1195.84]], "length": 107.8}, {"u": 53628825, "v": 53461430, "oneway": false, "points": [[2377.4, 1286.1], [2371.77, 1292.14], [2322.17, 1345.33], [2320.01, 1347.65], [2314.3, 1353.78]], "length": 92.54}, {"u": 53628825, "v": 53589760, "oneway": false, "points": [[2377.4, 1286.1], [2382.01, 1290.53], [2398.41, 1306.29], [2472.21, 1372.69], [2523.7, 1420.74], [2529.09, 1425.77]], "length": 206.21}, {"u": 53628954, "v": 53545466, "oneway": false, "points": [[-1625.82, -799.63], [-1625.65, -792.92], [-1625.11, -770.86], [-1624.63, -746.54], [-1624.32, -742.03]], "length": 57.62}, {"u": 53628954, "v": 53616166, "oneway": false, "points": [[-1625.82, -799.63], [-1625.96, -805.26], [-1626.76, -837.31], [-1627.03, -849.13], [-1627.14, -850.63], [-1627.33, -862.38]], "length": 62.78}, {"u": 53628954, "v": 1179459709, "oneway": true, "points": [[-1625.82, -799.63], [-1616.82, -799.82], [-1524.12, -804.27], [-1520.71, -804.45], [-1510.26, -804.89]], "length": 115.68}, {"u": 53628956, "v": 53545473, "oneway": false, "points": [[-1755.24, -792.94], [-1753.23, -736.17]], "length": 56.81}, {"u": 53628956, "v": 53628954, "oneway": true, "points": [[-1755.24, -792.94], [-1746.74, -793.33], [-1709.1, -795.31], [-1691.7, -796.21], [-1672.02, -797.23], [-1655.57, -798.08], [-1637.57, -799.01], [-1634.7, -799.16], [-1625.82, -799.63]], "length": 129.59}, {"u": 53628956, "v": 53576821, "oneway": false, "points": [[-1755.24, -792.94], [-1755.46, -797.7], [-1755.83, -805.18], [-1755.94, -810.7], [-1756.1, -820.6], [-1756.53, -847.23], [-1756.79, -856.17]], "length": 63.26}, {"u": 53629591, "v": 12911858844, "oneway": false, "points": [[-782.0, -1303.43], [-792.55, -1312.67], [-819.28, -1337.06], [-821.51, -1338.97], [-822.72, -1339.48], [-824.47, -1339.32], [-826.96, -1338.7], [-828.83, -1337.88], [-829.81, -1337.19], [-832.32, -1335.38], [-990.15, -1210.34]], "length": 266.47}, {"u": 53629591, "v": 12911858844, "oneway": false, "points": [[-782.0, -1303.43], [-786.94, -1297.97], [-905.29, -1167.24], [-919.74, -1150.28], [-921.87, -1149.65], [-924.72, -1151.25], [-934.76, -1160.18], [-943.95, -1168.3], [-967.78, -1190.35], [-982.96, -1203.5], [-983.8, -1204.23], [-990.15, -1210.34]], "length": 299.64}, {"u": 53629591, "v": 1191535148, "oneway": false, "points": [[-782.0, -1303.43], [-757.66, -1282.08], [-751.77, -1276.81], [-741.85, -1267.58], [-733.42, -1258.28]], "length": 66.38}, {"u": 53631422, "v": 53461154, "oneway": true, "points": [[416.78, 941.52], [354.46, 884.09], [347.81, 877.97]], "length": 93.77}, {"u": 53636372, "v": 6577170380, "oneway": false, "points": [[2137.06, 1470.47], [2117.44, 1439.65]], "length": 36.54}, {"u": 53636372, "v": 53723920, "oneway": false, "points": [[2137.06, 1470.47], [2131.71, 1475.87], [2055.71, 1552.55]], "length": 115.56}, {"u": 53636372, "v": 2859093884, "oneway": false, "points": [[2137.06, 1470.47], [2141.67, 1478.38], [2173.41, 1532.91], [2178.28, 1541.28]], "length": 81.93}, {"u": 53636377, "v": 53604822, "oneway": false, "points": [[2509.32, 2073.85], [2514.85, 2082.92], [2559.07, 2155.39], [2567.08, 2168.52], [2571.7, 2175.65]], "length": 119.4}, {"u": 53636377, "v": 53572019, "oneway": false, "points": [[2509.32, 2073.85], [2504.68, 2066.31], [2459.88, 1993.63], [2455.13, 1985.9]], "length": 103.3}, {"u": 53636377, "v": 53407767, "oneway": false, "points": [[2509.32, 2073.85], [2502.64, 2079.64], [2483.88, 2095.91], [2463.26, 2118.82], [2461.68, 2120.65], [2448.35, 2133.14]], "length": 85.18}, {"u": 53637455, "v": 5468393309, "oneway": false, "points": [[-377.1, 357.44], [-385.1, 350.21], [-402.38, 334.58], [-404.37, 332.78], [-405.45, 331.8], [-406.27, 331.06], [-427.74, 311.64], [-458.18, 284.11], [-460.19, 282.29], [-473.8, 269.97]], "length": 130.4}, {"u": 53637455, "v": 316292003, "oneway": false, "points": [[-377.1, 357.44], [-371.45, 362.55], [-349.26, 382.63], [-348.38, 383.42], [-327.41, 402.39], [-320.6, 408.54], [-316.82, 411.97], [-309.54, 418.55], [-296.94, 429.95], [-281.5, 443.91], [-280.62, 444.7], [-278.4, 446.72], [-263.65, 460.06], [-257.35, 465.76], [-255.03, 467.85], [-244.96, 476.97], [-235.05, 485.93], [-230.78, 488.32], [-228.55, 488.54], [-225.96, 488.12], [-223.63, 486.74], [-223.29, 486.31], [-193.3, 453.94], [-190.21, 450.61], [-168.59, 427.23], [-167.34, 425.89], [-165.96, 424.39], [-159.51, 417.41]], "length": 298.44}, {"u": 53637455, "v": 53655130, "oneway": false, "points": [[-377.1, 357.44], [-383.73, 365.01], [-408.83, 392.77], [-418.72, 403.71], [-420.6, 405.79], [-439.55, 426.74], [-446.38, 434.31], [-451.36, 439.81]], "length": 110.9}, {"u": 53637455, "v": 3157337335, "oneway": false, "points": [[-377.1, 357.44], [-371.93, 351.96], [-352.14, 330.38], [-331.92, 307.71], [-329.54, 305.07], [-317.11, 291.33], [-315.62, 289.68], [-309.08, 282.45]], "length": 101.25}, {"u": 53639872, "v": 1179796074, "oneway": true, "points": [[-1377.96, -2116.33], [-1373.32, -2109.98], [-1371.62, -2098.87], [-1369.7, -2089.19], [-1365.88, -2080.76]], "length": 38.23}, {"u": 53639872, "v": 5497859257, "oneway": false, "points": [[-1377.96, -2116.33], [-1379.54, -2151.16], [-1379.91, -2159.31]], "length": 43.02}, {"u": 53639885, "v": 53481665, "oneway": false, "points": [[-1495.99, -2833.58], [-1506.17, -2850.78], [-1529.68, -2889.9]], "length": 65.63}, {"u": 53639885, "v": 4248941674, "oneway": true, "points": [[-1495.99, -2833.58], [-1480.85, -2824.22], [-1474.09, -2820.22], [-1468.24, -2817.65], [-1465.06, -2816.98], [-1460.69, -2817.11], [-1448.66, -2819.15]], "length": 51.87}, {"u": 53639885, "v": 2638675157, "oneway": false, "points": [[-1495.99, -2833.58], [-1480.51, -2806.31], [-1475.8, -2798.42]], "length": 40.55}, {"u": 53640713, "v": 53498229, "oneway": false, "points": [[2015.32, 2276.39], [2021.92, 2282.08]], "length": 8.71}, {"u": 53640713, "v": 53640863, "oneway": true, "points": [[2015.32, 2276.39], [1986.7, 2252.25], [1976.95, 2249.82], [1966.71, 2250.92], [1955.59, 2253.5], [1939.12, 2256.34], [1924.68, 2255.7], [1912.97, 2250.47]], "length": 113.21}, {"u": 53640720, "v": 53640713, "oneway": true, "points": [[1904.94, 2180.94], [1916.01, 2188.97], [1933.04, 2196.17], [1939.72, 2199.76], [1976.0, 2234.0], [2015.32, 2276.39]], "length": 147.46}, {"u": 53640720, "v": 53640863, "oneway": true, "points": [[1904.94, 2180.94], [1910.37, 2206.36], [1912.7, 2230.95], [1912.97, 2250.47]], "length": 70.21}, {"u": 53640725, "v": 53668900, "oneway": false, "points": [[1885.13, 2133.48], [1891.81, 2126.31], [1941.6, 2076.5], [1948.24, 2069.86]], "length": 89.62}, {"u": 53640725, "v": 53640720, "oneway": true, "points": [[1885.13, 2133.48], [1896.64, 2157.06], [1904.94, 2180.94]], "length": 51.52}, {"u": 53640736, "v": 446198895, "oneway": true, "points": [[1743.28, 1988.05], [1730.4, 2001.33]], "length": 18.5}, {"u": 53640736, "v": 53640725, "oneway": true, "points": [[1743.28, 1988.05], [1755.94, 1999.17], [1775.88, 2016.77], [1856.3, 2094.26], [1872.94, 2114.51], [1885.13, 2133.48]], "length": 203.88}, {"u": 53640824, "v": 1699123288, "oneway": false, "points": [[714.7, 1074.46], [720.38, 1068.22], [721.67, 1066.83], [776.29, 1006.87], [782.81, 999.73]], "length": 101.11}, {"u": 53640824, "v": 1699123263, "oneway": true, "points": [[714.7, 1074.46], [721.29, 1080.69], [856.2, 1205.24], [863.12, 1211.65]], "length": 202.11}, {"u": 53640824, "v": 4172253594, "oneway": false, "points": [[714.7, 1074.46], [709.84, 1079.79], [708.26, 1081.53], [705.73, 1084.31], [653.12, 1142.02], [652.26, 1142.98], [645.88, 1149.81]], "length": 102.05}, {"u": 53640831, "v": 53667521, "oneway": false, "points": [[266.57, 668.77], [272.58, 662.19], [289.91, 643.18], [291.01, 641.97], [314.18, 616.56], [328.34, 601.03], [335.02, 593.7]], "length": 101.59}, {"u": 53640831, "v": 53461150, "oneway": true, "points": [[266.57, 668.77], [272.86, 674.46], [408.9, 797.93], [415.43, 803.84]], "length": 201.01}, {"u": 53640831, "v": 316292008, "oneway": false, "points": [[266.57, 668.77], [261.52, 674.3], [260.25, 675.7], [206.15, 735.19], [204.64, 736.82], [198.24, 743.19]], "length": 101.04}, {"u": 53640838, "v": 3157337335, "oneway": false, "points": [[-241.91, 208.16], [-247.48, 214.33], [-250.09, 217.22], [-275.57, 245.39], [-282.3, 252.84], [-286.54, 257.51], [-301.28, 273.81], [-303.5, 276.28], [-309.08, 282.45]], "length": 100.16}, {"u": 53640838, "v": 53655118, "oneway": false, "points": [[-241.91, 208.16], [-236.68, 202.38], [-234.99, 200.51], [-224.51, 188.93], [-207.25, 169.83], [-182.81, 142.8], [-180.64, 140.39], [-174.57, 134.02]], "length": 100.16}, {"u": 53640838, "v": 3227608153, "oneway": true, "points": [[-241.91, 208.16], [-235.06, 214.42], [-219.4, 228.73], [-217.31, 230.63], [-206.31, 240.67], [-205.59, 241.34], [-191.56, 254.14], [-190.35, 255.24], [-173.47, 270.66], [-161.1, 281.96], [-151.1, 291.09], [-136.89, 304.06], [-129.84, 309.44], [-116.21, 321.19], [-112.82, 324.05], [-103.44, 332.86], [-92.31, 344.77]], "length": 202.69}, {"u": 53640863, "v": 446196406, "oneway": true, "points": [[1912.97, 2250.47], [1914.43, 2309.98], [1916.11, 2327.41], [1920.57, 2349.22], [1926.24, 2376.5]], "length": 127.17}, {"u": 53640863, "v": 53644706, "oneway": true, "points": [[1912.97, 2250.47], [1906.48, 2246.85], [1903.23, 2244.05], [1896.33, 2236.24], [1891.8, 2228.81], [1863.26, 2153.61]], "length": 111.27}, {"u": 53642012, "v": 2714977035, "oneway": false, "points": [[-860.32, -88.3], [-859.13, -83.69], [-857.83, -79.89], [-855.99, -76.35], [-854.29, -73.95], [-852.31, -71.56], [-850.12, -69.49], [-849.45, -68.86], [-830.98, -52.47], [-810.45, -34.24], [-803.43, -28.02], [-797.3, -22.58], [-796.68, -22.02], [-789.72, -15.85], [-774.65, -2.48], [-773.98, -1.87], [-767.42, 3.94], [-765.31, 5.82], [-758.66, 11.72], [-736.74, 31.18], [-727.5, 39.38], [-719.77, 46.24]], "length": 196.14}, {"u": 53642012, "v": 3271744858, "oneway": false, "points": [[-860.32, -88.3], [-860.27, -93.44], [-859.2, -98.76], [-857.48, -102.17], [-855.06, -105.67], [-852.24, -109.19], [-837.93, -125.01]], "length": 44.48}, {"u": 53642768, "v": 53642775, "oneway": false, "points": [[-372.67, -1955.72], [-372.85, -1959.79], [-373.45, -1973.26], [-373.49, -1974.13], [-373.97, -1984.9], [-374.54, -1997.75], [-382.81, -2182.95], [-383.22, -2192.22]], "length": 236.73}, {"u": 53642775, "v": 53642768, "oneway": false, "points": [[-383.22, -2192.22], [-382.81, -2182.95], [-374.54, -1997.75], [-373.97, -1984.9], [-373.49, -1974.13], [-373.45, -1973.26], [-372.85, -1959.79], [-372.67, -1955.72]], "length": 236.73}, {"u": 53642775, "v": 1612121520, "oneway": false, "points": [[-383.22, -2192.22], [-388.99, -2191.97], [-400.23, -2191.48]], "length": 17.03}, {"u": 53642775, "v": 53552967, "oneway": false, "points": [[-383.22, -2192.22], [-292.7, -2196.15], [-285.69, -2196.45]], "length": 97.62}, {"u": 53642782, "v": 53562507, "oneway": false, "points": [[-416.93, -2385.82], [-409.12, -2386.16]], "length": 7.82}, {"u": 53642782, "v": 53438624, "oneway": false, "points": [[-416.93, -2385.82], [-469.25, -2382.67], [-515.91, -2381.12], [-536.31, -2380.53], [-540.45, -2380.59], [-545.22, -2379.95], [-547.05, -2378.26], [-548.25, -2376.25], [-548.22, -2374.09], [-547.68, -2331.68], [-544.92, -2280.81]], "length": 228.81}, {"u": 53642782, "v": 2634682669, "oneway": false, "points": [[-416.93, -2385.82], [-417.21, -2392.95], [-418.47, -2425.17], [-418.67, -2430.32]], "length": 44.53}, {"u": 53643765, "v": 53643768, "oneway": false, "points": [[-2019.78, -1053.48], [-2020.08, -1078.18], [-2020.39, -1103.69], [-2020.52, -1114.81]], "length": 61.33}, {"u": 53643765, "v": 2816310345, "oneway": false, "points": [[-2019.78, -1053.48], [-2020.02, -1036.23], [-2020.39, -1001.59], [-2020.48, -993.47]], "length": 60.02}, {"u": 53643765, "v": 53483915, "oneway": false, "points": [[-2019.78, -1053.48], [-2027.92, -1053.17], [-2065.28, -1051.77], [-2155.49, -1049.52], [-2163.17, -1049.33]], "length": 143.45}, {"u": 53643765, "v": 53503834, "oneway": false, "points": [[-2019.78, -1053.48], [-2011.78, -1053.79], [-2000.41, -1054.17], [-1951.54, -1055.83], [-1945.7, -1055.97], [-1927.49, -1056.5], [-1899.04, -1057.07], [-1890.95, -1057.17]], "length": 128.89}, {"u": 53643768, "v": 53643772, "oneway": false, "points": [[-2020.52, -1114.81], [-2020.9, -1126.05], [-2022.54, -1175.22], [-2023.55, -1224.44], [-2023.77, -1235.22]], "length": 120.46}, {"u": 53643768, "v": 53643765, "oneway": false, "points": [[-2020.52, -1114.81], [-2020.39, -1103.69], [-2020.08, -1078.18], [-2019.78, -1053.48]], "length": 61.33}, {"u": 53643768, "v": 53709543, "oneway": false, "points": [[-2020.52, -1114.81], [-2028.96, -1114.59], [-2157.06, -1111.07], [-2165.52, -1110.84]], "length": 145.06}, {"u": 53643768, "v": 53709531, "oneway": false, "points": [[-2020.52, -1114.81], [-2013.07, -1115.05], [-1932.29, -1117.14], [-1910.45, -1117.61], [-1900.99, -1117.96], [-1892.87, -1118.17]], "length": 127.7}, {"u": 53643772, "v": 53621269, "oneway": false, "points": [[-2023.77, -1235.22], [-2024.13, -1246.89], [-2025.62, -1295.35], [-2026.92, -1345.42], [-2027.21, -1356.68]], "length": 121.51}, {"u": 53643772, "v": 53643768, "oneway": false, "points": [[-2023.77, -1235.22], [-2023.55, -1224.44], [-2022.54, -1175.22], [-2020.9, -1126.05], [-2020.52, -1114.81]], "length": 120.46}, {"u": 53643772, "v": 53692030, "oneway": false, "points": [[-2023.77, -1235.22], [-2032.12, -1234.99], [-2157.29, -1231.8], [-2159.29, -1231.75], [-2168.16, -1231.53]], "length": 144.43}, {"u": 53643772, "v": 53503843, "oneway": false, "points": [[-2023.77, -1235.22], [-2015.97, -1235.43], [-1903.55, -1238.09], [-1895.73, -1238.33]], "length": 128.08}, {"u": 53644201, "v": 53573840, "oneway": false, "points": [[293.62, -2254.41], [290.91, -2251.65], [279.76, -2240.34], [277.48, -2240.39], [271.12, -2245.39], [264.0, -2251.0], [255.45, -2258.48], [248.73, -2262.36]], "length": 58.3}, {"u": 53644706, "v": 446198895, "oneway": true, "points": [[1863.26, 2153.61], [1859.94, 2140.04], [1853.8, 2123.33], [1845.25, 2111.32], [1826.86, 2093.12], [1801.01, 2067.99], [1747.98, 2016.63], [1743.32, 2012.24], [1730.4, 2001.33]], "length": 205.58}, {"u": 53645079, "v": 53558155, "oneway": false, "points": [[1316.32, 315.86], [1322.68, 309.02], [1324.02, 307.58], [1362.73, 265.84], [1366.49, 265.13], [1368.3, 265.97], [1406.71, 297.32], [1410.0, 300.01], [1414.12, 303.31]], "length": 133.17}, {"u": 53645079, "v": 53667261, "oneway": false, "points": [[1316.32, 315.86], [1358.21, 354.53], [1362.27, 358.28]], "length": 62.53}, {"u": 53645079, "v": 3235650820, "oneway": false, "points": [[1316.32, 315.86], [1284.06, 286.13], [1222.62, 228.39], [1216.58, 222.7]], "length": 136.49}, {"u": 53645778, "v": 53475324, "oneway": false, "points": [[-2893.34, -410.25], [-2902.45, -403.79], [-2903.8, -402.84], [-2909.01, -399.91], [-2920.53, -395.02], [-2937.4, -389.64], [-2949.61, -386.4], [-2959.66, -384.33], [-2971.51, -382.88], [-2989.75, -382.35], [-2998.73, -382.76], [-3034.29, -386.85]], "length": 146.88}, {"u": 53645778, "v": 53481435, "oneway": false, "points": [[-2893.34, -410.25], [-2886.31, -406.57], [-2856.78, -394.3], [-2831.52, -384.93]], "length": 66.86}, {"u": 53645778, "v": 53549801, "oneway": false, "points": [[-2893.34, -410.25], [-2905.51, -416.79], [-2919.85, -425.27], [-2942.44, -439.85], [-2959.18, -454.29]], "length": 79.47}, {"u": 53646359, "v": 53521450, "oneway": false, "points": [[-915.37, 188.1], [-913.0, 185.41], [-884.66, 153.28]], "length": 46.43}, {"u": 53646449, "v": 53509875, "oneway": false, "points": [[-1681.82, -600.63], [-1683.3, -630.73], [-1685.08, -666.8], [-1685.42, -675.41]], "length": 74.87}, {"u": 53647040, "v": 53575901, "oneway": false, "points": [[-2065.37, -1620.07], [-2111.81, -1618.81], [-2117.97, -1618.64]], "length": 52.62}, {"u": 53649099, "v": 2384881527, "oneway": true, "points": [[2174.67, 1459.42], [2183.02, 1468.46], [2217.34, 1492.66]], "length": 54.29}, {"u": 53649099, "v": 53649103, "oneway": true, "points": [[2174.67, 1459.42], [2185.39, 1466.12], [2227.62, 1492.72], [2236.47, 1498.03], [2255.37, 1511.92], [2266.31, 1520.74]], "length": 110.38}, {"u": 53649103, "v": 53589769, "oneway": true, "points": [[2266.31, 1520.74], [2283.9, 1532.93], [2340.46, 1572.11]], "length": 90.21}, {"u": 53649105, "v": 53490476, "oneway": false, "points": [[2425.88, 1631.27], [2420.86, 1637.02], [2418.8, 1640.01], [2414.79, 1645.82], [2411.12, 1652.29], [2407.53, 1660.33], [2405.11, 1668.05], [2400.75, 1683.97], [2396.88, 1698.13], [2396.25, 1700.45], [2393.76, 1709.48], [2391.63, 1716.34], [2389.74, 1725.44], [2385.26, 1744.47], [2383.47, 1752.06]], "length": 129.43}, {"u": 53649105, "v": 1142902939, "oneway": true, "points": [[2425.88, 1631.27], [2432.59, 1635.92], [2616.02, 1762.99], [2620.19, 1765.87], [2629.29, 1772.18]], "length": 247.45}, {"u": 53652463, "v": 53488195, "oneway": false, "points": [[-1740.94, -231.63], [-1741.53, -241.59], [-1741.6, -245.15], [-1742.12, -268.08], [-1743.43, -300.27]], "length": 68.69}, {"u": 53652463, "v": 53461749, "oneway": true, "points": [[-1740.94, -231.63], [-1750.69, -230.89], [-1883.8, -225.73], [-1887.77, -225.58], [-1901.82, -224.99]], "length": 161.02}, {"u": 53655118, "v": 53538736, "oneway": true, "points": [[-174.57, 134.02], [-169.84, 126.13], [-163.6, 119.07], [-155.08, 109.44], [-152.05, 106.03], [-126.56, 77.25], [-125.57, 76.43], [-124.44, 75.76], [-123.14, 75.44], [-121.7, 75.26], [-114.05, 75.17], [-105.25, 74.82]], "length": 96.33}, {"u": 53655118, "v": 1180876933, "oneway": true, "points": [[-174.57, 134.02], [-181.07, 128.08], [-202.56, 108.43], [-215.87, 96.27], [-219.24, 93.19], [-222.67, 90.06], [-228.71, 84.49], [-231.23, 82.23], [-257.8, 57.94], [-266.2, 50.49]], "length": 124.0}, {"u": 53655118, "v": 53640838, "oneway": false, "points": [[-174.57, 134.02], [-180.64, 140.39], [-182.81, 142.8], [-207.25, 169.83], [-224.51, 188.93], [-234.99, 200.51], [-236.68, 202.38], [-241.91, 208.16]], "length": 100.16}, {"u": 53655130, "v": 53637455, "oneway": false, "points": [[-451.36, 439.81], [-446.38, 434.31], [-439.55, 426.74], [-420.6, 405.79], [-418.72, 403.71], [-408.83, 392.77], [-383.73, 365.01], [-377.1, 357.44]], "length": 110.9}, {"u": 53659829, "v": 53461820, "oneway": false, "points": [[-3083.51, -148.53], [-3071.68, -227.01], [-3071.07, -230.9], [-3069.77, -239.07]], "length": 91.57}, {"u": 53663953, "v": 1185580621, "oneway": false, "points": [[-585.53, -1003.73], [-579.67, -1011.23], [-577.98, -1013.02], [-549.55, -1043.55], [-521.76, -1073.99], [-519.71, -1076.53], [-512.34, -1084.63]], "length": 109.13}, {"u": 53663953, "v": 53578519, "oneway": false, "points": [[-585.53, -1003.73], [-591.44, -996.06], [-625.2, -960.01], [-647.14, -934.95], [-652.88, -928.42]], "length": 101.07}, {"u": 53663953, "v": 53663960, "oneway": false, "points": [[-585.53, -1003.73], [-593.0, -1010.51], [-595.03, -1012.35], [-598.51, -1015.52], [-652.87, -1064.92], [-674.23, -1084.34], [-677.48, -1093.6]], "length": 129.66}, {"u": 53663953, "v": 53700870, "oneway": false, "points": [[-585.53, -1003.73], [-578.7, -997.51], [-576.83, -995.82], [-546.61, -968.34], [-531.89, -954.97], [-502.96, -928.67], [-500.4, -926.34], [-478.0, -906.0], [-441.0, -873.06], [-434.27, -870.69]], "length": 201.98}, {"u": 53663960, "v": 53663953, "oneway": false, "points": [[-677.48, -1093.6], [-674.23, -1084.34], [-652.87, -1064.92], [-598.51, -1015.52], [-595.03, -1012.35], [-593.0, -1010.51], [-585.53, -1003.73]], "length": 129.66}, {"u": 53663978, "v": 8174660902, "oneway": true, "points": [[-468.58, -830.91], [-462.36, -836.11], [-454.65, -841.16], [-450.36, -843.77], [-445.6, -845.94], [-441.22, -847.34], [-437.57, -848.06], [-435.02, -848.29], [-429.35, -848.36]], "length": 44.13}, {"u": 53663978, "v": 53700870, "oneway": true, "points": [[-468.58, -830.91], [-461.15, -843.86], [-443.75, -861.8], [-434.27, -870.69]], "length": 52.91}, {"u": 53667246, "v": 53461456, "oneway": true, "points": [[1071.67, 175.81], [1045.5, 169.66], [1039.89, 169.47], [1034.91, 170.91], [1029.29, 173.74], [1027.8, 175.09], [1027.0, 175.82], [1024.6, 177.98], [1020.3, 182.87]], "length": 56.81}, {"u": 53667246, "v": 3235650820, "oneway": false, "points": [[1071.67, 175.81], [1075.99, 176.84], [1158.7, 196.58], [1186.36, 203.71], [1197.06, 206.85], [1207.57, 215.24], [1208.85, 216.29], [1216.58, 222.7]], "length": 154.33}, {"u": 53667261, "v": 53558155, "oneway": false, "points": [[1362.27, 358.28], [1368.7, 351.46], [1370.32, 349.75], [1389.8, 329.1], [1414.12, 303.31]], "length": 75.56}, {"u": 53667261, "v": 53645079, "oneway": false, "points": [[1362.27, 358.28], [1358.21, 354.53], [1316.32, 315.86]], "length": 62.53}, {"u": 53667261, "v": 316305099, "oneway": false, "points": [[1362.27, 358.28], [1370.14, 365.52], [1377.61, 372.39], [1397.45, 390.62], [1406.43, 398.87], [1436.11, 426.15], [1449.38, 438.35], [1452.61, 441.31], [1506.31, 488.45], [1512.37, 493.76]], "length": 202.21}, {"u": 53667521, "v": 2713311962, "oneway": false, "points": [[335.02, 593.7], [340.44, 587.76], [352.98, 574.01], [374.12, 550.83], [393.27, 529.82], [396.0, 526.82], [401.95, 520.29]], "length": 99.34}, {"u": 53667521, "v": 53640831, "oneway": false, "points": [[335.02, 593.7], [328.34, 601.03], [314.18, 616.56], [291.01, 641.97], [289.91, 643.18], [272.58, 662.19], [266.57, 668.77]], "length": 101.59}, {"u": 53667521, "v": 316302550, "oneway": false, "points": [[335.02, 593.7], [340.74, 598.84], [343.16, 601.26], [396.87, 649.16], [475.83, 719.58], [477.5, 721.07], [484.82, 727.76]], "length": 201.03}, {"u": 53667521, "v": 8729846828, "oneway": false, "points": [[335.02, 593.7], [327.75, 586.97], [325.13, 584.82], [289.97, 553.14], [283.51, 547.36], [241.79, 510.1], [230.47, 499.99], [193.58, 467.03], [190.95, 464.66], [184.23, 458.57]], "length": 202.49}, {"u": 53668846, "v": 3859915626, "oneway": false, "points": [[1231.16, 1409.14], [1226.0, 1404.36]], "length": 7.03}, {"u": 53668846, "v": 53668858, "oneway": false, "points": [[1231.16, 1409.14], [1236.18, 1413.72], [1237.48, 1414.9], [1358.89, 1525.63], [1369.35, 1535.18], [1371.21, 1536.88], [1377.01, 1542.18]], "length": 197.41}, {"u": 53668846, "v": 53536997, "oneway": true, "points": [[1231.16, 1409.14], [1226.35, 1414.47], [1223.83, 1417.27], [1218.26, 1421.66], [1204.27, 1433.81]], "length": 36.58}, {"u": 53668858, "v": 53668846, "oneway": false, "points": [[1377.01, 1542.18], [1371.21, 1536.88], [1369.35, 1535.18], [1358.89, 1525.63], [1237.48, 1414.9], [1236.18, 1413.72], [1231.16, 1409.14]], "length": 197.41}, {"u": 53668858, "v": 53538776, "oneway": false, "points": [[1377.01, 1542.18], [1383.64, 1534.8], [1439.73, 1472.33], [1444.12, 1467.45]], "length": 100.44}, {"u": 53668858, "v": 53668862, "oneway": false, "points": [[1377.01, 1542.18], [1383.63, 1548.23], [1386.58, 1550.9], [1476.07, 1632.61], [1505.13, 1659.15], [1519.82, 1673.42], [1524.96, 1678.43]], "length": 201.14}, {"u": 53668858, "v": 1777291055, "oneway": false, "points": [[1377.01, 1542.18], [1372.11, 1547.68], [1317.94, 1608.4], [1315.62, 1611.0], [1310.61, 1616.47]], "length": 99.64}, {"u": 53668862, "v": 53713371, "oneway": false, "points": [[1524.96, 1678.43], [1553.69, 1662.31], [1557.88, 1659.96]], "length": 37.74}, {"u": 53668862, "v": 53713378, "oneway": false, "points": [[1524.96, 1678.43], [1515.55, 1683.68], [1488.28, 1703.91], [1482.11, 1709.27]], "length": 52.91}, {"u": 53668862, "v": 53668858, "oneway": false, "points": [[1524.96, 1678.43], [1519.82, 1673.42], [1505.13, 1659.15], [1476.07, 1632.61], [1386.58, 1550.9], [1383.63, 1548.23], [1377.01, 1542.18]], "length": 201.14}, {"u": 53668890, "v": 53668892, "oneway": false, "points": [[2488.34, 2595.28], [2494.84, 2601.54], [2524.47, 2630.29], [2529.95, 2635.67], [2538.89, 2644.26], [2542.34, 2647.67], [2547.77, 2654.23]], "length": 83.75}, {"u": 53668890, "v": 53626974, "oneway": false, "points": [[2488.34, 2595.28], [2481.73, 2588.95], [2445.22, 2552.35], [2373.69, 2483.26], [2367.65, 2477.37]], "length": 168.74}, {"u": 53668890, "v": 53538791, "oneway": false, "points": [[2488.34, 2595.28], [2494.88, 2589.03], [2552.97, 2530.45], [2559.06, 2523.96]], "length": 100.45}, {"u": 53668890, "v": 53727021, "oneway": false, "points": [[2488.34, 2595.28], [2482.19, 2601.99], [2427.07, 2659.78], [2425.04, 2661.91], [2419.7, 2667.32]], "length": 99.51}, {"u": 53668892, "v": 53668890, "oneway": false, "points": [[2547.77, 2654.23], [2542.34, 2647.67], [2538.89, 2644.26], [2529.95, 2635.67], [2524.47, 2630.29], [2494.84, 2601.54], [2488.34, 2595.28]], "length": 83.75}, {"u": 53668897, "v": 53668900, "oneway": false, "points": [[1799.79, 1925.37], [1810.45, 1935.3], [1941.29, 2063.08], [1948.24, 2069.86]], "length": 207.16}, {"u": 53668897, "v": 11793715342, "oneway": false, "points": [[1799.79, 1925.37], [1792.37, 1931.87], [1766.71, 1954.33]], "length": 43.97}, {"u": 53668897, "v": 2713365262, "oneway": false, "points": [[1799.79, 1925.37], [1805.12, 1920.14], [1815.91, 1911.31], [1825.63, 1901.99]], "length": 34.87}, {"u": 53668900, "v": 53498225, "oneway": false, "points": [[1948.24, 2069.86], [1954.27, 2075.77], [2084.7, 2204.23], [2091.4, 2210.47]], "length": 200.67}, {"u": 53668900, "v": 53668897, "oneway": false, "points": [[1948.24, 2069.86], [1941.29, 2063.08], [1810.45, 1935.3], [1799.79, 1925.37]], "length": 207.16}, {"u": 53668900, "v": 53640725, "oneway": false, "points": [[1948.24, 2069.86], [1941.6, 2076.5], [1891.81, 2126.31], [1885.13, 2133.48]], "length": 89.62}, {"u": 53668900, "v": 53538727, "oneway": false, "points": [[1948.24, 2069.86], [1954.78, 2063.18], [2011.51, 2005.11], [2016.92, 1999.58]], "length": 98.27}, {"u": 53668988, "v": 53509962, "oneway": false, "points": [[-1748.91, -488.3], [-1749.08, -494.59], [-1749.25, -499.83], [-1749.57, -534.46], [-1749.67, -564.6], [-1750.33, -586.35], [-1750.62, -596.07], [-1751.42, -609.59], [-1751.79, -648.05]], "length": 159.79}, {"u": 53668988, "v": 53668996, "oneway": false, "points": [[-1748.91, -488.3], [-1748.74, -479.17], [-1748.32, -460.61], [-1746.74, -428.7], [-1745.79, -399.89], [-1745.59, -394.57], [-1744.82, -374.7], [-1744.67, -363.1]], "length": 125.28}, {"u": 53668988, "v": 53616182, "oneway": false, "points": [[-1748.91, -488.3], [-1739.46, -488.58], [-1627.01, -494.74], [-1617.78, -495.19]], "length": 131.31}, {"u": 53668988, "v": 53607068, "oneway": false, "points": [[-1748.91, -488.3], [-1758.39, -487.91], [-1763.47, -487.44], [-1872.3, -482.66], [-1881.37, -482.21]], "length": 132.61}, {"u": 53668996, "v": 53488195, "oneway": false, "points": [[-1744.67, -363.1], [-1744.45, -352.54], [-1743.43, -300.27]], "length": 62.84}, {"u": 53668996, "v": 53616188, "oneway": true, "points": [[-1744.67, -363.1], [-1734.01, -363.64], [-1683.88, -366.16], [-1620.98, -369.34], [-1611.85, -369.8]], "length": 132.98}, {"u": 53668996, "v": 53668988, "oneway": false, "points": [[-1744.67, -363.1], [-1744.82, -374.7], [-1745.59, -394.57], [-1745.79, -399.89], [-1746.74, -428.7], [-1748.32, -460.61], [-1748.74, -479.17], [-1748.91, -488.3]], "length": 125.28}, {"u": 53670180, "v": 53558110, "oneway": false, "points": [[1869.54, 579.78], [1823.27, 629.94], [1818.34, 635.29]], "length": 75.52}, {"u": 53672055, "v": 53672055, "oneway": false, "points": [[1381.78, 2191.49], [1388.81, 2193.02], [1394.91, 2165.38], [1382.41, 2162.68], [1376.24, 2190.24], [1381.78, 2191.49]], "length": 82.21}, {"u": 53672055, "v": 53672055, "oneway": false, "points": [[1381.78, 2191.49], [1376.24, 2190.24], [1382.41, 2162.68], [1394.91, 2165.38], [1388.81, 2193.02], [1381.78, 2191.49]], "length": 82.21}, {"u": 53672055, "v": 53578366, "oneway": false, "points": [[1381.78, 2191.49], [1375.48, 2222.59], [1374.51, 2228.95], [1371.76, 2238.03], [1367.64, 2244.93], [1365.21, 2248.33], [1360.06, 2253.48], [1354.33, 2258.2], [1346.14, 2263.37], [1332.31, 2268.82], [1295.48, 2282.86], [1276.62, 2289.95], [1255.51, 2298.94], [1248.14, 2302.21]], "length": 189.7}, {"u": 53672772, "v": 53521155, "oneway": false, "points": [[-3032.1, -892.74], [-2957.19, -895.97]], "length": 74.98}, {"u": 53672772, "v": 53610898, "oneway": false, "points": [[-3032.1, -892.74], [-3051.54, -905.64], [-3061.68, -913.19]], "length": 35.97}, {"u": 53672772, "v": 53610896, "oneway": false, "points": [[-3032.1, -892.74], [-3050.55, -891.83], [-3079.4, -890.42]], "length": 47.35}, {"u": 53672943, "v": 53437718, "oneway": false, "points": [[804.78, 1706.97], [810.03, 1702.33], [995.23, 1538.57], [1001.34, 1533.17]], "length": 262.38}, {"u": 53672943, "v": 53537015, "oneway": false, "points": [[804.78, 1706.97], [809.86, 1712.81], [849.5, 1761.71], [854.94, 1767.44]], "length": 78.59}, {"u": 53672943, "v": 53453173, "oneway": false, "points": [[804.78, 1706.97], [798.88, 1700.34], [759.46, 1656.05], [756.84, 1652.57], [754.43, 1646.93], [752.49, 1641.74], [751.06, 1637.06], [749.04, 1630.45]], "length": 96.0}, {"u": 53672961, "v": 53455657, "oneway": false, "points": [[391.9, 1129.93], [425.4, 1092.81]], "length": 50.0}, {"u": 53676376, "v": 53576826, "oneway": false, "points": [[-1634.53, -1123.55], [-1643.31, -1123.38], [-1645.53, -1123.34], [-1703.21, -1122.17], [-1710.18, -1122.04], [-1756.1, -1121.11], [-1763.75, -1120.96]], "length": 129.25}, {"u": 53676376, "v": 53430437, "oneway": false, "points": [[-1634.53, -1123.55], [-1634.2, -1113.02], [-1633.61, -1087.28], [-1632.89, -1062.76], [-1631.56, -1014.18], [-1631.1, -1002.63]], "length": 120.97}, {"u": 53676376, "v": 2573847790, "oneway": false, "points": [[-1634.53, -1123.55], [-1634.85, -1135.18], [-1635.03, -1140.81], [-1637.67, -1230.44], [-1637.77, -1234.18], [-1638.06, -1243.82]], "length": 120.32}, {"u": 53677752, "v": 2988375113, "oneway": true, "points": [[-2802.33, -3.25], [-2799.83, -5.39], [-2796.78, -6.61], [-2793.49, -6.79], [-2790.32, -5.91], [-2787.61, -4.04], [-2785.65, -1.42], [-2784.64, 1.71], [-2784.59, 4.35], [-2785.25, 6.91], [-2786.55, 9.21], [-2788.41, 11.1], [-2790.7, 12.43], [-2793.25, 13.13]], "length": 38.89}, {"u": 53677752, "v": 53370932, "oneway": false, "points": [[-2802.33, -3.25], [-2808.02, -7.8], [-2809.72, -9.29], [-2814.69, -11.74], [-2864.82, -10.82], [-2887.91, -11.14], [-2911.6, -9.84], [-2945.15, -8.22]], "length": 145.63}, {"u": 53679791, "v": 3755083604, "oneway": false, "points": [[-445.48, -1945.76], [-446.51, -1955.58], [-448.52, -1974.73], [-448.8, -1977.41]], "length": 31.82}, {"u": 53679815, "v": 53679819, "oneway": false, "points": [[-1567.5, -2383.08], [-1565.6, -2390.97], [-1558.57, -2420.94], [-1557.75, -2424.4], [-1555.21, -2435.03], [-1548.26, -2471.24], [-1547.49, -2477.39], [-1546.6, -2484.4]], "length": 103.52}, {"u": 53679815, "v": 53612042, "oneway": false, "points": [[-1567.5, -2383.08], [-1569.47, -2376.18], [-1581.2, -2340.36], [-1591.29, -2314.18], [-1599.76, -2294.84], [-1602.3, -2288.85]], "length": 100.54}, {"u": 53679815, "v": 2638675244, "oneway": false, "points": [[-1567.5, -2383.08], [-1558.93, -2381.17], [-1514.26, -2368.18], [-1478.02, -2360.77], [-1461.42, -2359.67], [-1444.23, -2359.98], [-1403.65, -2362.61], [-1400.02, -2362.84], [-1387.43, -2363.15]], "length": 183.01}, {"u": 53679819, "v": 2638675157, "oneway": false, "points": [[-1546.6, -2484.4], [-1543.62, -2508.27], [-1524.1, -2720.79], [-1520.66, -2745.56], [-1516.47, -2761.46], [-1500.02, -2779.27], [-1484.51, -2791.53], [-1475.8, -2798.42]], "length": 334.03}, {"u": 53679819, "v": 53679815, "oneway": false, "points": [[-1546.6, -2484.4], [-1547.49, -2477.39], [-1548.26, -2471.24], [-1555.21, -2435.03], [-1557.75, -2424.4], [-1558.57, -2420.94], [-1565.6, -2390.97], [-1567.5, -2383.08]], "length": 103.52}, {"u": 53679819, "v": 2638675190, "oneway": false, "points": [[-1546.6, -2484.4], [-1538.51, -2484.59], [-1503.19, -2485.42], [-1409.28, -2490.47], [-1406.01, -2490.65], [-1392.47, -2490.37]], "length": 154.28}, {"u": 53680486, "v": 53680499, "oneway": false, "points": [[-2781.54, -2837.43], [-2793.42, -2850.73], [-2822.01, -2880.92], [-2843.61, -2903.64], [-2861.54, -2923.24], [-2882.09, -2943.74], [-2889.91, -2951.54], [-2911.61, -2971.92]], "length": 187.17}, {"u": 53680486, "v": 1153239288, "oneway": false, "points": [[-2781.54, -2837.43], [-2764.08, -2832.59], [-2744.22, -2829.25], [-2715.35, -2828.86], [-2683.03, -2830.13], [-2617.11, -2834.02], [-2548.3, -2839.23], [-2478.73, -2843.45], [-2451.77, -2844.45], [-2425.34, -2843.65], [-2414.09, -2841.03], [-2404.41, -2835.69], [-2394.25, -2826.59], [-2383.56, -2813.31], [-2373.27, -2794.81], [-2362.62, -2768.65], [-2347.1, -2727.97], [-2337.49, -2708.35], [-2323.38, -2682.42], [-2308.68, -2658.72], [-2289.58, -2626.7], [-2252.07, -2566.43], [-2240.11, -2538.98], [-2232.42, -2512.53], [-2230.3, -2489.69], [-2231.5, -2451.98], [-2240.22, -2338.58], [-2241.15, -2311.21], [-2238.74, -2287.05], [-2231.37, -2260.36], [-2218.16, -2234.51], [-2201.01, -2204.88], [-2175.74, -2153.93], [-2163.16, -2138.5], [-2145.33, -2127.9], [-2122.09, -2121.9], [-2099.18, -2121.56], [-2089.5, -2122.5], [-2075.5, -2123.13], [-2011.65, -2127.63], [-1983.38, -2130.02], [-1974.65, -2130.76], [-1868.38, -2139.74], [-1846.69, -2133.58], [-1831.24, -2123.58], [-1819.18, -2111.71], [-1809.37, -2098.59], [-1805.67, -2093.64], [-1793.51, -2078.22], [-1791.67, -2076.13], [-1784.17, -2069.96], [-1775.01, -2064.82], [-1764.92, -2061.52]], "length": 1575.57}, {"u": 53680486, "v": 53700390, "oneway": false, "points": [[-2781.54, -2837.43], [-2822.03, -2848.76], [-2884.95, -2868.18], [-2968.49, -2896.12], [-2986.58, -2901.49]], "length": 214.85}, {"u": 53680499, "v": 53556263, "oneway": false, "points": [[-2911.61, -2971.92], [-2928.41, -2989.11], [-2947.29, -3010.69], [-2973.37, -3036.17]], "length": 89.17}, {"u": 53680499, "v": 53680486, "oneway": false, "points": [[-2911.61, -2971.92], [-2889.91, -2951.54], [-2882.09, -2943.74], [-2861.54, -2923.24], [-2843.61, -2903.64], [-2822.01, -2880.92], [-2793.42, -2850.73], [-2781.54, -2837.43]], "length": 187.17}, {"u": 53680499, "v": 53700390, "oneway": false, "points": [[-2911.61, -2971.92], [-2919.89, -2962.24], [-2948.25, -2933.74], [-2959.41, -2924.98], [-2972.81, -2915.16], [-2980.93, -2908.08], [-2986.58, -2901.49]], "length": 103.21}, {"u": 53680515, "v": 53430446, "oneway": false, "points": [[-1845.76, -1058.28], [-1845.65, -1053.81], [-1845.63, -1053.38], [-1844.3, -1005.62], [-1844.11, -998.63]], "length": 59.67}, {"u": 53680515, "v": 53503834, "oneway": false, "points": [[-1845.76, -1058.28], [-1883.05, -1057.42], [-1890.95, -1057.17]], "length": 45.19}, {"u": 53680515, "v": 53576823, "oneway": false, "points": [[-1845.76, -1058.28], [-1773.89, -1059.62], [-1770.3, -1059.69], [-1761.83, -1059.89]], "length": 83.95}, {"u": 53684762, "v": 53582923, "oneway": false, "points": [[-2641.99, -817.18], [-2641.9, -806.84], [-2639.13, -732.81], [-2639.01, -724.72]], "length": 92.51}, {"u": 53684762, "v": 2298789030, "oneway": false, "points": [[-2641.99, -817.18], [-2650.44, -816.8], [-2779.81, -811.12], [-2791.96, -810.6]], "length": 150.12}, {"u": 53684762, "v": 1180005819, "oneway": false, "points": [[-2641.99, -817.18], [-2591.27, -819.4], [-2568.14, -820.41], [-2559.46, -820.8]], "length": 82.61}, {"u": 53684770, "v": 53485100, "oneway": false, "points": [[-2629.69, -397.82], [-2629.47, -389.3], [-2628.92, -367.75], [-2626.63, -295.89], [-2626.37, -287.68]], "length": 110.19}, {"u": 53684770, "v": 53504327, "oneway": false, "points": [[-2629.69, -397.82], [-2629.93, -405.99], [-2633.81, -533.83], [-2634.04, -541.76]], "length": 144.0}, {"u": 53684770, "v": 53514812, "oneway": false, "points": [[-2629.69, -397.82], [-2637.57, -397.22], [-2642.25, -397.93], [-2659.81, -404.76], [-2671.11, -409.77], [-2677.92, -414.24], [-2684.34, -419.17], [-2698.13, -431.22], [-2707.29, -440.63], [-2719.86, -449.82], [-2734.57, -456.96], [-2751.99, -462.12], [-2763.29, -464.02], [-2769.94, -464.24], [-2777.48, -464.5]], "length": 167.27}, {"u": 53684770, "v": 53516186, "oneway": false, "points": [[-2629.69, -397.82], [-2621.02, -398.06], [-2555.71, -399.82], [-2546.15, -400.14]], "length": 83.58}, {"u": 53692030, "v": 4095648225, "oneway": false, "points": [[-2168.16, -1231.53], [-2168.51, -1242.51], [-2170.2, -1292.4], [-2171.99, -1341.8], [-2172.16, -1346.72]], "length": 115.26}, {"u": 53692030, "v": 53709543, "oneway": false, "points": [[-2168.16, -1231.53], [-2167.96, -1220.52], [-2167.07, -1171.15], [-2165.8, -1121.71], [-2165.52, -1110.84]], "length": 120.72}, {"u": 53692030, "v": 53590707, "oneway": false, "points": [[-2168.16, -1231.53], [-2177.37, -1231.25], [-2181.48, -1231.13], [-2308.15, -1227.38], [-2317.09, -1227.11]], "length": 148.99}, {"u": 53692030, "v": 53643772, "oneway": false, "points": [[-2168.16, -1231.53], [-2159.29, -1231.75], [-2157.29, -1231.8], [-2032.12, -1234.99], [-2023.77, -1235.22]], "length": 144.43}, {"u": 53692040, "v": 53444622, "oneway": false, "points": [[-2447.73, -1224.02], [-2454.35, -1223.7], [-2455.56, -1223.44], [-2457.14, -1222.9], [-2458.74, -1221.76], [-2463.89, -1216.39], [-2470.06, -1209.31]], "length": 28.34}, {"u": 53692040, "v": 53454656, "oneway": false, "points": [[-2447.73, -1224.02], [-2447.74, -1237.11], [-2447.77, -1257.03], [-2448.49, -1284.73], [-2449.87, -1320.36]], "length": 96.37}, {"u": 53692040, "v": 53590707, "oneway": false, "points": [[-2447.73, -1224.02], [-2437.9, -1224.25], [-2325.96, -1226.9], [-2317.09, -1227.11]], "length": 130.67}, {"u": 53695962, "v": 53575900, "oneway": false, "points": [[-2066.8, -1558.99], [-2110.1, -1558.14], [-2116.58, -1558.01]], "length": 49.79}, {"u": 53699396, "v": 53591794, "oneway": false, "points": [[-666.65, -314.88], [-658.55, -307.52], [-657.34, -306.41], [-632.26, -283.6], [-620.72, -273.11], [-600.38, -254.61], [-572.8, -229.54], [-554.45, -212.85], [-524.41, -185.52], [-523.31, -184.53], [-518.45, -180.11]], "length": 200.31}, {"u": 53699396, "v": 53608986, "oneway": true, "points": [[-666.65, -314.88], [-672.7, -307.85], [-729.18, -245.25], [-734.28, -239.25]], "length": 101.47}, {"u": 53699396, "v": 3241106071, "oneway": false, "points": [[-666.65, -314.88], [-672.86, -320.54], [-674.24, -321.79], [-726.25, -369.14], [-734.62, -376.76], [-755.73, -395.97], [-770.27, -409.22], [-806.82, -442.49], [-809.14, -444.61], [-815.37, -450.28]], "length": 201.13}, {"u": 53700390, "v": 53680499, "oneway": false, "points": [[-2986.58, -2901.49], [-2980.93, -2908.08], [-2972.81, -2915.16], [-2959.41, -2924.98], [-2948.25, -2933.74], [-2919.89, -2962.24], [-2911.61, -2971.92]], "length": 103.21}, {"u": 53700390, "v": 53680486, "oneway": false, "points": [[-2986.58, -2901.49], [-2968.49, -2896.12], [-2884.95, -2868.18], [-2822.03, -2848.76], [-2781.54, -2837.43]], "length": 214.85}, {"u": 53700390, "v": 53589977, "oneway": false, "points": [[-2986.58, -2901.49], [-2999.41, -2905.34], [-3020.9, -2910.05], [-3038.39, -2911.66], [-3055.93, -2912.27], [-3075.21, -2910.82], [-3097.32, -2908.52], [-3117.52, -2908.05], [-3135.95, -2911.18], [-3141.96, -2913.12]], "length": 157.29}, {"u": 53700870, "v": 8174660902, "oneway": true, "points": [[-434.27, -870.69], [-430.71, -854.59], [-429.35, -848.36]], "length": 22.86}, {"u": 53700870, "v": 53700872, "oneway": false, "points": [[-434.27, -870.69], [-429.68, -873.69], [-393.16, -912.26], [-386.91, -919.48], [-382.95, -924.04]], "length": 74.19}, {"u": 53700870, "v": 53663953, "oneway": false, "points": [[-434.27, -870.69], [-441.0, -873.06], [-478.0, -906.0], [-500.4, -926.34], [-502.96, -928.67], [-531.89, -954.97], [-546.61, -968.34], [-576.83, -995.82], [-578.7, -997.51], [-585.53, -1003.73]], "length": 201.98}, {"u": 53700872, "v": 53700870, "oneway": false, "points": [[-382.95, -924.04], [-386.91, -919.48], [-393.16, -912.26], [-429.68, -873.69], [-434.27, -870.69]], "length": 74.19}, {"u": 53703066, "v": 53486800, "oneway": false, "points": [[-2185.71, -84.35], [-2185.38, -75.6], [-2184.83, -68.15], [-2182.5, -26.36], [-2182.37, -19.09]], "length": 65.35}, {"u": 53709531, "v": 53503843, "oneway": false, "points": [[-1892.87, -1118.17], [-1893.16, -1129.43], [-1894.44, -1178.34], [-1895.5, -1227.52], [-1895.73, -1238.33]], "length": 120.19}, {"u": 53709531, "v": 53503834, "oneway": false, "points": [[-1892.87, -1118.17], [-1892.52, -1107.05], [-1892.43, -1104.38], [-1891.11, -1062.3], [-1890.95, -1057.17]], "length": 61.03}, {"u": 53709531, "v": 53643768, "oneway": false, "points": [[-1892.87, -1118.17], [-1900.99, -1117.96], [-1910.45, -1117.61], [-1932.29, -1117.14], [-2013.07, -1115.05], [-2020.52, -1114.81]], "length": 127.7}, {"u": 53709531, "v": 53576826, "oneway": false, "points": [[-1892.87, -1118.17], [-1884.49, -1118.35], [-1772.76, -1120.77], [-1763.75, -1120.96]], "length": 129.14}, {"u": 53709543, "v": 53692030, "oneway": false, "points": [[-2165.52, -1110.84], [-2165.8, -1121.71], [-2167.07, -1171.15], [-2167.96, -1220.52], [-2168.16, -1231.53]], "length": 120.72}, {"u": 53709543, "v": 53483915, "oneway": false, "points": [[-2165.52, -1110.84], [-2165.38, -1100.03], [-2163.17, -1049.33]], "length": 61.56}, {"u": 53709543, "v": 53590699, "oneway": false, "points": [[-2165.52, -1110.84], [-2174.87, -1110.68], [-2240.9, -1108.69], [-2297.53, -1106.98], [-2304.66, -1106.77], [-2308.25, -1106.66], [-2311.4, -1105.68]], "length": 146.08}, {"u": 53709543, "v": 53643768, "oneway": false, "points": [[-2165.52, -1110.84], [-2157.06, -1111.07], [-2028.96, -1114.59], [-2020.52, -1114.81]], "length": 145.06}, {"u": 53711224, "v": 53558157, "oneway": false, "points": [[1426.43, 290.26], [1419.4, 297.72]], "length": 10.25}, {"u": 53713371, "v": 53668862, "oneway": false, "points": [[1557.88, 1659.96], [1553.69, 1662.31], [1524.96, 1678.43]], "length": 37.74}, {"u": 53713378, "v": 53668862, "oneway": false, "points": [[1482.11, 1709.27], [1488.28, 1703.91], [1515.55, 1683.68], [1524.96, 1678.43]], "length": 52.91}, {"u": 53714922, "v": 53714925, "oneway": false, "points": [[2201.67, 2597.89], [2219.19, 2614.78], [2225.74, 2621.25]], "length": 33.53}, {"u": 53714925, "v": 53626978, "oneway": false, "points": [[2225.74, 2621.25], [2232.1, 2614.52], [2255.62, 2590.46], [2289.54, 2554.82], [2295.76, 2548.51]], "length": 100.97}, {"u": 53714925, "v": 53714922, "oneway": false, "points": [[2225.74, 2621.25], [2219.19, 2614.78], [2201.67, 2597.89]], "length": 33.53}, {"u": 53714925, "v": 53727030, "oneway": false, "points": [[2225.74, 2621.25], [2232.16, 2627.16], [2343.26, 2735.27], [2349.77, 2741.27]], "length": 172.61}, {"u": 53714925, "v": 53562563, "oneway": false, "points": [[2225.74, 2621.25], [2219.73, 2627.53], [2162.32, 2687.02], [2155.84, 2693.58]], "length": 100.59}, {"u": 53719166, "v": 2384881594, "oneway": true, "points": [[1965.35, 1757.55], [1972.61, 1764.2]], "length": 9.84}, {"u": 53719166, "v": 53407742, "oneway": true, "points": [[1965.35, 1757.55], [1975.25, 1749.14], [2030.18, 1693.82], [2031.83, 1692.81], [2040.37, 1687.58]], "length": 102.9}, {"u": 53720172, "v": 53472460, "oneway": false, "points": [[-435.66, 32.45], [-442.15, 39.57], [-454.59, 53.24], [-457.15, 56.05], [-486.69, 88.48], [-496.03, 98.73], [-498.01, 100.91], [-503.44, 106.87]], "length": 100.66}, {"u": 53720172, "v": 1160692043, "oneway": false, "points": [[-435.66, 32.45], [-430.09, 26.34], [-408.7, 2.84], [-394.22, -13.04], [-374.2, -35.03], [-367.54, -42.34]], "length": 101.17}, {"u": 53720172, "v": 2713279291, "oneway": true, "points": [[-435.66, 32.45], [-429.3, 38.2], [-352.38, 107.23], [-338.74, 119.55]], "length": 130.31}, {"u": 53723920, "v": 53636372, "oneway": false, "points": [[2055.71, 1552.55], [2131.71, 1475.87], [2137.06, 1470.47]], "length": 115.56}, {"u": 53725877, "v": 53725877, "oneway": true, "points": [[-2327.84, 247.5], [-2318.18, 246.91], [-2308.61, 246.43], [-2303.5, 246.14], [-2298.05, 246.51], [-2296.58, 246.87], [-2295.23, 247.48], [-2294.33, 248.87], [-2293.27, 250.78], [-2292.66, 253.26], [-2292.83, 255.97], [-2293.49, 257.71], [-2293.87, 258.67], [-2295.94, 260.95], [-2298.58, 262.57], [-2301.93, 263.91], [-2305.07, 264.37], [-2308.7, 264.5], [-2312.22, 263.84], [-2315.29, 262.86], [-2317.34, 261.43], [-2318.84, 260.2], [-2320.89, 258.32], [-2322.38, 256.41], [-2323.27, 254.96], [-2324.19, 253.21], [-2325.7, 250.52], [-2327.84, 247.5]], "length": 88.34}, {"u": 53725877, "v": 53580606, "oneway": false, "points": [[-2327.84, 247.5], [-2331.53, 246.48], [-2336.02, 245.43], [-2343.57, 245.23], [-2365.42, 245.82], [-2410.2, 247.36], [-2416.49, 247.5], [-2419.73, 247.66], [-2427.11, 247.98]], "length": 99.58}, {"u": 53727021, "v": 53668890, "oneway": false, "points": [[2419.7, 2667.32], [2425.04, 2661.91], [2427.07, 2659.78], [2482.19, 2601.99], [2488.34, 2595.28]], "length": 99.51}, {"u": 53727021, "v": 53727030, "oneway": false, "points": [[2419.7, 2667.32], [2413.24, 2675.05], [2411.29, 2677.09], [2356.14, 2734.82], [2349.77, 2741.27]], "length": 101.8}, {"u": 53727021, "v": 53529540, "oneway": false, "points": [[2419.7, 2667.32], [2425.24, 2674.19], [2455.61, 2702.12], [2541.28, 2786.41], [2549.21, 2792.83]], "length": 180.48}, {"u": 53727021, "v": 53626978, "oneway": false, "points": [[2419.7, 2667.32], [2412.29, 2661.92], [2302.31, 2555.11], [2295.76, 2548.51]], "length": 171.77}, {"u": 53727030, "v": 53727021, "oneway": false, "points": [[2349.77, 2741.27], [2356.14, 2734.82], [2411.29, 2677.09], [2413.24, 2675.05], [2419.7, 2667.32]], "length": 101.8}, {"u": 53727030, "v": 53714925, "oneway": false, "points": [[2349.77, 2741.27], [2343.26, 2735.27], [2232.16, 2627.16], [2225.74, 2621.25]], "length": 172.61}, {"u": 53727087, "v": 2637710726, "oneway": false, "points": [[367.13, -3077.03], [358.35, -3079.38], [300.36, -3088.92]], "length": 67.86}, {"u": 53727087, "v": 2637707069, "oneway": true, "points": [[367.13, -3077.03], [376.89, -3076.71], [393.53, -3070.82], [401.2, -3065.82], [414.13, -3060.32], [420.61, -3059.73], [425.49, -3060.96], [441.05, -3073.66]], "length": 82.25}, {"u": 258725731, "v": 4095606995, "oneway": false, "points": [[-2671.06, -1897.28], [-2655.26, -1899.61], [-2625.11, -1902.59], [-2611.31, -1902.39], [-2597.9, -1900.26], [-2588.77, -1896.61], [-2569.08, -1889.38], [-2554.15, -1884.24], [-2537.82, -1879.51], [-2526.74, -1877.42], [-2523.43, -1877.19], [-2513.02, -1876.49], [-2489.91, -1874.92], [-2449.07, -1874.43], [-2428.32, -1874.81], [-2423.2, -1874.9], [-2395.87, -1875.4], [-2366.25, -1877.1], [-2348.83, -1878.98], [-2330.54, -1882.46], [-2316.29, -1886.56], [-2293.89, -1893.49], [-2259.86, -1903.66], [-2252.08, -1905.99], [-2235.1, -1909.33], [-2226.36, -1910.06], [-2212.82, -1908.9], [-2198.37, -1906.08], [-2163.58, -1897.97], [-2131.11, -1890.9], [-2100.59, -1886.88], [-2084.42, -1886.23], [-2069.95, -1886.99], [-2058.47, -1887.9], [-2030.19, -1891.41], [-2025.22, -1892.43]], "length": 657.09}, {"u": 270405510, "v": 1153239288, "oneway": false, "points": [[-1787.51, -2011.57], [-1786.84, -2018.93], [-1782.95, -2036.93], [-1776.86, -2046.0], [-1771.85, -2053.48], [-1770.19, -2055.51], [-1764.92, -2061.52]], "length": 56.35}, {"u": 270405510, "v": 2573847770, "oneway": false, "points": [[-1787.51, -2011.57], [-1787.61, -2002.95], [-1787.32, -1987.51]], "length": 24.06}, {"u": 270405510, "v": 4095606995, "oneway": false, "points": [[-1787.51, -2011.57], [-1796.19, -2011.52], [-1807.16, -2011.23], [-1816.54, -2008.85], [-1833.41, -2000.03], [-1852.01, -1988.7], [-1879.87, -1972.1], [-1906.97, -1955.79], [-1911.5, -1953.07], [-1921.54, -1947.04], [-1941.22, -1934.57], [-1944.31, -1932.61], [-1972.43, -1914.79], [-1993.94, -1903.42], [-2016.13, -1895.29], [-2025.22, -1892.43]], "length": 268.95}, {"u": 316165989, "v": 53573840, "oneway": false, "points": [[255.67, -2280.05], [248.73, -2262.36]], "length": 19.0}, {"u": 316292003, "v": 53637455, "oneway": false, "points": [[-159.51, 417.41], [-165.96, 424.39], [-167.34, 425.89], [-168.59, 427.23], [-190.21, 450.61], [-193.3, 453.94], [-223.29, 486.31], [-223.63, 486.74], [-225.96, 488.12], [-228.55, 488.54], [-230.78, 488.32], [-235.05, 485.93], [-244.96, 476.97], [-255.03, 467.85], [-257.35, 465.76], [-263.65, 460.06], [-278.4, 446.72], [-280.62, 444.7], [-281.5, 443.91], [-296.94, 429.95], [-309.54, 418.55], [-316.82, 411.97], [-320.6, 408.54], [-327.41, 402.39], [-348.38, 383.42], [-349.26, 382.63], [-371.45, 362.55], [-377.1, 357.44]], "length": 298.44}, {"u": 316292003, "v": 3227608153, "oneway": false, "points": [[-159.51, 417.41], [-154.06, 411.53], [-151.67, 408.95], [-146.64, 403.5], [-127.59, 382.91], [-102.14, 355.4], [-92.31, 344.77]], "length": 98.95}, {"u": 316292003, "v": 3157337335, "oneway": true, "points": [[-159.51, 417.41], [-165.74, 411.8], [-182.31, 396.84], [-199.79, 381.06], [-211.55, 370.46], [-245.87, 339.48], [-253.82, 332.31], [-302.32, 288.54], [-309.08, 282.45]], "length": 201.45}, {"u": 316292008, "v": 3088209649, "oneway": true, "points": [[198.24, 743.19], [191.28, 736.55], [159.57, 707.99], [56.05, 613.38], [50.0, 607.82]], "length": 200.75}, {"u": 316292008, "v": 53640831, "oneway": false, "points": [[198.24, 743.19], [204.64, 736.82], [206.15, 735.19], [260.25, 675.7], [261.52, 674.3], [266.57, 668.77]], "length": 101.04}, {"u": 316292008, "v": 3088209661, "oneway": false, "points": [[198.24, 743.19], [191.94, 750.04], [189.64, 752.49], [168.54, 776.15]], "length": 44.37}, {"u": 316302550, "v": 53461150, "oneway": false, "points": [[484.82, 727.76], [476.95, 736.4], [422.53, 796.06], [421.4, 797.3], [415.43, 803.84]], "length": 102.97}, {"u": 316302550, "v": 2713311960, "oneway": false, "points": [[484.82, 727.76], [489.58, 722.55], [516.01, 693.57], [544.9, 661.9], [551.39, 654.79]], "length": 98.78}, {"u": 316302550, "v": 316302556, "oneway": false, "points": [[484.82, 727.76], [490.91, 733.3], [493.57, 735.77], [624.2, 856.69], [626.28, 858.64], [632.8, 864.49]], "length": 201.47}, {"u": 316302550, "v": 53667521, "oneway": false, "points": [[484.82, 727.76], [477.5, 721.07], [475.83, 719.58], [396.87, 649.16], [343.16, 601.26], [340.74, 598.84], [335.02, 593.7]], "length": 201.03}, {"u": 316302556, "v": 1699123288, "oneway": false, "points": [[632.8, 864.49], [640.1, 870.65], [642.33, 872.55], [773.48, 991.48], [776.21, 993.96], [782.81, 999.73]], "length": 201.98}, {"u": 316302556, "v": 316302550, "oneway": false, "points": [[632.8, 864.49], [626.28, 858.64], [624.2, 856.69], [493.57, 735.77], [490.91, 733.3], [484.82, 727.76]], "length": 201.47}, {"u": 316302556, "v": 1699123271, "oneway": false, "points": [[632.8, 864.49], [626.6, 871.28], [570.41, 932.95], [564.46, 939.47]], "length": 101.45}, {"u": 316302556, "v": 316302558, "oneway": false, "points": [[632.8, 864.49], [638.91, 857.78], [694.27, 797.03], [700.35, 790.34]], "length": 100.31}, {"u": 316302558, "v": 316302556, "oneway": false, "points": [[700.35, 790.34], [694.27, 797.03], [638.91, 857.78], [632.8, 864.49]], "length": 100.31}, {"u": 316302558, "v": 316303180, "oneway": false, "points": [[700.35, 790.34], [705.37, 784.53], [719.92, 768.87], [772.21, 711.51], [774.96, 708.49], [781.97, 700.78]], "length": 121.18}, {"u": 316302558, "v": 3270240367, "oneway": false, "points": [[700.35, 790.34], [706.81, 796.23], [842.8, 920.03], [849.71, 926.33]], "length": 201.99}, {"u": 316302558, "v": 2713311960, "oneway": false, "points": [[700.35, 790.34], [693.31, 783.94], [611.44, 709.44], [557.66, 660.48], [551.39, 654.79]], "length": 201.41}, {"u": 316303180, "v": 366215899, "oneway": false, "points": [[781.97, 700.78], [792.19, 689.55]], "length": 15.19}, {"u": 316303180, "v": 316302558, "oneway": false, "points": [[781.97, 700.78], [774.96, 708.49], [772.21, 711.51], [719.92, 768.87], [705.37, 784.53], [700.35, 790.34]], "length": 121.18}, {"u": 316303180, "v": 2713311958, "oneway": true, "points": [[781.97, 700.78], [771.15, 690.32], [743.01, 664.39]], "length": 53.32}, {"u": 316305090, "v": 53558103, "oneway": false, "points": [[1581.65, 421.0], [1573.61, 413.73], [1534.79, 378.66]], "length": 63.17}, {"u": 316305090, "v": 316305093, "oneway": false, "points": [[1581.65, 421.0], [1587.31, 426.16], [1654.39, 487.3], [1722.43, 550.15], [1729.77, 557.09]], "length": 201.15}, {"u": 316305090, "v": 11390496552, "oneway": false, "points": [[1581.65, 421.0], [1599.4, 400.93], [1606.79, 390.62]], "length": 39.48}, {"u": 316305090, "v": 316305099, "oneway": false, "points": [[1581.65, 421.0], [1576.28, 426.98], [1519.03, 486.75], [1512.37, 493.76]], "length": 100.47}, {"u": 316305093, "v": 53596618, "oneway": false, "points": [[1729.77, 557.09], [1737.0, 549.36], [1753.85, 530.12], [1756.57, 526.81], [1771.11, 509.14]], "length": 63.33}, {"u": 316305093, "v": 2713353784, "oneway": false, "points": [[1729.77, 557.09], [1724.51, 562.49], [1668.25, 623.19], [1662.26, 630.24]], "length": 99.55}, {"u": 316305093, "v": 53558110, "oneway": false, "points": [[1729.77, 557.09], [1735.3, 561.97], [1818.34, 635.29]], "length": 118.14}, {"u": 316305093, "v": 316305090, "oneway": false, "points": [[1729.77, 557.09], [1722.43, 550.15], [1654.39, 487.3], [1587.31, 426.16], [1581.65, 421.0]], "length": 201.15}, {"u": 316305099, "v": 316305090, "oneway": false, "points": [[1512.37, 493.76], [1519.03, 486.75], [1576.28, 426.98], [1581.65, 421.0]], "length": 100.47}, {"u": 316305099, "v": 53667261, "oneway": false, "points": [[1512.37, 493.76], [1506.31, 488.45], [1452.61, 441.31], [1449.38, 438.35], [1436.11, 426.15], [1406.43, 398.87], [1397.45, 390.62], [1377.61, 372.39], [1370.14, 365.52], [1362.27, 358.28]], "length": 202.21}, {"u": 316305099, "v": 2713353784, "oneway": false, "points": [[1512.37, 493.76], [1520.69, 501.33], [1655.41, 624.01], [1662.26, 630.24]], "length": 202.72}, {"u": 316305099, "v": 53461467, "oneway": false, "points": [[1512.37, 493.76], [1506.09, 500.71], [1451.16, 561.5], [1443.78, 569.59]], "length": 102.25}, {"u": 316306590, "v": 53578394, "oneway": false, "points": [[1514.14, 2807.62], [1500.94, 2783.7]], "length": 27.32}, {"u": 316306590, "v": 2857394107, "oneway": false, "points": [[1514.14, 2807.62], [1506.53, 2812.22], [1504.69, 2813.22]], "length": 10.98}, {"u": 316334513, "v": 316349604, "oneway": false, "points": [[333.44, 292.28], [345.58, 280.12]], "length": 17.19}, {"u": 316334513, "v": 845773140, "oneway": true, "points": [[333.44, 292.28], [322.98, 282.76], [312.3, 273.36], [266.05, 231.96], [259.69, 226.23]], "length": 99.0}, {"u": 316334514, "v": 53423466, "oneway": true, "points": [[366.66, 300.05], [398.9, 329.11], [403.5, 333.26], [424.15, 351.87], [426.77, 354.23], [463.57, 387.39], [487.15, 408.66], [495.83, 416.48]], "length": 173.9}, {"u": 316342869, "v": 53589794, "oneway": false, "points": [[2297.73, 1734.11], [2287.43, 1717.12], [2270.79, 1689.66]], "length": 51.98}, {"u": 316342869, "v": 3786910293, "oneway": true, "points": [[2297.73, 1734.11], [2273.01, 1734.19], [2267.21, 1733.03], [2262.67, 1730.31], [2255.32, 1723.25], [2240.79, 1709.26], [2217.27, 1686.63], [2207.6, 1677.33], [2181.11, 1651.84], [2132.07, 1604.66], [2127.38, 1600.17]], "length": 223.64}, {"u": 316342869, "v": 53490476, "oneway": false, "points": [[2297.73, 1734.11], [2312.62, 1734.65], [2330.27, 1738.99], [2362.8, 1746.98], [2383.47, 1752.06]], "length": 87.86}, {"u": 316342869, "v": 53503712, "oneway": false, "points": [[2297.73, 1734.11], [2304.68, 1745.27], [2317.93, 1766.52], [2325.94, 1779.39]], "length": 53.35}, {"u": 316349604, "v": 316334513, "oneway": false, "points": [[345.58, 280.12], [333.44, 292.28]], "length": 17.19}, {"u": 316349604, "v": 316334514, "oneway": true, "points": [[345.58, 280.12], [366.66, 300.05]], "length": 29.01}, {"u": 316349604, "v": 1192211510, "oneway": false, "points": [[345.58, 280.12], [352.58, 272.56], [387.49, 237.23]], "length": 59.97}, {"u": 316357138, "v": 1179795984, "oneway": true, "points": [[-1498.11, -1357.52], [-1511.3, -1367.68]], "length": 16.65}, {"u": 316357138, "v": 1179796054, "oneway": true, "points": [[-1498.11, -1357.52], [-1497.84, -1349.9], [-1497.57, -1341.95], [-1496.25, -1311.97]], "length": 45.59}, {"u": 316357429, "v": 362597488, "oneway": true, "points": [[-1467.52, -1361.97], [-1439.22, -1334.9], [-1410.42, -1308.88], [-1378.18, -1279.75]], "length": 121.42}, {"u": 316357431, "v": 387186790, "oneway": true, "points": [[-1029.88, -963.08], [-1016.98, -952.33]], "length": 16.79}, {"u": 316357431, "v": 917880340, "oneway": true, "points": [[-1029.88, -963.08], [-1016.96, -968.53], [-1001.97, -974.96], [-995.03, -978.39], [-988.29, -982.74], [-976.79, -993.46], [-934.95, -1037.91], [-929.29, -1044.08]], "length": 131.23}, {"u": 316562664, "v": 53426577, "oneway": false, "points": [[-171.66, -2523.05], [-169.4, -2513.77], [-167.88, -2507.61], [-163.27, -2396.82]], "length": 126.79}, {"u": 316562664, "v": 6291669589, "oneway": false, "points": [[-171.66, -2523.05], [-164.92, -2526.23], [-129.68, -2539.7], [-82.89, -2558.15], [-50.97, -2570.4], [-37.84, -2575.59], [11.96, -2595.43], [15.59, -2596.88], [55.56, -2612.81]], "length": 244.33}, {"u": 316562664, "v": 6404917413, "oneway": false, "points": [[-171.66, -2523.05], [-175.32, -2532.28], [-178.92, -2541.38], [-185.77, -2563.73], [-192.0, -2575.29], [-210.91, -2593.62], [-300.42, -2664.95], [-402.81, -2740.68], [-454.24, -2783.34], [-472.62, -2798.59], [-495.67, -2817.71]], "length": 445.01}, {"u": 316562664, "v": 2634682652, "oneway": false, "points": [[-171.66, -2523.05], [-178.66, -2520.27], [-254.99, -2489.89]], "length": 89.68}, {"u": 316562665, "v": 2634682653, "oneway": false, "points": [[-306.87, -2469.85], [-296.27, -2473.94]], "length": 11.36}, {"u": 316562665, "v": 2634682669, "oneway": true, "points": [[-306.87, -2469.85], [-336.16, -2456.61], [-349.42, -2451.59], [-364.04, -2446.06], [-397.27, -2436.54], [-409.22, -2433.07], [-418.67, -2430.32]], "length": 118.8}, {"u": 316562667, "v": 2634682669, "oneway": false, "points": [[-418.95, -2437.4], [-418.67, -2430.32]], "length": 7.09}, {"u": 316562667, "v": 316562665, "oneway": true, "points": [[-418.95, -2437.4], [-409.62, -2439.93], [-403.06, -2441.7], [-378.04, -2448.33], [-353.03, -2455.53], [-306.87, -2469.85]], "length": 116.7}, {"u": 349368476, "v": 1706427648, "oneway": false, "points": [[2166.22, 2422.88], [2171.84, 2415.64], [2174.32, 2413.22], [2219.66, 2368.73], [2220.44, 2367.92], [2231.0, 2356.87], [2236.36, 2351.27]], "length": 100.32}, {"u": 349368476, "v": 53498229, "oneway": false, "points": [[2166.22, 2422.88], [2159.56, 2416.36], [2109.84, 2367.5], [2050.74, 2309.31], [2028.11, 2288.0], [2021.92, 2282.08]], "length": 201.62}, {"u": 349368476, "v": 53626978, "oneway": false, "points": [[2166.22, 2422.88], [2172.5, 2428.96], [2289.53, 2542.51], [2295.76, 2548.51]], "length": 180.46}, {"u": 349378518, "v": 1699123250, "oneway": false, "points": [[998.9, 1062.16], [993.75, 1067.83], [938.52, 1128.63], [931.94, 1135.89]], "length": 99.6}, {"u": 349378518, "v": 53430018, "oneway": false, "points": [[998.9, 1062.16], [1005.44, 1054.96], [1039.35, 1017.64]], "length": 60.15}, {"u": 349378518, "v": 53453124, "oneway": false, "points": [[998.9, 1062.16], [1005.51, 1068.07], [1141.09, 1191.31], [1147.0, 1196.69]], "length": 200.08}, {"u": 349378518, "v": 3270240367, "oneway": false, "points": [[998.9, 1062.16], [991.68, 1055.56], [955.46, 1022.59], [929.38, 998.68], [927.8, 997.23], [898.07, 969.98], [856.36, 932.32], [849.71, 926.33]], "length": 201.77}, {"u": 362566885, "v": 387186935, "oneway": true, "points": [[-212.46, -868.43], [-221.03, -874.54], [-227.77, -882.13], [-236.77, -893.76], [-244.63, -906.51], [-248.04, -912.47], [-263.15, -941.11], [-267.77, -947.87], [-272.09, -951.09], [-278.78, -953.88], [-286.72, -955.85], [-304.32, -961.86]], "length": 137.21}, {"u": 362566885, "v": 2938172406, "oneway": true, "points": [[-212.46, -868.43], [-221.74, -884.3], [-228.08, -895.15], [-233.73, -904.93], [-239.78, -915.5], [-245.92, -926.42], [-251.33, -936.41], [-261.61, -957.29], [-270.12, -974.47]], "length": 120.76}, {"u": 362597488, "v": 316357431, "oneway": true, "points": [[-1378.18, -1279.75], [-1263.32, -1175.99], [-1226.35, -1142.59], [-1217.79, -1134.87], [-1167.54, -1089.45], [-1129.58, -1055.16], [-1121.19, -1047.59], [-1086.95, -1016.65], [-1059.97, -992.27], [-1037.2, -969.57], [-1029.88, -963.08]], "length": 470.77}, {"u": 366215894, "v": 1142903857, "oneway": false, "points": [[644.88, 550.87], [651.52, 544.71], [670.9, 523.04], [678.23, 514.07], [719.64, 468.44], [725.13, 462.4]], "length": 119.5}, {"u": 366215894, "v": 366215899, "oneway": true, "points": [[644.88, 550.87], [711.21, 613.6], [780.81, 679.15], [792.19, 689.55]], "length": 202.31}, {"u": 366215899, "v": 316303180, "oneway": false, "points": [[792.19, 689.55], [781.97, 700.78]], "length": 15.19}, {"u": 366215899, "v": 53407975, "oneway": false, "points": [[792.19, 689.55], [801.27, 679.55], [803.36, 677.25], [838.88, 638.19], [842.95, 633.69], [870.34, 603.56], [875.11, 598.33]], "length": 123.28}, {"u": 366215899, "v": 449917758, "oneway": true, "points": [[792.19, 689.55], [800.74, 697.34], [837.54, 730.89], [846.92, 739.41], [909.6, 796.57]], "length": 158.87}, {"u": 366215907, "v": 2948601585, "oneway": false, "points": [[941.86, 824.59], [949.99, 815.68], [952.13, 813.33], [975.1, 788.13], [976.85, 786.2], [985.51, 776.71], [987.68, 774.32], [995.7, 765.53], [1019.37, 739.57], [1025.54, 732.79]], "length": 124.21}, {"u": 366215907, "v": 366215913, "oneway": true, "points": [[941.86, 824.59], [956.31, 837.75], [984.11, 863.1], [1016.01, 892.12], [1030.01, 904.96], [1044.7, 918.36], [1055.12, 927.86], [1081.62, 952.02], [1091.04, 960.61]], "length": 201.88}, {"u": 366215913, "v": 2948594974, "oneway": false, "points": [[1091.04, 960.61], [1080.76, 972.05]], "length": 15.38}, {"u": 366215913, "v": 53408000, "oneway": false, "points": [[1091.04, 960.61], [1100.12, 950.35], [1134.32, 911.74], [1144.18, 900.6], [1153.41, 891.06], [1168.11, 874.79], [1174.55, 867.66]], "length": 124.97}, {"u": 366215913, "v": 366215925, "oneway": true, "points": [[1091.04, 960.61], [1098.75, 967.55], [1232.72, 1088.25], [1247.04, 1101.1], [1378.41, 1219.43], [1381.13, 1221.89], [1389.6, 1229.51]], "length": 401.8}, {"u": 366215925, "v": 53423508, "oneway": false, "points": [[1389.6, 1229.51], [1377.53, 1243.36]], "length": 18.38}, {"u": 366215925, "v": 53560766, "oneway": true, "points": [[1389.6, 1229.51], [1398.61, 1237.58], [1531.08, 1356.16], [1539.5, 1363.7]], "length": 201.19}, {"u": 366215925, "v": 53515077, "oneway": false, "points": [[1389.6, 1229.51], [1398.53, 1219.72], [1400.87, 1217.15], [1411.95, 1205.0], [1436.31, 1178.3], [1462.96, 1149.08], [1472.64, 1138.46], [1501.96, 1106.3], [1510.43, 1097.03], [1517.04, 1089.41], [1524.58, 1081.52], [1526.19, 1079.9], [1530.85, 1074.91], [1536.92, 1068.47], [1541.56, 1063.59], [1544.92, 1059.73], [1555.88, 1047.54], [1570.33, 1031.46], [1587.59, 1012.26], [1599.5, 999.01], [1602.71, 995.49], [1609.22, 988.4]], "length": 326.15}, {"u": 366220625, "v": 53426175, "oneway": false, "points": [[239.88, -318.84], [227.31, -305.3], [213.57, -290.52], [212.19, -289.03], [209.71, -286.36], [204.03, -281.35]], "length": 51.9}, {"u": 366229504, "v": 366229507, "oneway": false, "points": [[-0.34, -2208.13], [21.04, -2208.76]], "length": 21.39}, {"u": 366229504, "v": 53573861, "oneway": false, "points": [[-0.34, -2208.13], [-26.58, -2207.11], [-44.7, -2206.4], [-53.68, -2206.06]], "length": 53.38}, {"u": 366229504, "v": 2637766399, "oneway": true, "points": [[-0.34, -2208.13], [80.88, -2331.3], [140.96, -2414.2], [152.55, -2430.43], [200.15, -2495.59], [217.09, -2522.35], [233.12, -2550.04], [244.56, -2572.9], [259.27, -2606.17], [269.43, -2635.19]], "length": 506.91}, {"u": 366229507, "v": 366229504, "oneway": false, "points": [[21.04, -2208.76], [-0.34, -2208.13]], "length": 21.39}, {"u": 366229507, "v": 3937040992, "oneway": false, "points": [[21.04, -2208.76], [32.42, -2209.23], [48.32, -2210.03]], "length": 27.31}, {"u": 366229507, "v": 387186883, "oneway": true, "points": [[21.04, -2208.76], [6.21, -2186.24], [-5.91, -2168.4], [-133.85, -1971.72], [-152.78, -1943.11], [-171.41, -1914.59], [-264.88, -1768.43], [-285.86, -1734.62], [-304.11, -1704.7], [-327.47, -1665.97], [-346.67, -1632.62], [-354.48, -1616.26], [-358.87, -1606.09], [-365.55, -1587.6], [-372.53, -1564.11], [-379.42, -1533.01], [-383.95, -1491.3], [-382.47, -1440.49], [-376.64, -1400.5], [-358.7, -1314.9], [-336.9, -1225.13], [-323.53, -1168.99], [-313.15, -1129.9], [-298.1, -1086.06], [-286.57, -1055.84], [-276.35, -1027.95], [-262.3, -993.95], [-256.84, -982.68]], "length": 1357.7}, {"u": 387001668, "v": 53332734, "oneway": true, "points": [[-280.5, -126.55], [-278.88, -128.41], [-245.96, -164.51], [-214.96, -198.12], [-205.91, -208.51]], "length": 110.83}, {"u": 387096443, "v": 387001668, "oneway": true, "points": [[-279.56, -107.25], [-281.85, -113.71], [-282.01, -120.14], [-280.5, -126.55]], "length": 19.87}, {"u": 387096443, "v": 387001668, "oneway": true, "points": [[-279.56, -107.25], [-288.61, -109.98], [-294.2, -112.44], [-301.52, -116.04], [-294.9, -119.79], [-288.47, -123.24], [-280.5, -126.55]], "length": 47.25}, {"u": 387186790, "v": 452817475, "oneway": true, "points": [[-1016.98, -952.33], [-1031.9, -946.3]], "length": 16.09}, {"u": 387186790, "v": 1180120602, "oneway": true, "points": [[-1016.98, -952.33], [-1010.19, -945.54], [-988.98, -926.75]], "length": 37.95}, {"u": 387186883, "v": 2938172406, "oneway": true, "points": [[-256.84, -982.68], [-270.12, -974.47]], "length": 15.62}, {"u": 387186883, "v": 1188388115, "oneway": true, "points": [[-256.84, -982.68], [-232.54, -938.99], [-224.44, -924.71], [-200.64, -881.64]], "length": 115.62}, {"u": 387186935, "v": 1185580621, "oneway": true, "points": [[-304.32, -961.86], [-317.86, -963.81], [-332.33, -966.57], [-353.05, -971.3], [-365.28, -974.34], [-375.77, -977.59], [-387.85, -982.11], [-399.86, -987.3], [-412.67, -993.52], [-421.85, -998.36], [-431.92, -1004.53], [-442.06, -1011.35], [-451.86, -1018.59], [-458.75, -1024.25], [-465.25, -1029.8], [-472.31, -1036.48], [-479.03, -1042.99], [-487.12, -1051.79], [-495.04, -1061.18], [-502.6, -1070.95], [-507.23, -1077.44], [-512.34, -1084.63]], "length": 249.99}, {"u": 387187387, "v": 1185580621, "oneway": false, "points": [[-502.83, -1094.65], [-512.34, -1084.63]], "length": 13.81}, {"u": 387187387, "v": 4091376211, "oneway": true, "points": [[-502.83, -1094.65], [-497.62, -1087.45], [-491.02, -1079.04], [-483.64, -1070.22], [-475.88, -1062.05], [-463.47, -1049.52], [-444.12, -1032.01], [-433.83, -1024.81], [-424.15, -1018.5], [-413.48, -1012.0], [-404.65, -1007.39], [-384.44, -997.97], [-362.61, -989.06], [-344.6, -984.34], [-332.24, -983.79]], "length": 209.51}, {"u": 387187392, "v": 1191535148, "oneway": false, "points": [[-724.32, -1247.33], [-733.42, -1258.28]], "length": 14.24}, {"u": 387187392, "v": 13056348945, "oneway": true, "points": [[-724.32, -1247.33], [-728.56, -1243.97], [-732.31, -1240.99], [-739.7, -1232.89], [-776.14, -1191.57]], "length": 76.26}, {"u": 445963180, "v": 37923758, "oneway": false, "points": [[-1447.94, 86.04], [-1455.46, 86.34], [-1458.11, 86.42], [-1474.01, 87.47], [-1487.21, 88.09], [-1515.61, 89.52], [-1539.02, 90.62], [-1544.5, 90.97], [-1548.53, 91.47], [-1551.88, 92.81], [-1554.21, 94.25], [-1555.87, 95.98], [-1557.23, 99.45], [-1557.79, 103.84], [-1557.76, 109.18], [-1557.51, 118.97], [-1557.45, 126.04], [-1557.62, 133.29], [-1558.95, 138.84], [-1560.67, 142.72], [-1562.73, 144.67], [-1565.58, 146.1], [-1567.78, 146.43], [-1571.37, 145.57], [-1575.19, 143.03], [-1577.94, 139.33], [-1580.37, 135.02], [-1584.89, 126.65], [-1589.3, 118.48], [-1597.84, 107.07], [-1607.41, 95.76], [-1614.93, 88.56], [-1621.05, 83.61], [-1628.39, 80.38], [-1637.06, 76.27], [-1646.45, 72.12], [-1655.02, 67.63], [-1675.15, 57.32], [-1684.03, 54.2], [-1693.18, 52.8], [-1703.17, 52.79], [-1713.28, 53.25], [-1729.91, 54.71], [-1752.47, 58.01], [-1770.08, 60.74], [-1784.03, 62.16], [-1807.08, 62.24], [-1820.86, 63.1], [-1834.52, 64.87], [-1845.17, 67.29], [-1856.1, 70.67], [-1868.96, 74.78], [-1877.89, 78.66]], "length": 515.8}, {"u": 445963180, "v": 450716051, "oneway": false, "points": [[-1447.94, 86.04], [-1449.0, 54.2], [-1449.29, 42.64]], "length": 43.42}, {"u": 445963180, "v": 5446595705, "oneway": false, "points": [[-1447.94, 86.04], [-1447.3, 98.97], [-1446.34, 121.92], [-1446.14, 126.49], [-1446.03, 129.63], [-1445.41, 140.26], [-1445.29, 145.33], [-1447.47, 159.49]], "length": 73.68}, {"u": 446196405, "v": 446196406, "oneway": false, "points": [[1912.27, 2383.17], [1926.24, 2376.5]], "length": 15.49}, {"u": 446196405, "v": 53644706, "oneway": true, "points": [[1912.27, 2383.17], [1905.19, 2351.68], [1904.08, 2346.72], [1879.08, 2231.17], [1874.25, 2209.52], [1863.26, 2153.61]], "length": 234.74}, {"u": 446196406, "v": 446196405, "oneway": false, "points": [[1926.24, 2376.5], [1912.27, 2383.17]], "length": 15.49}, {"u": 446196406, "v": 53498229, "oneway": false, "points": [[1926.24, 2376.5], [1934.19, 2369.4], [1958.82, 2346.85], [1965.17, 2340.38], [1977.92, 2327.37], [1979.56, 2325.71], [1982.1, 2323.12], [2016.66, 2287.86], [2021.92, 2282.08]], "length": 134.48}, {"u": 446198895, "v": 13206778050, "oneway": true, "points": [[1730.4, 2001.33], [1719.62, 1991.5]], "length": 14.59}, {"u": 447178131, "v": 447178140, "oneway": true, "points": [[2713.91, 2352.37], [2733.86, 2348.11], [2738.94, 2347.03], [2745.01, 2346.63], [2752.22, 2347.35], [2762.63, 2351.09]], "length": 49.98}, {"u": 447178131, "v": 1706427646, "oneway": true, "points": [[2713.91, 2352.37], [2718.26, 2353.47], [2722.05, 2355.9], [2724.86, 2359.4], [2726.4, 2363.6]], "length": 17.95}, {"u": 447178140, "v": 2955373055, "oneway": false, "points": [[2762.63, 2351.09], [2768.68, 2352.94], [2774.59, 2355.24], [2781.99, 2359.12], [2787.3, 2362.46], [2791.59, 2365.87], [2794.67, 2368.7], [2803.72, 2377.52], [2866.12, 2438.36], [2869.03, 2441.2], [2869.86, 2442.03], [2870.61, 2442.79], [2892.88, 2465.25], [2912.62, 2481.91], [2924.2, 2492.4], [2932.22, 2501.05], [2935.04, 2505.11], [2935.71, 2506.07], [2938.4, 2513.52], [2940.12, 2520.04], [2941.34, 2532.02], [2941.61, 2535.35], [2943.09, 2554.23], [2943.66, 2561.91], [2945.93, 2592.01], [2946.1, 2595.18], [2946.66, 2605.82]], "length": 334.75}, {"u": 447178140, "v": 1706427646, "oneway": true, "points": [[2762.63, 2351.09], [2752.85, 2352.43], [2743.09, 2354.36], [2737.46, 2355.88], [2730.98, 2358.62], [2728.96, 2359.8], [2726.4, 2363.6]], "length": 39.61}, {"u": 449907112, "v": 53423466, "oneway": false, "points": [[482.97, 431.45], [495.83, 416.48]], "length": 19.74}, {"u": 449907112, "v": 2713311962, "oneway": false, "points": [[482.97, 431.45], [477.02, 437.97], [474.89, 440.3], [449.45, 468.21], [441.65, 476.75], [434.33, 484.79], [409.01, 512.56], [407.59, 514.11], [401.95, 520.29]], "length": 120.24}, {"u": 449907112, "v": 316334513, "oneway": true, "points": [[482.97, 431.45], [474.61, 423.8], [467.39, 417.21], [393.11, 347.92], [367.51, 324.05], [333.44, 292.28]], "length": 204.28}, {"u": 449917758, "v": 3270240364, "oneway": true, "points": [[909.6, 796.57], [922.36, 816.19], [926.74, 821.5], [929.69, 826.99], [931.81, 836.24]], "length": 46.01}, {"u": 449917758, "v": 366215907, "oneway": true, "points": [[909.6, 796.57], [917.38, 803.33], [920.62, 806.14], [926.55, 811.29], [941.86, 824.59]], "length": 42.73}, {"u": 449920083, "v": 366215907, "oneway": true, "points": [[964.92, 864.9], [949.84, 844.77], [946.04, 840.1], [943.65, 834.87], [941.86, 824.59]], "length": 47.36}, {"u": 449920083, "v": 3270240364, "oneway": true, "points": [[964.92, 864.9], [946.11, 848.62], [931.81, 836.24]], "length": 43.79}, {"u": 449934218, "v": 53423529, "oneway": false, "points": [[1631.54, 1548.63], [1637.72, 1544.15], [1643.3, 1540.11], [1653.15, 1530.83], [1667.25, 1517.52], [1675.14, 1510.09]], "length": 58.28}, {"u": 449952494, "v": 53423552, "oneway": false, "points": [[2160.91, 1940.4], [2147.55, 1953.92]], "length": 19.0}, {"u": 449952494, "v": 53407747, "oneway": false, "points": [[2160.91, 1940.4], [2166.86, 1934.31], [2223.89, 1875.8], [2228.45, 1871.13]], "length": 96.74}, {"u": 449952494, "v": 449952498, "oneway": true, "points": [[2160.91, 1940.4], [2170.85, 1950.03], [2255.75, 2032.24], [2267.07, 2043.19], [2397.72, 2169.71], [2405.43, 2177.18]], "length": 340.38}, {"u": 449952498, "v": 1706427672, "oneway": false, "points": [[2405.43, 2177.18], [2392.68, 2190.26]], "length": 18.27}, {"u": 449952498, "v": 53407767, "oneway": false, "points": [[2405.43, 2177.18], [2412.11, 2170.32], [2436.39, 2145.4], [2448.35, 2133.14]], "length": 61.49}, {"u": 449952498, "v": 449959902, "oneway": true, "points": [[2405.43, 2177.18], [2414.24, 2185.84], [2420.2, 2191.71], [2512.54, 2284.01]], "length": 151.28}, {"u": 449956571, "v": 53447046, "oneway": false, "points": [[2587.48, 2355.11], [2594.11, 2348.65], [2619.18, 2324.47], [2636.34, 2307.9], [2639.41, 2304.95], [2647.22, 2297.41]], "length": 83.06}, {"u": 449956571, "v": 449957352, "oneway": true, "points": [[2587.48, 2355.11], [2594.92, 2362.16], [2609.59, 2376.21], [2649.34, 2413.72], [2650.98, 2415.27], [2658.4, 2422.3]], "length": 97.69}, {"u": 449957352, "v": 53423565, "oneway": false, "points": [[2658.4, 2422.3], [2644.66, 2436.46]], "length": 19.74}, {"u": 449957352, "v": 1706427636, "oneway": false, "points": [[2658.4, 2422.3], [2665.02, 2415.86], [2683.37, 2398.02]], "length": 34.82}, {"u": 449957352, "v": 1706427633, "oneway": true, "points": [[2658.4, 2422.3], [2666.02, 2429.57], [2773.35, 2532.06], [2775.75, 2534.35], [2780.38, 2538.78], [2794.67, 2552.69], [2800.34, 2558.22], [2823.84, 2582.86], [2839.21, 2607.5], [2847.38, 2621.47], [2854.13, 2632.4]], "length": 288.65}, {"u": 449959902, "v": 1706427666, "oneway": true, "points": [[2512.54, 2284.01], [2513.86, 2294.82], [2520.3, 2302.16], [2525.38, 2307.97], [2526.11, 2308.81], [2526.41, 2309.94], [2526.3, 2311.3], [2522.09, 2317.58]], "length": 39.57}, {"u": 449959902, "v": 449956571, "oneway": true, "points": [[2512.54, 2284.01], [2541.12, 2311.14], [2544.42, 2314.26], [2581.55, 2349.48], [2587.48, 2355.11]], "length": 103.3}, {"u": 449967724, "v": 53423575, "oneway": true, "points": [[2860.48, 2643.84], [2845.97, 2654.77]], "length": 18.17}, {"u": 449967724, "v": 53599217, "oneway": true, "points": [[2860.48, 2643.84], [2869.5, 2658.4], [2885.06, 2684.12], [2898.35, 2705.9]], "length": 72.7}, {"u": 450505541, "v": 3031362525, "oneway": false, "points": [[-2501.8, 294.45], [-2459.37, 292.86], [-2436.26, 291.88], [-2426.04, 281.41]], "length": 80.22}, {"u": 450714559, "v": 2859245582, "oneway": true, "points": [[-1069.25, -263.74], [-1078.47, -263.28], [-1135.37, -260.44], [-1191.43, -257.57], [-1199.8, -257.26]], "length": 130.72}, {"u": 450714559, "v": 2859245574, "oneway": false, "points": [[-1069.25, -263.74], [-1070.19, -274.06], [-1070.39, -277.09], [-1072.29, -310.71], [-1073.19, -326.68], [-1073.41, -331.82], [-1073.53, -334.2], [-1074.38, -353.16], [-1074.53, -356.59], [-1076.03, -385.72], [-1075.96, -396.6]], "length": 133.06}, {"u": 450714559, "v": 1182091234, "oneway": false, "points": [[-1069.25, -263.74], [-1068.71, -251.38], [-1067.31, -219.58], [-1066.75, -206.84], [-1066.33, -197.25], [-1066.03, -190.51], [-1065.63, -181.51], [-1065.18, -169.97], [-1064.77, -160.52], [-1063.15, -124.92]], "length": 138.95}, {"u": 450714559, "v": 53642012, "oneway": true, "points": [[-1069.25, -263.74], [-1049.95, -251.94], [-1046.73, -249.1], [-1037.99, -241.23], [-1011.06, -216.95], [-990.66, -198.57], [-944.6, -157.05], [-928.78, -142.8], [-906.95, -123.13], [-897.75, -114.84], [-880.69, -99.46], [-877.48, -96.66], [-874.91, -94.72], [-870.01, -91.99], [-864.98, -90.0], [-860.32, -88.3]], "length": 273.89}, {"u": 450714993, "v": 469603287, "oneway": false, "points": [[-1458.1, -245.22], [-1457.88, -241.86], [-1457.95, -232.27], [-1457.93, -227.2], [-1458.09, -204.29], [-1456.91, -140.63]], "length": 104.61}, {"u": 450714993, "v": 53616189, "oneway": true, "points": [[-1458.1, -245.22], [-1472.32, -244.55], [-1502.72, -243.06], [-1532.11, -241.66], [-1556.95, -240.45], [-1591.62, -238.8], [-1596.76, -238.54], [-1604.54, -238.19]], "length": 146.61}, {"u": 450714993, "v": 1179459686, "oneway": true, "points": [[-1458.1, -245.22], [-1461.73, -254.47], [-1463.42, -258.09], [-1465.5, -264.1], [-1467.32, -307.88], [-1468.6, -322.93], [-1471.14, -339.36], [-1477.94, -364.93], [-1480.79, -376.02]], "length": 133.75}, {"u": 450716051, "v": 2859245583, "oneway": false, "points": [[-1449.29, 42.64], [-1440.61, 42.21], [-1348.48, 37.8], [-1304.08, 35.66], [-1192.34, 30.66], [-1183.37, 29.37]], "length": 266.29}, {"u": 450716051, "v": 445963180, "oneway": false, "points": [[-1449.29, 42.64], [-1449.0, 54.2], [-1447.94, 86.04]], "length": 43.42}, {"u": 450716051, "v": 469603287, "oneway": false, "points": [[-1449.29, 42.64], [-1449.6, 34.49], [-1450.11, 21.91], [-1454.37, -57.77], [-1455.13, -80.5], [-1455.2, -84.47], [-1456.91, -140.63]], "length": 183.43}, {"u": 452816427, "v": 452816429, "oneway": false, "points": [[325.58, -2754.28], [307.54, -2757.35]], "length": 18.3}, {"u": 452816427, "v": 6401044369, "oneway": false, "points": [[325.58, -2754.28], [330.69, -2753.08], [338.29, -2751.3], [348.02, -2749.02], [355.3, -2745.25], [359.42, -2741.68], [363.44, -2735.47], [364.61, -2731.36], [365.78, -2726.16], [364.93, -2720.22], [358.03, -2691.41], [355.94, -2684.91], [352.23, -2675.64], [349.69, -2664.53]], "length": 117.53}, {"u": 452816427, "v": 3937040986, "oneway": true, "points": [[325.58, -2754.28], [322.64, -2743.68], [316.34, -2717.69], [300.46, -2663.51], [284.59, -2615.59], [269.99, -2579.69], [254.58, -2547.67], [236.26, -2514.84], [215.4, -2482.79], [166.25, -2418.67], [154.24, -2402.25], [110.54, -2345.25], [65.62, -2279.05], [37.48, -2235.23]], "length": 599.84}, {"u": 452816429, "v": 452816427, "oneway": false, "points": [[307.54, -2757.35], [325.58, -2754.28]], "length": 18.3}, {"u": 452816429, "v": 2637766387, "oneway": false, "points": [[307.54, -2757.35], [296.04, -2756.32], [286.59, -2755.47], [261.51, -2751.54], [243.89, -2743.7], [224.25, -2729.03]], "length": 90.22}, {"u": 452816429, "v": 2637766380, "oneway": true, "points": [[307.54, -2757.35], [312.78, -2774.84], [315.26, -2783.15], [324.39, -2816.71]], "length": 61.7}, {"u": 452817475, "v": 53421750, "oneway": true, "points": [[-1031.9, -946.3], [-1044.11, -956.04]], "length": 15.61}, {"u": 452817475, "v": 6275800735, "oneway": true, "points": [[-1031.9, -946.3], [-1042.7, -941.97], [-1113.8, -910.52]], "length": 89.38}, {"u": 452866506, "v": 3607816648, "oneway": true, "points": [[-2465.13, -183.8], [-2469.33, -185.56], [-2476.15, -188.47], [-2486.16, -193.15], [-2491.05, -194.57], [-2497.2, -195.08], [-2512.99, -194.68], [-2527.84, -194.29], [-2530.82, -194.21], [-2539.89, -194.04]], "length": 76.98}, {"u": 452866506, "v": 53461796, "oneway": true, "points": [[-2465.13, -183.8], [-2453.56, -191.74], [-2444.71, -195.37], [-2429.84, -199.92], [-2415.41, -203.75], [-2394.66, -208.37], [-2370.27, -212.41]], "length": 100.06}, {"u": 456681760, "v": 2384881654, "oneway": true, "points": [[1619.51, 1903.26], [1613.47, 1896.44]], "length": 9.11}, {"u": 456681760, "v": 2384881666, "oneway": true, "points": [[1619.51, 1903.26], [1619.46, 1914.39], [1619.99, 1934.89]], "length": 31.64}, {"u": 456681765, "v": 1142903104, "oneway": true, "points": [[1616.95, 1881.18], [1618.24, 1882.15], [1624.22, 1886.6], [1625.62, 1887.74], [1635.25, 1896.85]], "length": 24.12}, {"u": 456681765, "v": 2384881652, "oneway": true, "points": [[1616.95, 1881.18], [1617.37, 1883.75], [1618.94, 1893.22]], "length": 12.2}, {"u": 469603287, "v": 469603304, "oneway": false, "points": [[-1456.91, -140.63], [-1467.39, -140.07], [-1502.21, -138.4], [-1520.17, -140.23], [-1544.45, -137.73], [-1558.09, -137.52], [-1566.24, -137.71], [-1573.8, -138.67], [-1582.53, -140.42], [-1591.06, -143.35], [-1596.59, -146.12], [-1602.26, -150.16], [-1605.52, -152.79], [-1609.08, -156.29], [-1613.07, -160.29], [-1617.71, -163.82], [-1623.36, -166.4], [-1628.27, -167.69], [-1635.78, -168.68], [-1656.84, -168.14], [-1661.26, -166.98], [-1667.34, -165.16], [-1671.57, -163.73], [-1675.18, -162.74], [-1677.39, -162.3], [-1679.61, -162.02], [-1683.37, -161.94], [-1686.77, -162.29], [-1690.14, -163.2], [-1699.14, -167.32], [-1715.06, -170.99], [-1722.54, -172.41], [-1726.33, -172.81], [-1730.38, -172.76], [-1734.34, -172.43], [-1737.17, -171.85], [-1739.75, -170.97], [-1742.67, -169.87], [-1762.95, -157.22], [-1768.57, -153.36], [-1774.69, -148.84], [-1778.89, -145.4], [-1782.17, -142.02], [-1784.74, -138.13]], "length": 350.73}, {"u": 469603287, "v": 450714993, "oneway": false, "points": [[-1456.91, -140.63], [-1458.09, -204.29], [-1457.93, -227.2], [-1457.95, -232.27], [-1457.88, -241.86], [-1458.1, -245.22]], "length": 104.61}, {"u": 469603287, "v": 450716051, "oneway": false, "points": [[-1456.91, -140.63], [-1455.2, -84.47], [-1455.13, -80.5], [-1454.37, -57.77], [-1450.11, 21.91], [-1449.6, 34.49], [-1449.29, 42.64]], "length": 183.43}, {"u": 469603304, "v": 469603287, "oneway": false, "points": [[-1784.74, -138.13], [-1782.17, -142.02], [-1778.89, -145.4], [-1774.69, -148.84], [-1768.57, -153.36], [-1762.95, -157.22], [-1742.67, -169.87], [-1739.75, -170.97], [-1737.17, -171.85], [-1734.34, -172.43], [-1730.38, -172.76], [-1726.33, -172.81], [-1722.54, -172.41], [-1715.06, -170.99], [-1699.14, -167.32], [-1690.14, -163.2], [-1686.77, -162.29], [-1683.37, -161.94], [-1679.61, -162.02], [-1677.39, -162.3], [-1675.18, -162.74], [-1671.57, -163.73], [-1667.34, -165.16], [-1661.26, -166.98], [-1656.84, -168.14], [-1635.78, -168.68], [-1628.27, -167.69], [-1623.36, -166.4], [-1617.71, -163.82], [-1613.07, -160.29], [-1609.08, -156.29], [-1605.52, -152.79], [-1602.26, -150.16], [-1596.59, -146.12], [-1591.06, -143.35], [-1582.53, -140.42], [-1573.8, -138.67], [-1566.24, -137.71], [-1558.09, -137.52], [-1544.45, -137.73], [-1520.17, -140.23], [-1502.21, -138.4], [-1467.39, -140.07], [-1456.91, -140.63]], "length": 350.73}, {"u": 482811372, "v": 2859304393, "oneway": false, "points": [[-2079.93, -551.08], [-2096.73, -550.45], [-2101.63, -550.27], [-2118.97, -549.63], [-2129.95, -549.32], [-2139.95, -549.01], [-2142.08, -548.95], [-2150.71, -548.45]], "length": 70.83}, {"u": 496686159, "v": 53290647, "oneway": false, "points": [[1594.68, 2485.46], [1585.55, 2486.43], [1576.85, 2487.36], [1544.47, 2496.39], [1522.01, 2502.65], [1517.88, 2503.72], [1503.33, 2507.51], [1460.62, 2520.94], [1458.58, 2520.78], [1456.74, 2518.94], [1453.76, 2514.47], [1450.48, 2507.78], [1446.5, 2500.29]], "length": 164.88}, {"u": 496686159, "v": 53499266, "oneway": false, "points": [[1594.68, 2485.46], [1595.62, 2507.91], [1596.51, 2529.77], [1596.61, 2532.05], [1597.82, 2561.85], [1599.12, 2593.97], [1600.34, 2623.74], [1600.44, 2626.27], [1601.45, 2651.12], [1602.02, 2662.47], [1603.95, 2701.24], [1605.25, 2728.16], [1605.55, 2734.25]], "length": 249.03}, {"u": 496686159, "v": 2712062758, "oneway": false, "points": [[1594.68, 2485.46], [1592.58, 2454.72], [1591.23, 2434.98], [1591.08, 2430.82]], "length": 54.76}, {"u": 496686170, "v": 2712062761, "oneway": false, "points": [[1596.53, 2345.98], [1601.63, 2322.57]], "length": 23.96}, {"u": 496686170, "v": 2712062759, "oneway": false, "points": [[1596.53, 2345.98], [1589.43, 2345.61], [1585.93, 2345.69], [1583.5, 2346.9], [1582.33, 2350.25], [1580.23, 2379.16], [1579.41, 2406.1], [1580.52, 2410.62], [1583.42, 2411.99], [1590.85, 2412.14]], "length": 88.1}, {"u": 496686170, "v": 2712062759, "oneway": false, "points": [[1596.53, 2345.98], [1592.92, 2368.66], [1590.9, 2396.46], [1590.85, 2412.14]], "length": 66.52}, {"u": 496686196, "v": 2712062758, "oneway": false, "points": [[1331.79, 2463.78], [1339.78, 2458.66], [1345.39, 2455.06], [1355.27, 2450.12], [1394.23, 2430.9], [1399.54, 2428.75], [1405.12, 2427.15], [1410.59, 2427.88], [1413.99, 2430.46], [1416.73, 2434.59], [1427.1, 2454.77], [1436.66, 2472.83], [1439.52, 2477.52], [1442.21, 2479.59], [1445.24, 2480.65], [1448.31, 2480.43], [1472.03, 2469.83], [1487.06, 2464.07], [1512.87, 2456.13], [1567.05, 2437.15], [1577.67, 2433.15], [1582.36, 2432.0], [1587.14, 2431.02], [1591.08, 2430.82]], "length": 306.71}, {"u": 496686196, "v": 53578383, "oneway": false, "points": [[1331.79, 2463.78], [1340.14, 2479.54], [1358.98, 2515.08], [1361.22, 2519.29], [1394.05, 2582.3], [1409.5, 2611.96], [1423.19, 2638.22], [1460.07, 2709.02]], "length": 276.76}, {"u": 496686196, "v": 496686202, "oneway": false, "points": [[1331.79, 2463.78], [1321.12, 2443.52], [1303.03, 2408.8]], "length": 62.05}, {"u": 496686202, "v": 2713391900, "oneway": false, "points": [[1303.03, 2408.8], [1284.74, 2375.53]], "length": 37.97}, {"u": 496686202, "v": 53510799, "oneway": false, "points": [[1303.03, 2408.8], [1295.4, 2414.77], [1277.49, 2427.31], [1260.8, 2444.67], [1254.69, 2453.4]], "length": 66.29}, {"u": 496686202, "v": 496686196, "oneway": false, "points": [[1303.03, 2408.8], [1321.12, 2443.52], [1331.79, 2463.78]], "length": 62.05}, {"u": 845773140, "v": 845773190, "oneway": true, "points": [[259.69, 226.23], [252.35, 219.89], [205.96, 178.47], [199.25, 172.54]], "length": 80.84}, {"u": 845773140, "v": 5730487260, "oneway": true, "points": [[259.69, 226.23], [252.29, 233.97], [237.92, 249.0], [184.57, 308.68], [183.55, 309.82], [179.91, 314.37]], "length": 118.91}, {"u": 845773190, "v": 845773213, "oneway": true, "points": [[199.25, 172.54], [212.85, 158.28]], "length": 19.7}, {"u": 845773190, "v": 53414098, "oneway": true, "points": [[199.25, 172.54], [192.61, 166.38], [158.32, 134.44], [156.13, 132.4], [131.88, 110.04], [125.14, 103.78]], "length": 101.09}, {"u": 845773212, "v": 53414098, "oneway": false, "points": [[137.56, 90.67], [125.14, 103.78]], "length": 18.07}, {"u": 845773212, "v": 845773213, "oneway": true, "points": [[137.56, 90.67], [143.94, 96.54], [205.81, 151.97], [212.85, 158.28]], "length": 101.19}, {"u": 845773212, "v": 53407922, "oneway": false, "points": [[137.56, 90.67], [143.76, 84.11], [145.43, 82.31], [162.73, 62.79], [165.99, 59.23], [178.31, 45.8], [212.49, 7.45], [218.19, 1.17]], "length": 120.47}, {"u": 845773213, "v": 53407926, "oneway": true, "points": [[212.85, 158.28], [218.11, 151.91], [232.07, 136.47], [245.99, 121.15], [262.29, 103.2], [284.8, 78.41], [287.13, 75.76], [293.85, 68.45]], "length": 120.96}, {"u": 845773213, "v": 845773215, "oneway": true, "points": [[212.85, 158.28], [219.3, 164.32], [236.59, 180.53], [264.52, 206.73], [271.06, 213.09]], "length": 79.95}, {"u": 845773215, "v": 845773140, "oneway": true, "points": [[271.06, 213.09], [263.93, 221.68], [259.69, 226.23]], "length": 17.38}, {"u": 845773215, "v": 316349604, "oneway": true, "points": [[271.06, 213.09], [278.13, 219.13], [307.75, 248.08], [334.01, 270.21], [345.58, 280.12]], "length": 100.29}, {"u": 847061279, "v": 53288575, "oneway": false, "points": [[-71.01, -3019.74], [-72.88, -3077.15]], "length": 57.44}, {"u": 847061279, "v": 53288573, "oneway": false, "points": [[-71.01, -3019.74], [-106.13, -3040.34]], "length": 40.72}, {"u": 847061279, "v": 6291669589, "oneway": false, "points": [[-71.01, -3019.74], [-63.1, -3014.98], [-27.11, -2974.3], [-2.82, -2934.26], [18.27, -2893.07], [32.87, -2850.95], [35.62, -2829.82], [36.53, -2806.39], [30.31, -2757.26], [25.28, -2717.6], [26.94, -2699.2], [31.96, -2674.56], [37.32, -2660.93], [43.46, -2642.99], [45.7, -2637.67], [49.4, -2628.95], [55.56, -2612.81]], "length": 445.24}, {"u": 917593109, "v": 13324853247, "oneway": false, "points": [[-365.67, -346.61], [-359.18, -353.68]], "length": 9.6}, {"u": 917593109, "v": 4173796882, "oneway": true, "points": [[-365.67, -346.61], [-371.4, -351.88], [-381.33, -361.01], [-382.06, -362.47], [-382.53, -364.1], [-382.66, -365.82], [-382.57, -367.45]], "length": 27.97}, {"u": 917593109, "v": 53591793, "oneway": false, "points": [[-365.67, -346.61], [-373.87, -335.05], [-386.07, -321.52], [-396.98, -309.42], [-409.26, -295.8], [-415.65, -288.73], [-421.13, -282.64], [-438.62, -263.26], [-443.13, -258.24], [-449.69, -251.99]], "length": 126.66}, {"u": 917593526, "v": 53604259, "oneway": true, "points": [[-510.0, -485.71], [-523.11, -471.1], [-570.73, -419.49], [-593.13, -394.7], [-599.55, -387.68]], "length": 132.77}, {"u": 917593526, "v": 4173796882, "oneway": false, "points": [[-510.0, -485.71], [-502.68, -479.05], [-490.15, -467.63], [-485.38, -463.3], [-470.01, -449.3], [-469.21, -448.57], [-448.25, -428.41], [-423.7, -405.64], [-421.7, -403.87], [-417.38, -400.05], [-399.31, -383.79], [-383.51, -368.36], [-382.57, -367.45]], "length": 173.87}, {"u": 917593526, "v": 53615260, "oneway": false, "points": [[-510.0, -485.71], [-516.37, -491.5], [-539.2, -512.29], [-553.64, -525.45], [-555.11, -526.78], [-568.86, -539.3], [-584.26, -553.33], [-599.03, -566.77], [-599.88, -567.55], [-613.63, -580.06], [-627.05, -592.28], [-635.84, -600.28], [-636.41, -600.8], [-652.54, -615.49], [-658.72, -621.11]], "length": 201.13}, {"u": 917880340, "v": 13056348949, "oneway": false, "points": [[-929.29, -1044.08], [-919.33, -1035.3]], "length": 13.28}, {"u": 917880340, "v": 12911858844, "oneway": false, "points": [[-929.29, -1044.08], [-936.04, -1050.45], [-938.28, -1052.41], [-955.74, -1067.7], [-965.71, -1077.01], [-973.69, -1084.29], [-1011.13, -1118.45], [-1018.8, -1125.79], [-1029.44, -1134.5], [-1046.78, -1150.93], [-1048.76, -1153.37], [-1049.89, -1155.59], [-1050.36, -1157.87], [-1050.19, -1161.03], [-1047.94, -1164.23], [-1015.52, -1189.98], [-990.15, -1210.34]], "length": 247.81}, {"u": 917880340, "v": 7189398161, "oneway": true, "points": [[-929.29, -1044.08], [-923.26, -1051.59], [-889.97, -1088.59], [-809.96, -1175.33]], "length": 177.42}, {"u": 1142902939, "v": 3786906811, "oneway": true, "points": [[2629.29, 1772.18], [2635.68, 1776.69]], "length": 7.82}, {"u": 1142902939, "v": 53498437, "oneway": true, "points": [[2629.29, 1772.18], [2633.11, 1764.39], [2636.51, 1754.22], [2637.66, 1748.76], [2638.54, 1742.22], [2638.63, 1729.68]], "length": 44.12}, {"u": 1142903012, "v": 1142903904, "oneway": false, "points": [[2092.04, 1402.0], [2098.56, 1396.72]], "length": 8.39}, {"u": 1142903012, "v": 53539549, "oneway": false, "points": [[2092.04, 1402.0], [2088.41, 1405.38], [2068.69, 1423.26], [2044.58, 1449.1], [2018.88, 1476.65], [1992.46, 1504.76]], "length": 143.17}, {"u": 1142903012, "v": 53539556, "oneway": true, "points": [[2092.04, 1402.0], [2089.0, 1396.56], [2068.45, 1358.86]], "length": 49.16}, {"u": 1142903104, "v": 13202666793, "oneway": true, "points": [[1635.25, 1896.85], [1639.63, 1900.14], [1660.6, 1918.04], [1662.84, 1919.92], [1666.19, 1922.96], [1688.8, 1943.39], [1701.35, 1953.61], [1726.13, 1973.12], [1731.55, 1977.84]], "length": 125.88}, {"u": 1142903570, "v": 2384881666, "oneway": true, "points": [[1637.24, 1919.08], [1630.86, 1917.47], [1626.79, 1917.27], [1624.44, 1918.76], [1621.01, 1922.9], [1619.99, 1934.89]], "length": 30.85}, {"u": 1142903570, "v": 456681760, "oneway": true, "points": [[1637.24, 1919.08], [1630.44, 1913.07], [1625.38, 1908.71], [1622.32, 1905.92], [1619.51, 1903.26]], "length": 23.76}, {"u": 1142903857, "v": 53432331, "oneway": false, "points": [[725.13, 462.4], [732.45, 453.99], [791.9, 387.43], [801.52, 377.16], [847.11, 328.11], [850.54, 324.19], [858.69, 315.04], [884.0, 285.44], [892.07, 276.84], [919.85, 247.2], [922.28, 244.66], [929.4, 237.03]], "length": 304.2}, {"u": 1142903857, "v": 366215894, "oneway": false, "points": [[725.13, 462.4], [719.64, 468.44], [678.23, 514.07], [670.9, 523.04], [651.52, 544.71], [644.88, 550.87]], "length": 119.5}, {"u": 1142903857, "v": 53407975, "oneway": false, "points": [[725.13, 462.4], [732.18, 468.78], [784.19, 515.91], [787.06, 518.45], [801.2, 531.75], [829.8, 557.25], [840.96, 567.37], [868.16, 592.02], [875.11, 598.33]], "length": 202.41}, {"u": 1142903857, "v": 2713292536, "oneway": false, "points": [[725.13, 462.4], [718.48, 456.01], [653.3, 393.18], [583.91, 332.36], [577.38, 327.11]], "length": 200.41}, {"u": 1142903904, "v": 1142903012, "oneway": false, "points": [[2098.56, 1396.72], [2092.04, 1402.0]], "length": 8.39}, {"u": 1142903904, "v": 53649099, "oneway": true, "points": [[2098.56, 1396.72], [2119.07, 1415.8], [2126.03, 1422.7], [2133.22, 1429.12], [2142.69, 1436.66], [2152.88, 1444.42], [2159.3, 1448.85], [2174.67, 1459.42]], "length": 98.82}, {"u": 1142904042, "v": 2948601586, "oneway": false, "points": [[1961.74, 1311.22], [1967.39, 1311.67], [1972.95, 1310.68], [1985.68, 1306.86], [1990.06, 1305.12], [2012.33, 1296.64], [2014.15, 1295.3], [2015.97, 1293.96], [2024.07, 1287.73]], "length": 67.89}, {"u": 1142904218, "v": 53616146, "oneway": false, "points": [[644.5, 255.19], [637.22, 248.28], [634.72, 245.91], [578.96, 193.32], [560.97, 177.47], [548.38, 165.79], [525.02, 144.1], [503.86, 124.46], [501.38, 122.15], [495.26, 116.79]], "length": 203.56}, {"u": 1142904218, "v": 1192150405, "oneway": false, "points": [[644.5, 255.19], [665.09, 231.96], [685.84, 208.54], [692.48, 200.81], [702.44, 188.89], [708.79, 181.35], [714.62, 172.44], [715.89, 170.94], [744.52, 139.62], [766.14, 116.36], [772.75, 111.09]], "length": 193.18}, {"u": 1142904218, "v": 2713292536, "oneway": false, "points": [[644.5, 255.19], [586.38, 317.97], [585.11, 319.5], [577.38, 327.11]], "length": 98.38}, {"u": 1153239288, "v": 53612042, "oneway": false, "points": [[-1764.92, -2061.52], [-1757.15, -2070.55], [-1738.96, -2091.65], [-1693.94, -2141.96], [-1665.18, -2179.13], [-1650.76, -2199.33], [-1625.95, -2240.83], [-1606.96, -2279.02], [-1602.3, -2288.85]], "length": 280.98}, {"u": 1153239288, "v": 270405510, "oneway": false, "points": [[-1764.92, -2061.52], [-1770.19, -2055.51], [-1771.85, -2053.48], [-1776.86, -2046.0], [-1782.95, -2036.93], [-1786.84, -2018.93], [-1787.51, -2011.57]], "length": 56.35}, {"u": 1153239288, "v": 53447620, "oneway": false, "points": [[-1764.92, -2061.52], [-1757.75, -2058.08], [-1754.13, -2056.35], [-1668.23, -2009.65], [-1661.44, -2005.96]], "length": 117.47}, {"u": 1153239288, "v": 53680486, "oneway": false, "points": [[-1764.92, -2061.52], [-1775.01, -2064.82], [-1784.17, -2069.96], [-1791.67, -2076.13], [-1793.51, -2078.22], [-1805.67, -2093.64], [-1809.37, -2098.59], [-1819.18, -2111.71], [-1831.24, -2123.58], [-1846.69, -2133.58], [-1868.38, -2139.74], [-1974.65, -2130.76], [-1983.38, -2130.02], [-2011.65, -2127.63], [-2075.5, -2123.13], [-2089.5, -2122.5], [-2099.18, -2121.56], [-2122.09, -2121.9], [-2145.33, -2127.9], [-2163.16, -2138.5], [-2175.74, -2153.93], [-2201.01, -2204.88], [-2218.16, -2234.51], [-2231.37, -2260.36], [-2238.74, -2287.05], [-2241.15, -2311.21], [-2240.22, -2338.58], [-2231.5, -2451.98], [-2230.3, -2489.69], [-2232.42, -2512.53], [-2240.11, -2538.98], [-2252.07, -2566.43], [-2289.58, -2626.7], [-2308.68, -2658.72], [-2323.38, -2682.42], [-2337.49, -2708.35], [-2347.1, -2727.97], [-2362.62, -2768.65], [-2373.27, -2794.81], [-2383.56, -2813.31], [-2394.25, -2826.59], [-2404.41, -2835.69], [-2414.09, -2841.03], [-2425.34, -2843.65], [-2451.77, -2844.45], [-2478.73, -2843.45], [-2548.3, -2839.23], [-2617.11, -2834.02], [-2683.03, -2830.13], [-2715.35, -2828.86], [-2744.22, -2829.25], [-2764.08, -2832.59], [-2781.54, -2837.43]], "length": 1575.57}, {"u": 1157073442, "v": 1424945190, "oneway": false, "points": [[-143.14, -724.84], [-142.68, -715.21], [-142.15, -703.74], [-141.83, -696.96], [-140.37, -665.78], [-140.2, -661.98], [-139.84, -654.31], [-138.14, -617.9], [-137.95, -613.99]], "length": 110.98}, {"u": 1160692039, "v": 1423974459, "oneway": true, "points": [[-276.73, 40.4], [-271.12, 34.26], [-242.78, 3.25], [-239.72, -0.09], [-236.94, -3.13], [-229.6, -11.16], [-226.02, -13.92], [-221.22, -15.98], [-213.73, -17.57]], "length": 87.25}, {"u": 1160692039, "v": 1160692043, "oneway": true, "points": [[-276.73, 40.4], [-285.01, 33.09], [-296.78, 22.32], [-361.38, -36.72], [-367.54, -42.34]], "length": 122.85}, {"u": 1160692043, "v": 53720172, "oneway": false, "points": [[-367.54, -42.34], [-374.2, -35.03], [-394.22, -13.04], [-408.7, 2.84], [-430.09, 26.34], [-435.66, 32.45]], "length": 101.17}, {"u": 1160692043, "v": 53604257, "oneway": true, "points": [[-367.54, -42.34], [-374.5, -48.97], [-399.49, -72.47], [-411.65, -83.47], [-421.04, -91.96], [-423.3, -94.21], [-425.13, -96.39], [-426.73, -98.72], [-428.21, -101.54], [-429.54, -104.64], [-430.4, -110.22], [-430.43, -113.24], [-429.99, -117.91], [-428.36, -122.18], [-426.67, -125.48], [-424.51, -128.85], [-421.4, -133.08], [-415.65, -139.58], [-380.25, -177.35], [-374.05, -183.74]], "length": 188.63}, {"u": 1160692043, "v": 12849307402, "oneway": false, "points": [[-367.54, -42.34], [-360.26, -46.64], [-339.78, -69.55], [-335.87, -76.29]], "length": 46.98}, {"u": 1178694147, "v": 53590707, "oneway": false, "points": [[-2319.69, -1305.22], [-2319.56, -1300.49], [-2319.22, -1287.47], [-2317.49, -1238.27], [-2317.36, -1234.6], [-2317.09, -1227.11]], "length": 78.15}, {"u": 1178694147, "v": 2637157420, "oneway": true, "points": [[-2319.69, -1305.22], [-2328.26, -1304.58], [-2339.56, -1305.83], [-2346.35, -1307.62], [-2355.1, -1310.72], [-2362.87, -1314.27], [-2368.53, -1318.56], [-2372.08, -1322.77], [-2377.2, -1330.87], [-2378.91, -1334.42], [-2379.89, -1336.46], [-2381.75, -1341.74], [-2382.63, -1346.72]], "length": 83.86}, {"u": 1179459672, "v": 1179459703, "oneway": true, "points": [[-1494.3, -747.51], [-1508.05, -746.83]], "length": 13.77}, {"u": 1179459672, "v": 1179459754, "oneway": true, "points": [[-1494.3, -747.51], [-1493.97, -741.1], [-1490.78, -683.71]], "length": 63.89}, {"u": 1179459686, "v": 1179459693, "oneway": true, "points": [[-1480.79, -376.02], [-1466.73, -376.43]], "length": 14.07}, {"u": 1179459686, "v": 1179459701, "oneway": true, "points": [[-1480.79, -376.02], [-1483.36, -386.62], [-1486.28, -405.12], [-1487.23, -413.13], [-1487.93, -421.14], [-1488.7, -439.27], [-1489.32, -458.39], [-1489.38, -459.89], [-1490.92, -492.43], [-1491.2, -501.42]], "length": 126.09}, {"u": 1179459693, "v": 450714993, "oneway": true, "points": [[-1466.73, -376.43], [-1464.5, -365.82], [-1461.32, -352.38], [-1457.28, -331.98], [-1455.32, -312.91], [-1454.48, -295.05], [-1453.03, -264.2], [-1453.96, -258.65], [-1455.03, -254.82], [-1458.1, -245.22]], "length": 133.07}, {"u": 1179459693, "v": 53582205, "oneway": true, "points": [[-1466.73, -376.43], [-1458.18, -376.86], [-1390.58, -380.19], [-1347.12, -382.35], [-1338.16, -382.78], [-1330.13, -383.18], [-1291.62, -385.08], [-1270.17, -386.15], [-1217.61, -388.74], [-1206.64, -389.29]], "length": 260.41}, {"u": 1179459694, "v": 1179459737, "oneway": false, "points": [[-1492.75, -1247.63], [-1507.52, -1247.36]], "length": 14.78}, {"u": 1179459694, "v": 3306923767, "oneway": true, "points": [[-1492.75, -1247.63], [-1492.6, -1234.45], [-1492.54, -1227.54], [-1490.25, -1183.3], [-1487.78, -1122.2], [-1489.65, -1091.8], [-1490.45, -1062.93], [-1492.22, -1026.38], [-1492.35, -1016.93]], "length": 230.92}, {"u": 1179459701, "v": 1179459724, "oneway": false, "points": [[-1491.2, -501.42], [-1477.46, -502.69]], "length": 13.8}, {"u": 1179459701, "v": 53616182, "oneway": false, "points": [[-1491.2, -501.42], [-1500.71, -500.95], [-1503.6, -500.81], [-1546.79, -498.68], [-1586.89, -496.71], [-1609.16, -495.62], [-1617.78, -495.19]], "length": 126.73}, {"u": 1179459701, "v": 1179459707, "oneway": true, "points": [[-1491.2, -501.42], [-1491.89, -511.51], [-1498.97, -615.46], [-1499.81, -625.79], [-1500.03, -628.5], [-1504.63, -674.32], [-1505.18, -683.1]], "length": 182.24}, {"u": 1179459703, "v": 1179459709, "oneway": true, "points": [[-1508.05, -746.83], [-1510.26, -804.89]], "length": 58.11}, {"u": 1179459703, "v": 53545466, "oneway": true, "points": [[-1508.05, -746.83], [-1517.97, -746.49], [-1594.91, -743.74], [-1613.74, -742.67], [-1615.52, -742.57], [-1624.32, -742.03]], "length": 116.37}, {"u": 1179459707, "v": 1179459754, "oneway": false, "points": [[-1505.18, -683.1], [-1490.78, -683.71]], "length": 14.41}, {"u": 1179459707, "v": 53616173, "oneway": false, "points": [[-1505.18, -683.1], [-1515.08, -682.68], [-1579.47, -679.94], [-1582.43, -679.81], [-1622.24, -678.11]], "length": 117.17}, {"u": 1179459707, "v": 1179459703, "oneway": true, "points": [[-1505.18, -683.1], [-1507.8, -741.99], [-1508.05, -746.83]], "length": 63.79}, {"u": 1179459709, "v": 1179459773, "oneway": true, "points": [[-1510.26, -804.89], [-1512.66, -857.5], [-1513.15, -867.57]], "length": 62.74}, {"u": 1179459724, "v": 1179459701, "oneway": false, "points": [[-1477.46, -502.69], [-1491.2, -501.42]], "length": 13.8}, {"u": 1179459724, "v": 1179459693, "oneway": true, "points": [[-1477.46, -502.69], [-1476.79, -492.81], [-1475.2, -469.24], [-1470.63, -401.0], [-1468.61, -387.38], [-1466.73, -376.43]], "length": 126.79}, {"u": 1179459724, "v": 53582203, "oneway": false, "points": [[-1477.46, -502.69], [-1466.13, -503.37], [-1465.49, -503.4], [-1411.27, -506.09], [-1352.31, -509.0], [-1344.45, -509.36], [-1334.73, -509.86], [-1225.13, -515.44], [-1214.64, -515.98]], "length": 263.16}, {"u": 1179459735, "v": 8868957845, "oneway": true, "points": [[-1441.66, -1016.8], [-1416.65, -1019.75], [-1409.06, -1021.07], [-1392.72, -1023.92], [-1381.53, -1025.64], [-1357.37, -1026.93], [-1351.64, -1026.75], [-1297.26, -1026.1], [-1273.66, -1026.47], [-1264.94, -1026.46]], "length": 177.43}, {"u": 1179459735, "v": 3306923767, "oneway": false, "points": [[-1441.66, -1016.8], [-1483.13, -1016.65], [-1492.35, -1016.93]], "length": 50.7}, {"u": 1179459737, "v": 1179459694, "oneway": false, "points": [[-1507.52, -1247.36], [-1492.75, -1247.63]], "length": 14.78}, {"u": 1179459737, "v": 2573847790, "oneway": false, "points": [[-1507.52, -1247.36], [-1517.31, -1247.2], [-1520.77, -1247.1], [-1627.98, -1244.1], [-1638.06, -1243.82]], "length": 130.58}, {"u": 1179459737, "v": 1179795984, "oneway": true, "points": [[-1507.52, -1247.36], [-1508.66, -1307.87], [-1509.13, -1318.48], [-1509.72, -1331.91], [-1509.99, -1337.98], [-1510.46, -1348.47], [-1510.76, -1355.49], [-1511.3, -1367.68]], "length": 120.39}, {"u": 1179459754, "v": 1179459707, "oneway": false, "points": [[-1490.78, -683.71], [-1505.18, -683.1]], "length": 14.41}, {"u": 1179459754, "v": 1179459724, "oneway": true, "points": [[-1490.78, -683.71], [-1490.31, -675.03], [-1486.84, -635.01], [-1486.57, -632.44], [-1485.65, -621.89], [-1482.26, -587.68], [-1479.55, -539.55], [-1478.0, -512.2], [-1477.46, -502.69]], "length": 181.54}, {"u": 1179459768, "v": 1179459737, "oneway": true, "points": [[-1507.25, -1084.87], [-1507.09, -1093.23], [-1506.12, -1141.53], [-1505.82, -1157.03], [-1506.6, -1203.58], [-1507.08, -1231.48], [-1507.17, -1233.82], [-1507.52, -1247.36]], "length": 162.52}, {"u": 1179459773, "v": 3306923798, "oneway": true, "points": [[-1513.15, -867.57], [-1513.38, -881.07], [-1512.97, -934.53], [-1512.1, -967.82]], "length": 100.27}, {"u": 1179459773, "v": 2859302267, "oneway": false, "points": [[-1513.15, -867.57], [-1505.6, -867.94], [-1497.21, -868.33]], "length": 15.96}, {"u": 1179459773, "v": 53616166, "oneway": false, "points": [[-1513.15, -867.57], [-1525.12, -867.02], [-1586.43, -864.24], [-1619.11, -862.77], [-1627.33, -862.38]], "length": 114.29}, {"u": 1179795897, "v": 53511571, "oneway": false, "points": [[-1443.66, -1367.47], [-1435.9, -1367.65], [-1427.08, -1368.81], [-1422.79, -1371.55], [-1420.77, -1377.27], [-1419.67, -1384.71], [-1420.21, -1416.98], [-1420.96, -1491.31]], "length": 141.94}, {"u": 1179795931, "v": 1179796056, "oneway": false, "points": [[-1502.61, -1611.48], [-1517.83, -1611.27]], "length": 15.22}, {"u": 1179795931, "v": 1179796106, "oneway": true, "points": [[-1502.61, -1611.48], [-1502.58, -1601.0], [-1502.13, -1571.74], [-1501.07, -1528.4], [-1500.41, -1501.45], [-1500.12, -1489.44]], "length": 122.06}, {"u": 1179795931, "v": 2634693278, "oneway": false, "points": [[-1502.61, -1611.48], [-1494.41, -1611.69], [-1491.13, -1611.77], [-1486.01, -1611.84], [-1481.12, -1611.92], [-1431.63, -1612.74], [-1424.32, -1612.86]], "length": 78.3}, {"u": 1179795960, "v": 1710317933, "oneway": false, "points": [[-1505.63, -1731.62], [-1519.55, -1731.34]], "length": 13.92}, {"u": 1179795960, "v": 1179795931, "oneway": true, "points": [[-1505.63, -1731.62], [-1504.45, -1723.41], [-1504.01, -1703.09], [-1503.24, -1655.36], [-1502.76, -1622.65], [-1502.61, -1611.48]], "length": 120.24}, {"u": 1179795960, "v": 12911858894, "oneway": false, "points": [[-1505.63, -1731.62], [-1497.06, -1731.77], [-1469.4, -1732.31], [-1465.79, -1732.38], [-1433.39, -1733.01], [-1427.4, -1733.13]], "length": 78.24}, {"u": 1179795984, "v": 53560253, "oneway": true, "points": [[-1511.3, -1367.68], [-1498.67, -1368.03]], "length": 12.63}, {"u": 1179795984, "v": 53621256, "oneway": false, "points": [[-1511.3, -1367.68], [-1519.24, -1367.54], [-1529.74, -1367.35], [-1549.48, -1366.93], [-1630.8, -1365.54], [-1639.32, -1365.38]], "length": 128.03}, {"u": 1179795984, "v": 1179796096, "oneway": true, "points": [[-1511.3, -1367.68], [-1511.67, -1379.49], [-1513.25, -1429.25], [-1514.74, -1478.73], [-1515.06, -1489.29]], "length": 121.67}, {"u": 1179796012, "v": 1179796054, "oneway": true, "points": [[-1460.14, -1331.49], [-1467.92, -1333.37], [-1471.95, -1334.16], [-1475.58, -1334.14], [-1479.27, -1333.55], [-1484.2, -1331.9], [-1486.51, -1330.72], [-1488.91, -1328.69], [-1490.59, -1326.92], [-1492.36, -1324.16], [-1493.96, -1320.93], [-1496.25, -1311.97]], "length": 48.99}, {"u": 1179796012, "v": 316357138, "oneway": true, "points": [[-1460.14, -1331.49], [-1473.33, -1342.64], [-1483.49, -1350.77], [-1486.15, -1351.96], [-1498.11, -1357.52]], "length": 46.39}, {"u": 1179796036, "v": 1180187579, "oneway": true, "points": [[-1467.72, -1900.06], [-1451.28, -1930.04], [-1434.37, -1960.86], [-1416.88, -1992.63], [-1414.45, -1996.99], [-1396.0, -2030.39], [-1387.06, -2047.62], [-1382.36, -2056.19]], "length": 177.95}, {"u": 1179796036, "v": 53447618, "oneway": false, "points": [[-1467.72, -1900.06], [-1473.91, -1903.54], [-1476.2, -1904.83], [-1499.07, -1917.67], [-1511.86, -1924.6], [-1515.35, -1926.49], [-1570.65, -1956.15], [-1578.01, -1960.1]], "length": 125.58}, {"u": 1179796036, "v": 4248707700, "oneway": false, "points": [[-1467.72, -1900.06], [-1460.98, -1896.25], [-1453.43, -1891.98]], "length": 16.41}, {"u": 1179796039, "v": 316357429, "oneway": true, "points": [[-1498.95, -1399.57], [-1484.35, -1383.16], [-1482.61, -1380.97], [-1476.05, -1372.62], [-1467.52, -1361.97]], "length": 49.03}, {"u": 1179796039, "v": 53560253, "oneway": true, "points": [[-1498.95, -1399.57], [-1498.87, -1379.64], [-1498.67, -1368.03]], "length": 31.54}, {"u": 1179796054, "v": 1179459694, "oneway": true, "points": [[-1496.25, -1311.97], [-1495.17, -1292.25], [-1492.75, -1247.63]], "length": 64.44}, {"u": 1179796056, "v": 1179795931, "oneway": false, "points": [[-1517.83, -1611.27], [-1502.61, -1611.48]], "length": 15.22}, {"u": 1179796056, "v": 53529686, "oneway": false, "points": [[-1517.83, -1611.27], [-1524.54, -1611.08], [-1527.11, -1611.04], [-1594.18, -1609.87], [-1634.38, -1608.47], [-1636.65, -1608.39], [-1645.36, -1608.09]], "length": 127.58}, {"u": 1179796056, "v": 1710317933, "oneway": true, "points": [[-1517.83, -1611.27], [-1517.95, -1622.44], [-1518.66, -1661.31], [-1518.35, -1672.32], [-1517.93, -1686.81], [-1518.96, -1722.45], [-1519.55, -1731.34]], "length": 120.12}, {"u": 1179796074, "v": 1180187704, "oneway": false, "points": [[-1365.88, -2080.76], [-1355.23, -2070.82]], "length": 14.57}, {"u": 1179796074, "v": 1180187485, "oneway": true, "points": [[-1365.88, -2080.76], [-1372.91, -2083.11], [-1376.97, -2089.41], [-1379.7, -2094.8], [-1381.44, -2100.52]], "length": 26.94}, {"u": 1179796074, "v": 1180187568, "oneway": true, "points": [[-1365.88, -2080.76], [-1358.18, -2098.01], [-1347.89, -2116.01], [-1324.04, -2160.67]], "length": 90.25}, {"u": 1179796096, "v": 1179796106, "oneway": false, "points": [[-1515.06, -1489.29], [-1500.12, -1489.44]], "length": 14.94}, {"u": 1179796096, "v": 1179796056, "oneway": true, "points": [[-1515.06, -1489.29], [-1515.51, -1501.14], [-1517.38, -1550.09], [-1517.74, -1600.44], [-1517.83, -1611.27]], "length": 122.03}, {"u": 1179796096, "v": 53511582, "oneway": false, "points": [[-1515.06, -1489.29], [-1522.24, -1489.09], [-1524.28, -1489.03], [-1529.71, -1488.88], [-1554.9, -1488.21], [-1558.6, -1488.1], [-1602.47, -1486.78], [-1634.26, -1486.21], [-1642.93, -1486.06]], "length": 127.91}, {"u": 1179796106, "v": 1179796096, "oneway": false, "points": [[-1500.12, -1489.44], [-1515.06, -1489.29]], "length": 14.94}, {"u": 1179796106, "v": 1179796039, "oneway": true, "points": [[-1500.12, -1489.44], [-1501.22, -1478.02], [-1500.34, -1441.11], [-1499.46, -1414.58], [-1498.95, -1399.57]], "length": 89.96}, {"u": 1179796106, "v": 53511571, "oneway": false, "points": [[-1500.12, -1489.44], [-1492.07, -1489.66], [-1489.92, -1489.72], [-1482.62, -1489.91], [-1481.03, -1489.95], [-1478.2, -1490.03], [-1467.47, -1490.34], [-1441.8, -1491.08], [-1429.2, -1491.24], [-1420.96, -1491.31]], "length": 79.18}, {"u": 1179956582, "v": 2859302272, "oneway": false, "points": [[-1358.87, -782.79], [-1359.44, -795.51], [-1360.11, -810.35], [-1360.25, -813.41], [-1361.65, -844.37], [-1362.59, -863.06], [-1363.02, -874.69]], "length": 91.99}, {"u": 1179956625, "v": 1180102573, "oneway": true, "points": [[-1094.61, -933.35], [-1069.82, -952.36], [-1065.81, -957.48], [-1064.46, -962.98], [-1064.32, -966.23], [-1066.94, -975.77]], "length": 56.54}, {"u": 1179956625, "v": 53421750, "oneway": true, "points": [[-1094.61, -933.35], [-1053.1, -951.26], [-1044.11, -956.04]], "length": 55.38}, {"u": 1179967125, "v": 13056348947, "oneway": false, "points": [[-824.45, -1089.71], [-842.44, -1105.14], [-843.56, -1106.1], [-850.14, -1112.13]], "length": 34.1}, {"u": 1179967125, "v": 7189398145, "oneway": false, "points": [[-824.45, -1089.71], [-793.68, -1062.17], [-777.24, -1042.62], [-774.55, -1040.58], [-771.57, -1039.52], [-768.62, -1039.61], [-765.69, -1040.7], [-762.16, -1042.98], [-735.16, -1083.59], [-728.08, -1094.31], [-710.33, -1115.72], [-709.07, -1117.62], [-707.4, -1120.16], [-707.08, -1124.53], [-709.01, -1130.58], [-714.47, -1138.26], [-721.58, -1144.43], [-748.6, -1166.49]], "length": 242.85}, {"u": 1180005819, "v": 4214349299, "oneway": false, "points": [[-2559.46, -820.8], [-2559.14, -811.15], [-2557.52, -761.87], [-2556.67, -734.82], [-2556.41, -728.02]], "length": 92.83}, {"u": 1180005819, "v": 53462362, "oneway": false, "points": [[-2559.46, -820.8], [-2560.85, -829.37], [-2561.01, -848.51], [-2561.46, -858.14], [-2561.81, -886.76], [-2561.85, -890.6], [-2555.98, -897.73]], "length": 79.17}, {"u": 1180005819, "v": 53684762, "oneway": false, "points": [[-2559.46, -820.8], [-2568.14, -820.41], [-2591.27, -819.4], [-2641.99, -817.18]], "length": 82.61}, {"u": 1180005819, "v": 1426438850, "oneway": true, "points": [[-2559.46, -820.8], [-2548.83, -823.79], [-2526.62, -824.18]], "length": 33.26}, {"u": 1180005830, "v": 53481441, "oneway": false, "points": [[-2859.22, -206.48], [-2857.9, -215.42], [-2857.62, -217.33], [-2856.4, -225.59], [-2847.68, -282.88], [-2846.34, -291.68]], "length": 86.17}, {"u": 1180005830, "v": 3607816606, "oneway": false, "points": [[-2859.22, -206.48], [-2856.5, -206.06], [-2843.04, -203.98]], "length": 16.37}, {"u": 1180005830, "v": 53461816, "oneway": false, "points": [[-2859.22, -206.48], [-2867.63, -207.78], [-2876.07, -209.08], [-2940.8, -219.11]], "length": 82.55}, {"u": 1180005831, "v": 53472270, "oneway": true, "points": [[-2019.39, -634.59], [-2019.56, -642.5], [-2020.09, -667.94], [-2020.17, -671.47], [-2020.54, -688.7], [-2020.65, -694.11], [-2021.47, -733.03]], "length": 98.46}, {"u": 1180005831, "v": 53510000, "oneway": false, "points": [[-2019.39, -634.59], [-2028.9, -634.12], [-2054.75, -632.83], [-2057.42, -632.7], [-2077.16, -631.72], [-2078.51, -631.65], [-2093.16, -630.92], [-2113.11, -629.93], [-2141.11, -628.54], [-2144.36, -628.38], [-2154.48, -627.78]], "length": 135.26}, {"u": 1180005831, "v": 4139816155, "oneway": false, "points": [[-2019.39, -634.59], [-2010.64, -635.02], [-1977.5, -636.67], [-1966.62, -637.21], [-1922.06, -639.42], [-1896.33, -640.7], [-1884.79, -641.28]], "length": 134.76}, {"u": 1180005834, "v": 2985254834, "oneway": false, "points": [[-2015.96, -475.56], [-2015.69, -466.08], [-2014.69, -445.33]], "length": 30.26}, {"u": 1180005834, "v": 53607068, "oneway": false, "points": [[-2015.96, -475.56], [-2006.71, -476.06], [-1890.27, -481.78], [-1881.37, -482.21]], "length": 134.75}, {"u": 1180005834, "v": 1180005838, "oneway": false, "points": [[-2015.96, -475.56], [-2025.09, -475.14], [-2054.36, -473.7], [-2070.23, -472.91], [-2074.9, -472.69], [-2140.88, -469.36], [-2150.2, -468.38]], "length": 134.45}, {"u": 1180005834, "v": 1180005831, "oneway": true, "points": [[-2015.96, -475.56], [-2016.14, -483.94], [-2017.08, -527.48], [-2017.15, -530.74], [-2017.21, -533.75], [-2017.73, -557.78], [-2018.15, -577.13], [-2018.65, -600.17], [-2019.19, -625.41], [-2019.39, -634.59]], "length": 159.07}, {"u": 1180005838, "v": 2859304393, "oneway": false, "points": [[-2150.2, -468.38], [-2150.25, -476.98], [-2150.71, -548.45]], "length": 80.07}, {"u": 1180005838, "v": 1345420597, "oneway": false, "points": [[-2150.2, -468.38], [-2150.15, -459.06], [-2149.98, -434.39], [-2149.8, -404.37]], "length": 64.01}, {"u": 1180005838, "v": 1180005834, "oneway": false, "points": [[-2150.2, -468.38], [-2140.88, -469.36], [-2074.9, -472.69], [-2070.23, -472.91], [-2054.36, -473.7], [-2025.09, -475.14], [-2015.96, -475.56]], "length": 134.45}, {"u": 1180079551, "v": 362597488, "oneway": true, "points": [[-1365.11, -1245.53], [-1372.31, -1261.97], [-1374.95, -1267.29], [-1376.97, -1271.88], [-1378.18, -1279.75]], "length": 36.86}, {"u": 1180079551, "v": 1179796012, "oneway": true, "points": [[-1365.11, -1245.53], [-1388.48, -1266.66], [-1396.51, -1273.93], [-1460.14, -1331.49]], "length": 128.13}, {"u": 1180102573, "v": 11603196290, "oneway": true, "points": [[-1066.94, -975.77], [-1107.39, -1012.37], [-1132.75, -1035.31], [-1140.85, -1042.64], [-1237.01, -1129.64]], "length": 229.35}, {"u": 1180120602, "v": 13151160466, "oneway": true, "points": [[-988.98, -926.75], [-952.99, -894.38], [-943.5, -886.31], [-934.54, -877.72], [-919.9, -864.16], [-918.96, -854.01]], "length": 103.42}, {"u": 1180120617, "v": 1180120602, "oneway": true, "points": [[-984.32, -967.26], [-994.93, -953.71], [-995.44, -945.24], [-994.3, -941.23], [-992.76, -935.36], [-988.98, -926.75]], "length": 45.34}, {"u": 1180120617, "v": 387186790, "oneway": true, "points": [[-984.32, -967.26], [-996.52, -961.01], [-1008.4, -955.78], [-1016.98, -952.33]], "length": 35.93}, {"u": 1180120831, "v": 6275800735, "oneway": true, "points": [[-979.7, -899.55], [-991.42, -903.7], [-1004.37, -912.42], [-1020.28, -925.84], [-1027.45, -928.98], [-1034.46, -930.76], [-1040.12, -930.69], [-1057.27, -928.74], [-1113.8, -910.52]], "length": 146.23}, {"u": 1180120831, "v": 452817475, "oneway": true, "points": [[-979.7, -899.55], [-1023.49, -940.14], [-1031.9, -946.3]], "length": 70.14}, {"u": 1180187456, "v": 1180187595, "oneway": false, "points": [[-1173.56, -2391.39], [-1189.85, -2396.55]], "length": 17.08}, {"u": 1180187456, "v": 53416788, "oneway": false, "points": [[-1173.56, -2391.39], [-1166.95, -2391.1], [-1157.99, -2390.71], [-1153.55, -2390.52], [-1140.96, -2389.96], [-1130.28, -2390.39], [-1125.22, -2390.83], [-1092.0, -2393.64], [-1080.66, -2394.6]], "length": 93.12}, {"u": 1180187456, "v": 1180187658, "oneway": true, "points": [[-1173.56, -2391.39], [-1206.12, -2335.93], [-1210.56, -2328.37]], "length": 73.08}, {"u": 1180187478, "v": 1180187532, "oneway": false, "points": [[-992.58, -2933.4], [-1006.59, -2931.61]], "length": 14.12}, {"u": 1180187478, "v": 1180187620, "oneway": false, "points": [[-992.58, -2933.4], [-984.3, -2934.54], [-969.98, -2936.52], [-943.07, -2940.23], [-895.38, -2945.93], [-892.38, -2946.21], [-885.03, -2946.9]], "length": 108.41}, {"u": 1180187478, "v": 1180187596, "oneway": true, "points": [[-992.58, -2933.4], [-992.9, -2922.96], [-993.61, -2900.34], [-994.85, -2880.06], [-995.85, -2863.68], [-1000.66, -2822.85], [-1001.13, -2818.87], [-1002.75, -2805.41], [-1004.86, -2787.83], [-1012.79, -2748.46], [-1013.81, -2744.5], [-1019.51, -2722.35], [-1024.33, -2703.64], [-1039.84, -2657.41], [-1045.03, -2643.81]], "length": 295.95}, {"u": 1180187483, "v": 1180187568, "oneway": false, "points": [[-1308.93, -2152.48], [-1324.04, -2160.67]], "length": 17.19}, {"u": 1180187483, "v": 1180187704, "oneway": true, "points": [[-1308.93, -2152.48], [-1330.81, -2113.77], [-1337.62, -2101.73], [-1349.08, -2081.32], [-1355.23, -2070.82]], "length": 93.88}, {"u": 1180187483, "v": 53416784, "oneway": false, "points": [[-1308.93, -2152.48], [-1300.38, -2152.79], [-1297.37, -2152.9], [-1291.48, -2153.11], [-1285.54, -2153.33], [-1282.32, -2153.44], [-1252.53, -2154.52], [-1243.01, -2154.86], [-1080.93, -2164.45], [-1072.14, -2164.97]], "length": 237.13}, {"u": 1180187485, "v": 53639872, "oneway": true, "points": [[-1381.44, -2100.52], [-1381.56, -2109.13], [-1377.96, -2116.33]], "length": 16.66}, {"u": 1180187507, "v": 1180187588, "oneway": false, "points": [[-1239.87, -2274.41], [-1256.41, -2282.53]], "length": 18.43}, {"u": 1180187507, "v": 1180187483, "oneway": true, "points": [[-1239.87, -2274.41], [-1245.55, -2264.38], [-1253.48, -2250.38], [-1294.66, -2177.67], [-1300.8, -2166.83], [-1308.93, -2152.48]], "length": 140.13}, {"u": 1180187507, "v": 53416786, "oneway": false, "points": [[-1239.87, -2274.41], [-1232.8, -2273.78], [-1230.72, -2273.6], [-1222.81, -2272.89], [-1184.08, -2274.47], [-1077.53, -2279.52]], "length": 162.56}, {"u": 1180187532, "v": 1180187478, "oneway": false, "points": [[-1006.59, -2931.61], [-992.58, -2933.4]], "length": 14.12}, {"u": 1180187532, "v": 1180187697, "oneway": true, "points": [[-1006.59, -2931.61], [-1007.23, -2943.68], [-1007.28, -2949.58], [-1007.31, -2970.24], [-1008.02, -2982.27]], "length": 50.7}, {"u": 1180187532, "v": 53473027, "oneway": false, "points": [[-1006.59, -2931.61], [-1015.45, -2930.26], [-1102.13, -2914.35], [-1156.83, -2904.12], [-1187.21, -2898.25], [-1245.01, -2887.1], [-1261.71, -2883.86], [-1304.63, -2875.58], [-1313.53, -2873.86]], "length": 312.33}, {"u": 1180187547, "v": 2638675236, "oneway": false, "points": [[-1106.44, -2510.82], [-1121.64, -2515.79]], "length": 15.99}, {"u": 1180187547, "v": 53434863, "oneway": false, "points": [[-1106.44, -2510.82], [-1097.73, -2510.82], [-1095.61, -2510.81], [-1089.61, -2510.8], [-1079.34, -2510.78], [-1062.01, -2511.64], [-987.84, -2515.26], [-959.77, -2517.07], [-845.57, -2522.69], [-836.54, -2523.14]], "length": 270.22}, {"u": 1180187547, "v": 1180187456, "oneway": true, "points": [[-1106.44, -2510.82], [-1114.4, -2497.8], [-1133.55, -2464.36], [-1142.24, -2448.84], [-1166.73, -2403.93], [-1173.56, -2391.39]], "length": 137.02}, {"u": 1180187568, "v": 1180187483, "oneway": false, "points": [[-1324.04, -2160.67], [-1308.93, -2152.48]], "length": 17.19}, {"u": 1180187568, "v": 1180187588, "oneway": true, "points": [[-1324.04, -2160.67], [-1315.6, -2176.48], [-1288.96, -2226.4], [-1287.41, -2229.06], [-1262.88, -2271.39], [-1256.41, -2282.53]], "length": 139.39}, {"u": 1180187578, "v": 1180187596, "oneway": false, "points": [[-1060.27, -2648.01], [-1045.03, -2643.81]], "length": 15.81}, {"u": 1180187578, "v": 1180187532, "oneway": true, "points": [[-1060.27, -2648.01], [-1054.38, -2662.65], [-1041.05, -2706.18], [-1038.76, -2713.62], [-1031.08, -2743.56], [-1023.18, -2778.31], [-1016.36, -2819.83], [-1013.67, -2839.33], [-1008.51, -2878.69], [-1006.13, -2921.64], [-1006.59, -2931.61]], "length": 290.09}, {"u": 1180187578, "v": 9146885459, "oneway": false, "points": [[-1060.27, -2648.01], [-1067.55, -2650.8], [-1082.19, -2651.57], [-1110.74, -2649.88], [-1149.73, -2646.6], [-1180.77, -2643.18], [-1196.31, -2639.08], [-1216.23, -2626.12], [-1228.9, -2620.53], [-1244.27, -2615.95], [-1289.21, -2613.94], [-1297.2, -2613.06]], "length": 244.16}, {"u": 1180187579, "v": 1180187485, "oneway": true, "points": [[-1382.36, -2056.19], [-1381.26, -2067.22], [-1381.46, -2072.27], [-1382.25, -2085.09], [-1382.31, -2090.98], [-1381.44, -2100.52]], "length": 44.45}, {"u": 1180187579, "v": 1179796074, "oneway": true, "points": [[-1382.36, -2056.19], [-1375.49, -2063.58], [-1365.88, -2080.76]], "length": 29.78}, {"u": 1180187588, "v": 1180187507, "oneway": false, "points": [[-1256.41, -2282.53], [-1239.87, -2274.41]], "length": 18.43}, {"u": 1180187588, "v": 1180187677, "oneway": true, "points": [[-1256.41, -2282.53], [-1238.75, -2313.0], [-1227.63, -2332.07], [-1225.01, -2336.56]], "length": 62.49}, {"u": 1180187595, "v": 1180187456, "oneway": false, "points": [[-1189.85, -2396.55], [-1173.56, -2391.39]], "length": 17.08}, {"u": 1180187595, "v": 2638675236, "oneway": true, "points": [[-1189.85, -2396.55], [-1181.94, -2411.7], [-1148.99, -2468.93], [-1141.58, -2481.23], [-1129.78, -2500.84], [-1121.64, -2515.79]], "length": 137.4}, {"u": 1180187596, "v": 1180187578, "oneway": false, "points": [[-1045.03, -2643.81], [-1060.27, -2648.01]], "length": 15.81}, {"u": 1180187596, "v": 53511723, "oneway": false, "points": [[-1045.03, -2643.81], [-1033.75, -2637.83]], "length": 12.76}, {"u": 1180187596, "v": 1180187547, "oneway": true, "points": [[-1045.03, -2643.81], [-1056.23, -2613.84], [-1063.76, -2596.26], [-1068.12, -2586.1], [-1069.18, -2583.61], [-1074.78, -2571.61], [-1092.46, -2533.72], [-1098.18, -2524.35], [-1106.44, -2510.82]], "length": 146.76}, {"u": 1180187620, "v": 1180187478, "oneway": false, "points": [[-885.03, -2946.9], [-892.38, -2946.21], [-895.38, -2945.93], [-943.07, -2940.23], [-969.98, -2936.52], [-984.3, -2934.54], [-992.58, -2933.4]], "length": 108.41}, {"u": 1180187620, "v": 53511694, "oneway": false, "points": [[-885.03, -2946.9], [-886.04, -2956.02], [-886.26, -2957.59], [-888.69, -2976.87], [-892.13, -3003.71], [-895.14, -3027.16], [-896.57, -3038.16], [-899.54, -3060.96], [-902.49, -3083.55]], "length": 137.76}, {"u": 1180187620, "v": 53463532, "oneway": false, "points": [[-885.03, -2946.9], [-884.32, -2936.83], [-884.01, -2926.3], [-884.47, -2914.98], [-885.31, -2903.26], [-886.95, -2891.91], [-888.3, -2884.45], [-892.49, -2870.32]], "length": 77.5}, {"u": 1180187658, "v": 1180187677, "oneway": false, "points": [[-1210.56, -2328.37], [-1225.01, -2336.56]], "length": 16.61}, {"u": 1180187658, "v": 1180187507, "oneway": true, "points": [[-1210.56, -2328.37], [-1213.29, -2323.36], [-1239.87, -2274.41]], "length": 61.4}, {"u": 1180187677, "v": 1180187658, "oneway": false, "points": [[-1225.01, -2336.56], [-1210.56, -2328.37]], "length": 16.61}, {"u": 1180187677, "v": 2638675253, "oneway": false, "points": [[-1225.01, -2336.56], [-1230.69, -2339.77], [-1234.07, -2341.69], [-1244.22, -2347.42], [-1272.88, -2364.25]], "length": 55.31}, {"u": 1180187677, "v": 1180187595, "oneway": true, "points": [[-1225.01, -2336.56], [-1220.81, -2343.74], [-1203.58, -2373.14], [-1189.85, -2396.55]], "length": 69.53}, {"u": 1180187697, "v": 53481638, "oneway": false, "points": [[-1008.02, -2982.27], [-993.08, -2982.95]], "length": 14.95}, {"u": 1180187697, "v": 53481665, "oneway": false, "points": [[-1008.02, -2982.27], [-1015.92, -2981.49], [-1019.55, -2981.06], [-1098.03, -2965.93], [-1137.98, -2958.64], [-1276.43, -2933.38], [-1280.3, -2932.74], [-1288.82, -2931.33], [-1304.75, -2928.69], [-1335.27, -2922.38], [-1387.79, -2912.38], [-1427.92, -2904.16], [-1444.02, -2901.2], [-1451.78, -2899.58], [-1460.04, -2898.62], [-1470.97, -2897.81], [-1488.7, -2899.11], [-1503.72, -2896.94], [-1512.93, -2894.45], [-1515.82, -2893.6], [-1529.68, -2889.9]], "length": 530.58}, {"u": 1180187704, "v": 1179796074, "oneway": false, "points": [[-1355.23, -2070.82], [-1365.88, -2080.76]], "length": 14.57}, {"u": 1180187704, "v": 53444545, "oneway": false, "points": [[-1355.23, -2070.82], [-1348.5, -2067.14], [-1327.23, -2055.17], [-1321.42, -2051.96], [-1286.61, -2031.72], [-1280.24, -2028.2]], "length": 86.26}, {"u": 1180187704, "v": 4248707700, "oneway": true, "points": [[-1355.23, -2070.82], [-1368.1, -2046.76], [-1372.55, -2038.63], [-1388.36, -2008.12], [-1389.99, -2004.99], [-1400.96, -1983.8], [-1453.43, -1891.98]], "length": 204.05}, {"u": 1180876933, "v": 1160692039, "oneway": true, "points": [[-266.2, 50.49], [-276.73, 40.4]], "length": 14.58}, {"u": 1180876933, "v": 2713279290, "oneway": true, "points": [[-266.2, 50.49], [-272.69, 57.5], [-276.49, 60.18], [-281.02, 62.15], [-287.01, 62.83]], "length": 25.17}, {"u": 1181085486, "v": 53467413, "oneway": false, "points": [[-855.25, 59.2], [-860.78, 65.35], [-862.45, 67.2], [-915.37, 125.96]], "length": 89.84}, {"u": 1181085486, "v": 53441256, "oneway": false, "points": [[-855.25, 59.2], [-818.87, 91.99], [-794.39, 114.06], [-787.67, 120.12]], "length": 90.98}, {"u": 1181085486, "v": 53441258, "oneway": false, "points": [[-855.25, 59.2], [-868.83, 46.95], [-881.76, 35.29], [-885.25, 32.15]], "length": 40.4}, {"u": 1181184017, "v": 53441258, "oneway": false, "points": [[-968.47, 114.63], [-961.71, 112.71], [-956.33, 109.53], [-952.78, 107.14], [-950.12, 104.89], [-893.14, 41.0], [-892.34, 39.92], [-885.25, 32.15]], "length": 118.51}, {"u": 1181324562, "v": 53467413, "oneway": false, "points": [[-949.32, 163.66], [-941.31, 154.75], [-929.7, 141.86], [-915.37, 125.96]], "length": 50.74}, {"u": 1181378741, "v": 6610389586, "oneway": true, "points": [[-846.96, -203.77], [-856.84, -212.91], [-867.84, -222.57], [-877.82, -231.52], [-898.13, -250.33], [-902.1, -254.14], [-905.78, -257.27], [-909.19, -259.85], [-912.82, -262.42], [-915.76, -263.99], [-919.91, -266.06], [-921.1, -266.76]], "length": 97.6}, {"u": 1182091234, "v": 450714559, "oneway": false, "points": [[-1063.15, -124.92], [-1064.77, -160.52], [-1065.18, -169.97], [-1065.63, -181.51], [-1066.03, -190.51], [-1066.33, -197.25], [-1066.75, -206.84], [-1067.31, -219.58], [-1068.71, -251.38], [-1069.25, -263.74]], "length": 138.95}, {"u": 1182471954, "v": 1182471991, "oneway": true, "points": [[-317.76, -757.68], [-311.12, -753.53], [-306.17, -750.96], [-299.41, -747.93], [-292.89, -746.31], [-285.67, -745.37], [-280.67, -745.61], [-275.05, -746.54], [-267.43, -748.51]], "length": 53.39}, {"u": 1182471954, "v": 53482965, "oneway": true, "points": [[-317.76, -757.68], [-314.1, -752.4], [-294.96, -735.46], [-287.39, -728.76]], "length": 42.09}, {"u": 1182471991, "v": 13334818837, "oneway": false, "points": [[-267.43, -748.51], [-258.99, -757.26]], "length": 12.16}, {"u": 1182471991, "v": 53482965, "oneway": false, "points": [[-267.43, -748.51], [-283.2, -732.76], [-287.39, -728.76]], "length": 28.08}, {"u": 1185580621, "v": 387187387, "oneway": false, "points": [[-512.34, -1084.63], [-502.83, -1094.65]], "length": 13.81}, {"u": 1185580621, "v": 53663953, "oneway": false, "points": [[-512.34, -1084.63], [-519.71, -1076.53], [-521.76, -1073.99], [-549.55, -1043.55], [-577.98, -1013.02], [-579.67, -1011.23], [-585.53, -1003.73]], "length": 109.13}, {"u": 1185580621, "v": 387187392, "oneway": true, "points": [[-512.34, -1084.63], [-518.68, -1095.45], [-568.62, -1186.6], [-571.37, -1191.75], [-583.6, -1214.8], [-590.36, -1225.8], [-594.53, -1231.7], [-599.1, -1236.36], [-604.29, -1241.66], [-613.69, -1249.76], [-619.57, -1253.81], [-632.67, -1260.65], [-645.12, -1264.57], [-675.3, -1266.63], [-685.83, -1265.37], [-695.73, -1262.94], [-706.97, -1258.92], [-715.83, -1253.99], [-724.32, -1247.33]], "length": 313.78}, {"u": 1186826669, "v": 1186826687, "oneway": false, "points": [[-124.45, -326.1], [-124.88, -334.03], [-125.13, -338.49], [-127.68, -385.02], [-127.96, -390.25], [-130.11, -429.41], [-130.86, -443.18]], "length": 117.25}, {"u": 1186826669, "v": 53444038, "oneway": false, "points": [[-124.45, -326.1], [-123.4, -306.92], [-122.59, -292.11]], "length": 34.04}, {"u": 1186826669, "v": 53493114, "oneway": true, "points": [[-124.45, -326.1], [-132.45, -325.65], [-135.81, -325.53], [-141.04, -325.2], [-145.11, -325.76], [-148.19, -327.82], [-160.58, -338.76], [-191.91, -367.47], [-194.2, -370.8], [-198.74, -378.95]], "length": 96.83}, {"u": 1186826687, "v": 1186826669, "oneway": false, "points": [[-130.86, -443.18], [-130.11, -429.41], [-127.96, -390.25], [-127.68, -385.02], [-125.13, -338.49], [-124.88, -334.03], [-124.45, -326.1]], "length": 117.25}, {"u": 1186826687, "v": 53467506, "oneway": true, "points": [[-130.86, -443.18], [-137.09, -453.04], [-142.65, -461.88], [-197.12, -511.71], [-199.51, -513.92], [-206.31, -520.26]], "length": 108.49}, {"u": 1186826687, "v": 53540659, "oneway": true, "points": [[-130.86, -443.18], [-126.81, -443.45], [-122.71, -442.49], [-119.56, -441.17], [-90.92, -417.2], [-83.83, -410.7], [-62.94, -391.53], [-55.12, -384.51]], "length": 97.51}, {"u": 1188388070, "v": 362566885, "oneway": true, "points": [[-205.15, -856.22], [-212.46, -868.43]], "length": 14.23}, {"u": 1188388071, "v": 3886439879, "oneway": true, "points": [[-143.62, -799.81], [-125.72, -777.29], [-92.19, -737.29], [-63.86, -705.8], [-33.78, -677.96], [-5.16, -649.44], [4.21, -639.84], [23.75, -618.85], [52.38, -588.01], [75.19, -563.86], [172.28, -468.45], [285.72, -352.93], [373.42, -274.44], [402.58, -246.12], [428.87, -218.91], [538.59, -89.2], [574.0, -47.05]], "length": 1041.26}, {"u": 1188388110, "v": 3358764343, "oneway": true, "points": [[-185.35, -827.83], [-187.02, -822.89], [-189.43, -820.08], [-195.29, -814.38], [-207.93, -803.97]], "length": 33.47}, {"u": 1188388110, "v": 1188388071, "oneway": true, "points": [[-185.35, -827.83], [-181.48, -827.86], [-178.51, -827.56], [-175.83, -826.9], [-172.09, -825.9], [-158.82, -813.74], [-143.62, -799.81]], "length": 52.1}, {"u": 1188388110, "v": 1188388070, "oneway": true, "points": [[-185.35, -827.83], [-190.9, -834.29], [-205.15, -856.22]], "length": 34.67}, {"u": 1188388114, "v": 3358764343, "oneway": true, "points": [[-162.92, -798.83], [-182.73, -807.6], [-185.24, -808.35], [-188.88, -808.66], [-190.41, -808.43], [-194.71, -807.84], [-199.37, -806.56], [-207.93, -803.97]], "length": 47.6}, {"u": 1188388114, "v": 1188388110, "oneway": true, "points": [[-162.92, -798.83], [-177.95, -818.46], [-181.16, -822.94], [-185.35, -827.83]], "length": 36.68}, {"u": 1188388115, "v": 1188388110, "oneway": true, "points": [[-200.64, -881.64], [-188.49, -853.78], [-184.98, -846.86], [-182.97, -841.68], [-182.63, -836.72], [-183.53, -833.01], [-185.35, -827.83]], "length": 57.99}, {"u": 1188388115, "v": 1188388071, "oneway": true, "points": [[-200.64, -881.64], [-181.12, -857.73], [-169.37, -840.87], [-153.8, -817.54], [-143.62, -799.81]], "length": 99.91}, {"u": 1188394181, "v": 1188388110, "oneway": true, "points": [[-219.29, -807.07], [-201.47, -822.62], [-194.73, -827.45], [-191.06, -828.54], [-185.35, -827.83]], "length": 41.53}, {"u": 1188394181, "v": 1188388070, "oneway": true, "points": [[-219.29, -807.07], [-214.16, -816.35], [-207.29, -830.07], [-204.94, -834.26], [-204.06, -838.29], [-203.32, -844.68], [-203.97, -849.59], [-205.15, -856.22]], "length": 53.0}, {"u": 1188394186, "v": 13334818837, "oneway": false, "points": [[-226.27, -793.19], [-258.99, -757.26]], "length": 48.59}, {"u": 1188394186, "v": 1188394181, "oneway": true, "points": [[-226.27, -793.19], [-224.51, -800.95], [-221.25, -804.85], [-219.29, -807.07]], "length": 16.0}, {"u": 1191535148, "v": 387187392, "oneway": false, "points": [[-733.42, -1258.28], [-724.32, -1247.33]], "length": 14.24}, {"u": 1191535148, "v": 53629591, "oneway": false, "points": [[-733.42, -1258.28], [-741.85, -1267.58], [-751.77, -1276.81], [-757.66, -1282.08], [-782.0, -1303.43]], "length": 66.38}, {"u": 1191535148, "v": 387187387, "oneway": true, "points": [[-733.42, -1258.28], [-720.46, -1268.64], [-708.86, -1273.45], [-692.75, -1278.2], [-679.2, -1280.02], [-671.02, -1280.91], [-662.38, -1280.65], [-651.52, -1279.76], [-641.42, -1277.71], [-633.05, -1275.45], [-623.88, -1271.79], [-614.56, -1267.04], [-608.66, -1263.59], [-606.31, -1262.22], [-595.4, -1254.44], [-585.73, -1244.56], [-577.73, -1233.82], [-551.92, -1187.77], [-540.58, -1166.05], [-529.07, -1140.91], [-510.58, -1107.07], [-502.83, -1094.65]], "length": 335.02}, {"u": 1192150160, "v": 1192150246, "oneway": true, "points": [[574.8, 18.31], [566.68, 0.2]], "length": 19.84}, {"u": 1192150160, "v": 53616146, "oneway": false, "points": [[574.8, 18.31], [571.6, 27.35], [569.98, 30.01], [554.46, 50.78], [532.68, 74.37], [495.26, 116.79]], "length": 127.31}, {"u": 1192150160, "v": 53515093, "oneway": true, "points": [[574.8, 18.31], [561.88, 15.27], [549.54, 13.25], [543.92, 11.69], [537.36, 9.53], [529.71, 6.36], [519.79, 1.41], [514.26, -1.92], [509.02, -5.64], [492.51, -18.37], [485.36, -24.07]], "length": 100.75}, {"u": 1192150246, "v": 1192150256, "oneway": true, "points": [[566.68, 0.2], [578.39, 3.76], [585.86, 5.9]], "length": 20.01}, {"u": 1192150246, "v": 1188388114, "oneway": true, "points": [[566.68, 0.2], [562.13, -10.18], [562.72, -12.37], [563.81, -20.14], [562.88, -26.34], [550.9, -47.13], [486.29, -131.29], [426.37, -197.37], [362.86, -261.02], [276.29, -343.53], [65.8, -554.73], [42.8, -577.74], [2.1, -617.42], [-43.47, -665.98], [-100.94, -726.45], [-151.35, -785.32], [-162.92, -798.83]], "length": 1089.38}, {"u": 1192150256, "v": 13018504178, "oneway": true, "points": [[585.86, 5.9], [593.18, 7.46], [605.72, 11.07]], "length": 20.54}, {"u": 1192150256, "v": 1192150160, "oneway": true, "points": [[585.86, 5.9], [582.54, 13.05], [574.8, 18.31]], "length": 17.24}, {"u": 1192150405, "v": 1192150160, "oneway": true, "points": [[772.75, 111.09], [765.49, 104.3], [750.36, 90.28], [728.23, 70.05], [724.27, 66.86], [719.44, 63.28], [714.27, 60.05], [708.87, 56.84], [703.13, 54.04], [695.9, 50.99], [688.49, 48.42], [642.18, 35.81], [635.92, 34.28], [591.75, 22.68], [589.46, 22.05], [574.8, 18.31]], "length": 223.72}, {"u": 1192150405, "v": 1192150413, "oneway": false, "points": [[772.75, 111.09], [774.92, 109.35], [781.44, 102.31]], "length": 12.37}, {"u": 1192150405, "v": 1142904218, "oneway": false, "points": [[772.75, 111.09], [766.14, 116.36], [744.52, 139.62], [715.89, 170.94], [714.62, 172.44], [708.79, 181.35], [702.44, 188.89], [692.48, 200.81], [685.84, 208.54], [665.09, 231.96], [644.5, 255.19]], "length": 193.18}, {"u": 1192150406, "v": 1192150405, "oneway": true, "points": [[815.21, 134.25], [807.98, 132.56], [800.65, 129.08], [780.31, 116.15], [774.19, 112.43], [772.75, 111.09]], "length": 48.77}, {"u": 1192150406, "v": 53432331, "oneway": false, "points": [[815.21, 134.25], [816.82, 135.7], [824.47, 142.55], [829.28, 146.87], [855.55, 170.45], [879.38, 191.84], [910.64, 219.88], [922.09, 230.44], [929.4, 237.03]], "length": 153.63}, {"u": 1192150409, "v": 1192150413, "oneway": false, "points": [[829.29, 49.19], [813.35, 66.37], [799.5, 81.76], [795.72, 85.96], [788.11, 94.57], [786.59, 96.31], [781.44, 102.31]], "length": 71.51}, {"u": 1192150413, "v": 1192150406, "oneway": true, "points": [[781.44, 102.31], [789.09, 107.48], [806.61, 122.04], [812.48, 127.46], [815.21, 134.25]], "length": 47.32}, {"u": 1192150413, "v": 1192150409, "oneway": false, "points": [[781.44, 102.31], [786.59, 96.31], [788.11, 94.57], [795.72, 85.96], [799.5, 81.76], [813.35, 66.37], [829.29, 49.19]], "length": 71.51}, {"u": 1192150413, "v": 1192150405, "oneway": false, "points": [[781.44, 102.31], [774.92, 109.35], [772.75, 111.09]], "length": 12.37}, {"u": 1192211510, "v": 316334514, "oneway": true, "points": [[387.49, 237.23], [382.58, 246.86], [375.52, 259.14], [369.6, 269.0], [367.24, 274.85], [366.24, 277.86], [364.63, 283.38], [364.27, 289.16], [364.94, 294.38], [366.66, 300.05]], "length": 68.68}, {"u": 1192211510, "v": 53407941, "oneway": false, "points": [[387.49, 237.23], [394.4, 228.84], [395.51, 227.65], [401.0, 221.42], [422.27, 197.95], [427.3, 191.57]], "length": 60.59}, {"u": 1192211510, "v": 316349604, "oneway": false, "points": [[387.49, 237.23], [352.58, 272.56], [345.58, 280.12]], "length": 59.97}, {"u": 1192248462, "v": 2948595076, "oneway": false, "points": [[1255.67, 672.3], [1270.85, 685.13], [1300.95, 710.57], [1303.3, 712.55], [1309.77, 717.99]], "length": 70.82}, {"u": 1192282519, "v": 53490496, "oneway": true, "points": [[2765.85, 1850.8], [2760.83, 1849.67]], "length": 5.14}, {"u": 1192282519, "v": 53430857, "oneway": false, "points": [[2765.85, 1850.8], [2774.04, 1852.96], [2811.73, 1863.09], [2838.13, 1870.18], [2845.67, 1872.42]], "length": 82.7}, {"u": 1246389199, "v": 53590668, "oneway": false, "points": [[-691.34, -3093.89], [-795.51, -3088.79]], "length": 104.3}, {"u": 1246389199, "v": 53590668, "oneway": false, "points": [[-691.34, -3093.89], [-674.69, -2971.21], [-675.39, -2962.7], [-678.75, -2958.29], [-685.57, -2956.58], [-770.86, -2970.26], [-777.25, -2973.43], [-780.86, -2979.38], [-794.38, -3079.36], [-795.51, -3088.79]], "length": 355.77}, {"u": 1345392073, "v": 3227608153, "oneway": false, "points": [[-99.74, 194.26], [-99.3, 205.32], [-98.7, 218.29], [-97.07, 254.07], [-95.93, 273.13], [-95.85, 274.35], [-95.78, 275.72], [-93.32, 321.85], [-92.31, 344.77]], "length": 150.7}, {"u": 1345392073, "v": 53538736, "oneway": false, "points": [[-99.74, 194.26], [-100.46, 178.65], [-101.52, 155.65], [-104.85, 83.42], [-105.25, 74.82]], "length": 119.56}, {"u": 1345392073, "v": 53655118, "oneway": true, "points": [[-99.74, 194.26], [-105.5, 193.98], [-109.55, 192.49], [-113.24, 190.07], [-121.63, 182.41], [-127.96, 176.62], [-152.77, 153.94], [-168.04, 139.99], [-174.57, 134.02]], "length": 97.57}, {"u": 1345420597, "v": 53523650, "oneway": true, "points": [[-2149.8, -404.37], [-2146.71, -397.68], [-2146.11, -395.52], [-2145.23, -382.42], [-2144.14, -370.14], [-2143.0, -355.55], [-2142.23, -345.62]], "length": 59.66}, {"u": 1345420597, "v": 1180005838, "oneway": false, "points": [[-2149.8, -404.37], [-2149.98, -434.39], [-2150.15, -459.06], [-2150.2, -468.38]], "length": 64.01}, {"u": 1345424861, "v": 53596818, "oneway": true, "points": [[-2141.72, -341.98], [-2141.19, -331.78], [-2140.45, -310.13], [-2139.9, -299.66], [-2139.36, -291.54], [-2139.32, -287.7], [-2139.61, -285.56], [-2140.27, -283.39], [-2141.01, -281.99], [-2142.05, -280.66], [-2142.6, -279.59], [-2142.99, -278.4]], "length": 64.49}, {"u": 1345424861, "v": 1345424868, "oneway": true, "points": [[-2141.72, -341.98], [-2136.52, -331.95], [-2135.51, -329.84], [-2134.48, -327.13], [-2133.0, -322.25], [-2132.32, -320.57], [-2130.57, -317.24], [-2126.39, -311.28], [-2122.55, -308.19], [-2118.84, -305.61], [-2113.99, -302.63], [-2106.2, -301.13], [-2097.25, -301.1]], "length": 66.52}, {"u": 1345424866, "v": 53607075, "oneway": true, "points": [[-2010.16, -339.77], [-2001.53, -342.45], [-1990.59, -345.09], [-1978.72, -347.8], [-1961.92, -350.4], [-1949.48, -351.66], [-1941.27, -352.28], [-1907.78, -354.05], [-1893.15, -354.99], [-1889.54, -355.21], [-1878.18, -356.0]], "length": 133.4}, {"u": 1345424868, "v": 1345424866, "oneway": true, "points": [[-2097.25, -301.1], [-2051.08, -324.34], [-2033.47, -331.85], [-2018.31, -337.41], [-2010.16, -339.77]], "length": 95.46}, {"u": 1345424871, "v": 53461758, "oneway": true, "points": [[-2006.99, -220.72], [-2015.27, -220.33], [-2107.45, -216.53], [-2124.26, -215.84], [-2128.16, -215.74], [-2140.56, -215.17]], "length": 133.68}, {"u": 1345424871, "v": 1345424866, "oneway": true, "points": [[-2006.99, -220.72], [-2007.22, -229.6], [-2007.36, -234.44], [-2009.91, -330.24], [-2010.16, -339.77]], "length": 119.09}, {"u": 1423974459, "v": 53385421, "oneway": false, "points": [[-213.73, -17.57], [-209.53, -21.98], [-197.64, -34.22]], "length": 23.16}, {"u": 1423974459, "v": 1180876933, "oneway": true, "points": [[-213.73, -17.57], [-214.1, -10.49], [-215.71, -5.54], [-218.12, -1.44], [-239.24, 21.37], [-242.2, 24.58], [-260.3, 44.11], [-266.2, 50.49]], "length": 87.82}, {"u": 1424945190, "v": 1157073442, "oneway": false, "points": [[-137.95, -613.99], [-138.14, -617.9], [-139.84, -654.31], [-140.2, -661.98], [-140.37, -665.78], [-141.83, -696.96], [-142.15, -703.74], [-142.68, -715.21], [-143.14, -724.84]], "length": 110.98}, {"u": 1424945190, "v": 53444048, "oneway": false, "points": [[-137.95, -613.99], [-137.56, -605.59], [-137.31, -600.09], [-136.89, -591.11]], "length": 22.9}, {"u": 1424945190, "v": 1425304284, "oneway": false, "points": [[-137.95, -613.99], [-126.82, -614.88], [-119.52, -615.47], [-101.64, -635.14], [-80.66, -658.22]], "length": 76.27}, {"u": 1425249983, "v": 1425250001, "oneway": false, "points": [[426.14, -77.19], [433.04, -84.69]], "length": 10.19}, {"u": 1425249983, "v": 53483529, "oneway": true, "points": [[426.14, -77.19], [418.48, -81.9], [410.28, -87.33], [402.41, -93.12], [390.57, -103.46], [388.88, -104.93], [387.36, -106.27], [356.55, -133.36], [354.53, -135.58], [352.42, -137.77], [350.05, -141.36], [348.17, -145.68]], "length": 104.66}, {"u": 1425249997, "v": 53515093, "oneway": true, "points": [[492.88, -32.29], [485.36, -24.07]], "length": 11.13}, {"u": 1425249997, "v": 1192150246, "oneway": true, "points": [[492.88, -32.29], [499.42, -26.45], [503.68, -23.1], [508.24, -20.05], [512.71, -17.47], [518.1, -14.66], [521.87, -12.85], [525.73, -11.18], [530.71, -9.3], [535.69, -7.54], [542.59, -5.39], [549.5, -3.41], [551.78, -2.82], [566.68, 0.2]], "length": 81.88}, {"u": 1425250001, "v": 1425249983, "oneway": false, "points": [[433.04, -84.69], [426.14, -77.19]], "length": 10.19}, {"u": 1425250001, "v": 1425249997, "oneway": true, "points": [[433.04, -84.69], [439.81, -80.09], [492.88, -32.29]], "length": 79.61}, {"u": 1425250001, "v": 53456081, "oneway": false, "points": [[433.04, -84.69], [437.71, -89.77], [438.64, -90.78], [462.87, -117.11]], "length": 44.06}, {"u": 1425304284, "v": 1424945190, "oneway": false, "points": [[-80.66, -658.22], [-101.64, -635.14], [-119.52, -615.47], [-126.82, -614.88], [-137.95, -613.99]], "length": 76.27}, {"u": 1426438819, "v": 2859304803, "oneway": false, "points": [[-2441.7, -801.26], [-2388.8, -759.96]], "length": 67.11}, {"u": 1426438819, "v": 2987035532, "oneway": false, "points": [[-2441.7, -801.26], [-2450.2, -808.41], [-2455.83, -813.4], [-2466.85, -822.79]], "length": 33.11}, {"u": 1426438835, "v": 53510000, "oneway": false, "points": [[-2153.51, -602.23], [-2154.27, -617.75], [-2154.48, -627.78]], "length": 25.57}, {"u": 1426438835, "v": 2859304395, "oneway": true, "points": [[-2153.51, -602.23], [-2151.31, -598.4], [-2150.31, -594.73], [-2150.15, -588.31], [-2150.95, -584.07], [-2151.59, -582.43], [-2159.2, -579.4]], "length": 28.91}, {"u": 1426438850, "v": 2987035535, "oneway": true, "points": [[-2526.62, -824.18], [-2517.9, -821.06], [-2508.85, -819.49], [-2505.78, -819.26], [-2502.62, -819.08], [-2500.36, -818.43], [-2498.42, -817.32], [-2494.04, -814.4]], "length": 34.54}, {"u": 1426438850, "v": 2987035532, "oneway": true, "points": [[-2526.62, -824.18], [-2491.02, -825.57], [-2484.28, -825.78], [-2475.57, -824.28], [-2466.85, -822.79]], "length": 60.06}, {"u": 1612121520, "v": 2634693276, "oneway": true, "points": [[-400.23, -2191.48], [-400.67, -2200.19], [-404.75, -2281.68], [-405.07, -2288.1]], "length": 96.74}, {"u": 1612121520, "v": 2634693274, "oneway": false, "points": [[-400.23, -2191.48], [-429.74, -2190.2], [-468.09, -2188.54], [-470.89, -2188.41]], "length": 70.73}, {"u": 1612121520, "v": 53642775, "oneway": false, "points": [[-400.23, -2191.48], [-388.99, -2191.97], [-383.22, -2192.22]], "length": 17.03}, {"u": 1699123250, "v": 1699123263, "oneway": false, "points": [[931.94, 1135.89], [925.55, 1142.9], [870.6, 1203.34], [863.12, 1211.65]], "length": 102.35}, {"u": 1699123250, "v": 349378518, "oneway": false, "points": [[931.94, 1135.89], [938.52, 1128.63], [993.75, 1067.83], [998.9, 1062.16]], "length": 99.6}, {"u": 1699123250, "v": 53453137, "oneway": false, "points": [[931.94, 1135.89], [938.77, 1142.17], [941.78, 1144.82], [1071.95, 1263.14], [1073.97, 1264.99], [1080.08, 1270.54]], "length": 200.19}, {"u": 1699123250, "v": 1699123288, "oneway": false, "points": [[931.94, 1135.89], [924.97, 1129.5], [922.63, 1127.37], [791.77, 1007.94], [789.49, 1005.84], [782.81, 999.73]], "length": 201.94}, {"u": 1699123263, "v": 1699123250, "oneway": false, "points": [[863.12, 1211.65], [870.6, 1203.34], [925.55, 1142.9], [931.94, 1135.89]], "length": 102.35}, {"u": 1699123263, "v": 1699123277, "oneway": false, "points": [[863.12, 1211.65], [859.67, 1215.73], [858.57, 1217.03], [856.19, 1219.84], [834.86, 1243.57], [802.74, 1278.9], [795.87, 1286.46]], "length": 100.61}, {"u": 1699123263, "v": 53453147, "oneway": true, "points": [[863.12, 1211.65], [869.77, 1217.59], [930.12, 1271.57], [1006.09, 1339.95], [1013.14, 1346.56]], "length": 201.76}, {"u": 1699123264, "v": 53536998, "oneway": false, "points": [[1149.65, 1493.6], [1161.62, 1481.82]], "length": 16.79}, {"u": 1699123264, "v": 53437720, "oneway": false, "points": [[1149.65, 1493.6], [1144.0, 1499.6], [1142.86, 1500.96], [1103.06, 1544.76], [1089.59, 1559.55], [1077.35, 1570.92], [1058.84, 1587.56]], "length": 130.81}, {"u": 1699123264, "v": 53453152, "oneway": true, "points": [[1149.65, 1493.6], [1142.74, 1488.82], [1125.61, 1476.99], [1116.22, 1472.11], [1105.48, 1467.56], [1094.66, 1464.33], [1075.14, 1461.87], [1059.6, 1462.07], [1034.46, 1462.81], [1022.54, 1461.66], [1010.17, 1459.35], [997.58, 1455.33], [984.95, 1448.21], [976.64, 1442.16], [952.51, 1425.28], [944.95, 1419.99]], "length": 224.35}, {"u": 1699123266, "v": 53631422, "oneway": true, "points": [[495.45, 1015.22], [489.16, 1009.25], [457.44, 979.1], [416.78, 941.52]], "length": 107.8}, {"u": 1699123266, "v": 53455657, "oneway": false, "points": [[495.45, 1015.22], [490.66, 1020.52], [425.4, 1092.81]], "length": 104.53}, {"u": 1699123266, "v": 1699123271, "oneway": false, "points": [[495.45, 1015.22], [502.3, 1007.69], [558.45, 946.07], [560.25, 944.09], [564.46, 939.47]], "length": 102.47}, {"u": 1699123271, "v": 316302556, "oneway": false, "points": [[564.46, 939.47], [570.41, 932.95], [626.6, 871.28], [632.8, 864.49]], "length": 101.45}, {"u": 1699123271, "v": 2705148499, "oneway": true, "points": [[564.46, 939.47], [571.32, 945.39], [581.05, 953.87], [595.64, 967.29], [610.1, 981.05], [629.09, 999.15], [637.69, 1007.3]], "length": 99.83}, {"u": 1699123271, "v": 1699123266, "oneway": false, "points": [[564.46, 939.47], [560.25, 944.09], [558.45, 946.07], [502.3, 1007.69], [495.45, 1015.22]], "length": 102.47}, {"u": 1699123277, "v": 1699123263, "oneway": false, "points": [[795.87, 1286.46], [802.74, 1278.9], [834.86, 1243.57], [856.19, 1219.84], [858.57, 1217.03], [859.67, 1215.73], [863.12, 1211.65]], "length": 100.61}, {"u": 1699123277, "v": 4172253594, "oneway": true, "points": [[795.87, 1286.46], [788.6, 1279.72], [652.04, 1156.24], [645.88, 1149.81]], "length": 202.92}, {"u": 1699123277, "v": 53437707, "oneway": true, "points": [[795.87, 1286.46], [790.53, 1292.32], [743.69, 1343.84]], "length": 77.56}, {"u": 1699123283, "v": 53429624, "oneway": false, "points": [[1211.56, 1544.9], [1220.91, 1534.65]], "length": 13.87}, {"u": 1699123283, "v": 2713391937, "oneway": false, "points": [[1211.56, 1544.9], [1205.58, 1550.92], [1076.81, 1694.3], [921.04, 1830.52], [915.63, 1835.88]], "length": 415.75}, {"u": 1699123283, "v": 1699123264, "oneway": true, "points": [[1211.56, 1544.9], [1205.18, 1539.6], [1157.06, 1499.56], [1149.65, 1493.6]], "length": 80.4}, {"u": 1699123288, "v": 53640824, "oneway": false, "points": [[782.81, 999.73], [776.29, 1006.87], [721.67, 1066.83], [720.38, 1068.22], [714.7, 1074.46]], "length": 101.11}, {"u": 1699123288, "v": 3270240367, "oneway": false, "points": [[782.81, 999.73], [788.54, 993.44], [841.29, 935.57], [844.05, 932.53], [849.71, 926.33]], "length": 99.32}, {"u": 1699123288, "v": 1699123250, "oneway": false, "points": [[782.81, 999.73], [789.49, 1005.84], [791.77, 1007.94], [922.63, 1127.37], [924.97, 1129.5], [931.94, 1135.89]], "length": 201.94}, {"u": 1699123288, "v": 316302556, "oneway": false, "points": [[782.81, 999.73], [776.21, 993.96], [773.48, 991.48], [642.33, 872.55], [640.1, 870.65], [632.8, 864.49]], "length": 201.98}, {"u": 1701854143, "v": 2713279291, "oneway": false, "points": [[-406.25, 194.77], [-400.76, 188.65], [-387.07, 173.4], [-345.33, 126.89], [-338.74, 119.55]], "length": 101.07}, {"u": 1701854143, "v": 53472460, "oneway": true, "points": [[-406.25, 194.77], [-415.32, 186.57], [-420.27, 182.08], [-449.16, 155.95], [-457.66, 148.27], [-461.28, 145.0], [-464.5, 142.09], [-468.1, 138.83], [-496.88, 112.81], [-503.44, 106.87]], "length": 131.04}, {"u": 1701854143, "v": 13334632600, "oneway": true, "points": [[-406.25, 194.77], [-408.24, 205.49], [-412.32, 209.4], [-415.89, 212.49], [-418.36, 214.08], [-420.67, 215.19], [-422.92, 215.79], [-424.84, 215.8]], "length": 31.03}, {"u": 1706427633, "v": 449967724, "oneway": true, "points": [[2854.13, 2632.4], [2860.48, 2643.84]], "length": 13.08}, {"u": 1706427633, "v": 2955373055, "oneway": true, "points": [[2854.13, 2632.4], [2863.68, 2627.35], [2881.13, 2617.43], [2890.36, 2611.93], [2902.65, 2605.83], [2911.07, 2603.48], [2919.52, 2602.59], [2929.73, 2602.32], [2933.03, 2602.23], [2939.83, 2603.48], [2946.66, 2605.82]], "length": 100.23}, {"u": 1706427636, "v": 2948595043, "oneway": true, "points": [[2683.37, 2398.02], [2693.47, 2382.42], [2696.45, 2377.82], [2697.81, 2375.39], [2699.46, 2370.57]], "length": 31.94}, {"u": 1706427636, "v": 449957352, "oneway": false, "points": [[2683.37, 2398.02], [2665.02, 2415.86], [2658.4, 2422.3]], "length": 34.82}, {"u": 1706427646, "v": 1706427657, "oneway": true, "points": [[2726.4, 2363.6], [2726.64, 2366.44], [2725.95, 2370.55], [2724.07, 2374.27], [2721.16, 2377.27], [2717.5, 2379.27], [2713.91, 2380.06], [2710.23, 2379.9]], "length": 26.89}, {"u": 1706427647, "v": 1706427633, "oneway": true, "points": [[2838.71, 2641.51], [2854.13, 2632.4]], "length": 17.91}, {"u": 1706427647, "v": 53423568, "oneway": true, "points": [[2838.71, 2641.51], [2831.85, 2630.66], [2814.6, 2602.63], [2802.3, 2587.64], [2793.65, 2578.14], [2781.76, 2565.65], [2774.92, 2558.46]], "length": 105.16}, {"u": 1706427648, "v": 349368476, "oneway": false, "points": [[2236.36, 2351.27], [2231.0, 2356.87], [2220.44, 2367.92], [2219.66, 2368.73], [2174.32, 2413.22], [2171.84, 2415.64], [2166.22, 2422.88]], "length": 100.32}, {"u": 1706427648, "v": 2714912985, "oneway": false, "points": [[2236.36, 2351.27], [2243.57, 2343.75], [2256.07, 2330.72], [2269.99, 2316.2], [2301.86, 2283.72], [2306.81, 2278.71]], "length": 101.13}, {"u": 1706427648, "v": 53498225, "oneway": false, "points": [[2236.36, 2351.27], [2229.13, 2344.21], [2097.85, 2216.73], [2091.4, 2210.47]], "length": 202.08}, {"u": 1706427652, "v": 447178131, "oneway": true, "points": [[2711.9, 2352.34], [2713.91, 2352.37]], "length": 2.01}, {"u": 1706427657, "v": 1706427636, "oneway": true, "points": [[2710.23, 2379.9], [2701.86, 2385.23], [2698.72, 2387.41], [2683.37, 2398.02]], "length": 32.41}, {"u": 1706427657, "v": 2948595043, "oneway": true, "points": [[2710.23, 2379.9], [2706.68, 2378.75], [2703.56, 2376.72], [2701.09, 2373.92], [2699.46, 2370.57]], "length": 14.91}, {"u": 1706427666, "v": 2714912986, "oneway": false, "points": [[2522.09, 2317.58], [2515.9, 2327.21], [2443.98, 2399.47], [2438.45, 2405.31]], "length": 121.44}, {"u": 1706427666, "v": 1706427672, "oneway": true, "points": [[2522.09, 2317.58], [2401.54, 2198.98], [2392.68, 2190.26]], "length": 181.54}, {"u": 1706427669, "v": 53480554, "oneway": false, "points": [[2311.57, 1904.24], [2315.0, 1902.13], [2329.03, 1893.52], [2367.75, 1869.72], [2372.03, 1867.09], [2377.71, 1863.6]], "length": 77.63}, {"u": 1706427672, "v": 449952498, "oneway": false, "points": [[2392.68, 2190.26], [2405.43, 2177.18]], "length": 18.27}, {"u": 1706427672, "v": 2714912985, "oneway": false, "points": [[2392.68, 2190.26], [2384.01, 2198.36], [2366.4, 2217.32], [2344.17, 2240.69], [2314.29, 2271.04], [2306.81, 2278.71]], "length": 123.3}, {"u": 1706427672, "v": 53423556, "oneway": true, "points": [[2392.68, 2190.26], [2385.29, 2183.12], [2372.33, 2170.62], [2267.95, 2069.85], [2265.22, 2067.22], [2253.92, 2056.3], [2248.24, 2050.82]], "length": 200.76}, {"u": 1706427684, "v": 11205598924, "oneway": true, "points": [[2699.23, 2362.6], [2695.7, 2357.09], [2691.81, 2353.29], [2690.71, 2352.15], [2686.23, 2345.81], [2681.72, 2338.73]], "length": 29.73}, {"u": 1706427684, "v": 1706427652, "oneway": true, "points": [[2699.23, 2362.6], [2701.0, 2358.66], [2703.9, 2355.44], [2707.65, 2353.27], [2711.9, 2352.34]], "length": 17.33}, {"u": 1710317933, "v": 1179795960, "oneway": false, "points": [[-1519.55, -1731.34], [-1505.63, -1731.62]], "length": 13.92}, {"u": 1710317933, "v": 2573847784, "oneway": false, "points": [[-1519.55, -1731.34], [-1527.75, -1731.15], [-1556.51, -1730.57], [-1603.17, -1729.59], [-1612.12, -1729.4], [-1639.79, -1728.63], [-1648.32, -1728.6]], "length": 128.8}, {"u": 1710317933, "v": 4089413144, "oneway": true, "points": [[-1519.55, -1731.34], [-1520.04, -1743.25], [-1518.47, -1781.79], [-1513.55, -1808.5], [-1503.29, -1833.04]], "length": 104.25}, {"u": 1777291055, "v": 1777291057, "oneway": false, "points": [[1310.61, 1616.47], [1305.08, 1622.45]], "length": 8.14}, {"u": 1777291055, "v": 53668858, "oneway": false, "points": [[1310.61, 1616.47], [1315.62, 1611.0], [1317.94, 1608.4], [1372.11, 1547.68], [1377.01, 1542.18]], "length": 99.64}, {"u": 1777291055, "v": 456681765, "oneway": true, "points": [[1310.61, 1616.47], [1321.22, 1625.59], [1409.65, 1705.73], [1432.86, 1727.06], [1454.9, 1746.91], [1487.34, 1776.26], [1496.16, 1783.08], [1532.54, 1812.14], [1606.78, 1872.71], [1614.02, 1878.74], [1616.95, 1881.18]], "length": 405.03}, {"u": 1777291057, "v": 1777291055, "oneway": false, "points": [[1305.08, 1622.45], [1310.61, 1616.47]], "length": 8.14}, {"u": 1777291057, "v": 1699123283, "oneway": true, "points": [[1305.08, 1622.45], [1221.11, 1553.39], [1211.56, 1544.9]], "length": 121.5}, {"u": 1850006055, "v": 1850006061, "oneway": false, "points": [[-2904.82, 371.63], [-2910.65, 360.75], [-2913.79, 353.56], [-2916.12, 342.84], [-2917.66, 327.95], [-2917.84, 322.37], [-2918.21, 310.53], [-2917.66, 298.8], [-2915.03, 288.69], [-2913.25, 283.05], [-2902.1, 256.78], [-2899.98, 247.11], [-2899.73, 239.14], [-2899.82, 228.08], [-2901.48, 160.36], [-2901.56, 152.9]], "length": 224.34}, {"u": 1850006061, "v": 8316813421, "oneway": false, "points": [[-2901.56, 152.9], [-3035.81, 158.04]], "length": 134.35}, {"u": 1850006061, "v": 53413619, "oneway": false, "points": [[-2901.56, 152.9], [-2896.46, 152.68], [-2894.1, 152.58], [-2742.91, 146.26], [-2705.07, 144.68], [-2694.88, 144.3]], "length": 206.86}, {"u": 1850006061, "v": 1850006055, "oneway": false, "points": [[-2901.56, 152.9], [-2901.48, 160.36], [-2899.82, 228.08], [-2899.73, 239.14], [-2899.98, 247.11], [-2902.1, 256.78], [-2913.25, 283.05], [-2915.03, 288.69], [-2917.66, 298.8], [-2918.21, 310.53], [-2917.84, 322.37], [-2917.66, 327.95], [-2916.12, 342.84], [-2913.79, 353.56], [-2910.65, 360.75], [-2904.82, 371.63]], "length": 224.34}, {"u": 1857601486, "v": 2848493173, "oneway": false, "points": [[-2623.71, -198.63], [-2623.51, -192.45]], "length": 6.18}, {"u": 1857601486, "v": 53485100, "oneway": false, "points": [[-2623.71, -198.63], [-2623.82, -204.52], [-2623.89, -207.01], [-2624.2, -217.92], [-2624.78, -237.77], [-2625.17, -250.25], [-2626.1, -279.41], [-2626.26, -284.14], [-2626.37, -287.68]], "length": 89.09}, {"u": 1857601486, "v": 2848493174, "oneway": true, "points": [[-2623.71, -198.63], [-2616.23, -198.85], [-2599.87, -199.58], [-2583.33, -200.19], [-2562.68, -201.66], [-2554.39, -202.34], [-2549.97, -202.7], [-2540.36, -203.83]], "length": 83.54}, {"u": 1857601633, "v": 1345420597, "oneway": true, "points": [[-2151.66, -338.82], [-2152.12, -348.82], [-2152.34, -354.86], [-2152.91, -370.57], [-2153.07, -382.93], [-2153.07, -395.27], [-2152.76, -397.64], [-2149.8, -404.37]], "length": 66.22}, {"u": 1944740975, "v": 53514806, "oneway": false, "points": [[-2785.23, -718.55], [-2784.77, -710.46], [-2782.97, -635.51], [-2782.71, -627.02]], "length": 91.57}, {"u": 1944740975, "v": 2298789030, "oneway": false, "points": [[-2785.23, -718.55], [-2785.57, -726.62], [-2786.86, -761.39], [-2787.64, -801.82], [-2791.96, -810.6]], "length": 93.1}, {"u": 1944740975, "v": 2298789025, "oneway": false, "points": [[-2785.23, -718.55], [-2793.43, -718.22], [-2820.66, -717.09], [-2869.69, -714.77], [-2941.66, -711.34], [-2949.62, -710.96]], "length": 164.57}, {"u": 1944740975, "v": 53582923, "oneway": false, "points": [[-2785.23, -718.55], [-2777.69, -718.91], [-2647.37, -724.55], [-2639.01, -724.72]], "length": 146.35}, {"u": 2298789012, "v": 53521155, "oneway": false, "points": [[-2953.34, -803.9], [-2953.8, -813.39], [-2955.32, -850.55], [-2956.71, -884.37], [-2956.86, -888.1], [-2957.19, -895.97]], "length": 92.15}, {"u": 2298789012, "v": 2298789025, "oneway": false, "points": [[-2953.34, -803.9], [-2952.9, -795.13], [-2949.82, -719.81], [-2949.62, -710.96]], "length": 93.02}, {"u": 2298789012, "v": 2298789030, "oneway": false, "points": [[-2953.34, -803.9], [-2945.39, -804.26], [-2897.3, -806.42], [-2871.75, -807.57], [-2804.29, -810.14], [-2791.96, -810.6]], "length": 161.52}, {"u": 2298789025, "v": 53311057, "oneway": false, "points": [[-2949.62, -710.96], [-2949.45, -702.71], [-2949.2, -694.29], [-2952.65, -677.97], [-2957.55, -667.05], [-2963.34, -658.76], [-2969.42, -652.14], [-2978.02, -645.34], [-2989.65, -638.78]], "length": 88.74}, {"u": 2298789025, "v": 2298789012, "oneway": false, "points": [[-2949.62, -710.96], [-2949.82, -719.81], [-2952.9, -795.13], [-2953.34, -803.9]], "length": 93.02}, {"u": 2298789025, "v": 1944740975, "oneway": false, "points": [[-2949.62, -710.96], [-2941.66, -711.34], [-2869.69, -714.77], [-2820.66, -717.09], [-2793.43, -718.22], [-2785.23, -718.55]], "length": 164.57}, {"u": 2298789030, "v": 1944740975, "oneway": false, "points": [[-2791.96, -810.6], [-2787.64, -801.82], [-2786.86, -761.39], [-2785.57, -726.62], [-2785.23, -718.55]], "length": 93.1}, {"u": 2298789030, "v": 13009756501, "oneway": false, "points": [[-2791.96, -810.6], [-2796.94, -818.81], [-2798.01, -870.27]], "length": 61.07}, {"u": 2298789030, "v": 53684762, "oneway": false, "points": [[-2791.96, -810.6], [-2779.81, -811.12], [-2650.44, -816.8], [-2641.99, -817.18]], "length": 150.12}, {"u": 2298789030, "v": 2298789012, "oneway": false, "points": [[-2791.96, -810.6], [-2804.29, -810.14], [-2871.75, -807.57], [-2897.3, -806.42], [-2945.39, -804.26], [-2953.34, -803.9]], "length": 161.52}, {"u": 2384881527, "v": 2859093884, "oneway": false, "points": [[2217.34, 1492.66], [2212.97, 1497.83], [2210.79, 1500.57], [2185.2, 1532.77], [2178.28, 1541.28]], "length": 62.37}, {"u": 2384881527, "v": 53649103, "oneway": true, "points": [[2217.34, 1492.66], [2224.19, 1497.67], [2250.42, 1513.98], [2266.31, 1520.74]], "length": 56.65}, {"u": 2384881533, "v": 3786910293, "oneway": true, "points": [[2154.88, 1568.17], [2139.51, 1586.39], [2134.21, 1592.41], [2127.38, 1600.17]], "length": 42.2}, {"u": 2384881533, "v": 2859093884, "oneway": false, "points": [[2154.88, 1568.17], [2174.37, 1545.78], [2178.28, 1541.28]], "length": 35.65}, {"u": 2384881547, "v": 3786910294, "oneway": true, "points": [[2105.39, 1617.86], [2112.86, 1606.07], [2115.57, 1603.35], [2119.68, 1599.22], [2123.39, 1595.95]], "length": 28.57}, {"u": 2384881547, "v": 3786903332, "oneway": false, "points": [[2105.39, 1617.86], [2096.75, 1626.8], [2083.23, 1640.76], [2079.28, 1644.95], [2061.17, 1664.13], [2054.62, 1671.06]], "length": 73.54}, {"u": 2384881587, "v": 53423529, "oneway": true, "points": [[1928.42, 1751.23], [1868.42, 1694.56], [1853.83, 1680.78], [1836.97, 1662.9], [1832.26, 1658.38], [1781.54, 1609.83], [1752.27, 1581.89], [1738.12, 1568.52], [1713.87, 1545.74], [1687.13, 1520.57], [1686.87, 1520.32], [1685.39, 1518.93], [1675.14, 1510.09]], "length": 349.77}, {"u": 2384881594, "v": 2384881601, "oneway": true, "points": [[1972.61, 1764.2], [1959.95, 1776.69]], "length": 17.79}, {"u": 2384881594, "v": 449952494, "oneway": true, "points": [[1972.61, 1764.2], [1980.23, 1771.33], [2150.59, 1930.81], [2160.91, 1940.4]], "length": 257.88}, {"u": 2384881598, "v": 53719166, "oneway": true, "points": [[1950.78, 1769.89], [1965.35, 1757.55]], "length": 19.1}, {"u": 2384881598, "v": 2384881587, "oneway": true, "points": [[1950.78, 1769.89], [1942.95, 1763.63], [1928.42, 1751.23]], "length": 29.13}, {"u": 2384881601, "v": 2384881598, "oneway": true, "points": [[1959.95, 1776.69], [1950.78, 1769.89]], "length": 11.41}, {"u": 2384881601, "v": 53538723, "oneway": true, "points": [[1959.95, 1776.69], [1950.74, 1785.02], [1925.68, 1807.12], [1916.31, 1815.69], [1904.73, 1827.56], [1881.83, 1851.02], [1872.54, 1860.55]], "length": 121.21}, {"u": 2384881629, "v": 2384881598, "oneway": true, "points": [[1893.23, 1820.11], [1939.82, 1779.85], [1942.22, 1777.66], [1950.78, 1769.89]], "length": 76.39}, {"u": 2384881629, "v": 2384881587, "oneway": true, "points": [[1893.23, 1820.11], [1906.06, 1803.6], [1910.97, 1797.29], [1918.22, 1787.96], [1928.86, 1770.74], [1930.2, 1767.59], [1931.45, 1762.69], [1930.76, 1757.32], [1928.42, 1751.23]], "length": 81.39}, {"u": 2384881635, "v": 53538723, "oneway": false, "points": [[1863.56, 1852.8], [1872.54, 1860.55]], "length": 11.86}, {"u": 2384881635, "v": 2384881629, "oneway": true, "points": [[1863.56, 1852.8], [1872.65, 1842.78], [1893.23, 1820.11]], "length": 44.14}, {"u": 2384881652, "v": 456681760, "oneway": true, "points": [[1618.94, 1893.22], [1619.51, 1903.26]], "length": 10.06}, {"u": 2384881652, "v": 1142903104, "oneway": true, "points": [[1618.94, 1893.22], [1622.94, 1893.23], [1625.51, 1893.4], [1635.25, 1896.85]], "length": 16.9}, {"u": 2384881654, "v": 2384881652, "oneway": true, "points": [[1613.47, 1896.44], [1618.94, 1893.22]], "length": 6.35}, {"u": 2384881654, "v": 1777291057, "oneway": true, "points": [[1613.47, 1896.44], [1611.65, 1894.39], [1606.04, 1888.08], [1555.13, 1846.83], [1482.87, 1780.99], [1450.41, 1751.82], [1428.25, 1734.03], [1315.49, 1631.62], [1305.08, 1622.45]], "length": 412.72}, {"u": 2384881666, "v": 2384881679, "oneway": true, "points": [[1619.99, 1934.89], [1617.97, 1944.33]], "length": 9.65}, {"u": 2384881679, "v": 2384881654, "oneway": true, "points": [[1617.97, 1944.33], [1612.67, 1928.81], [1611.04, 1909.68], [1611.05, 1907.15], [1613.47, 1896.44]], "length": 49.11}, {"u": 2384881679, "v": 2712062761, "oneway": false, "points": [[1617.97, 1944.33], [1619.18, 1960.64], [1620.14, 1973.61], [1625.04, 2020.23], [1628.74, 2055.36], [1632.31, 2089.31], [1635.83, 2122.77], [1638.17, 2158.08], [1640.33, 2190.64], [1638.33, 2212.15], [1635.91, 2226.91], [1631.06, 2248.49], [1617.94, 2281.61], [1611.71, 2295.72], [1606.43, 2309.8], [1601.63, 2322.57]], "length": 385.77}, {"u": 2573847767, "v": 2573847776, "oneway": false, "points": [[-1614.6, -1893.15], [-1621.92, -1897.16], [-1657.14, -1916.47], [-1694.27, -1935.78], [-1698.69, -1938.1]], "length": 95.35}, {"u": 2573847767, "v": 4089413144, "oneway": false, "points": [[-1614.6, -1893.15], [-1605.6, -1888.31], [-1549.01, -1857.17], [-1513.44, -1836.76], [-1510.68, -1835.17], [-1503.29, -1833.04]], "length": 126.7}, {"u": 2573847767, "v": 53447618, "oneway": false, "points": [[-1614.6, -1893.15], [-1612.6, -1896.8], [-1582.48, -1951.9], [-1581.69, -1953.36], [-1578.01, -1960.1]], "length": 76.3}, {"u": 2573847767, "v": 2573847784, "oneway": false, "points": [[-1614.6, -1893.15], [-1615.54, -1885.57], [-1617.51, -1858.95], [-1617.91, -1853.59], [-1618.04, -1851.87], [-1618.81, -1843.54], [-1619.11, -1840.25], [-1620.01, -1834.15], [-1621.09, -1826.93], [-1622.3, -1821.22], [-1623.83, -1815.09], [-1625.09, -1809.99], [-1625.98, -1806.41], [-1628.62, -1798.17], [-1633.11, -1786.71], [-1634.93, -1782.07], [-1637.44, -1776.46], [-1643.62, -1762.7], [-1646.49, -1751.62], [-1648.34, -1742.26], [-1648.31, -1738.95], [-1648.32, -1728.6]], "length": 169.49}, {"u": 2573847770, "v": 270405510, "oneway": false, "points": [[-1787.32, -1987.51], [-1787.61, -2002.95], [-1787.51, -2011.57]], "length": 24.06}, {"u": 2573847770, "v": 4095684894, "oneway": false, "points": [[-1787.32, -1987.51], [-1786.99, -1973.74], [-1786.45, -1951.27]], "length": 36.25}, {"u": 2573847770, "v": 2573847776, "oneway": false, "points": [[-1787.32, -1987.51], [-1777.37, -1982.56], [-1774.98, -1981.19], [-1744.42, -1963.68], [-1703.65, -1940.74], [-1698.69, -1938.1]], "length": 101.49}, {"u": 2573847776, "v": 53447620, "oneway": false, "points": [[-1698.69, -1938.1], [-1695.89, -1943.51], [-1694.63, -1945.78], [-1666.66, -1996.32], [-1665.54, -1998.33], [-1661.44, -2005.96]], "length": 77.41}, {"u": 2573847776, "v": 2573847767, "oneway": false, "points": [[-1698.69, -1938.1], [-1694.27, -1935.78], [-1657.14, -1916.47], [-1621.92, -1897.16], [-1614.6, -1893.15]], "length": 95.35}, {"u": 2573847776, "v": 2573847770, "oneway": false, "points": [[-1698.69, -1938.1], [-1703.65, -1940.74], [-1744.42, -1963.68], [-1774.98, -1981.19], [-1777.37, -1982.56], [-1787.32, -1987.51]], "length": 101.49}, {"u": 2573847782, "v": 2573847784, "oneway": false, "points": [[-1779.82, -1725.92], [-1770.42, -1726.21], [-1725.19, -1727.6], [-1675.15, -1728.24], [-1657.83, -1728.47], [-1648.32, -1728.6]], "length": 131.54}, {"u": 2573847782, "v": 4095666564, "oneway": false, "points": [[-1779.82, -1725.92], [-1780.15, -1734.96], [-1781.93, -1784.17], [-1782.51, -1802.66]], "length": 76.78}, {"u": 2573847782, "v": 53478277, "oneway": false, "points": [[-1779.82, -1725.92], [-1787.75, -1725.75], [-1813.22, -1725.18], [-1895.95, -1721.99], [-2008.12, -1717.66], [-2013.99, -1717.44]], "length": 234.32}, {"u": 2573847782, "v": 53529689, "oneway": false, "points": [[-1779.82, -1725.92], [-1779.41, -1714.59], [-1777.62, -1665.96], [-1775.8, -1616.4], [-1775.39, -1605.34]], "length": 120.66}, {"u": 2573847784, "v": 2573847782, "oneway": false, "points": [[-1648.32, -1728.6], [-1657.83, -1728.47], [-1675.15, -1728.24], [-1725.19, -1727.6], [-1770.42, -1726.21], [-1779.82, -1725.92]], "length": 131.54}, {"u": 2573847784, "v": 1710317933, "oneway": false, "points": [[-1648.32, -1728.6], [-1639.79, -1728.63], [-1612.12, -1729.4], [-1603.17, -1729.59], [-1556.51, -1730.57], [-1527.75, -1731.15], [-1519.55, -1731.34]], "length": 128.8}, {"u": 2573847784, "v": 53529686, "oneway": false, "points": [[-1648.32, -1728.6], [-1648.05, -1718.47], [-1648.01, -1714.94], [-1647.5, -1677.87], [-1647.37, -1668.47], [-1645.73, -1619.25], [-1645.36, -1608.09]], "length": 120.55}, {"u": 2573847784, "v": 2573847767, "oneway": false, "points": [[-1648.32, -1728.6], [-1648.31, -1738.95], [-1648.34, -1742.26], [-1646.49, -1751.62], [-1643.62, -1762.7], [-1637.44, -1776.46], [-1634.93, -1782.07], [-1633.11, -1786.71], [-1628.62, -1798.17], [-1625.98, -1806.41], [-1625.09, -1809.99], [-1623.83, -1815.09], [-1622.3, -1821.22], [-1621.09, -1826.93], [-1620.01, -1834.15], [-1619.11, -1840.25], [-1618.81, -1843.54], [-1618.04, -1851.87], [-1617.91, -1853.59], [-1617.51, -1858.95], [-1615.54, -1885.57], [-1614.6, -1893.15]], "length": 169.49}, {"u": 2573847790, "v": 53576829, "oneway": false, "points": [[-1638.06, -1243.82], [-1646.11, -1243.73], [-1707.23, -1243.0], [-1731.17, -1242.71], [-1758.62, -1242.01], [-1766.52, -1241.81]], "length": 128.48}, {"u": 2573847790, "v": 1179459737, "oneway": false, "points": [[-1638.06, -1243.82], [-1627.98, -1244.1], [-1520.77, -1247.1], [-1517.31, -1247.2], [-1507.52, -1247.36]], "length": 130.58}, {"u": 2573847790, "v": 53676376, "oneway": false, "points": [[-1638.06, -1243.82], [-1637.77, -1234.18], [-1637.67, -1230.44], [-1635.03, -1140.81], [-1634.85, -1135.18], [-1634.53, -1123.55]], "length": 120.32}, {"u": 2573847790, "v": 53621256, "oneway": false, "points": [[-1638.06, -1243.82], [-1637.98, -1255.97], [-1637.98, -1258.32], [-1637.76, -1305.57], [-1639.02, -1353.78], [-1639.32, -1365.38]], "length": 121.58}, {"u": 2627868774, "v": 53498398, "oneway": false, "points": [[2625.01, 2253.35], [2632.06, 2253.72], [2636.4, 2253.95], [2644.15, 2255.57], [2659.09, 2264.37], [2675.79, 2265.17], [2682.28, 2264.82]], "length": 59.89}, {"u": 2627868774, "v": 2948595023, "oneway": false, "points": [[2625.01, 2253.35], [2618.33, 2251.54], [2614.48, 2250.19]], "length": 11.0}, {"u": 2627868774, "v": 53447046, "oneway": true, "points": [[2625.01, 2253.35], [2627.16, 2256.7], [2642.2, 2281.87], [2645.66, 2288.52], [2645.85, 2289.59], [2647.22, 2297.41]], "length": 49.82}, {"u": 2627868777, "v": 53604822, "oneway": false, "points": [[2573.32, 2178.23], [2571.7, 2175.65]], "length": 3.04}, {"u": 2627868777, "v": 2627868774, "oneway": true, "points": [[2573.32, 2178.23], [2576.79, 2181.47], [2580.92, 2185.75], [2586.07, 2193.57], [2611.04, 2231.49], [2625.01, 2253.35]], "length": 91.4}, {"u": 2634682652, "v": 2634682653, "oneway": false, "points": [[-254.99, -2489.89], [-296.27, -2473.94]], "length": 44.26}, {"u": 2634682652, "v": 53544865, "oneway": false, "points": [[-254.99, -2489.89], [-254.11, -2472.92], [-250.68, -2399.49], [-250.37, -2393.01]], "length": 97.0}, {"u": 2634682652, "v": 316562664, "oneway": false, "points": [[-254.99, -2489.89], [-178.66, -2520.27], [-171.66, -2523.05]], "length": 89.68}, {"u": 2634682653, "v": 316562665, "oneway": false, "points": [[-296.27, -2473.94], [-306.87, -2469.85]], "length": 11.36}, {"u": 2634682653, "v": 2634682652, "oneway": false, "points": [[-296.27, -2473.94], [-254.99, -2489.89]], "length": 44.26}, {"u": 2634682653, "v": 53552968, "oneway": false, "points": [[-296.27, -2473.94], [-294.69, -2400.13], [-294.49, -2390.97]], "length": 82.98}, {"u": 2634682669, "v": 316562667, "oneway": false, "points": [[-418.67, -2430.32], [-418.95, -2437.4]], "length": 7.09}, {"u": 2634682669, "v": 53642782, "oneway": false, "points": [[-418.67, -2430.32], [-418.47, -2425.17], [-417.21, -2392.95], [-416.93, -2385.82]], "length": 44.53}, {"u": 2634682669, "v": 53463567, "oneway": true, "points": [[-418.67, -2430.32], [-427.55, -2428.82], [-452.4, -2424.64], [-503.85, -2419.33], [-542.41, -2416.55], [-588.62, -2414.82], [-633.2, -2412.75], [-639.09, -2412.52]], "length": 221.35}, {"u": 2634693264, "v": 53447075, "oneway": false, "points": [[74.32, -2056.49], [82.99, -2056.87], [86.09, -2057.01]], "length": 11.78}, {"u": 2634693266, "v": 53447075, "oneway": false, "points": [[96.27, -2057.46], [86.09, -2057.01]], "length": 10.18}, {"u": 2634693274, "v": 3755083604, "oneway": false, "points": [[-470.89, -2188.41], [-469.91, -2179.04], [-466.7, -2148.31], [-448.8, -1977.41]], "length": 212.16}, {"u": 2634693274, "v": 53438623, "oneway": false, "points": [[-470.89, -2188.41], [-515.06, -2186.5], [-531.33, -2185.79], [-535.58, -2185.62], [-538.26, -2185.5]], "length": 67.43}, {"u": 2634693274, "v": 1612121520, "oneway": false, "points": [[-470.89, -2188.41], [-468.09, -2188.54], [-429.74, -2190.2], [-400.23, -2191.48]], "length": 70.73}, {"u": 2634693276, "v": 53438624, "oneway": false, "points": [[-405.07, -2288.1], [-422.13, -2287.21], [-471.26, -2284.65], [-517.07, -2282.26], [-536.4, -2281.26], [-544.92, -2280.81]], "length": 140.04}, {"u": 2634693276, "v": 53543498, "oneway": false, "points": [[-405.07, -2288.1], [-294.97, -2293.83], [-290.67, -2294.05]], "length": 114.55}, {"u": 2634693276, "v": 53562507, "oneway": true, "points": [[-405.07, -2288.1], [-405.43, -2296.73], [-407.1, -2336.99], [-408.77, -2377.6], [-409.12, -2386.16]], "length": 98.14}, {"u": 2634693278, "v": 12911858894, "oneway": false, "points": [[-1424.32, -1612.86], [-1427.4, -1733.13]], "length": 120.31}, {"u": 2634693278, "v": 53511571, "oneway": false, "points": [[-1424.32, -1612.86], [-1420.96, -1491.31]], "length": 121.6}, {"u": 2634693278, "v": 1179795931, "oneway": false, "points": [[-1424.32, -1612.86], [-1431.63, -1612.74], [-1481.12, -1611.92], [-1486.01, -1611.84], [-1491.13, -1611.77], [-1494.41, -1611.69], [-1502.61, -1611.48]], "length": 78.3}, {"u": 2634693299, "v": 2634708186, "oneway": true, "points": [[-621.48, -2093.47], [-617.03, -2094.85], [-613.13, -2097.21], [-611.45, -2100.16], [-610.68, -2103.64], [-611.52, -2133.14], [-612.4, -2149.14], [-613.28, -2159.84], [-614.2, -2173.51], [-614.43, -2183.02]], "length": 95.65}, {"u": 2634693299, "v": 53434870, "oneway": false, "points": [[-621.48, -2093.47], [-624.75, -2092.93], [-630.92, -2092.42], [-662.66, -2091.07], [-777.95, -2084.25], [-787.2, -2084.85]], "length": 166.04}, {"u": 2634708186, "v": 53463567, "oneway": false, "points": [[-614.43, -2183.02], [-614.88, -2191.22], [-616.35, -2217.8], [-621.82, -2262.76], [-625.66, -2293.21], [-638.58, -2404.86], [-638.79, -2407.2], [-639.09, -2412.52]], "length": 230.89}, {"u": 2634708186, "v": 53434871, "oneway": false, "points": [[-614.43, -2183.02], [-621.19, -2182.78], [-668.73, -2181.6], [-783.75, -2177.92], [-790.62, -2177.58]], "length": 176.28}, {"u": 2634708186, "v": 53438623, "oneway": false, "points": [[-614.43, -2183.02], [-606.02, -2183.25], [-585.07, -2183.82], [-559.87, -2184.56], [-550.1, -2184.98], [-547.15, -2185.11], [-538.26, -2185.5]], "length": 76.21}, {"u": 2635256558, "v": 2726180832, "oneway": false, "points": [[-2909.89, -1710.85], [-2900.35, -1721.88], [-2896.35, -1725.83], [-2891.6, -1730.42], [-2886.76, -1733.78], [-2881.29, -1737.37], [-2875.41, -1740.72], [-2866.75, -1744.02], [-2856.6, -1746.69], [-2850.93, -1748.17], [-2845.05, -1748.83]], "length": 77.55}, {"u": 2635256558, "v": 2637056004, "oneway": false, "points": [[-2909.89, -1710.85], [-2915.89, -1703.85], [-2932.03, -1685.03], [-2958.43, -1653.84], [-2972.37, -1636.06]], "length": 97.47}, {"u": 2635256558, "v": 2635256569, "oneway": false, "points": [[-2909.89, -1710.85], [-2890.16, -1693.33], [-2852.46, -1660.52], [-2810.9, -1626.71]], "length": 129.95}, {"u": 2635256569, "v": 2635256558, "oneway": false, "points": [[-2810.9, -1626.71], [-2852.46, -1660.52], [-2890.16, -1693.33], [-2909.89, -1710.85]], "length": 129.95}, {"u": 2635256569, "v": 2635256574, "oneway": false, "points": [[-2810.9, -1626.71], [-2792.57, -1610.34], [-2723.99, -1552.19], [-2712.3, -1542.08]], "length": 129.93}, {"u": 2635256569, "v": 53444645, "oneway": false, "points": [[-2810.9, -1626.71], [-2816.91, -1619.6], [-2842.4, -1589.43], [-2867.72, -1559.47], [-2872.82, -1553.43]], "length": 95.94}, {"u": 2635256574, "v": 2635256569, "oneway": false, "points": [[-2712.3, -1542.08], [-2723.99, -1552.19], [-2792.57, -1610.34], [-2810.9, -1626.71]], "length": 129.93}, {"u": 2635256574, "v": 53621168, "oneway": false, "points": [[-2712.3, -1542.08], [-2705.97, -1537.09], [-2692.4, -1525.75], [-2660.02, -1498.79], [-2613.72, -1458.66]], "length": 129.16}, {"u": 2635256574, "v": 53444642, "oneway": false, "points": [[-2712.3, -1542.08], [-2717.7, -1535.18], [-2743.3, -1505.65], [-2769.58, -1475.19], [-2775.24, -1469.05]], "length": 96.42}, {"u": 2637056004, "v": 53444645, "oneway": false, "points": [[-2972.37, -1636.06], [-2966.14, -1630.89], [-2951.11, -1618.41], [-2927.22, -1598.58], [-2905.28, -1580.37], [-2883.57, -1562.35], [-2880.27, -1559.61], [-2872.82, -1553.43]], "length": 129.38}, {"u": 2637056004, "v": 2635256558, "oneway": false, "points": [[-2972.37, -1636.06], [-2958.43, -1653.84], [-2932.03, -1685.03], [-2915.89, -1703.85], [-2909.89, -1710.85]], "length": 97.47}, {"u": 2637056004, "v": 3812685629, "oneway": false, "points": [[-2972.37, -1636.06], [-2978.64, -1628.81], [-2989.73, -1615.99], [-2997.73, -1605.43], [-3004.29, -1598.12], [-3029.08, -1568.77], [-3034.7, -1561.9], [-3028.8, -1556.5], [-3022.23, -1550.48]], "length": 113.81}, {"u": 2637157420, "v": 53454658, "oneway": false, "points": [[-2382.63, -1346.72], [-2441.13, -1345.13], [-2450.31, -1344.85]], "length": 67.71}, {"u": 2637157420, "v": 53590715, "oneway": true, "points": [[-2382.63, -1346.72], [-2382.4, -1353.06], [-2381.35, -1356.98], [-2380.68, -1359.49], [-2377.8, -1365.99], [-2373.84, -1371.78], [-2370.43, -1375.63], [-2364.78, -1380.68], [-2358.54, -1384.06], [-2348.99, -1387.25], [-2341.15, -1389.37], [-2327.69, -1391.75], [-2321.06, -1391.89]], "length": 85.44}, {"u": 2637710726, "v": 53727087, "oneway": false, "points": [[300.36, -3088.92], [358.35, -3079.38], [367.13, -3077.03]], "length": 67.86}, {"u": 2637710726, "v": 53624470, "oneway": false, "points": [[300.36, -3088.92], [289.51, -3090.53], [266.78, -3093.94], [254.12, -3095.77], [237.02, -3097.47], [178.09, -3101.91], [136.88, -3102.22], [131.52, -3101.93], [69.25, -3098.41], [21.97, -3096.4], [-72.83, -3092.38]], "length": 374.18}, {"u": 2637766380, "v": 4687823320, "oneway": true, "points": [[324.39, -2816.71], [339.04, -2864.79], [349.16, -2894.21], [360.88, -2921.88], [369.99, -2939.12], [405.86, -3007.03]], "length": 207.73}, {"u": 2637766387, "v": 6291669589, "oneway": false, "points": [[224.25, -2729.03], [212.26, -2717.8], [179.11, -2685.18], [167.02, -2674.4], [162.9, -2670.72], [150.54, -2660.92], [147.27, -2658.82], [128.68, -2646.96], [97.62, -2630.18], [75.41, -2620.53], [69.19, -2617.82], [67.58, -2617.23], [55.56, -2612.81]], "length": 207.19}, {"u": 2637766387, "v": 2637766380, "oneway": true, "points": [[224.25, -2729.03], [232.77, -2740.46], [244.37, -2749.66], [253.16, -2753.46], [273.72, -2760.54], [288.85, -2770.72], [297.58, -2779.03], [303.87, -2785.04], [314.14, -2799.51], [324.39, -2816.71]], "length": 137.13}, {"u": 2637766387, "v": 452816429, "oneway": false, "points": [[224.25, -2729.03], [243.89, -2743.7], [261.51, -2751.54], [286.59, -2755.47], [296.04, -2756.32], [307.54, -2757.35]], "length": 90.22}, {"u": 2637766399, "v": 452816429, "oneway": true, "points": [[269.43, -2635.19], [280.11, -2665.73], [285.78, -2683.84], [291.27, -2703.01], [307.54, -2757.35]], "length": 128.0}, {"u": 2637766399, "v": 2637766387, "oneway": true, "points": [[269.43, -2635.19], [271.11, -2655.56], [281.35, -2690.61], [286.9, -2708.41], [287.46, -2718.54], [286.84, -2726.92], [285.59, -2730.32], [284.27, -2733.94], [279.04, -2740.3], [270.63, -2743.9], [260.82, -2744.8], [247.57, -2741.47], [224.25, -2729.03]], "length": 168.95}, {"u": 2638675157, "v": 53679819, "oneway": false, "points": [[-1475.8, -2798.42], [-1484.51, -2791.53], [-1500.02, -2779.27], [-1516.47, -2761.46], [-1520.66, -2745.56], [-1524.1, -2720.79], [-1543.62, -2508.27], [-1546.6, -2484.4]], "length": 334.03}, {"u": 2638675157, "v": 53639885, "oneway": false, "points": [[-1475.8, -2798.42], [-1480.51, -2806.31], [-1495.99, -2833.58]], "length": 40.55}, {"u": 2638675157, "v": 4248941674, "oneway": false, "points": [[-1475.8, -2798.42], [-1466.69, -2805.38], [-1448.66, -2819.15]], "length": 34.16}, {"u": 2638675157, "v": 10829398901, "oneway": false, "points": [[-1475.8, -2798.42], [-1471.44, -2791.29], [-1449.47, -2756.09], [-1433.3, -2723.36], [-1426.58, -2707.96], [-1414.54, -2676.13], [-1403.5, -2636.92], [-1401.94, -2629.86], [-1400.53, -2617.63], [-1399.39, -2607.74]], "length": 207.42}, {"u": 2638675190, "v": 53679819, "oneway": false, "points": [[-1392.47, -2490.37], [-1406.01, -2490.65], [-1409.28, -2490.47], [-1503.19, -2485.42], [-1538.51, -2484.59], [-1546.6, -2484.4]], "length": 154.28}, {"u": 2638675190, "v": 2638675244, "oneway": false, "points": [[-1392.47, -2490.37], [-1391.76, -2474.99], [-1387.76, -2370.38], [-1387.43, -2363.15]], "length": 127.32}, {"u": 2638675190, "v": 10829398901, "oneway": false, "points": [[-1392.47, -2490.37], [-1392.94, -2497.87], [-1393.75, -2504.95], [-1397.54, -2572.07], [-1398.75, -2598.65], [-1399.02, -2604.57], [-1399.39, -2607.74]], "length": 117.6}, {"u": 2638675236, "v": 1180187547, "oneway": false, "points": [[-1121.64, -2515.79], [-1106.44, -2510.82]], "length": 15.99}, {"u": 2638675236, "v": 1180187578, "oneway": true, "points": [[-1121.64, -2515.79], [-1112.0, -2533.24], [-1110.46, -2536.04], [-1092.83, -2569.43], [-1079.01, -2601.57], [-1077.66, -2604.72], [-1069.59, -2624.81], [-1066.32, -2632.95], [-1060.27, -2648.01]], "length": 145.95}, {"u": 2638675244, "v": 2638675253, "oneway": false, "points": [[-1387.43, -2363.15], [-1380.09, -2362.23], [-1377.44, -2362.37], [-1375.82, -2362.45], [-1324.76, -2364.99], [-1279.33, -2367.34], [-1272.88, -2364.25]], "length": 115.44}, {"u": 2638675244, "v": 2638675190, "oneway": false, "points": [[-1387.43, -2363.15], [-1387.76, -2370.38], [-1391.76, -2474.99], [-1392.47, -2490.37]], "length": 127.32}, {"u": 2638675244, "v": 2771341200, "oneway": false, "points": [[-1387.43, -2363.15], [-1387.04, -2355.36], [-1382.63, -2266.06], [-1382.3, -2259.45]], "length": 103.82}, {"u": 2638675244, "v": 53679815, "oneway": false, "points": [[-1387.43, -2363.15], [-1400.02, -2362.84], [-1403.65, -2362.61], [-1444.23, -2359.98], [-1461.42, -2359.67], [-1478.02, -2360.77], [-1514.26, -2368.18], [-1558.93, -2381.17], [-1567.5, -2383.08]], "length": 183.01}, {"u": 2638675253, "v": 53473010, "oneway": false, "points": [[-1272.88, -2364.25], [-1266.38, -2376.56]], "length": 13.91}, {"u": 2638675253, "v": 2638675244, "oneway": false, "points": [[-1272.88, -2364.25], [-1279.33, -2367.34], [-1324.76, -2364.99], [-1375.82, -2362.45], [-1377.44, -2362.37], [-1380.09, -2362.23], [-1387.43, -2363.15]], "length": 115.44}, {"u": 2638675253, "v": 1180187677, "oneway": false, "points": [[-1272.88, -2364.25], [-1244.22, -2347.42], [-1234.07, -2341.69], [-1230.69, -2339.77], [-1225.01, -2336.56]], "length": 55.31}, {"u": 2638675264, "v": 53473010, "oneway": false, "points": [[-1204.04, -2489.11], [-1246.57, -2407.62], [-1249.53, -2402.99], [-1255.3, -2393.93], [-1266.38, -2376.56]], "length": 128.76}, {"u": 2705148498, "v": 53416322, "oneway": true, "points": [[570.09, 1080.19], [560.88, 1072.82]], "length": 11.81}, {"u": 2705148498, "v": 2705148499, "oneway": false, "points": [[570.09, 1080.19], [576.02, 1073.81], [605.15, 1042.4], [632.32, 1013.08], [637.69, 1007.3]], "length": 99.41}, {"u": 2705148499, "v": 53640824, "oneway": true, "points": [[637.69, 1007.3], [651.03, 1018.92], [707.66, 1068.31], [714.7, 1074.46]], "length": 102.19}, {"u": 2705148499, "v": 2705148498, "oneway": false, "points": [[637.69, 1007.3], [632.32, 1013.08], [605.15, 1042.4], [576.02, 1073.81], [570.09, 1080.19]], "length": 99.41}, {"u": 2705148524, "v": 53461154, "oneway": false, "points": [[280.48, 951.8], [339.11, 887.52], [341.42, 884.98], [347.81, 877.97]], "length": 99.92}, {"u": 2705151904, "v": 53416322, "oneway": false, "points": [[460.49, 1138.52], [479.62, 1155.58], [481.37, 1156.64], [483.3, 1156.91], [485.2, 1156.43], [486.76, 1155.25], [495.97, 1145.01], [539.46, 1096.64], [552.5, 1082.13], [555.31, 1079.01], [560.88, 1072.82]], "length": 144.4}, {"u": 2707919647, "v": 53461450, "oneway": false, "points": [[1015.13, 138.02], [1011.59, 144.55], [1010.91, 145.82], [1002.31, 160.19], [994.48, 167.39]], "length": 36.25}, {"u": 2707919868, "v": 53558139, "oneway": false, "points": [[2203.58, 1121.49], [2209.8, 1114.86], [2234.33, 1087.0], [2262.97, 1054.8], [2263.95, 1053.45], [2269.95, 1045.16]], "length": 101.21}, {"u": 2707919868, "v": 53461503, "oneway": false, "points": [[2203.58, 1121.49], [2193.11, 1131.67], [2137.86, 1181.84], [2129.23, 1189.66]], "length": 100.88}, {"u": 2707919868, "v": 53494572, "oneway": false, "points": [[2203.58, 1121.49], [2198.2, 1116.56], [2117.0, 1042.22], [2109.35, 1035.22]], "length": 127.76}, {"u": 2712062758, "v": 2712062759, "oneway": false, "points": [[1591.08, 2430.82], [1590.85, 2412.14]], "length": 18.69}, {"u": 2712062758, "v": 496686196, "oneway": false, "points": [[1591.08, 2430.82], [1587.14, 2431.02], [1582.36, 2432.0], [1577.67, 2433.15], [1567.05, 2437.15], [1512.87, 2456.13], [1487.06, 2464.07], [1472.03, 2469.83], [1448.31, 2480.43], [1445.24, 2480.65], [1442.21, 2479.59], [1439.52, 2477.52], [1436.66, 2472.83], [1427.1, 2454.77], [1416.73, 2434.59], [1413.99, 2430.46], [1410.59, 2427.88], [1405.12, 2427.15], [1399.54, 2428.75], [1394.23, 2430.9], [1355.27, 2450.12], [1345.39, 2455.06], [1339.78, 2458.66], [1331.79, 2463.78]], "length": 306.71}, {"u": 2712062758, "v": 496686159, "oneway": false, "points": [[1591.08, 2430.82], [1591.23, 2434.98], [1592.58, 2454.72], [1594.68, 2485.46]], "length": 54.76}, {"u": 2712062759, "v": 2712062758, "oneway": false, "points": [[1590.85, 2412.14], [1591.08, 2430.82]], "length": 18.69}, {"u": 2712062759, "v": 496686170, "oneway": false, "points": [[1590.85, 2412.14], [1583.42, 2411.99], [1580.52, 2410.62], [1579.41, 2406.1], [1580.23, 2379.16], [1582.33, 2350.25], [1583.5, 2346.9], [1585.93, 2345.69], [1589.43, 2345.61], [1596.53, 2345.98]], "length": 88.1}, {"u": 2712062759, "v": 496686170, "oneway": false, "points": [[1590.85, 2412.14], [1590.9, 2396.46], [1592.92, 2368.66], [1596.53, 2345.98]], "length": 66.52}, {"u": 2712062761, "v": 496686170, "oneway": false, "points": [[1601.63, 2322.57], [1596.53, 2345.98]], "length": 23.96}, {"u": 2712062761, "v": 2713391900, "oneway": false, "points": [[1601.63, 2322.57], [1595.31, 2320.96], [1588.31, 2320.02], [1579.96, 2319.56], [1568.0, 2319.84], [1386.24, 2325.03], [1379.73, 2325.7], [1370.84, 2327.96], [1362.55, 2331.63], [1349.62, 2339.11], [1292.12, 2371.03], [1284.74, 2375.53]], "length": 329.87}, {"u": 2712062761, "v": 2384881679, "oneway": false, "points": [[1601.63, 2322.57], [1606.43, 2309.8], [1611.71, 2295.72], [1617.94, 2281.61], [1631.06, 2248.49], [1635.91, 2226.91], [1638.33, 2212.15], [1640.33, 2190.64], [1638.17, 2158.08], [1635.83, 2122.77], [1632.31, 2089.31], [1628.74, 2055.36], [1625.04, 2020.23], [1620.14, 1973.61], [1619.18, 1960.64], [1617.97, 1944.33]], "length": 385.77}, {"u": 2713279290, "v": 13334632578, "oneway": false, "points": [[-287.01, 62.83], [-319.64, 98.27]], "length": 48.17}, {"u": 2713279290, "v": 1160692039, "oneway": true, "points": [[-287.01, 62.83], [-287.25, 57.4], [-286.09, 52.35], [-283.44, 47.74], [-276.73, 40.4]], "length": 25.88}, {"u": 2713279291, "v": 1701854143, "oneway": false, "points": [[-338.74, 119.55], [-345.33, 126.89], [-387.07, 173.4], [-400.76, 188.65], [-406.25, 194.77]], "length": 101.07}, {"u": 2713279291, "v": 53640838, "oneway": true, "points": [[-338.74, 119.55], [-324.85, 132.46], [-282.75, 170.88], [-279.29, 174.04], [-278.9, 174.39], [-271.79, 180.89], [-265.5, 186.62], [-248.33, 202.31], [-241.91, 208.16]], "length": 131.25}, {"u": 2713279291, "v": 13334632578, "oneway": true, "points": [[-338.74, 119.55], [-338.33, 109.45], [-333.44, 104.07], [-330.6, 101.62], [-327.04, 99.53], [-323.12, 98.5], [-319.64, 98.27]], "length": 32.81}, {"u": 2713292536, "v": 1142904218, "oneway": false, "points": [[577.38, 327.11], [585.11, 319.5], [586.38, 317.97], [644.5, 255.19]], "length": 98.38}, {"u": 2713292536, "v": 53423466, "oneway": false, "points": [[577.38, 327.11], [570.78, 333.41], [569.17, 335.26], [540.11, 368.85], [536.66, 372.83], [535.5, 374.25], [533.14, 376.72], [503.86, 407.21], [501.46, 409.75], [495.83, 416.48]], "length": 121.05}, {"u": 2713292536, "v": 1142903857, "oneway": false, "points": [[577.38, 327.11], [583.91, 332.36], [653.3, 393.18], [718.48, 456.01], [725.13, 462.4]], "length": 200.41}, {"u": 2713292536, "v": 53407941, "oneway": false, "points": [[577.38, 327.11], [570.12, 320.38], [535.18, 289.47], [501.76, 258.75], [468.17, 228.81], [465.57, 226.53], [458.49, 220.12], [456.31, 218.24], [436.12, 200.11], [433.81, 197.93], [427.3, 191.57]], "length": 202.24}, {"u": 2713311875, "v": 53408525, "oneway": false, "points": [[1913.22, 1463.96], [1876.02, 1494.13], [1869.71, 1499.8]], "length": 56.38}, {"u": 2713311958, "v": 366215894, "oneway": true, "points": [[743.01, 664.39], [740.12, 656.4], [704.83, 622.17], [686.75, 605.28], [668.36, 589.05], [662.21, 583.52], [655.94, 577.43], [649.14, 570.8], [647.46, 568.35], [645.89, 566.0], [645.25, 564.0], [644.43, 560.98], [644.0, 558.5], [644.06, 556.47], [644.56, 554.48], [644.88, 550.87]], "length": 154.68}, {"u": 2713311958, "v": 53423470, "oneway": true, "points": [[743.01, 664.39], [710.23, 634.15], [674.86, 601.22], [637.4, 568.78], [633.18, 565.12]], "length": 148.06}, {"u": 2713311960, "v": 316302550, "oneway": false, "points": [[551.39, 654.79], [544.9, 661.9], [516.01, 693.57], [489.58, 722.55], [484.82, 727.76]], "length": 98.78}, {"u": 2713311960, "v": 53423470, "oneway": false, "points": [[551.39, 654.79], [556.09, 649.23], [570.19, 634.17], [626.13, 572.85], [633.18, 565.12]], "length": 121.37}, {"u": 2713311960, "v": 316302558, "oneway": false, "points": [[551.39, 654.79], [557.66, 660.48], [611.44, 709.44], [693.31, 783.94], [700.35, 790.34]], "length": 201.41}, {"u": 2713311960, "v": 2713311962, "oneway": false, "points": [[551.39, 654.79], [544.13, 648.67], [485.99, 595.91], [451.1, 564.58], [448.3, 561.99], [433.22, 548.43], [407.41, 525.27], [401.95, 520.29]], "length": 201.05}, {"u": 2713311962, "v": 449907112, "oneway": false, "points": [[401.95, 520.29], [407.59, 514.11], [409.01, 512.56], [434.33, 484.79], [441.65, 476.75], [449.45, 468.21], [474.89, 440.3], [477.02, 437.97], [482.97, 431.45]], "length": 120.24}, {"u": 2713311962, "v": 53667521, "oneway": false, "points": [[401.95, 520.29], [396.0, 526.82], [393.27, 529.82], [374.12, 550.83], [352.98, 574.01], [340.44, 587.76], [335.02, 593.7]], "length": 99.34}, {"u": 2713311962, "v": 2713311960, "oneway": false, "points": [[401.95, 520.29], [407.41, 525.27], [433.22, 548.43], [448.3, 561.99], [451.1, 564.58], [485.99, 595.91], [544.13, 648.67], [551.39, 654.79]], "length": 201.05}, {"u": 2713311962, "v": 3455711385, "oneway": false, "points": [[401.95, 520.29], [394.69, 513.69], [357.2, 479.41], [342.11, 465.82], [331.84, 456.47], [330.75, 455.48], [289.22, 417.88], [283.33, 412.55]], "length": 160.26}, {"u": 2713353784, "v": 316305093, "oneway": false, "points": [[1662.26, 630.24], [1668.25, 623.19], [1724.51, 562.49], [1729.77, 557.09]], "length": 99.55}, {"u": 2713353784, "v": 53461474, "oneway": false, "points": [[1662.26, 630.24], [1655.46, 637.3], [1630.92, 662.8], [1600.91, 696.44], [1593.49, 704.54]], "length": 101.26}, {"u": 2713353784, "v": 53571775, "oneway": false, "points": [[1662.26, 630.24], [1668.78, 636.15], [1804.69, 759.2], [1811.47, 765.33]], "length": 201.28}, {"u": 2713353784, "v": 316305099, "oneway": false, "points": [[1662.26, 630.24], [1655.41, 624.01], [1520.69, 501.33], [1512.37, 493.76]], "length": 202.72}, {"u": 2713365262, "v": 53668897, "oneway": false, "points": [[1825.63, 1901.99], [1815.91, 1911.31], [1805.12, 1920.14], [1799.79, 1925.37]], "length": 34.87}, {"u": 2713365262, "v": 2384881635, "oneway": true, "points": [[1825.63, 1901.99], [1827.4, 1899.39], [1844.69, 1874.11], [1857.21, 1859.97], [1863.56, 1852.8]], "length": 62.23}, {"u": 2713365265, "v": 53578357, "oneway": true, "points": [[1185.7, 2146.09], [1152.48, 2111.4], [1137.75, 2092.41], [1131.41, 2084.41], [1125.16, 2073.76]], "length": 94.62}, {"u": 2713365265, "v": 53578366, "oneway": false, "points": [[1185.7, 2146.09], [1196.37, 2168.45], [1201.78, 2180.2], [1203.18, 2183.74], [1205.19, 2188.83], [1220.43, 2231.49], [1229.6, 2254.27], [1246.38, 2297.68], [1248.14, 2302.21]], "length": 168.24}, {"u": 2713391900, "v": 496686202, "oneway": false, "points": [[1284.74, 2375.53], [1303.03, 2408.8]], "length": 37.97}, {"u": 2713391900, "v": 2712062761, "oneway": false, "points": [[1284.74, 2375.53], [1292.12, 2371.03], [1349.62, 2339.11], [1362.55, 2331.63], [1370.84, 2327.96], [1379.73, 2325.7], [1386.24, 2325.03], [1568.0, 2319.84], [1579.96, 2319.56], [1588.31, 2320.02], [1595.31, 2320.96], [1601.63, 2322.57]], "length": 329.87}, {"u": 2713391900, "v": 53578366, "oneway": false, "points": [[1284.74, 2375.53], [1279.92, 2366.43], [1268.3, 2344.72], [1257.14, 2323.85], [1255.21, 2319.75], [1252.95, 2314.1], [1248.14, 2302.21]], "length": 82.04}, {"u": 2713391937, "v": 1699123283, "oneway": false, "points": [[915.63, 1835.88], [921.04, 1830.52], [1076.81, 1694.3], [1205.58, 1550.92], [1211.56, 1544.9]], "length": 415.75}, {"u": 2713391937, "v": 53537015, "oneway": false, "points": [[915.63, 1835.88], [910.52, 1830.35], [859.9, 1773.29], [854.94, 1767.44]], "length": 91.48}, {"u": 2713391937, "v": 53578351, "oneway": false, "points": [[915.63, 1835.88], [922.28, 1843.34], [1036.97, 1973.79]], "length": 183.69}, {"u": 2714912985, "v": 53538734, "oneway": false, "points": [[2306.81, 2278.71], [2299.33, 2271.52], [2168.07, 2144.51], [2161.66, 2138.3]], "length": 201.95}, {"u": 2714912985, "v": 1706427648, "oneway": false, "points": [[2306.81, 2278.71], [2301.86, 2283.72], [2269.99, 2316.2], [2256.07, 2330.72], [2243.57, 2343.75], [2236.36, 2351.27]], "length": 101.13}, {"u": 2714912985, "v": 1706427672, "oneway": false, "points": [[2306.81, 2278.71], [2314.29, 2271.04], [2344.17, 2240.69], [2366.4, 2217.32], [2384.01, 2198.36], [2392.68, 2190.26]], "length": 123.3}, {"u": 2714912986, "v": 53538791, "oneway": false, "points": [[2438.45, 2405.31], [2444.83, 2411.43], [2479.92, 2445.12], [2511.83, 2476.57], [2552.56, 2517.51], [2559.06, 2523.96]], "length": 169.2}, {"u": 2714912986, "v": 53626974, "oneway": false, "points": [[2438.45, 2405.31], [2431.33, 2412.12], [2416.38, 2427.21], [2373.42, 2470.97], [2367.65, 2477.37]], "length": 101.04}, {"u": 2714912986, "v": 1706427666, "oneway": false, "points": [[2438.45, 2405.31], [2443.98, 2399.47], [2515.9, 2327.21], [2522.09, 2317.58]], "length": 121.44}, {"u": 2714977035, "v": 53479821, "oneway": false, "points": [[-719.77, 46.24], [-713.74, 51.73], [-688.2, 74.95], [-687.58, 75.52], [-676.11, 85.95], [-668.62, 92.76], [-667.03, 94.22], [-666.32, 94.87], [-657.99, 102.43], [-655.47, 104.73], [-640.0, 118.8], [-639.03, 119.67], [-627.18, 130.46], [-615.34, 141.23], [-609.1, 146.91], [-577.89, 175.29], [-571.25, 181.33]], "length": 200.76}, {"u": 2714977035, "v": 53642012, "oneway": false, "points": [[-719.77, 46.24], [-727.5, 39.38], [-736.74, 31.18], [-758.66, 11.72], [-765.31, 5.82], [-767.42, 3.94], [-773.98, -1.87], [-774.65, -2.48], [-789.72, -15.85], [-796.68, -22.02], [-797.3, -22.58], [-803.43, -28.02], [-810.45, -34.24], [-830.98, -52.47], [-849.45, -68.86], [-850.12, -69.49], [-852.31, -71.56], [-854.29, -73.95], [-855.99, -76.35], [-857.83, -79.89], [-859.13, -83.69], [-860.32, -88.3]], "length": 196.14}, {"u": 2714977035, "v": 53472467, "oneway": false, "points": [[-719.77, 46.24], [-714.12, 40.11], [-697.87, 22.42], [-697.24, 21.74], [-678.1, 0.91], [-677.09, -0.18], [-660.54, -18.2], [-658.26, -20.81], [-652.09, -27.55]], "length": 100.12}, {"u": 2714977035, "v": 53441256, "oneway": false, "points": [[-719.77, 46.24], [-725.2, 52.17], [-744.37, 72.95], [-746.75, 75.6], [-758.07, 87.94], [-760.14, 90.17], [-780.41, 112.23], [-782.5, 114.5], [-787.67, 120.12]], "length": 100.35}, {"u": 2726180832, "v": 2635256558, "oneway": false, "points": [[-2845.05, -1748.83], [-2850.93, -1748.17], [-2856.6, -1746.69], [-2866.75, -1744.02], [-2875.41, -1740.72], [-2881.29, -1737.37], [-2886.76, -1733.78], [-2891.6, -1730.42], [-2896.35, -1725.83], [-2900.35, -1721.88], [-2909.89, -1710.85]], "length": 77.55}, {"u": 2771341200, "v": 53612039, "oneway": false, "points": [[-1382.3, -2259.45], [-1395.27, -2262.42], [-1399.05, -2262.32], [-1415.85, -2261.85], [-1433.11, -2260.86], [-1478.67, -2258.27], [-1514.19, -2257.48]], "length": 132.34}, {"u": 2771341200, "v": 5497859257, "oneway": false, "points": [[-1382.3, -2259.45], [-1382.15, -2253.52], [-1380.15, -2169.71], [-1379.91, -2159.31]], "length": 100.17}, {"u": 2771341200, "v": 2638675244, "oneway": false, "points": [[-1382.3, -2259.45], [-1382.63, -2266.06], [-1387.04, -2355.36], [-1387.43, -2363.15]], "length": 103.82}, {"u": 2816310343, "v": 3812685626, "oneway": false, "points": [[-2443.97, -1459.38], [-2453.4, -1447.65], [-2464.02, -1434.65]], "length": 31.84}, {"u": 2816310343, "v": 4194510097, "oneway": true, "points": [[-2443.97, -1459.38], [-2441.17, -1464.58], [-2439.96, -1466.13], [-2438.92, -1467.03], [-2435.87, -1468.55], [-2433.91, -1469.35], [-2431.68, -1469.94], [-2428.01, -1470.54], [-2423.25, -1470.88], [-2416.1, -1470.48], [-2384.6, -1468.15]], "length": 64.31}, {"u": 2816310345, "v": 53483912, "oneway": false, "points": [[-2020.48, -993.47], [-2029.74, -993.22], [-2153.61, -989.74], [-2161.58, -989.55]], "length": 141.15}, {"u": 2816310345, "v": 3811323394, "oneway": false, "points": [[-2020.48, -993.47], [-2011.28, -993.74], [-1898.97, -997.03], [-1892.78, -997.21]], "length": 127.76}, {"u": 2816310345, "v": 53643765, "oneway": false, "points": [[-2020.48, -993.47], [-2020.39, -1001.59], [-2020.02, -1036.23], [-2019.78, -1053.48]], "length": 60.02}, {"u": 2816310345, "v": 2816310353, "oneway": false, "points": [[-2020.48, -993.47], [-2020.49, -985.52], [-2022.38, -919.39]], "length": 74.11}, {"u": 2816310353, "v": 53483354, "oneway": true, "points": [[-2022.38, -919.39], [-2031.54, -919.11], [-2067.39, -918.05], [-2117.69, -916.09], [-2151.27, -915.34], [-2159.72, -914.95]], "length": 137.42}, {"u": 2816310353, "v": 2816310345, "oneway": false, "points": [[-2022.38, -919.39], [-2020.49, -985.52], [-2020.48, -993.47]], "length": 74.11}, {"u": 2816310353, "v": 53602671, "oneway": false, "points": [[-2022.38, -919.39], [-2023.06, -889.47], [-2023.12, -885.24], [-2023.79, -863.55], [-2024.02, -856.15], [-2024.11, -853.25], [-2023.82, -843.83]], "length": 75.58}, {"u": 2848493171, "v": 2848493172, "oneway": false, "points": [[-2770.72, -192.11], [-2766.06, -190.77], [-2758.16, -189.81], [-2746.08, -189.72], [-2742.1, -189.82], [-2736.8, -189.95], [-2732.81, -190.04]], "length": 38.15}, {"u": 2848493171, "v": 3607816606, "oneway": true, "points": [[-2770.72, -192.11], [-2778.52, -190.76], [-2832.11, -199.22], [-2843.04, -203.98]], "length": 74.1}, {"u": 2848493172, "v": 53485102, "oneway": false, "points": [[-2732.81, -190.04], [-2733.08, -200.21], [-2733.11, -201.26], [-2734.23, -231.37], [-2734.83, -247.3], [-2735.13, -253.29], [-2735.35, -258.24], [-2735.83, -275.42], [-2736.08, -283.11]], "length": 93.13}, {"u": 2848493172, "v": 3894523242, "oneway": false, "points": [[-2732.81, -190.04], [-2722.55, -190.29], [-2706.37, -190.68]], "length": 26.46}, {"u": 2848493172, "v": 2848493171, "oneway": false, "points": [[-2732.81, -190.04], [-2736.8, -189.95], [-2742.1, -189.82], [-2746.08, -189.72], [-2758.16, -189.81], [-2766.06, -190.77], [-2770.72, -192.11]], "length": 38.15}, {"u": 2848493173, "v": 1857601486, "oneway": false, "points": [[-2623.51, -192.45], [-2623.71, -198.63]], "length": 6.18}, {"u": 2848493173, "v": 3894523242, "oneway": true, "points": [[-2623.51, -192.45], [-2632.07, -192.2], [-2677.7, -190.19], [-2698.12, -189.36], [-2706.37, -190.68]], "length": 83.03}, {"u": 2848493174, "v": 3607816648, "oneway": false, "points": [[-2540.36, -203.83], [-2539.89, -194.04]], "length": 9.8}, {"u": 2848493174, "v": 53461796, "oneway": true, "points": [[-2540.36, -203.83], [-2531.44, -204.51], [-2511.77, -205.53], [-2493.63, -206.41], [-2464.73, -207.78], [-2457.39, -208.08], [-2452.82, -208.26], [-2423.34, -209.73], [-2370.27, -212.41]], "length": 170.31}, {"u": 2848493174, "v": 53516186, "oneway": false, "points": [[-2540.36, -203.83], [-2540.59, -211.19], [-2541.62, -246.03], [-2545.92, -392.31], [-2546.15, -400.14]], "length": 196.4}, {"u": 2856773811, "v": 2857394107, "oneway": false, "points": [[1280.67, 2800.49], [1291.57, 2804.58], [1321.31, 2810.74], [1336.91, 2814.78], [1342.23, 2816.15], [1360.97, 2819.18], [1374.32, 2819.03], [1412.5, 2818.39], [1494.88, 2814.29], [1498.46, 2814.13], [1502.7, 2813.64], [1504.69, 2813.22]], "length": 226.51}, {"u": 2857394107, "v": 316306590, "oneway": false, "points": [[1504.69, 2813.22], [1506.53, 2812.22], [1514.14, 2807.62]], "length": 10.98}, {"u": 2857394107, "v": 2856773811, "oneway": false, "points": [[1504.69, 2813.22], [1502.7, 2813.64], [1498.46, 2814.13], [1494.88, 2814.29], [1412.5, 2818.39], [1374.32, 2819.03], [1360.97, 2819.18], [1342.23, 2816.15], [1336.91, 2814.78], [1321.31, 2810.74], [1291.57, 2804.58], [1280.67, 2800.49]], "length": 226.51}, {"u": 2858999189, "v": 53538743, "oneway": true, "points": [[-18.92, 408.95], [-13.74, 403.35], [21.82, 364.81], [67.85, 314.92], [108.68, 272.09], [111.88, 268.79], [117.77, 262.27]], "length": 200.51}, {"u": 2858999189, "v": 53541408, "oneway": true, "points": [[-18.92, 408.95], [-10.27, 416.97], [35.8, 459.4], [42.21, 465.22]], "length": 83.09}, {"u": 2859093884, "v": 53589794, "oneway": false, "points": [[2178.28, 1541.28], [2184.21, 1550.38], [2193.7, 1564.23], [2214.98, 1598.84], [2235.27, 1631.86], [2243.48, 1645.22], [2251.94, 1658.99], [2270.79, 1689.66]], "length": 174.87}, {"u": 2859093884, "v": 2384881527, "oneway": false, "points": [[2178.28, 1541.28], [2185.2, 1532.77], [2210.79, 1500.57], [2212.97, 1497.83], [2217.34, 1492.66]], "length": 62.37}, {"u": 2859093884, "v": 53636372, "oneway": false, "points": [[2178.28, 1541.28], [2173.41, 1532.91], [2141.67, 1478.38], [2137.06, 1470.47]], "length": 81.93}, {"u": 2859093884, "v": 2384881533, "oneway": false, "points": [[2178.28, 1541.28], [2174.37, 1545.78], [2154.88, 1568.17]], "length": 35.65}, {"u": 2859245506, "v": 53508176, "oneway": false, "points": [[-939.96, -529.86], [-940.2, -538.19], [-940.25, -540.71], [-940.83, -570.02], [-941.25, -589.62], [-941.25, -591.67], [-941.5, -600.37], [-941.2, -605.72], [-940.04, -609.86], [-938.48, -613.0], [-936.17, -616.31], [-903.37, -652.83], [-896.94, -659.93]], "length": 146.4}, {"u": 2859245506, "v": 3241106071, "oneway": false, "points": [[-939.96, -529.86], [-917.66, -530.68], [-913.78, -530.36], [-910.55, -529.87], [-908.09, -529.3], [-905.53, -528.54], [-902.53, -527.3], [-900.36, -525.84], [-899.2, -524.99], [-883.87, -511.53], [-875.09, -503.69], [-869.26, -498.57], [-860.37, -490.75], [-845.53, -477.71], [-823.93, -458.72], [-821.69, -456.71], [-819.42, -454.45], [-815.37, -450.28]], "length": 154.28}, {"u": 2859245506, "v": 2859245565, "oneway": false, "points": [[-939.96, -529.86], [-946.6, -529.56], [-977.64, -528.0], [-987.32, -527.51]], "length": 47.42}, {"u": 2859245549, "v": 3227608153, "oneway": false, "points": [[43.15, 194.64], [36.63, 201.87], [34.53, 204.19], [14.68, 226.21], [0.32, 242.11], [-11.74, 255.49], [-37.7, 284.24], [-59.41, 308.3], [-73.24, 323.65], [-82.41, 333.81], [-92.31, 344.77]], "length": 202.21}, {"u": 2859245549, "v": 53414098, "oneway": false, "points": [[43.15, 194.64], [48.26, 188.98], [49.94, 187.12], [62.09, 173.65], [66.09, 169.23], [71.9, 162.78], [90.66, 141.99], [97.57, 134.33], [109.12, 121.53], [116.11, 113.78], [117.81, 111.96], [125.14, 103.78]], "length": 122.38}, {"u": 2859245549, "v": 53538743, "oneway": false, "points": [[43.15, 194.64], [49.69, 200.8], [79.62, 227.69], [111.24, 256.42], [117.77, 262.27]], "length": 100.71}, {"u": 2859245549, "v": 53538741, "oneway": false, "points": [[43.15, 194.64], [37.12, 188.97], [27.57, 180.04], [-11.7, 143.31], [-23.77, 130.92], [-29.29, 125.41]], "length": 100.22}, {"u": 2859245565, "v": 4173789198, "oneway": false, "points": [[-987.32, -527.51], [-986.8, -518.37], [-986.67, -516.01], [-984.96, -486.24], [-984.74, -482.41], [-981.24, -421.27], [-980.79, -413.37], [-980.62, -410.48], [-980.1, -401.29]], "length": 126.43}, {"u": 2859245565, "v": 2859245573, "oneway": false, "points": [[-987.32, -527.51], [-997.09, -527.02], [-1035.6, -525.07], [-1074.86, -523.11], [-1082.14, -522.73]], "length": 94.94}, {"u": 2859245565, "v": 2859245506, "oneway": false, "points": [[-987.32, -527.51], [-977.64, -528.0], [-946.6, -529.56], [-939.96, -529.86]], "length": 47.42}, {"u": 2859245573, "v": 53499299, "oneway": false, "points": [[-1082.14, -522.73], [-1082.55, -531.21], [-1082.69, -533.9], [-1084.87, -578.31], [-1085.17, -583.05], [-1089.33, -663.87], [-1090.36, -686.06], [-1089.01, -694.31]], "length": 171.9}, {"u": 2859245573, "v": 53582203, "oneway": false, "points": [[-1082.14, -522.73], [-1092.06, -521.92], [-1204.41, -516.5], [-1209.22, -516.26], [-1214.64, -515.98]], "length": 132.68}, {"u": 2859245573, "v": 2859245565, "oneway": false, "points": [[-1082.14, -522.73], [-1074.86, -523.11], [-1035.6, -525.07], [-997.09, -527.02], [-987.32, -527.51]], "length": 94.94}, {"u": 2859245573, "v": 2859245574, "oneway": false, "points": [[-1082.14, -522.73], [-1081.75, -513.13], [-1081.53, -510.18], [-1078.78, -452.76], [-1077.8, -434.16], [-1077.56, -429.36], [-1076.5, -406.5], [-1075.96, -396.6]], "length": 126.28}, {"u": 2859245574, "v": 2859245573, "oneway": false, "points": [[-1075.96, -396.6], [-1076.5, -406.5], [-1077.56, -429.36], [-1077.8, -434.16], [-1078.78, -452.76], [-1081.53, -510.18], [-1081.75, -513.13], [-1082.14, -522.73]], "length": 126.28}, {"u": 2859245574, "v": 4173789198, "oneway": true, "points": [[-1075.96, -396.6], [-1068.23, -396.98], [-1028.22, -398.93], [-1025.76, -399.06], [-989.5, -400.83], [-980.1, -401.29]], "length": 95.98}, {"u": 2859245574, "v": 450714559, "oneway": false, "points": [[-1075.96, -396.6], [-1076.03, -385.72], [-1074.53, -356.59], [-1074.38, -353.16], [-1073.53, -334.2], [-1073.41, -331.82], [-1073.19, -326.68], [-1072.29, -310.71], [-1070.39, -277.09], [-1070.19, -274.06], [-1069.25, -263.74]], "length": 133.06}, {"u": 2859245582, "v": 450714993, "oneway": true, "points": [[-1199.8, -257.26], [-1212.01, -257.32], [-1280.73, -253.57], [-1323.61, -251.27], [-1331.63, -250.77], [-1340.3, -250.45], [-1379.75, -248.69], [-1441.34, -245.96], [-1446.24, -245.75], [-1458.1, -245.22]], "length": 258.6}, {"u": 2859245582, "v": 53582205, "oneway": false, "points": [[-1199.8, -257.26], [-1199.82, -267.81], [-1199.85, -271.97], [-1202.76, -331.17], [-1202.82, -332.63], [-1203.0, -336.76], [-1203.4, -341.99], [-1203.82, -351.33], [-1205.67, -379.01], [-1206.64, -389.29]], "length": 132.23}, {"u": 2859245582, "v": 2859245583, "oneway": false, "points": [[-1199.8, -257.26], [-1199.64, -244.96], [-1197.81, -204.88], [-1196.43, -175.04], [-1193.56, -125.49], [-1193.13, -114.34], [-1192.8, -107.05], [-1191.29, -79.64], [-1189.22, -70.4], [-1188.27, -62.17], [-1185.62, -12.28], [-1184.34, 11.7], [-1183.85, 20.99], [-1183.37, 29.37]], "length": 287.27}, {"u": 2859245583, "v": 450716051, "oneway": false, "points": [[-1183.37, 29.37], [-1192.34, 30.66], [-1304.08, 35.66], [-1348.48, 37.8], [-1440.61, 42.21], [-1449.29, 42.64]], "length": 266.29}, {"u": 2859245583, "v": 53434711, "oneway": false, "points": [[-1183.37, 29.37], [-1182.71, 38.64], [-1181.52, 59.41], [-1180.72, 73.25], [-1179.24, 98.97], [-1178.48, 113.51], [-1178.0, 116.41], [-1177.03, 118.95], [-1175.49, 120.94], [-1173.43, 122.03], [-1169.11, 121.81], [-1143.91, 120.5], [-1107.45, 118.61], [-1093.98, 117.9]], "length": 174.34}, {"u": 2859245583, "v": 2859245582, "oneway": false, "points": [[-1183.37, 29.37], [-1183.85, 20.99], [-1184.34, 11.7], [-1185.62, -12.28], [-1188.27, -62.17], [-1189.22, -70.4], [-1191.29, -79.64], [-1192.8, -107.05], [-1193.13, -114.34], [-1193.56, -125.49], [-1196.43, -175.04], [-1197.81, -204.88], [-1199.64, -244.96], [-1199.8, -257.26]], "length": 287.27}, {"u": 2859245583, "v": 53441265, "oneway": false, "points": [[-1183.37, 29.37], [-1174.42, 28.17], [-1140.02, 26.48], [-1132.81, 26.19], [-1092.83, 24.09], [-1057.1, 22.37], [-1030.58, 21.25], [-1021.42, 21.05]], "length": 162.2}, {"u": 2859302267, "v": 2859302272, "oneway": false, "points": [[-1497.21, -868.33], [-1489.15, -868.53], [-1363.02, -874.69]], "length": 134.34}, {"u": 2859302267, "v": 1179459773, "oneway": false, "points": [[-1497.21, -868.33], [-1505.6, -867.94], [-1513.15, -867.57]], "length": 15.96}, {"u": 2859302267, "v": 1179459672, "oneway": true, "points": [[-1497.21, -868.33], [-1496.75, -858.41], [-1495.97, -833.1], [-1495.94, -819.74], [-1495.63, -775.49], [-1494.45, -749.21], [-1494.3, -747.51]], "length": 120.88}, {"u": 2859302272, "v": 1179956582, "oneway": false, "points": [[-1363.02, -874.69], [-1362.59, -863.06], [-1361.65, -844.37], [-1360.25, -813.41], [-1360.11, -810.35], [-1359.44, -795.51], [-1358.87, -782.79]], "length": 91.99}, {"u": 2859302272, "v": 13146093508, "oneway": false, "points": [[-1363.02, -874.69], [-1361.08, -874.76], [-1359.28, -874.78]], "length": 3.74}, {"u": 2859302272, "v": 2859302267, "oneway": false, "points": [[-1363.02, -874.69], [-1489.15, -868.53], [-1497.21, -868.33]], "length": 134.34}, {"u": 2859304393, "v": 482811372, "oneway": false, "points": [[-2150.71, -548.45], [-2142.08, -548.95], [-2139.95, -549.01], [-2129.95, -549.32], [-2118.97, -549.63], [-2101.63, -550.27], [-2096.73, -550.45], [-2079.93, -551.08]], "length": 70.83}, {"u": 2859304393, "v": 1180005838, "oneway": false, "points": [[-2150.71, -548.45], [-2150.25, -476.98], [-2150.2, -468.38]], "length": 80.07}, {"u": 2859304393, "v": 2859304395, "oneway": false, "points": [[-2150.71, -548.45], [-2150.81, -550.63], [-2150.99, -553.21], [-2151.22, -555.68], [-2151.63, -558.65], [-2152.11, -561.3], [-2152.61, -563.98], [-2153.37, -567.23], [-2154.36, -570.3], [-2155.45, -573.09], [-2156.31, -575.13], [-2157.64, -577.39], [-2159.2, -579.4]], "length": 32.61}, {"u": 2859304395, "v": 1426438835, "oneway": true, "points": [[-2159.2, -579.4], [-2157.6, -589.05], [-2155.36, -594.94], [-2154.4, -598.41], [-2153.51, -602.23]], "length": 23.6}, {"u": 2859304395, "v": 2859304393, "oneway": false, "points": [[-2159.2, -579.4], [-2157.64, -577.39], [-2156.31, -575.13], [-2155.45, -573.09], [-2154.36, -570.3], [-2153.37, -567.23], [-2152.61, -563.98], [-2152.11, -561.3], [-2151.63, -558.65], [-2151.22, -555.68], [-2150.99, -553.21], [-2150.81, -550.63], [-2150.71, -548.45]], "length": 32.61}, {"u": 2859304395, "v": 2859304803, "oneway": false, "points": [[-2159.2, -579.4], [-2163.32, -582.64], [-2228.15, -634.57], [-2261.09, -660.29], [-2296.45, -687.88], [-2329.38, -713.59], [-2347.89, -728.04], [-2354.48, -733.18], [-2377.17, -750.88], [-2384.81, -756.86], [-2388.8, -759.96]], "length": 292.09}, {"u": 2859304803, "v": 1426438819, "oneway": false, "points": [[-2388.8, -759.96], [-2441.7, -801.26]], "length": 67.11}, {"u": 2859304803, "v": 2859304395, "oneway": false, "points": [[-2388.8, -759.96], [-2384.81, -756.86], [-2377.17, -750.88], [-2354.48, -733.18], [-2347.89, -728.04], [-2329.38, -713.59], [-2296.45, -687.88], [-2261.09, -660.29], [-2228.15, -634.57], [-2163.32, -582.64], [-2159.2, -579.4]], "length": 292.09}, {"u": 2859304803, "v": 1180005819, "oneway": true, "points": [[-2388.8, -759.96], [-2407.47, -767.39], [-2422.45, -779.47], [-2425.36, -781.3], [-2428.26, -782.76], [-2447.32, -789.51], [-2521.78, -811.88], [-2533.82, -814.66], [-2538.57, -815.59], [-2545.47, -815.95], [-2548.61, -815.95], [-2559.46, -820.8]], "length": 183.12}, {"u": 2925569869, "v": 53490496, "oneway": false, "points": [[2761.37, 1847.82], [2760.83, 1849.67]], "length": 1.93}, {"u": 2925569869, "v": 1192282519, "oneway": true, "points": [[2761.37, 1847.82], [2765.85, 1850.8]], "length": 5.38}, {"u": 2925569869, "v": 53611268, "oneway": false, "points": [[2761.37, 1847.82], [2762.98, 1844.66], [2768.46, 1837.67], [2774.7, 1810.93], [2776.17, 1804.59], [2783.02, 1773.64], [2783.63, 1770.89], [2785.0, 1764.7]], "length": 87.25}, {"u": 2925570317, "v": 53461474, "oneway": false, "points": [[1526.39, 779.86], [1532.22, 773.36], [1587.48, 711.88], [1593.49, 704.54]], "length": 100.88}, {"u": 2925570317, "v": 53515071, "oneway": false, "points": [[1526.39, 779.86], [1520.38, 786.45], [1501.15, 807.87], [1497.09, 812.37], [1487.44, 823.09], [1485.89, 824.81], [1479.9, 831.47], [1477.33, 834.31], [1465.3, 848.17], [1459.85, 854.01]], "length": 99.63}, {"u": 2925570317, "v": 53432346, "oneway": false, "points": [[1526.39, 779.86], [1532.58, 785.34], [1555.08, 804.87], [1556.82, 806.42], [1558.15, 807.61], [1570.29, 818.48], [1571.73, 819.78], [1575.03, 822.73], [1607.37, 851.65], [1616.35, 859.75], [1624.75, 867.27], [1632.11, 873.91], [1668.92, 907.76], [1675.88, 914.05]], "length": 200.9}, {"u": 2925570317, "v": 53432339, "oneway": false, "points": [[1526.39, 779.86], [1519.91, 774.21], [1495.76, 751.62], [1436.93, 697.44], [1429.23, 690.88], [1423.58, 685.52], [1423.02, 684.99], [1411.53, 674.65], [1408.76, 672.1], [1393.81, 658.28], [1393.29, 657.81], [1391.74, 656.33], [1385.36, 650.5], [1377.36, 643.19]], "length": 202.22}, {"u": 2938172405, "v": 387186883, "oneway": true, "points": [[-273.05, -981.27], [-256.84, -982.68]], "length": 16.28}, {"u": 2938172405, "v": 4091376224, "oneway": true, "points": [[-273.05, -981.27], [-276.98, -990.75], [-285.53, -1008.64], [-292.45, -1021.49]], "length": 44.68}, {"u": 2938172406, "v": 2938172405, "oneway": true, "points": [[-270.12, -974.47], [-273.05, -981.27]], "length": 7.41}, {"u": 2938172406, "v": 387186935, "oneway": true, "points": [[-270.12, -974.47], [-274.68, -970.98], [-279.5, -967.69], [-284.15, -965.4], [-290.4, -963.4], [-304.32, -961.86]], "length": 37.32}, {"u": 2948594974, "v": 366215913, "oneway": false, "points": [[1080.76, 972.05], [1091.04, 960.61]], "length": 15.38}, {"u": 2948594974, "v": 53430018, "oneway": false, "points": [[1080.76, 972.05], [1074.25, 979.21], [1063.03, 991.57], [1050.15, 1005.75], [1039.35, 1017.64]], "length": 61.58}, {"u": 2948594974, "v": 449920083, "oneway": true, "points": [[1080.76, 972.05], [1071.64, 963.62], [1024.48, 919.99], [1010.46, 907.02], [964.92, 864.9]], "length": 157.79}, {"u": 2948595023, "v": 2627868774, "oneway": false, "points": [[2614.48, 2250.19], [2618.33, 2251.54], [2625.01, 2253.35]], "length": 11.0}, {"u": 2948595023, "v": 2627868777, "oneway": true, "points": [[2614.48, 2250.19], [2612.95, 2247.89], [2605.32, 2237.96], [2574.92, 2182.24], [2573.32, 2178.23]], "length": 83.07}, {"u": 2948595043, "v": 1706427684, "oneway": true, "points": [[2699.46, 2370.57], [2698.76, 2366.6], [2699.23, 2362.6]], "length": 8.06}, {"u": 2948595076, "v": 53408000, "oneway": false, "points": [[1309.77, 717.99], [1303.32, 725.13], [1300.82, 727.89], [1297.11, 732.0], [1288.75, 741.25], [1286.05, 744.25], [1250.82, 783.27], [1242.42, 792.54], [1239.92, 795.3], [1236.94, 798.61], [1217.64, 819.96], [1204.37, 834.66], [1178.8, 862.96], [1174.55, 867.66]], "length": 201.7}, {"u": 2948595076, "v": 53515071, "oneway": false, "points": [[1309.77, 717.99], [1316.6, 724.18], [1319.32, 726.65], [1386.66, 787.69], [1394.22, 794.53], [1397.0, 797.06], [1409.98, 808.82], [1438.19, 834.43], [1442.27, 838.06], [1454.84, 849.25], [1459.85, 854.01]], "length": 202.55}, {"u": 2948595076, "v": 1192248462, "oneway": false, "points": [[1309.77, 717.99], [1303.3, 712.55], [1300.95, 710.57], [1270.85, 685.13], [1255.67, 672.3]], "length": 70.82}, {"u": 2948595076, "v": 53432339, "oneway": false, "points": [[1309.77, 717.99], [1315.18, 712.75], [1353.42, 669.68], [1354.48, 668.51], [1370.88, 650.35], [1377.36, 643.19]], "length": 100.84}, {"u": 2948601585, "v": 3235649725, "oneway": false, "points": [[1025.54, 732.79], [1031.55, 726.24], [1081.73, 671.5], [1090.04, 662.24], [1094.51, 657.27], [1097.8, 653.77], [1129.22, 618.25], [1135.82, 610.81], [1144.41, 601.07], [1148.1, 596.12], [1157.94, 584.57], [1189.99, 551.27], [1191.9, 549.18], [1196.9, 543.72], [1219.62, 518.87], [1222.61, 515.59], [1229.07, 508.53]], "length": 302.91}, {"u": 2948601585, "v": 366215907, "oneway": false, "points": [[1025.54, 732.79], [1019.37, 739.57], [995.7, 765.53], [987.68, 774.32], [985.51, 776.71], [976.85, 786.2], [975.1, 788.13], [952.13, 813.33], [949.99, 815.68], [941.86, 824.59]], "length": 124.21}, {"u": 2948601585, "v": 53408000, "oneway": false, "points": [[1025.54, 732.79], [1031.31, 738.02], [1094.91, 795.57], [1106.26, 805.85], [1121.92, 820.02], [1166.0, 859.9], [1168.34, 862.02], [1174.55, 867.66]], "length": 200.98}, {"u": 2948601585, "v": 53407975, "oneway": false, "points": [[1025.54, 732.79], [1018.25, 726.33], [959.09, 673.87], [956.39, 671.47], [929.34, 647.49], [881.42, 603.97], [875.11, 598.33]], "length": 201.77}, {"u": 2948601586, "v": 53461503, "oneway": false, "points": [[2024.07, 1287.73], [2030.79, 1281.45], [2031.93, 1280.39], [2060.36, 1254.73], [2063.23, 1252.14], [2122.04, 1196.47], [2129.23, 1189.66]], "length": 143.8}, {"u": 2948601586, "v": 1142904042, "oneway": false, "points": [[2024.07, 1287.73], [2015.97, 1293.96], [2014.15, 1295.3], [2012.33, 1296.64], [1990.06, 1305.12], [1985.68, 1306.86], [1972.95, 1310.68], [1967.39, 1311.67], [1961.74, 1311.22]], "length": 67.89}, {"u": 2948601586, "v": 3208339054, "oneway": false, "points": [[2024.07, 1287.73], [2032.63, 1299.18], [2050.07, 1327.58], [2058.04, 1342.08]], "length": 64.17}, {"u": 2948601586, "v": 53432356, "oneway": false, "points": [[2024.07, 1287.73], [2018.85, 1281.37], [2003.08, 1262.27], [1998.45, 1256.9], [1996.22, 1254.35], [1991.03, 1248.39]], "length": 51.38}, {"u": 2955373055, "v": 449967724, "oneway": true, "points": [[2946.66, 2605.82], [2942.02, 2607.49], [2935.95, 2609.21], [2930.5, 2610.45], [2923.97, 2611.93], [2909.03, 2616.87], [2886.29, 2627.14], [2870.42, 2637.4], [2860.48, 2643.84]], "length": 94.95}, {"u": 2955373055, "v": 447178140, "oneway": false, "points": [[2946.66, 2605.82], [2946.1, 2595.18], [2945.93, 2592.01], [2943.66, 2561.91], [2943.09, 2554.23], [2941.61, 2535.35], [2941.34, 2532.02], [2940.12, 2520.04], [2938.4, 2513.52], [2935.71, 2506.07], [2935.04, 2505.11], [2932.22, 2501.05], [2924.2, 2492.4], [2912.62, 2481.91], [2892.88, 2465.25], [2870.61, 2442.79], [2869.86, 2442.03], [2869.03, 2441.2], [2866.12, 2438.36], [2803.72, 2377.52], [2794.67, 2368.7], [2791.59, 2365.87], [2787.3, 2362.46], [2781.99, 2359.12], [2774.59, 2355.24], [2768.68, 2352.94], [2762.63, 2351.09]], "length": 334.75}, {"u": 2985254834, "v": 1180005834, "oneway": false, "points": [[-2014.69, -445.33], [-2015.69, -466.08], [-2015.96, -475.56]], "length": 30.26}, {"u": 2987035532, "v": 2987035535, "oneway": true, "points": [[-2466.85, -822.79], [-2474.12, -816.07], [-2479.37, -815.63], [-2494.04, -814.4]], "length": 29.89}, {"u": 2987035532, "v": 13030502563, "oneway": false, "points": [[-2466.85, -822.79], [-2477.92, -832.16], [-2496.9, -847.94]], "length": 39.19}, {"u": 2987035532, "v": 1426438819, "oneway": false, "points": [[-2466.85, -822.79], [-2455.83, -813.4], [-2450.2, -808.41], [-2441.7, -801.26]], "length": 33.11}, {"u": 2987035535, "v": 1426438819, "oneway": true, "points": [[-2494.04, -814.4], [-2488.95, -810.07], [-2485.7, -807.49], [-2482.37, -805.56], [-2476.96, -803.37], [-2468.3, -800.72], [-2459.78, -798.72], [-2456.23, -798.23], [-2452.77, -798.27], [-2441.7, -801.26]], "length": 56.84}, {"u": 2987035535, "v": 1180005819, "oneway": true, "points": [[-2494.04, -814.4], [-2503.7, -814.29], [-2518.22, -816.13], [-2529.85, -818.14], [-2536.79, -818.66], [-2545.49, -818.75], [-2548.7, -818.74], [-2559.46, -820.8]], "length": 65.92}, {"u": 2988375113, "v": 53677752, "oneway": true, "points": [[-2793.25, 13.13], [-2796.27, 13.08], [-2799.13, 12.15], [-2801.59, 10.41], [-2803.41, 8.03], [-2804.46, 5.23], [-2804.62, 2.23], [-2803.89, -0.68], [-2802.33, -3.25]], "length": 24.04}, {"u": 2988375113, "v": 53486858, "oneway": false, "points": [[-2793.25, 13.13], [-2793.41, 26.75], [-2793.09, 33.57], [-2792.84, 41.69]], "length": 28.58}, {"u": 2988748407, "v": 53589715, "oneway": false, "points": [[-2252.61, -55.41], [-2230.47, -56.1]], "length": 22.15}, {"u": 2988748407, "v": 53589708, "oneway": true, "points": [[-2252.61, -55.41], [-2253.9, -87.14], [-2254.28, -96.59], [-2254.83, -110.43]], "length": 55.07}, {"u": 3031362525, "v": 53580611, "oneway": false, "points": [[-2426.04, 281.41], [-2418.07, 286.66]], "length": 9.54}, {"u": 3031362525, "v": 53580606, "oneway": false, "points": [[-2426.04, 281.41], [-2425.74, 269.72], [-2426.96, 254.05], [-2427.11, 247.98]], "length": 33.49}, {"u": 3031362525, "v": 450505541, "oneway": false, "points": [[-2426.04, 281.41], [-2436.26, 291.88], [-2459.37, 292.86], [-2501.8, 294.45]], "length": 80.22}, {"u": 3035654115, "v": 2987035532, "oneway": true, "points": [[-2454.01, -823.58], [-2466.85, -822.79]], "length": 12.86}, {"u": 3035654115, "v": 53556383, "oneway": false, "points": [[-2454.01, -823.58], [-2409.27, -825.65], [-2395.52, -826.38], [-2386.43, -826.82], [-2338.48, -828.96]], "length": 115.66}, {"u": 3088209646, "v": 2858999189, "oneway": true, "points": [[-87.06, 482.8], [-83.22, 478.64], [-78.39, 473.41], [-28.68, 419.54], [-25.41, 415.98], [-24.62, 415.14], [-18.92, 408.95]], "length": 100.48}, {"u": 3088209646, "v": 3227608153, "oneway": false, "points": [[-87.06, 482.8], [-87.24, 474.26], [-87.46, 464.13], [-87.67, 460.49], [-91.24, 364.9], [-92.31, 344.77]], "length": 138.13}, {"u": 3088209646, "v": 316292003, "oneway": true, "points": [[-87.06, 482.8], [-98.71, 472.27], [-122.43, 450.87], [-152.67, 423.59], [-159.51, 417.41]], "length": 97.6}, {"u": 3088209647, "v": 3088209646, "oneway": true, "points": [[-25.05, 539.35], [-31.74, 533.52], [-81.81, 487.72], [-87.06, 482.8]], "length": 83.93}, {"u": 3088209649, "v": 3088209647, "oneway": true, "points": [[50.0, 607.82], [42.72, 601.58], [-18.89, 545.4], [-25.05, 539.35]], "length": 101.61}, {"u": 3088209649, "v": 53425702, "oneway": false, "points": [[50.0, 607.82], [55.48, 602.03], [57.1, 600.23], [110.81, 540.38], [111.99, 539.06], [117.14, 533.32]], "length": 100.29}, {"u": 3088209661, "v": 316292008, "oneway": false, "points": [[168.54, 776.15], [189.64, 752.49], [191.94, 750.04], [198.24, 743.19]], "length": 44.37}, {"u": 3157337335, "v": 53637455, "oneway": false, "points": [[-309.08, 282.45], [-315.62, 289.68], [-317.11, 291.33], [-329.54, 305.07], [-331.92, 307.71], [-352.14, 330.38], [-371.93, 351.96], [-377.1, 357.44]], "length": 101.25}, {"u": 3157337335, "v": 53640838, "oneway": false, "points": [[-309.08, 282.45], [-303.5, 276.28], [-301.28, 273.81], [-286.54, 257.51], [-282.3, 252.84], [-275.57, 245.39], [-250.09, 217.22], [-247.48, 214.33], [-241.91, 208.16]], "length": 100.16}, {"u": 3157337335, "v": 1701854143, "oneway": true, "points": [[-309.08, 282.45], [-315.61, 276.56], [-359.92, 236.56], [-362.01, 234.68], [-392.47, 207.19], [-406.25, 194.77]], "length": 130.89}, {"u": 3208339050, "v": 3786926320, "oneway": false, "points": [[2592.15, 1269.29], [2644.22, 1330.82], [2661.16, 1351.16], [2720.23, 1371.88], [2728.37, 1374.73]], "length": 178.3}, {"u": 3208339050, "v": 3208342165, "oneway": false, "points": [[2592.15, 1269.29], [2497.98, 1156.12], [2490.81, 1149.4], [2486.35, 1145.22]], "length": 163.16}, {"u": 3208339050, "v": 53558151, "oneway": false, "points": [[2592.15, 1269.29], [2537.0, 1314.77], [2530.21, 1320.38]], "length": 80.29}, {"u": 3208339051, "v": 53437418, "oneway": false, "points": [[2185.13, 1241.19], [2190.32, 1246.31], [2191.87, 1247.84], [2216.03, 1271.74], [2224.17, 1278.86], [2245.71, 1297.46], [2252.36, 1303.51]], "length": 91.72}, {"u": 3208339051, "v": 3208342164, "oneway": false, "points": [[2185.13, 1241.19], [2191.89, 1234.86], [2222.9, 1202.97], [2258.36, 1163.52], [2314.69, 1102.34], [2316.37, 1100.51], [2322.87, 1093.46]], "length": 202.02}, {"u": 3208339051, "v": 3208339054, "oneway": false, "points": [[2185.13, 1241.19], [2174.28, 1250.15], [2157.55, 1266.38], [2104.33, 1307.6], [2066.99, 1335.9], [2058.04, 1342.08]], "length": 162.42}, {"u": 3208339054, "v": 3208339051, "oneway": false, "points": [[2058.04, 1342.08], [2066.99, 1335.9], [2104.33, 1307.6], [2157.55, 1266.38], [2174.28, 1250.15], [2185.13, 1241.19]], "length": 162.42}, {"u": 3208339054, "v": 2948601586, "oneway": false, "points": [[2058.04, 1342.08], [2050.07, 1327.58], [2032.63, 1299.18], [2024.07, 1287.73]], "length": 64.17}, {"u": 3208339054, "v": 53539556, "oneway": false, "points": [[2058.04, 1342.08], [2061.74, 1347.92], [2066.23, 1355.61], [2068.45, 1358.86]], "length": 19.75}, {"u": 3208342164, "v": 3208339051, "oneway": false, "points": [[2322.87, 1093.46], [2316.37, 1100.51], [2314.69, 1102.34], [2258.36, 1163.52], [2222.9, 1202.97], [2191.89, 1234.86], [2185.13, 1241.19]], "length": 202.02}, {"u": 3208342164, "v": 53558139, "oneway": false, "points": [[2322.87, 1093.46], [2316.37, 1087.01], [2282.48, 1056.39], [2280.98, 1055.04], [2269.95, 1045.16]], "length": 71.66}, {"u": 3208342164, "v": 3208342165, "oneway": false, "points": [[2322.87, 1093.46], [2328.55, 1087.48], [2330.45, 1085.48], [2372.24, 1041.51], [2375.91, 1044.93], [2406.62, 1073.33], [2481.38, 1140.74], [2486.35, 1145.22]], "length": 225.88}, {"u": 3208342164, "v": 53437425, "oneway": false, "points": [[2322.87, 1093.46], [2328.11, 1098.11], [2349.75, 1117.27], [2385.72, 1149.13], [2389.28, 1152.28]], "length": 88.72}, {"u": 3208342165, "v": 3208339050, "oneway": false, "points": [[2486.35, 1145.22], [2490.81, 1149.4], [2497.98, 1156.12], [2592.15, 1269.29]], "length": 163.16}, {"u": 3208342165, "v": 3208342164, "oneway": false, "points": [[2486.35, 1145.22], [2481.38, 1140.74], [2406.62, 1073.33], [2375.91, 1044.93], [2372.24, 1041.51], [2330.45, 1085.48], [2328.55, 1087.48], [2322.87, 1093.46]], "length": 225.88}, {"u": 3208342165, "v": 53558147, "oneway": false, "points": [[2486.35, 1145.22], [2444.06, 1191.4], [2442.42, 1193.18], [2436.4, 1199.75]], "length": 73.95}, {"u": 3227608153, "v": 2859245549, "oneway": false, "points": [[-92.31, 344.77], [-82.41, 333.81], [-73.24, 323.65], [-59.41, 308.3], [-37.7, 284.24], [-11.74, 255.49], [0.32, 242.11], [14.68, 226.21], [34.53, 204.19], [36.63, 201.87], [43.15, 194.64]], "length": 202.21}, {"u": 3227608153, "v": 1345392073, "oneway": false, "points": [[-92.31, 344.77], [-93.32, 321.85], [-95.78, 275.72], [-95.85, 274.35], [-95.93, 273.13], [-97.07, 254.07], [-98.7, 218.29], [-99.3, 205.32], [-99.74, 194.26]], "length": 150.7}, {"u": 3227608153, "v": 3088209646, "oneway": false, "points": [[-92.31, 344.77], [-91.24, 364.9], [-87.67, 460.49], [-87.46, 464.13], [-87.24, 474.26], [-87.06, 482.8]], "length": 138.13}, {"u": 3227608153, "v": 316292003, "oneway": false, "points": [[-92.31, 344.77], [-102.14, 355.4], [-127.59, 382.91], [-146.64, 403.5], [-151.67, 408.95], [-154.06, 411.53], [-159.51, 417.41]], "length": 98.95}, {"u": 3227608153, "v": 2858999189, "oneway": true, "points": [[-92.31, 344.77], [-80.83, 355.58], [-72.18, 363.51], [-51.86, 380.89], [-23.42, 405.22], [-18.92, 408.95]], "length": 97.51}, {"u": 3227608154, "v": 53441253, "oneway": false, "points": [[-704.73, 329.1], [-691.33, 314.23], [-685.46, 307.71], [-672.79, 293.65], [-659.17, 278.54], [-646.22, 264.17], [-643.83, 261.53], [-638.37, 255.52]], "length": 99.08}, {"u": 3235649725, "v": 2948601585, "oneway": false, "points": [[1229.07, 508.53], [1222.61, 515.59], [1219.62, 518.87], [1196.9, 543.72], [1191.9, 549.18], [1189.99, 551.27], [1157.94, 584.57], [1148.1, 596.12], [1144.41, 601.07], [1135.82, 610.81], [1129.22, 618.25], [1097.8, 653.77], [1094.51, 657.27], [1090.04, 662.24], [1081.73, 671.5], [1031.55, 726.24], [1025.54, 732.79]], "length": 302.91}, {"u": 3235649725, "v": 53432339, "oneway": false, "points": [[1229.07, 508.53], [1236.12, 515.0], [1255.85, 533.19], [1265.74, 542.17], [1280.51, 556.43], [1280.74, 556.63], [1287.88, 563.38], [1290.09, 565.4], [1294.62, 569.51], [1302.36, 576.39], [1317.96, 590.18], [1354.51, 622.52], [1362.62, 629.96], [1370.45, 636.92], [1377.36, 643.19]], "length": 200.32}, {"u": 3235649725, "v": 53445464, "oneway": false, "points": [[1229.07, 508.53], [1221.25, 501.84], [1213.65, 495.33], [1197.26, 480.79], [1190.92, 475.15], [1158.05, 445.99], [1145.16, 434.54], [1107.03, 400.71], [1084.81, 380.98], [1078.09, 375.04]], "length": 201.53}, {"u": 3235649725, "v": 53461463, "oneway": false, "points": [[1229.07, 508.53], [1234.75, 502.32], [1236.48, 500.44], [1254.31, 480.95], [1288.01, 444.16], [1289.51, 442.52], [1296.68, 434.68]], "length": 100.13}, {"u": 3235650820, "v": 53645079, "oneway": false, "points": [[1216.58, 222.7], [1222.62, 228.39], [1284.06, 286.13], [1316.32, 315.86]], "length": 136.49}, {"u": 3235650820, "v": 53667246, "oneway": false, "points": [[1216.58, 222.7], [1208.85, 216.29], [1207.57, 215.24], [1197.06, 206.85], [1186.36, 203.71], [1158.7, 196.58], [1075.99, 176.84], [1071.67, 175.81]], "length": 154.33}, {"u": 3235650820, "v": 53445467, "oneway": false, "points": [[1216.58, 222.7], [1208.24, 231.88], [1206.59, 233.69], [1154.51, 290.97], [1153.84, 291.71], [1147.47, 298.73]], "length": 102.75}, {"u": 3241106071, "v": 2859245506, "oneway": false, "points": [[-815.37, -450.28], [-819.42, -454.45], [-821.69, -456.71], [-823.93, -458.72], [-845.53, -477.71], [-860.37, -490.75], [-869.26, -498.57], [-875.09, -503.69], [-883.87, -511.53], [-899.2, -524.99], [-900.36, -525.84], [-902.53, -527.3], [-905.53, -528.54], [-908.09, -529.3], [-910.55, -529.87], [-913.78, -530.36], [-917.66, -530.68], [-939.96, -529.86]], "length": 154.28}, {"u": 3241106071, "v": 53699396, "oneway": false, "points": [[-815.37, -450.28], [-809.14, -444.61], [-806.82, -442.49], [-770.27, -409.22], [-755.73, -395.97], [-734.62, -376.76], [-726.25, -369.14], [-674.24, -321.79], [-672.86, -320.54], [-666.65, -314.88]], "length": 201.13}, {"u": 3241106071, "v": 53604263, "oneway": true, "points": [[-815.37, -450.28], [-809.88, -456.27], [-788.89, -479.16], [-754.14, -517.06], [-747.7, -524.07]], "length": 100.12}, {"u": 3241106091, "v": 53608986, "oneway": true, "points": [[-885.92, -373.44], [-880.63, -369.46], [-878.27, -367.23], [-860.51, -351.44], [-845.94, -338.61], [-832.11, -326.43], [-822.15, -317.64], [-741.28, -245.89], [-734.28, -239.25]], "length": 202.52}, {"u": 3241106091, "v": 3241106071, "oneway": true, "points": [[-885.92, -373.44], [-878.69, -381.42], [-861.77, -399.67], [-857.56, -404.27], [-852.26, -410.05], [-846.5, -416.33], [-822.61, -442.37], [-815.37, -450.28]], "length": 104.31}, {"u": 3264677727, "v": 53578330, "oneway": false, "points": [[548.17, 1260.05], [560.58, 1246.56], [577.87, 1227.13], [585.13, 1218.96], [598.51, 1203.86], [601.63, 1200.33], [606.42, 1195.46], [608.82, 1193.33], [611.55, 1191.43]], "length": 93.52}, {"u": 3269827284, "v": 53578519, "oneway": false, "points": [[-726.13, -997.54], [-713.07, -985.21], [-711.02, -983.28], [-659.5, -934.67], [-652.88, -928.42]], "length": 100.72}, {"u": 3270240364, "v": 3270240367, "oneway": false, "points": [[931.81, 836.24], [925.61, 843.05], [922.7, 846.25], [857.7, 917.56], [856.39, 919.0], [849.71, 926.33]], "length": 121.89}, {"u": 3270240364, "v": 316303180, "oneway": true, "points": [[931.81, 836.24], [916.65, 822.2], [793.05, 710.8], [790.58, 708.57], [781.97, 700.78]], "length": 202.0}, {"u": 3270240367, "v": 1699123288, "oneway": false, "points": [[849.71, 926.33], [844.05, 932.53], [841.29, 935.57], [788.54, 993.44], [782.81, 999.73]], "length": 99.32}, {"u": 3270240367, "v": 3270240364, "oneway": false, "points": [[849.71, 926.33], [856.39, 919.0], [857.7, 917.56], [922.7, 846.25], [925.61, 843.05], [931.81, 836.24]], "length": 121.89}, {"u": 3270240367, "v": 349378518, "oneway": false, "points": [[849.71, 926.33], [856.36, 932.32], [898.07, 969.98], [927.8, 997.23], [929.38, 998.68], [955.46, 1022.59], [991.68, 1055.56], [998.9, 1062.16]], "length": 201.77}, {"u": 3270240367, "v": 316302558, "oneway": false, "points": [[849.71, 926.33], [842.8, 920.03], [706.81, 796.23], [700.35, 790.34]], "length": 201.99}, {"u": 3271744858, "v": 53642012, "oneway": false, "points": [[-837.93, -125.01], [-852.24, -109.19], [-855.06, -105.67], [-857.48, -102.17], [-859.2, -98.76], [-860.27, -93.44], [-860.32, -88.3]], "length": 44.48}, {"u": 3306923767, "v": 1179459768, "oneway": true, "points": [[-1492.35, -1016.93], [-1500.18, -1024.02], [-1501.25, -1028.04], [-1501.71, -1031.82], [-1502.15, -1042.09], [-1502.1, -1050.21], [-1502.24, -1067.46], [-1502.95, -1073.81], [-1504.32, -1078.71], [-1507.25, -1084.87]], "length": 72.48}, {"u": 3306923767, "v": 1179459735, "oneway": false, "points": [[-1492.35, -1016.93], [-1483.13, -1016.65], [-1441.66, -1016.8]], "length": 50.7}, {"u": 3306923767, "v": 2859302267, "oneway": true, "points": [[-1492.35, -1016.93], [-1492.6, -1012.17], [-1493.25, -997.75], [-1493.45, -993.08], [-1494.18, -972.15], [-1496.85, -939.24], [-1497.6, -926.97], [-1498.38, -915.34], [-1498.76, -903.28], [-1497.87, -882.29], [-1497.21, -868.33]], "length": 148.83}, {"u": 3306923798, "v": 3306923767, "oneway": true, "points": [[-1512.1, -967.82], [-1508.63, -974.21], [-1506.09, -985.72], [-1505.71, -993.1], [-1505.46, -997.79], [-1504.89, -1009.24], [-1502.85, -1013.5], [-1501.98, -1014.73], [-1500.74, -1015.45], [-1497.42, -1016.2], [-1492.35, -1016.93]], "length": 58.8}, {"u": 3306923798, "v": 1179459768, "oneway": true, "points": [[-1512.1, -967.82], [-1511.43, -981.6], [-1511.06, -993.1], [-1510.78, -997.81], [-1510.29, -1013.16], [-1510.3, -1018.54], [-1510.31, -1023.93], [-1508.53, -1050.15], [-1507.25, -1084.87]], "length": 117.18}, {"u": 3358764343, "v": 1188394186, "oneway": true, "points": [[-207.93, -803.97], [-214.32, -798.62], [-217.75, -795.03], [-226.27, -793.19]], "length": 22.02}, {"u": 3455711385, "v": 53425693, "oneway": true, "points": [[283.33, 412.55], [261.3, 392.38], [259.56, 390.78], [251.11, 383.04]], "length": 43.69}, {"u": 3455711385, "v": 2713311962, "oneway": false, "points": [[283.33, 412.55], [289.22, 417.88], [330.75, 455.48], [331.84, 456.47], [342.11, 465.82], [357.2, 479.41], [394.69, 513.69], [401.95, 520.29]], "length": 160.26}, {"u": 3607816606, "v": 1180005830, "oneway": false, "points": [[-2843.04, -203.98], [-2856.5, -206.06], [-2859.22, -206.48]], "length": 16.37}, {"u": 3607816606, "v": 2848493171, "oneway": true, "points": [[-2843.04, -203.98], [-2836.85, -204.61], [-2831.24, -205.2], [-2776.94, -196.35], [-2770.72, -192.11]], "length": 74.41}, {"u": 3607816648, "v": 2848493174, "oneway": false, "points": [[-2539.89, -194.04], [-2540.36, -203.83]], "length": 9.8}, {"u": 3607816648, "v": 2848493173, "oneway": true, "points": [[-2539.89, -194.04], [-2549.77, -193.87], [-2564.45, -193.43], [-2574.07, -193.64], [-2583.07, -193.72], [-2596.65, -193.41], [-2616.23, -192.67], [-2623.51, -192.45]], "length": 83.65}, {"u": 3637918464, "v": 3812685605, "oneway": false, "points": [[-3148.35, -1404.08], [-3142.84, -1410.6], [-3141.19, -1412.52], [-3116.5, -1440.71], [-3091.25, -1469.75], [-3085.99, -1475.59]], "length": 94.88}, {"u": 3637918464, "v": 53462402, "oneway": false, "points": [[-3148.35, -1404.08], [-3068.93, -1336.2], [-3062.15, -1330.4]], "length": 113.4}, {"u": 3755083604, "v": 2634693274, "oneway": false, "points": [[-448.8, -1977.41], [-466.7, -2148.31], [-469.91, -2179.04], [-470.89, -2188.41]], "length": 212.16}, {"u": 3755083604, "v": 53679791, "oneway": false, "points": [[-448.8, -1977.41], [-448.52, -1974.73], [-446.51, -1955.58], [-445.48, -1945.76]], "length": 31.82}, {"u": 3755083604, "v": 3755083605, "oneway": false, "points": [[-448.8, -1977.41], [-434.46, -1978.2], [-426.62, -1978.62], [-416.41, -1979.18]], "length": 32.44}, {"u": 3755083605, "v": 3755083604, "oneway": false, "points": [[-416.41, -1979.18], [-426.62, -1978.62], [-434.46, -1978.2], [-448.8, -1977.41]], "length": 32.44}, {"u": 3786903332, "v": 53408525, "oneway": false, "points": [[2054.62, 1671.06], [2048.41, 1664.0], [1869.71, 1499.8]], "length": 252.09}, {"u": 3786903332, "v": 2384881547, "oneway": false, "points": [[2054.62, 1671.06], [2061.17, 1664.13], [2079.28, 1644.95], [2083.23, 1640.76], [2096.75, 1626.8], [2105.39, 1617.86]], "length": 73.54}, {"u": 3786903332, "v": 53407742, "oneway": false, "points": [[2054.62, 1671.06], [2052.91, 1673.19], [2049.34, 1677.42], [2044.28, 1683.32], [2040.37, 1687.58]], "length": 21.82}, {"u": 3786906785, "v": 53498440, "oneway": false, "points": [[2639.56, 1694.54], [2638.1, 1683.02]], "length": 11.61}, {"u": 3786906785, "v": 3786906803, "oneway": true, "points": [[2639.56, 1694.54], [2640.99, 1698.15], [2642.38, 1705.32], [2644.15, 1717.7], [2645.71, 1730.0]], "length": 36.09}, {"u": 3786906803, "v": 53498437, "oneway": false, "points": [[2645.71, 1730.0], [2638.63, 1729.68]], "length": 7.09}, {"u": 3786906803, "v": 53611268, "oneway": false, "points": [[2645.71, 1730.0], [2650.67, 1730.41], [2652.4, 1730.75], [2681.66, 1736.47], [2708.61, 1744.72], [2778.23, 1762.93], [2785.0, 1764.7]], "length": 143.7}, {"u": 3786906803, "v": 3786906811, "oneway": true, "points": [[2645.71, 1730.0], [2646.12, 1738.78], [2646.22, 1741.06], [2646.37, 1746.26], [2646.34, 1749.34], [2645.62, 1753.26], [2644.0, 1758.98], [2641.98, 1763.18], [2639.21, 1769.05], [2635.68, 1776.69]], "length": 48.85}, {"u": 3786906811, "v": 2925569869, "oneway": true, "points": [[2635.68, 1776.69], [2641.0, 1780.44], [2686.15, 1809.59], [2720.4, 1828.42], [2751.39, 1843.1], [2761.37, 1847.82]], "length": 144.67}, {"u": 3786906811, "v": 3786906822, "oneway": true, "points": [[2635.68, 1776.69], [2632.8, 1781.94], [2627.31, 1790.33], [2620.25, 1800.82], [2618.06, 1803.36], [2615.74, 1805.32], [2614.02, 1806.38], [2612.94, 1807.06], [2608.82, 1808.47], [2605.04, 1808.93], [2601.6, 1809.03], [2595.36, 1809.05]], "length": 56.19}, {"u": 3786906822, "v": 53490487, "oneway": true, "points": [[2595.36, 1809.05], [2588.48, 1806.91]], "length": 7.21}, {"u": 3786910293, "v": 3786910294, "oneway": true, "points": [[2127.38, 1600.17], [2123.39, 1595.95]], "length": 5.81}, {"u": 3786910293, "v": 2384881547, "oneway": true, "points": [[2127.38, 1600.17], [2123.83, 1604.21], [2120.02, 1607.39], [2114.92, 1611.66], [2105.39, 1617.86]], "length": 28.36}, {"u": 3786910294, "v": 2384881533, "oneway": true, "points": [[2123.39, 1595.95], [2130.7, 1589.5], [2154.88, 1568.17]], "length": 41.99}, {"u": 3786926320, "v": 53611281, "oneway": false, "points": [[2728.37, 1374.73], [2734.32, 1376.43], [2791.85, 1392.84], [2813.94, 1396.45], [2823.79, 1397.94], [2821.79, 1447.72], [2821.67, 1450.78], [2821.42, 1456.92]], "length": 157.39}, {"u": 3786926320, "v": 3208339050, "oneway": false, "points": [[2728.37, 1374.73], [2720.23, 1371.88], [2661.16, 1351.16], [2644.22, 1330.82], [2592.15, 1269.29]], "length": 178.3}, {"u": 3786926320, "v": 53568332, "oneway": false, "points": [[2728.37, 1374.73], [2727.85, 1383.29], [2724.0, 1445.81], [2723.96, 1446.58], [2723.62, 1452.1]], "length": 77.52}, {"u": 3811323394, "v": 53430446, "oneway": false, "points": [[-1892.78, -997.21], [-1844.11, -998.63]], "length": 48.69}, {"u": 3811323394, "v": 2816310345, "oneway": false, "points": [[-1892.78, -997.21], [-1898.97, -997.03], [-2011.28, -993.74], [-2020.48, -993.47]], "length": 127.76}, {"u": 3811323394, "v": 3811323395, "oneway": false, "points": [[-1892.78, -997.21], [-1892.64, -990.39], [-1891.3, -922.84]], "length": 74.39}, {"u": 3811323395, "v": 2816310353, "oneway": true, "points": [[-1891.3, -922.84], [-1899.27, -922.46], [-1923.87, -921.98], [-2013.69, -919.45], [-2022.38, -919.39]], "length": 131.13}, {"u": 3811323395, "v": 3811323394, "oneway": false, "points": [[-1891.3, -922.84], [-1892.64, -990.39], [-1892.78, -997.21]], "length": 74.39}, {"u": 3811323395, "v": 53503864, "oneway": false, "points": [[-1891.3, -922.84], [-1890.56, -894.45], [-1890.23, -882.69], [-1889.91, -869.39], [-1889.87, -867.83], [-1889.7, -860.7], [-1889.67, -859.23], [-1889.65, -850.04]], "length": 72.82}, {"u": 3812685575, "v": 4874980024, "oneway": false, "points": [[-2658.03, -987.99], [-2651.39, -994.9], [-2650.37, -996.08], [-2632.96, -1016.29], [-2625.5, -1024.89], [-2602.27, -1052.61], [-2600.83, -1054.25], [-2594.59, -1061.75]], "length": 97.31}, {"u": 3812685575, "v": 3812685579, "oneway": false, "points": [[-2658.03, -987.99], [-2665.05, -993.19], [-2673.02, -999.92], [-2696.4, -1019.41]], "length": 49.6}, {"u": 3812685575, "v": 53462362, "oneway": false, "points": [[-2658.03, -987.99], [-2651.38, -981.54], [-2641.62, -972.71], [-2589.06, -927.8], [-2583.98, -923.28], [-2574.11, -914.92], [-2566.84, -908.9], [-2555.98, -897.73]], "length": 136.31}, {"u": 3812685579, "v": 53428597, "oneway": false, "points": [[-2696.4, -1019.41], [-2702.25, -1013.0], [-2704.44, -1010.78], [-2705.83, -1009.33], [-2706.76, -1007.44], [-2706.98, -1003.21], [-2706.22, -983.51], [-2705.98, -969.32]], "length": 54.06}, {"u": 3812685579, "v": 53462374, "oneway": false, "points": [[-2696.4, -1019.41], [-2702.37, -1025.04], [-2715.76, -1036.4], [-2759.29, -1073.83], [-2769.66, -1081.93]], "length": 96.34}, {"u": 3812685579, "v": 3812685575, "oneway": false, "points": [[-2696.4, -1019.41], [-2673.02, -999.92], [-2665.05, -993.19], [-2658.03, -987.99]], "length": 49.6}, {"u": 3812685605, "v": 3812685629, "oneway": false, "points": [[-3085.99, -1475.59], [-3079.14, -1483.32], [-3053.09, -1513.58], [-3027.87, -1543.57], [-3022.23, -1550.48]], "length": 98.36}, {"u": 3812685605, "v": 3637918464, "oneway": false, "points": [[-3085.99, -1475.59], [-3091.25, -1469.75], [-3116.5, -1440.71], [-3141.19, -1412.52], [-3142.84, -1410.6], [-3148.35, -1404.08]], "length": 94.88}, {"u": 3812685605, "v": 53556407, "oneway": false, "points": [[-3085.99, -1475.59], [-3079.06, -1469.78], [-3076.77, -1467.84], [-3004.95, -1407.06], [-3000.03, -1402.9]], "length": 112.58}, {"u": 3812685612, "v": 4095618185, "oneway": false, "points": [[-2176.24, -1473.32], [-2176.75, -1483.49], [-2176.96, -1487.73], [-2182.13, -1671.98], [-2182.63, -1680.74], [-2183.56, -1687.77], [-2184.92, -1692.83], [-2187.53, -1696.05], [-2192.22, -1699.6]], "length": 229.89}, {"u": 3812685612, "v": 3812685620, "oneway": false, "points": [[-2176.24, -1473.32], [-2185.69, -1472.9], [-2323.31, -1469.94]], "length": 147.11}, {"u": 3812685612, "v": 4095648221, "oneway": false, "points": [[-2176.24, -1473.32], [-2175.78, -1462.39], [-2174.33, -1427.85], [-2173.86, -1413.08], [-2172.65, -1363.8], [-2172.53, -1359.2]], "length": 114.18}, {"u": 3812685612, "v": 53511603, "oneway": false, "points": [[-2176.24, -1473.32], [-2166.99, -1473.58], [-2148.73, -1474.09], [-2114.61, -1475.04]], "length": 61.65}, {"u": 3812685620, "v": 4194510097, "oneway": false, "points": [[-2323.31, -1469.94], [-2384.6, -1468.15]], "length": 61.32}, {"u": 3812685620, "v": 53590715, "oneway": false, "points": [[-2323.31, -1469.94], [-2323.0, -1459.33], [-2322.89, -1455.42], [-2321.06, -1391.89]], "length": 78.08}, {"u": 3812685620, "v": 3812685612, "oneway": false, "points": [[-2323.31, -1469.94], [-2185.69, -1472.9], [-2176.24, -1473.32]], "length": 147.11}, {"u": 3812685626, "v": 53454658, "oneway": false, "points": [[-2464.02, -1434.65], [-2457.74, -1428.18], [-2455.5, -1425.87], [-2453.26, -1423.57], [-2452.14, -1405.08], [-2450.48, -1358.71], [-2450.35, -1355.23], [-2450.31, -1344.85]], "length": 94.23}, {"u": 3812685626, "v": 2816310343, "oneway": false, "points": [[-2464.02, -1434.65], [-2453.4, -1447.65], [-2443.97, -1459.38]], "length": 31.84}, {"u": 3812685626, "v": 53621164, "oneway": false, "points": [[-2464.02, -1434.65], [-2477.02, -1419.04], [-2508.56, -1381.29], [-2514.5, -1374.03]], "length": 78.88}, {"u": 3812685629, "v": 53473321, "oneway": false, "points": [[-3022.23, -1550.48], [-3014.9, -1544.22], [-2943.24, -1483.05], [-2936.88, -1477.62]], "length": 112.22}, {"u": 3812685629, "v": 3812685605, "oneway": false, "points": [[-3022.23, -1550.48], [-3027.87, -1543.57], [-3053.09, -1513.58], [-3079.14, -1483.32], [-3085.99, -1475.59]], "length": 98.36}, {"u": 3812685629, "v": 2637056004, "oneway": false, "points": [[-3022.23, -1550.48], [-3028.8, -1556.5], [-3034.7, -1561.9], [-3029.08, -1568.77], [-3004.29, -1598.12], [-2997.73, -1605.43], [-2989.73, -1615.99], [-2978.64, -1628.81], [-2972.37, -1636.06]], "length": 113.81}, {"u": 3859915626, "v": 53668846, "oneway": false, "points": [[1226.0, 1404.36], [1231.16, 1409.14]], "length": 7.03}, {"u": 3859915626, "v": 53453137, "oneway": false, "points": [[1226.0, 1404.36], [1222.1, 1400.74], [1220.06, 1398.88], [1203.81, 1384.06], [1180.02, 1362.34], [1164.81, 1348.45], [1154.36, 1338.91], [1149.48, 1334.45], [1135.76, 1321.94], [1089.35, 1279.1], [1087.46, 1277.35], [1080.08, 1270.54]], "length": 197.99}, {"u": 3859915626, "v": 53536994, "oneway": true, "points": [[1226.0, 1404.36], [1232.86, 1397.28], [1244.53, 1384.69], [1249.85, 1380.45], [1256.77, 1376.42]], "length": 41.83}, {"u": 3886439879, "v": 1192150256, "oneway": true, "points": [[574.0, -47.05], [581.27, -34.57], [584.5, -27.03], [585.88, -22.67], [586.25, -21.5], [587.14, -18.69], [588.43, -13.2], [588.45, -10.92], [588.48, -7.92], [588.03, -4.8], [587.84, -3.76], [587.41, -1.71], [585.86, 5.9]], "length": 56.38}, {"u": 3886439879, "v": 13018504178, "oneway": true, "points": [[574.0, -47.05], [585.37, -37.1], [591.59, -24.68], [592.83, -20.48], [595.81, -10.1], [598.54, -4.0], [599.75, -2.56], [605.72, 11.07]], "length": 67.62}, {"u": 3894523242, "v": 1857601486, "oneway": true, "points": [[-2706.37, -190.68], [-2698.29, -196.1], [-2668.91, -197.08], [-2632.11, -198.32], [-2623.71, -198.63]], "length": 84.35}, {"u": 3894523242, "v": 2848493172, "oneway": false, "points": [[-2706.37, -190.68], [-2722.55, -190.29], [-2732.81, -190.04]], "length": 26.46}, {"u": 3937040986, "v": 3937040992, "oneway": true, "points": [[37.48, -2235.23], [38.39, -2227.51], [38.88, -2222.91], [39.97, -2217.85], [42.08, -2214.6], [43.93, -2212.29], [48.32, -2210.03]], "length": 29.35}, {"u": 3937040986, "v": 366229507, "oneway": true, "points": [[37.48, -2235.23], [26.98, -2218.34], [21.04, -2208.76]], "length": 31.16}, {"u": 3937040992, "v": 53447076, "oneway": false, "points": [[48.32, -2210.03], [63.71, -2210.87], [71.21, -2211.72], [80.58, -2213.68]], "length": 32.54}, {"u": 3937040992, "v": 366229507, "oneway": false, "points": [[48.32, -2210.03], [32.42, -2209.23], [21.04, -2208.76]], "length": 27.31}, {"u": 3951970461, "v": 452816429, "oneway": true, "points": [[381.39, -2916.0], [367.13, -2905.45], [358.25, -2891.28], [355.07, -2884.23], [346.48, -2859.96], [340.66, -2841.73], [329.46, -2801.83], [323.04, -2778.04], [322.05, -2775.07], [320.32, -2769.92], [316.59, -2763.08], [312.87, -2759.49], [307.54, -2757.35]], "length": 180.43}, {"u": 3951970461, "v": 452816427, "oneway": true, "points": [[381.39, -2916.0], [363.78, -2876.98], [351.41, -2839.47], [341.57, -2804.46], [331.26, -2772.2], [325.58, -2754.28]], "length": 171.34}, {"u": 4055610627, "v": 53413619, "oneway": false, "points": [[-2708.7, 337.97], [-2697.23, 319.78], [-2694.91, 315.45], [-2689.74, 303.65], [-2689.71, 289.77], [-2689.69, 282.74], [-2690.37, 256.32], [-2690.78, 247.21], [-2694.68, 152.55], [-2694.88, 144.3]], "length": 198.74}, {"u": 4089413144, "v": 1179796036, "oneway": true, "points": [[-1503.29, -1833.04], [-1482.19, -1872.83], [-1471.19, -1893.53], [-1467.72, -1900.06]], "length": 75.87}, {"u": 4089413144, "v": 2573847767, "oneway": false, "points": [[-1503.29, -1833.04], [-1510.68, -1835.17], [-1513.44, -1836.76], [-1549.01, -1857.17], [-1605.6, -1888.31], [-1614.6, -1893.15]], "length": 126.7}, {"u": 4089413153, "v": 4089413144, "oneway": true, "points": [[-1483.55, -1837.12], [-1497.22, -1833.1], [-1501.91, -1832.89], [-1503.29, -1833.04]], "length": 20.34}, {"u": 4089413153, "v": 1179795960, "oneway": true, "points": [[-1483.55, -1837.12], [-1489.12, -1825.75], [-1497.65, -1802.86], [-1498.19, -1800.9], [-1500.67, -1791.89], [-1503.2, -1782.66], [-1505.64, -1761.24], [-1506.48, -1742.47], [-1505.63, -1731.62]], "length": 109.27}, {"u": 4091376211, "v": 4091376224, "oneway": true, "points": [[-332.24, -983.79], [-318.69, -985.44], [-309.88, -986.23], [-306.31, -986.86], [-304.34, -987.46], [-301.34, -988.5], [-297.6, -990.88], [-294.96, -992.93], [-293.05, -995.5], [-291.23, -998.15], [-290.17, -1002.04], [-289.77, -1006.88], [-292.45, -1021.49]], "length": 69.29}, {"u": 4091376211, "v": 2938172405, "oneway": true, "points": [[-332.24, -983.79], [-319.01, -980.76], [-309.85, -979.78], [-298.42, -979.73], [-284.6, -979.93], [-273.05, -981.27]], "length": 59.66}, {"u": 4091376224, "v": 366229504, "oneway": true, "points": [[-292.45, -1021.49], [-313.6, -1079.73], [-329.62, -1127.6], [-339.79, -1166.01], [-352.32, -1222.23], [-360.64, -1256.64], [-376.86, -1342.5], [-386.71, -1398.75], [-392.67, -1442.03], [-394.6, -1485.07], [-389.28, -1536.1], [-378.39, -1580.99], [-364.12, -1619.96], [-342.34, -1662.2], [-293.86, -1739.44], [-272.99, -1773.32], [-115.07, -2022.27], [-60.5, -2112.22], [-40.5, -2142.36], [-10.49, -2190.8], [-8.87, -2193.38], [-0.34, -2208.13]], "length": 1307.2}, {"u": 4095606995, "v": 53478277, "oneway": false, "points": [[-2025.22, -1892.43], [-2023.2, -1884.73], [-2018.27, -1866.47], [-2016.87, -1856.11], [-2016.67, -1823.74], [-2016.64, -1814.87], [-2016.51, -1810.48], [-2015.93, -1790.39], [-2014.21, -1724.44], [-2013.99, -1717.44]], "length": 176.04}, {"u": 4095606995, "v": 270405510, "oneway": false, "points": [[-2025.22, -1892.43], [-2016.13, -1895.29], [-1993.94, -1903.42], [-1972.43, -1914.79], [-1944.31, -1932.61], [-1941.22, -1934.57], [-1921.54, -1947.04], [-1911.5, -1953.07], [-1906.97, -1955.79], [-1879.87, -1972.1], [-1852.01, -1988.7], [-1833.41, -2000.03], [-1816.54, -2008.85], [-1807.16, -2011.23], [-1796.19, -2011.52], [-1787.51, -2011.57]], "length": 268.95}, {"u": 4095606995, "v": 258725731, "oneway": false, "points": [[-2025.22, -1892.43], [-2030.19, -1891.41], [-2058.47, -1887.9], [-2069.95, -1886.99], [-2084.42, -1886.23], [-2100.59, -1886.88], [-2131.11, -1890.9], [-2163.58, -1897.97], [-2198.37, -1906.08], [-2212.82, -1908.9], [-2226.36, -1910.06], [-2235.1, -1909.33], [-2252.08, -1905.99], [-2259.86, -1903.66], [-2293.89, -1893.49], [-2316.29, -1886.56], [-2330.54, -1882.46], [-2348.83, -1878.98], [-2366.25, -1877.1], [-2395.87, -1875.4], [-2423.2, -1874.9], [-2428.32, -1874.81], [-2449.07, -1874.43], [-2489.91, -1874.92], [-2513.02, -1876.49], [-2523.43, -1877.19], [-2526.74, -1877.42], [-2537.82, -1879.51], [-2554.15, -1884.24], [-2569.08, -1889.38], [-2588.77, -1896.61], [-2597.9, -1900.26], [-2611.31, -1902.39], [-2625.11, -1902.59], [-2655.26, -1899.61], [-2671.06, -1897.28]], "length": 657.09}, {"u": 4095618185, "v": 2816310343, "oneway": true, "points": [[-2192.22, -1699.6], [-2195.7, -1690.89], [-2199.7, -1672.1], [-2201.61, -1664.6], [-2211.2, -1645.96], [-2218.3, -1633.29], [-2226.32, -1621.2], [-2235.19, -1609.14], [-2245.79, -1597.1], [-2246.68, -1595.93], [-2257.66, -1584.15], [-2267.8, -1573.54], [-2272.29, -1569.75], [-2281.23, -1562.22], [-2294.67, -1549.78], [-2297.91, -1546.77], [-2323.99, -1529.68], [-2357.41, -1509.94], [-2371.84, -1505.73], [-2401.34, -1498.44], [-2420.18, -1492.93], [-2438.25, -1487.23], [-2445.16, -1484.19], [-2449.02, -1480.38], [-2450.58, -1477.25], [-2451.27, -1472.85], [-2450.92, -1470.24], [-2449.21, -1466.31], [-2443.97, -1459.38]], "length": 380.42}, {"u": 4095618185, "v": 3812685612, "oneway": false, "points": [[-2192.22, -1699.6], [-2187.53, -1696.05], [-2184.92, -1692.83], [-2183.56, -1687.77], [-2182.63, -1680.74], [-2182.13, -1671.98], [-2176.96, -1487.73], [-2176.75, -1483.49], [-2176.24, -1473.32]], "length": 229.89}, {"u": 4095648221, "v": 4095648227, "oneway": true, "points": [[-2172.53, -1359.2], [-2170.48, -1359.03], [-2168.59, -1358.19], [-2167.07, -1356.79], [-2166.09, -1354.97], [-2165.76, -1352.94]], "length": 10.32}, {"u": 4095648221, "v": 3812685612, "oneway": false, "points": [[-2172.53, -1359.2], [-2172.65, -1363.8], [-2173.86, -1413.08], [-2174.33, -1427.85], [-2175.78, -1462.39], [-2176.24, -1473.32]], "length": 114.18}, {"u": 4095648223, "v": 53621277, "oneway": false, "points": [[-2178.29, -1352.57], [-2181.57, -1352.47], [-2184.78, -1352.42], [-2262.72, -1350.01], [-2267.38, -1349.97]], "length": 89.12}, {"u": 4095648223, "v": 4095648221, "oneway": true, "points": [[-2178.29, -1352.57], [-2178.12, -1354.49], [-2177.36, -1356.28], [-2176.09, -1357.74], [-2174.42, -1358.75], [-2172.53, -1359.2]], "length": 9.7}, {"u": 4095648225, "v": 53692030, "oneway": false, "points": [[-2172.16, -1346.72], [-2171.99, -1341.8], [-2170.2, -1292.4], [-2168.51, -1242.51], [-2168.16, -1231.53]], "length": 115.26}, {"u": 4095648225, "v": 4095648223, "oneway": true, "points": [[-2172.16, -1346.72], [-2173.99, -1347.03], [-2175.65, -1347.86], [-2177.0, -1349.15], [-2177.9, -1350.75], [-2178.29, -1352.57]], "length": 9.27}, {"u": 4095648227, "v": 53621269, "oneway": false, "points": [[-2165.76, -1352.94], [-2163.15, -1353.01], [-2161.55, -1353.06], [-2035.28, -1356.46], [-2027.21, -1356.68]], "length": 138.6}, {"u": 4095648227, "v": 4095648225, "oneway": true, "points": [[-2165.76, -1352.94], [-2166.09, -1350.99], [-2167.0, -1349.24], [-2168.42, -1347.86], [-2170.2, -1347.0], [-2172.16, -1346.72]], "length": 9.88}, {"u": 4095666564, "v": 4095684894, "oneway": true, "points": [[-1782.51, -1802.66], [-1785.6, -1812.16], [-1786.79, -1821.47], [-1787.29, -1825.39], [-1791.28, -1872.97], [-1792.08, -1893.66], [-1791.9, -1917.84], [-1790.92, -1929.19], [-1786.45, -1951.27]], "length": 149.88}, {"u": 4095666564, "v": 2573847782, "oneway": false, "points": [[-1782.51, -1802.66], [-1781.93, -1784.17], [-1780.15, -1734.96], [-1779.82, -1725.92]], "length": 76.78}, {"u": 4095684894, "v": 2573847770, "oneway": false, "points": [[-1786.45, -1951.27], [-1786.99, -1973.74], [-1787.32, -1987.51]], "length": 36.25}, {"u": 4095684894, "v": 4095666564, "oneway": true, "points": [[-1786.45, -1951.27], [-1785.22, -1943.09], [-1785.05, -1941.96], [-1783.75, -1932.36], [-1783.28, -1924.52], [-1781.83, -1873.32], [-1781.02, -1821.65], [-1780.95, -1816.48], [-1781.21, -1809.32], [-1782.51, -1802.66]], "length": 148.98}, {"u": 4139816155, "v": 53607068, "oneway": true, "points": [[-1884.79, -641.28], [-1884.44, -631.92], [-1884.18, -625.45], [-1883.77, -608.73], [-1883.75, -607.92], [-1883.55, -597.96], [-1883.21, -581.1], [-1882.37, -539.03], [-1882.32, -536.61], [-1881.66, -503.99], [-1881.53, -493.39], [-1881.5, -491.45], [-1881.37, -482.21]], "length": 159.11}, {"u": 4139816155, "v": 1180005831, "oneway": false, "points": [[-1884.79, -641.28], [-1896.33, -640.7], [-1922.06, -639.42], [-1966.62, -637.21], [-1977.5, -636.67], [-2010.64, -635.02], [-2019.39, -634.59]], "length": 134.76}, {"u": 4139816155, "v": 53509962, "oneway": false, "points": [[-1884.79, -641.28], [-1875.15, -641.75], [-1857.64, -642.64], [-1829.02, -644.1], [-1827.27, -644.19], [-1808.12, -645.18], [-1799.13, -645.63], [-1784.28, -646.39], [-1764.24, -647.41], [-1760.55, -647.6], [-1751.79, -648.05]], "length": 133.17}, {"u": 4172253594, "v": 2705148498, "oneway": true, "points": [[645.88, 1149.81], [639.63, 1143.05], [619.68, 1124.78], [584.09, 1091.88], [572.85, 1082.69], [570.09, 1080.19]], "length": 102.97}, {"u": 4172253594, "v": 53578330, "oneway": false, "points": [[645.88, 1149.81], [640.22, 1155.96], [637.29, 1159.07], [622.49, 1174.78], [618.95, 1178.67], [612.91, 1187.46], [611.55, 1191.43]], "length": 54.34}, {"u": 4172253594, "v": 53640824, "oneway": false, "points": [[645.88, 1149.81], [652.26, 1142.98], [653.12, 1142.02], [705.73, 1084.31], [708.26, 1081.53], [709.84, 1079.79], [714.7, 1074.46]], "length": 102.05}, {"u": 4173748917, "v": 53720172, "oneway": true, "points": [[-586.27, -103.19], [-574.17, -92.29], [-555.34, -75.33], [-547.73, -68.48], [-546.41, -67.28], [-527.71, -50.45], [-526.24, -49.13], [-522.05, -45.35], [-503.56, -28.69], [-459.21, 11.49], [-442.79, 26.04], [-435.66, 32.45]], "length": 202.69}, {"u": 4173748917, "v": 53591794, "oneway": true, "points": [[-586.27, -103.19], [-576.85, -113.87], [-527.08, -170.33], [-525.41, -172.23], [-518.45, -180.11]], "length": 102.55}, {"u": 4173748917, "v": 53472467, "oneway": true, "points": [[-586.27, -103.19], [-590.67, -100.22], [-592.16, -98.71], [-593.1, -96.98], [-593.5, -95.83], [-593.77, -94.64], [-594.0, -92.33], [-594.27, -90.34], [-594.58, -89.47], [-595.08, -88.83], [-628.5, -51.8], [-643.14, -34.6], [-645.24, -32.84], [-652.09, -27.55]], "length": 101.77}, {"u": 4173789198, "v": 3241106091, "oneway": true, "points": [[-980.1, -401.29], [-971.3, -401.64], [-955.7, -402.16], [-950.12, -402.32], [-944.53, -402.39], [-935.83, -401.37], [-933.35, -400.59], [-925.11, -398.0], [-919.68, -395.33], [-909.49, -389.72], [-893.93, -378.75], [-891.47, -377.26], [-885.92, -373.44]], "length": 101.92}, {"u": 4173789198, "v": 2859245565, "oneway": false, "points": [[-980.1, -401.29], [-980.62, -410.48], [-980.79, -413.37], [-981.24, -421.27], [-984.74, -482.41], [-984.96, -486.24], [-986.67, -516.01], [-986.8, -518.37], [-987.32, -527.51]], "length": 126.43}, {"u": 4173796882, "v": 917593526, "oneway": false, "points": [[-382.57, -367.45], [-383.51, -368.36], [-399.31, -383.79], [-417.38, -400.05], [-421.7, -403.87], [-423.7, -405.64], [-448.25, -428.41], [-469.21, -448.57], [-470.01, -449.3], [-485.38, -463.3], [-490.15, -467.63], [-502.68, -479.05], [-510.0, -485.71]], "length": 173.87}, {"u": 4173796882, "v": 13324853247, "oneway": true, "points": [[-382.57, -367.45], [-380.58, -368.02], [-378.49, -368.14], [-376.26, -367.94], [-374.26, -367.19], [-364.96, -358.87], [-359.18, -353.68]], "length": 28.78}, {"u": 4173797761, "v": 53482965, "oneway": true, "points": [[-264.46, -707.73], [-280.53, -722.27], [-287.39, -728.76]], "length": 31.11}, {"u": 4173797761, "v": 53444048, "oneway": false, "points": [[-264.46, -707.73], [-253.94, -697.57], [-243.21, -687.81], [-228.04, -674.02], [-218.57, -665.4], [-187.27, -636.94], [-150.46, -603.43], [-136.89, -591.11]], "length": 172.85}, {"u": 4194510097, "v": 3812685620, "oneway": false, "points": [[-2384.6, -1468.15], [-2323.31, -1469.94]], "length": 61.32}, {"u": 4194510097, "v": 2816310343, "oneway": true, "points": [[-2384.6, -1468.15], [-2422.74, -1463.61], [-2426.92, -1463.33], [-2435.04, -1463.39], [-2436.67, -1463.13], [-2439.21, -1462.17], [-2443.97, -1459.38]], "length": 60.6}, {"u": 4214349299, "v": 53504312, "oneway": false, "points": [[-2556.41, -728.02], [-2556.11, -718.93], [-2550.8, -552.16], [-2550.41, -545.22]], "length": 182.9}, {"u": 4214349299, "v": 1180005819, "oneway": false, "points": [[-2556.41, -728.02], [-2556.67, -734.82], [-2557.52, -761.87], [-2559.14, -811.15], [-2559.46, -820.8]], "length": 92.83}, {"u": 4214349299, "v": 53582923, "oneway": false, "points": [[-2556.41, -728.02], [-2566.43, -727.95], [-2630.98, -725.07], [-2639.01, -724.72]], "length": 82.67}, {"u": 4248707700, "v": 1179796036, "oneway": false, "points": [[-1453.43, -1891.98], [-1460.98, -1896.25], [-1467.72, -1900.06]], "length": 16.41}, {"u": 4248707700, "v": 4089413153, "oneway": true, "points": [[-1453.43, -1891.98], [-1456.85, -1886.22], [-1457.43, -1885.37], [-1464.5, -1872.66], [-1480.89, -1842.54], [-1483.55, -1837.12]], "length": 62.61}, {"u": 4248941674, "v": 2638675157, "oneway": false, "points": [[-1448.66, -2819.15], [-1466.69, -2805.38], [-1475.8, -2798.42]], "length": 34.16}, {"u": 4248941674, "v": 53473027, "oneway": false, "points": [[-1448.66, -2819.15], [-1414.83, -2844.4], [-1399.89, -2851.89], [-1364.3, -2862.65], [-1329.91, -2870.72], [-1326.85, -2871.31], [-1313.53, -2873.86]], "length": 148.1}, {"u": 4687823320, "v": 2637707069, "oneway": true, "points": [[405.86, -3007.03], [441.05, -3073.66]], "length": 75.35}, {"u": 4687823320, "v": 53727087, "oneway": true, "points": [[405.86, -3007.03], [400.07, -3033.38], [397.81, -3046.53], [394.5, -3052.12], [390.15, -3057.15], [385.17, -3062.46], [376.49, -3069.78], [367.13, -3077.03]], "length": 83.95}, {"u": 4874980024, "v": 53454630, "oneway": false, "points": [[-2594.59, -1061.75], [-2589.28, -1068.17], [-2586.78, -1071.12], [-2563.35, -1098.63], [-2537.62, -1128.53], [-2531.92, -1135.08]], "length": 96.47}, {"u": 4874980024, "v": 3812685575, "oneway": false, "points": [[-2594.59, -1061.75], [-2600.83, -1054.25], [-2602.27, -1052.61], [-2625.5, -1024.89], [-2632.96, -1016.29], [-2650.37, -996.08], [-2651.39, -994.9], [-2658.03, -987.99]], "length": 97.31}, {"u": 4874980024, "v": 53534017, "oneway": false, "points": [[-2594.59, -1061.75], [-2587.63, -1055.87], [-2464.35, -949.12], [-2461.67, -946.8], [-2454.42, -940.98]], "length": 185.02}, {"u": 4874980024, "v": 4874980027, "oneway": false, "points": [[-2594.59, -1061.75], [-2601.51, -1067.36], [-2692.34, -1144.23], [-2695.19, -1146.52], [-2702.49, -1152.65]], "length": 141.09}, {"u": 4874980027, "v": 53473289, "oneway": false, "points": [[-2702.49, -1152.65], [-2696.56, -1159.7], [-2671.96, -1188.16], [-2644.95, -1220.05], [-2640.88, -1224.85]], "length": 94.91}, {"u": 4874980027, "v": 53462374, "oneway": false, "points": [[-2702.49, -1152.65], [-2708.32, -1146.21], [-2733.62, -1116.43], [-2760.04, -1087.7], [-2769.66, -1081.93]], "length": 98.01}, {"u": 4874980027, "v": 4874980024, "oneway": false, "points": [[-2702.49, -1152.65], [-2695.19, -1146.52], [-2692.34, -1144.23], [-2601.51, -1067.36], [-2594.59, -1061.75]], "length": 141.09}, {"u": 4874980027, "v": 53556400, "oneway": false, "points": [[-2702.49, -1152.65], [-2709.14, -1158.37], [-2712.0, -1160.8], [-2792.93, -1228.81], [-2795.03, -1230.54], [-2801.53, -1236.1]], "length": 129.51}, {"u": 5112004105, "v": 5463552488, "oneway": false, "points": [[-487.18, 393.48], [-496.52, 384.9], [-527.62, 356.3], [-535.92, 348.68], [-540.85, 344.15]], "length": 72.9}, {"u": 5446595705, "v": 445963180, "oneway": false, "points": [[-1447.47, 159.49], [-1445.29, 145.33], [-1445.41, 140.26], [-1446.03, 129.63], [-1446.14, 126.49], [-1446.34, 121.92], [-1447.3, 98.97], [-1447.94, 86.04]], "length": 73.68}, {"u": 5463552488, "v": 5468393309, "oneway": false, "points": [[-540.85, 344.15], [-535.85, 338.61], [-532.36, 334.76], [-522.34, 323.68], [-518.88, 319.85], [-495.61, 294.11], [-492.63, 290.81], [-479.73, 276.53], [-473.8, 269.97]], "length": 99.99}, {"u": 5463552488, "v": 53441253, "oneway": false, "points": [[-540.85, 344.15], [-547.44, 338.48], [-553.02, 333.71], [-554.4, 332.52], [-585.1, 304.16], [-592.66, 297.04], [-612.89, 278.75], [-631.29, 262.09], [-638.37, 255.52]], "length": 131.79}, {"u": 5463552488, "v": 5112004105, "oneway": false, "points": [[-540.85, 344.15], [-535.92, 348.68], [-527.62, 356.3], [-496.52, 384.9], [-487.18, 393.48]], "length": 72.9}, {"u": 5468393309, "v": 53637455, "oneway": false, "points": [[-473.8, 269.97], [-460.19, 282.29], [-458.18, 284.11], [-427.74, 311.64], [-406.27, 331.06], [-405.45, 331.8], [-404.37, 332.78], [-402.38, 334.58], [-385.1, 350.21], [-377.1, 357.44]], "length": 130.4}, {"u": 5468393309, "v": 53479821, "oneway": false, "points": [[-473.8, 269.97], [-488.38, 256.73], [-490.65, 254.66], [-510.62, 236.49], [-529.88, 218.96], [-539.51, 210.21], [-551.43, 199.37], [-564.97, 187.05], [-571.25, 181.33]], "length": 131.73}, {"u": 5468393309, "v": 13334632600, "oneway": false, "points": [[-473.8, 269.97], [-467.77, 263.3], [-455.5, 249.72], [-452.26, 246.14], [-446.22, 239.46], [-441.74, 234.5], [-431.94, 223.66], [-424.84, 215.8]], "length": 73.02}, {"u": 5468393309, "v": 5463552488, "oneway": false, "points": [[-473.8, 269.97], [-479.73, 276.53], [-492.63, 290.81], [-495.61, 294.11], [-518.88, 319.85], [-522.34, 323.68], [-532.36, 334.76], [-535.85, 338.61], [-540.85, 344.15]], "length": 99.99}, {"u": 5497859257, "v": 2771341200, "oneway": false, "points": [[-1379.91, -2159.31], [-1380.15, -2169.71], [-1382.15, -2253.52], [-1382.3, -2259.45]], "length": 100.17}, {"u": 5497859257, "v": 53639872, "oneway": false, "points": [[-1379.91, -2159.31], [-1379.54, -2151.16], [-1377.96, -2116.33]], "length": 43.02}, {"u": 5497859257, "v": 53447618, "oneway": false, "points": [[-1379.91, -2159.31], [-1390.15, -2158.95], [-1394.81, -2158.78], [-1414.67, -2158.09], [-1429.49, -2157.2], [-1447.52, -2154.97], [-1458.72, -2153.58], [-1468.14, -2149.31], [-1476.9, -2142.17], [-1498.6, -2105.76], [-1572.27, -1970.62], [-1573.36, -1968.62], [-1578.01, -1960.1]], "length": 309.02}, {"u": 5730487258, "v": 53538743, "oneway": false, "points": [[174.15, 313.43], [171.06, 310.49], [124.57, 268.34], [117.77, 262.27]], "length": 76.13}, {"u": 5730487258, "v": 5730487260, "oneway": false, "points": [[174.15, 313.43], [175.32, 312.97], [176.57, 312.83], [177.81, 313.03], [178.95, 313.57], [179.91, 314.37]], "length": 6.28}, {"u": 5730487258, "v": 5730487261, "oneway": false, "points": [[174.15, 313.43], [173.1, 314.22], [172.32, 315.28], [171.86, 316.5], [171.76, 317.82], [172.04, 319.1], [172.66, 320.25], [173.57, 321.19]], "length": 9.19}, {"u": 5730487259, "v": 5730487261, "oneway": false, "points": [[180.93, 318.8], [180.41, 319.97], [179.57, 320.96], [178.49, 321.69], [177.26, 322.1], [175.96, 322.14], [174.7, 321.84], [173.57, 321.19]], "length": 9.08}, {"u": 5730487259, "v": 5730487260, "oneway": false, "points": [[180.93, 318.8], [181.12, 317.63], [181.0, 316.45], [180.59, 315.34], [179.91, 314.37]], "length": 4.74}, {"u": 5730487259, "v": 53425693, "oneway": false, "points": [[180.93, 318.8], [184.74, 322.08], [224.6, 358.7], [243.54, 376.09], [245.49, 377.88], [251.11, 383.04]], "length": 95.14}, {"u": 5730487260, "v": 5730487259, "oneway": false, "points": [[179.91, 314.37], [180.59, 315.34], [181.0, 316.45], [181.12, 317.63], [180.93, 318.8]], "length": 4.74}, {"u": 5730487260, "v": 5730487258, "oneway": false, "points": [[179.91, 314.37], [178.95, 313.57], [177.81, 313.03], [176.57, 312.83], [175.32, 312.97], [174.15, 313.43]], "length": 6.28}, {"u": 5730487261, "v": 5730487258, "oneway": false, "points": [[173.57, 321.19], [172.66, 320.25], [172.04, 319.1], [171.76, 317.82], [171.86, 316.5], [172.32, 315.28], [173.1, 314.22], [174.15, 313.43]], "length": 9.19}, {"u": 5730487261, "v": 5730487259, "oneway": false, "points": [[173.57, 321.19], [174.7, 321.84], [175.96, 322.14], [177.26, 322.1], [178.49, 321.69], [179.57, 320.96], [180.41, 319.97], [180.93, 318.8]], "length": 9.08}, {"u": 5730487261, "v": 53541408, "oneway": true, "points": [[173.57, 321.19], [171.37, 323.0], [151.77, 344.58], [137.77, 360.01], [67.51, 437.37], [48.71, 458.07], [47.92, 458.93], [42.21, 465.22]], "length": 194.97}, {"u": 5890633223, "v": 53463508, "oneway": false, "points": [[-674.33, -2417.95], [-674.11, -2410.8]], "length": 7.15}, {"u": 5890633223, "v": 53463513, "oneway": false, "points": [[-674.33, -2417.95], [-674.51, -2423.56], [-674.64, -2426.1], [-679.34, -2517.48], [-680.52, -2521.72], [-683.95, -2531.71]], "length": 114.62}, {"u": 5890633223, "v": 6233229328, "oneway": true, "points": [[-674.33, -2417.95], [-665.66, -2418.41], [-645.86, -2419.56], [-639.45, -2419.83]], "length": 34.92}, {"u": 5890633230, "v": 53434862, "oneway": false, "points": [[-714.0, -2412.2], [-823.39, -2406.96], [-831.87, -2406.51]], "length": 118.01}, {"u": 5890633230, "v": 5890633223, "oneway": true, "points": [[-714.0, -2412.2], [-708.05, -2416.22], [-681.33, -2417.63], [-674.33, -2417.95]], "length": 40.95}, {"u": 6233229328, "v": 53463567, "oneway": false, "points": [[-639.45, -2419.83], [-639.09, -2412.52]], "length": 7.32}, {"u": 6233229328, "v": 316562667, "oneway": true, "points": [[-639.45, -2419.83], [-634.2, -2420.05], [-589.72, -2422.23], [-543.05, -2424.82], [-496.97, -2427.5], [-461.49, -2431.45], [-435.77, -2434.27], [-427.9, -2435.74], [-418.95, -2437.4]], "length": 221.37}, {"u": 6275800735, "v": 13146093508, "oneway": true, "points": [[-1113.8, -910.52], [-1150.72, -894.73], [-1164.28, -888.46], [-1182.05, -880.65], [-1208.46, -871.63], [-1222.15, -868.61], [-1237.83, -866.5], [-1256.77, -865.38], [-1272.76, -864.81], [-1347.97, -869.89], [-1353.82, -871.65], [-1359.28, -874.78]], "length": 255.02}, {"u": 6291669589, "v": 2637766387, "oneway": false, "points": [[55.56, -2612.81], [67.58, -2617.23], [69.19, -2617.82], [75.41, -2620.53], [97.62, -2630.18], [128.68, -2646.96], [147.27, -2658.82], [150.54, -2660.92], [162.9, -2670.72], [167.02, -2674.4], [179.11, -2685.18], [212.26, -2717.8], [224.25, -2729.03]], "length": 207.19}, {"u": 6291669589, "v": 316562664, "oneway": false, "points": [[55.56, -2612.81], [15.59, -2596.88], [11.96, -2595.43], [-37.84, -2575.59], [-50.97, -2570.4], [-82.89, -2558.15], [-129.68, -2539.7], [-164.92, -2526.23], [-171.66, -2523.05]], "length": 244.33}, {"u": 6291669589, "v": 847061279, "oneway": false, "points": [[55.56, -2612.81], [49.4, -2628.95], [45.7, -2637.67], [43.46, -2642.99], [37.32, -2660.93], [31.96, -2674.56], [26.94, -2699.2], [25.28, -2717.6], [30.31, -2757.26], [36.53, -2806.39], [35.62, -2829.82], [32.87, -2850.95], [18.27, -2893.07], [-2.82, -2934.26], [-27.11, -2974.3], [-63.1, -3014.98], [-71.01, -3019.74]], "length": 445.24}, {"u": 6401044369, "v": 452816427, "oneway": false, "points": [[349.69, -2664.53], [352.23, -2675.64], [355.94, -2684.91], [358.03, -2691.41], [364.93, -2720.22], [365.78, -2726.16], [364.61, -2731.36], [363.44, -2735.47], [359.42, -2741.68], [355.3, -2745.25], [348.02, -2749.02], [338.29, -2751.3], [330.69, -2753.08], [325.58, -2754.28]], "length": 117.53}, {"u": 6401044370, "v": 53465696, "oneway": false, "points": [[233.96, -2454.75], [229.69, -2448.21], [225.66, -2443.76], [220.41, -2438.03], [198.56, -2413.54], [187.38, -2400.77], [172.83, -2384.85], [153.43, -2364.07], [142.37, -2348.48], [110.79, -2303.9], [108.51, -2298.06], [107.17, -2290.57], [106.99, -2279.79], [107.97, -2268.37], [108.62, -2251.16], [106.1, -2239.42], [103.0, -2233.66]], "length": 267.02}, {"u": 6404917413, "v": 316562664, "oneway": false, "points": [[-495.67, -2817.71], [-472.62, -2798.59], [-454.24, -2783.34], [-402.81, -2740.68], [-300.42, -2664.95], [-210.91, -2593.62], [-192.0, -2575.29], [-185.77, -2563.73], [-178.92, -2541.38], [-175.32, -2532.28], [-171.66, -2523.05]], "length": 445.01}, {"u": 6577170380, "v": 53636372, "oneway": false, "points": [[2117.44, 1439.65], [2137.06, 1470.47]], "length": 36.54}, {"u": 6577170380, "v": 1142903012, "oneway": true, "points": [[2117.44, 1439.65], [2096.53, 1409.17], [2092.04, 1402.0]], "length": 45.43}, {"u": 6577823481, "v": 53486814, "oneway": true, "points": [[-2307.22, -199.94], [-2320.38, -191.97], [-2343.45, -178.86], [-2403.09, -151.51], [-2417.27, -144.76], [-2427.79, -139.79], [-2432.55, -136.1], [-2437.62, -130.84], [-2439.57, -128.11], [-2441.88, -123.27], [-2443.1, -117.95], [-2443.08, -103.52], [-2442.65, -86.47], [-2442.53, -81.44], [-2441.97, -68.43], [-2441.33, -53.37], [-2441.08, -46.13], [-2440.18, -19.72], [-2439.39, -8.32]], "length": 272.09}, {"u": 6610389586, "v": 450714559, "oneway": true, "points": [[-921.1, -266.76], [-924.75, -267.87], [-928.73, -268.85], [-932.91, -269.41], [-936.78, -269.66], [-944.93, -269.55], [-956.65, -269.13], [-969.4, -268.53], [-980.95, -267.97], [-1027.19, -265.75], [-1051.12, -264.61], [-1069.25, -263.74]], "length": 148.61}, {"u": 6610389586, "v": 3241106091, "oneway": true, "points": [[-921.1, -266.76], [-921.04, -280.03], [-920.91, -297.65], [-920.8, -318.3], [-920.58, -323.62], [-919.84, -328.9], [-918.83, -332.83], [-917.7, -336.4], [-915.98, -340.15], [-914.03, -343.16], [-911.94, -345.91], [-909.2, -349.13], [-894.59, -364.2], [-885.92, -373.44]], "length": 119.06}, {"u": 6915301805, "v": 53626974, "oneway": false, "points": [[2332.54, 2443.07], [2360.6, 2470.98], [2367.65, 2477.37]], "length": 49.1}, {"u": 7189398145, "v": 1179967125, "oneway": false, "points": [[-748.6, -1166.49], [-721.58, -1144.43], [-714.47, -1138.26], [-709.01, -1130.58], [-707.08, -1124.53], [-707.4, -1120.16], [-709.07, -1117.62], [-710.33, -1115.72], [-728.08, -1094.31], [-735.16, -1083.59], [-762.16, -1042.98], [-765.69, -1040.7], [-768.62, -1039.61], [-771.57, -1039.52], [-774.55, -1040.58], [-777.24, -1042.62], [-793.68, -1062.17], [-824.45, -1089.71]], "length": 242.85}, {"u": 7189398145, "v": 13056348946, "oneway": true, "points": [[-748.6, -1166.49], [-754.01, -1167.06], [-758.49, -1168.44], [-761.2, -1170.01], [-769.16, -1177.75], [-772.92, -1181.17], [-774.69, -1182.76], [-777.35, -1184.72], [-780.81, -1186.35]], "length": 38.95}, {"u": 7189398161, "v": 13056348945, "oneway": true, "points": [[-809.96, -1175.33], [-796.41, -1185.69], [-789.06, -1190.2], [-786.05, -1191.55], [-783.02, -1192.14], [-779.72, -1192.23], [-776.14, -1191.57]], "length": 39.01}, {"u": 7189398161, "v": 1191535148, "oneway": true, "points": [[-809.96, -1175.33], [-748.0, -1242.5], [-740.56, -1250.54], [-738.39, -1252.89], [-733.42, -1258.28]], "length": 112.86}, {"u": 8174660902, "v": 1182471954, "oneway": true, "points": [[-429.35, -848.36], [-425.58, -847.76], [-420.76, -846.47], [-416.31, -844.64], [-408.51, -839.73], [-398.81, -831.34], [-382.32, -816.36], [-377.21, -811.72], [-362.13, -798.03], [-352.96, -789.68], [-324.06, -763.44], [-320.62, -760.32], [-317.76, -757.68]], "length": 145.18}, {"u": 8316813421, "v": 1850006061, "oneway": false, "points": [[-3035.81, 158.04], [-2901.56, 152.9]], "length": 134.35}, {"u": 8316813421, "v": 53486863, "oneway": false, "points": [[-3035.81, 158.04], [-3036.1, 149.1], [-3038.75, 65.69], [-3038.83, 63.19], [-3039.21, 57.72], [-3039.34, 56.47], [-3039.39, 54.56], [-3038.35, 53.21], [-3037.12, 52.87], [-2985.29, 50.94], [-2960.96, 49.76], [-2942.8, 49.48]], "length": 200.92}, {"u": 8729846828, "v": 53667521, "oneway": false, "points": [[184.23, 458.57], [190.95, 464.66], [193.58, 467.03], [230.47, 499.99], [241.79, 510.1], [283.51, 547.36], [289.97, 553.14], [325.13, 584.82], [327.75, 586.97], [335.02, 593.7]], "length": 202.49}, {"u": 8729846828, "v": 53425693, "oneway": true, "points": [[184.23, 458.57], [185.23, 457.46], [196.02, 445.29], [245.4, 389.65], [251.11, 383.04]], "length": 100.89}, {"u": 8868957845, "v": 1179459735, "oneway": true, "points": [[-1264.94, -1026.46], [-1264.05, -1021.85], [-1264.01, -1011.81], [-1266.46, -1005.84], [-1273.7, -1005.62], [-1296.8, -1005.57], [-1307.47, -1006.34], [-1356.88, -1006.09], [-1362.84, -1005.73], [-1382.95, -1006.07], [-1399.35, -1009.02], [-1441.66, -1016.8]], "length": 197.41}, {"u": 8868957845, "v": 11603196290, "oneway": false, "points": [[-1264.94, -1026.46], [-1264.94, -1033.35], [-1265.31, -1081.65], [-1265.02, -1085.1], [-1264.47, -1088.57], [-1263.81, -1091.73], [-1263.0, -1094.84], [-1262.01, -1097.83], [-1260.93, -1100.57], [-1259.77, -1103.0], [-1258.52, -1105.33], [-1257.07, -1107.53], [-1255.67, -1109.34], [-1254.03, -1111.19], [-1244.18, -1121.94], [-1237.01, -1129.64]], "length": 112.54}, {"u": 9146885459, "v": 53473027, "oneway": false, "points": [[-1297.2, -2613.06], [-1298.84, -2624.81], [-1299.89, -2633.28], [-1300.05, -2636.05], [-1302.72, -2695.65], [-1304.91, -2744.38], [-1305.96, -2767.89], [-1307.69, -2806.45], [-1310.17, -2839.02], [-1311.87, -2861.34], [-1312.19, -2863.75], [-1313.53, -2873.86]], "length": 261.42}, {"u": 9146885459, "v": 53473010, "oneway": false, "points": [[-1297.2, -2613.06], [-1295.01, -2593.85], [-1293.93, -2590.43], [-1284.49, -2560.46], [-1275.47, -2531.83], [-1275.32, -2530.59], [-1274.33, -2522.35], [-1274.05, -2520.1], [-1273.12, -2512.45], [-1271.99, -2483.77], [-1270.84, -2454.94], [-1270.05, -2435.1], [-1269.64, -2424.63], [-1267.42, -2392.04], [-1266.38, -2376.56]], "length": 239.96}, {"u": 9146885459, "v": 1180187578, "oneway": false, "points": [[-1297.2, -2613.06], [-1289.21, -2613.94], [-1244.27, -2615.95], [-1228.9, -2620.53], [-1216.23, -2626.12], [-1196.31, -2639.08], [-1180.77, -2643.18], [-1149.73, -2646.6], [-1110.74, -2649.88], [-1082.19, -2651.57], [-1067.55, -2650.8], [-1060.27, -2648.01]], "length": 244.16}, {"u": 9146885459, "v": 10829398901, "oneway": false, "points": [[-1297.2, -2613.06], [-1306.39, -2612.73], [-1339.83, -2611.24], [-1348.07, -2611.03], [-1389.67, -2609.21], [-1399.39, -2607.74]], "length": 102.38}, {"u": 10829398901, "v": 9146885459, "oneway": false, "points": [[-1399.39, -2607.74], [-1389.67, -2609.21], [-1348.07, -2611.03], [-1339.83, -2611.24], [-1306.39, -2612.73], [-1297.2, -2613.06]], "length": 102.38}, {"u": 10829398901, "v": 2638675157, "oneway": false, "points": [[-1399.39, -2607.74], [-1400.53, -2617.63], [-1401.94, -2629.86], [-1403.5, -2636.92], [-1414.54, -2676.13], [-1426.58, -2707.96], [-1433.3, -2723.36], [-1449.47, -2756.09], [-1471.44, -2791.29], [-1475.8, -2798.42]], "length": 207.42}, {"u": 10829398901, "v": 2638675190, "oneway": false, "points": [[-1399.39, -2607.74], [-1399.02, -2604.57], [-1398.75, -2598.65], [-1397.54, -2572.07], [-1393.75, -2504.95], [-1392.94, -2497.87], [-1392.47, -2490.37]], "length": 117.6}, {"u": 11205598924, "v": 1706427652, "oneway": true, "points": [[2681.72, 2338.73], [2692.75, 2345.7], [2696.51, 2346.98], [2697.9, 2347.45], [2711.9, 2352.34]], "length": 33.31}, {"u": 11205598924, "v": 53447046, "oneway": false, "points": [[2681.72, 2338.73], [2668.52, 2324.24], [2652.2, 2304.95], [2647.22, 2297.41]], "length": 53.9}, {"u": 11390496552, "v": 316305090, "oneway": false, "points": [[1606.79, 390.62], [1599.4, 400.93], [1581.65, 421.0]], "length": 39.48}, {"u": 11603196290, "v": 1180079551, "oneway": true, "points": [[-1237.01, -1129.64], [-1275.31, -1164.29], [-1365.11, -1245.53]], "length": 172.75}, {"u": 11603196290, "v": 8868957845, "oneway": false, "points": [[-1237.01, -1129.64], [-1244.18, -1121.94], [-1254.03, -1111.19], [-1255.67, -1109.34], [-1257.07, -1107.53], [-1258.52, -1105.33], [-1259.77, -1103.0], [-1260.93, -1100.57], [-1262.01, -1097.83], [-1263.0, -1094.84], [-1263.81, -1091.73], [-1264.47, -1088.57], [-1265.02, -1085.1], [-1265.31, -1081.65], [-1264.94, -1033.35], [-1264.94, -1026.46]], "length": 112.54}, {"u": 11793715342, "v": 53640736, "oneway": true, "points": [[1766.71, 1954.33], [1752.91, 1977.46], [1743.28, 1988.05]], "length": 41.25}, {"u": 11793715342, "v": 53668897, "oneway": false, "points": [[1766.71, 1954.33], [1792.37, 1931.87], [1799.79, 1925.37]], "length": 43.97}, {"u": 12849307402, "v": 1160692043, "oneway": false, "points": [[-335.87, -76.29], [-339.78, -69.55], [-360.26, -46.64], [-367.54, -42.34]], "length": 46.98}, {"u": 12911858844, "v": 53629591, "oneway": false, "points": [[-990.15, -1210.34], [-832.32, -1335.38], [-829.81, -1337.19], [-828.83, -1337.88], [-826.96, -1338.7], [-824.47, -1339.32], [-822.72, -1339.48], [-821.51, -1338.97], [-819.28, -1337.06], [-792.55, -1312.67], [-782.0, -1303.43]], "length": 266.47}, {"u": 12911858844, "v": 53629591, "oneway": false, "points": [[-990.15, -1210.34], [-983.8, -1204.23], [-982.96, -1203.5], [-967.78, -1190.35], [-943.95, -1168.3], [-934.76, -1160.18], [-924.72, -1151.25], [-921.87, -1149.65], [-919.74, -1150.28], [-905.29, -1167.24], [-786.94, -1297.97], [-782.0, -1303.43]], "length": 299.64}, {"u": 12911858844, "v": 917880340, "oneway": false, "points": [[-990.15, -1210.34], [-1015.52, -1189.98], [-1047.94, -1164.23], [-1050.19, -1161.03], [-1050.36, -1157.87], [-1049.89, -1155.59], [-1048.76, -1153.37], [-1046.78, -1150.93], [-1029.44, -1134.5], [-1018.8, -1125.79], [-1011.13, -1118.45], [-973.69, -1084.29], [-965.71, -1077.01], [-955.74, -1067.7], [-938.28, -1052.41], [-936.04, -1050.45], [-929.29, -1044.08]], "length": 247.81}, {"u": 12911858894, "v": 2634693278, "oneway": false, "points": [[-1427.4, -1733.13], [-1424.32, -1612.86]], "length": 120.31}, {"u": 12911858894, "v": 53444545, "oneway": false, "points": [[-1427.4, -1733.13], [-1427.31, -1748.02], [-1426.69, -1757.48], [-1424.54, -1767.88], [-1419.24, -1781.85], [-1416.21, -1787.92], [-1383.2, -1848.31], [-1378.44, -1857.12], [-1342.43, -1923.39], [-1317.02, -1977.91], [-1297.1, -2008.27], [-1280.24, -2028.2]], "length": 333.54}, {"u": 12911858894, "v": 1179795960, "oneway": false, "points": [[-1427.4, -1733.13], [-1433.39, -1733.01], [-1465.79, -1732.38], [-1469.4, -1732.31], [-1497.06, -1731.77], [-1505.63, -1731.62]], "length": 78.24}, {"u": 13009756501, "v": 53521155, "oneway": false, "points": [[-2798.01, -870.27], [-2805.09, -871.19], [-2807.99, -873.26], [-2812.41, -876.4], [-2835.75, -888.52], [-2849.6, -894.01], [-2862.07, -896.88], [-2874.5, -898.41], [-2888.86, -899.0], [-2949.3, -896.21], [-2957.19, -895.97]], "length": 165.41}, {"u": 13009756501, "v": 53421608, "oneway": false, "points": [[-2798.01, -870.27], [-2798.42, -903.14], [-2798.91, -921.41], [-2799.59, -946.38], [-2800.26, -967.89]], "length": 97.65}, {"u": 13009756501, "v": 2298789030, "oneway": false, "points": [[-2798.01, -870.27], [-2796.94, -818.81], [-2791.96, -810.6]], "length": 61.07}, {"u": 13018504178, "v": 1192150413, "oneway": true, "points": [[605.72, 11.07], [607.71, 11.56], [636.84, 18.76], [668.71, 27.28], [696.47, 36.19], [703.77, 38.74], [717.38, 46.09], [729.75, 56.04], [741.33, 68.54], [773.07, 95.5], [777.31, 99.15], [781.44, 102.31]], "length": 202.75}, {"u": 13030502563, "v": 2987035532, "oneway": false, "points": [[-2496.9, -847.94], [-2477.92, -832.16], [-2466.85, -822.79]], "length": 39.19}, {"u": 13030502563, "v": 13030502567, "oneway": false, "points": [[-2496.9, -847.94], [-2507.17, -852.18], [-2514.28, -857.88], [-2519.24, -861.99], [-2528.11, -869.35], [-2547.08, -885.53], [-2550.18, -888.22], [-2553.03, -895.22]], "length": 74.79}, {"u": 13030502563, "v": 13030502564, "oneway": false, "points": [[-2496.9, -847.94], [-2502.39, -857.63], [-2509.44, -863.68], [-2514.81, -868.38], [-2516.23, -869.57]], "length": 29.41}, {"u": 13030502564, "v": 53534017, "oneway": true, "points": [[-2516.23, -869.57], [-2512.34, -873.98], [-2510.5, -876.08], [-2493.0, -895.94], [-2485.46, -904.5], [-2460.19, -934.63], [-2454.42, -940.98]], "length": 94.45}, {"u": 13030502564, "v": 13030502563, "oneway": false, "points": [[-2516.23, -869.57], [-2514.81, -868.38], [-2509.44, -863.68], [-2502.39, -857.63], [-2496.9, -847.94]], "length": 29.41}, {"u": 13030502564, "v": 13030502567, "oneway": false, "points": [[-2516.23, -869.57], [-2522.97, -875.11], [-2541.84, -891.66], [-2544.78, -894.09], [-2553.03, -895.22]], "length": 45.97}, {"u": 13030502567, "v": 53462362, "oneway": false, "points": [[-2553.03, -895.22], [-2555.98, -897.73]], "length": 3.88}, {"u": 13030502567, "v": 13030502563, "oneway": false, "points": [[-2553.03, -895.22], [-2550.18, -888.22], [-2547.08, -885.53], [-2528.11, -869.35], [-2519.24, -861.99], [-2514.28, -857.88], [-2507.17, -852.18], [-2496.9, -847.94]], "length": 74.79}, {"u": 13030502567, "v": 13030502564, "oneway": false, "points": [[-2553.03, -895.22], [-2544.78, -894.09], [-2541.84, -891.66], [-2522.97, -875.11], [-2516.23, -869.57]], "length": 45.97}, {"u": 13056348945, "v": 13056348946, "oneway": true, "points": [[-776.14, -1191.57], [-780.81, -1186.35]], "length": 7.0}, {"u": 13056348945, "v": 7189398145, "oneway": true, "points": [[-776.14, -1191.57], [-772.84, -1190.53], [-769.24, -1188.71], [-753.04, -1173.11], [-750.83, -1170.18], [-748.6, -1166.49]], "length": 37.97}, {"u": 13056348946, "v": 13056348947, "oneway": true, "points": [[-780.81, -1186.35], [-850.14, -1112.13]], "length": 101.56}, {"u": 13056348947, "v": 1179967125, "oneway": false, "points": [[-850.14, -1112.13], [-843.56, -1106.1], [-842.44, -1105.14], [-824.45, -1089.71]], "length": 34.1}, {"u": 13056348947, "v": 13056348949, "oneway": true, "points": [[-850.14, -1112.13], [-914.02, -1041.34], [-919.33, -1035.3]], "length": 103.39}, {"u": 13056348949, "v": 917880340, "oneway": false, "points": [[-919.33, -1035.3], [-929.29, -1044.08]], "length": 13.28}, {"u": 13056348949, "v": 1180120617, "oneway": true, "points": [[-919.33, -1035.3], [-924.81, -1028.39], [-942.39, -1009.02], [-968.89, -981.46], [-975.89, -974.61], [-984.32, -967.26]], "length": 94.2}, {"u": 13056348949, "v": 53493140, "oneway": false, "points": [[-919.33, -1035.3], [-912.89, -1029.58], [-910.54, -1027.49], [-893.0, -1011.42]], "length": 35.54}, {"u": 13069954941, "v": 53472474, "oneway": true, "points": [[-765.79, -202.86], [-795.81, -169.06], [-802.75, -163.8]], "length": 53.91}, {"u": 13069954941, "v": 1181378741, "oneway": true, "points": [[-765.79, -202.86], [-778.83, -196.2], [-782.46, -192.53], [-786.13, -189.63], [-790.23, -187.27], [-793.77, -186.03], [-796.97, -185.22], [-800.4, -184.74], [-804.12, -184.54], [-807.89, -184.71], [-811.23, -185.32], [-814.68, -186.23], [-818.08, -187.75], [-833.64, -198.17], [-846.96, -203.77]], "length": 91.09}, {"u": 13091071866, "v": 53426174, "oneway": true, "points": [[187.28, -264.23], [183.68, -253.67], [173.79, -243.15], [146.92, -212.65], [138.82, -209.76]], "length": 74.85}, {"u": 13091071866, "v": 53426175, "oneway": false, "points": [[187.28, -264.23], [198.63, -276.72], [204.03, -281.35]], "length": 23.99}, {"u": 13132340420, "v": 366215894, "oneway": true, "points": [[546.55, 462.41], [576.78, 490.35], [607.87, 518.34], [624.71, 532.95], [639.81, 546.29], [644.88, 550.87]], "length": 132.28}, {"u": 13132340420, "v": 53423470, "oneway": true, "points": [[546.55, 462.41], [552.52, 475.21], [564.42, 488.9], [595.33, 518.8], [620.08, 542.2], [623.83, 545.56], [626.54, 547.87], [628.11, 549.39], [629.75, 551.49], [631.56, 554.38], [632.6, 556.67], [633.1, 558.99], [633.29, 560.31], [633.44, 561.9], [633.44, 563.44], [633.18, 565.12]], "length": 137.25}, {"u": 13146093508, "v": 2859302272, "oneway": false, "points": [[-1359.28, -874.78], [-1361.08, -874.76], [-1363.02, -874.69]], "length": 3.74}, {"u": 13146093508, "v": 1179956625, "oneway": true, "points": [[-1359.28, -874.78], [-1354.6, -877.03], [-1353.82, -877.37], [-1348.31, -878.72], [-1315.42, -879.87], [-1257.5, -882.95], [-1237.22, -884.39], [-1222.36, -886.18], [-1207.45, -889.28], [-1192.37, -894.33], [-1170.77, -903.25], [-1094.61, -933.35]], "length": 274.33}, {"u": 13151160466, "v": 53508174, "oneway": false, "points": [[-918.96, -854.01], [-917.76, -852.95], [-914.47, -850.07], [-902.51, -839.55], [-900.72, -837.98], [-865.62, -807.12], [-854.82, -797.62], [-843.21, -787.42], [-833.62, -778.99], [-816.43, -763.88], [-808.85, -757.22]], "length": 146.6}, {"u": 13151160466, "v": 1180120831, "oneway": true, "points": [[-918.96, -854.01], [-928.08, -854.67], [-946.99, -870.88], [-955.92, -878.69], [-963.7, -885.57], [-979.7, -899.55]], "length": 77.54}, {"u": 13191853166, "v": 53441265, "oneway": false, "points": [[-1023.34, -26.64], [-1023.31, -26.1], [-1023.17, -22.53], [-1021.91, 8.9], [-1021.77, 12.38], [-1021.42, 21.05]], "length": 47.73}, {"u": 13202666793, "v": 53640736, "oneway": true, "points": [[1731.55, 1977.84], [1743.28, 1988.05]], "length": 15.55}, {"u": 13202666793, "v": 11793715342, "oneway": true, "points": [[1731.55, 1977.84], [1742.17, 1968.24], [1754.09, 1957.44], [1766.71, 1954.33]], "length": 43.39}, {"u": 13206778050, "v": 13202666793, "oneway": true, "points": [[1719.62, 1991.5], [1731.55, 1977.84]], "length": 18.14}, {"u": 13206778050, "v": 1142903570, "oneway": true, "points": [[1719.62, 1991.5], [1714.05, 1986.41], [1705.07, 1978.15], [1697.87, 1971.64], [1681.37, 1956.65], [1668.96, 1945.76], [1660.56, 1938.45], [1658.08, 1936.38], [1637.24, 1919.08]], "length": 109.71}, {"u": 13324853243, "v": 53615252, "oneway": false, "points": [[-310.57, -302.66], [-297.88, -291.83], [-294.58, -288.97], [-286.8, -282.13]], "length": 31.41}, {"u": 13324853243, "v": 917593109, "oneway": true, "points": [[-310.57, -302.66], [-312.89, -302.58], [-315.22, -302.59], [-317.43, -303.13], [-319.56, -304.21], [-358.06, -339.61], [-365.67, -346.61]], "length": 71.95}, {"u": 13324853247, "v": 917593109, "oneway": false, "points": [[-359.18, -353.68], [-365.67, -346.61]], "length": 9.6}, {"u": 13324853247, "v": 53467500, "oneway": false, "points": [[-359.18, -353.68], [-350.45, -363.18], [-279.24, -440.79], [-272.6, -448.03]], "length": 128.05}, {"u": 13324853247, "v": 13324853243, "oneway": true, "points": [[-359.18, -353.68], [-351.46, -346.78], [-335.88, -332.84], [-324.02, -322.23], [-312.05, -311.51], [-310.74, -309.53], [-310.04, -307.44], [-310.07, -305.0], [-310.57, -302.66]], "length": 72.65}, {"u": 13334632578, "v": 2713279290, "oneway": false, "points": [[-319.64, 98.27], [-287.01, 62.83]], "length": 48.17}, {"u": 13334632578, "v": 2713279291, "oneway": true, "points": [[-319.64, 98.27], [-319.34, 101.72], [-319.85, 105.41], [-320.94, 109.02], [-323.21, 112.7], [-328.38, 118.5], [-338.74, 119.55]], "length": 33.47}, {"u": 13334632600, "v": 5468393309, "oneway": false, "points": [[-424.84, 215.8], [-431.94, 223.66], [-441.74, 234.5], [-446.22, 239.46], [-452.26, 246.14], [-455.5, 249.72], [-467.77, 263.3], [-473.8, 269.97]], "length": 73.02}, {"u": 13334632600, "v": 1701854143, "oneway": true, "points": [[-424.84, 215.8], [-424.97, 213.76], [-424.63, 211.83], [-423.84, 209.62], [-422.51, 207.26], [-420.48, 204.25], [-415.85, 198.62], [-406.25, 194.77]], "length": 30.32}, {"u": 13334818837, "v": 1188394186, "oneway": false, "points": [[-258.99, -757.26], [-226.27, -793.19]], "length": 48.59}, {"u": 13334818837, "v": 1182471991, "oneway": false, "points": [[-258.99, -757.26], [-267.43, -748.51]], "length": 12.16}, {"u": 13334818837, "v": 4173797761, "oneway": true, "points": [[-258.99, -757.26], [-267.06, -742.69], [-269.19, -737.66], [-270.17, -733.99], [-270.6, -730.82], [-270.62, -728.57], [-270.53, -725.75], [-269.98, -722.29], [-269.18, -719.36], [-268.2, -716.4], [-264.46, -707.73]], "length": 53.28}]} \ No newline at end of file diff --git a/src/GameManager.js b/src/GameManager.js new file mode 100644 index 0000000..f108954 --- /dev/null +++ b/src/GameManager.js @@ -0,0 +1,86 @@ +export class GameManager { + constructor(routeManager, uiManager) { + this.routeManager = routeManager; + this.uiManager = uiManager; + + // Game State + this.budget = 1000000; // Start with $1M + this.day = 1; + this.ticketPrice = 2.50; + + // Constants + this.COST_PER_METER = 200; // Construction cost + this.BUS_COST = 50000; // Cost per vehicle + + // Timer for "Daily" cycle (every 5 seconds) + this.gameLoopInterval = null; + } + + start() { + this.updateUI(); + + // Start the game loop: Every 5 seconds = 1 Day + this.gameLoopInterval = setInterval(() => { + this.processDay(); + }, 5000); + } + + processDay() { + this.day++; + + // Calculate total income from all active routes + const savedRoutes = this.routeManager.getSavedRoutes(); + let dailyIncome = 0; + let totalRiders = 0; + + savedRoutes.forEach(route => { + dailyIncome += route.stats.ridership * this.ticketPrice; + totalRiders += route.stats.ridership; + }); + + this.budget += dailyIncome; + + // Flash visual feedback if income > 0 + if (dailyIncome > 0) { + this.uiManager.showIncomeFeedback(dailyIncome); + } + + this.updateUI(); + } + + /** + * Estimates cost for a route based on length and needed buses + */ + getProjectedCost(lengthInMeters) { + // Construction Cost + const construction = lengthInMeters * this.COST_PER_METER; + + // Fleet Cost: 1 Bus per 800m + const busesNeeded = Math.ceil(lengthInMeters / 800); + const fleet = busesNeeded * this.BUS_COST; + + return Math.floor(construction + fleet); + } + + canAfford(cost) { + return this.budget >= cost; + } + + deductFunds(amount) { + this.budget -= amount; + this.updateUI(); + } + + updateUI() { + // Calculate aggregate stats + const savedRoutes = this.routeManager.getSavedRoutes(); + let totalRiders = 0; + savedRoutes.forEach(r => totalRiders += r.stats.ridership); + + this.uiManager.updateGameStats({ + budget: this.budget, + day: this.day, + totalRiders: totalRiders + }); + } +} diff --git a/src/RouteManager.js b/src/RouteManager.js index 535284b..4c71ce9 100644 --- a/src/RouteManager.js +++ b/src/RouteManager.js @@ -18,8 +18,14 @@ export class RouteManager { this.ROAD_OFFSET = 2.5; this.onRouteChanged = null; + this.gameManager = null; } + setGameManager(gm) { + this.gameManager = gm; + } + + initGraph(data) { this.graphData = data; this.graphData.adjacency = {}; @@ -52,6 +58,31 @@ export class RouteManager { }); } + calculateRidership(nodeList) { + if (!this.graphData || nodeList.length < 2) return 0; + + let totalPop = 0; + let totalJobs = 0; + + // Sum census data for all nodes traversed by the route + nodeList.forEach(nodeId => { + const node = this.graphData.nodes[nodeId]; + if (node) { + totalPop += (node.pop || 0); + totalJobs += (node.jobs || 0); + } + }); + + const synergy = Math.min(totalPop, totalJobs); + + // Efficiency Factor: How balanced is the route? + // + Base multiplier (arbitrary game balance constant) + const GAME_BALANCE_MULTIPLIER = 5.0; + + + return Math.floor(synergy * GAME_BALANCE_MULTIPLIER); + } + // ============================ // API Methods // ============================ @@ -60,12 +91,7 @@ export class RouteManager { if (!this.graphData) return; const nodeId = this.findNearestNode(vector3.x, vector3.z); if (nodeId === null) return; - - if (this.currentRouteNodes.length > 0 && - this.currentRouteNodes[this.currentRouteNodes.length - 1] === nodeId) { - return; - } - + if (this.currentRouteNodes.length > 0 && this.currentRouteNodes[this.currentRouteNodes.length - 1] === nodeId) return; this.currentRouteNodes.push(nodeId); this.addMarkerVisual(nodeId); this.updatePathVisuals(); @@ -75,69 +101,64 @@ export class RouteManager { if (!this.graphData) return; const index = this.markers.indexOf(markerObject); if (index === -1) return; - const newNodeId = this.findNearestNode(worldPoint.x, worldPoint.z); - if (this.currentRouteNodes[index] !== newNodeId) { this.currentRouteNodes[index] = newNodeId; - const nodeData = this.graphData.nodes[newNodeId]; markerObject.position.set(nodeData.x, 2, nodeData.y); markerObject.userData.nodeId = newNodeId; - this.updatePathVisuals(); } } + saveCurrentRoute() { if (this.currentRouteNodes.length < 2 || !this.currentPathMesh) return; - const totalLength = this.currentPathMesh.userData.length || 0; + const length = this.currentPathMesh.userData.length || 0; + const cost = this.gameManager.getProjectedCost(length); - // Freeze mesh color + // 1. Check Funds + if (!this.gameManager.canAfford(cost)) { + alert("Insufficient Funds!"); + return; + } + + // 2. Pay + this.gameManager.deductFunds(cost); + + // 3. Freeze & Save this.currentPathMesh.material.color.setHex(0x10B981); + const ridership = this.calculateRidership(this.currentRouteNodes); + this.savedRoutes.push({ nodes: [...this.currentRouteNodes], - length: totalLength, + stats: { length, cost, ridership }, mesh: this.currentPathMesh }); this.currentPathMesh = null; this.resetDraftingState(); + + // Force UI update to show new total riders + this.gameManager.updateUI(); } editSavedRoute(index) { if (index < 0 || index >= this.savedRoutes.length) return; - - // 1. If we are currently drafting, discard it (or save it automatically? let's discard for simplicity) this.clearCurrentRoute(); - const route = this.savedRoutes[index]; - - // 2. Load nodes this.currentRouteNodes = [...route.nodes]; - - // 3. Remove the saved mesh from scene (we will redraw it as active) - if (route.mesh) { - this.scene.remove(route.mesh); - route.mesh.geometry.dispose(); - } - - // 4. Remove from saved list + if (route.mesh) { this.scene.remove(route.mesh); route.mesh.geometry.dispose(); } this.savedRoutes.splice(index, 1); - - // 5. Restore Visuals (Markers & Path) this.currentRouteNodes.forEach(nodeId => this.addMarkerVisual(nodeId)); this.updatePathVisuals(); + this.gameManager.updateUI(); // Update UI since we removed a route (income drops) } clearCurrentRoute() { - if (this.currentPathMesh) { - this.scene.remove(this.currentPathMesh); - this.currentPathMesh.geometry.dispose(); - this.currentPathMesh = null; - } + if (this.currentPathMesh) { this.scene.remove(this.currentPathMesh); this.currentPathMesh.geometry.dispose(); this.currentPathMesh = null; } this.resetDraftingState(); } @@ -145,52 +166,45 @@ export class RouteManager { this.currentRouteNodes = []; this.markers.forEach(m => this.scene.remove(m)); this.markers = []; - if (this.onRouteChanged) this.onRouteChanged(0); + if (this.onRouteChanged) this.onRouteChanged({ length: 0, cost: 0, ridership: 0 }); } deleteSavedRoute(index) { if (index < 0 || index >= this.savedRoutes.length) return; const route = this.savedRoutes[index]; - if (route.mesh) { - this.scene.remove(route.mesh); - route.mesh.geometry.dispose(); - } + if (route.mesh) { this.scene.remove(route.mesh); route.mesh.geometry.dispose(); } this.savedRoutes.splice(index, 1); + this.gameManager.updateUI(); } - getSavedRoutes() { - return this.savedRoutes; - } + getSavedRoutes() { return this.savedRoutes; } // ============================ // Visuals & Logic // ============================ updatePathVisuals() { - // Need 2+ nodes if (this.currentRouteNodes.length < 2) { if (this.currentPathMesh) { this.scene.remove(this.currentPathMesh); this.currentPathMesh = null; } - if (this.onRouteChanged) this.onRouteChanged(0); + // Report 0 stats + if (this.onRouteChanged) this.onRouteChanged({ length: 0, cost: 0, ridership: 0 }); return; } let fullPathPoints = []; - let totalDist = 0; // Reset Distance + let totalDist = 0; for (let i = 0; i < this.currentRouteNodes.length - 1; i++) { const start = this.currentRouteNodes[i]; const end = this.currentRouteNodes[i + 1]; - const segmentEdges = this.computePathAStar(start, end); if (!segmentEdges) continue; segmentEdges.forEach(step => { - // --- FIX: Accumulate Distance --- - // If Python didn't send 'length', calculate Euclidean let dist = step.edgeData.length; if (!dist) { const p1 = step.edgeData.points[0]; @@ -198,7 +212,6 @@ export class RouteManager { dist = Math.sqrt((p1[0] - p2[0]) ** 2 + (p1[1] - p2[1]) ** 2); } totalDist += dist; - // -------------------------------- const rawPoints = step.edgeData.points; let segmentPoints = rawPoints.map(p => new THREE.Vector2(p[0], p[1])); @@ -209,6 +222,7 @@ export class RouteManager { }); } + // Rebuild Mesh if (this.currentPathMesh) { this.scene.remove(this.currentPathMesh); this.currentPathMesh.geometry.dispose(); @@ -222,11 +236,21 @@ export class RouteManager { this.currentPathMesh = new THREE.Mesh(tubeGeom, tubeMat); this.currentPathMesh.userData.length = totalDist; - this.scene.add(this.currentPathMesh); + this.updateMarkerColors(); - if (this.onRouteChanged) this.onRouteChanged(totalDist); + // -- CALCULATE LIVE GAMEPLAY STATS -- + const projectedRiders = this.calculateRidership(this.currentRouteNodes); + const projectedCost = this.gameManager ? this.gameManager.getProjectedCost(totalDist) : 0; + + if (this.onRouteChanged) { + this.onRouteChanged({ + length: totalDist, + cost: projectedCost, + ridership: projectedRiders + }); + } } updateMarkerColors() { diff --git a/src/UIManager.js b/src/UIManager.js index fd5779c..14be074 100644 --- a/src/UIManager.js +++ b/src/UIManager.js @@ -2,18 +2,25 @@ export class UIManager { constructor(routeManager) { this.routeManager = routeManager; - // DOM Elements + // UI Elements this.elCurrentLength = document.getElementById('current-length'); + this.elCurrentCost = document.getElementById('current-cost'); // NEW + this.elCurrentRiders = document.getElementById('current-riders'); // NEW + + this.elBudget = document.getElementById('val-budget'); // NEW + this.elDay = document.getElementById('val-day'); // NEW + this.elTotalRiders = document.getElementById('val-riders'); // NEW + this.elIncomeFloat = document.getElementById('income-float'); // NEW + this.elRouteList = document.getElementById('route-list'); this.elContainer = document.getElementById('ui-container'); + 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(); } @@ -21,39 +28,56 @@ export class UIManager { this.btnSave.addEventListener('click', () => { this.routeManager.saveCurrentRoute(); this.renderRouteList(); - this.updateStats(0); }); this.btnDiscard.addEventListener('click', () => { this.routeManager.clearCurrentRoute(); - this.updateStats(0); }); - // Toggle Logic 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.background = isActive ? '#4B5563' : ''; this.btnZoning.style.color = isActive ? 'white' : ''; - - if (this.onToggleZoning) { - this.onToggleZoning(isActive); - } + if (this.onToggleZoning) this.onToggleZoning(isActive); }); - } - updateStats(lengthInMeters) { - let text = ""; - if (lengthInMeters > 1000) { - text = (lengthInMeters / 1000).toFixed(2) + " km"; - } else { - text = Math.round(lengthInMeters) + " m"; - } - this.elCurrentLength.textContent = text; + // Called by GameManager + updateGameStats(stats) { + this.elBudget.textContent = "$" + stats.budget.toLocaleString(); + this.elDay.textContent = stats.day; + this.elTotalRiders.textContent = stats.totalRiders.toLocaleString(); + } + + showIncomeFeedback(amount) { + this.elIncomeFloat.textContent = "+ $" + amount.toLocaleString(); + this.elIncomeFloat.style.opacity = 1; + this.elIncomeFloat.style.top = "40px"; + + // Reset animation + setTimeout(() => { + this.elIncomeFloat.style.opacity = 0; + this.elIncomeFloat.style.top = "60px"; + }, 2000); + } + + // Called by RouteManager on path change + updateDraftStats(stats) { + // Length + let lenText = stats.length > 1000 + ? (stats.length / 1000).toFixed(2) + " km" + : Math.round(stats.length) + " m"; + this.elCurrentLength.textContent = lenText; + + // Cost + this.elCurrentCost.textContent = "$" + stats.cost.toLocaleString(); + + // Ridership + this.elCurrentRiders.textContent = stats.ridership.toLocaleString() + " / day"; } renderRouteList() { @@ -63,26 +87,27 @@ export class UIManager { routes.forEach((route, index) => { const li = document.createElement('li'); - let lenStr = route.length > 1000 - ? (route.length / 1000).toFixed(2) + " km" - : Math.round(route.length) + " m"; + // Format Length + let lenStr = route.stats.length > 1000 + ? (route.stats.length / 1000).toFixed(1) + "km" + : Math.round(route.stats.length) + "m"; - // Create Label const span = document.createElement('span'); - span.innerHTML = `Route ${index + 1} (${lenStr})`; + span.innerHTML = ` + Route ${index + 1}
    + ${lenStr} | ${route.stats.ridership} riders + `; li.appendChild(span); - // Edit Button const btnEdit = document.createElement('button'); btnEdit.textContent = "Edit"; btnEdit.className = "btn-icon btn-edit"; btnEdit.onclick = () => { this.routeManager.editSavedRoute(index); - this.renderRouteList(); // Re-render to remove it from list + this.renderRouteList(); }; li.appendChild(btnEdit); - // Delete Button const btnDel = document.createElement('button'); btnDel.textContent = "✕"; btnDel.className = "btn-icon btn-del"; diff --git a/src/main.js b/src/main.js index 73f631f..bf81a02 100644 --- a/src/main.js +++ b/src/main.js @@ -5,6 +5,7 @@ import * as BufferGeometryUtils from 'three/addons/utils/BufferGeometryUtils.js' import { InputManager } from './InputManager.js'; import { RouteManager } from './RouteManager.js'; import { UIManager } from './UIManager.js'; +import { GameManager } from './GameManager.js'; // ========================================== @@ -31,44 +32,45 @@ const SETTINGS = { }; let scene, camera, renderer, controls; -let inputManager, routeManager, uiManager; +let inputManager, routeManager, uiManager, gameManager; function init() { setupScene(); - // 1. Managers + // 1. Core Systems routeManager = new RouteManager(scene, SETTINGS); - inputManager = new InputManager(camera, renderer.domElement, scene, controls); - uiManager = new UIManager(routeManager); // Wire UI to Route Logic + uiManager = new UIManager(routeManager); - // 2. Events + // 2. Game Logic + gameManager = new GameManager(routeManager, uiManager); + routeManager.setGameManager(gameManager); // Dependency Injection + + gameManager.start(); // Start the loop + + // 3. Input + inputManager = new InputManager(camera, renderer.domElement, scene, controls); inputManager.init(); + // Wiring inputManager.onClick = (point, object) => { - if (object.name === "GROUND") { - routeManager.addNodeByWorldPosition(point); - } + if (object.name === "GROUND") routeManager.addNodeByWorldPosition(point); }; - inputManager.onDrag = (markerObject, newPoint) => { routeManager.dragNode(markerObject, newPoint); }; - // Wire RouteManager back to UI (to update stats when dragging) - routeManager.onRouteChanged = (dist) => { - uiManager.updateStats(dist); + uiManager.onToggleZoning = (isActive) => updateBuildingColors(isActive); + + // When path updates, show new stats in UI + routeManager.onRouteChanged = (stats) => { + uiManager.updateDraftStats(stats); }; - uiManager.onToggleZoning = (isActive) => { - updateBuildingColors(isActive); - }; - - // 3. Data Load + // 4. Load Data Promise.all([ fetch(SETTINGS.files.visual).then(r => r.json()), fetch(SETTINGS.files.routing).then(r => r.json()) ]).then(([visual, routing]) => { - console.log("Data loaded."); renderCity(visual); routeManager.initGraph(routing); });