diff --git a/.github/workflows/lint-css-files.yml b/.github/workflows/lint-css-files.yml
deleted file mode 100644
index 7f4e7b0..0000000
--- a/.github/workflows/lint-css-files.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Lint the CSS code style
-
-on:
- pull_request:
- branches: [ main ]
- push:
- branches: [ main ]
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- - name: Set up Node.js 16.x
- uses: actions/setup-node@v2
- with:
- node-version: 16.x
- cache: 'npm'
- - name: Install dependencies
- run: npm install --only=dev
- - name: Run stylelint
- run: |
- npm run css-lint
diff --git a/.github/workflows/lint-js-files.yml b/.github/workflows/lint-js-files.yml
deleted file mode 100644
index 9fafdd4..0000000
--- a/.github/workflows/lint-js-files.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Lint the JavaScript code style
-
-on:
- pull_request:
- branches: [ main ]
- push:
- branches: [ main ]
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- - name: Set up Node.js 16.x
- uses: actions/setup-node@v2
- with:
- node-version: 16.x
- cache: 'npm'
- - name: Install dependencies
- run: npm install --only=dev
- - name: Run eslint
- run: |
- npm run js-lint
diff --git a/README.md b/README.md
index f218fc3..f9a84c8 100644
--- a/README.md
+++ b/README.md
@@ -1,72 +1,31 @@
-Dashboards are the bread and butter of spatial data displays. They are highly interactive websites, usually with real-time updates that show data in an accessible way.
+# Vrinda-Uber-Dashboard-Project
-**Complete by October 23**
+Google Maps is at the core of this project—it's the canvas for planning trips and visualizing stops.
+I've used the Google Maps API for displaying the map, calculating routes, and providing directions.
+Users can interact with the map directly, select their starting point, destinations, add stops, and calculate the complete route with an estimated fare.
-## Examples
-- School Explorer (in-class example), [examples/school-explorer-for-parents](examples/school-explorer-for-parents/site/)
-- Philly Park Lead Levels, [examples/philly-park-lead-levels](examples/philly-park-lead-levels/)
+Add Stops & Custom Itineraries:
+Users can customize their trips by adding stops between their start and final destinations. This is handy for adding quick coffee breaks, restaurant visits, or even sightseeing stops.
+The interface lets users select how long they want to spend at each stop, and all of this is calculated into the trip duration.
-## Instructions
+Fare & Route Calculation:
-### Step 1: Choose a topic
+I've implemented Google Maps Directions Service to calculate the complete route.
+It sums up the total distance, estimated driving duration, and adds the time spent at each stop, giving users a complete overview of their trip, much like the summary you see when booking an Uber ride.
-Choose a topic that is fruitfully explained with some combination of narrative and geographic elements. Stick with the data domain that you chose for your story map if you can. Think about what kind of decisions you want to support through the use of your dashboard. Evaluate any dataset or interactive element you add to your dashboard on whether it makes it actually supports making those decisions.
+Where Things Stand Now:
-Whatever data you use, **be sure to include citations somewhere in your app interface**.
+The project is still a work in progress, with core features like Google Maps integration, adding stops, and fare calculation working well.
+I'm still ironing out the Yelp API integration and improving the drawing functionality so users can more intuitively mark areas and get information about them.
+It’s far from finished, but I’m determined to keep working on it and make it the all-in-one journey planner I envisioned.
+How This Tool Helps Users (And Uber)
+A Better Ride Experience: Rather than just offering a basic point A to B service, this tool helps riders plan an entire journey—choosing stops, calculating fares, and exploring places along the way.
+Explore While You Travel: Whether it's a long road trip or just a ride across town, users can explore local areas, find great restaurants, and decide on stops without needing to switch between different apps.
+More Informed Decisions: By integrating review data (thanks to Yelp), the tool helps users pick better spots for food, attractions, and other services.
+The Current Challenges
+Yelp API Integration:
-### Step 2: Create a map on your browser
-
-The main component of the dashboard is the map displayign spatial information. This is the building block of all your other features!
-
-* Create basic html with head and body elements, linking to your css stylesheet and javascript file
-* Create map element in html document
-* Style map element in CSS to give it height
-* Create map object in Javascript referencing leaflet quickstart https://leafletjs.com/examples/quick-start/ (will need to link to leaflet documents in your html)
-* Add a basemap tile layer - use OpenStreetMap, Stamen, Mapbox, or another source - you can customize this!
-* NOTE: you may want to separate the code for creating the map into a different javascript file for organization. If you do this, wrap the creation of the map into a function and export that function, and then import it in your main.js file.
-
-### Step 3: Add data to your map
-
-* Add data file to your repository folder (usually in a data subfolder) - remember geojson files work best, csv files work too but must be parsed using csv parse https://csv.js.org/parse/ or papa parse https://www.papaparse.com/ . See [the course resources](https://github.com/musa-6110-fall-2023/course-info/blob/main/resources/data-format-csv.md) for a guide to getting started with those libraries.
-* Use fetch API https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API to load your data into your environment (remember, fetch returns a promise, not a file, and a file needs to be extracted from the promise)
-* Create map layer to display data (ie LayerGroup, Marker, etc.. see documentation https://leafletjs.com/reference.html) - style the layer here, not in CSS because CSS cannot access styles within the map
-* Display data through your map layer (either create an empty layer and pass the data through in a separate function, or input the data directly when you create the layer)
-* optional: attach popup https://leafletjs.com/reference.html#popup and tooltip https://leafletjs.com/reference.html#tooltip to your data layer for more interactivity
-
-### Step 4: Create an interactive element (ie search, highlight, print data, etc)
-
-This is the most broad step because you could do so many different things like:
-* button to filter data shown on map
-* checkbox to filter data shown on map
-* search bar to type in to filter data shown on map (more difficult - try only if you've already accomplished the button)
-* paste/display text of data attributes when you click on the data layer on the map
-* graph data shown on map
-
-The general steps to accomplish these are:
-* create an html element for the interactive piece (ie button, checkbox, searchbar, graph) ps. if you're interactive event will be clicking on the map, no extra element is needed
-* create a DOM (document object model) element in javascript to set up an event listener - reference DOM exercise we did in class https://github.com/musa-6110-fall-2023/dom-exercises
-* create an event listener (event examples: click a button, check a checkbox, click a map data layer)
-* create a function which responds when the event has happened
-* create a function to parse through data (will require for loop) and accomplish one of the following:
- * clear data layer and display only the filtered data
- * print in space outside map (new html element) information about the data
- * pass data shown on map through a graph and display
-
-### Step 5: Finishing touches (styling, linting, accessibility)
-
-* style the map and data to your liking, which can include doing things like:
- * customizing your basemap tiles
- * customizing your marker/data layer style (using your own image in replace for the marker image)
- * changing fonts and colors in the csv
-
-Make sure to lint use eslint or stylelint to ensure your code is using the widely acceptable syntax
-
-Check for accessibility using:
-* Axe DevTools in browser
-* accessible colors for someone looking at your map, reference colorbrewer or other sites for help with this
-
-
-
+The idea was to let users "draw" on the map to create a custom area of interest. This feature is inspired by property search tools and seemed like a great way to narrow down restaurant searches, but there are still improvements to be made. The basic drawing works, but making it smoother and more user-friendly is next on my list.
diff --git a/app.js b/app.js
new file mode 100644
index 0000000..9559c46
--- /dev/null
+++ b/app.js
@@ -0,0 +1,320 @@
+let map;
+let directionsService;
+let directionsRenderer;
+let stopCount = 0;
+let startMarker;
+let destinationMarker;
+let selecting = ''; // Indicates whether we're selecting 'start' or 'destination'
+let geocoder; // Initialize Geocoder for reverse geocoding
+
+// Initialize Google Maps and Places Autocomplete
+function initMap() {
+ try {
+ // Initialize the map
+ map = new google.maps.Map(document.getElementById('map'), {
+ center: { lat: 48.8566, lng: 2.3522 }, // Paris coordinates
+ zoom: 13,
+ mapId: '481396a3f2e286b5' // Optional: Apply a specific Map ID if available
+ });
+
+ // Initialize direction services
+ directionsService = new google.maps.DirectionsService();
+ directionsRenderer = new google.maps.DirectionsRenderer();
+ directionsRenderer.setMap(map);
+
+ // Initialize the Geocoder
+ geocoder = new google.maps.Geocoder();
+
+ // Enable autocomplete for start and destination fields
+ const autocompleteStart = new google.maps.places.Autocomplete(document.getElementById('start'));
+ const autocompleteDestination = new google.maps.places.Autocomplete(document.getElementById('destination'));
+
+ // Add click event listener to the map for picking locations
+ map.addListener('click', (event) => {
+ if (selecting === 'start') {
+ setStartLocation(event.latLng);
+ } else if (selecting === 'destination') {
+ setDestinationLocation(event.latLng);
+ }
+ });
+
+ // Fetch dynamic recommendations when the start location changes
+ autocompleteStart.addListener('place_changed', fetchRecommendations);
+
+ } catch (error) {
+ console.error('Error initializing map:', error);
+ }
+}
+
+// Reverse geocode to get the place name for start location
+function setStartLocation(location) {
+ if (startMarker) {
+ startMarker.setMap(null);
+ }
+
+ startMarker = new google.maps.Marker({
+ position: location,
+ map: map,
+ title: 'Start Location'
+ });
+
+ geocoder.geocode({ location: location }, function (results, status) {
+ if (status === 'OK' && results[0]) {
+ document.getElementById('start').value = results[0].formatted_address;
+ } else {
+ console.error('Geocoder failed due to: ' + status);
+ document.getElementById('start').value = location.lat() + ', ' + location.lng();
+ }
+ });
+
+ selecting = '';
+}
+
+// Reverse geocode to get the place name for destination location
+function setDestinationLocation(location) {
+ if (destinationMarker) {
+ destinationMarker.setMap(null);
+ }
+
+ destinationMarker = new google.maps.Marker({
+ position: location,
+ map: map,
+ title: 'Destination Location'
+ });
+
+ geocoder.geocode({ location: location }, function (results, status) {
+ if (status === 'OK' && results[0]) {
+ document.getElementById('destination').value = results[0].formatted_address;
+ } else {
+ console.error('Geocoder failed due to: ' + status);
+ document.getElementById('destination').value = location.lat() + ', ' + location.lng();
+ }
+ });
+
+ selecting = '';
+}
+
+// Fetch dynamic recommendations using Geoapify API (Update your API key)
+async function fetchRecommendations() {
+ const startLocation = document.getElementById('start').value;
+
+ if (startLocation) {
+ const apiUrl = `https://api.geoapify.com/v2/place-details?location=${encodeURIComponent(startLocation)}&apiKey=db92ad8d1db34be09380ec7803a9c8ed`;
+
+ try {
+ const response = await fetch(apiUrl);
+ const data = await response.json();
+
+ const recommendedStops = document.getElementById('recommendedStops');
+ recommendedStops.innerHTML = '';
+
+ data.features.forEach(place => {
+ const label = document.createElement('label');
+ label.innerHTML = `
+
+ ${place.properties.name}
+ `;
+ recommendedStops.appendChild(label);
+ });
+ } catch (error) {
+ console.error('Error fetching recommendations:', error);
+ }
+ }
+}
+
+// Ensure that the DOM is fully loaded before attaching event listeners
+document.addEventListener('DOMContentLoaded', function () {
+ document.getElementById('addStop').addEventListener('click', function () {
+ const extraStopsContainer = document.getElementById('extraStopsContainer');
+ const stopContainer = document.createElement('div');
+ stopContainer.classList.add('extra-stop-container');
+
+ const stopInput = document.createElement('input');
+ stopInput.setAttribute('type', 'text');
+ stopInput.setAttribute('placeholder', `Extra Stop ${stopCount + 1}`);
+ stopInput.classList.add('inputs');
+ new google.maps.places.Autocomplete(stopInput);
+
+ const durationSelect = document.createElement('select');
+ durationSelect.classList.add('duration-selector');
+ for (let i = 1; i <= 24; i++) {
+ const option = document.createElement('option');
+ option.value = i;
+ option.textContent = `${i} hr${i > 1 ? 's' : ''}`;
+ durationSelect.appendChild(option);
+ }
+
+ const deleteButton = document.createElement('button');
+ deleteButton.innerHTML = ' ';
+ deleteButton.classList.add('delete-stop');
+ deleteButton.addEventListener('click', function () {
+ stopContainer.remove();
+ });
+
+ stopContainer.appendChild(stopInput);
+ stopContainer.appendChild(durationSelect);
+ stopContainer.appendChild(deleteButton);
+ extraStopsContainer.appendChild(stopContainer);
+ stopCount++;
+ });
+
+ document.getElementById('calculateFare').addEventListener('click', handleFareEstimation);
+
+ document.getElementById('clearTrip').addEventListener('click', function () {
+ directionsRenderer.set('directions', null);
+ document.getElementById('fareOutput').innerText = '';
+ });
+});
+
+// Function to calculate route with stops and duration
+function handleFareEstimation() {
+ const startLocation = document.getElementById('start').value;
+ const destination = document.getElementById('destination').value;
+ const startDuration = parseInt(document.getElementById('startDuration').value);
+ const destinationDuration = parseInt(document.getElementById('destinationDuration').value);
+
+ let waypoints = [];
+ let totalStopDuration = startDuration + destinationDuration;
+
+ const recommendedStops = document.querySelectorAll('#recommendedStops input[type="checkbox"]:checked');
+ const extraStops = document.querySelectorAll('.extra-stop-container');
+
+ recommendedStops.forEach(stop => {
+ waypoints.push({ location: stop.value, stopover: true });
+ });
+
+ extraStops.forEach(stopContainer => {
+ const stopInput = stopContainer.querySelector('input').value;
+ const stopDuration = parseInt(stopContainer.querySelector('select').value);
+
+ if (stopInput) {
+ waypoints.push({ location: stopInput, stopover: true });
+ totalStopDuration += stopDuration;
+ }
+ });
+
+ if (startLocation && destination) {
+ const request = {
+ origin: startLocation,
+ destination: destination,
+ waypoints: waypoints,
+ travelMode: 'DRIVING',
+ };
+
+ directionsService.route(request, function (result, status) {
+ if (status === 'OK') {
+ directionsRenderer.setDirections(result);
+
+ let totalDistance = 0;
+ let totalDrivingTime = 0;
+ result.routes[0].legs.forEach(leg => {
+ totalDistance += leg.distance.value;
+ totalDrivingTime += leg.duration.value;
+ });
+
+ const drivingHours = Math.floor(totalDrivingTime / 3600);
+ const drivingMinutes = Math.floor((totalDrivingTime % 3600) / 60);
+
+ const totalTripHours = drivingHours + totalStopDuration;
+ document.getElementById('fareOutput').innerText = `Total Distance: ${(totalDistance / 1000).toFixed(2)} km \nTotal Driving Time: ${drivingHours} hrs ${drivingMinutes} mins \nTotal Trip Duration (with stops): ${totalTripHours} hrs ${drivingMinutes} mins`;
+ } else {
+ alert('Could not calculate route: ' + status);
+ }
+ });
+ } else {
+ alert('Please enter both starting location and destination.');
+ }
+}
+const YELP_API_KEY = 'Your-Yelp-API-Key-Here';
+
+// Function to fetch restaurants from Yelp API
+async function fetchRestaurants() {
+ const searchTerm = document.getElementById('restaurantSearch').value || 'restaurants';
+ const restaurantFilter = document.getElementById('restaurantFilter').value;
+ const userLocation = map.getCenter(); // Get the map's center for the current location
+
+ const apiUrl = `https://api.yelp.com/v3/businesses/search?term=${searchTerm}&latitude=${userLocation.lat()}&longitude=${userLocation.lng()}&categories=${restaurantFilter}`;
+
+ try {
+ const response = await fetch(apiUrl, {
+ headers: {
+ Authorization: `Bearer ${YELP_API_KEY}`,
+ },
+ });
+
+ const data = await response.json();
+ displayRestaurantResults(data.businesses);
+ } catch (error) {
+ console.error('Error fetching restaurants:', error);
+ }
+}
+
+// Display restaurant results
+function displayRestaurantResults(businesses) {
+ const restaurantsContainer = document.getElementById('extraStopsContainer');
+ restaurantsContainer.innerHTML = ''; // Clear previous results
+
+ businesses.forEach((business) => {
+ const businessContainer = document.createElement('div');
+ businessContainer.classList.add('restaurant-container');
+
+ const restaurantName = document.createElement('h5');
+ restaurantName.innerText = business.name;
+
+ const rating = document.createElement('p');
+ rating.innerText = `Rating: ${business.rating} (${business.review_count} reviews)`;
+
+ const address = document.createElement('p');
+ address.innerText = business.location.address1;
+
+ const button = document.createElement('button');
+ button.classList.add('uber-btn');
+ button.innerText = 'Add as Stop';
+ button.addEventListener('click', () => {
+ addRestaurantAsStop(business);
+ });
+
+ businessContainer.appendChild(restaurantName);
+ businessContainer.appendChild(rating);
+ businessContainer.appendChild(address);
+ businessContainer.appendChild(button);
+
+ restaurantsContainer.appendChild(businessContainer);
+ });
+}
+
+// Add restaurant as stop
+function addRestaurantAsStop(business) {
+ const extraStopsContainer = document.getElementById('extraStopsContainer');
+ const stopContainer = document.createElement('div');
+ stopContainer.classList.add('extra-stop-container');
+
+ const stopInput = document.createElement('input');
+ stopInput.setAttribute('type', 'text');
+ stopInput.value = business.name;
+ stopInput.classList.add('inputs');
+
+ const durationSelect = document.createElement('select');
+ durationSelect.classList.add('duration-selector');
+ for (let i = 1; i <= 24; i++) {
+ const option = document.createElement('option');
+ option.value = i;
+ option.textContent = `${i} hr${i > 1 ? 's' : ''}`;
+ durationSelect.appendChild(option);
+ }
+
+ const deleteButton = document.createElement('button');
+ deleteButton.innerHTML = ' ';
+ deleteButton.classList.add('delete-stop');
+ deleteButton.addEventListener('click', function () {
+ stopContainer.remove();
+ });
+
+ stopContainer.appendChild(stopInput);
+ stopContainer.appendChild(durationSelect);
+ stopContainer.appendChild(deleteButton);
+ extraStopsContainer.appendChild(stopContainer);
+}
+
+// Event listener for fetching restaurants
+document.getElementById('searchRestaurant').addEventListener('click', fetchRestaurants);
diff --git a/examples/school-explorer-for-parents/.gitignore b/examples/school-explorer-for-parents/.gitignore
deleted file mode 100644
index 4f93b52..0000000
--- a/examples/school-explorer-for-parents/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-node_modules/
-opt/*
-!opt/.gitkeep
\ No newline at end of file
diff --git a/examples/school-explorer-for-parents/Data Aspects.md b/examples/school-explorer-for-parents/Data Aspects.md
deleted file mode 100644
index fa34aa8..0000000
--- a/examples/school-explorer-for-parents/Data Aspects.md
+++ /dev/null
@@ -1,23 +0,0 @@
-Check the data types and values on the following fields:
-- Admission Type
-- CTE Status ("Program", the school has a program; "Comprehensive", the whole school is Career & Technical Ed)
-- Major Intervention ()
-- Major Intervention Year
-- Management Organization
-- Governance
-- Phasing Out
-- Title I Designation
-
-Useful for display:
-- Website
-- FACE Liaison Email (Family & Community Engagement)
-- FACE Liaison Name
-- FACE Liaison Phone Number
-
-
-
-
-Process for designing the application
-- Start with the PRD
-- Go to wireframes
-- Go to data (this should be a back-and-forth process)
\ No newline at end of file
diff --git a/examples/school-explorer-for-parents/README.md b/examples/school-explorer-for-parents/README.md
deleted file mode 100644
index 937bf30..0000000
--- a/examples/school-explorer-for-parents/README.md
+++ /dev/null
@@ -1,36 +0,0 @@
-Sample "solution" for the school explorer project.
-
-## What's in here?
-
-A number of the files in this repository should be carried over verbatim into the school-explorer project:
-* The _site/_ folder -- Where students' code should go. It's where the application lives.
-* Testing files (_.github/_, _\_\_tests\_\_/_)
-* Configuration files (.eslintrc, .gitignore, .stylelintrc.json, jest.config.json, package.json)
-
-A few things that don't get carried over to the school-explorer project:
-* bin/ -- scripts to prepare the project, mainly for populating the site/data/ folder
-* opt/ -- the actual raw data for running the scripts in bin/
-* Python configuration -- _pyproject.toml_
-* This README.md file
-
-## Where do we get the data from?
-
-The school district has some [data on OpenDataPhilly](https://opendataphilly.org/dataset?organization=school-district-of-philadelphia), but these just link to the school district's own data site. For example, this [school catchment areas](https://opendataphilly.org/dataset/school-information-data/resource/f6a27538-9131-4fbc-9906-808492c2d7ad) dataset on OpenDataPhilly links to [a download page](https://www.philasd.org/performance/programsservices/open-data/school-information/#school_catchment_areas) on the district site. While this is workable, it's not ideal from an automation standpoint -- I doubt the SDP site has any kind of stable API.
-
-## Peparing data
-
-### Schools
-
-1. Go to the [SDP download page](https://www.philasd.org/performance/programsservices/open-data/school-information/#school_lists) and download the latest CSV. Move it into _opt/_ and rename as _schools.csv_.
-
-### Catchment areas
-
-1. Go to the [SDP download page](https://www.philasd.org/performance/programsservices/open-data/school-information/#school_catchment_areas) and download the latest shapefile. Move it into the _opt/_ folder and rename it _sdp\_catchments.zip_.
-
-## Design
-
-The application uses a reactive pattern with an event bus. The events on the bus are as follows:
-
-- `addresschanged` -- Dispatched when a new address has been selected in the address search. Detail includes a `place` attribute and a `catchment` attribute, which will be GeoJSON features representing the selected address and the catchment around it respectively, or `null` in the case of no address or no matching catchment.
-- `filterschanged` -- Dispatched when any filter has changed. Detail includes an `include` attribute which is a list of schools included in the filtered set.
-- `selectionchanged` -- Dispatched when a school has been selected or deselected in the list or on the map. Detail includes `added` and `removed` attributes, each of which is a list of schools address or removed from the selected set, respectively.
diff --git a/examples/school-explorer-for-parents/bin/prep_catchments.py b/examples/school-explorer-for-parents/bin/prep_catchments.py
deleted file mode 100755
index 307ad29..0000000
--- a/examples/school-explorer-for-parents/bin/prep_catchments.py
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env python
-
-import pdb
-import click
-import pandas as pd
-import geopandas as gpd
-
-@click.command()
-@click.argument('es_catchments_file', type=click.File('r'))
-@click.argument('ms_catchments_file', type=click.File('r'))
-@click.argument('hs_catchments_file', type=click.File('r'))
-def make_catchments_geojson(es_catchments_file, ms_catchments_file, hs_catchments_file):
- es_catchments = gpd.read_file(es_catchments_file.name)
- ms_catchments = gpd.read_file(ms_catchments_file.name)
- hs_catchments = gpd.read_file(hs_catchments_file.name)
-
- catchments_gdf = pd.concat([
- es_catchments[['ES_ID', 'geometry']].rename(mapper={'ES_ID': 'ID'}, axis='columns'),
- es_catchments[['MS_ID', 'geometry']].rename(mapper={'MS_ID': 'ID'}, axis='columns'),
- es_catchments[['HS_ID', 'geometry']].rename(mapper={'HS_ID': 'ID'}, axis='columns'),
- ]).dissolve(by='ID')
-
- print(catchments_gdf.to_crs('EPSG:4326').to_json())
- # print(f'export default {catchments_gdf.to_crs('EPSG:4326').to_json()};')
-
-if __name__ == '__main__':
- make_catchments_geojson()
\ No newline at end of file
diff --git a/examples/school-explorer-for-parents/bin/prep_schools.py b/examples/school-explorer-for-parents/bin/prep_schools.py
deleted file mode 100755
index 200143f..0000000
--- a/examples/school-explorer-for-parents/bin/prep_schools.py
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/usr/bin/env python
-
-import click
-import csv
-import json
-
-
-@click.command()
-@click.argument('school_list_file', type=click.File('r'))
-def make_schools_json(school_list_file):
- reader = csv.DictReader(school_list_file)
- data = [
- {
- # The ULCS Code appears to be the de facto ID that the school
- # district uses across datasets.
- 'sdp_id': row['ULCS Code'],
-
- # There are three name columns: 'School Name (ULCS)', 'Publication
- # Name', and 'Publication Name Alpha List'. The ULCS name is
- # all-caps and not most readable. The alpha list name is weird, but
- # useful for alphabetizing. The publication name is most readable
- # and most suitable as a school label
- 'name': row['Publication Name'],
- 'sort_name': row['Publication Name Alpha List'],
- 'abbr_name': row['Abbreviated Name'],
-
- # The GPS Location is a single string, lat/lng, separated by a
- # comma and a space.
- 'geom': {
- 'type': 'Point',
- 'coordinates': [
- float(c)
- for c in row['GPS Location'].split(',')
- ][::-1],
- },
-
- 'Year Opened': row['Year Opened'],
- 'School Level': row['School Level'],
- 'Admission Type': row['Admission Type'],
- 'Current Grade Span Served': row['Current Grade Span Served'],
- 'Grade Span at Scale': row['Grade Span at Scale'],
- 'Phasing-In': row['Phasing-In'],
- 'Phasing-Out': row['Phasing-Out'],
- 'Governance': row['Governance'],
- 'Management Organization': row['Management Organization'],
- 'School Reporting Category': row['School Reporting Category'],
- 'Alternate Education Type': row['Alternate Education Type'],
- 'Major Intervention': row['Major Intervention'],
- 'Major Intervention Year': row['Major Intervention Year'],
- 'Community School Cohort': row['Community School Cohort'],
- 'CTE Status': row['CTE Status'],
- 'Title I Designation': row['Title I Designation'],
- 'Federal Accountability Designation': row['Federal Accountability Designation'],
- 'City Council District': row['City Council District'],
- 'Multiple Addresses': row['Multiple Addresses'],
- 'Street Address': row['Street Address'],
- 'City': row['City'],
- 'State': row['State'],
- 'Zip Code': row['Zip Code'],
- 'Phone Number': row['Phone Number'],
- 'Fax Number': row['Fax Number'],
- 'Website': row['Website'],
- 'School Leader Name': row['School Leader Name'],
- 'Learning Network': row['Learning Network'],
- 'Assistant Superintendent': row['Assistant Superintendent'],
- 'FACE Liaison Name': row['FACE Liaison Name'],
- 'FACE Liaison Email': row['FACE Liaison Email'],
- 'FACE Liaison Phone Number': row['FACE Liaison Phone Number'],
-
- 'Grade K': row['Grade K'],
- 'Grade 1': row['Grade 1'],
- 'Grade 2': row['Grade 2'],
- 'Grade 3': row['Grade 3'],
- 'Grade 4': row['Grade 4'],
- 'Grade 5': row['Grade 5'],
- 'Grade 6': row['Grade 6'],
- 'Grade 7': row['Grade 7'],
- 'Grade 8': row['Grade 8'],
- 'Grade 9': row['Grade 9'],
- 'Grade 10': row['Grade 10'],
- 'Grade 11': row['Grade 11'],
- 'Grade 12': row['Grade 12'],
- }
- for row in reader
- ]
- print(json.dumps(data, indent=2))
- # print(f'export default {json.dumps(data, indent=2)};')
-
-
-if __name__ == '__main__':
- make_schools_json()
diff --git a/examples/school-explorer-for-parents/notebooks/data_exploration.ipynb b/examples/school-explorer-for-parents/notebooks/data_exploration.ipynb
deleted file mode 100644
index 0b01ed5..0000000
--- a/examples/school-explorer-for-parents/notebooks/data_exploration.ipynb
+++ /dev/null
@@ -1,600 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 3,
- "metadata": {},
- "outputs": [],
- "source": [
- "import pandas as pd\n",
- "import pathlib\n",
- "import os"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "metadata": {},
- "outputs": [],
- "source": [
- "ROOT = pathlib.Path(os.getcwd()).parent\n",
- "school_list_df = pd.read_csv(ROOT / 'opt' / 'schools.2022_2023.csv')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "
\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " PA Code \n",
- " NSC Code \n",
- " NCES Code \n",
- " AUN Code \n",
- " ULCS Code \n",
- " SRC School ID \n",
- " School Name (ULCS) \n",
- " Publication Name \n",
- " Publication Name Alpha List \n",
- " Abbreviated Name \n",
- " ... \n",
- " Grade 3 \n",
- " Grade 4 \n",
- " Grade 5 \n",
- " Grade 6 \n",
- " Grade 7 \n",
- " Grade 8 \n",
- " Grade 9 \n",
- " Grade 10 \n",
- " Grade 11 \n",
- " Grade 12 \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " 0 \n",
- " 3847.0 \n",
- " 393345 \n",
- " 4.218990e+11 \n",
- " 126515001 \n",
- " 1010 \n",
- " 101 \n",
- " JOHN BARTRAM HIGH SCHOOL \n",
- " John Bartram High School \n",
- " Bartram, John High School \n",
- " Bartram \n",
- " ... \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " \n",
- " \n",
- " 1 \n",
- " 3860.0 \n",
- " 393555 \n",
- " 4.218990e+11 \n",
- " 126515001 \n",
- " 1020 \n",
- " 102 \n",
- " WEST PHILADELPHIA HIGH SCHOOL \n",
- " West Philadelphia High School \n",
- " West Philadelphia High School \n",
- " West Philadelphia \n",
- " ... \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " \n",
- " \n",
- " 2 \n",
- " 7903.0 \n",
- " 392779 \n",
- " 4.218990e+11 \n",
- " 126515001 \n",
- " 1030 \n",
- " 103 \n",
- " HIGH SCHOOL OF THE FUTURE \n",
- " High School of the Future \n",
- " High School of the Future \n",
- " HS of Future \n",
- " ... \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " \n",
- " \n",
- " 3 \n",
- " 7780.0 \n",
- " 393347 \n",
- " 4.218990e+11 \n",
- " 126515001 \n",
- " 1050 \n",
- " 105 \n",
- " PAUL ROBESON HIGH SCHOOL \n",
- " Paul Robeson High School for Human Services \n",
- " Robeson, Paul High School for Human Services \n",
- " Robeson \n",
- " ... \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " \n",
- " \n",
- " 4 \n",
- " 7245.0 \n",
- " 393944 \n",
- " 4.218990e+11 \n",
- " 126515001 \n",
- " 1100 \n",
- " 110 \n",
- " SAYRE HIGH SCHOOL \n",
- " William L. Sayre High School \n",
- " Sayre, William L. High School \n",
- " Sayre \n",
- " ... \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 0 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " 1 \n",
- " \n",
- " \n",
- "
\n",
- "
5 rows × 56 columns
\n",
- "
"
- ],
- "text/plain": [
- " PA Code NSC Code NCES Code AUN Code ULCS Code SRC School ID \\\n",
- "0 3847.0 393345 4.218990e+11 126515001 1010 101 \n",
- "1 3860.0 393555 4.218990e+11 126515001 1020 102 \n",
- "2 7903.0 392779 4.218990e+11 126515001 1030 103 \n",
- "3 7780.0 393347 4.218990e+11 126515001 1050 105 \n",
- "4 7245.0 393944 4.218990e+11 126515001 1100 110 \n",
- "\n",
- " School Name (ULCS) Publication Name \\\n",
- "0 JOHN BARTRAM HIGH SCHOOL John Bartram High School \n",
- "1 WEST PHILADELPHIA HIGH SCHOOL West Philadelphia High School \n",
- "2 HIGH SCHOOL OF THE FUTURE High School of the Future \n",
- "3 PAUL ROBESON HIGH SCHOOL Paul Robeson High School for Human Services \n",
- "4 SAYRE HIGH SCHOOL William L. Sayre High School \n",
- "\n",
- " Publication Name Alpha List Abbreviated Name ... \\\n",
- "0 Bartram, John High School Bartram ... \n",
- "1 West Philadelphia High School West Philadelphia ... \n",
- "2 High School of the Future HS of Future ... \n",
- "3 Robeson, Paul High School for Human Services Robeson ... \n",
- "4 Sayre, William L. High School Sayre ... \n",
- "\n",
- " Grade 3 Grade 4 Grade 5 Grade 6 Grade 7 Grade 8 Grade 9 Grade 10 \\\n",
- "0 0 0 0 0 0 0 1 1 \n",
- "1 0 0 0 0 0 0 1 1 \n",
- "2 0 0 0 0 0 0 1 1 \n",
- "3 0 0 0 0 0 0 1 1 \n",
- "4 0 0 0 0 0 0 1 1 \n",
- "\n",
- " Grade 11 Grade 12 \n",
- "0 1 1 \n",
- "1 1 1 \n",
- "2 1 1 \n",
- "3 1 1 \n",
- "4 1 1 \n",
- "\n",
- "[5 rows x 56 columns]"
- ]
- },
- "execution_count": 3,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "school_list_df.head()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "count 325\n",
- "unique 325\n",
- "top JOHN BARTRAM HIGH SCHOOL\n",
- "freq 1\n",
- "Name: School Name (ULCS), dtype: object"
- ]
- },
- "execution_count": 4,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "school_list_df['School Name (ULCS)'].describe()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "count 325\n",
- "unique 325\n",
- "top John Bartram High School\n",
- "freq 1\n",
- "Name: Publication Name, dtype: object"
- ]
- },
- "execution_count": 5,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "school_list_df['Publication Name'].describe()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "count 325\n",
- "unique 325\n",
- "top Bartram, John High School\n",
- "freq 1\n",
- "Name: Publication Name Alpha List, dtype: object"
- ]
- },
- "execution_count": 6,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "school_list_df['Publication Name Alpha List'].describe()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "metadata": {},
- "outputs": [],
- "source": [
- "school_names_df = school_list_df[['Publication Name', 'School Name (ULCS)']]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 9,
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "/tmp/ipykernel_600852/2246864262.py:1: SettingWithCopyWarning: \n",
- "A value is trying to be set on a copy of a slice from a DataFrame.\n",
- "Try using .loc[row_indexer,col_indexer] = value instead\n",
- "\n",
- "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
- " school_names_df['Upper Publication Name'] = school_names_df['Publication Name'].str.upper()\n"
- ]
- }
- ],
- "source": [
- "school_names_df['Upper Publication Name'] = school_names_df['Publication Name'].str.upper()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " Publication Name \n",
- " School Name (ULCS) \n",
- " Upper Publication Name \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " 3 \n",
- " Paul Robeson High School for Human Services \n",
- " PAUL ROBESON HIGH SCHOOL \n",
- " PAUL ROBESON HIGH SCHOOL FOR HUMAN SERVICES \n",
- " \n",
- " \n",
- " 4 \n",
- " William L. Sayre High School \n",
- " SAYRE HIGH SCHOOL \n",
- " WILLIAM L. SAYRE HIGH SCHOOL \n",
- " \n",
- " \n",
- " 5 \n",
- " William T. Tilden School \n",
- " TILDEN MIDDLE SCHOOL \n",
- " WILLIAM T. TILDEN SCHOOL \n",
- " \n",
- " \n",
- " 7 \n",
- " John Barry School \n",
- " JOHN BARRY ELEMENTARY SCHOOL \n",
- " JOHN BARRY SCHOOL \n",
- " \n",
- " \n",
- " 11 \n",
- " Sadie Alexander School \n",
- " PENN ALEXANDER SCHOOL \n",
- " SADIE ALEXANDER SCHOOL \n",
- " \n",
- " \n",
- " ... \n",
- " ... \n",
- " ... \n",
- " ... \n",
- " \n",
- " \n",
- " 314 \n",
- " Philadelphia Learning Academy South \n",
- " PHILA LEARNING ACADEMY-SOUTH \n",
- " PHILADELPHIA LEARNING ACADEMY SOUTH \n",
- " \n",
- " \n",
- " 315 \n",
- " Philadelphia Learning Academy North \n",
- " PHILA LEARNING ACADEMY-NORTH \n",
- " PHILADELPHIA LEARNING ACADEMY NORTH \n",
- " \n",
- " \n",
- " 319 \n",
- " John Hancock Demonstration School \n",
- " HANCOCK DEMONSTRATION SCHOOL \n",
- " JOHN HANCOCK DEMONSTRATION SCHOOL \n",
- " \n",
- " \n",
- " 321 \n",
- " One Bright Ray Mansion \n",
- " ONE BRIGHT RAY MANSION ACCEL \n",
- " ONE BRIGHT RAY MANSION \n",
- " \n",
- " \n",
- " 323 \n",
- " One Bright Ray - Simpson Campus \n",
- " ONE BRIGHT RAY-SIMPSON CAMPUS \n",
- " ONE BRIGHT RAY - SIMPSON CAMPUS \n",
- " \n",
- " \n",
- "
\n",
- "
155 rows × 3 columns
\n",
- "
"
- ],
- "text/plain": [
- " Publication Name \\\n",
- "3 Paul Robeson High School for Human Services \n",
- "4 William L. Sayre High School \n",
- "5 William T. Tilden School \n",
- "7 John Barry School \n",
- "11 Sadie Alexander School \n",
- ".. ... \n",
- "314 Philadelphia Learning Academy South \n",
- "315 Philadelphia Learning Academy North \n",
- "319 John Hancock Demonstration School \n",
- "321 One Bright Ray Mansion \n",
- "323 One Bright Ray - Simpson Campus \n",
- "\n",
- " School Name (ULCS) \\\n",
- "3 PAUL ROBESON HIGH SCHOOL \n",
- "4 SAYRE HIGH SCHOOL \n",
- "5 TILDEN MIDDLE SCHOOL \n",
- "7 JOHN BARRY ELEMENTARY SCHOOL \n",
- "11 PENN ALEXANDER SCHOOL \n",
- ".. ... \n",
- "314 PHILA LEARNING ACADEMY-SOUTH \n",
- "315 PHILA LEARNING ACADEMY-NORTH \n",
- "319 HANCOCK DEMONSTRATION SCHOOL \n",
- "321 ONE BRIGHT RAY MANSION ACCEL \n",
- "323 ONE BRIGHT RAY-SIMPSON CAMPUS \n",
- "\n",
- " Upper Publication Name \n",
- "3 PAUL ROBESON HIGH SCHOOL FOR HUMAN SERVICES \n",
- "4 WILLIAM L. SAYRE HIGH SCHOOL \n",
- "5 WILLIAM T. TILDEN SCHOOL \n",
- "7 JOHN BARRY SCHOOL \n",
- "11 SADIE ALEXANDER SCHOOL \n",
- ".. ... \n",
- "314 PHILADELPHIA LEARNING ACADEMY SOUTH \n",
- "315 PHILADELPHIA LEARNING ACADEMY NORTH \n",
- "319 JOHN HANCOCK DEMONSTRATION SCHOOL \n",
- "321 ONE BRIGHT RAY MANSION \n",
- "323 ONE BRIGHT RAY - SIMPSON CAMPUS \n",
- "\n",
- "[155 rows x 3 columns]"
- ]
- },
- "execution_count": 11,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "school_names_df.query('`Upper Publication Name` != `School Name (ULCS)`')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "Index(['PA Code', 'NSC Code', 'NCES Code', 'AUN Code', 'ULCS Code',\n",
- " 'SRC School ID', 'School Name (ULCS)', 'Publication Name',\n",
- " 'Publication Name Alpha List', 'Abbreviated Name', 'Year Opened',\n",
- " 'School Level', 'Admission Type', 'Current Grade Span Served',\n",
- " 'Grade Span at Scale', 'Phasing-In', 'Phasing-Out', 'Governance',\n",
- " 'Management Organization', 'School Reporting Category',\n",
- " 'Alternate Education Type', 'Major Intervention',\n",
- " 'Major Intervention Year', 'Community School Cohort', 'CTE Status',\n",
- " 'Title I Designation', 'Federal Accountability Designation',\n",
- " 'City Council District', 'GPS Location', 'Multiple Addresses',\n",
- " 'Street Address', 'City', 'State', 'Zip Code', 'Phone Number',\n",
- " 'Fax Number', 'Website', 'School Leader Name', 'Learning Network',\n",
- " 'Assistant Superintendent', 'FACE Liaison Name', 'FACE Liaison Email',\n",
- " 'FACE Liaison Phone Number', 'Grade K', 'Grade 1', 'Grade 2', 'Grade 3',\n",
- " 'Grade 4', 'Grade 5', 'Grade 6', 'Grade 7', 'Grade 8', 'Grade 9',\n",
- " 'Grade 10', 'Grade 11', 'Grade 12'],\n",
- " dtype='object')"
- ]
- },
- "execution_count": 5,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "school_list_df.columns"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "0 [39.92149737, -75.23405562]\n",
- "1 [39.958110, -75.219654]\n",
- "2 [39.97465766, -75.2047566]\n",
- "3 [39.95679553, -75.20476311]\n",
- "4 [39.95759354, -75.23859405]\n",
- " ... \n",
- "320 [39.96102159, -75.16264405]\n",
- "321 [39.99074371, -75.18402464]\n",
- "322 [39.99074371, -75.18402464]\n",
- "323 [40.00528, -75.10560096]\n",
- "324 [39.96102159, -75.16264405]\n",
- "Name: GPS Location, Length: 325, dtype: object"
- ]
- },
- "execution_count": 8,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "school_list_df['GPS Location'].str.split(', ')"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3.10.4 ('project-school-explorer-sample')",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.10.4"
- },
- "orig_nbformat": 4,
- "vscode": {
- "interpreter": {
- "hash": "a749ac54738b3307d4fedf39795ad9b4a371fdbb3c8d3448a6694e7fae38c9a0"
- }
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/examples/school-explorer-for-parents/opt/.gitkeep b/examples/school-explorer-for-parents/opt/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/examples/school-explorer-for-parents/poetry.lock b/examples/school-explorer-for-parents/poetry.lock
deleted file mode 100644
index 346a3f5..0000000
--- a/examples/school-explorer-for-parents/poetry.lock
+++ /dev/null
@@ -1,691 +0,0 @@
-[[package]]
-name = "appnope"
-version = "0.1.3"
-description = "Disable App Nap on macOS >= 10.9"
-category = "main"
-optional = false
-python-versions = "*"
-
-[[package]]
-name = "asttokens"
-version = "2.0.8"
-description = "Annotate AST trees with source code positions"
-category = "main"
-optional = false
-python-versions = "*"
-
-[package.dependencies]
-six = "*"
-
-[package.extras]
-test = ["astroid (<=2.5.3)", "pytest"]
-
-[[package]]
-name = "attrs"
-version = "22.1.0"
-description = "Classes Without Boilerplate"
-category = "main"
-optional = false
-python-versions = ">=3.5"
-
-[package.extras]
-dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"]
-docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
-tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "cloudpickle"]
-tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "cloudpickle"]
-
-[[package]]
-name = "backcall"
-version = "0.2.0"
-description = "Specifications for callback functions passed in to an API"
-category = "main"
-optional = false
-python-versions = "*"
-
-[[package]]
-name = "certifi"
-version = "2022.6.15.1"
-description = "Python package for providing Mozilla's CA Bundle."
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[[package]]
-name = "cffi"
-version = "1.15.1"
-description = "Foreign Function Interface for Python calling C code."
-category = "main"
-optional = false
-python-versions = "*"
-
-[package.dependencies]
-pycparser = "*"
-
-[[package]]
-name = "click"
-version = "8.1.3"
-description = "Composable command line interface toolkit"
-category = "main"
-optional = false
-python-versions = ">=3.7"
-
-[package.dependencies]
-colorama = {version = "*", markers = "platform_system == \"Windows\""}
-
-[[package]]
-name = "click-plugins"
-version = "1.1.1"
-description = "An extension module for click to enable registering CLI commands via setuptools entry-points."
-category = "main"
-optional = false
-python-versions = "*"
-
-[package.dependencies]
-click = ">=4.0"
-
-[package.extras]
-dev = ["pytest (>=3.6)", "pytest-cov", "wheel", "coveralls"]
-
-[[package]]
-name = "cligj"
-version = "0.7.2"
-description = "Click params for commmand line interfaces to GeoJSON"
-category = "main"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4"
-
-[package.dependencies]
-click = ">=4.0"
-
-[package.extras]
-test = ["pytest-cov"]
-
-[[package]]
-name = "colorama"
-version = "0.4.5"
-description = "Cross-platform colored terminal text."
-category = "main"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
-
-[[package]]
-name = "debugpy"
-version = "1.6.3"
-description = "An implementation of the Debug Adapter Protocol for Python"
-category = "main"
-optional = false
-python-versions = ">=3.7"
-
-[[package]]
-name = "decorator"
-version = "5.1.1"
-description = "Decorators for Humans"
-category = "main"
-optional = false
-python-versions = ">=3.5"
-
-[[package]]
-name = "entrypoints"
-version = "0.4"
-description = "Discover and load entry points from installed packages."
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[[package]]
-name = "executing"
-version = "1.0.0"
-description = "Get the currently executing AST node of a frame, and other information"
-category = "main"
-optional = false
-python-versions = "*"
-
-[[package]]
-name = "fiona"
-version = "1.8.21"
-description = "Fiona reads and writes spatial data files"
-category = "main"
-optional = false
-python-versions = "*"
-
-[package.dependencies]
-attrs = ">=17"
-certifi = "*"
-click = ">=4.0"
-click-plugins = ">=1.0"
-cligj = ">=0.5"
-munch = "*"
-six = ">=1.7"
-
-[package.extras]
-all = ["boto3 (>=1.2.4)", "pytest-cov", "shapely", "pytest (>=3)", "mock"]
-calc = ["shapely"]
-s3 = ["boto3 (>=1.2.4)"]
-test = ["pytest (>=3)", "pytest-cov", "boto3 (>=1.2.4)", "mock"]
-
-[[package]]
-name = "geopandas"
-version = "0.11.1"
-description = "Geographic pandas extensions"
-category = "main"
-optional = false
-python-versions = ">=3.8"
-
-[package.dependencies]
-fiona = ">=1.8"
-packaging = "*"
-pandas = ">=1.0.0"
-pyproj = ">=2.6.1.post1"
-shapely = ">=1.7,<2"
-
-[[package]]
-name = "ipykernel"
-version = "6.15.2"
-description = "IPython Kernel for Jupyter"
-category = "main"
-optional = false
-python-versions = ">=3.7"
-
-[package.dependencies]
-appnope = {version = "*", markers = "platform_system == \"Darwin\""}
-debugpy = ">=1.0"
-ipython = ">=7.23.1"
-jupyter-client = ">=6.1.12"
-matplotlib-inline = ">=0.1"
-nest-asyncio = "*"
-packaging = "*"
-psutil = "*"
-pyzmq = ">=17"
-tornado = ">=6.1"
-traitlets = ">=5.1.0"
-
-[package.extras]
-test = ["flaky", "ipyparallel", "pre-commit", "pytest-cov", "pytest-timeout", "pytest (>=6.0)"]
-
-[[package]]
-name = "ipython"
-version = "8.5.0"
-description = "IPython: Productive Interactive Computing"
-category = "main"
-optional = false
-python-versions = ">=3.8"
-
-[package.dependencies]
-appnope = {version = "*", markers = "sys_platform == \"darwin\""}
-backcall = "*"
-colorama = {version = "*", markers = "sys_platform == \"win32\""}
-decorator = "*"
-jedi = ">=0.16"
-matplotlib-inline = "*"
-pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""}
-pickleshare = "*"
-prompt-toolkit = ">3.0.1,<3.1.0"
-pygments = ">=2.4.0"
-stack-data = "*"
-traitlets = ">=5"
-
-[package.extras]
-all = ["black", "Sphinx (>=1.3)", "ipykernel", "nbconvert", "nbformat", "ipywidgets", "notebook", "ipyparallel", "qtconsole", "pytest (<7.1)", "pytest-asyncio", "testpath", "curio", "matplotlib (!=3.2.0)", "numpy (>=1.19)", "pandas", "trio"]
-black = ["black"]
-doc = ["Sphinx (>=1.3)"]
-kernel = ["ipykernel"]
-nbconvert = ["nbconvert"]
-nbformat = ["nbformat"]
-notebook = ["ipywidgets", "notebook"]
-parallel = ["ipyparallel"]
-qtconsole = ["qtconsole"]
-test = ["pytest (<7.1)", "pytest-asyncio", "testpath"]
-test_extra = ["pytest (<7.1)", "pytest-asyncio", "testpath", "curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.19)", "pandas", "trio"]
-
-[[package]]
-name = "jedi"
-version = "0.18.1"
-description = "An autocompletion tool for Python that can be used for text editors."
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[package.dependencies]
-parso = ">=0.8.0,<0.9.0"
-
-[package.extras]
-qa = ["flake8 (==3.8.3)", "mypy (==0.782)"]
-testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"]
-
-[[package]]
-name = "jupyter-client"
-version = "7.3.5"
-description = "Jupyter protocol implementation and client libraries"
-category = "main"
-optional = false
-python-versions = ">=3.7"
-
-[package.dependencies]
-entrypoints = "*"
-jupyter-core = ">=4.9.2"
-nest-asyncio = ">=1.5.4"
-python-dateutil = ">=2.8.2"
-pyzmq = ">=23.0"
-tornado = ">=6.2"
-traitlets = "*"
-
-[package.extras]
-doc = ["ipykernel", "myst-parser", "sphinx-rtd-theme", "sphinx (>=1.3.6)", "sphinxcontrib-github-alt"]
-test = ["codecov", "coverage", "ipykernel (>=6.5)", "ipython", "mypy", "pre-commit", "pytest", "pytest-asyncio (>=0.18)", "pytest-cov", "pytest-timeout"]
-
-[[package]]
-name = "jupyter-core"
-version = "4.11.1"
-description = "Jupyter core package. A base package on which Jupyter projects rely."
-category = "main"
-optional = false
-python-versions = ">=3.7"
-
-[package.dependencies]
-pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""}
-traitlets = "*"
-
-[package.extras]
-test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"]
-
-[[package]]
-name = "matplotlib-inline"
-version = "0.1.6"
-description = "Inline Matplotlib backend for Jupyter"
-category = "main"
-optional = false
-python-versions = ">=3.5"
-
-[package.dependencies]
-traitlets = "*"
-
-[[package]]
-name = "munch"
-version = "2.5.0"
-description = "A dot-accessible dictionary (a la JavaScript objects)"
-category = "main"
-optional = false
-python-versions = "*"
-
-[package.dependencies]
-six = "*"
-
-[package.extras]
-testing = ["pytest", "coverage", "astroid (>=1.5.3,<1.6.0)", "pylint (>=1.7.2,<1.8.0)", "astroid (>=2.0)", "pylint (>=2.3.1,<2.4.0)"]
-yaml = ["PyYAML (>=5.1.0)"]
-
-[[package]]
-name = "nest-asyncio"
-version = "1.5.5"
-description = "Patch asyncio to allow nested event loops"
-category = "main"
-optional = false
-python-versions = ">=3.5"
-
-[[package]]
-name = "numpy"
-version = "1.23.3"
-description = "NumPy is the fundamental package for array computing with Python."
-category = "main"
-optional = false
-python-versions = ">=3.8"
-
-[[package]]
-name = "packaging"
-version = "21.3"
-description = "Core utilities for Python packages"
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[package.dependencies]
-pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
-
-[[package]]
-name = "pandas"
-version = "1.4.4"
-description = "Powerful data structures for data analysis, time series, and statistics"
-category = "main"
-optional = false
-python-versions = ">=3.8"
-
-[package.dependencies]
-numpy = [
- {version = ">=1.18.5", markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\""},
- {version = ">=1.19.2", markers = "platform_machine == \"aarch64\" and python_version < \"3.10\""},
- {version = ">=1.20.0", markers = "platform_machine == \"arm64\" and python_version < \"3.10\""},
- {version = ">=1.21.0", markers = "python_version >= \"3.10\""},
-]
-python-dateutil = ">=2.8.1"
-pytz = ">=2020.1"
-
-[package.extras]
-test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"]
-
-[[package]]
-name = "parso"
-version = "0.8.3"
-description = "A Python Parser"
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[package.extras]
-qa = ["flake8 (==3.8.3)", "mypy (==0.782)"]
-testing = ["docopt", "pytest (<6.0.0)"]
-
-[[package]]
-name = "pexpect"
-version = "4.8.0"
-description = "Pexpect allows easy control of interactive console applications."
-category = "main"
-optional = false
-python-versions = "*"
-
-[package.dependencies]
-ptyprocess = ">=0.5"
-
-[[package]]
-name = "pickleshare"
-version = "0.7.5"
-description = "Tiny 'shelve'-like database with concurrency support"
-category = "main"
-optional = false
-python-versions = "*"
-
-[[package]]
-name = "prompt-toolkit"
-version = "3.0.31"
-description = "Library for building powerful interactive command lines in Python"
-category = "main"
-optional = false
-python-versions = ">=3.6.2"
-
-[package.dependencies]
-wcwidth = "*"
-
-[[package]]
-name = "psutil"
-version = "5.9.2"
-description = "Cross-platform lib for process and system monitoring in Python."
-category = "main"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-
-[package.extras]
-test = ["ipaddress", "mock", "enum34", "pywin32", "wmi"]
-
-[[package]]
-name = "ptyprocess"
-version = "0.7.0"
-description = "Run a subprocess in a pseudo terminal"
-category = "main"
-optional = false
-python-versions = "*"
-
-[[package]]
-name = "pure-eval"
-version = "0.2.2"
-description = "Safely evaluate AST nodes without side effects"
-category = "main"
-optional = false
-python-versions = "*"
-
-[package.extras]
-tests = ["pytest"]
-
-[[package]]
-name = "py"
-version = "1.11.0"
-description = "library with cross-python path, ini-parsing, io, code, log facilities"
-category = "main"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
-
-[[package]]
-name = "pycparser"
-version = "2.21"
-description = "C parser in Python"
-category = "main"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-
-[[package]]
-name = "pygments"
-version = "2.13.0"
-description = "Pygments is a syntax highlighting package written in Python."
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[package.extras]
-plugins = ["importlib-metadata"]
-
-[[package]]
-name = "pyparsing"
-version = "3.0.9"
-description = "pyparsing module - Classes and methods to define and execute parsing grammars"
-category = "main"
-optional = false
-python-versions = ">=3.6.8"
-
-[package.extras]
-diagrams = ["railroad-diagrams", "jinja2"]
-
-[[package]]
-name = "pyproj"
-version = "3.4.0"
-description = "Python interface to PROJ (cartographic projections and coordinate transformations library)"
-category = "main"
-optional = false
-python-versions = ">=3.8"
-
-[package.dependencies]
-certifi = "*"
-
-[[package]]
-name = "python-dateutil"
-version = "2.8.2"
-description = "Extensions to the standard Python datetime module"
-category = "main"
-optional = false
-python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
-
-[package.dependencies]
-six = ">=1.5"
-
-[[package]]
-name = "pytz"
-version = "2022.2.1"
-description = "World timezone definitions, modern and historical"
-category = "main"
-optional = false
-python-versions = "*"
-
-[[package]]
-name = "pywin32"
-version = "304"
-description = "Python for Window Extensions"
-category = "main"
-optional = false
-python-versions = "*"
-
-[[package]]
-name = "pyzmq"
-version = "23.2.1"
-description = "Python bindings for 0MQ"
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[package.dependencies]
-cffi = {version = "*", markers = "implementation_name == \"pypy\""}
-py = {version = "*", markers = "implementation_name == \"pypy\""}
-
-[[package]]
-name = "shapely"
-version = "1.8.4"
-description = "Geometric objects, predicates, and operations"
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[package.extras]
-all = ["pytest", "pytest-cov", "numpy"]
-test = ["pytest", "pytest-cov"]
-vectorized = ["numpy"]
-
-[[package]]
-name = "six"
-version = "1.16.0"
-description = "Python 2 and 3 compatibility utilities"
-category = "main"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
-
-[[package]]
-name = "stack-data"
-version = "0.5.0"
-description = "Extract data from python stack frames and tracebacks for informative displays"
-category = "main"
-optional = false
-python-versions = "*"
-
-[package.dependencies]
-asttokens = "*"
-executing = "*"
-pure-eval = "*"
-
-[package.extras]
-tests = ["cython", "littleutils", "pygments", "typeguard", "pytest"]
-
-[[package]]
-name = "tornado"
-version = "6.2"
-description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed."
-category = "main"
-optional = false
-python-versions = ">= 3.7"
-
-[[package]]
-name = "traitlets"
-version = "5.4.0"
-description = ""
-category = "main"
-optional = false
-python-versions = ">=3.7"
-
-[package.extras]
-test = ["pre-commit", "pytest"]
-
-[[package]]
-name = "wcwidth"
-version = "0.2.5"
-description = "Measures the displayed width of unicode strings in a terminal"
-category = "main"
-optional = false
-python-versions = "*"
-
-[metadata]
-lock-version = "1.1"
-python-versions = "^3.8"
-content-hash = "a0857ba0844da23f205dedef879894bbcba4d8bb2053ee6b20b80be3b43ff378"
-
-[metadata.files]
-appnope = []
-asttokens = []
-attrs = []
-backcall = [
- {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"},
- {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"},
-]
-certifi = []
-cffi = []
-click = [
- {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
- {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
-]
-click-plugins = [
- {file = "click-plugins-1.1.1.tar.gz", hash = "sha256:46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b"},
- {file = "click_plugins-1.1.1-py2.py3-none-any.whl", hash = "sha256:5d262006d3222f5057fd81e1623d4443e41dcda5dc815c06b442aa3c02889fc8"},
-]
-cligj = [
- {file = "cligj-0.7.2-py3-none-any.whl", hash = "sha256:c1ca117dbce1fe20a5809dc96f01e1c2840f6dcc939b3ddbb1111bf330ba82df"},
- {file = "cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27"},
-]
-colorama = [
- {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"},
- {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"},
-]
-debugpy = []
-decorator = []
-entrypoints = []
-executing = []
-fiona = []
-geopandas = []
-ipykernel = []
-ipython = []
-jedi = []
-jupyter-client = []
-jupyter-core = []
-matplotlib-inline = []
-munch = [
- {file = "munch-2.5.0-py2.py3-none-any.whl", hash = "sha256:6f44af89a2ce4ed04ff8de41f70b226b984db10a91dcc7b9ac2efc1c77022fdd"},
- {file = "munch-2.5.0.tar.gz", hash = "sha256:2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2"},
-]
-nest-asyncio = []
-numpy = []
-packaging = [
- {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
- {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
-]
-pandas = []
-parso = []
-pexpect = [
- {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"},
- {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"},
-]
-pickleshare = [
- {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"},
- {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"},
-]
-prompt-toolkit = []
-psutil = []
-ptyprocess = [
- {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
- {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"},
-]
-pure-eval = []
-py = [
- {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
- {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
-]
-pycparser = [
- {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
- {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
-]
-pygments = []
-pyparsing = [
- {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"},
- {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"},
-]
-pyproj = []
-python-dateutil = [
- {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"},
- {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"},
-]
-pytz = []
-pywin32 = []
-pyzmq = []
-shapely = []
-six = [
- {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
- {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
-]
-stack-data = []
-tornado = []
-traitlets = []
-wcwidth = [
- {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"},
- {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"},
-]
diff --git a/examples/school-explorer-for-parents/pyproject.toml b/examples/school-explorer-for-parents/pyproject.toml
deleted file mode 100644
index 43ea923..0000000
--- a/examples/school-explorer-for-parents/pyproject.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-[tool.poetry]
-name = "school-explorer"
-version = "0.1.0"
-description = ""
-authors = ["Mjumbe Poe "]
-
-[tool.poetry.dependencies]
-python = "^3.8"
-geopandas = "^0.11.1"
-click = "^8.1.3"
-ipykernel = "^6.15.2"
-
-[tool.poetry.dev-dependencies]
-
-[build-system]
-requires = ["poetry-core>=1.0.0"]
-build-backend = "poetry.core.masonry.api"
diff --git a/examples/school-explorer-for-parents/site/css/styles.css b/examples/school-explorer-for-parents/site/css/styles.css
deleted file mode 100644
index bde1a71..0000000
--- a/examples/school-explorer-for-parents/site/css/styles.css
+++ /dev/null
@@ -1,140 +0,0 @@
-@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,300&display=swap");
-
-html {
- font-family: "Open Sans", sans-serif;
-}
-
-body {
- margin: 0;
- padding: 0 1rem;
- display: grid;
- grid-template:
- "title title" auto
- "filters map" auto
- "count map" auto
- "list map" 1fr / 40% 60%;
- height: 100vh;
- overflow-y: hidden;
-}
-
-h1 {
- font-weight: 300;
- font-style: italic;
-}
-
-h1 { grid-area: title; }
-#school-map { grid-area: map; }
-#school-filters { grid-area: filters; }
-#school-count { grid-area: count; }
-#school-list { grid-area: list; }
-
-#school-count {
- margin: 0.5rem 0;
- margin-right: 1rem;
- font-size: 0.8rem;
- text-align: right;
-}
-
-#school-map {
- height: 100%;
-}
-
-.school-list {
- list-style: none;
- margin: 0 0 0 -1rem;
- padding: 0;
- overflow-y: scroll;
-}
-
-.school-list li {
- margin: 0.25rem 0;
- padding: 1rem;
- cursor: pointer;
-}
-
-.school-name {
- display: block;
- font-weight: bold;
-}
-
-.school-grades-served,
-.school-admission-type {
- display: inline-block;
- padding: 0.25rem 0.5rem;
- border-radius: 0.75rem;
- font-size: 0.8rem;
- font-weight: bold;
-}
-
-.school-grades-served::before,
-.school-admission-type::before {
- font-weight: normal;
-}
-
-.school-grades-served {
- background-color: #c0ffc0;
-}
-
-.school-admission-type {
- background-color: #c0e0ff;
-}
-
-.school-grades-served::before {
- content: "Grades: ";
-}
-
-.school-admission-type::before {
- content: "Admission: ";
-}
-
-#school-filters {
- column-count: 3;
- margin-right: 1rem;
-}
-
-label {
- display: block;
-}
-
-[name="school-filter-name"] {
- display: block;
- column-span: all;
- box-sizing: border-box;
- padding: 0.5rem;
- margin-top: 0.5rem;
- width: 100%;
-}
-
-.address-input {
- display: block;
- column-span: all;
-}
-
-[name="address-search"] {
- box-sizing: border-box;
- padding: 0.5rem;
- margin-top: 0.5rem;
- width: 100%;
-}
-
-.address-options {
- padding: 0;
- list-style: none;
- margin: 0;
-}
-
-.address-options li {
- border: 1px solid black;
- border-width: 0 1px 1px;
- padding: 0.25rem 0.5rem;
- font-size: 0.8rem;
-}
-
-.address-options li:hover {
- background-color: #eee;
- cursor: pointer;
-}
-
-.highlighted {
- background-color: #ffffc0;
-}
diff --git a/examples/school-explorer-for-parents/site/data/catchments.json b/examples/school-explorer-for-parents/site/data/catchments.json
deleted file mode 100644
index 59ef07a..0000000
--- a/examples/school-explorer-for-parents/site/data/catchments.json
+++ /dev/null
@@ -1 +0,0 @@
-{"type": "FeatureCollection", "features": [{"id": "1010", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22847167282687, 39.876632398326805], [-75.22872556068367, 39.87666862419972], [-75.22890678498037, 39.87669381108398], [-75.2299863334957, 39.87684818042749], [-75.23047679598254, 39.876890064343435], [-75.2306447581024, 39.87690255372097], [-75.23084727445985, 39.876920306590165], [-75.23102678790907, 39.87693697139211], [-75.23189970450814, 39.877014402944006], [-75.23231048302323, 39.877057607485526], [-75.23254937153801, 39.877083032876754], [-75.23265783054887, 39.87709439763272], [-75.23281489036877, 39.87711243410881], [-75.23299168568789, 39.87712948119487], [-75.23327104547879, 39.877155990450134], [-75.23398774988407, 39.87717958767282], [-75.23412226461492, 39.87718220502606], [-75.23430304728832, 39.87713717158413], [-75.23448191044382, 39.87709578169967], [-75.2346640349265, 39.877052144866816], [-75.23502555466166, 39.876965732166894], [-75.23553897150364, 39.87675287752604], [-75.23579675404763, 39.87658040156211], [-75.23592834018349, 39.87648943640926], [-75.23605087032027, 39.87640501548633], [-75.23637065491539, 39.87618865594084], [-75.23664115652106, 39.875737749515274], [-75.23671452279636, 39.875615424068336], [-75.23677402337746, 39.87547619722678], [-75.23693329822683, 39.87511798404234], [-75.23750019109423, 39.87508158250391], [-75.23759155607308, 39.87498314104562], [-75.23751900425653, 39.87489069568747], [-75.2374608944683, 39.87480537217064], [-75.2381110127738, 39.87459417857342], [-75.23824620953923, 39.87444783291262], [-75.23835204709452, 39.874333236143144], [-75.2386898454132, 39.87396028860272], [-75.23899372312925, 39.873837568937425], [-75.23917230471774, 39.87361000947073], [-75.23926127978736, 39.87349163936418], [-75.23934852226353, 39.87337318708348], [-75.23940465630135, 39.87330086702595], [-75.24009977322083, 39.87303120812651], [-75.24010531682733, 39.872859818033795], [-75.24010203692245, 39.872732155446734], [-75.2401014180843, 39.87261461255592], [-75.24047189157714, 39.87238290491107], [-75.24091818617407, 39.872403784289034], [-75.24108938603125, 39.87243912731901], [-75.24121666358654, 39.872467145592054], [-75.24139560399729, 39.87250783565143], [-75.24155609185267, 39.872541472125526], [-75.24174689698934, 39.8725866263106], [-75.24225469025525, 39.8727939090174], [-75.24256821080336, 39.872956274616854], [-75.24271293251525, 39.87303167146592], [-75.24675594886526, 39.87508692677362], [-75.24682507705292, 39.87514468498988], [-75.24843116673952, 39.876486517705914], [-75.25177007549969, 39.876008268019795], [-75.2522572765532, 39.87593847451019], [-75.25344115002632, 39.87600850453314], [-75.25397901087354, 39.87604316820538], [-75.25612836172884, 39.87617382688657], [-75.25742120146364, 39.87625239850408], [-75.25858930430861, 39.876323377245235], [-75.25952109442068, 39.876379988422464], [-75.26124986819036, 39.87648500020996], [-75.26253464448033, 39.87657101338095], [-75.26483205648415, 39.880647354801496], [-75.26500345296529, 39.88098283320505], [-75.26511241349733, 39.88165691623894], [-75.26454505532583, 39.882113666597995], [-75.26429795480313, 39.88224218937893], [-75.26308178020672, 39.88235579091961], [-75.26226289078176, 39.882571844384074], [-75.26194560986067, 39.88288888867857], [-75.26188556092026, 39.88306871152689], [-75.2619648414801, 39.88324018437365], [-75.26243256889265, 39.883634293208154], [-75.26413434517731, 39.88413377427175], [-75.26444410534837, 39.884314917831624], [-75.26463823565925, 39.88473376881503], [-75.264227371783, 39.88500223313561], [-75.26315322304049, 39.88530063993857], [-75.26272953306756, 39.88555405988555], [-75.26261697096858, 39.885805005360254], [-75.26268286125655, 39.88602596206221], [-75.2628037631714, 39.88608308133478], [-75.26368381808622, 39.88614529122091], [-75.26398148286944, 39.88609690542778], [-75.26428366505263, 39.88619301002159], [-75.26479848088731, 39.88644542327039], [-75.26485152464697, 39.88653708219026], [-75.26493409750464, 39.886673786544634], [-75.26503772097375, 39.88683343320687], [-75.26510529938675, 39.88698105572501], [-75.26513539479535, 39.887155972712485], [-75.26512903307312, 39.88733009834498], [-75.26509591997379, 39.88753737422559], [-75.26497854368195, 39.88775406469194], [-75.2648775952483, 39.88792051812417], [-75.26472581587099, 39.88808024886747], [-75.26459672735419, 39.88821798465446], [-75.26444658541898, 39.88833277777339], [-75.26426121679286, 39.88841307911788], [-75.26399646292565, 39.888469173198004], [-75.26372585348497, 39.88848578900923], [-75.26337647426388, 39.88846134543911], [-75.26297687522327, 39.88841332328015], [-75.26267977091516, 39.88835628254044], [-75.26247314241665, 39.88841925584918], [-75.2622932146623, 39.88855026444444], [-75.26219996310193, 39.88870564022349], [-75.26213382192496, 39.888917819787274], [-75.26209602532828, 39.88915309877558], [-75.26208092701746, 39.889366385421475], [-75.26208785386176, 39.88967571529459], [-75.26210130265099, 39.8899064854195], [-75.26212327937355, 39.89010371306425], [-75.26210961692534, 39.890277681125525], [-75.26210242524787, 39.890474274709355], [-75.26203587226061, 39.89069768785107], [-75.26188222118692, 39.89130708745025], [-75.26185500322245, 39.891452653996886], [-75.26179029803899, 39.891625513952086], [-75.26173349960943, 39.891781680833176], [-75.26160542559434, 39.89189132922739], [-75.26150492929955, 39.89194536088399], [-75.26131348888022, 39.89199179832038], [-75.26109852855167, 39.892082694840994], [-75.26073002527949, 39.89218149889538], [-75.26014173319912, 39.892303635552956], [-75.25992903257615, 39.892332744162395], [-75.25974570453546, 39.892356867490776], [-75.25954132387776, 39.89235804710291], [-75.25934987982089, 39.89240448033459], [-75.25910760004298, 39.89244418720454], [-75.25895846820406, 39.892530889134854], [-75.25877811246932, 39.89267312583547], [-75.25856879096838, 39.89280911317068], [-75.25838719659659, 39.89298505089836], [-75.25821268729047, 39.89316676456229], [-75.25802297698709, 39.89336501310601], [-75.25782941331842, 39.8935687961448], [-75.2576701035039, 39.89373397661408], [-75.25743375400573, 39.89400990882345], [-75.25691062195747, 39.89454381022039], [-75.25674319192008, 39.89473129797559], [-75.25666574008655, 39.89485328393727], [-75.25666265094684, 39.89493753946833], [-75.25671019421473, 39.89503413804727], [-75.25679193612685, 39.89519331631798], [-75.25696827170307, 39.8953601750748], [-75.25712499457705, 39.89546476846864], [-75.25727463402838, 39.895563587218106], [-75.25738980947702, 39.89570662738757], [-75.25736278601762, 39.895846576067925], [-75.25727701118751, 39.89599649052031], [-75.257147276008, 39.89615106922877], [-75.25693526480914, 39.89636007195456], [-75.25676239047758, 39.896496847241195], [-75.2564504267347, 39.896844213135324], [-75.25623676099224, 39.8970981515777], [-75.25609099485138, 39.89729173024855], [-75.25598230732751, 39.89746925259397], [-75.25580510305767, 39.89772398183689], [-75.25561819449672, 39.89794477289789], [-75.25550723823173, 39.8981840804194], [-75.25533064848462, 39.898421958548546], [-75.25522587248224, 39.89849275841124], [-75.25515673523988, 39.89858681807738], [-75.25509592180552, 39.89865295158884], [-75.25509569832735, 39.89876237738784], [-75.25511767379889, 39.89885579733446], [-75.25516707347406, 39.898901843644225], [-75.25523464359028, 39.89904947289799], [-75.25533991056038, 39.89916419034909], [-75.25548749498242, 39.899319182958166], [-75.25565079473147, 39.89950546904604], [-75.25551927441859, 39.899671817467535], [-75.2537125750273, 39.90165972354577], [-75.25128930933779, 39.90440464653971], [-75.25349030441225, 39.90558931620286], [-75.25247650491937, 39.906629316501075], [-75.25239433810611, 39.90663279088665], [-75.25215241629941, 39.90666124857997], [-75.25199092786976, 39.90668583626129], [-75.25175526466995, 39.90674253861986], [-75.25162859233201, 39.906812856580146], [-75.25149765214105, 39.9068999452429], [-75.2513030688708, 39.907030619593826], [-75.25105680761287, 39.90717703101529], [-75.25087033953598, 39.90728539552146], [-75.25071407900656, 39.90736630916673], [-75.25044490386146, 39.90754032801137], [-75.25031760916022, 39.90762749577421], [-75.25027074898914, 39.907710796000934], [-75.25022327032462, 39.90781094748396], [-75.25020475982173, 39.90791735099786], [-75.25018480243162, 39.90806307466613], [-75.25019842217804, 39.90828822850089], [-75.25019243325477, 39.90845111971399], [-75.25016621596865, 39.9085685995522], [-75.25011667252429, 39.908724919746994], [-75.25004503830664, 39.90888637949426], [-75.25000278670556, 39.90904285865848], [-75.2499330142538, 39.90915376556626], [-75.24989200148285, 39.90927654309308], [-75.24991807752134, 39.909361434647856], [-75.2500059768168, 39.90945084765427], [-75.25014975380923, 39.909512644596155], [-75.25028001024752, 39.90954359212601], [-75.25046964910027, 39.90954772687289], [-75.25065075551524, 39.90958540390398], [-75.25088188492465, 39.909652278422946], [-75.25110530948446, 39.90973022709381], [-75.25122682697439, 39.90980033293835], [-75.25129687653734, 39.909880560379776], [-75.25128483388012, 39.910009591046034], [-75.25123632293, 39.91013782777179], [-75.25112175484563, 39.910275867253], [-75.2510003032828, 39.91040251131497], [-75.25087052511984, 39.91055708467883], [-75.25071989775354, 39.91068309337084], [-75.25061365619707, 39.91079320657612], [-75.2505363791607, 39.910909573348086], [-75.25039930530177, 39.911063985363604], [-75.25019293955206, 39.91121688638701], [-75.24992663835961, 39.911312265420186], [-75.24974869265492, 39.91138708470562], [-75.2495184447701, 39.91149449164222], [-75.24933320197647, 39.91156915205354], [-75.24916213543847, 39.911655365782146], [-75.24898294714365, 39.91176388364004], [-75.24885502150394, 39.91186790279346], [-75.2487627393239, 39.911995182787926], [-75.24872048397681, 39.91215166240069], [-75.24868531572548, 39.91231391610877], [-75.24859764111719, 39.91251437506987], [-75.24855744936804, 39.91261468496965], [-75.2485093471108, 39.91273168612919], [-75.24843206430398, 39.912848050580614], [-75.2483774921136, 39.91294242446679], [-75.24829436285583, 39.91301931134196], [-75.24821164681734, 39.91308496369788], [-75.24805516189605, 39.9131714913694], [-75.2478317892695, 39.91329028952387], [-75.24760174098992, 39.9133920758825], [-75.24740045441959, 39.913505733991265], [-75.24720061585029, 39.91358007162903], [-75.24711665739866, 39.913679423859584], [-75.24706916988879, 39.91377957493105], [-75.24706441372602, 39.91390876440819], [-75.24711780437835, 39.914044843650025], [-75.2472228763013, 39.91416518896761], [-75.24733408398963, 39.91429965601948], [-75.24741208913824, 39.91441967161091], [-75.24748929415475, 39.91453956246071], [-75.24755284722504, 39.91458332237008], [-75.24763258569716, 39.914637510394016], [-75.24770662962136, 39.91472304303108], [-75.24771599704783, 39.91483863123591], [-75.24765491195821, 39.91495618126942], [-75.24755500478895, 39.915079875646406], [-75.24748646962614, 39.9152147431452], [-75.24734794882932, 39.915400532460204], [-75.24718840961387, 39.915633064899126], [-75.24713723270843, 39.915728100742655], [-75.24705774010306, 39.915852240368565], [-75.24698899190108, 39.91593116033967], [-75.24692037341751, 39.91600658455143], [-75.24684242492191, 39.91608879943717], [-75.24676795121663, 39.91619993631191], [-75.2467642932783, 39.9163301039174], [-75.24678714191808, 39.91644948240546], [-75.24683526643057, 39.91656067488572], [-75.24687750416045, 39.916708450661766], [-75.24693674751636, 39.91687235782663], [-75.24696194160919, 39.91692795126065], [-75.24702074539826, 39.916980371695004], [-75.24710353047506, 39.91702894488325], [-75.24717205571314, 39.91707939254227], [-75.24720597939441, 39.91716011593969], [-75.24717925618677, 39.91722928833567], [-75.24723942718408, 39.91740362743354], [-75.24730486773664, 39.917616672815065], [-75.24734745909676, 39.917786895310684], [-75.2473581560496, 39.91799404346665], [-75.24734817198272, 39.91843116718604], [-75.24733290081883, 39.91868007084684], [-75.24733416041266, 39.91881177205084], [-75.24739079615391, 39.91901521970489], [-75.24749740200332, 39.91927148751148], [-75.24758426940232, 39.91940035390213], [-75.24762266200263, 39.9195187550527], [-75.24762323035877, 39.919669250266246], [-75.24759627457499, 39.91990379300391], [-75.24758112878699, 39.91998340569149], [-75.2475278111457, 39.92010451120326], [-75.24748739074602, 39.92020708455972], [-75.24747679000083, 39.92032912234339], [-75.24746601865583, 39.92045585687965], [-75.24746117528564, 39.920587423072966], [-75.24746853615764, 39.92071925742699], [-75.24746835034084, 39.9209731926147], [-75.24746078474014, 39.92134453360512], [-75.24748558985473, 39.92150026096388], [-75.24751507355418, 39.921672165022855], [-75.24750607298624, 39.92177345815112], [-75.24747157845458, 39.9218808649304], [-75.24739212019405, 39.92204842448603], [-75.24728997880783, 39.922168462524084], [-75.24716359846583, 39.92228327003526], [-75.24706859910215, 39.92237524650567], [-75.24693594263907, 39.92249461996705], [-75.24664178298741, 39.92277035402662], [-75.24652133215531, 39.92288999080537], [-75.24636253132851, 39.9230558183447], [-75.2462666632187, 39.92317129023258], [-75.24618840967676, 39.92330595669068], [-75.24615880781613, 39.92344638863182], [-75.24614054300106, 39.92361057952106], [-75.24613379290614, 39.92379383456595], [-75.24612963902429, 39.92390660579278], [-75.24609531661189, 39.92400931460536], [-75.2460726810459, 39.924126383644335], [-75.24603191218198, 39.924238355335795], [-75.24599079341972, 39.924359726638386], [-75.24594478254895, 39.92444807153349], [-75.24586652923863, 39.92458273782064], [-75.24579506940592, 39.924698741495526], [-75.2457263137798, 39.9248242096502], [-75.24568010915989, 39.92488371305061], [-75.24563654577109, 39.92493981520691], [-75.24555322629331, 39.92504615517457], [-75.24543886966802, 39.92516592584399], [-75.24526474045014, 39.925416061005436], [-75.24519868862885, 39.92555099520395], [-75.24512739974729, 39.92566230086199], [-75.24505018240241, 39.925768772892795], [-75.2449924836029, 39.9258427543882], [-75.24486834379816, 39.92589647437382], [-75.24476234202136, 39.92595529277384], [-75.24462616977375, 39.92600404644966], [-75.2445201676861, 39.92606286282527], [-75.24440143811377, 39.926135510561735], [-75.24433607563414, 39.926251646642434], [-75.24430174936177, 39.926354354014606], [-75.24433081231221, 39.926477256518716], [-75.24441279147882, 39.92657310063879], [-75.24450767024295, 39.926650415607334], [-75.2445770981056, 39.92675538993084], [-75.24459769989812, 39.926859295658076], [-75.24458012543246, 39.92700469324823], [-75.24457982113523, 39.92717868275433], [-75.24455177072839, 39.92727682413468], [-75.24449809559326, 39.927407325222624], [-75.24442645605995, 39.927528027413075], [-75.24434226541503, 39.92765786168888], [-75.24426993485572, 39.92779735782447], [-75.24419933380707, 39.92788986798446], [-75.24412159279538, 39.92801043578041], [-75.2440553641325, 39.928150067838665], [-75.24400161995722, 39.92836521281857], [-75.24398525652, 39.928477718131035], [-75.24396681187515, 39.928646607159685], [-75.24396702565667, 39.92880650206786], [-75.2439716494672, 39.92917810779471], [-75.2439670125304, 39.9294695678305], [-75.24396806898285, 39.92960333793567], [-75.24398241683463, 39.929714441188494], [-75.24400998780085, 39.92979498609446], [-75.24409928849657, 39.92985807166599], [-75.24418927875121, 39.9299023622003], [-75.24427857744878, 39.929965446680804], [-75.2443551495057, 39.930042360769605], [-75.24440575074128, 39.930161032421815], [-75.24442853925618, 39.93028850094924], [-75.2443816574547, 39.930400338625375], [-75.2442746088932, 39.93048734935878], [-75.24413128364208, 39.930564160954866], [-75.24395081763902, 39.930654270316616], [-75.24381359589472, 39.930731214908114], [-75.24369416667311, 39.93082265774716], [-75.24363594233557, 39.93091073404509], [-75.24360528992457, 39.93107935804132], [-75.2435582340958, 39.931195894802094], [-75.2435164136411, 39.931336059191445], [-75.24347511636647, 39.931462127252175], [-75.24343450979335, 39.931569398560214], [-75.24341831681822, 39.93167720346368], [-75.24340160266087, 39.9317991074292], [-75.24334303285262, 39.93189658152115], [-75.24327956923035, 39.93196103173032], [-75.24318593632059, 39.932015415176366], [-75.24310468404244, 39.93206536780084], [-75.24304951001912, 39.93215351141844], [-75.24293513826386, 39.93227327780365], [-75.24284448785608, 39.93241237541506], [-75.24272227980886, 39.932578998543015], [-75.24262465866519, 39.93274145502357], [-75.24252946397212, 39.93283812799], [-75.24245309882642, 39.93292110483453], [-75.24235093355396, 39.93304113848015], [-75.24228625556222, 39.93313847852701], [-75.24223988835199, 39.93323621983896], [-75.24214722451259, 39.93334705561295], [-75.24201270073718, 39.93343346267999], [-75.24188906490586, 39.933473083052256], [-75.24171712157997, 39.93349753900689], [-75.24155773164858, 39.93351286200569], [-75.24139782008557, 39.93354228383802], [-75.24118890620518, 39.93357533488688], [-75.24097388764444, 39.93360825200431], [-75.24075973742913, 39.93361767448273], [-75.24051645624813, 39.93358883722877], [-75.24024404448275, 39.93352174185772], [-75.24016114639225, 39.933493624967426], [-75.23992403928501, 39.93355793659742], [-75.23952717814703, 39.933567607673154], [-75.2392009596448, 39.93345696358626], [-75.23893908361332, 39.93327485944053], [-75.23873923668756, 39.93312452331611], [-75.23849767581348, 39.933034089558596], [-75.23823787470704, 39.93300669392476], [-75.23800082407834, 39.93301104522161], [-75.2377768832943, 39.93308520126836], [-75.23683559966594, 39.93375789463036], [-75.23664759632881, 39.933906180675955], [-75.23666177970193, 39.934087550085515], [-75.23665133117491, 39.93420488655617], [-75.23660339239997, 39.934344915588156], [-75.23655336828404, 39.93454132822961], [-75.23652373928955, 39.93468175760784], [-75.23646865275937, 39.93484984370847], [-75.23639257083319, 39.9351726570471], [-75.23631969340647, 39.935326245383415], [-75.23617007168824, 39.935407612638286], [-75.23601330560618, 39.93551703957006], [-75.23586298784012, 39.935617201263895], [-75.23566401318618, 39.93571159467156], [-75.23545823673795, 39.935824649600505], [-75.23526380087891, 39.93596146431477], [-75.23497921193861, 39.936223273683886], [-75.23492010462078, 39.93633483891729], [-75.23492185984469, 39.936452442920405], [-75.23491664324142, 39.93659340731749], [-75.2348461953796, 39.93668121324939], [-75.23477321788663, 39.93675485407357], [-75.23474393443104, 39.93688588427163], [-75.23478702806624, 39.9370420159329], [-75.23478163725238, 39.93718767880529], [-75.23480048581486, 39.937338577353174], [-75.23486938799532, 39.937457652082024], [-75.23492084647403, 39.93755283366167], [-75.23496848080433, 39.9377513881742], [-75.23497564550011, 39.937887919976426], [-75.23498281132761, 39.938024453604044], [-75.23500340297346, 39.93812836286094], [-75.23507387119106, 39.9382051493166], [-75.23516299723741, 39.938272941142294], [-75.23529554970298, 39.938322873167614], [-75.23548966580893, 39.93836004788003], [-75.2357816214686, 39.93839466387713], [-75.23594591001282, 39.93841237296468], [-75.23614682570808, 39.93843088461924], [-75.23634739395118, 39.93845879289217], [-75.23649999900883, 39.93846213733794], [-75.23668381661955, 39.93844735638547], [-75.23687984402174, 39.93843284087639], [-75.23714440811271, 39.938382206511235], [-75.23744899521795, 39.938323042842086], [-75.23762182198209, 39.93827509907656], [-75.23776936395865, 39.93825011538121], [-75.23796573783048, 39.93822620284254], [-75.23817327823944, 39.93823074827048], [-75.23832622909218, 39.938224690584775], [-75.23849801306588, 39.938204940029244], [-75.23873711615691, 39.938181959138795], [-75.23887244889454, 39.9381567076098], [-75.23900743437267, 39.93814085199926], [-75.23918428007629, 39.938149426781784], [-75.23933670863326, 39.938157466792724], [-75.23945286097023, 39.93815530616252], [-75.23956308200826, 39.93814831239838], [-75.23970958281383, 39.93815151897409], [-75.23981928309944, 39.93815862313541], [-75.23992253142438, 39.9381749914664], [-75.2400372955059, 39.938210419969614], [-75.24013967867731, 39.938250281510335], [-75.24025863671281, 39.93833753303796], [-75.24040995404322, 39.938458408504886], [-75.24059276459693, 39.938636405667815], [-75.24071155050956, 39.938728352515966], [-75.24076267231305, 39.93883292938218], [-75.24073932864717, 39.93896879310819], [-75.24069871200369, 39.93907606610911], [-75.2406272281501, 39.9391920656366], [-75.24054440384643, 39.93928430646638], [-75.24042495286159, 39.9393757458371], [-75.2403423004971, 39.939463285303056], [-75.240240642209, 39.939569221582225], [-75.24014387387415, 39.93970818350265], [-75.24001675359604, 39.939841776143794], [-75.23995119918372, 39.93996261004167], [-75.23989199360169, 39.94004014682548], [-75.23943990595043, 39.939820635715826], [-75.2392059914378, 39.939736453084166], [-75.2390011854177, 39.93971980516514], [-75.23873187557751, 39.93973823665251], [-75.2384519774567, 39.93982941531003], [-75.23807984787723, 39.9400645345292], [-75.23787144698669, 39.94014511600913], [-75.23773600317422, 39.94017559699575], [-75.23758544765711, 39.940187504362896], [-75.23719951600373, 39.94015472211588], [-75.23708098652438, 39.94015516792562], [-75.2369297568647, 39.940185303009926], [-75.23676093795004, 39.940263706211184], [-75.23660687954481, 39.94036655046346], [-75.23503453869628, 39.941475085310834], [-75.23382951822354, 39.9423175806767], [-75.23432126745027, 39.94274206383771], [-75.23453049110597, 39.94290822712017], [-75.2347335948175, 39.943088277988174], [-75.23521991589762, 39.94349567046655], [-75.23460058718051, 39.94394722294118], [-75.23447444548366, 39.94402821946588], [-75.23418573636991, 39.94423881568086], [-75.23371815372047, 39.944560304836195], [-75.23322356204032, 39.9441379445611], [-75.23281885532278, 39.943791942656354], [-75.23232073989367, 39.94337118576998], [-75.23094716896786, 39.94433754900314], [-75.23045841638532, 39.94392442181561], [-75.2300512126973, 39.943581922008015], [-75.22955325914707, 39.9431694427212], [-75.22906061292544, 39.94275510279864], [-75.2286495761246, 39.94240725523266], [-75.22816473061533, 39.94198411686646], [-75.2279150932509, 39.941779548000355], [-75.22770183808326, 39.94160479346235], [-75.22733688633339, 39.94129340858265], [-75.22688622317584, 39.94090891493186], [-75.22639240902276, 39.94050315877415], [-75.22621028243675, 39.94033942153977], [-75.22598204677581, 39.94013938623111], [-75.22574413892491, 39.93994585631309], [-75.22548113740314, 39.939726193300785], [-75.22411470112915, 39.94069239719636], [-75.22361656639723, 39.94104707837321], [-75.22342672572017, 39.94117663554376], [-75.22323926450781, 39.941312821226155], [-75.22275432475358, 39.94165593328939], [-75.22206699647136, 39.9421396456706], [-75.22136817491958, 39.94262798959198], [-75.22079176874564, 39.9430253906775], [-75.22022164439426, 39.94341620880577], [-75.21954803809479, 39.94389540808213], [-75.21915337365694, 39.94417736868566], [-75.2190032263168, 39.94428463720904], [-75.21840785554781, 39.94470311532915], [-75.21773309661441, 39.94518440362091], [-75.21647228140037, 39.9460684669736], [-75.21516235800405, 39.94697939184697], [-75.21396205829907, 39.94597580755762], [-75.21332518017692, 39.946428740261325], [-75.21268289883348, 39.946880804965346], [-75.21139018616216, 39.94779717850673], [-75.210599590919, 39.948349747884194], [-75.20905275231212, 39.94840065040551], [-75.20891492499595, 39.94774619012205], [-75.20886579842912, 39.94751274485901], [-75.20873299651238, 39.94684000882448], [-75.20853779649374, 39.945761818078864], [-75.20838441136944, 39.94565560961414], [-75.20827024712582, 39.94576580082315], [-75.20811137064551, 39.94566542503228], [-75.20746762198765, 39.94528192451025], [-75.20583883243509, 39.944319761683424], [-75.20548867998357, 39.944112922210635], [-75.2053264864448, 39.94408111179888], [-75.20460489022865, 39.94395445297271], [-75.20329421085049, 39.94408301196562], [-75.2030545074157, 39.94362262812122], [-75.20384389489251, 39.943159031803354], [-75.20454685757073, 39.94255199429125], [-75.20503308883262, 39.94184108941856], [-75.2051511241047, 39.941109705274734], [-75.20515916367398, 39.94065801560933], [-75.20516533511787, 39.94027327776247], [-75.20516213209207, 39.938603951228046], [-75.205161751336, 39.93840528394946], [-75.20516612810576, 39.937061048418464], [-75.20537590640467, 39.93587702877518], [-75.2055971311071, 39.93548447427487], [-75.2058484773116, 39.93503846158553], [-75.20642541432272, 39.9343578658045], [-75.20757291260742, 39.933166337097894], [-75.20969119752053, 39.930835934591194], [-75.21052319268539, 39.92972229370418], [-75.21074355424716, 39.929267201457094], [-75.21116053746807, 39.928406227444746], [-75.21157630482006, 39.92760883240147], [-75.21214722121682, 39.92634789377554], [-75.21240349026309, 39.92539130720084], [-75.21255801411132, 39.92420605590866], [-75.21236773139668, 39.92339524882293], [-75.21195444836577, 39.92265025678862], [-75.21111670313407, 39.92195247005715], [-75.20994136801055, 39.92119059609576], [-75.20888316774469, 39.92098318900874], [-75.20771109345405, 39.920872302717065], [-75.20647864311627, 39.920901574082286], [-75.20524090114905, 39.92107222205077], [-75.20375348198348, 39.921039201492874], [-75.20262167546693, 39.920589535899126], [-75.20203954057037, 39.919939811356116], [-75.2019945286076, 39.919781946952625], [-75.20184462772525, 39.91925623705986], [-75.20194457510891, 39.91855091390986], [-75.20246386163328, 39.917444533142344], [-75.20359825025908, 39.91561596579895], [-75.2041088348333, 39.91449523508961], [-75.20470414463513, 39.91331977872765], [-75.20542266692576, 39.912288564423946], [-75.20635832065332, 39.91134706809731], [-75.207216129998, 39.911012324931804], [-75.20848050275646, 39.910615834252674], [-75.2094913839666, 39.9106099381418], [-75.2122790037696, 39.9107565830743], [-75.2135613898842, 39.91061515098194], [-75.21464580619211, 39.910115556509204], [-75.2153079210576, 39.909606617026206], [-75.21568364421469, 39.90889323104565], [-75.21569646410822, 39.90756333700614], [-75.21545761289784, 39.905591091598325], [-75.2151114782057, 39.903786283051396], [-75.21468644114745, 39.901880671807056], [-75.21405201147564, 39.90066381664515], [-75.2135832514153, 39.89993175325022], [-75.2121105527512, 39.898285960912], [-75.21157229080009, 39.89783622404864], [-75.21063179238031, 39.897050385553555], [-75.20953791229009, 39.89633275566915], [-75.20811681144355, 39.8955229525527], [-75.20643188168988, 39.89489123824661], [-75.2046735612974, 39.894257866007955], [-75.20220010194497, 39.893834988846315], [-75.20040917979276, 39.89358290207157], [-75.19791884605132, 39.89287653536392], [-75.19734849868537, 39.892554200508876], [-75.19664161307446, 39.892154693323114], [-75.195377006374, 39.890852930227844], [-75.1950055405623, 39.88900502992013], [-75.1947442202182, 39.88715958381745], [-75.19435105676118, 39.88417912439962], [-75.19423258569884, 39.881954784067574], [-75.19372794187674, 39.88001878022436], [-75.19324988488377, 39.878184668892864], [-75.19430620973216, 39.877583978488495], [-75.19885918020827, 39.87531713095636], [-75.20579217318934, 39.871571579248375], [-75.21198487997897, 39.86747284480536], [-75.21603814471179, 39.87111631570757], [-75.21578921822109, 39.87504224093411], [-75.21572726805299, 39.876019193741996], [-75.2157225921386, 39.87609686569248], [-75.21590037854007, 39.876060781394166], [-75.21604782206254, 39.876025894510676], [-75.21620413112939, 39.87599218827433], [-75.21636007782286, 39.875956244738106], [-75.21670070441829, 39.87587791040923], [-75.2168458904517, 39.87584442862628], [-75.21701387381843, 39.875808276381136], [-75.21751660232262, 39.87574670542258], [-75.21770149581347, 39.87572104235302], [-75.21785992648596, 39.87570214368064], [-75.21803436577785, 39.87568407065159], [-75.21832489893065, 39.875679545594956], [-75.21885677116845, 39.87567303314916], [-75.21924109217277, 39.87559284811976], [-75.21944440642542, 39.87554510553339], [-75.21963503168246, 39.87549816989502], [-75.2197372374579, 39.87547755582184], [-75.22086539016242, 39.87557153428044], [-75.22104101540015, 39.87558704603196], [-75.22126421291121, 39.875606141876716], [-75.22208388458552, 39.87567562076239], [-75.22269919578615, 39.875731361270006], [-75.22287056878407, 39.87575196887403], [-75.22311054008301, 39.875780408591524], [-75.22376593968741, 39.87585913878545], [-75.22465413819802, 39.87602438054643], [-75.22485767419093, 39.876061344325464], [-75.22502858924472, 39.87609467239676], [-75.22595270413426, 39.87626793580584], [-75.22686666491282, 39.87640468847385], [-75.22711914707487, 39.876437058648364], [-75.22847167282687, 39.876632398326805]]]}}, {"id": "1020", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20583883243509, 39.944319761683424], [-75.20746762198765, 39.94528192451025], [-75.20811137064551, 39.94566542503228], [-75.20827024712582, 39.94576580082315], [-75.20838441136944, 39.94565560961414], [-75.20853779649374, 39.945761818078864], [-75.20873299651238, 39.94684000882448], [-75.20886579842912, 39.94751274485901], [-75.20891492499595, 39.94774619012205], [-75.20905275231212, 39.94840065040551], [-75.210599590919, 39.948349747884194], [-75.21139018616216, 39.94779717850673], [-75.21268289883348, 39.946880804965346], [-75.21332518017692, 39.946428740261325], [-75.21396205829907, 39.94597580755762], [-75.21516235800405, 39.94697939184697], [-75.21587487161817, 39.9475691465498], [-75.21656076374511, 39.94815297647089], [-75.21712233963673, 39.94861189853709], [-75.21923577195466, 39.948369210737745], [-75.22123731327486, 39.9481623444683], [-75.22124930716777, 39.94827774218], [-75.22108786424026, 39.94902773485284], [-75.22093688238962, 39.94972740202175], [-75.22077646819018, 39.950514077833525], [-75.22061693130486, 39.951276551263554], [-75.22258996908286, 39.951520619003304], [-75.22243591661017, 39.95228185757551], [-75.2222800420232, 39.95304100157719], [-75.22219283966916, 39.95341499671031], [-75.2220575849949, 39.95410396374315], [-75.22203767016683, 39.9541745245253], [-75.22192358674249, 39.954724257174874], [-75.2217982925147, 39.955320872144064], [-75.2216873926178, 39.95585536230671], [-75.22156022486105, 39.956462883842796], [-75.22149388168697, 39.956831736809185], [-75.22139876232934, 39.95722829373262], [-75.2212452105831, 39.95798512282026], [-75.22108669773192, 39.95873296666356], [-75.22092091673352, 39.959506370957484], [-75.22190949565909, 39.95962711754266], [-75.22239684004771, 39.95968156550928], [-75.22290106608362, 39.95974637621446], [-75.22388433780017, 39.95986316309301], [-75.22421322127714, 39.95990071720949], [-75.22477258922517, 39.9599762940573], [-75.22486806570537, 39.960006758007836], [-75.22620947880866, 39.96016033418035], [-75.22685117094453, 39.96024000475525], [-75.2274440501019, 39.96031227707355], [-75.22797617665447, 39.96037854276966], [-75.22864645665969, 39.96046483588109], [-75.22831950768749, 39.96203465368984], [-75.22767177235322, 39.961956483381094], [-75.22716073419876, 39.96189346163298], [-75.22651888853692, 39.96181383932179], [-75.22585395073848, 39.96172902647333], [-75.2252934967573, 39.96165947884321], [-75.2245421302761, 39.961568838865276], [-75.22355198385931, 39.96144479703293], [-75.22256784792319, 39.96132161960473], [-75.22206583290657, 39.96125897645551], [-75.2215794161934, 39.96119931296838], [-75.22059247702725, 39.961075874663585], [-75.21965042702726, 39.960957506554315], [-75.21943900765564, 39.96094235593091], [-75.21969376220423, 39.96252450315264], [-75.21976953596858, 39.96301130841067], [-75.22004478056664, 39.963820869515125], [-75.22011148713864, 39.96436075060387], [-75.2201709963554, 39.964845529988835], [-75.21836098136826, 39.965028922370635], [-75.21829467559881, 39.96449083190423], [-75.21822793170311, 39.96395720516577], [-75.21637741936549, 39.96409569079961], [-75.21516294851831, 39.964189471409064], [-75.21470015168937, 39.96422115065583], [-75.21419559539217, 39.964259332972176], [-75.21370729354383, 39.964296283029626], [-75.21322853775273, 39.96433250864373], [-75.21333806087627, 39.965168923090985], [-75.21337609340233, 39.965466918667126], [-75.21340694504758, 39.96570864921634], [-75.21351411433787, 39.966578304228385], [-75.2136500122597, 39.96769736954828], [-75.21370757697493, 39.968127131120845], [-75.21375007799544, 39.9684829244615], [-75.21379568055352, 39.96883284512564], [-75.21381710658514, 39.96903611423682], [-75.21384515928588, 39.96922812853912], [-75.21384602151933, 39.969289782379036], [-75.21435015898996, 39.969238605392725], [-75.21480839700534, 39.96919231816414], [-75.21528992999187, 39.96914249371162], [-75.21576217994979, 39.96909507783468], [-75.21636818230415, 39.969031120310326], [-75.21699640530869, 39.968970685609506], [-75.21717197868607, 39.97035239770751], [-75.21743760573125, 39.9724356476891], [-75.21608600831708, 39.97161938133278], [-75.21499017096943, 39.9709560607137], [-75.21468810542842, 39.970774549650116], [-75.21454241075261, 39.970684580300244], [-75.2143190588701, 39.9705434928283], [-75.21390007921819, 39.970296393465695], [-75.21293442563362, 39.96971390666676], [-75.21264181899252, 39.96953740234732], [-75.2121349858603, 39.96922915050159], [-75.21133586950056, 39.96872707840927], [-75.2115166052264, 39.96965576250502], [-75.21013836492584, 39.969805350585304], [-75.20920137525263, 39.969908239553455], [-75.20822768613749, 39.97001688531799], [-75.2071715109633, 39.970134859313845], [-75.20664160684923, 39.97018882439134], [-75.20584308660476, 39.97027633607101], [-75.20529383804944, 39.97032724144262], [-75.2047464601045, 39.97038654791297], [-75.20430221981374, 39.970442136607105], [-75.20418303772176, 39.97042967509766], [-75.20360222096758, 39.970262038082865], [-75.20363324664117, 39.970432344209144], [-75.20365192712485, 39.970536711194484], [-75.20372256837196, 39.97092991009466], [-75.20372444604058, 39.970940143918334], [-75.20373778519559, 39.9710135329684], [-75.20348653944679, 39.97101458528833], [-75.2031438609358, 39.971018855159635], [-75.20280217542738, 39.97103558441613], [-75.20246146679227, 39.97106857044634], [-75.20212582727534, 39.97111679138892], [-75.20179527631387, 39.97118609164044], [-75.20146991414583, 39.97126904739688], [-75.20114834189835, 39.97135896109926], [-75.2008300396192, 39.97145629876278], [-75.2005167783354, 39.97156188994687], [-75.20020658391334, 39.97167432130029], [-75.19990132964449, 39.9717951923184], [-75.19960966378463, 39.9719314879363], [-75.19933172317984, 39.972085236761686], [-75.19906596864303, 39.97225320340784], [-75.19881896232208, 39.97243574288791], [-75.1983798864382, 39.972837364965635], [-75.19817373991863, 39.97304817344242], [-75.19796973622626, 39.97326048165323], [-75.19776267748833, 39.97347047176852], [-75.19769427033506, 39.9735526068525], [-75.19747675915838, 39.97375745082089], [-75.19724347719469, 39.97395315065537], [-75.19700906804599, 39.97414484161994], [-75.1967697217073, 39.9743329092601], [-75.19652544619335, 39.97451751410253], [-75.19627710586025, 39.97469896547529], [-75.19602558226443, 39.974877551471934], [-75.19577203856599, 39.975054075529776], [-75.19575612004209, 39.97506493243013], [-75.19541223775175, 39.97510346411268], [-75.19489863948688, 39.97516312254212], [-75.19466135487802, 39.97518792535294], [-75.1946275299596, 39.97519146092737], [-75.19461061691396, 39.97519322869778], [-75.19440416945793, 39.975214808203454], [-75.19438620060323, 39.97521668577702], [-75.19435026987784, 39.97522044197228], [-75.19423227229858, 39.97523277524366], [-75.19316767010415, 39.97534404688133], [-75.19306819929173, 39.97522587002582], [-75.19267610460359, 39.97455682874583], [-75.19251524639479, 39.97427958810763], [-75.19185603211622, 39.97273659554681], [-75.19156997895064, 39.971541539557435], [-75.19117087980821, 39.970174153296554], [-75.19053330321391, 39.969523141662705], [-75.18900330738798, 39.96863994646185], [-75.18706908333387, 39.967747703382884], [-75.18559269656258, 39.96690811198944], [-75.18484922326599, 39.96614149173921], [-75.18435660843396, 39.965550289347135], [-75.18364873769167, 39.96457219229305], [-75.18354554441063, 39.96443732115239], [-75.18347225828724, 39.964341536181614], [-75.18287764460733, 39.96356437420266], [-75.18195851251086, 39.962581540396314], [-75.18107508428989, 39.96162779881066], [-75.1802202153056, 39.960405820580924], [-75.18005107995222, 39.960132068330665], [-75.1799758297001, 39.96001027156133], [-75.17983899226007, 39.95978878931603], [-75.17947873432696, 39.95886090526811], [-75.17929516795142, 39.957880374074975], [-75.1793645489595, 39.957018719111204], [-75.17952364866278, 39.956215676865845], [-75.17956689482352, 39.95612304155624], [-75.17986268049417, 39.95548943951723], [-75.17989950342928, 39.955410561002644], [-75.18018395822202, 39.954801220932175], [-75.18031091629639, 39.95448418419493], [-75.1804479277613, 39.95414203879143], [-75.1810342474327, 39.952999285513314], [-75.18125186576778, 39.95257513323569], [-75.18174172932771, 39.95152048653826], [-75.18177228119845, 39.95145470656806], [-75.18243483863459, 39.95046482009293], [-75.18301374576069, 39.949741926184196], [-75.18367648239071, 39.949233166955395], [-75.18466080412703, 39.948491032151125], [-75.18638192557506, 39.947257678409755], [-75.1867677265549, 39.94698153699119], [-75.18687020015383, 39.94691457163152], [-75.18735320149077, 39.94659947458651], [-75.18792294351213, 39.946227784440076], [-75.18825665527879, 39.94601007383723], [-75.18889164537305, 39.945525822624006], [-75.18939241252559, 39.94514392406182], [-75.18945882417533, 39.94508477771983], [-75.18985287188819, 39.94473383402683], [-75.19022943637438, 39.94439845576369], [-75.19067974179438, 39.943981979434184], [-75.19099136949414, 39.94369375929506], [-75.19105851370779, 39.943636688136955], [-75.19157341030997, 39.94319903601902], [-75.19177005947272, 39.94303188465246], [-75.19253116202371, 39.94259603349538], [-75.19364560318907, 39.942281245825754], [-75.19369737903752, 39.942280125631584], [-75.19386792557843, 39.94227634272461], [-75.19460271708917, 39.942260124464774], [-75.19577620044844, 39.94234286678344], [-75.19692197216327, 39.94267969748615], [-75.19795163481602, 39.94316960721573], [-75.19909313422974, 39.94360535829999], [-75.19996512413074, 39.94387946206713], [-75.20042752555308, 39.94394416737382], [-75.20080678289902, 39.9439972290549], [-75.20161442497796, 39.94396959747437], [-75.2018099014724, 39.94396290300457], [-75.2030545074157, 39.94362262812122], [-75.20329421085049, 39.94408301196562], [-75.20460489022865, 39.94395445297271], [-75.2053264864448, 39.94408111179888], [-75.20548867998357, 39.944112922210635], [-75.20583883243509, 39.944319761683424]]]}}, {"id": "1100", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22124930716777, 39.94827774218], [-75.22123731327486, 39.9481623444683], [-75.21923577195466, 39.948369210737745], [-75.21712233963673, 39.94861189853709], [-75.21656076374511, 39.94815297647089], [-75.21587487161817, 39.9475691465498], [-75.21516235800405, 39.94697939184697], [-75.21647228140037, 39.9460684669736], [-75.21773309661441, 39.94518440362091], [-75.21840785554781, 39.94470311532915], [-75.2190032263168, 39.94428463720904], [-75.21915337365694, 39.94417736868566], [-75.21954803809479, 39.94389540808213], [-75.22022164439426, 39.94341620880577], [-75.22079176874564, 39.9430253906775], [-75.22136817491958, 39.94262798959198], [-75.22206699647136, 39.9421396456706], [-75.22275432475358, 39.94165593328939], [-75.22323926450781, 39.941312821226155], [-75.22342672572017, 39.94117663554376], [-75.22361656639723, 39.94104707837321], [-75.22411470112915, 39.94069239719636], [-75.22548113740314, 39.939726193300785], [-75.22574413892491, 39.93994585631309], [-75.22598204677581, 39.94013938623111], [-75.22621028243675, 39.94033942153977], [-75.22639240902276, 39.94050315877415], [-75.22688622317584, 39.94090891493186], [-75.22733688633339, 39.94129340858265], [-75.22770183808326, 39.94160479346235], [-75.2279150932509, 39.941779548000355], [-75.22816473061533, 39.94198411686646], [-75.2286495761246, 39.94240725523266], [-75.22906061292544, 39.94275510279864], [-75.22955325914707, 39.9431694427212], [-75.2300512126973, 39.943581922008015], [-75.23045841638532, 39.94392442181561], [-75.23094716896786, 39.94433754900314], [-75.23232073989367, 39.94337118576998], [-75.23281885532278, 39.943791942656354], [-75.23322356204032, 39.9441379445611], [-75.23371815372047, 39.944560304836195], [-75.23418573636991, 39.94423881568086], [-75.23447444548366, 39.94402821946588], [-75.23460058718051, 39.94394722294118], [-75.23521991589762, 39.94349567046655], [-75.2347335948175, 39.943088277988174], [-75.23453049110597, 39.94290822712017], [-75.23432126745027, 39.94274206383771], [-75.23382951822354, 39.9423175806767], [-75.23503453869628, 39.941475085310834], [-75.23660687954481, 39.94036655046346], [-75.23676093795004, 39.940263706211184], [-75.2369297568647, 39.940185303009926], [-75.23708098652438, 39.94015516792562], [-75.23719951600373, 39.94015472211588], [-75.23758544765711, 39.940187504362896], [-75.23773600317422, 39.94017559699575], [-75.23787144698669, 39.94014511600913], [-75.23807984787723, 39.9400645345292], [-75.2384519774567, 39.93982941531003], [-75.23873187557751, 39.93973823665251], [-75.2390011854177, 39.93971980516514], [-75.2392059914378, 39.939736453084166], [-75.23943990595043, 39.939820635715826], [-75.23989199360169, 39.94004014682548], [-75.23979706027087, 39.94016615089987], [-75.23963619396534, 39.94030370778195], [-75.23952755920212, 39.94043300312951], [-75.2394110853556, 39.94060915418838], [-75.23939994623606, 39.940745285754275], [-75.23943119117071, 39.940891748735226], [-75.2394627844872, 39.941028816554144], [-75.23949455033176, 39.941161185848685], [-75.23956276907694, 39.941299054383975], [-75.23963150767999, 39.941422825582684], [-75.23973514074508, 39.94159438872307], [-75.2398462657806, 39.941728492006625], [-75.23998687240154, 39.94189145947086], [-75.24007461985713, 39.94199683719933], [-75.24015068012862, 39.942087849549964], [-75.2402525485793, 39.94214180825931], [-75.24036749300917, 39.94217253883913], [-75.24051958489318, 39.94218997428521], [-75.24079019232238, 39.94222411094424], [-75.24095432029354, 39.94224651140097], [-75.24117966619639, 39.94226554836925], [-75.24144809122451, 39.94227612249643], [-75.24158325771072, 39.942255565363865], [-75.24182813123383, 39.942242109411644], [-75.24203585638982, 39.94224194933295], [-75.24229224786727, 39.94224755517845], [-75.24260916018603, 39.94226859033457], [-75.24306682511775, 39.94228329739258], [-75.24317583911444, 39.94230919322389], [-75.24333386277866, 39.94233145774275], [-75.24342183720493, 39.9424031306937], [-75.24353132598557, 39.94244393177221], [-75.24384466821566, 39.942478995021226], [-75.24406984478041, 39.94250272485993], [-75.24441013930479, 39.94255248223813], [-75.24465921076852, 39.9425908406283], [-75.24501327559021, 39.942598573749684], [-75.24522641200451, 39.94261733697132], [-75.24540989616517, 39.94261193821132], [-75.24556268300977, 39.94261057117742], [-75.24574006062808, 39.942605039457135], [-75.24588691642424, 39.9425988411207], [-75.2460515652383, 39.942607136961705], [-75.24619179634958, 39.94261490135258], [-75.24634947668152, 39.94264655874255], [-75.24647087390112, 39.94266801852095], [-75.2465673353056, 39.942703043463474], [-75.24666275716746, 39.94276625930145], [-75.24674493354301, 39.942857402353084], [-75.24682319210106, 39.94297197212895], [-75.24687224727833, 39.94313293092056], [-75.24696507507956, 39.94326663034335], [-75.24702620470116, 39.94340096604385], [-75.24704275162517, 39.94347994137679], [-75.24705201906154, 39.94356008862358], [-75.24710856744471, 39.94368358988301], [-75.24721031694125, 39.943906831522696], [-75.24730418365363, 39.9440123360361], [-75.2473788713993, 39.94414093700209], [-75.2474221717518, 39.94429236359239], [-75.24750958892079, 39.944407133557625], [-75.24763363452908, 39.94452270253974], [-75.24775716387462, 39.94465236694402], [-75.24789866060215, 39.944791829492104], [-75.24809187358932, 39.94493712126483], [-75.24816812079952, 39.9450234315929], [-75.24821367231563, 39.9451137737495], [-75.24823342138605, 39.94524117492926], [-75.24832084114503, 39.94535594427416], [-75.24841453978733, 39.94546614640421], [-75.24856370064882, 39.945563452033795], [-75.24870606571926, 39.9456794192683], [-75.24889571133043, 39.945838739524625], [-75.24907925456405, 39.945997926398356], [-75.24924431232968, 39.94616141402758], [-75.24946065549328, 39.9463424769117], [-75.24958347171865, 39.94640863981163], [-75.24970994612936, 39.946458423006696], [-75.24981078915437, 39.946540564200866], [-75.24991739115657, 39.946632236266126], [-75.24996634576978, 39.94671324817739], [-75.25003580135257, 39.946818220034245], [-75.2501155659711, 39.94697514241003], [-75.25015311418076, 39.94711703878613], [-75.250203219714, 39.94724980335927], [-75.25022855799462, 39.947391432714554], [-75.25027048390123, 39.94758044986304], [-75.25030803393837, 39.94772234621211], [-75.25033999690227, 39.9478500130795], [-75.25036568133079, 39.94798224629221], [-75.25041647814537, 39.94809621492207], [-75.25047441797892, 39.94818212374083], [-75.25055729620446, 39.94825446820339], [-75.2507237456042, 39.948380362950324], [-75.25106355401404, 39.94869343352228], [-75.25119302815983, 39.94882792748606], [-75.25131725976834, 39.94893879214235], [-75.25144201355148, 39.94903556211972], [-75.2515064057238, 39.9491122063701], [-75.25155720529563, 39.949226174492196], [-75.25156791888983, 39.94943332122067], [-75.25151775411985, 39.94963443973513], [-75.25141264130527, 39.949834361407255], [-75.2513099480394, 39.94996850031347], [-75.25124301808243, 39.95012693131531], [-75.25119509934306, 39.9502669655252], [-75.25115293849704, 39.95041652968595], [-75.25115011513842, 39.950576356184946], [-75.251140122282, 39.95068194634544], [-75.25117381734422, 39.95076262523385], [-75.25126755486544, 39.95095512118756], [-75.25134940176488, 39.95105565793863], [-75.25142566000874, 39.95114196519043], [-75.25151669257959, 39.95120037965305], [-75.2515854948273, 39.95128182303045], [-75.25160916664608, 39.951385793918924], [-75.25160951214247, 39.95150101560536], [-75.2516263028047, 39.95162599908733], [-75.25164623288835, 39.95174870205532], [-75.25164870854749, 39.951847509935924], [-75.25163566592619, 39.95198234743004], [-75.25161389171076, 39.95204661028335], [-75.25157728897977, 39.952128108685294], [-75.25151200240568, 39.95224190184744], [-75.25141074473645, 39.95237842196178], [-75.25128250089682, 39.95254256961861], [-75.25118634031719, 39.952665094667005], [-75.25115261702155, 39.9527513588426], [-75.25115204005658, 39.952850100252405], [-75.25117911163078, 39.952944740743874], [-75.25119467647126, 39.95306146974712], [-75.25112555886653, 39.95319633813612], [-75.25104853327463, 39.95329694164222], [-75.25092279501672, 39.953392958358265], [-75.25079060217345, 39.95349823796768], [-75.25064882089806, 39.953615064660426], [-75.25048846211494, 39.953738540278174], [-75.25035252680547, 39.953862548756675], [-75.25013724472771, 39.95406712366699], [-75.25004856825647, 39.954152188258355], [-75.25000433074985, 39.954233519844706], [-75.24995490710279, 39.954331196798385], [-75.24986356467849, 39.95440562372502], [-75.24979909557791, 39.95449709466217], [-75.24975839872643, 39.95460671876249], [-75.24976436970032, 39.95473499413899], [-75.24975027207398, 39.954827563746576], [-75.24969589356157, 39.954976861213474], [-75.24961348979413, 39.95518197961458], [-75.24957679770756, 39.95526582619968], [-75.24949413536787, 39.95535337487923], [-75.24939026681385, 39.95539460893448], [-75.24925782712917, 39.955423464869384], [-75.24918200807758, 39.95549117492122], [-75.24914391603215, 39.955571464385656], [-75.24912240054589, 39.95565799236466], [-75.24913555778662, 39.955757035020625], [-75.24917484069324, 39.95585194221137], [-75.24921760577283, 39.955935170061096], [-75.249262472997, 39.95604430846653], [-75.24927479808866, 39.9561245202664], [-75.24923470470705, 39.956217698966455], [-75.24908009782307, 39.95635070362586], [-75.24898862439304, 39.95642865265522], [-75.24895786091484, 39.95651733149055], [-75.24892623370523, 39.95662950375507], [-75.24894786001377, 39.956747541056934], [-75.24903571026282, 39.95693403235316], [-75.24919470449287, 39.95701391583521], [-75.2493149211625, 39.957068264893934], [-75.24940155282854, 39.9571218826933], [-75.24951881118939, 39.95720438788988], [-75.24963861043483, 39.957322206816485], [-75.2497783786495, 39.95742635758531], [-75.25003729980597, 39.95765537363726], [-75.25017891473904, 39.95779248363113], [-75.2502431398107, 39.957873825253266], [-75.2503601582753, 39.9580151031448], [-75.2504632093774, 39.95812080551819], [-75.250559897209, 39.958233421215546], [-75.25066634565529, 39.958329792866124], [-75.25073607349691, 39.958427715164106], [-75.25079341757636, 39.95853006991914], [-75.25083981693356, 39.95863924008346], [-75.25087622216772, 39.95872938164168], [-75.25088244165455, 39.958809462014514], [-75.2508927803255, 39.95894371046906], [-75.2508836511511, 39.95902580808698], [-75.25085035296529, 39.95910032357115], [-75.25075355116466, 39.95915699820532], [-75.25060686008487, 39.959240799539906], [-75.25045423703611, 39.959319769187076], [-75.25029245338119, 39.95939853994901], [-75.25008156364572, 39.95948329434663], [-75.24982614303097, 39.959574131817156], [-75.24965258022209, 39.95964088798368], [-75.24955324089647, 39.959683397724646], [-75.24944370354191, 39.95975390054682], [-75.24931829467371, 39.95984051663293], [-75.24921443129661, 39.95992289904946], [-75.24912329915065, 39.9599914502743], [-75.24897363839278, 39.960072835985805], [-75.24883705485743, 39.96013099163223], [-75.24869087939777, 39.960200695935995], [-75.24854775718127, 39.960270463926676], [-75.24845984910638, 39.96033438447173], [-75.2483846421231, 39.96042679733419], [-75.24833547117294, 39.96051742537408], [-75.24828272873319, 39.9606220832403], [-75.24819945617348, 39.960726075355595], [-75.24805906374475, 39.9608876051947], [-75.24797552974607, 39.96099864622252], [-75.24792339202934, 39.96108685872077], [-75.24789236664466, 39.96118258548654], [-75.24788015173226, 39.961281853418875], [-75.24787274447924, 39.96134204568691], [-75.24786981508595, 39.96146307324105], [-75.24784133629989, 39.9616141106335], [-75.24781572297843, 39.961728766312795], [-75.24775849990769, 39.96187212114347], [-75.24770876340214, 39.9619780210366], [-75.2477027688713, 39.96205783526593], [-75.24774498724732, 39.96219748167495], [-75.24777773218919, 39.962304003738346], [-75.24775387405607, 39.96245396699673], [-75.24767327404014, 39.96281395179642], [-75.24763272940719, 39.96296390880171], [-75.24748944937399, 39.96312067191104], [-75.24740935477807, 39.963221205473246], [-75.24740541696104, 39.963328103309415], [-75.24743571412044, 39.96341811366531], [-75.24748049810553, 39.96352960067216], [-75.24756505959537, 39.963639605442836], [-75.24744737459446, 39.964391926196676], [-75.247464351418, 39.96448137930475], [-75.24716915793863, 39.96592870104606], [-75.24610900459369, 39.96579829700107], [-75.24579194506076, 39.967319375064456], [-75.24547391384, 39.96883780580013], [-75.24441601399035, 39.968707975928204], [-75.2434287755889, 39.968584480317844], [-75.24275547517408, 39.96850182540956], [-75.24212447373782, 39.96842525010824], [-75.24145297711482, 39.96834167726721], [-75.24046481307757, 39.96821893667362], [-75.2394792263291, 39.968098598180006], [-75.23913209514878, 39.969754754208566], [-75.23913452825445, 39.969894156939084], [-75.23904602094366, 39.96996385280201], [-75.23828930295882, 39.970049354997684], [-75.2374561581777, 39.970142539223346], [-75.23729344550368, 39.96926116010406], [-75.23724127600507, 39.96897856508314], [-75.23728329128427, 39.96890011837256], [-75.23750271463467, 39.96785548024659], [-75.2378184730562, 39.96633140931446], [-75.2371614548503, 39.96625200566942], [-75.23650507401216, 39.966168230655015], [-75.23584294651286, 39.96608663788389], [-75.23485508281934, 39.9659636960506], [-75.23390423808061, 39.96584799773842], [-75.23406328017319, 39.965086532123166], [-75.23422456767936, 39.9643261508282], [-75.23437635415527, 39.9635658070285], [-75.23445932939023, 39.963200941933835], [-75.23454018565789, 39.96280875270846], [-75.23381051701594, 39.962713922148495], [-75.23322361067352, 39.9626449768465], [-75.23252865584055, 39.96255878324145], [-75.23111700353813, 39.96238527615233], [-75.23055280293089, 39.96231103746482], [-75.22997789457627, 39.96224147031967], [-75.2294393887058, 39.96217231617399], [-75.22890005165743, 39.962108580531364], [-75.22831950768749, 39.96203465368984], [-75.22864645665969, 39.96046483588109], [-75.22797617665447, 39.96037854276966], [-75.2274440501019, 39.96031227707355], [-75.22685117094453, 39.96024000475525], [-75.22620947880866, 39.96016033418035], [-75.22486806570537, 39.960006758007836], [-75.22477258922517, 39.9599762940573], [-75.22421322127714, 39.95990071720949], [-75.22388433780017, 39.95986316309301], [-75.22290106608362, 39.95974637621446], [-75.22239684004771, 39.95968156550928], [-75.22190949565909, 39.95962711754266], [-75.22092091673352, 39.959506370957484], [-75.22108669773192, 39.95873296666356], [-75.2212452105831, 39.95798512282026], [-75.22139876232934, 39.95722829373262], [-75.22149388168697, 39.956831736809185], [-75.22156022486105, 39.956462883842796], [-75.2216873926178, 39.95585536230671], [-75.2217982925147, 39.955320872144064], [-75.22192358674249, 39.954724257174874], [-75.22203767016683, 39.9541745245253], [-75.2220575849949, 39.95410396374315], [-75.22219283966916, 39.95341499671031], [-75.2222800420232, 39.95304100157719], [-75.22243591661017, 39.95228185757551], [-75.22258996908286, 39.951520619003304], [-75.22061693130486, 39.951276551263554], [-75.22077646819018, 39.950514077833525], [-75.22093688238962, 39.94972740202175], [-75.22108786424026, 39.94902773485284], [-75.22124930716777, 39.94827774218]]]}}, {"id": "1130", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20184462772525, 39.91925623705986], [-75.20194457510891, 39.91855091390986], [-75.20246386163328, 39.917444533142344], [-75.20359825025908, 39.91561596579895], [-75.2041088348333, 39.91449523508961], [-75.20470414463513, 39.91331977872765], [-75.20542266692576, 39.912288564423946], [-75.20635832065332, 39.91134706809731], [-75.207216129998, 39.911012324931804], [-75.20848050275646, 39.910615834252674], [-75.2094913839666, 39.9106099381418], [-75.2122790037696, 39.9107565830743], [-75.2135613898842, 39.91061515098194], [-75.21464580619211, 39.910115556509204], [-75.2153079210576, 39.909606617026206], [-75.21568364421469, 39.90889323104565], [-75.21569646410822, 39.90756333700614], [-75.21545761289784, 39.905591091598325], [-75.2151114782057, 39.903786283051396], [-75.21468644114745, 39.901880671807056], [-75.21405201147564, 39.90066381664515], [-75.2135832514153, 39.89993175325022], [-75.2121105527512, 39.898285960912], [-75.21157229080009, 39.89783622404864], [-75.21063179238031, 39.897050385553555], [-75.20953791229009, 39.89633275566915], [-75.20811681144355, 39.8955229525527], [-75.20643188168988, 39.89489123824661], [-75.2046735612974, 39.894257866007955], [-75.20220010194497, 39.893834988846315], [-75.20040917979276, 39.89358290207157], [-75.19791884605132, 39.89287653536392], [-75.19734849868537, 39.892554200508876], [-75.19664161307446, 39.892154693323114], [-75.195377006374, 39.890852930227844], [-75.1950055405623, 39.88900502992013], [-75.1947442202182, 39.88715958381745], [-75.19435105676118, 39.88417912439962], [-75.19423258569884, 39.881954784067574], [-75.19372794187674, 39.88001878022436], [-75.19324988488377, 39.878184668892864], [-75.19430620973216, 39.877583978488495], [-75.19885918020827, 39.87531713095636], [-75.20579217318934, 39.871571579248375], [-75.21198487997897, 39.86747284480536], [-75.21603814471179, 39.87111631570757], [-75.21578921822109, 39.87504224093411], [-75.21572726805299, 39.876019193741996], [-75.2157225921386, 39.87609686569248], [-75.21590037854007, 39.876060781394166], [-75.21604782206254, 39.876025894510676], [-75.21620413112939, 39.87599218827433], [-75.21636007782286, 39.875956244738106], [-75.21670070441829, 39.87587791040923], [-75.2168458904517, 39.87584442862628], [-75.21701387381843, 39.875808276381136], [-75.21751660232262, 39.87574670542258], [-75.21770149581347, 39.87572104235302], [-75.21785992648596, 39.87570214368064], [-75.21803436577785, 39.87568407065159], [-75.21832489893065, 39.875679545594956], [-75.21885677116845, 39.87567303314916], [-75.21924109217277, 39.87559284811976], [-75.21944440642542, 39.87554510553339], [-75.21963503168246, 39.87549816989502], [-75.2197372374579, 39.87547755582184], [-75.22086539016242, 39.87557153428044], [-75.22104101540015, 39.87558704603196], [-75.22126421291121, 39.875606141876716], [-75.22208388458552, 39.87567562076239], [-75.22269919578615, 39.875731361270006], [-75.22287056878407, 39.87575196887403], [-75.22311054008301, 39.875780408591524], [-75.22376593968741, 39.87585913878545], [-75.22465413819802, 39.87602438054643], [-75.22485767419093, 39.876061344325464], [-75.22502858924472, 39.87609467239676], [-75.22595270413426, 39.87626793580584], [-75.22686666491282, 39.87640468847385], [-75.2270790468691, 39.877121947231444], [-75.22815917458351, 39.88003256977026], [-75.22842306962197, 39.880662016182356], [-75.22860358752109, 39.881069006359276], [-75.2290332495557, 39.88134926578361], [-75.22954380194118, 39.88186455743175], [-75.22991293925438, 39.88241274077748], [-75.23041151898329, 39.883461829350814], [-75.23066845703238, 39.88389606718639], [-75.2322284423173, 39.88709009516002], [-75.2327809999355, 39.888139499933715], [-75.23324776242973, 39.888924237548636], [-75.23342721098632, 39.889179233455955], [-75.2337994542322, 39.88975864539145], [-75.23386570456779, 39.889868664508995], [-75.23389537835244, 39.88992325950736], [-75.23433288922183, 39.890728177407674], [-75.23517086911598, 39.892116369658126], [-75.23529169571022, 39.8923165253384], [-75.23541859937087, 39.89252674407812], [-75.23553237788855, 39.89271522200667], [-75.23580089524816, 39.893160027181764], [-75.23603700188254, 39.893564634635204], [-75.23667701289826, 39.8946011554303], [-75.23666598511215, 39.89476933490932], [-75.23689467576155, 39.89515973212516], [-75.23732505741685, 39.895827078972], [-75.23759565723081, 39.896336509301584], [-75.2379796426334, 39.89719487902062], [-75.23843650460832, 39.89853518883194], [-75.23853353425918, 39.89881426984991], [-75.23860219673388, 39.89901196227496], [-75.23882036732545, 39.899758714044], [-75.2389922133673, 39.900256656235065], [-75.23932225775096, 39.9013697638066], [-75.23983320878347, 39.90317834236422], [-75.2400959560168, 39.90399314262044], [-75.24014732197246, 39.90415242872423], [-75.24113345091519, 39.9072102906146], [-75.2413341826973, 39.907819007159155], [-75.24145455350472, 39.908071317402964], [-75.24168770469325, 39.90846228037278], [-75.24188534695105, 39.90904321628965], [-75.24236432839977, 39.91046957260359], [-75.24266035338107, 39.911384475824626], [-75.24302202420598, 39.912502230677866], [-75.24310411602268, 39.912751582693325], [-75.243227060544, 39.9131134123101], [-75.24361298418978, 39.91379130849596], [-75.24384947138104, 39.91409082898938], [-75.24466378165084, 39.915111444704294], [-75.24493532437597, 39.91545166166367], [-75.24530742066938, 39.91591785660964], [-75.24579391484275, 39.916542514305725], [-75.24630867702935, 39.91717730509635], [-75.24680156527874, 39.91691935941637], [-75.24693674751636, 39.91687235782663], [-75.24696194160919, 39.91692795126065], [-75.24702074539826, 39.916980371695004], [-75.24710353047506, 39.91702894488325], [-75.24717205571314, 39.91707939254227], [-75.24720597939441, 39.91716011593969], [-75.24717925618677, 39.91722928833567], [-75.24723942718408, 39.91740362743354], [-75.24730486773664, 39.917616672815065], [-75.24734745909676, 39.917786895310684], [-75.2473581560496, 39.91799404346665], [-75.24734817198272, 39.91843116718604], [-75.24733290081883, 39.91868007084684], [-75.24733416041266, 39.91881177205084], [-75.24739079615391, 39.91901521970489], [-75.24749740200332, 39.91927148751148], [-75.24758426940232, 39.91940035390213], [-75.24762266200263, 39.9195187550527], [-75.24762323035877, 39.919669250266246], [-75.24759627457499, 39.91990379300391], [-75.24758112878699, 39.91998340569149], [-75.2475278111457, 39.92010451120326], [-75.24748739074602, 39.92020708455972], [-75.24747679000083, 39.92032912234339], [-75.24746601865583, 39.92045585687965], [-75.24746117528564, 39.920587423072966], [-75.24746853615764, 39.92071925742699], [-75.24746835034084, 39.9209731926147], [-75.24746078474014, 39.92134453360512], [-75.24748558985473, 39.92150026096388], [-75.24751507355418, 39.921672165022855], [-75.24750607298624, 39.92177345815112], [-75.24747157845458, 39.9218808649304], [-75.24739212019405, 39.92204842448603], [-75.24728997880783, 39.922168462524084], [-75.24716359846583, 39.92228327003526], [-75.24706859910215, 39.92237524650567], [-75.24693594263907, 39.92249461996705], [-75.24664178298741, 39.92277035402662], [-75.24652133215531, 39.92288999080537], [-75.24636253132851, 39.9230558183447], [-75.2462666632187, 39.92317129023258], [-75.24618840967676, 39.92330595669068], [-75.24615880781613, 39.92344638863182], [-75.24614054300106, 39.92361057952106], [-75.24613379290614, 39.92379383456595], [-75.24612963902429, 39.92390660579278], [-75.24609531661189, 39.92400931460536], [-75.2460726810459, 39.924126383644335], [-75.24603191218198, 39.924238355335795], [-75.24599079341972, 39.924359726638386], [-75.24594478254895, 39.92444807153349], [-75.24586652923863, 39.92458273782064], [-75.24579506940592, 39.924698741495526], [-75.2457263137798, 39.9248242096502], [-75.24568010915989, 39.92488371305061], [-75.24563654577109, 39.92493981520691], [-75.24555322629331, 39.92504615517457], [-75.24543886966802, 39.92516592584399], [-75.24526474045014, 39.925416061005436], [-75.24519868862885, 39.92555099520395], [-75.24512739974729, 39.92566230086199], [-75.24505018240241, 39.925768772892795], [-75.2449924836029, 39.9258427543882], [-75.24486834379816, 39.92589647437382], [-75.24476234202136, 39.92595529277384], [-75.24462616977375, 39.92600404644966], [-75.2445201676861, 39.92606286282527], [-75.24440143811377, 39.926135510561735], [-75.24433607563414, 39.926251646642434], [-75.24430174936177, 39.926354354014606], [-75.24433081231221, 39.926477256518716], [-75.24441279147882, 39.92657310063879], [-75.24450767024295, 39.926650415607334], [-75.2445770981056, 39.92675538993084], [-75.24459769989812, 39.926859295658076], [-75.24458012543246, 39.92700469324823], [-75.24457982113523, 39.92717868275433], [-75.24455177072839, 39.92727682413468], [-75.24449809559326, 39.927407325222624], [-75.24442645605995, 39.927528027413075], [-75.24434226541503, 39.92765786168888], [-75.24426993485572, 39.92779735782447], [-75.24419933380707, 39.92788986798446], [-75.24412159279538, 39.92801043578041], [-75.2440553641325, 39.928150067838665], [-75.24400161995722, 39.92836521281857], [-75.24398525652, 39.928477718131035], [-75.24396681187515, 39.928646607159685], [-75.24396702565667, 39.92880650206786], [-75.2439716494672, 39.92917810779471], [-75.2439670125304, 39.9294695678305], [-75.24396806898285, 39.92960333793567], [-75.24398241683463, 39.929714441188494], [-75.24400998780085, 39.92979498609446], [-75.24409928849657, 39.92985807166599], [-75.24418927875121, 39.9299023622003], [-75.24427857744878, 39.929965446680804], [-75.2443551495057, 39.930042360769605], [-75.24440575074128, 39.930161032421815], [-75.24442853925618, 39.93028850094924], [-75.2443816574547, 39.930400338625375], [-75.2442746088932, 39.93048734935878], [-75.24413128364208, 39.930564160954866], [-75.24395081763902, 39.930654270316616], [-75.24381359589472, 39.930731214908114], [-75.24369416667311, 39.93082265774716], [-75.24363594233557, 39.93091073404509], [-75.24360528992457, 39.93107935804132], [-75.2435582340958, 39.931195894802094], [-75.2435164136411, 39.931336059191445], [-75.24347511636647, 39.931462127252175], [-75.24343450979335, 39.931569398560214], [-75.24341831681822, 39.93167720346368], [-75.24340160266087, 39.9317991074292], [-75.24334303285262, 39.93189658152115], [-75.24327956923035, 39.93196103173032], [-75.24318593632059, 39.932015415176366], [-75.24310468404244, 39.93206536780084], [-75.24304951001912, 39.93215351141844], [-75.24293513826386, 39.93227327780365], [-75.24284448785608, 39.93241237541506], [-75.24272227980886, 39.932578998543015], [-75.24262465866519, 39.93274145502357], [-75.24252946397212, 39.93283812799], [-75.24245309882642, 39.93292110483453], [-75.24235093355396, 39.93304113848015], [-75.24228625556222, 39.93313847852701], [-75.24223988835199, 39.93323621983896], [-75.24214722451259, 39.93334705561295], [-75.24201270073718, 39.93343346267999], [-75.24188906490586, 39.933473083052256], [-75.24171712157997, 39.93349753900689], [-75.24155773164858, 39.93351286200569], [-75.24139782008557, 39.93354228383802], [-75.24118890620518, 39.93357533488688], [-75.24097388764444, 39.93360825200431], [-75.24075973742913, 39.93361767448273], [-75.24051645624813, 39.93358883722877], [-75.24024404448275, 39.93352174185772], [-75.24016114639225, 39.933493624967426], [-75.23992403928501, 39.93355793659742], [-75.23952717814703, 39.933567607673154], [-75.2392009596448, 39.93345696358626], [-75.23893908361332, 39.93327485944053], [-75.23873923668756, 39.93312452331611], [-75.23849767581348, 39.933034089558596], [-75.23823787470704, 39.93300669392476], [-75.23800082407834, 39.93301104522161], [-75.2377768832943, 39.93308520126836], [-75.23683559966594, 39.93375789463036], [-75.23664759632881, 39.933906180675955], [-75.23591865246344, 39.934442503642835], [-75.23560529289891, 39.93455500141549], [-75.23537389905631, 39.93461682699806], [-75.2351596404366, 39.93464253664272], [-75.23488358253603, 39.93463040300634], [-75.23453134294022, 39.93459411345274], [-75.23429649319554, 39.93448372763597], [-75.23414109027634, 39.93441342064169], [-75.23386210517593, 39.9343461162973], [-75.23369487515502, 39.934324803049165], [-75.23357748183564, 39.93432944696273], [-75.23341607424994, 39.93435151247633], [-75.23328500124813, 39.93437717438364], [-75.23316680296028, 39.934403457459595], [-75.23304944256505, 39.934443141300974], [-75.232724620188, 39.93463860837166], [-75.23212899936999, 39.93413698521188], [-75.23195870779912, 39.933986075836685], [-75.23298133789591, 39.93327394201144], [-75.23256727024936, 39.93291386321791], [-75.233575969569, 39.93219905996512], [-75.2331577985903, 39.931842426891116], [-75.23277036958953, 39.93151838657586], [-75.2323338812178, 39.93109614132798], [-75.2320352416839, 39.930870618194646], [-75.23179925549334, 39.93073781487231], [-75.23136337528365, 39.93047928654213], [-75.2307028980303, 39.930072132603634], [-75.2301046471848, 39.929712464087395], [-75.22993831520918, 39.92961246541906], [-75.22922294797267, 39.9291732561065], [-75.2275979625321, 39.93030940778205], [-75.22541026665041, 39.93184045411882], [-75.2245939121745, 39.93241174850837], [-75.22411929621914, 39.932750305177024], [-75.22372599637802, 39.93303318014364], [-75.2232199760324, 39.93339056163966], [-75.2224836359392, 39.933905953349196], [-75.22173280255822, 39.93443158438589], [-75.22054734853859, 39.933451623766636], [-75.21911609056419, 39.932236395979025], [-75.21872026947263, 39.931911546747514], [-75.21773191977564, 39.931075817393875], [-75.21741503596247, 39.93084696636643], [-75.21712829573877, 39.93073307845829], [-75.21647530459322, 39.93045982280271], [-75.21575088067966, 39.93016313638106], [-75.21492199083451, 39.92983925119834], [-75.21422912275716, 39.929560220107085], [-75.21391923784077, 39.92941299856718], [-75.21347401016706, 39.929327276329566], [-75.21193246740769, 39.92930455022506], [-75.21074355424716, 39.929267201457094], [-75.21116053746807, 39.928406227444746], [-75.21157630482006, 39.92760883240147], [-75.21214722121682, 39.92634789377554], [-75.21240349026309, 39.92539130720084], [-75.21255801411132, 39.92420605590866], [-75.21236773139668, 39.92339524882293], [-75.21195444836577, 39.92265025678862], [-75.21111670313407, 39.92195247005715], [-75.20994136801055, 39.92119059609576], [-75.20888316774469, 39.92098318900874], [-75.20771109345405, 39.920872302717065], [-75.20647864311627, 39.920901574082286], [-75.20524090114905, 39.92107222205077], [-75.20375348198348, 39.921039201492874], [-75.20262167546693, 39.920589535899126], [-75.20203954057037, 39.919939811356116], [-75.2019945286076, 39.919781946952625], [-75.20184462772525, 39.91925623705986]]]}}, {"id": "1200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23750271463467, 39.96785548024659], [-75.2378184730562, 39.96633140931446], [-75.2371614548503, 39.96625200566942], [-75.23650507401216, 39.966168230655015], [-75.23584294651286, 39.96608663788389], [-75.23485508281934, 39.9659636960506], [-75.23390423808061, 39.96584799773842], [-75.23406328017319, 39.965086532123166], [-75.23422456767936, 39.9643261508282], [-75.23437635415527, 39.9635658070285], [-75.23445932939023, 39.963200941933835], [-75.23454018565789, 39.96280875270846], [-75.23381051701594, 39.962713922148495], [-75.23322361067352, 39.9626449768465], [-75.23252865584055, 39.96255878324145], [-75.23111700353813, 39.96238527615233], [-75.23055280293089, 39.96231103746482], [-75.22997789457627, 39.96224147031967], [-75.2294393887058, 39.96217231617399], [-75.22890005165743, 39.962108580531364], [-75.22831950768749, 39.96203465368984], [-75.22864645665969, 39.96046483588109], [-75.22926343436752, 39.96053660207573], [-75.22978570204727, 39.960600373984306], [-75.23024805594517, 39.96065731896809], [-75.23080297426164, 39.960723310653556], [-75.23187474073868, 39.9608510698038], [-75.23285803081075, 39.96097701200854], [-75.23355391560953, 39.961067005843844], [-75.23414213254877, 39.96113719213085], [-75.23487010378587, 39.96123223060958], [-75.23680903840634, 39.96147203352687], [-75.2369715545159, 39.960699401826325], [-75.23712788649429, 39.959955913231376], [-75.23910147880365, 39.96019897523339], [-75.23976436878566, 39.960281947392765], [-75.24033973694776, 39.96035243797857], [-75.24107490739186, 39.96044494835528], [-75.2423132184722, 39.96059567517504], [-75.24305492137285, 39.96068697665624], [-75.2450305441106, 39.9609347346636], [-75.24707752018377, 39.961184848389145], [-75.24788015173226, 39.961281853418875], [-75.24787274447924, 39.96134204568691], [-75.24786981508595, 39.96146307324105], [-75.24784133629989, 39.9616141106335], [-75.24781572297843, 39.961728766312795], [-75.24775849990769, 39.96187212114347], [-75.24770876340214, 39.9619780210366], [-75.2477027688713, 39.96205783526593], [-75.24774498724732, 39.96219748167495], [-75.24777773218919, 39.962304003738346], [-75.24775387405607, 39.96245396699673], [-75.24767327404014, 39.96281395179642], [-75.24763272940719, 39.96296390880171], [-75.24748944937399, 39.96312067191104], [-75.24740935477807, 39.963221205473246], [-75.24740541696104, 39.963328103309415], [-75.24743571412044, 39.96341811366531], [-75.24748049810553, 39.96352960067216], [-75.24756505959537, 39.963639605442836], [-75.24744737459446, 39.964391926196676], [-75.247464351418, 39.96448137930475], [-75.24716915793863, 39.96592870104606], [-75.24610900459369, 39.96579829700107], [-75.24579194506076, 39.967319375064456], [-75.24547391384, 39.96883780580013], [-75.24441601399035, 39.968707975928204], [-75.2434287755889, 39.968584480317844], [-75.24275547517408, 39.96850182540956], [-75.24212447373782, 39.96842525010824], [-75.24145297711482, 39.96834167726721], [-75.24046481307757, 39.96821893667362], [-75.2394792263291, 39.968098598180006], [-75.23913209514878, 39.969754754208566], [-75.23913452825445, 39.969894156939084], [-75.23904602094366, 39.96996385280201], [-75.23828930295882, 39.970049354997684], [-75.2374561581777, 39.970142539223346], [-75.23729344550368, 39.96926116010406], [-75.23724127600507, 39.96897856508314], [-75.23728329128427, 39.96890011837256], [-75.23750271463467, 39.96785548024659]]]}}, {"id": "1230", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.2450305441106, 39.9609347346636], [-75.24305492137285, 39.96068697665624], [-75.2423132184722, 39.96059567517504], [-75.24107490739186, 39.96044494835528], [-75.24033973694776, 39.96035243797857], [-75.23976436878566, 39.960281947392765], [-75.23910147880365, 39.96019897523339], [-75.23925866653717, 39.95943977614177], [-75.23941958507163, 39.95867732936648], [-75.23957523039626, 39.95794304653689], [-75.23965932453713, 39.9575352606096], [-75.23974064044614, 39.95712975913595], [-75.23982459012271, 39.95671987154776], [-75.23991007492342, 39.95631413324379], [-75.24000860919124, 39.9558765464588], [-75.24002497972941, 39.95576968906917], [-75.24013867742423, 39.95525346726105], [-75.24025201420879, 39.954726082272785], [-75.24034677116326, 39.95426461469576], [-75.24045055471251, 39.953734543746975], [-75.24055628665906, 39.95320676603648], [-75.24065268580777, 39.9527448765007], [-75.24077833716721, 39.95219409771834], [-75.2408870413323, 39.95164878569733], [-75.24092838668925, 39.95145926411795], [-75.2409791089452, 39.95119910789798], [-75.24109450326601, 39.950692270332034], [-75.24306881403976, 39.950927192723235], [-75.2450360575381, 39.951182802514985], [-75.247009840884, 39.951425676409585], [-75.2479150844622, 39.951536880554066], [-75.24905672667398, 39.951680580210244], [-75.25163566592619, 39.95198234743004], [-75.25161389171076, 39.95204661028335], [-75.25157728897977, 39.952128108685294], [-75.25151200240568, 39.95224190184744], [-75.25141074473645, 39.95237842196178], [-75.25128250089682, 39.95254256961861], [-75.25118634031719, 39.952665094667005], [-75.25115261702155, 39.9527513588426], [-75.25115204005658, 39.952850100252405], [-75.25117911163078, 39.952944740743874], [-75.25119467647126, 39.95306146974712], [-75.25112555886653, 39.95319633813612], [-75.25104853327463, 39.95329694164222], [-75.25092279501672, 39.953392958358265], [-75.25079060217345, 39.95349823796768], [-75.25064882089806, 39.953615064660426], [-75.25048846211494, 39.953738540278174], [-75.25035252680547, 39.953862548756675], [-75.25013724472771, 39.95406712366699], [-75.25004856825647, 39.954152188258355], [-75.25000433074985, 39.954233519844706], [-75.24995490710279, 39.954331196798385], [-75.24986356467849, 39.95440562372502], [-75.24979909557791, 39.95449709466217], [-75.24975839872643, 39.95460671876249], [-75.24976436970032, 39.95473499413899], [-75.24975027207398, 39.954827563746576], [-75.24969589356157, 39.954976861213474], [-75.24961348979413, 39.95518197961458], [-75.24957679770756, 39.95526582619968], [-75.24949413536787, 39.95535337487923], [-75.24939026681385, 39.95539460893448], [-75.24925782712917, 39.955423464869384], [-75.24918200807758, 39.95549117492122], [-75.24914391603215, 39.955571464385656], [-75.24912240054589, 39.95565799236466], [-75.24913555778662, 39.955757035020625], [-75.24917484069324, 39.95585194221137], [-75.24921760577283, 39.955935170061096], [-75.249262472997, 39.95604430846653], [-75.24927479808866, 39.9561245202664], [-75.24923470470705, 39.956217698966455], [-75.24908009782307, 39.95635070362586], [-75.24898862439304, 39.95642865265522], [-75.24895786091484, 39.95651733149055], [-75.24892623370523, 39.95662950375507], [-75.24894786001377, 39.956747541056934], [-75.24903571026282, 39.95693403235316], [-75.24919470449287, 39.95701391583521], [-75.2493149211625, 39.957068264893934], [-75.24940155282854, 39.9571218826933], [-75.24951881118939, 39.95720438788988], [-75.24963861043483, 39.957322206816485], [-75.2497783786495, 39.95742635758531], [-75.25003729980597, 39.95765537363726], [-75.25017891473904, 39.95779248363113], [-75.2502431398107, 39.957873825253266], [-75.2503601582753, 39.9580151031448], [-75.2504632093774, 39.95812080551819], [-75.250559897209, 39.958233421215546], [-75.25066634565529, 39.958329792866124], [-75.25073607349691, 39.958427715164106], [-75.25079341757636, 39.95853006991914], [-75.25083981693356, 39.95863924008346], [-75.25087622216772, 39.95872938164168], [-75.25088244165455, 39.958809462014514], [-75.2508927803255, 39.95894371046906], [-75.2508836511511, 39.95902580808698], [-75.25085035296529, 39.95910032357115], [-75.25075355116466, 39.95915699820532], [-75.25060686008487, 39.959240799539906], [-75.25045423703611, 39.959319769187076], [-75.25029245338119, 39.95939853994901], [-75.25008156364572, 39.95948329434663], [-75.24982614303097, 39.959574131817156], [-75.24965258022209, 39.95964088798368], [-75.24955324089647, 39.959683397724646], [-75.24944370354191, 39.95975390054682], [-75.24931829467371, 39.95984051663293], [-75.24921443129661, 39.95992289904946], [-75.24912329915065, 39.9599914502743], [-75.24897363839278, 39.960072835985805], [-75.24883705485743, 39.96013099163223], [-75.24869087939777, 39.960200695935995], [-75.24854775718127, 39.960270463926676], [-75.24845984910638, 39.96033438447173], [-75.2483846421231, 39.96042679733419], [-75.24833547117294, 39.96051742537408], [-75.24828272873319, 39.9606220832403], [-75.24819945617348, 39.960726075355595], [-75.24805906374475, 39.9608876051947], [-75.24797552974607, 39.96099864622252], [-75.24792339202934, 39.96108685872077], [-75.24789236664466, 39.96118258548654], [-75.24788015173226, 39.961281853418875], [-75.24707752018377, 39.961184848389145], [-75.2450305441106, 39.9609347346636]]]}}, {"id": "1250", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23212899936999, 39.93413698521188], [-75.23195870779912, 39.933986075836685], [-75.23298133789591, 39.93327394201144], [-75.23256727024936, 39.93291386321791], [-75.233575969569, 39.93219905996512], [-75.2331577985903, 39.931842426891116], [-75.23277036958953, 39.93151838657586], [-75.2323338812178, 39.93109614132798], [-75.2320352416839, 39.930870618194646], [-75.23179925549334, 39.93073781487231], [-75.23136337528365, 39.93047928654213], [-75.2307028980303, 39.930072132603634], [-75.2301046471848, 39.929712464087395], [-75.22993831520918, 39.92961246541906], [-75.22922294797267, 39.9291732561065], [-75.23065538894247, 39.92815909675535], [-75.23078482130573, 39.92805966085603], [-75.2311391644917, 39.92779373348052], [-75.23171416596094, 39.92740342826188], [-75.23217982966749, 39.92708608624951], [-75.23310079510505, 39.92645314258712], [-75.23370959255938, 39.92602333023891], [-75.23432826391235, 39.92557419424493], [-75.2347728286137, 39.92526555330249], [-75.23513456656124, 39.92501404370246], [-75.23556761530502, 39.924705161692295], [-75.23623036495619, 39.924236356905006], [-75.23688443591094, 39.92376183517927], [-75.23740333296807, 39.92340134227495], [-75.23787063854797, 39.92307969673384], [-75.23840062295413, 39.922704513862946], [-75.23918469074945, 39.9221591409605], [-75.24004602105052, 39.92154812743355], [-75.24141606766713, 39.920581080752065], [-75.24298672789187, 39.91947764462562], [-75.24384258404814, 39.91887222098998], [-75.24436630386, 39.918516744644144], [-75.24508461804605, 39.918024650790926], [-75.24569206743418, 39.91761649681568], [-75.24630867702935, 39.91717730509635], [-75.24680156527874, 39.91691935941637], [-75.24693674751636, 39.91687235782663], [-75.24696194160919, 39.91692795126065], [-75.24702074539826, 39.916980371695004], [-75.24710353047506, 39.91702894488325], [-75.24717205571314, 39.91707939254227], [-75.24720597939441, 39.91716011593969], [-75.24717925618677, 39.91722928833567], [-75.24723942718408, 39.91740362743354], [-75.24730486773664, 39.917616672815065], [-75.24734745909676, 39.917786895310684], [-75.2473581560496, 39.91799404346665], [-75.24734817198272, 39.91843116718604], [-75.24733290081883, 39.91868007084684], [-75.24733416041266, 39.91881177205084], [-75.24739079615391, 39.91901521970489], [-75.24749740200332, 39.91927148751148], [-75.24758426940232, 39.91940035390213], [-75.24762266200263, 39.9195187550527], [-75.24762323035877, 39.919669250266246], [-75.24759627457499, 39.91990379300391], [-75.24758112878699, 39.91998340569149], [-75.2475278111457, 39.92010451120326], [-75.24748739074602, 39.92020708455972], [-75.24747679000083, 39.92032912234339], [-75.24746601865583, 39.92045585687965], [-75.24746117528564, 39.920587423072966], [-75.24746853615764, 39.92071925742699], [-75.24746835034084, 39.9209731926147], [-75.24746078474014, 39.92134453360512], [-75.24748558985473, 39.92150026096388], [-75.24751507355418, 39.921672165022855], [-75.24750607298624, 39.92177345815112], [-75.24747157845458, 39.9218808649304], [-75.24739212019405, 39.92204842448603], [-75.24728997880783, 39.922168462524084], [-75.24716359846583, 39.92228327003526], [-75.24706859910215, 39.92237524650567], [-75.24693594263907, 39.92249461996705], [-75.24664178298741, 39.92277035402662], [-75.24652133215531, 39.92288999080537], [-75.24636253132851, 39.9230558183447], [-75.2462666632187, 39.92317129023258], [-75.24618840967676, 39.92330595669068], [-75.24615880781613, 39.92344638863182], [-75.24614054300106, 39.92361057952106], [-75.24613379290614, 39.92379383456595], [-75.24612963902429, 39.92390660579278], [-75.24609531661189, 39.92400931460536], [-75.2460726810459, 39.924126383644335], [-75.24603191218198, 39.924238355335795], [-75.24599079341972, 39.924359726638386], [-75.24594478254895, 39.92444807153349], [-75.24586652923863, 39.92458273782064], [-75.24579506940592, 39.924698741495526], [-75.2457263137798, 39.9248242096502], [-75.24568010915989, 39.92488371305061], [-75.24563654577109, 39.92493981520691], [-75.24555322629331, 39.92504615517457], [-75.24543886966802, 39.92516592584399], [-75.24526474045014, 39.925416061005436], [-75.24519868862885, 39.92555099520395], [-75.24512739974729, 39.92566230086199], [-75.24505018240241, 39.925768772892795], [-75.2449924836029, 39.9258427543882], [-75.24486834379816, 39.92589647437382], [-75.24476234202136, 39.92595529277384], [-75.24462616977375, 39.92600404644966], [-75.2445201676861, 39.92606286282527], [-75.24440143811377, 39.926135510561735], [-75.24433607563414, 39.926251646642434], [-75.24430174936177, 39.926354354014606], [-75.24433081231221, 39.926477256518716], [-75.24441279147882, 39.92657310063879], [-75.24450767024295, 39.926650415607334], [-75.2445770981056, 39.92675538993084], [-75.24459769989812, 39.926859295658076], [-75.24458012543246, 39.92700469324823], [-75.24457982113523, 39.92717868275433], [-75.24455177072839, 39.92727682413468], [-75.24449809559326, 39.927407325222624], [-75.24442645605995, 39.927528027413075], [-75.24434226541503, 39.92765786168888], [-75.24426993485572, 39.92779735782447], [-75.24419933380707, 39.92788986798446], [-75.24412159279538, 39.92801043578041], [-75.2440553641325, 39.928150067838665], [-75.24400161995722, 39.92836521281857], [-75.24398525652, 39.928477718131035], [-75.24396681187515, 39.928646607159685], [-75.24396702565667, 39.92880650206786], [-75.2439716494672, 39.92917810779471], [-75.2439670125304, 39.9294695678305], [-75.24396806898285, 39.92960333793567], [-75.24398241683463, 39.929714441188494], [-75.24400998780085, 39.92979498609446], [-75.24409928849657, 39.92985807166599], [-75.24418927875121, 39.9299023622003], [-75.24427857744878, 39.929965446680804], [-75.2443551495057, 39.930042360769605], [-75.24440575074128, 39.930161032421815], [-75.24442853925618, 39.93028850094924], [-75.2443816574547, 39.930400338625375], [-75.2442746088932, 39.93048734935878], [-75.24413128364208, 39.930564160954866], [-75.24395081763902, 39.930654270316616], [-75.24381359589472, 39.930731214908114], [-75.24369416667311, 39.93082265774716], [-75.24363594233557, 39.93091073404509], [-75.24360528992457, 39.93107935804132], [-75.2435582340958, 39.931195894802094], [-75.2435164136411, 39.931336059191445], [-75.24347511636647, 39.931462127252175], [-75.24343450979335, 39.931569398560214], [-75.24341831681822, 39.93167720346368], [-75.24340160266087, 39.9317991074292], [-75.24334303285262, 39.93189658152115], [-75.24327956923035, 39.93196103173032], [-75.24318593632059, 39.932015415176366], [-75.24310468404244, 39.93206536780084], [-75.24304951001912, 39.93215351141844], [-75.24293513826386, 39.93227327780365], [-75.24284448785608, 39.93241237541506], [-75.24272227980886, 39.932578998543015], [-75.24262465866519, 39.93274145502357], [-75.24252946397212, 39.93283812799], [-75.24245309882642, 39.93292110483453], [-75.24235093355396, 39.93304113848015], [-75.24228625556222, 39.93313847852701], [-75.24223988835199, 39.93323621983896], [-75.24214722451259, 39.93334705561295], [-75.24201270073718, 39.93343346267999], [-75.24188906490586, 39.933473083052256], [-75.24171712157997, 39.93349753900689], [-75.24155773164858, 39.93351286200569], [-75.24139782008557, 39.93354228383802], [-75.24118890620518, 39.93357533488688], [-75.24097388764444, 39.93360825200431], [-75.24075973742913, 39.93361767448273], [-75.24051645624813, 39.93358883722877], [-75.24024404448275, 39.93352174185772], [-75.24016114639225, 39.933493624967426], [-75.23992403928501, 39.93355793659742], [-75.23952717814703, 39.933567607673154], [-75.2392009596448, 39.93345696358626], [-75.23893908361332, 39.93327485944053], [-75.23873923668756, 39.93312452331611], [-75.23849767581348, 39.933034089558596], [-75.23823787470704, 39.93300669392476], [-75.23800082407834, 39.93301104522161], [-75.2377768832943, 39.93308520126836], [-75.23683559966594, 39.93375789463036], [-75.23664759632881, 39.933906180675955], [-75.23591865246344, 39.934442503642835], [-75.23560529289891, 39.93455500141549], [-75.23537389905631, 39.93461682699806], [-75.2351596404366, 39.93464253664272], [-75.23488358253603, 39.93463040300634], [-75.23453134294022, 39.93459411345274], [-75.23429649319554, 39.93448372763597], [-75.23414109027634, 39.93441342064169], [-75.23386210517593, 39.9343461162973], [-75.23369487515502, 39.934324803049165], [-75.23357748183564, 39.93432944696273], [-75.23341607424994, 39.93435151247633], [-75.23328500124813, 39.93437717438364], [-75.23316680296028, 39.934403457459595], [-75.23304944256505, 39.934443141300974], [-75.232724620188, 39.93463860837166], [-75.23212899936999, 39.93413698521188]]]}}, {"id": "1260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20853779649374, 39.945761818078864], [-75.20838441136944, 39.94565560961414], [-75.20827024712582, 39.94576580082315], [-75.20811137064551, 39.94566542503228], [-75.20746762198765, 39.94528192451025], [-75.20583883243509, 39.944319761683424], [-75.20548867998357, 39.944112922210635], [-75.2053264864448, 39.94408111179888], [-75.20460489022865, 39.94395445297271], [-75.20329421085049, 39.94408301196562], [-75.2030545074157, 39.94362262812122], [-75.20384389489251, 39.943159031803354], [-75.20454685757073, 39.94255199429125], [-75.20503308883262, 39.94184108941856], [-75.2051511241047, 39.941109705274734], [-75.20515916367398, 39.94065801560933], [-75.20516533511787, 39.94027327776247], [-75.20516213209207, 39.938603951228046], [-75.205161751336, 39.93840528394946], [-75.20516612810576, 39.937061048418464], [-75.20537590640467, 39.93587702877518], [-75.2055971311071, 39.93548447427487], [-75.2058484773116, 39.93503846158553], [-75.20642541432272, 39.9343578658045], [-75.20757291260742, 39.933166337097894], [-75.20969119752053, 39.930835934591194], [-75.21052319268539, 39.92972229370418], [-75.21074355424716, 39.929267201457094], [-75.21193246740769, 39.92930455022506], [-75.21347401016706, 39.929327276329566], [-75.21391923784077, 39.92941299856718], [-75.21422912275716, 39.929560220107085], [-75.21492199083451, 39.92983925119834], [-75.21575088067966, 39.93016313638106], [-75.21647530459322, 39.93045982280271], [-75.21712829573877, 39.93073307845829], [-75.21741503596247, 39.93084696636643], [-75.21773191977564, 39.931075817393875], [-75.21872026947263, 39.931911546747514], [-75.21911609056419, 39.932236395979025], [-75.22054734853859, 39.933451623766636], [-75.22031138329548, 39.93361547102801], [-75.22015038068251, 39.933736808053105], [-75.21969531134133, 39.93404847978036], [-75.21918166065471, 39.934407849856306], [-75.21863606268765, 39.93479097747546], [-75.21823454424116, 39.935061842652814], [-75.21781110222202, 39.93535867311922], [-75.2189844066721, 39.93637050114046], [-75.21961403224867, 39.93690206029598], [-75.2202432225084, 39.93743972666395], [-75.22073274993514, 39.93785186363125], [-75.22114069662634, 39.938199705391014], [-75.22163821577948, 39.93860911954614], [-75.2220963835731, 39.9389890411456], [-75.22290607669642, 39.939681196540526], [-75.22354402565823, 39.940203617824274], [-75.22411470112915, 39.94069239719636], [-75.22361656639723, 39.94104707837321], [-75.22342672572017, 39.94117663554376], [-75.22323926450781, 39.941312821226155], [-75.22275432475358, 39.94165593328939], [-75.22206699647136, 39.9421396456706], [-75.22136817491958, 39.94262798959198], [-75.22079176874564, 39.9430253906775], [-75.22022164439426, 39.94341620880577], [-75.21954803809479, 39.94389540808213], [-75.21915337365694, 39.94417736868566], [-75.2190032263168, 39.94428463720904], [-75.21840785554781, 39.94470311532915], [-75.21773309661441, 39.94518440362091], [-75.21647228140037, 39.9460684669736], [-75.21516235800405, 39.94697939184697], [-75.21396205829907, 39.94597580755762], [-75.21332518017692, 39.946428740261325], [-75.21268289883348, 39.946880804965346], [-75.21139018616216, 39.94779717850673], [-75.210599590919, 39.948349747884194], [-75.20905275231212, 39.94840065040551], [-75.20891492499595, 39.94774619012205], [-75.20886579842912, 39.94751274485901], [-75.20873299651238, 39.94684000882448], [-75.20853779649374, 39.945761818078864]]]}}, {"id": "1280", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20259046983514, 39.95411371494432], [-75.2027421473969, 39.95338532296644], [-75.20282802590086, 39.95297124948091], [-75.20295655882086, 39.952370661785295], [-75.2030720261769, 39.95183111529021], [-75.2030845024121, 39.9517468510238], [-75.20314128488319, 39.95142500603531], [-75.20319059599899, 39.9512044680973], [-75.20330368930523, 39.95068511881125], [-75.2034611695254, 39.94992521621503], [-75.20158528615542, 39.94997786358603], [-75.20148904244392, 39.94994614180677], [-75.20128850342793, 39.94988004314401], [-75.2011575334559, 39.94984044328213], [-75.20141211703024, 39.94976124037877], [-75.20301344481327, 39.9492827311201], [-75.20376393721541, 39.94900224732861], [-75.20452602474221, 39.94872922500287], [-75.20503323057667, 39.94853436087157], [-75.20516872951993, 39.94852347532274], [-75.20565664322592, 39.94805410681656], [-75.20697377705622, 39.946834461392456], [-75.20696015034082, 39.946662249602404], [-75.20537423404978, 39.94505914245293], [-75.20528159466483, 39.94415698142473], [-75.2053264864448, 39.94408111179888], [-75.20548867998357, 39.944112922210635], [-75.20583883243509, 39.944319761683424], [-75.20746762198765, 39.94528192451025], [-75.20811137064551, 39.94566542503228], [-75.20827024712582, 39.94576580082315], [-75.20838441136944, 39.94565560961414], [-75.20853779649374, 39.945761818078864], [-75.20873299651238, 39.94684000882448], [-75.20886579842912, 39.94751274485901], [-75.20891492499595, 39.94774619012205], [-75.20905275231212, 39.94840065040551], [-75.210599590919, 39.948349747884194], [-75.21139018616216, 39.94779717850673], [-75.21268289883348, 39.946880804965346], [-75.21332518017692, 39.946428740261325], [-75.21396205829907, 39.94597580755762], [-75.21516235800405, 39.94697939184697], [-75.21587487161817, 39.9475691465498], [-75.21656076374511, 39.94815297647089], [-75.21712233963673, 39.94861189853709], [-75.21699676243124, 39.949235181405776], [-75.21682738507971, 39.95002365498763], [-75.21666047959238, 39.95078359152693], [-75.21658804469882, 39.951160590539054], [-75.21650285054058, 39.95154792332002], [-75.21643064503898, 39.951903560097534], [-75.21635009949718, 39.952303755439104], [-75.21437377199037, 39.952054898179995], [-75.21421854877329, 39.95279794310963], [-75.21414747932245, 39.95312629629625], [-75.21389806204827, 39.9543415647573], [-75.21365664125639, 39.95548348430796], [-75.21349888053125, 39.95624499884447], [-75.21152003707512, 39.95600154425636], [-75.21047643999862, 39.95587085889744], [-75.20989899490549, 39.95580099729136], [-75.20948109276688, 39.955744379668474], [-75.20902166889157, 39.95568856536521], [-75.20860052207796, 39.95563794179296], [-75.2081284652613, 39.95557966630101], [-75.20743601295325, 39.955494992080155], [-75.20627514003934, 39.95534885213713], [-75.20493395028417, 39.95518253615201], [-75.20242872567167, 39.95487206779536], [-75.20259046983514, 39.95411371494432]]]}}, {"id": "1290", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23414213254877, 39.96113719213085], [-75.23355391560953, 39.961067005843844], [-75.23285803081075, 39.96097701200854], [-75.23187474073868, 39.9608510698038], [-75.23080297426164, 39.960723310653556], [-75.23096174457179, 39.95995539343796], [-75.23111421415305, 39.95921133036289], [-75.23127838691903, 39.95844994113663], [-75.23143923401801, 39.95768998429868], [-75.23155739462278, 39.957103005941605], [-75.23167498196297, 39.95654524233081], [-75.23180125062657, 39.95594961381813], [-75.23191132069722, 39.95541321793619], [-75.23193785246828, 39.95532005975538], [-75.23204584723553, 39.954781857684175], [-75.2321531848757, 39.954263206249884], [-75.23310495493705, 39.95438500762811], [-75.23421282714466, 39.95452278160557], [-75.23494587215642, 39.95461531414442], [-75.23621692036184, 39.954772282617576], [-75.23816664919339, 39.95501291036174], [-75.24013867742423, 39.95525346726105], [-75.24002497972941, 39.95576968906917], [-75.24000860919124, 39.9558765464588], [-75.23991007492342, 39.95631413324379], [-75.23982459012271, 39.95671987154776], [-75.23974064044614, 39.95712975913595], [-75.23965932453713, 39.9575352606096], [-75.23957523039626, 39.95794304653689], [-75.23941958507163, 39.95867732936648], [-75.23925866653717, 39.95943977614177], [-75.23910147880365, 39.96019897523339], [-75.23712788649429, 39.959955913231376], [-75.2369715545159, 39.960699401826325], [-75.23680903840634, 39.96147203352687], [-75.23487010378587, 39.96123223060958], [-75.23414213254877, 39.96113719213085]]]}}, {"id": "1300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22108786424026, 39.94902773485284], [-75.22124930716777, 39.94827774218], [-75.22123731327486, 39.9481623444683], [-75.21923577195466, 39.948369210737745], [-75.21712233963673, 39.94861189853709], [-75.21656076374511, 39.94815297647089], [-75.21587487161817, 39.9475691465498], [-75.21516235800405, 39.94697939184697], [-75.21647228140037, 39.9460684669736], [-75.21773309661441, 39.94518440362091], [-75.21840785554781, 39.94470311532915], [-75.2190032263168, 39.94428463720904], [-75.21915337365694, 39.94417736868566], [-75.21954803809479, 39.94389540808213], [-75.22022164439426, 39.94341620880577], [-75.22079176874564, 39.9430253906775], [-75.22136817491958, 39.94262798959198], [-75.22206699647136, 39.9421396456706], [-75.22275432475358, 39.94165593328939], [-75.22323926450781, 39.941312821226155], [-75.22342672572017, 39.94117663554376], [-75.22361656639723, 39.94104707837321], [-75.22411470112915, 39.94069239719636], [-75.22548113740314, 39.939726193300785], [-75.22574413892491, 39.93994585631309], [-75.22598204677581, 39.94013938623111], [-75.22621028243675, 39.94033942153977], [-75.22639240902276, 39.94050315877415], [-75.22688622317584, 39.94090891493186], [-75.22733688633339, 39.94129340858265], [-75.22770183808326, 39.94160479346235], [-75.2279150932509, 39.941779548000355], [-75.22816473061533, 39.94198411686646], [-75.2286495761246, 39.94240725523266], [-75.22906061292544, 39.94275510279864], [-75.22955325914707, 39.9431694427212], [-75.2300512126973, 39.943581922008015], [-75.23045841638532, 39.94392442181561], [-75.23094716896786, 39.94433754900314], [-75.23232073989367, 39.94337118576998], [-75.23281885532278, 39.943791942656354], [-75.23322356204032, 39.9441379445611], [-75.23371815372047, 39.944560304836195], [-75.233752519756, 39.94467113338882], [-75.23370607046287, 39.9461446490347], [-75.23370512010376, 39.94637437310582], [-75.23369678154249, 39.946626143747736], [-75.23365672143521, 39.94728618681448], [-75.23360540677021, 39.94735220242095], [-75.23127144381539, 39.94791010072773], [-75.23116356346483, 39.948444207728265], [-75.23109712127248, 39.94874762614672], [-75.23106724674322, 39.94890952251901], [-75.23096092059897, 39.94943998654951], [-75.2307949154714, 39.95017367604613], [-75.23063630139251, 39.95092370508727], [-75.22884682614269, 39.95070699306487], [-75.2268695724043, 39.950461812102006], [-75.22489312408028, 39.950215311637955], [-75.22291509578595, 39.949976453655864], [-75.22093688238962, 39.94972740202175], [-75.22108786424026, 39.94902773485284]]]}}, {"id": "1340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.21748321535274, 39.95674015237582], [-75.21547238743408, 39.95649087345359], [-75.21448395011627, 39.95636717836012], [-75.21349888053125, 39.95624499884447], [-75.21365664125639, 39.95548348430796], [-75.21389806204827, 39.9543415647573], [-75.21414747932245, 39.95312629629625], [-75.21421854877329, 39.95279794310963], [-75.21437377199037, 39.952054898179995], [-75.21635009949718, 39.952303755439104], [-75.21643064503898, 39.951903560097534], [-75.21650285054058, 39.95154792332002], [-75.21658804469882, 39.951160590539054], [-75.21666047959238, 39.95078359152693], [-75.21682738507971, 39.95002365498763], [-75.21699676243124, 39.949235181405776], [-75.21712233963673, 39.94861189853709], [-75.21923577195466, 39.948369210737745], [-75.22123731327486, 39.9481623444683], [-75.22124930716777, 39.94827774218], [-75.22108786424026, 39.94902773485284], [-75.22093688238962, 39.94972740202175], [-75.22077646819018, 39.950514077833525], [-75.22061693130486, 39.951276551263554], [-75.22258996908286, 39.951520619003304], [-75.22243591661017, 39.95228185757551], [-75.2222800420232, 39.95304100157719], [-75.22219283966916, 39.95341499671031], [-75.2220575849949, 39.95410396374315], [-75.22203767016683, 39.9541745245253], [-75.22192358674249, 39.954724257174874], [-75.2217982925147, 39.955320872144064], [-75.2216873926178, 39.95585536230671], [-75.22156022486105, 39.956462883842796], [-75.22149388168697, 39.956831736809185], [-75.22139876232934, 39.95722829373262], [-75.22131207548387, 39.95721387899676], [-75.21942250421269, 39.95698073769441], [-75.21748321535274, 39.95674015237582]]]}}, {"id": "1350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23281885532278, 39.943791942656354], [-75.23232073989367, 39.94337118576998], [-75.23094716896786, 39.94433754900314], [-75.23045841638532, 39.94392442181561], [-75.2300512126973, 39.943581922008015], [-75.22955325914707, 39.9431694427212], [-75.22906061292544, 39.94275510279864], [-75.2286495761246, 39.94240725523266], [-75.22816473061533, 39.94198411686646], [-75.2279150932509, 39.941779548000355], [-75.22770183808326, 39.94160479346235], [-75.22733688633339, 39.94129340858265], [-75.22688622317584, 39.94090891493186], [-75.22639240902276, 39.94050315877415], [-75.22621028243675, 39.94033942153977], [-75.22598204677581, 39.94013938623111], [-75.22574413892491, 39.93994585631309], [-75.22548113740314, 39.939726193300785], [-75.22595162625947, 39.93939925316969], [-75.22638414770273, 39.93909719660462], [-75.22685518988968, 39.938768103636576], [-75.22738390756126, 39.93839393907862], [-75.22783178413717, 39.938078450519924], [-75.22835886823013, 39.93770158422983], [-75.22884327779396, 39.937359480493996], [-75.22922852278495, 39.93709246215178], [-75.22972674809127, 39.93674409566596], [-75.23109684093728, 39.93577422178851], [-75.232724620188, 39.93463860837166], [-75.23304944256505, 39.934443141300974], [-75.23316680296028, 39.934403457459595], [-75.23328500124813, 39.93437717438364], [-75.23341607424994, 39.93435151247633], [-75.23357748183564, 39.93432944696273], [-75.23369487515502, 39.934324803049165], [-75.23386210517593, 39.9343461162973], [-75.23414109027634, 39.93441342064169], [-75.23429649319554, 39.93448372763597], [-75.23453134294022, 39.93459411345274], [-75.23488358253603, 39.93463040300634], [-75.2351596404366, 39.93464253664272], [-75.23537389905631, 39.93461682699806], [-75.23560529289891, 39.93455500141549], [-75.23591865246344, 39.934442503642835], [-75.23664759632881, 39.933906180675955], [-75.23666177970193, 39.934087550085515], [-75.23665133117491, 39.93420488655617], [-75.23660339239997, 39.934344915588156], [-75.23655336828404, 39.93454132822961], [-75.23652373928955, 39.93468175760784], [-75.23646865275937, 39.93484984370847], [-75.23639257083319, 39.9351726570471], [-75.23631969340647, 39.935326245383415], [-75.23617007168824, 39.935407612638286], [-75.23601330560618, 39.93551703957006], [-75.23586298784012, 39.935617201263895], [-75.23566401318618, 39.93571159467156], [-75.23545823673795, 39.935824649600505], [-75.23526380087891, 39.93596146431477], [-75.23497921193861, 39.936223273683886], [-75.23492010462078, 39.93633483891729], [-75.23492185984469, 39.936452442920405], [-75.23491664324142, 39.93659340731749], [-75.2348461953796, 39.93668121324939], [-75.23477321788663, 39.93675485407357], [-75.23474393443104, 39.93688588427163], [-75.23478702806624, 39.9370420159329], [-75.23478163725238, 39.93718767880529], [-75.23480048581486, 39.937338577353174], [-75.23486938799532, 39.937457652082024], [-75.23492084647403, 39.93755283366167], [-75.23496848080433, 39.9377513881742], [-75.23497564550011, 39.937887919976426], [-75.23498281132761, 39.938024453604044], [-75.23500340297346, 39.93812836286094], [-75.23507387119106, 39.9382051493166], [-75.23516299723741, 39.938272941142294], [-75.23529554970298, 39.938322873167614], [-75.23548966580893, 39.93836004788003], [-75.2357816214686, 39.93839466387713], [-75.23594591001282, 39.93841237296468], [-75.23614682570808, 39.93843088461924], [-75.23634739395118, 39.93845879289217], [-75.23649999900883, 39.93846213733794], [-75.23668381661955, 39.93844735638547], [-75.23687984402174, 39.93843284087639], [-75.23714440811271, 39.938382206511235], [-75.23744899521795, 39.938323042842086], [-75.23762182198209, 39.93827509907656], [-75.23776936395865, 39.93825011538121], [-75.23796573783048, 39.93822620284254], [-75.23817327823944, 39.93823074827048], [-75.23832622909218, 39.938224690584775], [-75.23849801306588, 39.938204940029244], [-75.23873711615691, 39.938181959138795], [-75.23887244889454, 39.9381567076098], [-75.23900743437267, 39.93814085199926], [-75.23918428007629, 39.938149426781784], [-75.23933670863326, 39.938157466792724], [-75.23945286097023, 39.93815530616252], [-75.23956308200826, 39.93814831239838], [-75.23970958281383, 39.93815151897409], [-75.23981928309944, 39.93815862313541], [-75.23992253142438, 39.9381749914664], [-75.2400372955059, 39.938210419969614], [-75.24013967867731, 39.938250281510335], [-75.24025863671281, 39.93833753303796], [-75.24040995404322, 39.938458408504886], [-75.24059276459693, 39.938636405667815], [-75.24071155050956, 39.938728352515966], [-75.24076267231305, 39.93883292938218], [-75.24073932864717, 39.93896879310819], [-75.24069871200369, 39.93907606610911], [-75.2406272281501, 39.9391920656366], [-75.24054440384643, 39.93928430646638], [-75.24042495286159, 39.9393757458371], [-75.2403423004971, 39.939463285303056], [-75.240240642209, 39.939569221582225], [-75.24014387387415, 39.93970818350265], [-75.24001675359604, 39.939841776143794], [-75.23995119918372, 39.93996261004167], [-75.23989199360169, 39.94004014682548], [-75.23943990595043, 39.939820635715826], [-75.2392059914378, 39.939736453084166], [-75.2390011854177, 39.93971980516514], [-75.23873187557751, 39.93973823665251], [-75.2384519774567, 39.93982941531003], [-75.23807984787723, 39.9400645345292], [-75.23787144698669, 39.94014511600913], [-75.23773600317422, 39.94017559699575], [-75.23758544765711, 39.940187504362896], [-75.23719951600373, 39.94015472211588], [-75.23708098652438, 39.94015516792562], [-75.2369297568647, 39.940185303009926], [-75.23676093795004, 39.940263706211184], [-75.23660687954481, 39.94036655046346], [-75.23503453869628, 39.941475085310834], [-75.23382951822354, 39.9423175806767], [-75.23432126745027, 39.94274206383771], [-75.23453049110597, 39.94290822712017], [-75.2347335948175, 39.943088277988174], [-75.23521991589762, 39.94349567046655], [-75.23460058718051, 39.94394722294118], [-75.23447444548366, 39.94402821946588], [-75.23418573636991, 39.94423881568086], [-75.23371815372047, 39.944560304836195], [-75.23322356204032, 39.9441379445611], [-75.23281885532278, 39.943791942656354]]]}}, {"id": "1360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18484922326599, 39.96614149173921], [-75.18435660843396, 39.965550289347135], [-75.18364873769167, 39.96457219229305], [-75.18354554441063, 39.96443732115239], [-75.18347225828724, 39.964341536181614], [-75.18374491579901, 39.964279560944455], [-75.18431281618732, 39.96410592015109], [-75.18444557929725, 39.96404758328842], [-75.18457123512407, 39.963999713871445], [-75.18473166794168, 39.96395043332568], [-75.18505348553673, 39.96382183247109], [-75.18521097532448, 39.9637588973525], [-75.18535393650671, 39.96371623344778], [-75.18564975042099, 39.963627954642334], [-75.18643859260281, 39.96348224154644], [-75.18674344963637, 39.96344671159169], [-75.1874162811373, 39.96336829040095], [-75.18802607863202, 39.96329535320564], [-75.18848694285441, 39.963249022063465], [-75.18993883938037, 39.96308440943466], [-75.19139090587306, 39.96292303772596], [-75.19147738285994, 39.96292171263492], [-75.192517977438, 39.96280997802728], [-75.19284664988015, 39.96277092904808], [-75.19419672896895, 39.96262383654907], [-75.19429825539707, 39.96260805996062], [-75.19574800367215, 39.962448792109484], [-75.19719782733475, 39.9622884094461], [-75.19943697827972, 39.96204337101509], [-75.19954402181146, 39.96261317862635], [-75.19964817823953, 39.963167834578144], [-75.19975578592744, 39.963778229411936], [-75.19985985277751, 39.96433764219597], [-75.19996167948639, 39.96489660500567], [-75.2000648715532, 39.96545486280315], [-75.20017113270373, 39.9660065518617], [-75.20027320729024, 39.9665681236714], [-75.2003766608814, 39.96712547684685], [-75.20048108991301, 39.96768143968206], [-75.2005854865362, 39.968225300257366], [-75.2006825037777, 39.968748509689675], [-75.19873901022478, 39.96896474723525], [-75.20360222096758, 39.970262038082865], [-75.20363324664117, 39.970432344209144], [-75.20365192712485, 39.970536711194484], [-75.20372256837196, 39.97092991009466], [-75.20372444604058, 39.970940143918334], [-75.20373778519559, 39.9710135329684], [-75.20348653944679, 39.97101458528833], [-75.2031438609358, 39.971018855159635], [-75.20280217542738, 39.97103558441613], [-75.20246146679227, 39.97106857044634], [-75.20212582727534, 39.97111679138892], [-75.20179527631387, 39.97118609164044], [-75.20146991414583, 39.97126904739688], [-75.20114834189835, 39.97135896109926], [-75.2008300396192, 39.97145629876278], [-75.2005167783354, 39.97156188994687], [-75.20020658391334, 39.97167432130029], [-75.19990132964449, 39.9717951923184], [-75.19960966378463, 39.9719314879363], [-75.19933172317984, 39.972085236761686], [-75.19906596864303, 39.97225320340784], [-75.19881896232208, 39.97243574288791], [-75.1983798864382, 39.972837364965635], [-75.19817373991863, 39.97304817344242], [-75.19796973622626, 39.97326048165323], [-75.19776267748833, 39.97347047176852], [-75.19769427033506, 39.9735526068525], [-75.19747675915838, 39.97375745082089], [-75.19724347719469, 39.97395315065537], [-75.19700906804599, 39.97414484161994], [-75.1967697217073, 39.9743329092601], [-75.19652544619335, 39.97451751410253], [-75.19627710586025, 39.97469896547529], [-75.19602558226443, 39.974877551471934], [-75.19577203856599, 39.975054075529776], [-75.19575612004209, 39.97506493243013], [-75.19541223775175, 39.97510346411268], [-75.19489863948688, 39.97516312254212], [-75.19466135487802, 39.97518792535294], [-75.1946275299596, 39.97519146092737], [-75.19461061691396, 39.97519322869778], [-75.19440416945793, 39.975214808203454], [-75.19438620060323, 39.97521668577702], [-75.19435026987784, 39.97522044197228], [-75.19423227229858, 39.97523277524366], [-75.19316767010415, 39.97534404688133], [-75.19306819929173, 39.97522587002582], [-75.19267610460359, 39.97455682874583], [-75.19251524639479, 39.97427958810763], [-75.19185603211622, 39.97273659554681], [-75.19156997895064, 39.971541539557435], [-75.19117087980821, 39.970174153296554], [-75.19053330321391, 39.969523141662705], [-75.18900330738798, 39.96863994646185], [-75.18706908333387, 39.967747703382884], [-75.18559269656258, 39.96690811198944], [-75.18484922326599, 39.96614149173921]]]}}, {"id": "1370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22290607669642, 39.939681196540526], [-75.2220963835731, 39.9389890411456], [-75.22163821577948, 39.93860911954614], [-75.22114069662634, 39.938199705391014], [-75.22073274993514, 39.93785186363125], [-75.2202432225084, 39.93743972666395], [-75.21961403224867, 39.93690206029598], [-75.2189844066721, 39.93637050114046], [-75.21781110222202, 39.93535867311922], [-75.21823454424116, 39.935061842652814], [-75.21863606268765, 39.93479097747546], [-75.21918166065471, 39.934407849856306], [-75.21969531134133, 39.93404847978036], [-75.22015038068251, 39.933736808053105], [-75.22031138329548, 39.93361547102801], [-75.22054734853859, 39.933451623766636], [-75.22173280255822, 39.93443158438589], [-75.2224836359392, 39.933905953349196], [-75.2232199760324, 39.93339056163966], [-75.22372599637802, 39.93303318014364], [-75.22411929621914, 39.932750305177024], [-75.2245939121745, 39.93241174850837], [-75.22541026665041, 39.93184045411882], [-75.2275979625321, 39.93030940778205], [-75.22922294797267, 39.9291732561065], [-75.22993831520918, 39.92961246541906], [-75.2301046471848, 39.929712464087395], [-75.2307028980303, 39.930072132603634], [-75.23136337528365, 39.93047928654213], [-75.23179925549334, 39.93073781487231], [-75.2320352416839, 39.930870618194646], [-75.2323338812178, 39.93109614132798], [-75.23277036958953, 39.93151838657586], [-75.2331577985903, 39.931842426891116], [-75.233575969569, 39.93219905996512], [-75.23256727024936, 39.93291386321791], [-75.23298133789591, 39.93327394201144], [-75.23195870779912, 39.933986075836685], [-75.23212899936999, 39.93413698521188], [-75.232724620188, 39.93463860837166], [-75.23109684093728, 39.93577422178851], [-75.22972674809127, 39.93674409566596], [-75.22922852278495, 39.93709246215178], [-75.22884327779396, 39.937359480493996], [-75.22835886823013, 39.93770158422983], [-75.22783178413717, 39.938078450519924], [-75.22738390756126, 39.93839393907862], [-75.22685518988968, 39.938768103636576], [-75.22638414770273, 39.93909719660462], [-75.22595162625947, 39.93939925316969], [-75.22548113740314, 39.939726193300785], [-75.22411470112915, 39.94069239719636], [-75.22354402565823, 39.940203617824274], [-75.22290607669642, 39.939681196540526]]]}}, {"id": "1380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22054734853859, 39.933451623766636], [-75.21911609056419, 39.932236395979025], [-75.21872026947263, 39.931911546747514], [-75.21773191977564, 39.931075817393875], [-75.21741503596247, 39.93084696636643], [-75.21712829573877, 39.93073307845829], [-75.21647530459322, 39.93045982280271], [-75.21575088067966, 39.93016313638106], [-75.21492199083451, 39.92983925119834], [-75.21422912275716, 39.929560220107085], [-75.21391923784077, 39.92941299856718], [-75.21347401016706, 39.929327276329566], [-75.21193246740769, 39.92930455022506], [-75.21074355424716, 39.929267201457094], [-75.21116053746807, 39.928406227444746], [-75.21157630482006, 39.92760883240147], [-75.21214722121682, 39.92634789377554], [-75.21240349026309, 39.92539130720084], [-75.21255801411132, 39.92420605590866], [-75.21236773139668, 39.92339524882293], [-75.21195444836577, 39.92265025678862], [-75.21111670313407, 39.92195247005715], [-75.20994136801055, 39.92119059609576], [-75.20888316774469, 39.92098318900874], [-75.20771109345405, 39.920872302717065], [-75.20647864311627, 39.920901574082286], [-75.20524090114905, 39.92107222205077], [-75.20375348198348, 39.921039201492874], [-75.20262167546693, 39.920589535899126], [-75.20203954057037, 39.919939811356116], [-75.2019945286076, 39.919781946952625], [-75.20634703344206, 39.91898157802478], [-75.20703570277193, 39.918826738733266], [-75.2074522964374, 39.918696792111206], [-75.20832734734644, 39.91839142706454], [-75.20870170719188, 39.91829975146925], [-75.21582396475834, 39.91695755714793], [-75.21838572656571, 39.91647298421948], [-75.21924643384173, 39.916304991938944], [-75.2198709023641, 39.91620103575878], [-75.22007736956266, 39.91614831697048], [-75.2210605119447, 39.91602562108154], [-75.22582562977516, 39.9158779780424], [-75.22581370816636, 39.91609503462634], [-75.22610122529312, 39.91690397621625], [-75.22637993074923, 39.9169457129939], [-75.22653131944614, 39.916924289172286], [-75.22675218138791, 39.91683556681867], [-75.22686200140986, 39.916950477715574], [-75.2269552641675, 39.9170809492969], [-75.22700177600785, 39.917195993208786], [-75.22706532599622, 39.91741952908557], [-75.22713800379935, 39.917575986428595], [-75.22723252603191, 39.917672492609334], [-75.22737321974084, 39.91779918796638], [-75.22763578642127, 39.91800901890302], [-75.22787204289476, 39.918215832363344], [-75.22829153346508, 39.918555764898066], [-75.22876696548548, 39.91896857594046], [-75.23016936324927, 39.92014685139141], [-75.23066560339957, 39.920570737698036], [-75.23156512132066, 39.921332931193255], [-75.23184940298295, 39.92156365712455], [-75.23206461196527, 39.92175450742406], [-75.23225315566052, 39.9219123485317], [-75.23249497021223, 39.922109763874666], [-75.23269240693722, 39.92227914030631], [-75.23297217161154, 39.922511591338285], [-75.23340722171267, 39.92288617980907], [-75.2336625993915, 39.923107379177125], [-75.23396382550058, 39.923359396114954], [-75.23419949008655, 39.923549632313225], [-75.2343691919733, 39.92369534698896], [-75.23477256061263, 39.92402552939342], [-75.23513607401314, 39.924329110083455], [-75.23556761530502, 39.924705161692295], [-75.23513456656124, 39.92501404370246], [-75.2347728286137, 39.92526555330249], [-75.23432826391235, 39.92557419424493], [-75.23370959255938, 39.92602333023891], [-75.23310079510505, 39.92645314258712], [-75.23217982966749, 39.92708608624951], [-75.23171416596094, 39.92740342826188], [-75.2311391644917, 39.92779373348052], [-75.23078482130573, 39.92805966085603], [-75.23065538894247, 39.92815909675535], [-75.22922294797267, 39.9291732561065], [-75.2275979625321, 39.93030940778205], [-75.22541026665041, 39.93184045411882], [-75.2245939121745, 39.93241174850837], [-75.22411929621914, 39.932750305177024], [-75.22372599637802, 39.93303318014364], [-75.2232199760324, 39.93339056163966], [-75.2224836359392, 39.933905953349196], [-75.22173280255822, 39.93443158438589], [-75.22054734853859, 39.933451623766636]]]}}, {"id": "1390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18107508428989, 39.96162779881066], [-75.1802202153056, 39.960405820580924], [-75.18005107995222, 39.960132068330665], [-75.1799758297001, 39.96001027156133], [-75.17983899226007, 39.95978878931603], [-75.17947873432696, 39.95886090526811], [-75.17929516795142, 39.957880374074975], [-75.1793645489595, 39.957018719111204], [-75.17952364866278, 39.956215676865845], [-75.17956689482352, 39.95612304155624], [-75.17986268049417, 39.95548943951723], [-75.17989950342928, 39.955410561002644], [-75.18018395822202, 39.954801220932175], [-75.18031091629639, 39.95448418419493], [-75.1804479277613, 39.95414203879143], [-75.1810342474327, 39.952999285513314], [-75.18125186576778, 39.95257513323569], [-75.18174172932771, 39.95152048653826], [-75.18177228119845, 39.95145470656806], [-75.18243483863459, 39.95046482009293], [-75.18301374576069, 39.949741926184196], [-75.18367648239071, 39.949233166955395], [-75.18466080412703, 39.948491032151125], [-75.18638192557506, 39.947257678409755], [-75.1867677265549, 39.94698153699119], [-75.18687020015383, 39.94691457163152], [-75.18735320149077, 39.94659947458651], [-75.18792294351213, 39.946227784440076], [-75.18825665527879, 39.94601007383723], [-75.18889164537305, 39.945525822624006], [-75.18939241252559, 39.94514392406182], [-75.18945882417533, 39.94508477771983], [-75.18985287188819, 39.94473383402683], [-75.19022943637438, 39.94439845576369], [-75.19067974179438, 39.943981979434184], [-75.19099136949414, 39.94369375929506], [-75.19105851370779, 39.943636688136955], [-75.19157341030997, 39.94319903601902], [-75.19177005947272, 39.94303188465246], [-75.19253116202371, 39.94259603349538], [-75.19364560318907, 39.942281245825754], [-75.19369737903752, 39.942280125631584], [-75.19386792557843, 39.94227634272461], [-75.19460271708917, 39.942260124464774], [-75.19577620044844, 39.94234286678344], [-75.19692197216327, 39.94267969748615], [-75.19795163481602, 39.94316960721573], [-75.19909313422974, 39.94360535829999], [-75.19996512413074, 39.94387946206713], [-75.20042752555308, 39.94394416737382], [-75.20080678289902, 39.9439972290549], [-75.20161442497796, 39.94396959747437], [-75.2018099014724, 39.94396290300457], [-75.2030545074157, 39.94362262812122], [-75.20329421085049, 39.94408301196562], [-75.20460489022865, 39.94395445297271], [-75.2053264864448, 39.94408111179888], [-75.20528159466483, 39.94415698142473], [-75.20537423404978, 39.94505914245293], [-75.20696015034082, 39.946662249602404], [-75.20697377705622, 39.946834461392456], [-75.20565664322592, 39.94805410681656], [-75.20516872951993, 39.94852347532274], [-75.20503323057667, 39.94853436087157], [-75.20452602474221, 39.94872922500287], [-75.20376393721541, 39.94900224732861], [-75.20301344481327, 39.9492827311201], [-75.20141211703024, 39.94976124037877], [-75.2011575334559, 39.94984044328213], [-75.20128850342793, 39.94988004314401], [-75.20148904244392, 39.94994614180677], [-75.20158528615542, 39.94997786358603], [-75.2034611695254, 39.94992521621503], [-75.20330368930523, 39.95068511881125], [-75.20319059599899, 39.9512044680973], [-75.20314128488319, 39.95142500603531], [-75.2030845024121, 39.9517468510238], [-75.2030720261769, 39.95183111529021], [-75.20295655882086, 39.952370661785295], [-75.20282802590086, 39.95297124948091], [-75.2027421473969, 39.95338532296644], [-75.20259046983514, 39.95411371494432], [-75.20242872567167, 39.95487206779536], [-75.20227410024071, 39.95563137506652], [-75.20211564815075, 39.9563775533588], [-75.20195465540273, 39.95715039346624], [-75.20183425804929, 39.957872636352754], [-75.20197181660889, 39.95917785982849], [-75.20210283042897, 39.960407347841496], [-75.20219593881716, 39.96124957541975], [-75.20223531539463, 39.961644753824054], [-75.20226648573353, 39.96194501383715], [-75.20229860475062, 39.96224817811425], [-75.20236191691136, 39.96286067235433], [-75.20237007739473, 39.962953675953656], [-75.2023726595329, 39.96305658206573], [-75.2023438055402, 39.96313896353822], [-75.2019296437978, 39.96289648722051], [-75.20076713890572, 39.9622889342618], [-75.20013716043388, 39.96196405580526], [-75.19943697827972, 39.96204337101509], [-75.19719782733475, 39.9622884094461], [-75.19574800367215, 39.962448792109484], [-75.19429825539707, 39.96260805996062], [-75.19419672896895, 39.96262383654907], [-75.19284664988015, 39.96277092904808], [-75.192517977438, 39.96280997802728], [-75.19147738285994, 39.96292171263492], [-75.19139090587306, 39.96292303772596], [-75.18993883938037, 39.96308440943466], [-75.18848694285441, 39.963249022063465], [-75.18802607863202, 39.96329535320564], [-75.1874162811373, 39.96336829040095], [-75.18674344963637, 39.96344671159169], [-75.18643859260281, 39.96348224154644], [-75.18564975042099, 39.963627954642334], [-75.18535393650671, 39.96371623344778], [-75.18521097532448, 39.9637588973525], [-75.18505348553673, 39.96382183247109], [-75.18473166794168, 39.96395043332568], [-75.18457123512407, 39.963999713871445], [-75.18444557929725, 39.96404758328842], [-75.18431281618732, 39.96410592015109], [-75.18374491579901, 39.964279560944455], [-75.18347225828724, 39.964341536181614], [-75.18287764460733, 39.96356437420266], [-75.18195851251086, 39.962581540396314], [-75.18107508428989, 39.96162779881066]]]}}, {"id": "1400", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23513607401314, 39.924329110083455], [-75.23477256061263, 39.92402552939342], [-75.2343691919733, 39.92369534698896], [-75.23419949008655, 39.923549632313225], [-75.23396382550058, 39.923359396114954], [-75.2336625993915, 39.923107379177125], [-75.23340722171267, 39.92288617980907], [-75.23297217161154, 39.922511591338285], [-75.23269240693722, 39.92227914030631], [-75.23249497021223, 39.922109763874666], [-75.23225315566052, 39.9219123485317], [-75.23206461196527, 39.92175450742406], [-75.23184940298295, 39.92156365712455], [-75.23156512132066, 39.921332931193255], [-75.23066560339957, 39.920570737698036], [-75.23016936324927, 39.92014685139141], [-75.22876696548548, 39.91896857594046], [-75.22829153346508, 39.918555764898066], [-75.22787204289476, 39.918215832363344], [-75.22763578642127, 39.91800901890302], [-75.22737321974084, 39.91779918796638], [-75.22723252603191, 39.917672492609334], [-75.22713800379935, 39.917575986428595], [-75.22706532599622, 39.91741952908557], [-75.22700177600785, 39.917195993208786], [-75.2269552641675, 39.9170809492969], [-75.22686200140986, 39.916950477715574], [-75.22675218138791, 39.91683556681867], [-75.22653131944614, 39.916924289172286], [-75.22637993074923, 39.9169457129939], [-75.22610122529312, 39.91690397621625], [-75.22581370816636, 39.91609503462634], [-75.22582562977516, 39.9158779780424], [-75.2210605119447, 39.91602562108154], [-75.22007736956266, 39.91614831697048], [-75.2198709023641, 39.91620103575878], [-75.21924643384173, 39.916304991938944], [-75.21838572656571, 39.91647298421948], [-75.21582396475834, 39.91695755714793], [-75.20870170719188, 39.91829975146925], [-75.20832734734644, 39.91839142706454], [-75.2074522964374, 39.918696792111206], [-75.20703570277193, 39.918826738733266], [-75.20634703344206, 39.91898157802478], [-75.2019945286076, 39.919781946952625], [-75.20184462772525, 39.91925623705986], [-75.20194457510891, 39.91855091390986], [-75.20246386163328, 39.917444533142344], [-75.20359825025908, 39.91561596579895], [-75.2041088348333, 39.91449523508961], [-75.20470414463513, 39.91331977872765], [-75.20542266692576, 39.912288564423946], [-75.20635832065332, 39.91134706809731], [-75.207216129998, 39.911012324931804], [-75.20848050275646, 39.910615834252674], [-75.2094913839666, 39.9106099381418], [-75.2122790037696, 39.9107565830743], [-75.2135613898842, 39.91061515098194], [-75.21464580619211, 39.910115556509204], [-75.2153079210576, 39.909606617026206], [-75.21568364421469, 39.90889323104565], [-75.21569646410822, 39.90756333700614], [-75.21545761289784, 39.905591091598325], [-75.2151114782057, 39.903786283051396], [-75.21468644114745, 39.901880671807056], [-75.21405201147564, 39.90066381664515], [-75.2135832514153, 39.89993175325022], [-75.2121105527512, 39.898285960912], [-75.21157229080009, 39.89783622404864], [-75.21063179238031, 39.897050385553555], [-75.20953791229009, 39.89633275566915], [-75.20811681144355, 39.8955229525527], [-75.20643188168988, 39.89489123824661], [-75.2046735612974, 39.894257866007955], [-75.20220010194497, 39.893834988846315], [-75.20040917979276, 39.89358290207157], [-75.19791884605132, 39.89287653536392], [-75.19734849868537, 39.892554200508876], [-75.19664161307446, 39.892154693323114], [-75.195377006374, 39.890852930227844], [-75.1950055405623, 39.88900502992013], [-75.1947442202182, 39.88715958381745], [-75.19435105676118, 39.88417912439962], [-75.19423258569884, 39.881954784067574], [-75.19372794187674, 39.88001878022436], [-75.19324988488377, 39.878184668892864], [-75.19430620973216, 39.877583978488495], [-75.19885918020827, 39.87531713095636], [-75.20579217318934, 39.871571579248375], [-75.21198487997897, 39.86747284480536], [-75.21603814471179, 39.87111631570757], [-75.21578921822109, 39.87504224093411], [-75.21572726805299, 39.876019193741996], [-75.2157225921386, 39.87609686569248], [-75.21590037854007, 39.876060781394166], [-75.21604782206254, 39.876025894510676], [-75.21620413112939, 39.87599218827433], [-75.21636007782286, 39.875956244738106], [-75.21670070441829, 39.87587791040923], [-75.2168458904517, 39.87584442862628], [-75.21701387381843, 39.875808276381136], [-75.21751660232262, 39.87574670542258], [-75.21770149581347, 39.87572104235302], [-75.21785992648596, 39.87570214368064], [-75.21803436577785, 39.87568407065159], [-75.21832489893065, 39.875679545594956], [-75.21885677116845, 39.87567303314916], [-75.21924109217277, 39.87559284811976], [-75.21944440642542, 39.87554510553339], [-75.21963503168246, 39.87549816989502], [-75.2197372374579, 39.87547755582184], [-75.22086539016242, 39.87557153428044], [-75.22104101540015, 39.87558704603196], [-75.22126421291121, 39.875606141876716], [-75.22208388458552, 39.87567562076239], [-75.22269919578615, 39.875731361270006], [-75.22287056878407, 39.87575196887403], [-75.22311054008301, 39.875780408591524], [-75.22376593968741, 39.87585913878545], [-75.22465413819802, 39.87602438054643], [-75.22485767419093, 39.876061344325464], [-75.22502858924472, 39.87609467239676], [-75.22595270413426, 39.87626793580584], [-75.22686666491282, 39.87640468847385], [-75.2270790468691, 39.877121947231444], [-75.22815917458351, 39.88003256977026], [-75.22842306962197, 39.880662016182356], [-75.22860358752109, 39.881069006359276], [-75.2290332495557, 39.88134926578361], [-75.22954380194118, 39.88186455743175], [-75.22991293925438, 39.88241274077748], [-75.23041151898329, 39.883461829350814], [-75.23066845703238, 39.88389606718639], [-75.2322284423173, 39.88709009516002], [-75.2327809999355, 39.888139499933715], [-75.23324776242973, 39.888924237548636], [-75.23342721098632, 39.889179233455955], [-75.2337994542322, 39.88975864539145], [-75.23386570456779, 39.889868664508995], [-75.23389537835244, 39.88992325950736], [-75.23433288922183, 39.890728177407674], [-75.23517086911598, 39.892116369658126], [-75.23529169571022, 39.8923165253384], [-75.23541859937087, 39.89252674407812], [-75.23553237788855, 39.89271522200667], [-75.23580089524816, 39.893160027181764], [-75.23603700188254, 39.893564634635204], [-75.23667701289826, 39.8946011554303], [-75.23666598511215, 39.89476933490932], [-75.23689467576155, 39.89515973212516], [-75.23732505741685, 39.895827078972], [-75.23759565723081, 39.896336509301584], [-75.2379796426334, 39.89719487902062], [-75.23843650460832, 39.89853518883194], [-75.23853353425918, 39.89881426984991], [-75.23860219673388, 39.89901196227496], [-75.23882036732545, 39.899758714044], [-75.2389922133673, 39.900256656235065], [-75.23932225775096, 39.9013697638066], [-75.23983320878347, 39.90317834236422], [-75.2400959560168, 39.90399314262044], [-75.24014732197246, 39.90415242872423], [-75.24113345091519, 39.9072102906146], [-75.2413341826973, 39.907819007159155], [-75.24145455350472, 39.908071317402964], [-75.24168770469325, 39.90846228037278], [-75.24188534695105, 39.90904321628965], [-75.24236432839977, 39.91046957260359], [-75.24266035338107, 39.911384475824626], [-75.24302202420598, 39.912502230677866], [-75.24310411602268, 39.912751582693325], [-75.243227060544, 39.9131134123101], [-75.24361298418978, 39.91379130849596], [-75.24384947138104, 39.91409082898938], [-75.24466378165084, 39.915111444704294], [-75.24493532437597, 39.91545166166367], [-75.24530742066938, 39.91591785660964], [-75.24579391484275, 39.916542514305725], [-75.24630867702935, 39.91717730509635], [-75.24569206743418, 39.91761649681568], [-75.24508461804605, 39.918024650790926], [-75.24436630386, 39.918516744644144], [-75.24384258404814, 39.91887222098998], [-75.24298672789187, 39.91947764462562], [-75.24141606766713, 39.920581080752065], [-75.24004602105052, 39.92154812743355], [-75.23918469074945, 39.9221591409605], [-75.23840062295413, 39.922704513862946], [-75.23787063854797, 39.92307969673384], [-75.23740333296807, 39.92340134227495], [-75.23688443591094, 39.92376183517927], [-75.23623036495619, 39.924236356905006], [-75.23556761530502, 39.924705161692295], [-75.23513607401314, 39.924329110083455]]]}}, {"id": "1410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.21743760573125, 39.9724356476891], [-75.21717197868607, 39.97035239770751], [-75.21699640530869, 39.968970685609506], [-75.21636818230415, 39.969031120310326], [-75.21576217994979, 39.96909507783468], [-75.21528992999187, 39.96914249371162], [-75.21480839700534, 39.96919231816414], [-75.21435015898996, 39.969238605392725], [-75.21384602151933, 39.969289782379036], [-75.21384515928588, 39.96922812853912], [-75.21381710658514, 39.96903611423682], [-75.21379568055352, 39.96883284512564], [-75.21375007799544, 39.9684829244615], [-75.21370757697493, 39.968127131120845], [-75.2136500122597, 39.96769736954828], [-75.21351411433787, 39.966578304228385], [-75.21340694504758, 39.96570864921634], [-75.21337609340233, 39.965466918667126], [-75.21333806087627, 39.965168923090985], [-75.21322853775273, 39.96433250864373], [-75.21370729354383, 39.964296283029626], [-75.21419559539217, 39.964259332972176], [-75.21470015168937, 39.96422115065583], [-75.21516294851831, 39.964189471409064], [-75.21637741936549, 39.96409569079961], [-75.21822793170311, 39.96395720516577], [-75.21829467559881, 39.96449083190423], [-75.21836098136826, 39.965028922370635], [-75.2201709963554, 39.964845529988835], [-75.22011148713864, 39.96436075060387], [-75.22004478056664, 39.963820869515125], [-75.21976953596858, 39.96301130841067], [-75.21969376220423, 39.96252450315264], [-75.21943900765564, 39.96094235593091], [-75.21965042702726, 39.960957506554315], [-75.22059247702725, 39.961075874663585], [-75.2215794161934, 39.96119931296838], [-75.22206583290657, 39.96125897645551], [-75.22256784792319, 39.96132161960473], [-75.22355198385931, 39.96144479703293], [-75.2245421302761, 39.961568838865276], [-75.2252934967573, 39.96165947884321], [-75.22585395073848, 39.96172902647333], [-75.22651888853692, 39.96181383932179], [-75.22620387041475, 39.96333076392879], [-75.22600799891545, 39.96425105452764], [-75.22610999450255, 39.96488050967971], [-75.22593459599196, 39.964904030803716], [-75.22584462433898, 39.964944331733754], [-75.22575087538455, 39.965011065857176], [-75.22556752561768, 39.9651707802169], [-75.22546341299322, 39.9652056034123], [-75.22514198038573, 39.96509389861236], [-75.2245912459582, 39.96489703747408], [-75.22464125082206, 39.96518496270591], [-75.22474199418114, 39.96576621718402], [-75.22481339106439, 39.96620721153563], [-75.22488803837112, 39.96664398229281], [-75.22496396018423, 39.96711185914312], [-75.2250468750093, 39.96758631841902], [-75.22514103036552, 39.96814671704771], [-75.22521439736686, 39.96858969330798], [-75.22537367233548, 39.969518809027754], [-75.22561691682257, 39.97048021464085], [-75.22583491592414, 39.971365668757734], [-75.22584237062186, 39.97143175783036], [-75.22571266046691, 39.97146490113747], [-75.22538481137462, 39.97153234336764], [-75.22367290416578, 39.97189577011077], [-75.22261453670089, 39.97212115051214], [-75.2220108970832, 39.97225433167098], [-75.21907411728215, 39.97287838793546], [-75.21841780939198, 39.97302514811818], [-75.21776807540628, 39.97262800884351], [-75.21743760573125, 39.9724356476891]]]}}, {"id": "1420", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.21133586950056, 39.96872707840927], [-75.2101028280384, 39.967962921774266], [-75.2097592173279, 39.96775147153196], [-75.20954182337731, 39.967618069234746], [-75.20846364890292, 39.96695085866885], [-75.20756081755907, 39.966382069702114], [-75.20684764376574, 39.965941337176766], [-75.20649665464367, 39.965725642430144], [-75.20546777001317, 39.965091006712015], [-75.2054944052011, 39.96499566213355], [-75.205858304662, 39.964648011889416], [-75.2059006436575, 39.96454103570059], [-75.20646964200016, 39.96489331119399], [-75.20670917121294, 39.96482793900861], [-75.20729978319541, 39.96477937262457], [-75.20807891433056, 39.964718917722486], [-75.20869868242663, 39.96467001342774], [-75.20934412865095, 39.96462231322039], [-75.21080409595272, 39.96451449157884], [-75.21128676076057, 39.964479711314404], [-75.21140953138075, 39.96447065434011], [-75.21209161919754, 39.96441879936685], [-75.2127867388542, 39.96436595542734], [-75.21322853775273, 39.96433250864373], [-75.21333806087627, 39.965168923090985], [-75.21337609340233, 39.965466918667126], [-75.21340694504758, 39.96570864921634], [-75.21351411433787, 39.966578304228385], [-75.2136500122597, 39.96769736954828], [-75.21370757697493, 39.968127131120845], [-75.21375007799544, 39.9684829244615], [-75.21379568055352, 39.96883284512564], [-75.21381710658514, 39.96903611423682], [-75.21384515928588, 39.96922812853912], [-75.21384602151933, 39.969289782379036], [-75.21435015898996, 39.969238605392725], [-75.21480839700534, 39.96919231816414], [-75.21528992999187, 39.96914249371162], [-75.21576217994979, 39.96909507783468], [-75.21636818230415, 39.969031120310326], [-75.21699640530869, 39.968970685609506], [-75.21717197868607, 39.97035239770751], [-75.21743760573125, 39.9724356476891], [-75.21608600831708, 39.97161938133278], [-75.21499017096943, 39.9709560607137], [-75.21468810542842, 39.970774549650116], [-75.21454241075261, 39.970684580300244], [-75.2143190588701, 39.9705434928283], [-75.21390007921819, 39.970296393465695], [-75.21293442563362, 39.96971390666676], [-75.21264181899252, 39.96953740234732], [-75.2121349858603, 39.96922915050159], [-75.21133586950056, 39.96872707840927]]]}}, {"id": "1440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.24530742066938, 39.91591785660964], [-75.24493532437597, 39.91545166166367], [-75.24466378165084, 39.915111444704294], [-75.24384947138104, 39.91409082898938], [-75.24361298418978, 39.91379130849596], [-75.243227060544, 39.9131134123101], [-75.24310411602268, 39.912751582693325], [-75.24302202420598, 39.912502230677866], [-75.24266035338107, 39.911384475824626], [-75.24236432839977, 39.91046957260359], [-75.24188534695105, 39.90904321628965], [-75.24168770469325, 39.90846228037278], [-75.24145455350472, 39.908071317402964], [-75.2413341826973, 39.907819007159155], [-75.24113345091519, 39.9072102906146], [-75.24014732197246, 39.90415242872423], [-75.2400959560168, 39.90399314262044], [-75.23983320878347, 39.90317834236422], [-75.23932225775096, 39.9013697638066], [-75.2389922133673, 39.900256656235065], [-75.23882036732545, 39.899758714044], [-75.23860219673388, 39.89901196227496], [-75.23853353425918, 39.89881426984991], [-75.23843650460832, 39.89853518883194], [-75.2379796426334, 39.89719487902062], [-75.23759565723081, 39.896336509301584], [-75.23732505741685, 39.895827078972], [-75.23689467576155, 39.89515973212516], [-75.23666598511215, 39.89476933490932], [-75.23667701289826, 39.8946011554303], [-75.23603700188254, 39.893564634635204], [-75.23580089524816, 39.893160027181764], [-75.23553237788855, 39.89271522200667], [-75.23541859937087, 39.89252674407812], [-75.23529169571022, 39.8923165253384], [-75.23517086911598, 39.892116369658126], [-75.23433288922183, 39.890728177407674], [-75.23389537835244, 39.88992325950736], [-75.23386570456779, 39.889868664508995], [-75.2337994542322, 39.88975864539145], [-75.23342721098632, 39.889179233455955], [-75.23324776242973, 39.888924237548636], [-75.2327809999355, 39.888139499933715], [-75.2322284423173, 39.88709009516002], [-75.23066845703238, 39.88389606718639], [-75.23041151898329, 39.883461829350814], [-75.22991293925438, 39.88241274077748], [-75.22954380194118, 39.88186455743175], [-75.2290332495557, 39.88134926578361], [-75.22860358752109, 39.881069006359276], [-75.22842306962197, 39.880662016182356], [-75.22815917458351, 39.88003256977026], [-75.2270790468691, 39.877121947231444], [-75.22686666491282, 39.87640468847385], [-75.22711914707487, 39.876437058648364], [-75.22847167282687, 39.876632398326805], [-75.22872556068367, 39.87666862419972], [-75.22890678498037, 39.87669381108398], [-75.2299863334957, 39.87684818042749], [-75.23047679598254, 39.876890064343435], [-75.2306447581024, 39.87690255372097], [-75.23084727445985, 39.876920306590165], [-75.23102678790907, 39.87693697139211], [-75.23189970450814, 39.877014402944006], [-75.23231048302323, 39.877057607485526], [-75.23254937153801, 39.877083032876754], [-75.23265783054887, 39.87709439763272], [-75.23281489036877, 39.87711243410881], [-75.23299168568789, 39.87712948119487], [-75.23327104547879, 39.877155990450134], [-75.23398774988407, 39.87717958767282], [-75.23412226461492, 39.87718220502606], [-75.23430304728832, 39.87713717158413], [-75.23448191044382, 39.87709578169967], [-75.2346640349265, 39.877052144866816], [-75.23502555466166, 39.876965732166894], [-75.23553897150364, 39.87675287752604], [-75.23579675404763, 39.87658040156211], [-75.23592834018349, 39.87648943640926], [-75.23605087032027, 39.87640501548633], [-75.23637065491539, 39.87618865594084], [-75.23664115652106, 39.875737749515274], [-75.23671452279636, 39.875615424068336], [-75.23677402337746, 39.87547619722678], [-75.23693329822683, 39.87511798404234], [-75.23750019109423, 39.87508158250391], [-75.23759155607308, 39.87498314104562], [-75.23751900425653, 39.87489069568747], [-75.2374608944683, 39.87480537217064], [-75.2381110127738, 39.87459417857342], [-75.23824620953923, 39.87444783291262], [-75.23835204709452, 39.874333236143144], [-75.2386898454132, 39.87396028860272], [-75.23899372312925, 39.873837568937425], [-75.23917230471774, 39.87361000947073], [-75.23926127978736, 39.87349163936418], [-75.23934852226353, 39.87337318708348], [-75.23940465630135, 39.87330086702595], [-75.24009977322083, 39.87303120812651], [-75.24010531682733, 39.872859818033795], [-75.24010203692245, 39.872732155446734], [-75.2401014180843, 39.87261461255592], [-75.24047189157714, 39.87238290491107], [-75.24091818617407, 39.872403784289034], [-75.24108938603125, 39.87243912731901], [-75.24121666358654, 39.872467145592054], [-75.24139560399729, 39.87250783565143], [-75.24155609185267, 39.872541472125526], [-75.24174689698934, 39.8725866263106], [-75.24225469025525, 39.8727939090174], [-75.24256821080336, 39.872956274616854], [-75.24271293251525, 39.87303167146592], [-75.24675594886526, 39.87508692677362], [-75.24682507705292, 39.87514468498988], [-75.24843116673952, 39.876486517705914], [-75.25177007549969, 39.876008268019795], [-75.2522572765532, 39.87593847451019], [-75.25344115002632, 39.87600850453314], [-75.25397901087354, 39.87604316820538], [-75.25612836172884, 39.87617382688657], [-75.25742120146364, 39.87625239850408], [-75.25858930430861, 39.876323377245235], [-75.25952109442068, 39.876379988422464], [-75.26124986819036, 39.87648500020996], [-75.26253464448033, 39.87657101338095], [-75.26483205648415, 39.880647354801496], [-75.26500345296529, 39.88098283320505], [-75.26511241349733, 39.88165691623894], [-75.26454505532583, 39.882113666597995], [-75.26429795480313, 39.88224218937893], [-75.26308178020672, 39.88235579091961], [-75.26226289078176, 39.882571844384074], [-75.26194560986067, 39.88288888867857], [-75.26188556092026, 39.88306871152689], [-75.2619648414801, 39.88324018437365], [-75.26243256889265, 39.883634293208154], [-75.26413434517731, 39.88413377427175], [-75.26444410534837, 39.884314917831624], [-75.26463823565925, 39.88473376881503], [-75.264227371783, 39.88500223313561], [-75.26315322304049, 39.88530063993857], [-75.26272953306756, 39.88555405988555], [-75.26261697096858, 39.885805005360254], [-75.26268286125655, 39.88602596206221], [-75.2628037631714, 39.88608308133478], [-75.26368381808622, 39.88614529122091], [-75.26398148286944, 39.88609690542778], [-75.26428366505263, 39.88619301002159], [-75.26479848088731, 39.88644542327039], [-75.26485152464697, 39.88653708219026], [-75.26493409750464, 39.886673786544634], [-75.26503772097375, 39.88683343320687], [-75.26510529938675, 39.88698105572501], [-75.26513539479535, 39.887155972712485], [-75.26512903307312, 39.88733009834498], [-75.26509591997379, 39.88753737422559], [-75.26497854368195, 39.88775406469194], [-75.2648775952483, 39.88792051812417], [-75.26472581587099, 39.88808024886747], [-75.26459672735419, 39.88821798465446], [-75.26444658541898, 39.88833277777339], [-75.26426121679286, 39.88841307911788], [-75.26399646292565, 39.888469173198004], [-75.26372585348497, 39.88848578900923], [-75.26337647426388, 39.88846134543911], [-75.26297687522327, 39.88841332328015], [-75.26267977091516, 39.88835628254044], [-75.26247314241665, 39.88841925584918], [-75.2622932146623, 39.88855026444444], [-75.26219996310193, 39.88870564022349], [-75.26213382192496, 39.888917819787274], [-75.26209602532828, 39.88915309877558], [-75.26208092701746, 39.889366385421475], [-75.26208785386176, 39.88967571529459], [-75.26210130265099, 39.8899064854195], [-75.26212327937355, 39.89010371306425], [-75.26210961692534, 39.890277681125525], [-75.26210242524787, 39.890474274709355], [-75.26203587226061, 39.89069768785107], [-75.26188222118692, 39.89130708745025], [-75.26185500322245, 39.891452653996886], [-75.26179029803899, 39.891625513952086], [-75.26173349960943, 39.891781680833176], [-75.26160542559434, 39.89189132922739], [-75.26150492929955, 39.89194536088399], [-75.26131348888022, 39.89199179832038], [-75.26109852855167, 39.892082694840994], [-75.26073002527949, 39.89218149889538], [-75.26014173319912, 39.892303635552956], [-75.25992903257615, 39.892332744162395], [-75.25974570453546, 39.892356867490776], [-75.25954132387776, 39.89235804710291], [-75.25934987982089, 39.89240448033459], [-75.25910760004298, 39.89244418720454], [-75.25895846820406, 39.892530889134854], [-75.25877811246932, 39.89267312583547], [-75.25856879096838, 39.89280911317068], [-75.25838719659659, 39.89298505089836], [-75.25821268729047, 39.89316676456229], [-75.25802297698709, 39.89336501310601], [-75.25782941331842, 39.8935687961448], [-75.2576701035039, 39.89373397661408], [-75.25743375400573, 39.89400990882345], [-75.25691062195747, 39.89454381022039], [-75.25674319192008, 39.89473129797559], [-75.25666574008655, 39.89485328393727], [-75.25666265094684, 39.89493753946833], [-75.25671019421473, 39.89503413804727], [-75.25679193612685, 39.89519331631798], [-75.25696827170307, 39.8953601750748], [-75.25712499457705, 39.89546476846864], [-75.25727463402838, 39.895563587218106], [-75.25738980947702, 39.89570662738757], [-75.25736278601762, 39.895846576067925], [-75.25727701118751, 39.89599649052031], [-75.257147276008, 39.89615106922877], [-75.25693526480914, 39.89636007195456], [-75.25676239047758, 39.896496847241195], [-75.2564504267347, 39.896844213135324], [-75.25623676099224, 39.8970981515777], [-75.25609099485138, 39.89729173024855], [-75.25598230732751, 39.89746925259397], [-75.25580510305767, 39.89772398183689], [-75.25561819449672, 39.89794477289789], [-75.25550723823173, 39.8981840804194], [-75.25533064848462, 39.898421958548546], [-75.25522587248224, 39.89849275841124], [-75.25515673523988, 39.89858681807738], [-75.25509592180552, 39.89865295158884], [-75.25509569832735, 39.89876237738784], [-75.25511767379889, 39.89885579733446], [-75.25516707347406, 39.898901843644225], [-75.25523464359028, 39.89904947289799], [-75.25533991056038, 39.89916419034909], [-75.25548749498242, 39.899319182958166], [-75.25565079473147, 39.89950546904604], [-75.25551927441859, 39.899671817467535], [-75.2537125750273, 39.90165972354577], [-75.25128930933779, 39.90440464653971], [-75.25349030441225, 39.90558931620286], [-75.25247650491937, 39.906629316501075], [-75.25239433810611, 39.90663279088665], [-75.25215241629941, 39.90666124857997], [-75.25199092786976, 39.90668583626129], [-75.25175526466995, 39.90674253861986], [-75.25162859233201, 39.906812856580146], [-75.25149765214105, 39.9068999452429], [-75.2513030688708, 39.907030619593826], [-75.25105680761287, 39.90717703101529], [-75.25087033953598, 39.90728539552146], [-75.25071407900656, 39.90736630916673], [-75.25044490386146, 39.90754032801137], [-75.25031760916022, 39.90762749577421], [-75.25027074898914, 39.907710796000934], [-75.25022327032462, 39.90781094748396], [-75.25020475982173, 39.90791735099786], [-75.25018480243162, 39.90806307466613], [-75.25019842217804, 39.90828822850089], [-75.25019243325477, 39.90845111971399], [-75.25016621596865, 39.9085685995522], [-75.25011667252429, 39.908724919746994], [-75.25004503830664, 39.90888637949426], [-75.25000278670556, 39.90904285865848], [-75.2499330142538, 39.90915376556626], [-75.24989200148285, 39.90927654309308], [-75.24991807752134, 39.909361434647856], [-75.2500059768168, 39.90945084765427], [-75.25014975380923, 39.909512644596155], [-75.25028001024752, 39.90954359212601], [-75.25046964910027, 39.90954772687289], [-75.25065075551524, 39.90958540390398], [-75.25088188492465, 39.909652278422946], [-75.25110530948446, 39.90973022709381], [-75.25122682697439, 39.90980033293835], [-75.25129687653734, 39.909880560379776], [-75.25128483388012, 39.910009591046034], [-75.25123632293, 39.91013782777179], [-75.25112175484563, 39.910275867253], [-75.2510003032828, 39.91040251131497], [-75.25087052511984, 39.91055708467883], [-75.25071989775354, 39.91068309337084], [-75.25061365619707, 39.91079320657612], [-75.2505363791607, 39.910909573348086], [-75.25039930530177, 39.911063985363604], [-75.25019293955206, 39.91121688638701], [-75.24992663835961, 39.911312265420186], [-75.24974869265492, 39.91138708470562], [-75.2495184447701, 39.91149449164222], [-75.24933320197647, 39.91156915205354], [-75.24916213543847, 39.911655365782146], [-75.24898294714365, 39.91176388364004], [-75.24885502150394, 39.91186790279346], [-75.2487627393239, 39.911995182787926], [-75.24872048397681, 39.91215166240069], [-75.24868531572548, 39.91231391610877], [-75.24859764111719, 39.91251437506987], [-75.24855744936804, 39.91261468496965], [-75.2485093471108, 39.91273168612919], [-75.24843206430398, 39.912848050580614], [-75.2483774921136, 39.91294242446679], [-75.24829436285583, 39.91301931134196], [-75.24821164681734, 39.91308496369788], [-75.24805516189605, 39.9131714913694], [-75.2478317892695, 39.91329028952387], [-75.24760174098992, 39.9133920758825], [-75.24740045441959, 39.913505733991265], [-75.24720061585029, 39.91358007162903], [-75.24711665739866, 39.913679423859584], [-75.24706916988879, 39.91377957493105], [-75.24706441372602, 39.91390876440819], [-75.24711780437835, 39.914044843650025], [-75.2472228763013, 39.91416518896761], [-75.24733408398963, 39.91429965601948], [-75.24741208913824, 39.91441967161091], [-75.24748929415475, 39.91453956246071], [-75.24755284722504, 39.91458332237008], [-75.24763258569716, 39.914637510394016], [-75.24770662962136, 39.91472304303108], [-75.24771599704783, 39.91483863123591], [-75.24765491195821, 39.91495618126942], [-75.24755500478895, 39.915079875646406], [-75.24748646962614, 39.9152147431452], [-75.24734794882932, 39.915400532460204], [-75.24718840961387, 39.915633064899126], [-75.24713723270843, 39.915728100742655], [-75.24705774010306, 39.915852240368565], [-75.24698899190108, 39.91593116033967], [-75.24692037341751, 39.91600658455143], [-75.24684242492191, 39.91608879943717], [-75.24676795121663, 39.91619993631191], [-75.2467642932783, 39.9163301039174], [-75.24678714191808, 39.91644948240546], [-75.24683526643057, 39.91656067488572], [-75.24687750416045, 39.916708450661766], [-75.24693674751636, 39.91687235782663], [-75.24680156527874, 39.91691935941637], [-75.24630867702935, 39.91717730509635], [-75.24579391484275, 39.916542514305725], [-75.24530742066938, 39.91591785660964]]]}}, {"id": "1460", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.2479150844622, 39.951536880554066], [-75.247009840884, 39.951425676409585], [-75.2450360575381, 39.951182802514985], [-75.24306881403976, 39.950927192723235], [-75.24109450326601, 39.950692270332034], [-75.24069436633458, 39.95064649730623], [-75.23911844388543, 39.95044725003495], [-75.23923238939335, 39.949924521244796], [-75.23927440166064, 39.949684921302314], [-75.23932370145442, 39.9494647936597], [-75.23943075805695, 39.948932176911185], [-75.23954828494823, 39.948400336142036], [-75.23964252610631, 39.94793342398709], [-75.23974733758466, 39.94741236360347], [-75.23908222323139, 39.947328992099386], [-75.23851335441049, 39.947252263214494], [-75.23780518132565, 39.94716576557371], [-75.2358829211119, 39.94691536369008], [-75.23582936378949, 39.94682710323594], [-75.23613850521272, 39.9467345520364], [-75.2372711913911, 39.946464148088374], [-75.23704771881377, 39.94581994805673], [-75.23691855078515, 39.945425323267074], [-75.23669771791725, 39.944750634695254], [-75.23662273656555, 39.944670466417236], [-75.23592745137182, 39.94408559216122], [-75.23521991589762, 39.94349567046655], [-75.2347335948175, 39.943088277988174], [-75.23453049110597, 39.94290822712017], [-75.23432126745027, 39.94274206383771], [-75.23382951822354, 39.9423175806767], [-75.23503453869628, 39.941475085310834], [-75.23660687954481, 39.94036655046346], [-75.23676093795004, 39.940263706211184], [-75.2369297568647, 39.940185303009926], [-75.23708098652438, 39.94015516792562], [-75.23719951600373, 39.94015472211588], [-75.23758544765711, 39.940187504362896], [-75.23773600317422, 39.94017559699575], [-75.23787144698669, 39.94014511600913], [-75.23807984787723, 39.9400645345292], [-75.2384519774567, 39.93982941531003], [-75.23873187557751, 39.93973823665251], [-75.2390011854177, 39.93971980516514], [-75.2392059914378, 39.939736453084166], [-75.23943990595043, 39.939820635715826], [-75.23989199360169, 39.94004014682548], [-75.23979706027087, 39.94016615089987], [-75.23963619396534, 39.94030370778195], [-75.23952755920212, 39.94043300312951], [-75.2394110853556, 39.94060915418838], [-75.23939994623606, 39.940745285754275], [-75.23943119117071, 39.940891748735226], [-75.2394627844872, 39.941028816554144], [-75.23949455033176, 39.941161185848685], [-75.23956276907694, 39.941299054383975], [-75.23963150767999, 39.941422825582684], [-75.23973514074508, 39.94159438872307], [-75.2398462657806, 39.941728492006625], [-75.23998687240154, 39.94189145947086], [-75.24007461985713, 39.94199683719933], [-75.24015068012862, 39.942087849549964], [-75.2402525485793, 39.94214180825931], [-75.24036749300917, 39.94217253883913], [-75.24051958489318, 39.94218997428521], [-75.24079019232238, 39.94222411094424], [-75.24095432029354, 39.94224651140097], [-75.24117966619639, 39.94226554836925], [-75.24144809122451, 39.94227612249643], [-75.24158325771072, 39.942255565363865], [-75.24182813123383, 39.942242109411644], [-75.24203585638982, 39.94224194933295], [-75.24229224786727, 39.94224755517845], [-75.24260916018603, 39.94226859033457], [-75.24306682511775, 39.94228329739258], [-75.24317583911444, 39.94230919322389], [-75.24333386277866, 39.94233145774275], [-75.24342183720493, 39.9424031306937], [-75.24353132598557, 39.94244393177221], [-75.24384466821566, 39.942478995021226], [-75.24406984478041, 39.94250272485993], [-75.24441013930479, 39.94255248223813], [-75.24465921076852, 39.9425908406283], [-75.24501327559021, 39.942598573749684], [-75.24522641200451, 39.94261733697132], [-75.24540989616517, 39.94261193821132], [-75.24556268300977, 39.94261057117742], [-75.24574006062808, 39.942605039457135], [-75.24588691642424, 39.9425988411207], [-75.2460515652383, 39.942607136961705], [-75.24619179634958, 39.94261490135258], [-75.24634947668152, 39.94264655874255], [-75.24647087390112, 39.94266801852095], [-75.2465673353056, 39.942703043463474], [-75.24666275716746, 39.94276625930145], [-75.24674493354301, 39.942857402353084], [-75.24682319210106, 39.94297197212895], [-75.24687224727833, 39.94313293092056], [-75.24696507507956, 39.94326663034335], [-75.24702620470116, 39.94340096604385], [-75.24704275162517, 39.94347994137679], [-75.24705201906154, 39.94356008862358], [-75.24710856744471, 39.94368358988301], [-75.24721031694125, 39.943906831522696], [-75.24730418365363, 39.9440123360361], [-75.2473788713993, 39.94414093700209], [-75.2474221717518, 39.94429236359239], [-75.24750958892079, 39.944407133557625], [-75.24763363452908, 39.94452270253974], [-75.24775716387462, 39.94465236694402], [-75.24789866060215, 39.944791829492104], [-75.24809187358932, 39.94493712126483], [-75.24816812079952, 39.9450234315929], [-75.24821367231563, 39.9451137737495], [-75.24823342138605, 39.94524117492926], [-75.24832084114503, 39.94535594427416], [-75.24841453978733, 39.94546614640421], [-75.24856370064882, 39.945563452033795], [-75.24870606571926, 39.9456794192683], [-75.24889571133043, 39.945838739524625], [-75.24907925456405, 39.945997926398356], [-75.24924431232968, 39.94616141402758], [-75.24946065549328, 39.9463424769117], [-75.24958347171865, 39.94640863981163], [-75.24970994612936, 39.946458423006696], [-75.24981078915437, 39.946540564200866], [-75.24991739115657, 39.946632236266126], [-75.24996634576978, 39.94671324817739], [-75.25003580135257, 39.946818220034245], [-75.2501155659711, 39.94697514241003], [-75.25015311418076, 39.94711703878613], [-75.250203219714, 39.94724980335927], [-75.25022855799462, 39.947391432714554], [-75.25027048390123, 39.94758044986304], [-75.25030803393837, 39.94772234621211], [-75.25033999690227, 39.9478500130795], [-75.25036568133079, 39.94798224629221], [-75.25041647814537, 39.94809621492207], [-75.25047441797892, 39.94818212374083], [-75.25055729620446, 39.94825446820339], [-75.2507237456042, 39.948380362950324], [-75.25106355401404, 39.94869343352228], [-75.25119302815983, 39.94882792748606], [-75.25131725976834, 39.94893879214235], [-75.25144201355148, 39.94903556211972], [-75.2515064057238, 39.9491122063701], [-75.25155720529563, 39.949226174492196], [-75.25156791888983, 39.94943332122067], [-75.25151775411985, 39.94963443973513], [-75.25141264130527, 39.949834361407255], [-75.2513099480394, 39.94996850031347], [-75.25124301808243, 39.95012693131531], [-75.25119509934306, 39.9502669655252], [-75.25115293849704, 39.95041652968595], [-75.25115011513842, 39.950576356184946], [-75.251140122282, 39.95068194634544], [-75.25117381734422, 39.95076262523385], [-75.25126755486544, 39.95095512118756], [-75.25134940176488, 39.95105565793863], [-75.25142566000874, 39.95114196519043], [-75.25151669257959, 39.95120037965305], [-75.2515854948273, 39.95128182303045], [-75.25160916664608, 39.951385793918924], [-75.25160951214247, 39.95150101560536], [-75.2516263028047, 39.95162599908733], [-75.25164623288835, 39.95174870205532], [-75.25164870854749, 39.951847509935924], [-75.25163566592619, 39.95198234743004], [-75.24905672667398, 39.951680580210244], [-75.2479150844622, 39.951536880554066]]]}}, {"id": "1470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20387347516974, 39.964090178702016], [-75.20359833000241, 39.96392299732029], [-75.2023438055402, 39.96313896353822], [-75.2023726595329, 39.96305658206573], [-75.20237007739473, 39.962953675953656], [-75.20236191691136, 39.96286067235433], [-75.20229860475062, 39.96224817811425], [-75.20226648573353, 39.96194501383715], [-75.20223531539463, 39.961644753824054], [-75.20219593881716, 39.96124957541975], [-75.20210283042897, 39.960407347841496], [-75.20197181660889, 39.95917785982849], [-75.20183425804929, 39.957872636352754], [-75.20195465540273, 39.95715039346624], [-75.20211564815075, 39.9563775533588], [-75.20227410024071, 39.95563137506652], [-75.20242872567167, 39.95487206779536], [-75.20493395028417, 39.95518253615201], [-75.20627514003934, 39.95534885213713], [-75.20743601295325, 39.955494992080155], [-75.2081284652613, 39.95557966630101], [-75.20860052207796, 39.95563794179296], [-75.20902166889157, 39.95568856536521], [-75.20948109276688, 39.955744379668474], [-75.20989899490549, 39.95580099729136], [-75.21047643999862, 39.95587085889744], [-75.21152003707512, 39.95600154425636], [-75.21349888053125, 39.95624499884447], [-75.21448395011627, 39.95636717836012], [-75.21547238743408, 39.95649087345359], [-75.21748321535274, 39.95674015237582], [-75.21942250421269, 39.95698073769441], [-75.22131207548387, 39.95721387899676], [-75.22139876232934, 39.95722829373262], [-75.2212452105831, 39.95798512282026], [-75.22108669773192, 39.95873296666356], [-75.22092091673352, 39.959506370957484], [-75.22190949565909, 39.95962711754266], [-75.22239684004771, 39.95968156550928], [-75.22290106608362, 39.95974637621446], [-75.22388433780017, 39.95986316309301], [-75.22421322127714, 39.95990071720949], [-75.22477258922517, 39.9599762940573], [-75.22486806570537, 39.960006758007836], [-75.22620947880866, 39.96016033418035], [-75.22685117094453, 39.96024000475525], [-75.2274440501019, 39.96031227707355], [-75.22797617665447, 39.96037854276966], [-75.22864645665969, 39.96046483588109], [-75.22831950768749, 39.96203465368984], [-75.22767177235322, 39.961956483381094], [-75.22716073419876, 39.96189346163298], [-75.22651888853692, 39.96181383932179], [-75.22585395073848, 39.96172902647333], [-75.2252934967573, 39.96165947884321], [-75.2245421302761, 39.961568838865276], [-75.22355198385931, 39.96144479703293], [-75.22256784792319, 39.96132161960473], [-75.22206583290657, 39.96125897645551], [-75.2215794161934, 39.96119931296838], [-75.22059247702725, 39.961075874663585], [-75.21965042702726, 39.960957506554315], [-75.21943900765564, 39.96094235593091], [-75.21969376220423, 39.96252450315264], [-75.21976953596858, 39.96301130841067], [-75.22004478056664, 39.963820869515125], [-75.22011148713864, 39.96436075060387], [-75.2201709963554, 39.964845529988835], [-75.21836098136826, 39.965028922370635], [-75.21829467559881, 39.96449083190423], [-75.21822793170311, 39.96395720516577], [-75.21637741936549, 39.96409569079961], [-75.21516294851831, 39.964189471409064], [-75.21470015168937, 39.96422115065583], [-75.21419559539217, 39.964259332972176], [-75.21370729354383, 39.964296283029626], [-75.21322853775273, 39.96433250864373], [-75.2127867388542, 39.96436595542734], [-75.21209161919754, 39.96441879936685], [-75.21140953138075, 39.96447065434011], [-75.21128676076057, 39.964479711314404], [-75.21080409595272, 39.96451449157884], [-75.20934412865095, 39.96462231322039], [-75.20869868242663, 39.96467001342774], [-75.20807891433056, 39.964718917722486], [-75.20729978319541, 39.96477937262457], [-75.20670917121294, 39.96482793900861], [-75.20646964200016, 39.96489331119399], [-75.2059006436575, 39.96454103570059], [-75.205858304662, 39.964648011889416], [-75.2054944052011, 39.96499566213355], [-75.20546777001317, 39.965091006712015], [-75.204539731006, 39.96451398788996], [-75.20387347516974, 39.964090178702016]]]}}, {"id": "1490", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.19577203856599, 39.975054075529776], [-75.19602558226443, 39.974877551471934], [-75.19627710586025, 39.97469896547529], [-75.19652544619335, 39.97451751410253], [-75.1967697217073, 39.9743329092601], [-75.19700906804599, 39.97414484161994], [-75.19724347719469, 39.97395315065537], [-75.19747675915838, 39.97375745082089], [-75.19769427033506, 39.9735526068525], [-75.19776267748833, 39.97347047176852], [-75.19796973622626, 39.97326048165323], [-75.19817373991863, 39.97304817344242], [-75.1983798864382, 39.972837364965635], [-75.19881896232208, 39.97243574288791], [-75.19906596864303, 39.97225320340784], [-75.19933172317984, 39.972085236761686], [-75.19960966378463, 39.9719314879363], [-75.19990132964449, 39.9717951923184], [-75.20020658391334, 39.97167432130029], [-75.2005167783354, 39.97156188994687], [-75.2008300396192, 39.97145629876278], [-75.20114834189835, 39.97135896109926], [-75.20146991414583, 39.97126904739688], [-75.20179527631387, 39.97118609164044], [-75.20212582727534, 39.97111679138892], [-75.20246146679227, 39.97106857044634], [-75.20280217542738, 39.97103558441613], [-75.2031438609358, 39.971018855159635], [-75.20348653944679, 39.97101458528833], [-75.20373778519559, 39.9710135329684], [-75.20372444604058, 39.970940143918334], [-75.20372256837196, 39.97092991009466], [-75.20365192712485, 39.970536711194484], [-75.20363324664117, 39.970432344209144], [-75.20360222096758, 39.970262038082865], [-75.20418303772176, 39.97042967509766], [-75.20430221981374, 39.970442136607105], [-75.2047464601045, 39.97038654791297], [-75.20529383804944, 39.97032724144262], [-75.20584308660476, 39.97027633607101], [-75.20664160684923, 39.97018882439134], [-75.2071715109633, 39.970134859313845], [-75.20822768613749, 39.97001688531799], [-75.20920137525263, 39.969908239553455], [-75.21013836492584, 39.969805350585304], [-75.2115166052264, 39.96965576250502], [-75.21133586950056, 39.96872707840927], [-75.2121349858603, 39.96922915050159], [-75.21264181899252, 39.96953740234732], [-75.21293442563362, 39.96971390666676], [-75.21390007921819, 39.970296393465695], [-75.2143190588701, 39.9705434928283], [-75.21454241075261, 39.970684580300244], [-75.21468810542842, 39.970774549650116], [-75.21499017096943, 39.9709560607137], [-75.21608600831708, 39.97161938133278], [-75.21743760573125, 39.9724356476891], [-75.21776807540628, 39.97262800884351], [-75.21841780939198, 39.97302514811818], [-75.21907411728215, 39.97287838793546], [-75.2220108970832, 39.97225433167098], [-75.22261453670089, 39.97212115051214], [-75.22270951231486, 39.972650541751854], [-75.22282886363037, 39.97331979648558], [-75.22294655328514, 39.97398536539481], [-75.22303908602558, 39.97452647937162], [-75.22298525071733, 39.97459343456398], [-75.22247529477978, 39.97521309980976], [-75.22198187468743, 39.975783466924824], [-75.21947213701459, 39.980017477693615], [-75.22145350543394, 39.980750514692936], [-75.22248973525193, 39.98113780900851], [-75.22315828235908, 39.98138230866424], [-75.22354641209124, 39.98147582405985], [-75.22367524703087, 39.98151036448287], [-75.22379084515117, 39.98152112708002], [-75.22406693790319, 39.9815094868596], [-75.22516370803253, 39.98133793425713], [-75.22620352276934, 39.98160917075345], [-75.22611408407533, 39.98131069652115], [-75.22598506456495, 39.98110344713947], [-75.2263870091941, 39.98045849853005], [-75.22671454102148, 39.97993866394432], [-75.22720762006905, 39.98011875105071], [-75.22769983954039, 39.98030167955546], [-75.22815173844755, 39.980464672815025], [-75.22879489571393, 39.98070223660668], [-75.22889328745423, 39.98044163690388], [-75.22894558230313, 39.98018044797911], [-75.22896768418192, 39.97991725419923], [-75.22894765996324, 39.97965218987119], [-75.22883996273082, 39.9794043519961], [-75.2286785702593, 39.97916872493492], [-75.22847274984605, 39.97896106777772], [-75.2282261652399, 39.97877771624851], [-75.22797358650385, 39.97859771478237], [-75.22828221080628, 39.97871136403067], [-75.228590933066, 39.97882486230994], [-75.22889973957359, 39.978938231843195], [-75.2292086142462, 39.97905149570235], [-75.22951753986443, 39.97916467603367], [-75.22982650974122, 39.97927779521482], [-75.2301355031137, 39.97939087621543], [-75.23044450507051, 39.979503942133874], [-75.2307535042112, 39.979617016145696], [-75.23106248696217, 39.97973011687391], [-75.23137143593905, 39.97984327096704], [-75.23168033629835, 39.97995649972348], [-75.23198917553752, 39.980069824493164], [-75.23229793874704, 39.980183268375384], [-75.23260660981407, 39.9802968553442], [-75.23291517861085, 39.980410605900985], [-75.23322362317393, 39.98052454389186], [-75.23353193685344, 39.98063869079578], [-75.23384010002718, 39.98075307051039], [-75.2339591056347, 39.98079736322357], [-75.23414810250182, 39.980867705338326], [-75.23445592365209, 39.980982614650586], [-75.2347635565961, 39.98109782622857], [-75.23507097953902, 39.98121335941804], [-75.235377642931, 39.981330075243065], [-75.23568320596944, 39.981448511344695], [-75.23598789645939, 39.98156830421485], [-75.23629195306646, 39.98168908157105], [-75.23659561047401, 39.98181048365511], [-75.2368991025902, 39.9819321398775], [-75.23720266549203, 39.982053684198895], [-75.23750653404826, 39.98217475145208], [-75.23781094088199, 39.98229497371522], [-75.23811612436292, 39.98241398589309], [-75.23842231593397, 39.98253142003323], [-75.2386133941012, 39.98260314982133], [-75.23804864757997, 39.983543684060464], [-75.23724158388768, 39.98484131042433], [-75.23706281145029, 39.985185697132245], [-75.2370231010044, 39.98540656857109], [-75.23703091898771, 39.98562024376696], [-75.23710876338059, 39.98601125589341], [-75.23717648623028, 39.98644054310879], [-75.23725085241536, 39.98680733861259], [-75.2373285938853, 39.98720332445263], [-75.23739313190914, 39.98757243465119], [-75.23748943446314, 39.98799758547654], [-75.2375631490965, 39.988463737913676], [-75.23765550028003, 39.98890523796826], [-75.23564564878774, 39.98930950082446], [-75.23324262339091, 39.989800273494986], [-75.23338610249759, 39.990219535799035], [-75.23352857182715, 39.9906545575648], [-75.23359749986912, 39.99120535295872], [-75.23367398957797, 39.99188356603107], [-75.2323148913867, 39.991816057524225], [-75.23106116474393, 39.9917654288331], [-75.22979802627162, 39.99168345486216], [-75.2280883871952, 39.991602844416676], [-75.22657305587288, 39.99151720367018], [-75.2256632571371, 39.99147004260671], [-75.22566378621964, 39.991668073566466], [-75.22566509729694, 39.99193131606456], [-75.22566638868767, 39.99219455272114], [-75.22566786217705, 39.99245777535982], [-75.22567059622207, 39.99272099508398], [-75.22567375670262, 39.99298421427232], [-75.22567642287149, 39.993247433398864], [-75.22567775345844, 39.99351065738886], [-75.22567828034347, 39.99377388442448], [-75.22567836679947, 39.994037110781896], [-75.22567805954006, 39.99430034019153], [-75.2256773950464, 39.994563568049735], [-75.22567642371229, 39.994826793662824], [-75.22567455961851, 39.99509002216579], [-75.22567010232133, 39.99535327112508], [-75.22566580829185, 39.995616507455004], [-75.22566493201093, 39.995879695505955], [-75.22566923068271, 39.99614311989164], [-75.22568472491396, 39.99640629852711], [-75.22572752377033, 39.996666869140945], [-75.22579555639331, 39.996925115022684], [-75.22586692375164, 39.99718275752846], [-75.22594031130318, 39.99743986415371], [-75.22601504426356, 39.99769675072328], [-75.22608608367426, 39.997954372323946], [-75.22616242542166, 39.99821093374118], [-75.22625254080789, 39.998464825518425], [-75.22634869197259, 39.99871762814741], [-75.2264516454373, 39.99896873497252], [-75.2265638188994, 39.9992172737964], [-75.22669187430814, 39.9994616214683], [-75.22683366659172, 39.99970118297861], [-75.22698380731825, 39.99993764724526], [-75.22713826559976, 40.00017261411573], [-75.22738074986843, 40.00054046140214], [-75.2274782674168, 40.00074008910896], [-75.22641469824666, 40.001239711627804], [-75.22362994305126, 40.00254779807926], [-75.22069649209475, 40.003925603511995], [-75.21922467833316, 40.004616846915006], [-75.2183458956281, 40.005029556222254], [-75.21577504285966, 40.006236852254894], [-75.21457036263607, 40.00680254793726], [-75.21375540196738, 40.0071470494259], [-75.2130457386327, 40.00744703273062], [-75.21076679598913, 40.00855247204905], [-75.20926651565273, 40.00948811598932], [-75.20838974912195, 40.01004762447749], [-75.20810571601615, 40.010233172363904], [-75.20802453324175, 40.01028672353252], [-75.20794649428309, 40.010338203472806], [-75.20786763334567, 40.0103882568974], [-75.20758817071156, 40.010589319998054], [-75.20726214950554, 40.01076818862627], [-75.20725181468926, 40.01087702961448], [-75.20723867124346, 40.01101543243763], [-75.20699226425197, 40.01119720508264], [-75.20613902163231, 40.01182662245913], [-75.20605558240162, 40.01177134883842], [-75.20598118504968, 40.011722063535636], [-75.20583087553283, 40.01162249423849], [-75.20556089846534, 40.01144637353623], [-75.20493269018309, 40.011036554083525], [-75.20411797328548, 40.01067887127354], [-75.20278453559125, 40.0101681675687], [-75.20096916234523, 40.0095052402321], [-75.1995671662532, 40.00910618352392], [-75.19798662998474, 40.00856163000309], [-75.19741007533945, 40.00838739067628], [-75.19662197462642, 40.00814921442729], [-75.19523788704916, 40.00776465223345], [-75.1940657933079, 40.007370640630775], [-75.1931745133191, 40.006946139642274], [-75.19282909227685, 40.006720041632185], [-75.19248650438152, 40.00648631915835], [-75.19210817108346, 40.0059917246091], [-75.19202407067375, 40.00588177689373], [-75.19175386735485, 40.005238965345704], [-75.1915353587339, 40.00420107841301], [-75.19141944287965, 40.002882461289495], [-75.19156264214371, 40.00079131936958], [-75.19173829317083, 39.9995496686985], [-75.19209975304122, 39.99825612471282], [-75.19248952170433, 39.997189339779744], [-75.19387315409962, 39.99538054058539], [-75.19391207372766, 39.99533311331511], [-75.19493374887762, 39.99408810699247], [-75.196736443141, 39.992628239307074], [-75.19756018726912, 39.99169754451703], [-75.19966543084527, 39.98983487779526], [-75.20081185837654, 39.98869997403805], [-75.2026800703466, 39.98695844335217], [-75.20360707217432, 39.986030905550386], [-75.20387968529906, 39.985634231063315], [-75.20422970568241, 39.98512491133937], [-75.20439335041645, 39.9841945852112], [-75.2042911849591, 39.98348477637556], [-75.20402042808387, 39.98285613357483], [-75.20322001689851, 39.9816355506211], [-75.20149254570359, 39.98036607676244], [-75.19968966493572, 39.97939206820288], [-75.19768041890876, 39.978526648404426], [-75.19616318765962, 39.9777853486629], [-75.19500983450119, 39.97715118683491], [-75.19422140431261, 39.976595895992624], [-75.19395195788799, 39.976275795675406], [-75.19316767010415, 39.97534404688133], [-75.19423227229858, 39.97523277524366], [-75.19435026987784, 39.97522044197228], [-75.19438620060323, 39.97521668577702], [-75.19440416945793, 39.975214808203454], [-75.19461061691396, 39.97519322869778], [-75.1946275299596, 39.97519146092737], [-75.19466135487802, 39.97518792535294], [-75.19489863948688, 39.97516312254212], [-75.19541223775175, 39.97510346411268], [-75.19575612004209, 39.97506493243013], [-75.19577203856599, 39.975054075529776]]]}}, {"id": "2000", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-75.18910493952532, 39.920684126443284], [-75.18825459471665, 39.919754693708725], [-75.18803994232465, 39.919456388448246], [-75.1877964349535, 39.91925229894708], [-75.18743741577522, 39.91905085589099], [-75.18735445155635, 39.91900684701349], [-75.18696229271059, 39.918867726114804], [-75.1860247859152, 39.91869097912871], [-75.18510032904231, 39.918554256265494], [-75.18440337252183, 39.91844380213035], [-75.18282151039273, 39.918233589219184], [-75.18279356431404, 39.9183597213585], [-75.18251211277983, 39.91963000802967], [-75.18222126839873, 39.92087175608389], [-75.18141846905199, 39.92077361841488], [-75.18123535356035, 39.92073887462593], [-75.18089486899946, 39.920705255663606], [-75.1803152087144, 39.92062101252252], [-75.17976291264522, 39.92055068325926], [-75.17952902810964, 39.92052150129681], [-75.17926924046455, 39.920489878413086], [-75.1787385022326, 39.92041614683869], [-75.17795486096878, 39.92030994298901], [-75.17716829123836, 39.920219553776164], [-75.17636766741929, 39.92010990347405], [-75.17561598837206, 39.92001434807827], [-75.17504683556119, 39.91994488243412], [-75.1745883463195, 39.919885815943516], [-75.17403428189978, 39.91981077618362], [-75.1734928793705, 39.91974405438717], [-75.17300577989006, 39.91968075076979], [-75.17244736593929, 39.919622458981124], [-75.1719403514858, 39.91954497164647], [-75.17148785787545, 39.91948650588742], [-75.17085501498846, 39.91941145488218], [-75.17071125143731, 39.91939499497743], [-75.17044815178282, 39.920640631710256], [-75.17017980089858, 39.92188608861979], [-75.16988103061077, 39.92313243740692], [-75.16962817132318, 39.92437326570684], [-75.16936345812617, 39.9255916618934], [-75.16858370524805, 39.925735735040625], [-75.16827005616757, 39.92579796641468], [-75.16814853042906, 39.92587633156481], [-75.16735196028873, 39.92658051443639], [-75.16707544714461, 39.9267996097307], [-75.16693484483235, 39.92696974221468], [-75.16680492486368, 39.9270372236799], [-75.16607242906038, 39.92766380901158], [-75.16561566805156, 39.92804872141151], [-75.16499105619756, 39.92860420597811], [-75.16491618038036, 39.9286972752806], [-75.1647192203154, 39.928806524439224], [-75.16350489234422, 39.92983116343739], [-75.16338146889682, 39.92986525821064], [-75.16309117136602, 39.92979380701216], [-75.16153046192896, 39.929591284894535], [-75.15995614612446, 39.92938155204747], [-75.15839497176025, 39.929178905161756], [-75.15848925602083, 39.92875090689285], [-75.15857052894737, 39.92838214301248], [-75.15866709929699, 39.92795628486429], [-75.1571168474594, 39.92775353680199], [-75.15554667164844, 39.92755123944602], [-75.15563576259312, 39.92712161735258], [-75.15572893564023, 39.92674641991947], [-75.15581744065317, 39.92632687949197], [-75.1559164878003, 39.92589050049036], [-75.15599714266362, 39.92553379424899], [-75.15609589958217, 39.92510492938023], [-75.15618955933125, 39.92467252257764], [-75.15627477264952, 39.924315763437455], [-75.15637192114352, 39.923887217923706], [-75.15645544526281, 39.92347644043542], [-75.1565294138035, 39.92314220999085], [-75.15662765076334, 39.92268960638305], [-75.15662762676548, 39.92268960326718], [-75.15672342494948, 39.92224299041257], [-75.156796516091, 39.921888314809685], [-75.15689398554146, 39.92145832561094], [-75.15699075641116, 39.92100848552829], [-75.1570547827128, 39.920717378930306], [-75.15716320987288, 39.92021274919351], [-75.15743363710435, 39.91896268003674], [-75.15799330145335, 39.919026931126155], [-75.15846220388505, 39.919093210586034], [-75.15899792339451, 39.919164686799725], [-75.15927770206909, 39.917915040802065], [-75.15980867343593, 39.91798471762554], [-75.16027622489918, 39.918045150410435], [-75.16082734368273, 39.918117892288045], [-75.16076687369943, 39.91835495135038], [-75.16054149074061, 39.919362121589884], [-75.16108816764115, 39.91943533199412], [-75.1615455351176, 39.91949156402772], [-75.16211103770841, 39.91956753173947], [-75.1626550419118, 39.91962698782571], [-75.16314273163647, 39.919693472771144], [-75.16349120843111, 39.919736838873085], [-75.16369594368183, 39.91975159718489], [-75.16423150848532, 39.919836010851256], [-75.16471654044618, 39.91989829974017], [-75.1652600965997, 39.919967040755616], [-75.1658101777234, 39.92004322536124], [-75.16627794530147, 39.92010526444298], [-75.16682969221823, 39.9201734806232], [-75.16673306316912, 39.92061961672358], [-75.16664636782535, 39.92098735572832], [-75.16656347213839, 39.92141911548795], [-75.16646623869181, 39.921855197797015], [-75.16637595907936, 39.92223483130462], [-75.16628590058272, 39.922669253483235], [-75.16628592461213, 39.92266925656547], [-75.16637598363288, 39.92223483185788], [-75.16646626324525, 39.92185519835024], [-75.16656349669164, 39.92141911604116], [-75.16664639237847, 39.9209873562815], [-75.16673308772206, 39.920619617276735], [-75.16682971677106, 39.92017348117634], [-75.16627796985424, 39.92010526499624], [-75.16581020227612, 39.9200432259146], [-75.16526012115244, 39.9199670413091], [-75.16471656499884, 39.91989830029376], [-75.16423153303799, 39.91983601140497], [-75.16369596823444, 39.91975159773872], [-75.1634912329837, 39.91973683942695], [-75.16314275618905, 39.919693473325076], [-75.16265506646441, 39.91962698837973], [-75.16211106226093, 39.91956753229362], [-75.16154556083924, 39.9194915646084], [-75.16108819219363, 39.919435332548495], [-75.16054151646225, 39.91936212217078], [-75.1607668982515, 39.91835495190483], [-75.1608273694039, 39.918117892868885], [-75.16027625062033, 39.9180451509914], [-75.15980869915705, 39.91798471820661], [-75.15927772779011, 39.91791504138326], [-75.15955114724184, 39.916672668420425], [-75.15901050678815, 39.91659532384449], [-75.15851278990272, 39.91653998747], [-75.1579820989198, 39.91647405353075], [-75.15828402310784, 39.91507994823962], [-75.15809548528345, 39.91504867542346], [-75.15774661335739, 39.91500305785408], [-75.1574854285505, 39.91496008609266], [-75.1577672274255, 39.91370112757994], [-75.15801944065777, 39.912463032257946], [-75.15863024542935, 39.91254226015127], [-75.15920328854268, 39.912616069573936], [-75.15977709165502, 39.91269179622573], [-75.16039229135106, 39.912756864337155], [-75.16053226325738, 39.91210547694309], [-75.16069826272138, 39.9113696229974], [-75.16070398082313, 39.911344089352966], [-75.16078293361882, 39.91098383183351], [-75.16079173327198, 39.91094368029094], [-75.16082410658915, 39.91079596694414], [-75.16095021119766, 39.91021562302511], [-75.16121812721481, 39.909011294700676], [-75.1618954897069, 39.90583111744914], [-75.16230752445159, 39.90394455056542], [-75.16464852646868, 39.887612504005034], [-75.16217129389965, 39.88290732917671], [-75.16418700617535, 39.882571043062725], [-75.16699512077287, 39.88202987590259], [-75.16756365527526, 39.88198126524963], [-75.172144092486, 39.88128679826255], [-75.17386794678251, 39.88112226192141], [-75.1750587094433, 39.881127178541576], [-75.17928749312532, 39.88076323635661], [-75.18309485629912, 39.88087152581279], [-75.18626600338732, 39.880776404069444], [-75.18833057628198, 39.88023399085093], [-75.19116833749403, 39.87895720171348], [-75.19324988488377, 39.878184668892864], [-75.19423258569884, 39.881954784067574], [-75.19435105676118, 39.88417912439962], [-75.1947442202182, 39.88715958381745], [-75.1950055405623, 39.88900502992013], [-75.195377006374, 39.890852930227844], [-75.19664161307446, 39.892154693323114], [-75.19734849868537, 39.892554200508876], [-75.19791884605132, 39.89287653536392], [-75.20040917979276, 39.89358290207157], [-75.20220010194497, 39.893834988846315], [-75.2046735612974, 39.894257866007955], [-75.20643188168988, 39.89489123824661], [-75.20811681144355, 39.8955229525527], [-75.20953791229009, 39.89633275566915], [-75.21063179238031, 39.897050385553555], [-75.21157229080009, 39.89783622404864], [-75.2121105527512, 39.898285960912], [-75.2135832514153, 39.89993175325022], [-75.21405201147564, 39.90066381664515], [-75.21468644114745, 39.901880671807056], [-75.2151114782057, 39.903786283051396], [-75.21545761289784, 39.905591091598325], [-75.21569646410822, 39.90756333700614], [-75.21568364421469, 39.90889323104565], [-75.2153079210576, 39.909606617026206], [-75.21464580619211, 39.910115556509204], [-75.2135613898842, 39.91061515098194], [-75.2122790037696, 39.9107565830743], [-75.2094913839666, 39.9106099381418], [-75.20848050275646, 39.910615834252674], [-75.207216129998, 39.911012324931804], [-75.20635832065332, 39.91134706809731], [-75.20542266692576, 39.912288564423946], [-75.20470414463513, 39.91331977872765], [-75.2041088348333, 39.91449523508961], [-75.20359825025908, 39.91561596579895], [-75.20246386163328, 39.917444533142344], [-75.20194457510891, 39.91855091390986], [-75.20184462772525, 39.91925623705986], [-75.2019945286076, 39.919781946952625], [-75.20179132442954, 39.91981930807259], [-75.20006238051837, 39.92013718296255], [-75.19504651330628, 39.92101268758331], [-75.19448533530738, 39.921085070263416], [-75.1938644811039, 39.9211301915961], [-75.19249473767239, 39.9212670726349], [-75.19181991635783, 39.92138891467094], [-75.19122215402639, 39.921500199794416], [-75.19106794347522, 39.92153321049858], [-75.19081634417404, 39.92158434713675], [-75.19060146538074, 39.92162802170247], [-75.19047247264182, 39.92165423956683], [-75.1903419604548, 39.92167437759978], [-75.19015860117176, 39.92170215116822], [-75.19006058289085, 39.9217171307119], [-75.18981258718762, 39.92139934007993], [-75.18941869879913, 39.921007844650426], [-75.18932450204431, 39.920914220147004], [-75.18916422210287, 39.92074625237124], [-75.18910493952532, 39.920684126443284]], [[-75.17524024063906, 39.88359684844091], [-75.17516853473141, 39.882621331116916], [-75.1750587094433, 39.881127178541576], [-75.17524024063906, 39.88359684844091]], [[-75.16453216778805, 39.92326050884133], [-75.164619773354, 39.922906415015476], [-75.1647092611619, 39.922467011026306], [-75.16470923712359, 39.922467007942586], [-75.16461974880022, 39.92290641446184], [-75.16453214323411, 39.923260508287704], [-75.16444168858514, 39.923703060877436], [-75.164441712585, 39.92370306414265], [-75.16453216778805, 39.92326050884133]], [[-75.17541284370118, 39.88594488758027], [-75.17552197931987, 39.88742945130192], [-75.17566105278485, 39.88855858992095], [-75.175506636981, 39.887220747272444], [-75.1754172425525, 39.88600472601262], [-75.17541284370118, 39.88594488758027]]], [[[-75.17703462385559, 39.9282791854793], [-75.17713716654389, 39.927843969737246], [-75.17722299981469, 39.92742547305531], [-75.177302928636, 39.927069538127725], [-75.17740166500627, 39.92662679085603], [-75.17794948006994, 39.92669611269314], [-75.17840805567783, 39.92674854414239], [-75.17897092153989, 39.926830360441656], [-75.17961190138833, 39.926913714072676], [-75.18024882745244, 39.92700347944945], [-75.18089407838447, 39.92707475519641], [-75.18143433399078, 39.92714252943958], [-75.18192364877922, 39.92721051903828], [-75.18247970745371, 39.92727098722562], [-75.18307002762307, 39.9273473187791], [-75.18356727097928, 39.927414552536376], [-75.18413572449033, 39.92748839072143], [-75.18469356535304, 39.927563973577286], [-75.18518707344323, 39.9276293218686], [-75.18577448530856, 39.92769634346894], [-75.18599144062982, 39.92772824384543], [-75.18685882004087, 39.92783214017275], [-75.18759758428777, 39.927927613924204], [-75.18918145487082, 39.92813040403253], [-75.19074422958964, 39.92832825837987], [-75.19066859300911, 39.92866941676119], [-75.19060233030642, 39.928978118248274], [-75.19053543273527, 39.92926649229742], [-75.19047474449467, 39.92955977394741], [-75.1902220487094, 39.93078038680986], [-75.19012731576615, 39.931220084595004], [-75.1899493618791, 39.932003488518205], [-75.18968857636325, 39.93322864037063], [-75.1894169526017, 39.93443037137289], [-75.18931761794046, 39.934867517007774], [-75.18923713517907, 39.93524427892119], [-75.18914801425663, 39.93567262079523], [-75.18906265917072, 39.936096819177195], [-75.18897800978061, 39.93645812481999], [-75.18888557125193, 39.93688807195146], [-75.18732760299982, 39.93668022889355], [-75.18575640786506, 39.93648392872858], [-75.18572790895732, 39.93648034793651], [-75.18549993635563, 39.93759827496855], [-75.18541643376375, 39.93795369886082], [-75.1853918963181, 39.93805886479759], [-75.18530335339072, 39.93851578013453], [-75.18527101941457, 39.938663579602974], [-75.18523483849769, 39.938824544195754], [-75.18516814972767, 39.93911548563741], [-75.18495610112747, 39.94008534101652], [-75.18314107292235, 39.93989685848033], [-75.18149528329731, 39.93968854325546], [-75.17983891181979, 39.939479802181104], [-75.17825196738539, 39.93926905726782], [-75.17631149645452, 39.93902274518719], [-75.1747518511938, 39.93882735859993], [-75.17465110370284, 39.93930143241136], [-75.17457705552728, 39.93964170153694], [-75.17448140136361, 39.94005729581756], [-75.17437734450827, 39.940527727135084], [-75.1742728042991, 39.941022763217234], [-75.17418774665221, 39.941422116658075], [-75.17410510399097, 39.94179478942147], [-75.17388527619204, 39.942801545330546], [-75.17378342812157, 39.94329297174073], [-75.17366854988926, 39.94377646481941], [-75.17210558885188, 39.94357807692164], [-75.17102771359527, 39.94344147559618], [-75.17053366751539, 39.94338134463477], [-75.16999812622305, 39.943311690588054], [-75.16973017549833, 39.943278872334744], [-75.16933965959774, 39.9432267595552], [-75.1689581833847, 39.94318598990012], [-75.16826142194567, 39.943096944520875], [-75.16781562182085, 39.94304621667785], [-75.167370646947, 39.94299618233207], [-75.16624470549259, 39.94285516914599], [-75.16577939661354, 39.94278638440148], [-75.1656275811625, 39.94278599843719], [-75.16571753578864, 39.942406443210984], [-75.1658325919401, 39.941804609729935], [-75.16605984929198, 39.940800978519384], [-75.16613388736738, 39.94042214389958], [-75.16622545223109, 39.94003471465053], [-75.16643477314504, 39.939056811917006], [-75.1667135991546, 39.937845795024714], [-75.16686335964184, 39.93718123442665], [-75.16695567057104, 39.93673333098223], [-75.16716930149295, 39.93567732164193], [-75.16749496992483, 39.934114489113455], [-75.1677692037678, 39.932922573067884], [-75.16805145038389, 39.93171378794974], [-75.16831961966793, 39.93048166628569], [-75.16856827208015, 39.92925361082999], [-75.16869084230184, 39.928644037253655], [-75.16882811944834, 39.92803500276149], [-75.16895773764685, 39.92803667143668], [-75.1695817099415, 39.928134065918755], [-75.17004997262877, 39.92818833357387], [-75.1705936331929, 39.92826682605035], [-75.17113787546292, 39.92833001716304], [-75.1715962274586, 39.9283885534335], [-75.17215552066993, 39.9284642408782], [-75.17269999642133, 39.9285213470136], [-75.17316209167474, 39.92858897664198], [-75.17372885312534, 39.92866167871712], [-75.17529040837256, 39.92886827026287], [-75.17587953728179, 39.928942223357396], [-75.17633522047532, 39.92900112389839], [-75.17687231172798, 39.92906292240617], [-75.176962359652, 39.92864116235151], [-75.17703462385559, 39.9282791854793]]]]}}, {"id": "2010", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13322440629997, 39.955236147241465], [-75.1344356888728, 39.953037480013485], [-75.13487778815114, 39.95207597951802], [-75.13520600618953, 39.95113696811443], [-75.13544726197281, 39.95042005246468], [-75.13560778262406, 39.94992737070598], [-75.13567169491284, 39.949731206468535], [-75.13574097388202, 39.949518565833074], [-75.13579398402418, 39.94929479886762], [-75.13587870142153, 39.948937185527214], [-75.13594118243584, 39.94867343873226], [-75.13603708917128, 39.9482685854839], [-75.13604837698473, 39.948061401594224], [-75.13613742242406, 39.94767452595673], [-75.13621470851473, 39.947143308464526], [-75.13623992722759, 39.946951593642225], [-75.13628774954744, 39.94658805398638], [-75.13630367365599, 39.946174054516646], [-75.13631648281041, 39.94584103484029], [-75.13628888053894, 39.94555935825632], [-75.13625956961582, 39.94526023672826], [-75.13622743114342, 39.94493225310091], [-75.13617017694928, 39.94459268749368], [-75.13609880806146, 39.94416940403434], [-75.13602548991437, 39.94373455467942], [-75.13596657112032, 39.94334674795433], [-75.13590339340739, 39.9429309105428], [-75.13586057280936, 39.942649055419935], [-75.13583287385052, 39.94245429469849], [-75.13579205954412, 39.94216731427943], [-75.13573708175244, 39.941590929777455], [-75.13571307524438, 39.94124610547081], [-75.13569922406504, 39.9407602337179], [-75.14238644004878, 39.94075761194185], [-75.14406092687808, 39.94097303772356], [-75.14503205283438, 39.94109993841964], [-75.14566790967055, 39.94118234959344], [-75.14674352614593, 39.941311595615886], [-75.14760480925904, 39.94142363805757], [-75.14809775404471, 39.94148751611526], [-75.1491806609235, 39.941621355500764], [-75.14964727928266, 39.94167797582284], [-75.15040769943502, 39.941775750993735], [-75.15075689577483, 39.94181980041291], [-75.15118943709187, 39.9418784037736], [-75.15156111524641, 39.94192342684312], [-75.15233429052472, 39.94201626298087], [-75.15391769281345, 39.94220641085683], [-75.15548951094686, 39.94240817980438], [-75.15627145241282, 39.9425071071497], [-75.15667130336898, 39.94255123147651], [-75.157059098587, 39.94259773085277], [-75.15757279289045, 39.94266678164288], [-75.15804381134129, 39.942731291387254], [-75.15863139924642, 39.94280223427386], [-75.15910447563164, 39.94286101689686], [-75.15977873987659, 39.94294669627186], [-75.16020566438269, 39.942998326765306], [-75.16137886722338, 39.94313924430938], [-75.16178373559607, 39.94318730763522], [-75.1633555074793, 39.943379983595946], [-75.16413160503915, 39.943480137863254], [-75.16437304156791, 39.94351717665923], [-75.16542172720443, 39.94364696152462], [-75.16553584631168, 39.94320168658694], [-75.1656275811625, 39.94278599843719], [-75.16577939661354, 39.94278638440148], [-75.16624470549259, 39.94285516914599], [-75.167370646947, 39.94299618233207], [-75.16781562182085, 39.94304621667785], [-75.16826142194567, 39.943096944520875], [-75.1689581833847, 39.94318598990012], [-75.16933965959774, 39.9432267595552], [-75.16973017549833, 39.943278872334744], [-75.16999812622305, 39.943311690588054], [-75.17053366751539, 39.94338134463477], [-75.17102771359527, 39.94344147559618], [-75.17210558885188, 39.94357807692164], [-75.17366854988926, 39.94377646481941], [-75.17524211881907, 39.94397053003853], [-75.17716958712774, 39.94421095754197], [-75.17876636292688, 39.944401920202495], [-75.1804101923637, 39.94460311929231], [-75.18061150719751, 39.94463209059361], [-75.18095102500803, 39.94467119483289], [-75.18278116485943, 39.94490703972125], [-75.1833493200888, 39.94497731916542], [-75.18388742182482, 39.94503666902186], [-75.18500788589968, 39.94517971766221], [-75.18570281208814, 39.945277339313236], [-75.18568688960681, 39.946160001890966], [-75.18591378202936, 39.9462198103695], [-75.18616626780558, 39.94640323864336], [-75.18687020015383, 39.94691457163152], [-75.1867677265549, 39.94698153699119], [-75.18638192557506, 39.947257678409755], [-75.18466080412703, 39.948491032151125], [-75.18367648239071, 39.949233166955395], [-75.18301374576069, 39.949741926184196], [-75.18243483863459, 39.95046482009293], [-75.18177228119845, 39.95145470656806], [-75.18174172932771, 39.95152048653826], [-75.18125186576778, 39.95257513323569], [-75.1810342474327, 39.952999285513314], [-75.1804479277613, 39.95414203879143], [-75.18031091629639, 39.95448418419493], [-75.18018395822202, 39.954801220932175], [-75.17989950342928, 39.955410561002644], [-75.17986268049417, 39.95548943951723], [-75.17956689482352, 39.95612304155624], [-75.17952364866278, 39.956215676865845], [-75.1793645489595, 39.957018719111204], [-75.17929516795142, 39.957880374074975], [-75.17947873432696, 39.95886090526811], [-75.17983899226007, 39.95978878931603], [-75.1799758297001, 39.96001027156133], [-75.18005107995222, 39.960132068330665], [-75.1802202153056, 39.960405820580924], [-75.18107508428989, 39.96162779881066], [-75.18195851251086, 39.962581540396314], [-75.18287764460733, 39.96356437420266], [-75.18347225828724, 39.964341536181614], [-75.18354554441063, 39.96443732115239], [-75.18364873769167, 39.96457219229305], [-75.18435660843396, 39.965550289347135], [-75.18484922326599, 39.96614149173921], [-75.18559269656258, 39.96690811198944], [-75.18112177540891, 39.96746359961289], [-75.17968478300124, 39.96741740767767], [-75.18016368176961, 39.967794395545106], [-75.18006282011629, 39.968416647134006], [-75.17991460237576, 39.969090943561284], [-75.17983743980078, 39.96944775366464], [-75.17977598962271, 39.96969353989304], [-75.17975488906876, 39.96981497856103], [-75.17965161686956, 39.970310272091965], [-75.17860640189194, 39.970181658250176], [-75.1780566875297, 39.97011372941456], [-75.17780650810144, 39.97120896950443], [-75.17753873030072, 39.97243855647388], [-75.17786294614987, 39.97248103137002], [-75.17786387562035, 39.97383345443092], [-75.17785267920566, 39.97424893652467], [-75.1771235341516, 39.974328234747865], [-75.17641964846224, 39.97440418538758], [-75.17593658491718, 39.97445362377925], [-75.17545671569454, 39.97450466083824], [-75.17378624577721, 39.97467888698817], [-75.17209233641867, 39.974855903415154], [-75.1704017109951, 39.97503938227979], [-75.16914490341505, 39.97516856344814], [-75.1682634491673, 39.97526019664399], [-75.1681453247881, 39.97503502447598], [-75.16805503233596, 39.97487099232693], [-75.16773195706557, 39.97432080820269], [-75.16722014897815, 39.97339870716462], [-75.16653967502313, 39.97238159742861], [-75.1662721085587, 39.972037642881524], [-75.16597289357621, 39.97160889671574], [-75.16577880145555, 39.97134049222068], [-75.16561818923037, 39.97119200249721], [-75.16531133153285, 39.97091144438554], [-75.16455516178287, 39.97081794335175], [-75.16298126830455, 39.97062420171791], [-75.16140453844403, 39.970429631873635], [-75.16056071990103, 39.970320887387665], [-75.15985341632611, 39.97022162902299], [-75.15970329166524, 39.97020311206611], [-75.15944196657915, 39.971468323386574], [-75.15923764108679, 39.97238526979513], [-75.1590577036878, 39.97320612890056], [-75.15878329590785, 39.97448373998994], [-75.15852699848782, 39.97585154506873], [-75.15822792908624, 39.97721710881816], [-75.15823962395879, 39.977281450598056], [-75.15791562606728, 39.97870886332697], [-75.15758279731992, 39.98022419451091], [-75.15725547387726, 39.98169482104445], [-75.15691577823603, 39.98322097007837], [-75.1566139097415, 39.984700031799335], [-75.15627637149069, 39.986284634879105], [-75.15540774318183, 39.98618087615382], [-75.1549397816308, 39.9861194562513], [-75.15406310987017, 39.986004580541646], [-75.15327633795096, 39.98590065219484], [-75.15248570735123, 39.98580294631227], [-75.15170235540398, 39.98570171004166], [-75.15091477997109, 39.985598532846595], [-75.14947287810017, 39.98541044376598], [-75.1493426008124, 39.98539344850191], [-75.1494332507939, 39.98496243191052], [-75.14950398760712, 39.98463024833647], [-75.14968633180648, 39.98380871779169], [-75.15001314411744, 39.98231620624612], [-75.1494428528043, 39.982242079566795], [-75.14843839356008, 39.98211158646729], [-75.14794623020516, 39.982050274322205], [-75.14745513601414, 39.981987551670095], [-75.14778251867806, 39.980496006284795], [-75.14811166218786, 39.978998965177915], [-75.14844892599797, 39.977446981252434], [-75.14875280338978, 39.97605319690573], [-75.14905919608358, 39.97462924336764], [-75.14955201707166, 39.97469444844773], [-75.15004094823418, 39.97475828200775], [-75.150231571073, 39.97478246830948], [-75.15094863392703, 39.97487344024391], [-75.15161706971416, 39.97496055307036], [-75.15191669061984, 39.973589833498096], [-75.15202353133493, 39.97310628406676], [-75.15218836742413, 39.972319593119735], [-75.15245012383737, 39.97114516194853], [-75.15257454601797, 39.970571700083724], [-75.15269159270923, 39.97005595174743], [-75.1527835009234, 39.96962440941302], [-75.1529071228886, 39.96906713671027], [-75.15301923457218, 39.968550282609826], [-75.15200070091771, 39.96829918091589], [-75.15146301021215, 39.96817620675212], [-75.15097355673184, 39.96807896736265], [-75.15051564764148, 39.96797237611294], [-75.14955850264346, 39.967733564369766], [-75.14869023776352, 39.9675176776505], [-75.14791049722622, 39.96732631826535], [-75.14714784176866, 39.96712784996928], [-75.14650478063565, 39.966842825167525], [-75.1458913161705, 39.96654816429047], [-75.14575782885368, 39.96649392862541], [-75.14490607326032, 39.96609660893821], [-75.14458633097023, 39.9659454790478], [-75.14400254301472, 39.96567103285405], [-75.14337752362562, 39.96538087912413], [-75.14252966634245, 39.9649864598312], [-75.14163139510946, 39.96457373788679], [-75.1407064227292, 39.964139708528414], [-75.13993197133192, 39.963777785249036], [-75.13975490177026, 39.963692321574484], [-75.14006138678764, 39.96273790213371], [-75.13978578774208, 39.96267383177339], [-75.13960221591503, 39.9626303517114], [-75.13929679599369, 39.96255801053774], [-75.1392220181052, 39.96254041128918], [-75.13827549450221, 39.96231762501555], [-75.13808290746044, 39.96293764490021], [-75.13717083928285, 39.962820848330665], [-75.13675691661963, 39.96276757101526], [-75.1362965206531, 39.96245264193541], [-75.13570254442688, 39.962047993115426], [-75.12908790808855, 39.96070914120397], [-75.13049522314829, 39.95959590757984], [-75.13073066711392, 39.959319392641476], [-75.1309676850371, 39.95904102734597], [-75.1310798418532, 39.9589093032834], [-75.13132845710639, 39.958569744871205], [-75.13153807571817, 39.95828344487096], [-75.13196037157967, 39.95756603590327], [-75.13226802673258, 39.95704337310769], [-75.13253209875239, 39.956570957433094], [-75.13280852508643, 39.956020214005825], [-75.13322440629997, 39.955236147241465]]]}}, {"id": "2050", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18107508428989, 39.96162779881066], [-75.1802202153056, 39.960405820580924], [-75.18005107995222, 39.960132068330665], [-75.1799758297001, 39.96001027156133], [-75.17983899226007, 39.95978878931603], [-75.17947873432696, 39.95886090526811], [-75.17929516795142, 39.957880374074975], [-75.1793645489595, 39.957018719111204], [-75.17952364866278, 39.956215676865845], [-75.17956689482352, 39.95612304155624], [-75.17986268049417, 39.95548943951723], [-75.17989950342928, 39.955410561002644], [-75.18018395822202, 39.954801220932175], [-75.18031091629639, 39.95448418419493], [-75.1804479277613, 39.95414203879143], [-75.1810342474327, 39.952999285513314], [-75.18125186576778, 39.95257513323569], [-75.18174172932771, 39.95152048653826], [-75.18177228119845, 39.95145470656806], [-75.18243483863459, 39.95046482009293], [-75.18301374576069, 39.949741926184196], [-75.18367648239071, 39.949233166955395], [-75.18466080412703, 39.948491032151125], [-75.18638192557506, 39.947257678409755], [-75.1867677265549, 39.94698153699119], [-75.18687020015383, 39.94691457163152], [-75.18735320149077, 39.94659947458651], [-75.18792294351213, 39.946227784440076], [-75.18825665527879, 39.94601007383723], [-75.18889164537305, 39.945525822624006], [-75.18939241252559, 39.94514392406182], [-75.18945882417533, 39.94508477771983], [-75.18985287188819, 39.94473383402683], [-75.19022943637438, 39.94439845576369], [-75.19067974179438, 39.943981979434184], [-75.19099136949414, 39.94369375929506], [-75.19105851370779, 39.943636688136955], [-75.19157341030997, 39.94319903601902], [-75.19177005947272, 39.94303188465246], [-75.19253116202371, 39.94259603349538], [-75.19364560318907, 39.942281245825754], [-75.19369737903752, 39.942280125631584], [-75.19386792557843, 39.94227634272461], [-75.19460271708917, 39.942260124464774], [-75.19577620044844, 39.94234286678344], [-75.19692197216327, 39.94267969748615], [-75.19795163481602, 39.94316960721573], [-75.19909313422974, 39.94360535829999], [-75.19996512413074, 39.94387946206713], [-75.20042752555308, 39.94394416737382], [-75.20080678289902, 39.9439972290549], [-75.20161442497796, 39.94396959747437], [-75.2018099014724, 39.94396290300457], [-75.2030545074157, 39.94362262812122], [-75.20329421085049, 39.94408301196562], [-75.20460489022865, 39.94395445297271], [-75.2053264864448, 39.94408111179888], [-75.20528159466483, 39.94415698142473], [-75.20537423404978, 39.94505914245293], [-75.20696015034082, 39.946662249602404], [-75.20697377705622, 39.946834461392456], [-75.20565664322592, 39.94805410681656], [-75.20516872951993, 39.94852347532274], [-75.20503323057667, 39.94853436087157], [-75.20452602474221, 39.94872922500287], [-75.20376393721541, 39.94900224732861], [-75.20301344481327, 39.9492827311201], [-75.20141211703024, 39.94976124037877], [-75.2011575334559, 39.94984044328213], [-75.20128850342793, 39.94988004314401], [-75.20148904244392, 39.94994614180677], [-75.20158528615542, 39.94997786358603], [-75.2034611695254, 39.94992521621503], [-75.20330368930523, 39.95068511881125], [-75.20319059599899, 39.9512044680973], [-75.20314128488319, 39.95142500603531], [-75.2030845024121, 39.9517468510238], [-75.2030720261769, 39.95183111529021], [-75.20295655882086, 39.952370661785295], [-75.20282802590086, 39.95297124948091], [-75.2027421473969, 39.95338532296644], [-75.20259046983514, 39.95411371494432], [-75.20242872567167, 39.95487206779536], [-75.20227410024071, 39.95563137506652], [-75.20211564815075, 39.9563775533588], [-75.20195465540273, 39.95715039346624], [-75.20183425804929, 39.957872636352754], [-75.20197181660889, 39.95917785982849], [-75.20210283042897, 39.960407347841496], [-75.20219593881716, 39.96124957541975], [-75.20223531539463, 39.961644753824054], [-75.20226648573353, 39.96194501383715], [-75.20229860475062, 39.96224817811425], [-75.20236191691136, 39.96286067235433], [-75.20237007739473, 39.962953675953656], [-75.2023726595329, 39.96305658206573], [-75.2023438055402, 39.96313896353822], [-75.2019296437978, 39.96289648722051], [-75.20076713890572, 39.9622889342618], [-75.20013716043388, 39.96196405580526], [-75.19943697827972, 39.96204337101509], [-75.19719782733475, 39.9622884094461], [-75.19574800367215, 39.962448792109484], [-75.19429825539707, 39.96260805996062], [-75.19419672896895, 39.96262383654907], [-75.19284664988015, 39.96277092904808], [-75.192517977438, 39.96280997802728], [-75.19147738285994, 39.96292171263492], [-75.19139090587306, 39.96292303772596], [-75.18993883938037, 39.96308440943466], [-75.18848694285441, 39.963249022063465], [-75.18802607863202, 39.96329535320564], [-75.1874162811373, 39.96336829040095], [-75.18674344963637, 39.96344671159169], [-75.18643859260281, 39.96348224154644], [-75.18564975042099, 39.963627954642334], [-75.18535393650671, 39.96371623344778], [-75.18521097532448, 39.9637588973525], [-75.18505348553673, 39.96382183247109], [-75.18473166794168, 39.96395043332568], [-75.18457123512407, 39.963999713871445], [-75.18444557929725, 39.96404758328842], [-75.18431281618732, 39.96410592015109], [-75.18374491579901, 39.964279560944455], [-75.18347225828724, 39.964341536181614], [-75.18287764460733, 39.96356437420266], [-75.18195851251086, 39.962581540396314], [-75.18107508428989, 39.96162779881066]]]}}, {"id": "2160", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12929415660349, 39.91128618901754], [-75.1292298762013, 39.909901268757224], [-75.12921733578632, 39.90882900645652], [-75.1292406795676, 39.9082234082292], [-75.12940513232671, 39.90663636886563], [-75.12985379169726, 39.904642217374864], [-75.13069494407777, 39.90217293283839], [-75.1327178094609, 39.897390573963655], [-75.1348696479386, 39.89311321347944], [-75.1359345703203, 39.89118734178817], [-75.13780510691831, 39.88911936827713], [-75.13961854514817, 39.88733085338345], [-75.14112646870511, 39.88593705815409], [-75.14252395122821, 39.88515388803688], [-75.14461527964127, 39.88434609605898], [-75.14617297445321, 39.88411106456714], [-75.15137971684672, 39.883817672254196], [-75.15314338339849, 39.88370461388623], [-75.15469630929877, 39.88359417687561], [-75.15636574733466, 39.883475430191595], [-75.15764030186536, 39.88338475458971], [-75.15869562216086, 39.883301027324336], [-75.15998070079377, 39.88319905781422], [-75.16218029669794, 39.88291468475379], [-75.16464852646868, 39.887612504005034], [-75.16231653121818, 39.903951906157495], [-75.1619044955441, 39.90583847214684], [-75.16114417983509, 39.90935310989714], [-75.16092399166732, 39.91038864980739], [-75.16083311410267, 39.91080332265233], [-75.16080074080156, 39.910951036001634], [-75.16071298726149, 39.91135144414386], [-75.16054253696338, 39.912112677462034], [-75.16040256514059, 39.91276406486859], [-75.15978736536962, 39.912698996812274], [-75.15921356221939, 39.91262326931161], [-75.15864051899995, 39.91254946084058], [-75.15802971298264, 39.91247023297553], [-75.15777749991067, 39.91370832832], [-75.15749570119608, 39.91496728685789], [-75.15775688603703, 39.915010258595935], [-75.15810575800695, 39.915055876134055], [-75.15829429585601, 39.91508714893332], [-75.15799237305002, 39.91648125337755], [-75.15852306406484, 39.91654718816952], [-75.15902078101126, 39.91660252449943], [-75.15956142036487, 39.91667986900045], [-75.15928800107181, 39.917922241987704], [-75.15900822138774, 39.919171887983964], [-75.15847250184508, 39.919100410918155], [-75.1580036004885, 39.91903413242698], [-75.15744393607051, 39.91896988138783], [-75.15717350899975, 39.920219950568786], [-75.15706508190462, 39.92072458031527], [-75.15700105567463, 39.921015686018734], [-75.15690428365927, 39.92146552698385], [-75.15680681543283, 39.92189551621777], [-75.15673372433726, 39.92225019182717], [-75.15663792624514, 39.922696803790075], [-75.15653968758393, 39.92314941084095], [-75.15646572025517, 39.92348364131862], [-75.15638219501982, 39.923894418787825], [-75.15637063525519, 39.92389289032411], [-75.15627477264952, 39.924315763437455], [-75.15618955933125, 39.92467252257764], [-75.15609589958217, 39.92510492938023], [-75.15599714266362, 39.92553379424899], [-75.1559164878003, 39.92589050049036], [-75.15581744065317, 39.92632687949197], [-75.15572893564023, 39.92674641991947], [-75.15563576259312, 39.92712161735258], [-75.15554667164844, 39.92755123944602], [-75.1571168474594, 39.92775353680199], [-75.15866709929699, 39.92795628486429], [-75.15857052894737, 39.92838214301248], [-75.15848925602083, 39.92875090689285], [-75.15839497176025, 39.929178905161756], [-75.15995614612446, 39.92938155204747], [-75.16153046192896, 39.929591284894535], [-75.16309117136602, 39.92979380701216], [-75.16338146889682, 39.92986525821064], [-75.16350489234422, 39.92983116343739], [-75.1647192203154, 39.928806524439224], [-75.16491618038036, 39.9286972752806], [-75.16499105619756, 39.92860420597811], [-75.16561566805156, 39.92804872141151], [-75.16607242906038, 39.92766380901158], [-75.16680492486368, 39.9270372236799], [-75.16693484483235, 39.92696974221468], [-75.16707544714461, 39.9267996097307], [-75.16735196028873, 39.92658051443639], [-75.16814853042906, 39.92587633156481], [-75.16827005616757, 39.92579796641468], [-75.16858370524805, 39.925735735040625], [-75.16936345812617, 39.9255916618934], [-75.16909605511938, 39.92681792605534], [-75.16882811944834, 39.92803500276149], [-75.16869084230184, 39.928644037253655], [-75.16856827208015, 39.92925361082999], [-75.16831961966793, 39.93048166628569], [-75.16805145038389, 39.93171378794974], [-75.1677692037678, 39.932922573067884], [-75.16749496992483, 39.934114489113455], [-75.16716930149295, 39.93567732164193], [-75.16695567057104, 39.93673333098223], [-75.16686335964184, 39.93718123442665], [-75.1667135991546, 39.937845795024714], [-75.16643477314504, 39.939056811917006], [-75.16622545223109, 39.94003471465053], [-75.16613388736738, 39.94042214389958], [-75.16605984929198, 39.940800978519384], [-75.1658325919401, 39.941804609729935], [-75.16571753578864, 39.942406443210984], [-75.1656275811625, 39.94278599843719], [-75.16553584631168, 39.94320168658694], [-75.16542172720443, 39.94364696152462], [-75.16437304156791, 39.94351717665923], [-75.16413160503915, 39.943480137863254], [-75.1633555074793, 39.943379983595946], [-75.16178373559607, 39.94318730763522], [-75.16137886722338, 39.94313924430938], [-75.16020566438269, 39.942998326765306], [-75.15977873987659, 39.94294669627186], [-75.15910447563164, 39.94286101689686], [-75.15863139924642, 39.94280223427386], [-75.15804381134129, 39.942731291387254], [-75.15757279289045, 39.94266678164288], [-75.157059098587, 39.94259773085277], [-75.15667130336898, 39.94255123147651], [-75.15627145241282, 39.9425071071497], [-75.15548951094686, 39.94240817980438], [-75.15391769281345, 39.94220641085683], [-75.15233429052472, 39.94201626298087], [-75.15156111524641, 39.94192342684312], [-75.15118943709187, 39.9418784037736], [-75.15075689577483, 39.94181980041291], [-75.15040769943502, 39.941775750993735], [-75.14964727928266, 39.94167797582284], [-75.1491806609235, 39.941621355500764], [-75.14809775404471, 39.94148751611526], [-75.14760480925904, 39.94142363805757], [-75.14674352614593, 39.941311595615886], [-75.14566790967055, 39.94118234959344], [-75.14503205283438, 39.94109993841964], [-75.14406092687808, 39.94097303772356], [-75.14238644004878, 39.94075761194185], [-75.14223165806158, 39.94073774285976], [-75.13569922406504, 39.9407602337179], [-75.13570357421503, 39.94037856679854], [-75.13570829768656, 39.93996409936478], [-75.13570376885167, 39.93981874640567], [-75.13572186636513, 39.93928923910441], [-75.13573834823765, 39.93889872943512], [-75.1357540382111, 39.93852694483599], [-75.13577655038019, 39.93799353580535], [-75.1357922195078, 39.9373301952647], [-75.13582562848225, 39.93683061491173], [-75.1358523457461, 39.93619753032954], [-75.13587523935927, 39.93565504675437], [-75.1358993857453, 39.935082874127346], [-75.13592531531002, 39.93446840748529], [-75.13594721789872, 39.933949377522914], [-75.13594247367945, 39.93364611772414], [-75.13591544150067, 39.93250826743045], [-75.13572278399747, 39.930651314087626], [-75.13545651269023, 39.929515778826804], [-75.13480120888826, 39.92775096029259], [-75.134307845383, 39.92662160069372], [-75.13406431234948, 39.925957337893244], [-75.13315119431806, 39.9239352067238], [-75.13668965999592, 39.923806879829066], [-75.13314600311433, 39.92393052365494], [-75.13298926334858, 39.92358667762832], [-75.13284091412436, 39.92326123439852], [-75.13268550142756, 39.922920294248364], [-75.13249918433769, 39.922511552563755], [-75.13233494506291, 39.92215124013102], [-75.13208108469027, 39.92159430463181], [-75.1318704588599, 39.9211322128991], [-75.1312705786865, 39.919909966030175], [-75.13118246083951, 39.91951782333994], [-75.13075734710877, 39.918479756627136], [-75.13044135049604, 39.91756578100007], [-75.1300412803778, 39.916090610293544], [-75.1295140079632, 39.91321761603653], [-75.12952210559689, 39.91321840897343], [-75.12938090457546, 39.912194977523626], [-75.12929415660349, 39.91128618901754]], [[-75.15497380829576, 39.922942072661854], [-75.15506672897632, 39.92250353922945], [-75.15505523949591, 39.92250207208251], [-75.15496353354324, 39.922934871645005], [-75.15488799472244, 39.92327077043984], [-75.15479577404375, 39.92367880388882], [-75.15480732988964, 39.92368033200255], [-75.15489826951772, 39.92327797146346], [-75.15497380829576, 39.922942072661854]], [[-75.15354586601622, 39.92183011387746], [-75.15361767988075, 39.92148451761769], [-75.15370199510878, 39.92105589971063], [-75.15380269652539, 39.92062400726126], [-75.1538825337952, 39.92024661446601], [-75.15398639263685, 39.91980588951722], [-75.15407064667633, 39.91936977986741], [-75.15416382465118, 39.919000531453925], [-75.1542484208313, 39.91855368930901], [-75.15423705985492, 39.91855222966871], [-75.15415355058, 39.91899333036412], [-75.15406037255923, 39.919362578769324], [-75.15397611959756, 39.91979868933833], [-75.1538722607347, 39.92023941337758], [-75.15379242224721, 39.92061680613929], [-75.1536917219108, 39.921048699506386], [-75.15360740549215, 39.92147731647919], [-75.15353559158295, 39.921822912732566], [-75.15345227740386, 39.92220486778315], [-75.15345589424248, 39.922291943154995], [-75.15346592274213, 39.922293223895664], [-75.15346255071678, 39.92221206890902], [-75.15354586601622, 39.92183011387746]], [[-75.15252125773569, 39.91748981915929], [-75.15260793387961, 39.917056823358735], [-75.15259651542148, 39.917055341305044], [-75.15251098406672, 39.917482617922246], [-75.1524299043685, 39.9178636858211], [-75.15232798490773, 39.91830105752559], [-75.1523395880117, 39.918302548473335], [-75.15244017808647, 39.91787088706541], [-75.15252125773569, 39.91748981915929]], [[-75.15127675625376, 39.915607495026734], [-75.15101595295502, 39.91684327166353], [-75.15102743037752, 39.91684476736586], [-75.15128819791128, 39.915609154405075], [-75.15127675625376, 39.915607495026734]], [[-75.13997469146554, 39.92367429730011], [-75.1399746956378, 39.923674297131654], [-75.14321276747276, 39.9234003157587], [-75.14306057446777, 39.92339113422129], [-75.14126672725665, 39.92355495998492], [-75.13997469146554, 39.92367429730011]]]}}, {"id": "2190", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16265506646441, 39.91962698837973], [-75.16211106226093, 39.91956753229362], [-75.16154556083924, 39.9194915646084], [-75.16108819219363, 39.919435332548495], [-75.16054151646225, 39.91936212217078], [-75.1607668982515, 39.91835495190483], [-75.1608273694039, 39.918117892868885], [-75.16027625062033, 39.9180451509914], [-75.15980869915705, 39.91798471820661], [-75.15927772779011, 39.91791504138326], [-75.15955114724184, 39.916672668420425], [-75.15901050678815, 39.91659532384449], [-75.15851278990272, 39.91653998747], [-75.1579820989198, 39.91647405353075], [-75.15828402310784, 39.91507994823962], [-75.15809548528345, 39.91504867542346], [-75.15774661335739, 39.91500305785408], [-75.1574854285505, 39.91496008609266], [-75.1577672274255, 39.91370112757994], [-75.15801944065777, 39.912463032257946], [-75.15863024542935, 39.91254226015127], [-75.15920328854268, 39.912616069573936], [-75.15977709165502, 39.91269179622573], [-75.16039229135106, 39.912756864337155], [-75.16053226325738, 39.91210547694309], [-75.16069826272138, 39.9113696229974], [-75.16070398082313, 39.911344089352966], [-75.16078293361882, 39.91098383183351], [-75.16079173327198, 39.91094368029094], [-75.16082410658915, 39.91079596694414], [-75.16095021119766, 39.91021562302511], [-75.16121812721481, 39.909011294700676], [-75.1618954897069, 39.90583111744914], [-75.16230752445159, 39.90394455056542], [-75.16464852646868, 39.887612504005034], [-75.16217129389965, 39.88290732917671], [-75.16418700617535, 39.882571043062725], [-75.16699512077287, 39.88202987590259], [-75.16756365527526, 39.88198126524963], [-75.172144092486, 39.88128679826255], [-75.17386794678251, 39.88112226192141], [-75.1750587094433, 39.881127178541576], [-75.17552197931987, 39.88742945130192], [-75.17566105278485, 39.88855858992095], [-75.17571154968319, 39.88876138361383], [-75.17573705027974, 39.88886378533689], [-75.17584319904712, 39.88980554903248], [-75.17587419483029, 39.89004313064002], [-75.1760278511686, 39.89122094805812], [-75.17604042197188, 39.891329354681865], [-75.17634430164547, 39.893950067873824], [-75.17633664816786, 39.89402572980005], [-75.1758873481957, 39.89615422691603], [-75.175399825025, 39.897343638954055], [-75.17520478193897, 39.89781070414899], [-75.17496071505107, 39.898489577280344], [-75.17491929925438, 39.89860477040532], [-75.17485857553739, 39.89890150838469], [-75.17483646320548, 39.899052945944455], [-75.17481211099435, 39.89918055633025], [-75.17478167777995, 39.89933489111524], [-75.17466152140592, 39.89990201248322], [-75.17459016676469, 39.90025600250693], [-75.17439472075638, 39.90122557910576], [-75.17435399071223, 39.90153017248715], [-75.17400638998875, 39.90291208184428], [-75.17387062287813, 39.90366900724408], [-75.17391711100879, 39.90378943540295], [-75.17381423309698, 39.90385074583535], [-75.17376949727006, 39.90403545656304], [-75.17355828259288, 39.90504912576351], [-75.17354291021356, 39.90522772615793], [-75.17354806358297, 39.90538957490077], [-75.17353399782667, 39.90559577929573], [-75.17348754548092, 39.9067563099507], [-75.17348135969269, 39.90694288806304], [-75.17344905201946, 39.90715954418978], [-75.17323528558165, 39.90800347406402], [-75.17307445186442, 39.908719118662205], [-75.1729918138265, 39.909147532286816], [-75.17297213531702, 39.909243234455964], [-75.17295323475211, 39.909352550414205], [-75.17268742744994, 39.91057706585038], [-75.1723687115406, 39.91172712894591], [-75.1722545554179, 39.91228020251701], [-75.17223264423839, 39.91238635121767], [-75.17219189815779, 39.912583763644065], [-75.17210962893124, 39.912987059452334], [-75.17207229463824, 39.91320170478083], [-75.17192106273241, 39.91390676011034], [-75.17187704615729, 39.914257229030035], [-75.17179777242613, 39.91434685340767], [-75.17127261085616, 39.916779653894714], [-75.17125279571084, 39.916871956868036], [-75.17113001788468, 39.91742438166275], [-75.17098550451631, 39.91815003940139], [-75.17071125143731, 39.91939499497743], [-75.17044815178282, 39.920640631710256], [-75.17017980089858, 39.92188608861979], [-75.16988103061077, 39.92313243740692], [-75.16962817132318, 39.92437326570684], [-75.16892030047269, 39.924287373119476], [-75.1684766725506, 39.924227797333074], [-75.16759012260145, 39.9241069400228], [-75.16684655547401, 39.924005783707884], [-75.16601414985686, 39.923904537964795], [-75.164441712585, 39.92370306414265], [-75.16453216778805, 39.92326050884133], [-75.164619773354, 39.922906415015476], [-75.16470926167717, 39.92246700849618], [-75.16628592461213, 39.92266925656547], [-75.16637598363288, 39.92223483185788], [-75.16646626324525, 39.92185519835024], [-75.16656349669164, 39.92141911604116], [-75.16664639237847, 39.9209873562815], [-75.16673308772206, 39.920619617276735], [-75.16682971677106, 39.92017348117634], [-75.16627796985424, 39.92010526499624], [-75.16581020227612, 39.9200432259146], [-75.16526012115244, 39.9199670413091], [-75.16471656499884, 39.91989830029376], [-75.16423153303799, 39.91983601140497], [-75.16369596823444, 39.91975159773872], [-75.1634912329837, 39.91973683942695], [-75.16314275618905, 39.919693473325076], [-75.16265506646441, 39.91962698837973]]]}}, {"id": "2210", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16805503233596, 39.97487099232693], [-75.16773195706557, 39.97432080820269], [-75.16722014897815, 39.97339870716462], [-75.16653967502313, 39.97238159742861], [-75.1662721085587, 39.972037642881524], [-75.16597289357621, 39.97160889671574], [-75.16577880145555, 39.97134049222068], [-75.16561818923037, 39.97119200249721], [-75.16531133153285, 39.97091144438554], [-75.1651330427353, 39.97076213318709], [-75.16474553311866, 39.97043760078011], [-75.16549088265116, 39.970041827235164], [-75.1656816306926, 39.969945711636605], [-75.16636191542909, 39.969568086837874], [-75.1669668107836, 39.969232139540125], [-75.16831386021626, 39.96840405361783], [-75.16846613284729, 39.96764547361726], [-75.16856960872863, 39.967227573888415], [-75.16937148638647, 39.96723674672859], [-75.17017766133468, 39.96725172301128], [-75.17077834579462, 39.96726075824045], [-75.1713447882263, 39.96727627033218], [-75.17210895793443, 39.967285656890404], [-75.17219406039233, 39.96690459850891], [-75.17226828560415, 39.966580482136074], [-75.17240042243283, 39.965930333056825], [-75.17247877800258, 39.96562803370921], [-75.17256130551053, 39.96522029324158], [-75.17416164305735, 39.96541359929349], [-75.175763278728, 39.96561961982896], [-75.17587397089002, 39.96515920092239], [-75.17590513016467, 39.96498749846381], [-75.17602734034247, 39.96443105206552], [-75.1760388110365, 39.96425996026975], [-75.17639291239041, 39.96410880106432], [-75.17668365409428, 39.96394503189285], [-75.17694296226537, 39.96356769116701], [-75.17712573442545, 39.96327140420913], [-75.17722849345292, 39.96312403779706], [-75.1773204217862, 39.96299229796907], [-75.17748319573106, 39.96286822931616], [-75.17774979731949, 39.96278386583728], [-75.178133736829, 39.962803750897116], [-75.17882023578328, 39.96299109197009], [-75.18003477248226, 39.963320731458694], [-75.18122946213096, 39.963706314052374], [-75.18159077628526, 39.963784473602026], [-75.18171474402502, 39.963923372434984], [-75.1824953500704, 39.96413921787585], [-75.18347225828724, 39.964341536181614], [-75.18354554441063, 39.96443732115239], [-75.18364873769167, 39.96457219229305], [-75.18435660843396, 39.965550289347135], [-75.18484922326599, 39.96614149173921], [-75.18559269656258, 39.96690811198944], [-75.18112177540891, 39.96746359961289], [-75.17968478300124, 39.96741740767767], [-75.18016368176961, 39.967794395545106], [-75.18006282011629, 39.968416647134006], [-75.17991460237576, 39.969090943561284], [-75.17983743980078, 39.96944775366464], [-75.17977598962271, 39.96969353989304], [-75.17975488906876, 39.96981497856103], [-75.17965161686956, 39.970310272091965], [-75.17860640189194, 39.970181658250176], [-75.1780566875297, 39.97011372941456], [-75.17780650810144, 39.97120896950443], [-75.17753873030072, 39.97243855647388], [-75.17786294614987, 39.97248103137002], [-75.17786387562035, 39.97383345443092], [-75.17785267920566, 39.97424893652467], [-75.1771235341516, 39.974328234747865], [-75.17641964846224, 39.97440418538758], [-75.17593658491718, 39.97445362377925], [-75.17545671569454, 39.97450466083824], [-75.17378624577721, 39.97467888698817], [-75.17209233641867, 39.974855903415154], [-75.1704017109951, 39.97503938227979], [-75.16914490341505, 39.97516856344814], [-75.1682634491673, 39.97526019664399], [-75.1681453247881, 39.97503502447598], [-75.16805503233596, 39.97487099232693]]]}}, {"id": "2240", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18932450204431, 39.920914220147004], [-75.18916422210287, 39.92074625237124], [-75.18910493952532, 39.920684126443284], [-75.18825459471665, 39.919754693708725], [-75.18803994232465, 39.919456388448246], [-75.1877964349535, 39.91925229894708], [-75.18743741577522, 39.91905085589099], [-75.18735445155635, 39.91900684701349], [-75.18696229271059, 39.918867726114804], [-75.1860247859152, 39.91869097912871], [-75.18510032904231, 39.918554256265494], [-75.18440337252183, 39.91844380213035], [-75.18282151039273, 39.918233589219184], [-75.18279356431404, 39.9183597213585], [-75.18251211277983, 39.91963000802967], [-75.18222126839873, 39.92087175608389], [-75.18141846905199, 39.92077361841488], [-75.18123535356035, 39.92073887462593], [-75.18089486899946, 39.920705255663606], [-75.1803152087144, 39.92062101252252], [-75.17976291264522, 39.92055068325926], [-75.17952902810964, 39.92052150129681], [-75.17926924046455, 39.920489878413086], [-75.1787385022326, 39.92041614683869], [-75.17795486096878, 39.92030994298901], [-75.17716829123836, 39.920219553776164], [-75.17636766741929, 39.92010990347405], [-75.17561598837206, 39.92001434807827], [-75.17504683556119, 39.91994488243412], [-75.1745883463195, 39.919885815943516], [-75.17403428189978, 39.91981077618362], [-75.1734928793705, 39.91974405438717], [-75.17300577989006, 39.91968075076979], [-75.17244736593929, 39.919622458981124], [-75.1719403514858, 39.91954497164647], [-75.17148785787545, 39.91948650588742], [-75.17085501498846, 39.91941145488218], [-75.17071125143731, 39.91939499497743], [-75.17098550451631, 39.91815003940139], [-75.17113001788468, 39.91742438166275], [-75.17125279571084, 39.916871956868036], [-75.17127261085616, 39.916779653894714], [-75.17179777242613, 39.91434685340767], [-75.17187704615729, 39.914257229030035], [-75.17192106273241, 39.91390676011034], [-75.17207229463824, 39.91320170478083], [-75.17210962893124, 39.912987059452334], [-75.17219189815779, 39.912583763644065], [-75.17223264423839, 39.91238635121767], [-75.1722545554179, 39.91228020251701], [-75.1723687115406, 39.91172712894591], [-75.17268742744994, 39.91057706585038], [-75.17295323475211, 39.909352550414205], [-75.17297213531702, 39.909243234455964], [-75.1729918138265, 39.909147532286816], [-75.17307445186442, 39.908719118662205], [-75.17323528558165, 39.90800347406402], [-75.17344905201946, 39.90715954418978], [-75.17348135969269, 39.90694288806304], [-75.17348754548092, 39.9067563099507], [-75.17353399782667, 39.90559577929573], [-75.17354806358297, 39.90538957490077], [-75.17354291021356, 39.90522772615793], [-75.17355828259288, 39.90504912576351], [-75.17376949727006, 39.90403545656304], [-75.17381423309698, 39.90385074583535], [-75.17391711100879, 39.90378943540295], [-75.17387062287813, 39.90366900724408], [-75.17400638998875, 39.90291208184428], [-75.17435399071223, 39.90153017248715], [-75.17439472075638, 39.90122557910576], [-75.17459016676469, 39.90025600250693], [-75.17466152140592, 39.89990201248322], [-75.17478167777995, 39.89933489111524], [-75.17481211099435, 39.89918055633025], [-75.17483646320548, 39.899052945944455], [-75.17485857553739, 39.89890150838469], [-75.17491929925438, 39.89860477040532], [-75.17496071505107, 39.898489577280344], [-75.17520478193897, 39.89781070414899], [-75.175399825025, 39.897343638954055], [-75.1758873481957, 39.89615422691603], [-75.17633664816786, 39.89402572980005], [-75.17634430164547, 39.893950067873824], [-75.17604042197188, 39.891329354681865], [-75.1760278511686, 39.89122094805812], [-75.17587419483029, 39.89004313064002], [-75.17584319904712, 39.88980554903248], [-75.17573705027974, 39.88886378533689], [-75.17571154968319, 39.88876138361383], [-75.17566105278485, 39.88855858992095], [-75.175506636981, 39.887220747272444], [-75.1754172425525, 39.88600472601262], [-75.17527615048914, 39.88408537061387], [-75.17516853473141, 39.882621331116916], [-75.1750587094433, 39.881127178541576], [-75.17928749312532, 39.88076323635661], [-75.18309485629912, 39.88087152581279], [-75.18626600338732, 39.880776404069444], [-75.18833057628198, 39.88023399085093], [-75.19116833749403, 39.87895720171348], [-75.19324988488377, 39.878184668892864], [-75.19423258569884, 39.881954784067574], [-75.19435105676118, 39.88417912439962], [-75.1947442202182, 39.88715958381745], [-75.1950055405623, 39.88900502992013], [-75.195377006374, 39.890852930227844], [-75.19664161307446, 39.892154693323114], [-75.19734849868537, 39.892554200508876], [-75.19791884605132, 39.89287653536392], [-75.20040917979276, 39.89358290207157], [-75.20220010194497, 39.893834988846315], [-75.2046735612974, 39.894257866007955], [-75.20643188168988, 39.89489123824661], [-75.20811681144355, 39.8955229525527], [-75.20953791229009, 39.89633275566915], [-75.21063179238031, 39.897050385553555], [-75.21157229080009, 39.89783622404864], [-75.2121105527512, 39.898285960912], [-75.2135832514153, 39.89993175325022], [-75.21405201147564, 39.90066381664515], [-75.21468644114745, 39.901880671807056], [-75.2151114782057, 39.903786283051396], [-75.21545761289784, 39.905591091598325], [-75.21569646410822, 39.90756333700614], [-75.21568364421469, 39.90889323104565], [-75.2153079210576, 39.909606617026206], [-75.21464580619211, 39.910115556509204], [-75.2135613898842, 39.91061515098194], [-75.2122790037696, 39.9107565830743], [-75.2094913839666, 39.9106099381418], [-75.20848050275646, 39.910615834252674], [-75.207216129998, 39.911012324931804], [-75.20635832065332, 39.91134706809731], [-75.20542266692576, 39.912288564423946], [-75.20470414463513, 39.91331977872765], [-75.2041088348333, 39.91449523508961], [-75.20359825025908, 39.91561596579895], [-75.20246386163328, 39.917444533142344], [-75.20194457510891, 39.91855091390986], [-75.20184462772525, 39.91925623705986], [-75.2019945286076, 39.919781946952625], [-75.20179132442954, 39.91981930807259], [-75.20006238051837, 39.92013718296255], [-75.19504651330628, 39.92101268758331], [-75.19448533530738, 39.921085070263416], [-75.1938644811039, 39.9211301915961], [-75.19249473767239, 39.9212670726349], [-75.19181991635783, 39.92138891467094], [-75.19122215402639, 39.921500199794416], [-75.19106794347522, 39.92153321049858], [-75.19081634417404, 39.92158434713675], [-75.19060146538074, 39.92162802170247], [-75.19047247264182, 39.92165423956683], [-75.1903419604548, 39.92167437759978], [-75.19015860117176, 39.92170215116822], [-75.19006058289085, 39.9217171307119], [-75.18981258718762, 39.92139934007993], [-75.18941869879913, 39.921007844650426], [-75.18932450204431, 39.920914220147004]]]}}, {"id": "2260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16749496992483, 39.934114489113455], [-75.1677692037678, 39.932922573067884], [-75.16805145038389, 39.93171378794974], [-75.16831961966793, 39.93048166628569], [-75.16856827208015, 39.92925361082999], [-75.16869084230184, 39.928644037253655], [-75.16882811944834, 39.92803500276149], [-75.16895773764685, 39.92803667143668], [-75.1695817099415, 39.928134065918755], [-75.17004997262877, 39.92818833357387], [-75.1705936331929, 39.92826682605035], [-75.17113787546292, 39.92833001716304], [-75.1715962274586, 39.9283885534335], [-75.17215552066993, 39.9284642408782], [-75.17269999642133, 39.9285213470136], [-75.17316209167474, 39.92858897664198], [-75.17372885312534, 39.92866167871712], [-75.17529040837256, 39.92886827026287], [-75.17587953728179, 39.928942223357396], [-75.17633522047532, 39.92900112389839], [-75.17687231172798, 39.92906292240617], [-75.17678215161335, 39.92948761629582], [-75.17670567788743, 39.92985285667654], [-75.1766075551279, 39.93028638642722], [-75.17651307709473, 39.93071706421215], [-75.17643661422272, 39.93108188123742], [-75.17633854859126, 39.93150660831269], [-75.17606997663971, 39.932722330845074], [-75.17662499629343, 39.93279812311519], [-75.177083344669, 39.932856200502414], [-75.17765080414075, 39.93292596336492], [-75.17819483076464, 39.93300126802394], [-75.17862227043074, 39.93305909205644], [-75.17904197961765, 39.933110435895294], [-75.17955452551766, 39.93317938886474], [-75.1806579840137, 39.93331501608619], [-75.18116321971874, 39.93338673621803], [-75.18106126869124, 39.93381410165253], [-75.1809764812772, 39.93418503191492], [-75.18089047146259, 39.934606884247756], [-75.18254559037445, 39.93482448669244], [-75.1841852082231, 39.93503521202536], [-75.18391597679044, 39.93624163503735], [-75.18336615439254, 39.93618114656665], [-75.18314182737211, 39.9361528106063], [-75.18285664195403, 39.93611678598112], [-75.18228613371508, 39.93603364907103], [-75.18062112256922, 39.9358177221426], [-75.17903609931385, 39.935613812060446], [-75.17851438706029, 39.93554588693876], [-75.1780165888879, 39.93549411026993], [-75.1775810668755, 39.93542891655227], [-75.17710871759412, 39.935371611375224], [-75.17668179631869, 39.935319988096964], [-75.17612174388424, 39.93524460620612], [-75.17553729231994, 39.93516583024809], [-75.17502496672444, 39.935100858714925], [-75.17458832220636, 39.93504805959277], [-75.17397124393268, 39.934975226617205], [-75.17385189584135, 39.935451281353316], [-75.17377691179385, 39.93584848022799], [-75.17369756730578, 39.93623158927864], [-75.17358317761233, 39.93674297131894], [-75.17201673274833, 39.93648681375423], [-75.1704556685538, 39.93623356491932], [-75.17015472345572, 39.93618939997566], [-75.16967355093747, 39.93610759054666], [-75.16937849651002, 39.93605066525512], [-75.16890242813085, 39.935970480203025], [-75.16812246235199, 39.93582692059234], [-75.16799755984174, 39.935810782650144], [-75.167303352112, 39.93569699395844], [-75.16716930149295, 39.93567732164193], [-75.16749496992483, 39.934114489113455]]]}}, {"id": "2320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17633522047532, 39.92900112389839], [-75.17587953728179, 39.928942223357396], [-75.17529040837256, 39.92886827026287], [-75.17372885312534, 39.92866167871712], [-75.17316209167474, 39.92858897664198], [-75.17269999642133, 39.9285213470136], [-75.17215552066993, 39.9284642408782], [-75.1715962274586, 39.9283885534335], [-75.17113787546292, 39.92833001716304], [-75.1705936331929, 39.92826682605035], [-75.17004997262877, 39.92818833357387], [-75.1695817099415, 39.928134065918755], [-75.16895773764685, 39.92803667143668], [-75.16882811944834, 39.92803500276149], [-75.16909605511938, 39.92681792605534], [-75.16936345812617, 39.9255916618934], [-75.16962817132318, 39.92437326570684], [-75.16988103061077, 39.92313243740692], [-75.17017980089858, 39.92188608861979], [-75.17044815178282, 39.920640631710256], [-75.17071125143731, 39.91939499497743], [-75.17085501498846, 39.91941145488218], [-75.17148785787545, 39.91948650588742], [-75.1719403514858, 39.91954497164647], [-75.17244736593929, 39.919622458981124], [-75.17300577989006, 39.91968075076979], [-75.1734928793705, 39.91974405438717], [-75.17403428189978, 39.91981077618362], [-75.1745883463195, 39.919885815943516], [-75.17504683556119, 39.91994488243412], [-75.17561598837206, 39.92001434807827], [-75.17636766741929, 39.92010990347405], [-75.17716829123836, 39.920219553776164], [-75.17795486096878, 39.92030994298901], [-75.1787385022326, 39.92041614683869], [-75.17926924046455, 39.920489878413086], [-75.17952902810964, 39.92052150129681], [-75.17976291264522, 39.92055068325926], [-75.1803152087144, 39.92062101252252], [-75.18089486899946, 39.920705255663606], [-75.18123535356035, 39.92073887462593], [-75.18141846905199, 39.92077361841488], [-75.18222126839873, 39.92087175608389], [-75.18251211277983, 39.91963000802967], [-75.18279356431404, 39.9183597213585], [-75.18282151039273, 39.918233589219184], [-75.18440337252183, 39.91844380213035], [-75.18510032904231, 39.918554256265494], [-75.1860247859152, 39.91869097912871], [-75.18696229271059, 39.918867726114804], [-75.18735445155635, 39.91900684701349], [-75.18743741577522, 39.91905085589099], [-75.1877964349535, 39.91925229894708], [-75.18803994232465, 39.919456388448246], [-75.18825459471665, 39.919754693708725], [-75.18910493952532, 39.920684126443284], [-75.18916422210287, 39.92074625237124], [-75.18932450204431, 39.920914220147004], [-75.18941869879913, 39.921007844650426], [-75.18981258718762, 39.92139934007993], [-75.19006058289085, 39.9217171307119], [-75.18965238681633, 39.92180636368266], [-75.18890044418367, 39.92197068733024], [-75.18887518116124, 39.922077642304465], [-75.18866229293894, 39.92299769209519], [-75.19026602904323, 39.92319343690514], [-75.19110163648162, 39.923295418125015], [-75.19118578818758, 39.923305688022566], [-75.19139613936314, 39.92338336357609], [-75.19161165853886, 39.923617751117284], [-75.19199250935134, 39.92401569699446], [-75.19234322256247, 39.92437831201164], [-75.19250447035066, 39.92454503064019], [-75.19269098803389, 39.92474055559078], [-75.19296708973327, 39.92503366855368], [-75.19283266918998, 39.926071733611906], [-75.19261584179569, 39.92604225557384], [-75.19248167879262, 39.92605443277392], [-75.19234561742311, 39.92610679659354], [-75.19209440777651, 39.926203476633354], [-75.19197881306039, 39.92624796494283], [-75.19156533587899, 39.92638000609633], [-75.19138477873135, 39.92643766419167], [-75.19100906898176, 39.92655764092452], [-75.19048556896081, 39.926739731963984], [-75.18997104522253, 39.92688815214393], [-75.18946070656388, 39.926984595101054], [-75.1899181876443, 39.926970750615254], [-75.19100820692802, 39.927117599451165], [-75.19093151825834, 39.92746656874468], [-75.1908730394135, 39.92773812156416], [-75.19081348797354, 39.928013904988966], [-75.19074422958964, 39.92832825837987], [-75.18918145487082, 39.92813040403253], [-75.18759758428777, 39.927927613924204], [-75.18685882004087, 39.92783214017275], [-75.18599144062982, 39.92772824384543], [-75.18577448530856, 39.92769634346894], [-75.18518707344323, 39.9276293218686], [-75.18469356535304, 39.927563973577286], [-75.18413572449033, 39.92748839072143], [-75.18356727097928, 39.927414552536376], [-75.18307002762307, 39.9273473187791], [-75.18247970745371, 39.92727098722562], [-75.18192364877922, 39.92721051903828], [-75.18143433399078, 39.92714252943958], [-75.18089407838447, 39.92707475519641], [-75.18024882745244, 39.92700347944945], [-75.17961190138833, 39.926913714072676], [-75.17897092153989, 39.926830360441656], [-75.17840805567783, 39.92674854414239], [-75.17794948006994, 39.92669611269314], [-75.17740166500627, 39.92662679085603], [-75.177302928636, 39.927069538127725], [-75.17722299981469, 39.92742547305531], [-75.17713716654389, 39.927843969737246], [-75.17703462385559, 39.9282791854793], [-75.176962359652, 39.92864116235151], [-75.17687231172798, 39.92906292240617], [-75.17633522047532, 39.92900112389839]]]}}, {"id": "2340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14720376534348, 39.957537836872454], [-75.14608671800413, 39.95739172522386], [-75.14594277208461, 39.95738211563704], [-75.14574445922563, 39.95735972423506], [-75.14539903510733, 39.957320721497], [-75.14418051989675, 39.95716930321432], [-75.14390529291268, 39.957135100727456], [-75.14359698373113, 39.957110134708415], [-75.14330037514917, 39.95712727268846], [-75.14304070740114, 39.95716036310856], [-75.14280369112413, 39.9572127738713], [-75.14263581931723, 39.957274725205366], [-75.14218858223636, 39.9572186273773], [-75.14202103524084, 39.957196792797966], [-75.14141335264442, 39.95711824275984], [-75.14099879826782, 39.95706465660699], [-75.14071772348635, 39.9570283221774], [-75.13995562256132, 39.956929803007355], [-75.13963009231092, 39.95688829534479], [-75.13872391126799, 39.956782808755115], [-75.13280852508643, 39.956020214005825], [-75.13322440629997, 39.955236147241465], [-75.1344356888728, 39.953037480013485], [-75.13487778815114, 39.95207597951802], [-75.13520600618953, 39.95113696811443], [-75.13544726197281, 39.95042005246468], [-75.13560778262406, 39.94992737070598], [-75.13567169491284, 39.949731206468535], [-75.13574097388202, 39.949518565833074], [-75.13579398402418, 39.94929479886762], [-75.13587870142153, 39.948937185527214], [-75.13594118243584, 39.94867343873226], [-75.13603708917128, 39.9482685854839], [-75.13604837698473, 39.948061401594224], [-75.13613742242406, 39.94767452595673], [-75.13621470851473, 39.947143308464526], [-75.13623992722759, 39.946951593642225], [-75.13628774954744, 39.94658805398638], [-75.13630367365599, 39.946174054516646], [-75.13631648281041, 39.94584103484029], [-75.13628888053894, 39.94555935825632], [-75.13625956961582, 39.94526023672826], [-75.13622743114342, 39.94493225310091], [-75.13617017694928, 39.94459268749368], [-75.13609880806146, 39.94416940403434], [-75.13602548991437, 39.94373455467942], [-75.13596657112032, 39.94334674795433], [-75.13590339340739, 39.9429309105428], [-75.13586057280936, 39.942649055419935], [-75.13583287385052, 39.94245429469849], [-75.13579205954412, 39.94216731427943], [-75.13573708175244, 39.941590929777455], [-75.13571307524438, 39.94124610547081], [-75.13569922406504, 39.9407602337179], [-75.14238644004878, 39.94075761194185], [-75.14406092687808, 39.94097303772356], [-75.14503205283438, 39.94109993841964], [-75.14566790967055, 39.94118234959344], [-75.14674352614593, 39.941311595615886], [-75.14760480925904, 39.94142363805757], [-75.14809775404471, 39.94148751611526], [-75.1491806609235, 39.941621355500764], [-75.14964727928266, 39.94167797582284], [-75.15040769943502, 39.941775750993735], [-75.15075689577483, 39.94181980041291], [-75.15118943709187, 39.9418784037736], [-75.15156111524641, 39.94192342684312], [-75.15233429052472, 39.94201626298087], [-75.15391769281345, 39.94220641085683], [-75.15548951094686, 39.94240817980438], [-75.15627145241282, 39.9425071071497], [-75.15667130336898, 39.94255123147651], [-75.157059098587, 39.94259773085277], [-75.15757279289045, 39.94266678164288], [-75.15804381134129, 39.942731291387254], [-75.15863139924642, 39.94280223427386], [-75.15910447563164, 39.94286101689686], [-75.15977873987659, 39.94294669627186], [-75.16020566438269, 39.942998326765306], [-75.16137886722338, 39.94313924430938], [-75.16178373559607, 39.94318730763522], [-75.1633555074793, 39.943379983595946], [-75.16413160503915, 39.943480137863254], [-75.16437304156791, 39.94351717665923], [-75.16542172720443, 39.94364696152462], [-75.16533035523113, 39.94407812817898], [-75.1652019956249, 39.94464834040553], [-75.16499683305622, 39.94555610648978], [-75.16485573334081, 39.946216887983795], [-75.16477358069528, 39.94660246886681], [-75.164711037373, 39.94697212111289], [-75.16461506119572, 39.94740803647259], [-75.16444029926174, 39.94819899996247], [-75.16432794527358, 39.948717644909934], [-75.16419366371817, 39.94933590379579], [-75.16410618113242, 39.94971620497815], [-75.16402448049483, 39.950074889529176], [-75.16385845668579, 39.95085758793785], [-75.16370955402101, 39.951490570074604], [-75.16368688885542, 39.95151529833986], [-75.16364322502935, 39.95154351673225], [-75.16351682932702, 39.95159207259866], [-75.16364562173928, 39.951631227947146], [-75.16389880565895, 39.95166510628258], [-75.16402480866678, 39.95162917159176], [-75.16419555724961, 39.951644009429124], [-75.16436130120256, 39.9516701032282], [-75.16453493789453, 39.951695838570785], [-75.16471761941415, 39.95172438232718], [-75.16489656091423, 39.95176064160228], [-75.16505667104377, 39.95181165206331], [-75.1651819471381, 39.95188523172613], [-75.16524547614274, 39.95200173192759], [-75.16529933194533, 39.952285830139594], [-75.16522793774045, 39.952577745431036], [-75.1650644709797, 39.95360997175663], [-75.16390294144678, 39.953454676372985], [-75.16366108724885, 39.953376478554084], [-75.16332984639078, 39.95333116018389], [-75.16319251612445, 39.95391551453294], [-75.16309459139953, 39.95440141669904], [-75.16288704113363, 39.9553309543011], [-75.16268947048384, 39.95622828371511], [-75.16236367069868, 39.95768001206847], [-75.16215524968051, 39.95771795778167], [-75.16129622782401, 39.95760915330485], [-75.16029504157096, 39.95750945198353], [-75.15902918678124, 39.95738338102032], [-75.15881552775565, 39.95737855542266], [-75.15869380494068, 39.95736238541401], [-75.15713524170022, 39.95713947514945], [-75.15553977298742, 39.95692481636413], [-75.15445168386493, 39.95677847802033], [-75.15424934268523, 39.956778157248024], [-75.15378436972924, 39.95678659845988], [-75.15334639383745, 39.95682544556332], [-75.1528942880345, 39.956885026153664], [-75.15277270115861, 39.95691539955717], [-75.15255960777671, 39.95696475428164], [-75.15229079385131, 39.95704144528795], [-75.1520616305533, 39.95709976077902], [-75.15164997012965, 39.95721319094828], [-75.15148914939789, 39.95725851973942], [-75.15114054904012, 39.957352358346], [-75.15089400948241, 39.95741860604724], [-75.15065512095714, 39.95748279926199], [-75.15017367166261, 39.95759347705416], [-75.14952611782954, 39.95766316757791], [-75.1491264360546, 39.95767570821541], [-75.14887734536661, 39.95766550348537], [-75.14886085945778, 39.957745703471176], [-75.14846120785022, 39.95771646485915], [-75.14784414808281, 39.957628002777504], [-75.1473479021083, 39.95755794158644], [-75.14720376534348, 39.957537836872454]]]}}, {"id": "2370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18498007411401, 39.936382116858304], [-75.1844924886418, 39.93631911717289], [-75.1843475621842, 39.93629964165249], [-75.18391597679044, 39.93624163503735], [-75.1841852082231, 39.93503521202536], [-75.18254559037445, 39.93482448669244], [-75.18089047146259, 39.934606884247756], [-75.1809764812772, 39.93418503191492], [-75.18106126869124, 39.93381410165253], [-75.18116321971874, 39.93338673621803], [-75.1806579840137, 39.93331501608619], [-75.17955452551766, 39.93317938886474], [-75.17904197961765, 39.933110435895294], [-75.17862227043074, 39.93305909205644], [-75.17819483076464, 39.93300126802394], [-75.17765080414075, 39.93292596336492], [-75.177083344669, 39.932856200502414], [-75.17662499629343, 39.93279812311519], [-75.17606997663971, 39.932722330845074], [-75.17633854859126, 39.93150660831269], [-75.17643661422272, 39.93108188123742], [-75.17651307709473, 39.93071706421215], [-75.1766075551279, 39.93028638642722], [-75.17670567788743, 39.92985285667654], [-75.17678215161335, 39.92948761629582], [-75.17687231172798, 39.92906292240617], [-75.176962359652, 39.92864116235151], [-75.17703462385559, 39.9282791854793], [-75.17713716654389, 39.927843969737246], [-75.17722299981469, 39.92742547305531], [-75.177302928636, 39.927069538127725], [-75.17740166500627, 39.92662679085603], [-75.17794948006994, 39.92669611269314], [-75.17840805567783, 39.92674854414239], [-75.17897092153989, 39.926830360441656], [-75.17961190138833, 39.926913714072676], [-75.18024882745244, 39.92700347944945], [-75.18089407838447, 39.92707475519641], [-75.18143433399078, 39.92714252943958], [-75.18192364877922, 39.92721051903828], [-75.18247970745371, 39.92727098722562], [-75.18307002762307, 39.9273473187791], [-75.18356727097928, 39.927414552536376], [-75.18413572449033, 39.92748839072143], [-75.18469356535304, 39.927563973577286], [-75.18518707344323, 39.9276293218686], [-75.18577448530856, 39.92769634346894], [-75.18599144062982, 39.92772824384543], [-75.18685882004087, 39.92783214017275], [-75.18759758428777, 39.927927613924204], [-75.18918145487082, 39.92813040403253], [-75.19074422958964, 39.92832825837987], [-75.19066859300911, 39.92866941676119], [-75.19060233030642, 39.928978118248274], [-75.19053543273527, 39.92926649229742], [-75.19047474449467, 39.92955977394741], [-75.1902220487094, 39.93078038680986], [-75.19012731576615, 39.931220084595004], [-75.1899493618791, 39.932003488518205], [-75.18968857636325, 39.93322864037063], [-75.1894169526017, 39.93443037137289], [-75.18931761794046, 39.934867517007774], [-75.18923713517907, 39.93524427892119], [-75.18914801425663, 39.93567262079523], [-75.18906265917072, 39.936096819177195], [-75.18897800978061, 39.93645812481999], [-75.18888557125193, 39.93688807195146], [-75.18732760299982, 39.93668022889355], [-75.18575640786506, 39.93648392872858], [-75.18572790895732, 39.93648034793651], [-75.18498007411401, 39.936382116858304]]]}}, {"id": "2380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15627145241282, 39.9425071071497], [-75.15548951094686, 39.94240817980438], [-75.15391769281345, 39.94220641085683], [-75.15233429052472, 39.94201626298087], [-75.15156111524641, 39.94192342684312], [-75.15118943709187, 39.9418784037736], [-75.15075689577483, 39.94181980041291], [-75.15040769943502, 39.941775750993735], [-75.14964727928266, 39.94167797582284], [-75.1491806609235, 39.941621355500764], [-75.14809775404471, 39.94148751611526], [-75.14760480925904, 39.94142363805757], [-75.14674352614593, 39.941311595615886], [-75.14566790967055, 39.94118234959344], [-75.14503205283438, 39.94109993841964], [-75.14406092687808, 39.94097303772356], [-75.14238644004878, 39.94075761194185], [-75.14223165806158, 39.94073774285976], [-75.13569922406504, 39.9407602337179], [-75.13570357421503, 39.94037856679854], [-75.13570829768656, 39.93996409936478], [-75.13570376885167, 39.93981874640567], [-75.13572186636513, 39.93928923910441], [-75.13573834823765, 39.93889872943512], [-75.1357540382111, 39.93852694483599], [-75.13577655038019, 39.93799353580535], [-75.1357922195078, 39.9373301952647], [-75.13582562848225, 39.93683061491173], [-75.1358523457461, 39.93619753032954], [-75.13587523935927, 39.93565504675437], [-75.1358993857453, 39.935082874127346], [-75.13592531531002, 39.93446840748529], [-75.14268624964924, 39.93488056541532], [-75.14277050236433, 39.93489864158725], [-75.14328760313309, 39.93503600592176], [-75.14436109370848, 39.935323913654216], [-75.14465707357219, 39.93540373333851], [-75.14488902620543, 39.93546628492709], [-75.14525968884901, 39.935566241560124], [-75.14574096872285, 39.93569595309311], [-75.1461662451491, 39.93581096765408], [-75.14635692710937, 39.935862535506075], [-75.1468092382315, 39.93598385223401], [-75.14690568404735, 39.9360112996903], [-75.14781277718367, 39.93625691399449], [-75.14828584702035, 39.93638079516197], [-75.14869493443304, 39.936487499408756], [-75.14933253818546, 39.93666527501054], [-75.14993485024351, 39.936837033602636], [-75.15022910915481, 39.93692230122762], [-75.15175921360806, 39.93733271818981], [-75.15164784696518, 39.93782885397875], [-75.15149502996697, 39.938515466014806], [-75.15195755705619, 39.93859295052562], [-75.15267934188661, 39.93872515703972], [-75.15306544594553, 39.93876416001893], [-75.15397679316145, 39.938873430538216], [-75.15462893269908, 39.938957131228506], [-75.15619502797918, 39.939153026786194], [-75.15611041222874, 39.9395619272694], [-75.15659330182257, 39.93962115718669], [-75.15698633162224, 39.939664548104865], [-75.15768862512259, 39.9397483279569], [-75.15745478637149, 39.94076418375131], [-75.15725313563803, 39.94173843608297], [-75.157059098587, 39.94259773085277], [-75.15667130336898, 39.94255123147651], [-75.15627145241282, 39.9425071071497]]]}}, {"id": "2390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17312775354583, 39.977751700238606], [-75.17296812708716, 39.97840817799981], [-75.17290251279427, 39.97867918888155], [-75.1729601967386, 39.97869318582734], [-75.1729945192562, 39.97872091307391], [-75.17299986141104, 39.97874957982806], [-75.17300344818571, 39.978768825817184], [-75.17299175908344, 39.97883147385479], [-75.17296297818956, 39.978985721589495], [-75.1729312809766, 39.979026468103854], [-75.17287129178672, 39.979052105398196], [-75.17281882273372, 39.979073762378334], [-75.17280097114764, 39.97916176707219], [-75.17121429252416, 39.97895355524523], [-75.17129432139696, 39.9785792462262], [-75.17130780300391, 39.97850613459061], [-75.17135448846633, 39.97825182831359], [-75.17143377989801, 39.97791757072109], [-75.17152830953934, 39.97753886429667], [-75.17159569289858, 39.97718049013689], [-75.17167137307844, 39.9768393342176], [-75.17172809531297, 39.97653312881369], [-75.17173555442703, 39.97650674804233], [-75.17181450773097, 39.976165127688525], [-75.17191246289653, 39.97577235568639], [-75.17197112375173, 39.97546380426331], [-75.17198110519435, 39.97539808423971], [-75.17209233641867, 39.974855903415154], [-75.17378624577721, 39.97467888698817], [-75.17545671569454, 39.97450466083824], [-75.17593658491718, 39.97445362377925], [-75.17641964846224, 39.97440418538758], [-75.1771235341516, 39.974328234747865], [-75.17785267920566, 39.97424893652467], [-75.17786387562035, 39.97383345443092], [-75.17786294614987, 39.97248103137002], [-75.17753873030072, 39.97243855647388], [-75.17780650810144, 39.97120896950443], [-75.1780566875297, 39.97011372941456], [-75.17860640189194, 39.970181658250176], [-75.17965161686956, 39.970310272091965], [-75.17975488906876, 39.96981497856103], [-75.17977598962271, 39.96969353989304], [-75.17983743980078, 39.96944775366464], [-75.17991460237576, 39.969090943561284], [-75.18006282011629, 39.968416647134006], [-75.18016368176961, 39.967794395545106], [-75.17968478300124, 39.96741740767767], [-75.18112177540891, 39.96746359961289], [-75.18559269656258, 39.96690811198944], [-75.18706908333387, 39.967747703382884], [-75.18900330738798, 39.96863994646185], [-75.19053330321391, 39.969523141662705], [-75.19117087980821, 39.970174153296554], [-75.19156997895064, 39.971541539557435], [-75.19185603211622, 39.97273659554681], [-75.19251524639479, 39.97427958810763], [-75.19267610460359, 39.97455682874583], [-75.19306819929173, 39.97522587002582], [-75.19316767010415, 39.97534404688133], [-75.19395195788799, 39.976275795675406], [-75.19370746636712, 39.976436929608965], [-75.19344742109921, 39.976607983514036], [-75.19318694633098, 39.976778651568935], [-75.19312353237977, 39.976820057225694], [-75.19292609306041, 39.976948979056516], [-75.19266491438854, 39.97711901761388], [-75.19240346936863, 39.97728881630829], [-75.19214180989704, 39.977458427652095], [-75.19187999860506, 39.977627898991315], [-75.191745662721, 39.9777147798631], [-75.19161808969504, 39.977797283791716], [-75.19135613747095, 39.97796663281875], [-75.19109419988266, 39.978135993315746], [-75.19083233340443, 39.97830542060259], [-75.19057059367931, 39.978474960971226], [-75.19030903969116, 39.97864466529346], [-75.18990079379184, 39.97890907500015], [-75.18963886595216, 39.979078446966966], [-75.18937682579183, 39.97924771854937], [-75.18907977150573, 39.97943944702036], [-75.18885251157113, 39.97958605385964], [-75.18859028389431, 39.979755160969134], [-75.18731861787698, 39.97958197540658], [-75.18572863466908, 39.97936208930493], [-75.18470025398888, 39.979225395072916], [-75.18413796951701, 39.979160412047385], [-75.1835823634162, 39.97908348404279], [-75.18311587750986, 39.97903082691258], [-75.1825269998387, 39.978957744698484], [-75.18192679331867, 39.9788796738151], [-75.1814601891601, 39.9788146300702], [-75.18090701836356, 39.97874058888288], [-75.18031747658478, 39.97866654240448], [-75.18018551683247, 39.97865007774576], [-75.17986177265558, 39.978607358478946], [-75.17948283131925, 39.97855760662868], [-75.1786945223034, 39.97846900801477], [-75.17788888439762, 39.97835599818536], [-75.17710442702693, 39.97825301454284], [-75.17630085865154, 39.97814009841556], [-75.17470388655568, 39.97793852162858], [-75.17385580424572, 39.977838020656726], [-75.1734059516144, 39.977784690664876], [-75.17312775354583, 39.977751700238606]]]}}, {"id": "2450", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16577939661354, 39.94278638440148], [-75.1656275811625, 39.94278599843719], [-75.16571753578864, 39.942406443210984], [-75.1658325919401, 39.941804609729935], [-75.16605984929198, 39.940800978519384], [-75.16613388736738, 39.94042214389958], [-75.16622545223109, 39.94003471465053], [-75.16643477314504, 39.939056811917006], [-75.1667135991546, 39.937845795024714], [-75.16686335964184, 39.93718123442665], [-75.16695567057104, 39.93673333098223], [-75.16716930149295, 39.93567732164193], [-75.167303352112, 39.93569699395844], [-75.16799755984174, 39.935810782650144], [-75.16812246235199, 39.93582692059234], [-75.16890242813085, 39.935970480203025], [-75.16937849651002, 39.93605066525512], [-75.16967355093747, 39.93610759054666], [-75.17015472345572, 39.93618939997566], [-75.1704556685538, 39.93623356491932], [-75.17201673274833, 39.93648681375423], [-75.17358317761233, 39.93674297131894], [-75.17369756730578, 39.93623158927864], [-75.17377691179385, 39.93584848022799], [-75.17385189584135, 39.935451281353316], [-75.17397124393268, 39.934975226617205], [-75.17458832220636, 39.93504805959277], [-75.17502496672444, 39.935100858714925], [-75.17553729231994, 39.93516583024809], [-75.17612174388424, 39.93524460620612], [-75.17668179631869, 39.935319988096964], [-75.17710871759412, 39.935371611375224], [-75.1775810668755, 39.93542891655227], [-75.1780165888879, 39.93549411026993], [-75.17851438706029, 39.93554588693876], [-75.17903609931385, 39.935613812060446], [-75.18062112256922, 39.9358177221426], [-75.18228613371508, 39.93603364907103], [-75.18285664195403, 39.93611678598112], [-75.18314182737211, 39.9361528106063], [-75.18336615439254, 39.93618114656665], [-75.18391597679044, 39.93624163503735], [-75.1843475621842, 39.93629964165249], [-75.1844924886418, 39.93631911717289], [-75.18498007411401, 39.936382116858304], [-75.18572790895732, 39.93648034793651], [-75.18549993635563, 39.93759827496855], [-75.18541643376375, 39.93795369886082], [-75.1853918963181, 39.93805886479759], [-75.18530335339072, 39.93851578013453], [-75.18527101941457, 39.938663579602974], [-75.18523483849769, 39.938824544195754], [-75.18516814972767, 39.93911548563741], [-75.18495610112747, 39.94008534101652], [-75.18314107292235, 39.93989685848033], [-75.18149528329731, 39.93968854325546], [-75.17983891181979, 39.939479802181104], [-75.17825196738539, 39.93926905726782], [-75.17631149645452, 39.93902274518719], [-75.1747518511938, 39.93882735859993], [-75.17465110370284, 39.93930143241136], [-75.17457705552728, 39.93964170153694], [-75.17448140136361, 39.94005729581756], [-75.17437734450827, 39.940527727135084], [-75.1742728042991, 39.941022763217234], [-75.17418774665221, 39.941422116658075], [-75.17410510399097, 39.94179478942147], [-75.17388527619204, 39.942801545330546], [-75.17378342812157, 39.94329297174073], [-75.17366854988926, 39.94377646481941], [-75.17210558885188, 39.94357807692164], [-75.17102771359527, 39.94344147559618], [-75.17053366751539, 39.94338134463477], [-75.16999812622305, 39.943311690588054], [-75.16973017549833, 39.943278872334744], [-75.16933965959774, 39.9432267595552], [-75.1689581833847, 39.94318598990012], [-75.16826142194567, 39.943096944520875], [-75.16781562182085, 39.94304621667785], [-75.167370646947, 39.94299618233207], [-75.16624470549259, 39.94285516914599], [-75.16577939661354, 39.94278638440148]]]}}, {"id": "2470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17703711135414, 39.9629283765271], [-75.17691927455976, 39.962700705208874], [-75.17667678580753, 39.96249700166972], [-75.17506126369192, 39.96133631622435], [-75.17366201555305, 39.960309535563916], [-75.17213414287198, 39.959159755184984], [-75.17195211116298, 39.959022867135324], [-75.17163706768218, 39.958811370649634], [-75.17138294205292, 39.95863536658515], [-75.17107843936913, 39.958537294385046], [-75.17046066186592, 39.958551412758986], [-75.1702404471524, 39.95847754705813], [-75.1700697244118, 39.95839464308027], [-75.16994753664727, 39.958282422021576], [-75.16982936847852, 39.95811073687778], [-75.16980114629288, 39.95797503469148], [-75.16981545639425, 39.95785654967576], [-75.16977222908305, 39.95748783655291], [-75.1696825517279, 39.957352019856415], [-75.1695520074718, 39.95725177315955], [-75.16917365167981, 39.957032157222194], [-75.16780326867662, 39.955936836230826], [-75.16636630500113, 39.95481703509913], [-75.1648403280768, 39.954620207274345], [-75.1650644709797, 39.95360997175663], [-75.16522793774045, 39.952577745431036], [-75.16529933194533, 39.952285830139594], [-75.16524547614274, 39.95200173192759], [-75.1651819471381, 39.95188523172613], [-75.16505667104377, 39.95181165206331], [-75.16489656091423, 39.95176064160228], [-75.16471761941415, 39.95172438232718], [-75.16453493789453, 39.951695838570785], [-75.16436130120256, 39.9516701032282], [-75.16419555724961, 39.951644009429124], [-75.16402480866678, 39.95162917159176], [-75.16389880565895, 39.95166510628258], [-75.16364562173928, 39.951631227947146], [-75.16351682932702, 39.95159207259866], [-75.16364322502935, 39.95154351673225], [-75.16368688885542, 39.95151529833986], [-75.16370955402101, 39.951490570074604], [-75.16385845668579, 39.95085758793785], [-75.16402448049483, 39.950074889529176], [-75.16410618113242, 39.94971620497815], [-75.16419366371817, 39.94933590379579], [-75.16432794527358, 39.948717644909934], [-75.16444029926174, 39.94819899996247], [-75.16461506119572, 39.94740803647259], [-75.164711037373, 39.94697212111289], [-75.16477358069528, 39.94660246886681], [-75.16485573334081, 39.946216887983795], [-75.16499683305622, 39.94555610648978], [-75.1652019956249, 39.94464834040553], [-75.16533035523113, 39.94407812817898], [-75.16542172720443, 39.94364696152462], [-75.16553584631168, 39.94320168658694], [-75.1656275811625, 39.94278599843719], [-75.16577939661354, 39.94278638440148], [-75.16624470549259, 39.94285516914599], [-75.167370646947, 39.94299618233207], [-75.16781562182085, 39.94304621667785], [-75.16826142194567, 39.943096944520875], [-75.1689581833847, 39.94318598990012], [-75.16933965959774, 39.9432267595552], [-75.16973017549833, 39.943278872334744], [-75.16999812622305, 39.943311690588054], [-75.17053366751539, 39.94338134463477], [-75.17102771359527, 39.94344147559618], [-75.17210558885188, 39.94357807692164], [-75.17366854988926, 39.94377646481941], [-75.17524211881907, 39.94397053003853], [-75.17716958712774, 39.94421095754197], [-75.17876636292688, 39.944401920202495], [-75.1804101923637, 39.94460311929231], [-75.18061150719751, 39.94463209059361], [-75.18095102500803, 39.94467119483289], [-75.18278116485943, 39.94490703972125], [-75.1833493200888, 39.94497731916542], [-75.18388742182482, 39.94503666902186], [-75.18500788589968, 39.94517971766221], [-75.18570281208814, 39.945277339313236], [-75.18568688960681, 39.946160001890966], [-75.18591378202936, 39.9462198103695], [-75.18616626780558, 39.94640323864336], [-75.18687020015383, 39.94691457163152], [-75.1867677265549, 39.94698153699119], [-75.18638192557506, 39.947257678409755], [-75.18466080412703, 39.948491032151125], [-75.18367648239071, 39.949233166955395], [-75.18301374576069, 39.949741926184196], [-75.18243483863459, 39.95046482009293], [-75.18177228119845, 39.95145470656806], [-75.18174172932771, 39.95152048653826], [-75.18125186576778, 39.95257513323569], [-75.1810342474327, 39.952999285513314], [-75.1804479277613, 39.95414203879143], [-75.18031091629639, 39.95448418419493], [-75.18018395822202, 39.954801220932175], [-75.17989950342928, 39.955410561002644], [-75.17986268049417, 39.95548943951723], [-75.17956689482352, 39.95612304155624], [-75.17952364866278, 39.956215676865845], [-75.1793645489595, 39.957018719111204], [-75.17929516795142, 39.957880374074975], [-75.17947873432696, 39.95886090526811], [-75.17983899226007, 39.95978878931603], [-75.1799758297001, 39.96001027156133], [-75.18005107995222, 39.960132068330665], [-75.1802202153056, 39.960405820580924], [-75.18107508428989, 39.96162779881066], [-75.18195851251086, 39.962581540396314], [-75.18287764460733, 39.96356437420266], [-75.18347225828724, 39.964341536181614], [-75.1824953500704, 39.96413921787585], [-75.18171474402502, 39.963923372434984], [-75.18159077628526, 39.963784473602026], [-75.18122946213096, 39.963706314052374], [-75.18003477248226, 39.963320731458694], [-75.17882023578328, 39.96299109197009], [-75.178133736829, 39.962803750897116], [-75.17774979731949, 39.96278386583728], [-75.17748319573106, 39.96286822931616], [-75.1773204217862, 39.96299229796907], [-75.17722849345292, 39.96312403779706], [-75.17712573442545, 39.96327140420913], [-75.17703711135414, 39.9629283765271]]]}}, {"id": "2480", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17378342812157, 39.94329297174073], [-75.17388527619204, 39.942801545330546], [-75.17410510399097, 39.94179478942147], [-75.17418774665221, 39.941422116658075], [-75.1742728042991, 39.941022763217234], [-75.17437734450827, 39.940527727135084], [-75.17448140136361, 39.94005729581756], [-75.17457705552728, 39.93964170153694], [-75.17465110370284, 39.93930143241136], [-75.1747518511938, 39.93882735859993], [-75.17631149645452, 39.93902274518719], [-75.17825196738539, 39.93926905726782], [-75.17983891181979, 39.939479802181104], [-75.18149528329731, 39.93968854325546], [-75.18314107292235, 39.93989685848033], [-75.18495610112747, 39.94008534101652], [-75.1853416132417, 39.94008211824106], [-75.18578213809973, 39.94013319178685], [-75.18631707191341, 39.94019515155492], [-75.18655241248791, 39.940231437973296], [-75.18744554526633, 39.94036545315516], [-75.18685092941591, 39.94081667842323], [-75.18699036118441, 39.940882551394274], [-75.18728409480497, 39.94101730776212], [-75.187582394664, 39.941146041204426], [-75.18787962417663, 39.94127618254073], [-75.18817193368325, 39.94141278695324], [-75.18846435891797, 39.94154927064173], [-75.18875975857343, 39.94168196275867], [-75.18905229636356, 39.9418181915225], [-75.18933921741734, 39.94196142109909], [-75.18962417748999, 39.942106989324515], [-75.18990808327047, 39.942253728921074], [-75.19019164382442, 39.94240087094255], [-75.19053953193601, 39.942601762056334], [-75.19083072896899, 39.94276959240501], [-75.1910869949525, 39.94291735389807], [-75.19136046085595, 39.943075414074606], [-75.19157341030997, 39.94319903601902], [-75.19105851370779, 39.943636688136955], [-75.19099136949414, 39.94369375929506], [-75.19067974179438, 39.943981979434184], [-75.19022943637438, 39.94439845576369], [-75.18985287188819, 39.94473383402683], [-75.18945882417533, 39.94508477771983], [-75.18939241252559, 39.94514392406182], [-75.18889164537305, 39.945525822624006], [-75.18825665527879, 39.94601007383723], [-75.18792294351213, 39.946227784440076], [-75.18735320149077, 39.94659947458651], [-75.18687020015383, 39.94691457163152], [-75.18616626780558, 39.94640323864336], [-75.18591378202936, 39.9462198103695], [-75.18568688960681, 39.946160001890966], [-75.18570281208814, 39.945277339313236], [-75.18500788589968, 39.94517971766221], [-75.18388742182482, 39.94503666902186], [-75.1833493200888, 39.94497731916542], [-75.18278116485943, 39.94490703972125], [-75.18095102500803, 39.94467119483289], [-75.18061150719751, 39.94463209059361], [-75.1804101923637, 39.94460311929231], [-75.17876636292688, 39.944401920202495], [-75.17716958712774, 39.94421095754197], [-75.17524211881907, 39.94397053003853], [-75.17366854988926, 39.94377646481941], [-75.17378342812157, 39.94329297174073]]]}}, {"id": "2490", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16298126830455, 39.97062420171791], [-75.16140453844403, 39.970429631873635], [-75.16056071990103, 39.970320887387665], [-75.15985341632611, 39.97022162902299], [-75.15970329166524, 39.97020311206611], [-75.15997729346478, 39.968996296665715], [-75.16007335415503, 39.96860084432869], [-75.16016018888936, 39.968178321671864], [-75.16021432105333, 39.96788965927834], [-75.16040703472181, 39.96703130397831], [-75.16048339596443, 39.96667146909137], [-75.16056227887695, 39.96629531689701], [-75.1606783423134, 39.96577180717495], [-75.1608058691436, 39.965160145575574], [-75.16095891448897, 39.96447068926589], [-75.16105400769862, 39.964041957068666], [-75.16111004875117, 39.963789972799844], [-75.1611891934805, 39.96342364008302], [-75.16126150742342, 39.9631278884295], [-75.16130358132413, 39.962895050011134], [-75.1613842499537, 39.962475270829295], [-75.16138160076343, 39.962318688220996], [-75.16141283106843, 39.962103737181245], [-75.16147669842815, 39.96179046019916], [-75.16155403445104, 39.961443028576916], [-75.16164673143402, 39.96102249168303], [-75.16177327298585, 39.960422797834035], [-75.16180345680907, 39.96028624941455], [-75.16196092086922, 39.95957214361842], [-75.16205912443985, 39.95910213784753], [-75.16211951086655, 39.95882285854339], [-75.16217633043827, 39.95854852733416], [-75.16229423597242, 39.95805925338909], [-75.16231961935134, 39.95793156531414], [-75.16234055358527, 39.957826991575594], [-75.16236367069868, 39.95768001206847], [-75.16268947048384, 39.95622828371511], [-75.16288704113363, 39.9553309543011], [-75.16309459139953, 39.95440141669904], [-75.16319251612445, 39.95391551453294], [-75.16332984639078, 39.95333116018389], [-75.16366108724885, 39.953376478554084], [-75.16390294144678, 39.953454676372985], [-75.1650644709797, 39.95360997175663], [-75.1648403280768, 39.954620207274345], [-75.16636630500113, 39.95481703509913], [-75.16780326867662, 39.955936836230826], [-75.16917365167981, 39.957032157222194], [-75.1695520074718, 39.95725177315955], [-75.1696825517279, 39.957352019856415], [-75.16977222908305, 39.95748783655291], [-75.16981545639425, 39.95785654967576], [-75.16980114629288, 39.95797503469148], [-75.16982936847852, 39.95811073687778], [-75.16994753664727, 39.958282422021576], [-75.1700697244118, 39.95839464308027], [-75.1702404471524, 39.95847754705813], [-75.17046066186592, 39.958551412758986], [-75.17107843936913, 39.958537294385046], [-75.17138294205292, 39.95863536658515], [-75.17163706768218, 39.958811370649634], [-75.17195211116298, 39.959022867135324], [-75.17213414287198, 39.959159755184984], [-75.17366201555305, 39.960309535563916], [-75.17506126369192, 39.96133631622435], [-75.17667678580753, 39.96249700166972], [-75.17691927455976, 39.962700705208874], [-75.17703711135414, 39.9629283765271], [-75.17712573442545, 39.96327140420913], [-75.17694296226537, 39.96356769116701], [-75.17668365409428, 39.96394503189285], [-75.17639291239041, 39.96410880106432], [-75.1760388110365, 39.96425996026975], [-75.17602734034247, 39.96443105206552], [-75.17590513016467, 39.96498749846381], [-75.17587397089002, 39.96515920092239], [-75.175763278728, 39.96561961982896], [-75.17416164305735, 39.96541359929349], [-75.17256130551053, 39.96522029324158], [-75.17247877800258, 39.96562803370921], [-75.17240042243283, 39.965930333056825], [-75.17226828560415, 39.966580482136074], [-75.17219406039233, 39.96690459850891], [-75.17210895793443, 39.967285656890404], [-75.1713447882263, 39.96727627033218], [-75.17077834579462, 39.96726075824045], [-75.17017766133468, 39.96725172301128], [-75.16937148638647, 39.96723674672859], [-75.16856960872863, 39.967227573888415], [-75.16846613284729, 39.96764547361726], [-75.16831386021626, 39.96840405361783], [-75.1669668107836, 39.969232139540125], [-75.16636191542909, 39.969568086837874], [-75.1656816306926, 39.969945711636605], [-75.16549088265116, 39.970041827235164], [-75.16474553311866, 39.97043760078011], [-75.1651330427353, 39.97076213318709], [-75.16531133153285, 39.97091144438554], [-75.16455516178287, 39.97081794335175], [-75.16298126830455, 39.97062420171791]]]}}, {"id": "2510", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15725313563803, 39.94173843608297], [-75.15745478637149, 39.94076418375131], [-75.15768862512259, 39.9397483279569], [-75.15811781981508, 39.93980920480518], [-75.15846669618458, 39.9398478896172], [-75.15888664005992, 39.93989937766563], [-75.15925493071721, 39.939952914944996], [-75.15941733188711, 39.939182273711424], [-75.15952744263556, 39.938694925124324], [-75.15955435919798, 39.938555366234546], [-75.15957744532204, 39.938470203570915], [-75.15961913672396, 39.9382764785116], [-75.15968367177305, 39.93799500206825], [-75.15974992567791, 39.93765373413632], [-75.15978638867396, 39.9374766552891], [-75.15986230486071, 39.937165887836954], [-75.15995033552399, 39.936764558734026], [-75.15842517649286, 39.936373174154696], [-75.15866947681553, 39.93522776078812], [-75.15874403484449, 39.93488898490281], [-75.15875973572469, 39.9347988990621], [-75.15877321016966, 39.93472158980898], [-75.15887096104613, 39.93429109526247], [-75.15901557887598, 39.93365554802643], [-75.15902852463303, 39.93351048827205], [-75.15951722792633, 39.93310160797397], [-75.16076083769534, 39.93207582530995], [-75.16085767493169, 39.93201319965672], [-75.1610476840258, 39.931818487024046], [-75.1621537216671, 39.93093059539248], [-75.16222661352487, 39.9308742769223], [-75.16259778115175, 39.9305545798918], [-75.16278574007087, 39.9304093661476], [-75.16300370235683, 39.93022959739751], [-75.16319433056199, 39.930076471943146], [-75.16338146889682, 39.92986525821064], [-75.16350489234422, 39.92983116343739], [-75.1647192203154, 39.928806524439224], [-75.16491618038036, 39.9286972752806], [-75.16499105619756, 39.92860420597811], [-75.16561566805156, 39.92804872141151], [-75.16607242906038, 39.92766380901158], [-75.16680492486368, 39.9270372236799], [-75.16693484483235, 39.92696974221468], [-75.16707544714461, 39.9267996097307], [-75.16735196028873, 39.92658051443639], [-75.16814853042906, 39.92587633156481], [-75.16827005616757, 39.92579796641468], [-75.16858370524805, 39.925735735040625], [-75.16936345812617, 39.9255916618934], [-75.16909605511938, 39.92681792605534], [-75.16882811944834, 39.92803500276149], [-75.16869084230184, 39.928644037253655], [-75.16856827208015, 39.92925361082999], [-75.16831961966793, 39.93048166628569], [-75.16805145038389, 39.93171378794974], [-75.1677692037678, 39.932922573067884], [-75.16749496992483, 39.934114489113455], [-75.16716930149295, 39.93567732164193], [-75.16695567057104, 39.93673333098223], [-75.16686335964184, 39.93718123442665], [-75.1667135991546, 39.937845795024714], [-75.16643477314504, 39.939056811917006], [-75.16622545223109, 39.94003471465053], [-75.16613388736738, 39.94042214389958], [-75.16605984929198, 39.940800978519384], [-75.1658325919401, 39.941804609729935], [-75.16571753578864, 39.942406443210984], [-75.1656275811625, 39.94278599843719], [-75.16553584631168, 39.94320168658694], [-75.16542172720443, 39.94364696152462], [-75.16437304156791, 39.94351717665923], [-75.16413160503915, 39.943480137863254], [-75.1633555074793, 39.943379983595946], [-75.16178373559607, 39.94318730763522], [-75.16137886722338, 39.94313924430938], [-75.16020566438269, 39.942998326765306], [-75.15977873987659, 39.94294669627186], [-75.15910447563164, 39.94286101689686], [-75.15863139924642, 39.94280223427386], [-75.15804381134129, 39.942731291387254], [-75.15757279289045, 39.94266678164288], [-75.157059098587, 39.94259773085277], [-75.15725313563803, 39.94173843608297]]]}}, {"id": "2520", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16892030047269, 39.924287373119476], [-75.1684766725506, 39.924227797333074], [-75.16759012260145, 39.9241069400228], [-75.16684655547401, 39.924005783707884], [-75.16601414985686, 39.923904537964795], [-75.164441712585, 39.92370306414265], [-75.16453216778805, 39.92326050884133], [-75.164619773354, 39.922906415015476], [-75.16470926167717, 39.92246700849618], [-75.16628592461213, 39.92266925656547], [-75.16637598363288, 39.92223483185788], [-75.16646626324525, 39.92185519835024], [-75.16656349669164, 39.92141911604116], [-75.16664639237847, 39.9209873562815], [-75.16673308772206, 39.920619617276735], [-75.16682971677106, 39.92017348117634], [-75.16627796985424, 39.92010526499624], [-75.16581020227612, 39.9200432259146], [-75.16526012115244, 39.9199670413091], [-75.16471656499884, 39.91989830029376], [-75.16423153303799, 39.91983601140497], [-75.16369596823444, 39.91975159773872], [-75.16428022734002, 39.919610179476024], [-75.16479077011986, 39.919514764518325], [-75.1653807272471, 39.919402053061425], [-75.16553405287009, 39.91872384981962], [-75.16580640633518, 39.9174750927744], [-75.1660703529122, 39.91626251173865], [-75.16625308783345, 39.91610748428033], [-75.16655903170893, 39.916150946133435], [-75.16663991052377, 39.916159766704645], [-75.16691468853075, 39.91619073467473], [-75.16713088933987, 39.91622288271296], [-75.16726067065795, 39.9162406712556], [-75.16756761598329, 39.91627557347753], [-75.16820192817089, 39.916355426603396], [-75.1685957494029, 39.91640931780223], [-75.16890694947675, 39.91645146085674], [-75.16924405937185, 39.91649823903264], [-75.17020855613275, 39.91663256812315], [-75.170634073127, 39.91668920081077], [-75.17127261085616, 39.916779653894714], [-75.17125279571084, 39.916871956868036], [-75.17113001788468, 39.91742438166275], [-75.17098550451631, 39.91815003940139], [-75.17071125143731, 39.91939499497743], [-75.17044815178282, 39.920640631710256], [-75.17017980089858, 39.92188608861979], [-75.16988103061077, 39.92313243740692], [-75.16962817132318, 39.92437326570684], [-75.16892030047269, 39.924287373119476]]]}}, {"id": "2540", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16287668520249, 39.923490131538706], [-75.16231953573171, 39.923430442728105], [-75.1618619848913, 39.92337284611736], [-75.16131080610701, 39.923298048221284], [-75.16072531645987, 39.92322056361926], [-75.16027112929116, 39.923157216881314], [-75.15974141769028, 39.92308504152582], [-75.15819358653324, 39.922892915678254], [-75.15662762676548, 39.92268960326718], [-75.15672342494948, 39.92224299041257], [-75.156796516091, 39.921888314809685], [-75.15689398554146, 39.92145832561094], [-75.15699075641116, 39.92100848552829], [-75.1570547827128, 39.920717378930306], [-75.15716320987288, 39.92021274919351], [-75.15743363710435, 39.91896268003674], [-75.15799330145335, 39.919026931126155], [-75.15846220388505, 39.919093210586034], [-75.15899792339451, 39.919164686799725], [-75.15927770206909, 39.917915040802065], [-75.15980867343593, 39.91798471762554], [-75.16027622489918, 39.918045150410435], [-75.16082734368273, 39.918117892288045], [-75.16076687369943, 39.91835495135038], [-75.16054149074061, 39.919362121589884], [-75.16108816764115, 39.91943533199412], [-75.1615455351176, 39.91949156402772], [-75.16211103770841, 39.91956753173947], [-75.1626550419118, 39.91962698782571], [-75.16314273163647, 39.919693472771144], [-75.16349120843111, 39.919736838873085], [-75.16369594368183, 39.91975159718489], [-75.16423150848532, 39.919836010851256], [-75.16471654044618, 39.91989829974017], [-75.1652600965997, 39.919967040755616], [-75.1658101777234, 39.92004322536124], [-75.16627794530147, 39.92010526444298], [-75.16682969221823, 39.9201734806232], [-75.16673306316912, 39.92061961672358], [-75.16664636782535, 39.92098735572832], [-75.16656347213839, 39.92141911548795], [-75.16646623869181, 39.921855197797015], [-75.16637595907936, 39.92223483130462], [-75.16628590005845, 39.92266925601219], [-75.16470923712359, 39.922467007942586], [-75.16461974880022, 39.92290641446184], [-75.16453214323411, 39.923260508287704], [-75.16444168803092, 39.92370306358899], [-75.16287668520249, 39.923490131538706]]]}}, {"id": "2580", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15240746423844, 39.927130571882536], [-75.1529533453167, 39.92720302152638], [-75.15342854072523, 39.92726934578088], [-75.15398336057119, 39.92733734541758], [-75.15554667164844, 39.92755123944602], [-75.1571168474594, 39.92775353680199], [-75.15866709929699, 39.92795628486429], [-75.15857052894737, 39.92838214301248], [-75.15848925602083, 39.92875090689285], [-75.15839497176025, 39.929178905161756], [-75.15995614612446, 39.92938155204747], [-75.16153046192896, 39.929591284894535], [-75.16309117136602, 39.92979380701216], [-75.16338146889682, 39.92986525821064], [-75.16319433056199, 39.930076471943146], [-75.16300370235683, 39.93022959739751], [-75.16278574007087, 39.9304093661476], [-75.16259778115175, 39.9305545798918], [-75.16222661352487, 39.9308742769223], [-75.1621537216671, 39.93093059539248], [-75.1610476840258, 39.931818487024046], [-75.16085767493169, 39.93201319965672], [-75.16076083769534, 39.93207582530995], [-75.15951722792633, 39.93310160797397], [-75.15914227171163, 39.933050915094306], [-75.15757876989201, 39.93283873487357], [-75.1567733699516, 39.93273378818531], [-75.15602573352452, 39.932636363890424], [-75.15557261973682, 39.93258161087081], [-75.1549548454441, 39.93249488861155], [-75.15445554459198, 39.93242116831609], [-75.15455750244512, 39.932002815126815], [-75.15464459110277, 39.93162631379359], [-75.15473607929162, 39.93120911111829], [-75.15422433573809, 39.931143775815066], [-75.15376277959595, 39.93108096109362], [-75.15316104020742, 39.931001671141985], [-75.1525682723036, 39.930917591355296], [-75.1521860472246, 39.930864041886686], [-75.15212938245182, 39.93085981821071], [-75.15159839964217, 39.93078338877957], [-75.15168104962747, 39.93037150572599], [-75.15175708055578, 39.929998343580124], [-75.15185379937405, 39.92955649591009], [-75.1519576142183, 39.929112741108035], [-75.15203395950508, 39.928763335951636], [-75.1521315559633, 39.92833790206516], [-75.15240746423844, 39.927130571882536]]]}}, {"id": "2590", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15846669618458, 39.9398478896172], [-75.15811781981508, 39.93980920480518], [-75.15768862512259, 39.9397483279569], [-75.15698633162224, 39.939664548104865], [-75.15659330182257, 39.93962115718669], [-75.15611041222874, 39.9395619272694], [-75.15619502797918, 39.939153026786194], [-75.15462893269908, 39.938957131228506], [-75.15397679316145, 39.938873430538216], [-75.15306544594553, 39.93876416001893], [-75.15267934188661, 39.93872515703972], [-75.15195755705619, 39.93859295052562], [-75.15149502996697, 39.938515466014806], [-75.15164784696518, 39.93782885397875], [-75.15175921360806, 39.93733271818981], [-75.15022910915481, 39.93692230122762], [-75.14993485024351, 39.936837033602636], [-75.14933253818546, 39.93666527501054], [-75.14869493443304, 39.936487499408756], [-75.14828584702035, 39.93638079516197], [-75.14781277718367, 39.93625691399449], [-75.14690568404735, 39.9360112996903], [-75.1468092382315, 39.93598385223401], [-75.14635692710937, 39.935862535506075], [-75.1461662451491, 39.93581096765408], [-75.14574096872285, 39.93569595309311], [-75.14525968884901, 39.935566241560124], [-75.14488902620543, 39.93546628492709], [-75.14465707357219, 39.93540373333851], [-75.14436109370848, 39.935323913654216], [-75.14328760313309, 39.93503600592176], [-75.14277050236433, 39.93489864158725], [-75.14268624964924, 39.93488056541532], [-75.13592531531002, 39.93446840748529], [-75.13594721789872, 39.933949377522914], [-75.13594247367945, 39.93364611772414], [-75.13591544150067, 39.93250826743045], [-75.14360127030119, 39.933080028183824], [-75.14369480417511, 39.933107641143216], [-75.14482527798222, 39.933346025244454], [-75.1450914112253, 39.9333903874229], [-75.14531318892281, 39.933436229294145], [-75.14551182546641, 39.93347467759524], [-75.14571046095703, 39.93350277368099], [-75.14731729742391, 39.933651683789506], [-75.14825607389699, 39.93377497895769], [-75.14926402509727, 39.93390550522783], [-75.1499392832503, 39.93400602960063], [-75.15007586602405, 39.93403304907899], [-75.15021231956267, 39.934063480331005], [-75.15031282822507, 39.93416315637383], [-75.15080572488877, 39.93429160799937], [-75.15167045659746, 39.93453199712968], [-75.15234043955054, 39.934718232313166], [-75.15310633000142, 39.9349230500224], [-75.15386273893306, 39.935127088346704], [-75.15443785777477, 39.93528559350323], [-75.15539107190511, 39.93554827087476], [-75.15576519264292, 39.93565086366971], [-75.15625429623226, 39.935782840313955], [-75.15689217294924, 39.93594109524923], [-75.15788163616912, 39.936213972322236], [-75.15842517649286, 39.936373174154696], [-75.15995033552399, 39.936764558734026], [-75.15986230486071, 39.937165887836954], [-75.15978638867396, 39.9374766552891], [-75.15974992567791, 39.93765373413632], [-75.15968367177305, 39.93799500206825], [-75.15961913672396, 39.9382764785116], [-75.15957744532204, 39.938470203570915], [-75.15955435919798, 39.938555366234546], [-75.15952744263556, 39.938694925124324], [-75.15941733188711, 39.939182273711424], [-75.15925493071721, 39.939952914944996], [-75.15888664005992, 39.93989937766563], [-75.15846669618458, 39.9398478896172]]]}}, {"id": "2630", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1318704588599, 39.9211322128991], [-75.1312705786865, 39.919909966030175], [-75.13118246083951, 39.91951782333994], [-75.13075734710877, 39.918479756627136], [-75.13044135049604, 39.91756578100007], [-75.1300412803778, 39.916090610293544], [-75.1295140079632, 39.91321761603653], [-75.14158064726648, 39.914398551222284], [-75.1461190450627, 39.914937993589774], [-75.14735868886102, 39.915091345068035], [-75.14771316406136, 39.91513631334861], [-75.14799356383051, 39.91517046305146], [-75.14970714683753, 39.91540214937294], [-75.15023443292301, 39.91547013783974], [-75.15073912611835, 39.91552380982455], [-75.15127792582615, 39.91560195308391], [-75.15101595295502, 39.91684327166353], [-75.15155446180752, 39.916913447170124], [-75.15204738119105, 39.91697819735143], [-75.15259766026692, 39.917049622129376], [-75.15251098406672, 39.917482617922246], [-75.1524299043685, 39.9178636858211], [-75.15232798490773, 39.91830105752559], [-75.15423814681868, 39.918546488226774], [-75.15415355058, 39.91899333036412], [-75.15406037255923, 39.919362578769324], [-75.15397611959756, 39.91979868933833], [-75.1538722607347, 39.92023941337758], [-75.15379242224721, 39.92061680613929], [-75.1536917219108, 39.921048699506386], [-75.15360740549215, 39.92147731647919], [-75.15353559158295, 39.921822912732566], [-75.15345227740386, 39.92220486778315], [-75.15345589424248, 39.922291943154995], [-75.15505645424587, 39.922496339121075], [-75.15496353354324, 39.922934871645005], [-75.15488799472244, 39.92327077043984], [-75.15479577404375, 39.92367880388882], [-75.1532106207868, 39.92347414292115], [-75.15311613449238, 39.92390662447898], [-75.15303929542505, 39.92426130973712], [-75.15293997770155, 39.92468076204786], [-75.1520763473565, 39.924569355082475], [-75.15134300412029, 39.92447526104034], [-75.15010195707502, 39.92430629400298], [-75.14940530380834, 39.92420875299544], [-75.14784299931269, 39.92401663397686], [-75.14766370437735, 39.92399190822372], [-75.14747915475772, 39.92396645833915], [-75.14723226969029, 39.92393241119718], [-75.14691152586792, 39.92388817759061], [-75.1456046980864, 39.92369476947815], [-75.14438429490448, 39.923553728741865], [-75.14426060016787, 39.923536497015284], [-75.14407761076028, 39.92351198528674], [-75.14321276747276, 39.9234003157587], [-75.14306057446777, 39.92339113422129], [-75.14126672725665, 39.92355495998492], [-75.13966358535917, 39.92370303000068], [-75.13314600311433, 39.92393052365494], [-75.13298926334858, 39.92358667762832], [-75.13284091412436, 39.92326123439852], [-75.13268550142756, 39.922920294248364], [-75.13249918433769, 39.922511552563755], [-75.13233494506291, 39.92215124013102], [-75.13208108469027, 39.92159430463181], [-75.1318704588599, 39.9211322128991]]]}}, {"id": "2640", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15662762676548, 39.92268960326718], [-75.15672342494948, 39.92224299041257], [-75.156796516091, 39.921888314809685], [-75.15689398554146, 39.92145832561094], [-75.15699075641116, 39.92100848552829], [-75.1570547827128, 39.920717378930306], [-75.15716320987288, 39.92021274919351], [-75.15743363710435, 39.91896268003674], [-75.15799330145335, 39.919026931126155], [-75.15846220388505, 39.919093210586034], [-75.15899792339451, 39.919164686799725], [-75.15927770206909, 39.917915040802065], [-75.15980867343593, 39.91798471762554], [-75.16027622489918, 39.918045150410435], [-75.16082734368273, 39.918117892288045], [-75.16076687369943, 39.91835495135038], [-75.16054149074061, 39.919362121589884], [-75.16108816764115, 39.91943533199412], [-75.1615455351176, 39.91949156402772], [-75.16211103770841, 39.91956753173947], [-75.1626550419118, 39.91962698782571], [-75.16314273163647, 39.919693472771144], [-75.16349120843111, 39.919736838873085], [-75.16369594368183, 39.91975159718489], [-75.16423150848532, 39.919836010851256], [-75.16471654044618, 39.91989829974017], [-75.1652600965997, 39.919967040755616], [-75.1658101777234, 39.92004322536124], [-75.16627794530147, 39.92010526444298], [-75.16682969221823, 39.9201734806232], [-75.16673306316912, 39.92061961672358], [-75.16664636782535, 39.92098735572832], [-75.16656347213839, 39.92141911548795], [-75.16646623869181, 39.921855197797015], [-75.16637595907936, 39.92223483130462], [-75.16628590005845, 39.92266925601219], [-75.16470923712359, 39.922467007942586], [-75.16461974880022, 39.92290641446184], [-75.16453214323411, 39.923260508287704], [-75.16444168858514, 39.923703060877436], [-75.164441712585, 39.92370306414265], [-75.16601414985686, 39.923904537964795], [-75.16684655547401, 39.924005783707884], [-75.16759012260145, 39.9241069400228], [-75.1684766725506, 39.924227797333074], [-75.16892030047269, 39.924287373119476], [-75.16962817132318, 39.92437326570684], [-75.16936345812617, 39.9255916618934], [-75.16858370524805, 39.925735735040625], [-75.16827005616757, 39.92579796641468], [-75.16814853042906, 39.92587633156481], [-75.16735196028873, 39.92658051443639], [-75.16707544714461, 39.9267996097307], [-75.16693484483235, 39.92696974221468], [-75.16680492486368, 39.9270372236799], [-75.16607242906038, 39.92766380901158], [-75.16561566805156, 39.92804872141151], [-75.16499105619756, 39.92860420597811], [-75.16491618038036, 39.9286972752806], [-75.1647192203154, 39.928806524439224], [-75.16350489234422, 39.92983116343739], [-75.16338146889682, 39.92986525821064], [-75.16309117136602, 39.92979380701216], [-75.16153046192896, 39.929591284894535], [-75.15995614612446, 39.92938155204747], [-75.15839497176025, 39.929178905161756], [-75.15848925602083, 39.92875090689285], [-75.15857052894737, 39.92838214301248], [-75.15866709929699, 39.92795628486429], [-75.1571168474594, 39.92775353680199], [-75.15554667164844, 39.92755123944602], [-75.15563576259312, 39.92712161735258], [-75.15572893564023, 39.92674641991947], [-75.15581744065317, 39.92632687949197], [-75.1559164878003, 39.92589050049036], [-75.15599714266362, 39.92553379424899], [-75.15609589958217, 39.92510492938023], [-75.15618955933125, 39.92467252257764], [-75.15627477264952, 39.924315763437455], [-75.15637192114352, 39.923887217923706], [-75.15645544526281, 39.92347644043542], [-75.1565294138035, 39.92314220999085], [-75.15662765076334, 39.92268960638305], [-75.15662762676548, 39.92268960326718]]]}}, {"id": "2690", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15489826951772, 39.92327797146346], [-75.15497380829576, 39.922942072661854], [-75.15506672897632, 39.92250353922945], [-75.15346616873813, 39.922299144307004], [-75.15346255071678, 39.92221206890902], [-75.15354586601622, 39.92183011387746], [-75.15361767988075, 39.92148451761769], [-75.15370199510878, 39.92105589971063], [-75.15380269652539, 39.92062400726126], [-75.1538825337952, 39.92024661446601], [-75.15398639263685, 39.91980588951722], [-75.15407064667633, 39.91936977986741], [-75.15416382465118, 39.919000531453925], [-75.1542484208313, 39.91855368930901], [-75.15233825754619, 39.91830825785229], [-75.15244017808647, 39.91787088706541], [-75.15252125773569, 39.91748981915929], [-75.15260793387961, 39.917056823358735], [-75.15205765356556, 39.9169853986036], [-75.15156473532356, 39.91692064759268], [-75.15102622640349, 39.91685047213436], [-75.15128819791128, 39.915609154405075], [-75.15074939813464, 39.91553101119397], [-75.15024470491215, 39.91547733835416], [-75.14971741872614, 39.91540935083481], [-75.14800383550272, 39.91517766466686], [-75.14772343569865, 39.915143514989126], [-75.1473689616231, 39.91509854676679], [-75.14612931650127, 39.91494519537304], [-75.14159091814288, 39.91440575341209], [-75.13872782173677, 39.9141259461049], [-75.13793082006016, 39.91404796537359], [-75.13726032576368, 39.9139823580093], [-75.12952301127594, 39.91322497327643], [-75.12938090457546, 39.912194977523626], [-75.12929415660349, 39.91128618901754], [-75.1292298762013, 39.909901268757224], [-75.12921733578632, 39.90882900645652], [-75.1292406795676, 39.9082234082292], [-75.12940513232671, 39.90663636886563], [-75.12985379169726, 39.904642217374864], [-75.13069494407777, 39.90217293283839], [-75.1327178094609, 39.897390573963655], [-75.1348696479386, 39.89311321347944], [-75.1359345703203, 39.89118734178817], [-75.13780510691831, 39.88911936827713], [-75.13961854514817, 39.88733085338345], [-75.14112646870511, 39.88593705815409], [-75.14252395122821, 39.88515388803688], [-75.14461527964127, 39.88434609605898], [-75.14617297445321, 39.88411106456714], [-75.15137971684672, 39.883817672254196], [-75.15314338339849, 39.88370461388623], [-75.15469630929877, 39.88359417687561], [-75.15636574733466, 39.883475430191595], [-75.15764030186536, 39.88338475458971], [-75.15869562216086, 39.883301027324336], [-75.15998070079377, 39.88319905781422], [-75.16218029669794, 39.88291468475379], [-75.16464852646868, 39.887612504005034], [-75.16231653121818, 39.903951906157495], [-75.1619044955441, 39.90583847214684], [-75.16114417983509, 39.90935310989714], [-75.16092399166732, 39.91038864980739], [-75.16083311410267, 39.91080332265233], [-75.16080074080156, 39.910951036001634], [-75.16071298726149, 39.91135144414386], [-75.16054253696338, 39.912112677462034], [-75.16040256514059, 39.91276406486859], [-75.15978736536962, 39.912698996812274], [-75.15921356221939, 39.91262326931161], [-75.15864051899995, 39.91254946084058], [-75.15802971298264, 39.91247023297553], [-75.15777749991067, 39.91370832832], [-75.15749570119608, 39.91496728685789], [-75.15775688603703, 39.915010258595935], [-75.15810575800695, 39.915055876134055], [-75.15829429585601, 39.91508714893332], [-75.15799237305002, 39.91648125337755], [-75.15852306406484, 39.91654718816952], [-75.15902078101126, 39.91660252449943], [-75.15956142036487, 39.91667986900045], [-75.15928800107181, 39.917922241987704], [-75.15900822138774, 39.919171887983964], [-75.15847250184508, 39.919100410918155], [-75.1580036004885, 39.91903413242698], [-75.15744393607051, 39.91896988138783], [-75.15717350899975, 39.920219950568786], [-75.15706508190462, 39.92072458031527], [-75.15700105567463, 39.921015686018734], [-75.15690428365927, 39.92146552698385], [-75.15680681543283, 39.92189551621777], [-75.15673372433726, 39.92225019182717], [-75.15663792624514, 39.922696803790075], [-75.15653968758393, 39.92314941084095], [-75.15646572025517, 39.92348364131862], [-75.15638219501982, 39.923894418787825], [-75.15480604772165, 39.92368600489419], [-75.15489826951772, 39.92327797146346]]]}}, {"id": "2720", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13591544150067, 39.93250826743045], [-75.13572278399747, 39.930651314087626], [-75.13545651269023, 39.929515778826804], [-75.13480120888826, 39.92775096029259], [-75.134307845383, 39.92662160069372], [-75.13406431234948, 39.925957337893244], [-75.13315119431806, 39.9239352067238], [-75.13668980894909, 39.9238068744248], [-75.1399746956378, 39.923674297131654], [-75.14321276747276, 39.9234003157587], [-75.14407761076028, 39.92351198528674], [-75.14426060016787, 39.923536497015284], [-75.14438429490448, 39.923553728741865], [-75.1456046980864, 39.92369476947815], [-75.14691152586792, 39.92388817759061], [-75.14723226969029, 39.92393241119718], [-75.14747915475772, 39.92396645833915], [-75.14766370437735, 39.92399190822372], [-75.14784299931269, 39.92401663397686], [-75.14940530380834, 39.92420875299544], [-75.15010195707502, 39.92430629400298], [-75.15134300412029, 39.92447526104034], [-75.1520763473565, 39.924569355082475], [-75.15293997770155, 39.92468076204786], [-75.15303929542505, 39.92426130973712], [-75.15311613449238, 39.92390662447898], [-75.1532106207868, 39.92347414292115], [-75.15479577404375, 39.92367880388882], [-75.15637192114352, 39.923887217923706], [-75.15627477264952, 39.924315763437455], [-75.15618955933125, 39.92467252257764], [-75.15609589958217, 39.92510492938023], [-75.15599714266362, 39.92553379424899], [-75.1559164878003, 39.92589050049036], [-75.15581744065317, 39.92632687949197], [-75.15572893564023, 39.92674641991947], [-75.15563576259312, 39.92712161735258], [-75.15554667164844, 39.92755123944602], [-75.15398336057119, 39.92733734541758], [-75.15342854072523, 39.92726934578088], [-75.1529533453167, 39.92720302152638], [-75.15240746423844, 39.927130571882536], [-75.1521315559633, 39.92833790206516], [-75.15203395950508, 39.928763335951636], [-75.1519576142183, 39.929112741108035], [-75.15185379937405, 39.92955649591009], [-75.15175708055578, 39.929998343580124], [-75.15168104962747, 39.93037150572599], [-75.15159839964217, 39.93078338877957], [-75.15212938245182, 39.93085981821071], [-75.1521860472246, 39.930864041886686], [-75.1525682723036, 39.930917591355296], [-75.15316104020742, 39.931001671141985], [-75.15376277959595, 39.93108096109362], [-75.15422433573809, 39.931143775815066], [-75.15473607929162, 39.93120911111829], [-75.15464459110277, 39.93162631379359], [-75.15455750244512, 39.932002815126815], [-75.15445554459198, 39.93242116831609], [-75.1549548454441, 39.93249488861155], [-75.15557261973682, 39.93258161087081], [-75.15602573352452, 39.932636363890424], [-75.1567733699516, 39.93273378818531], [-75.15757876989201, 39.93283873487357], [-75.15914227171163, 39.933050915094306], [-75.15951722792633, 39.93310160797397], [-75.15902852463303, 39.93351048827205], [-75.15901557887598, 39.93365554802643], [-75.15887096104613, 39.93429109526247], [-75.15877321016966, 39.93472158980898], [-75.15875973572469, 39.9347988990621], [-75.15874403484449, 39.93488898490281], [-75.15866947681553, 39.93522776078812], [-75.15842517649286, 39.936373174154696], [-75.15788163616912, 39.936213972322236], [-75.15689217294924, 39.93594109524923], [-75.15625429623226, 39.935782840313955], [-75.15576519264292, 39.93565086366971], [-75.15539107190511, 39.93554827087476], [-75.15443785777477, 39.93528559350323], [-75.15386273893306, 39.935127088346704], [-75.15310633000142, 39.9349230500224], [-75.15234043955054, 39.934718232313166], [-75.15167045659746, 39.93453199712968], [-75.15080572488877, 39.93429160799937], [-75.15031282822507, 39.93416315637383], [-75.15021231956267, 39.934063480331005], [-75.15007586602405, 39.93403304907899], [-75.1499392832503, 39.93400602960063], [-75.14926402509727, 39.93390550522783], [-75.14825607389699, 39.93377497895769], [-75.14731729742391, 39.933651683789506], [-75.14571046095703, 39.93350277368099], [-75.14551182546641, 39.93347467759524], [-75.14531318892281, 39.933436229294145], [-75.1450914112253, 39.9333903874229], [-75.14482527798222, 39.933346025244454], [-75.14369480417511, 39.933107641143216], [-75.14360127030119, 39.933080028183824], [-75.13591544150067, 39.93250826743045]]]}}, {"id": "3368", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.19873901022478, 39.96896474723525], [-75.2006825037777, 39.968748509689675], [-75.2005854865362, 39.968225300257366], [-75.20048108991301, 39.96768143968206], [-75.2003766608814, 39.96712547684685], [-75.20027320729024, 39.9665681236714], [-75.20017113270373, 39.9660065518617], [-75.2000648715532, 39.96545486280315], [-75.19996167948639, 39.96489660500567], [-75.19985985277751, 39.96433764219597], [-75.19975578592744, 39.963778229411936], [-75.19964817823953, 39.963167834578144], [-75.19954402181146, 39.96261317862635], [-75.19943697827972, 39.96204337101509], [-75.20013716043388, 39.96196405580526], [-75.20076713890572, 39.9622889342618], [-75.2019296437978, 39.96289648722051], [-75.2023438055402, 39.96313896353822], [-75.20359833000241, 39.96392299732029], [-75.20387347516974, 39.964090178702016], [-75.204539731006, 39.96451398788996], [-75.20546777001317, 39.965091006712015], [-75.20649665464367, 39.965725642430144], [-75.20684764376574, 39.965941337176766], [-75.20756081755907, 39.966382069702114], [-75.20846364890292, 39.96695085866885], [-75.20954182337731, 39.967618069234746], [-75.2097592173279, 39.96775147153196], [-75.2101028280384, 39.967962921774266], [-75.21133586950056, 39.96872707840927], [-75.2115166052264, 39.96965576250502], [-75.21013836492584, 39.969805350585304], [-75.20920137525263, 39.969908239553455], [-75.20822768613749, 39.97001688531799], [-75.2071715109633, 39.970134859313845], [-75.20664160684923, 39.97018882439134], [-75.20584308660476, 39.97027633607101], [-75.20529383804944, 39.97032724144262], [-75.2047464601045, 39.97038654791297], [-75.20430221981374, 39.970442136607105], [-75.20418303772176, 39.97042967509766], [-75.20360222096758, 39.970262038082865], [-75.19873901022478, 39.96896474723525]]]}}, {"id": "3406", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12286983433349, 39.999348225421684], [-75.12189645061733, 39.99922197325878], [-75.12141485963465, 39.99916050071101], [-75.12093406713585, 39.99909845694048], [-75.12043816082301, 39.99903124892896], [-75.11995841616955, 39.99897607104749], [-75.11948064078999, 39.99891846474961], [-75.11899483260045, 39.99885363710453], [-75.1181427263644, 39.99874006892576], [-75.11760779479803, 39.998672192592046], [-75.11705540656078, 39.99860245187495], [-75.11713718954385, 39.998204954618366], [-75.11720552832361, 39.99784824220488], [-75.11726460987974, 39.99759085143173], [-75.117284481552, 39.99749552058664], [-75.11738376209497, 39.997007889103365], [-75.11687527895985, 39.99694403320292], [-75.11641424499777, 39.99688234038955], [-75.11594728557785, 39.996823352482735], [-75.11544873273199, 39.996754717356865], [-75.11420376026825, 39.99660020163007], [-75.11378290403151, 39.99654566844975], [-75.11349353916128, 39.996509398474814], [-75.11335627413635, 39.99651837529572], [-75.11399780861547, 39.99614675119862], [-75.11443934320606, 39.99590407882544], [-75.11488815880926, 39.995651207425055], [-75.11577971940605, 39.99516863261082], [-75.11804388596643, 39.99392739215795], [-75.11827306308207, 39.99380494945997], [-75.11969525744287, 39.9930176547012], [-75.12031000021946, 39.99267372653925], [-75.12155268191938, 39.99200126868043], [-75.1225598379027, 39.99142904589025], [-75.12368779210668, 39.9908370053132], [-75.12443263724062, 39.99041437725906], [-75.12467941648082, 39.990280061064965], [-75.1254917782044, 39.98983790470489], [-75.12583337764181, 39.99015080201797], [-75.12594819181096, 39.990231008067155], [-75.12581548092545, 39.990321253648226], [-75.12575053444866, 39.99038664295684], [-75.1257966876318, 39.99046143190336], [-75.12619132496967, 39.99081410638479], [-75.12624403982602, 39.99086840531347], [-75.12671073514534, 39.991301669390836], [-75.1268304877983, 39.99140473196538], [-75.12711132039227, 39.991717809559425], [-75.12754649303128, 39.992086888554475], [-75.12847508975587, 39.992960955217434], [-75.12888944298902, 39.99337210329976], [-75.12928045888196, 39.993699377473], [-75.12949697864121, 39.993869232807484], [-75.13016923992892, 39.99438670726852], [-75.1306287246693, 39.9947099015428], [-75.13108811546374, 39.995035612799455], [-75.13151375949263, 39.995312789866986], [-75.1319487531092, 39.995584771470156], [-75.13215673288484, 39.99571908852154], [-75.13236737143946, 39.995777072436475], [-75.13283321527076, 39.99583834307155], [-75.13335735075286, 39.995906073736414], [-75.13389642109973, 39.995968736218344], [-75.13379804534607, 39.99650859349995], [-75.13372632073936, 39.99681997186189], [-75.13357826719061, 39.99746271908161], [-75.133433859375, 39.99813610118974], [-75.13335178223137, 39.998538430656275], [-75.13323677148799, 39.99905883822483], [-75.13289707808269, 40.000644377340706], [-75.1325783050674, 40.002135590534316], [-75.13225594170935, 40.00363274185506], [-75.13206592362307, 40.00455975090279], [-75.13195017894888, 40.0051571594535], [-75.13165438461807, 40.00516218906765], [-75.1313120905648, 40.005165243621754], [-75.13096967892228, 40.0051647840814], [-75.13062734388893, 40.00516042473138], [-75.13028526365714, 40.00515189122062], [-75.12994327233797, 40.005141571084394], [-75.12960127164347, 40.005130493753214], [-75.1292592889243, 40.00511855803528], [-75.12891735401352, 40.005105659191635], [-75.12857548972254, 40.00509169232322], [-75.12823372347772, 40.00507655443872], [-75.12787293070507, 40.00505914287225], [-75.12755058678738, 40.005042349869555], [-75.12720920671373, 40.00502344244802], [-75.12686775392743, 40.005004480086335], [-75.1265262525044, 40.00498535521095], [-75.12618475093373, 40.004965874307906], [-75.12584329110216, 40.004945832900546], [-75.12550191799478, 40.00492503739572], [-75.12516067340198, 40.00490328601852], [-75.12481960245576, 40.004880381575894], [-75.12447874922599, 40.0048561241479], [-75.12413815881776, 40.004830317442874], [-75.12394932729268, 40.0048150263638], [-75.12416377417915, 40.00383050497931], [-75.12441189333515, 40.002635747370185], [-75.1247327042775, 40.001125212840236], [-75.12482584559972, 40.00073781277301], [-75.12495304812299, 40.000118295958615], [-75.1250593976361, 39.99962937005506], [-75.1240010392231, 39.99949471531793], [-75.12286983433349, 39.999348225421684]]]}}, {"id": "3407", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23621692036184, 39.954772282617576], [-75.23494587215642, 39.95461531414442], [-75.23421282714466, 39.95452278160557], [-75.23310495493705, 39.95438500762811], [-75.2321531848757, 39.954263206249884], [-75.23125273842643, 39.95414472489516], [-75.22999964359012, 39.9539974791832], [-75.23011292426536, 39.95345780357851], [-75.2302067744439, 39.95299633919074], [-75.2303245095811, 39.95247656068331], [-75.23063630139251, 39.95092370508727], [-75.2307949154714, 39.95017367604613], [-75.23096092059897, 39.94943998654951], [-75.23106724674322, 39.94890952251901], [-75.23109712127248, 39.94874762614672], [-75.23116356346483, 39.948444207728265], [-75.23127144381539, 39.94791010072773], [-75.23360540677021, 39.94735220242095], [-75.23365672143521, 39.94728618681448], [-75.23369678154249, 39.946626143747736], [-75.23370512010376, 39.94637437310582], [-75.23370607046287, 39.9461446490347], [-75.233752519756, 39.94467113338882], [-75.23371815372047, 39.944560304836195], [-75.23418573636991, 39.94423881568086], [-75.23447444548366, 39.94402821946588], [-75.23460058718051, 39.94394722294118], [-75.23521991589762, 39.94349567046655], [-75.23592745137182, 39.94408559216122], [-75.23662273656555, 39.944670466417236], [-75.23669771791725, 39.944750634695254], [-75.23691855078515, 39.945425323267074], [-75.23704771881377, 39.94581994805673], [-75.2372711913911, 39.946464148088374], [-75.23613850521272, 39.9467345520364], [-75.23582936378949, 39.94682710323594], [-75.2358829211119, 39.94691536369008], [-75.23780518132565, 39.94716576557371], [-75.23851335441049, 39.947252263214494], [-75.23908222323139, 39.947328992099386], [-75.23974733758466, 39.94741236360347], [-75.23964252610631, 39.94793342398709], [-75.23954828494823, 39.948400336142036], [-75.23943075805695, 39.948932176911185], [-75.23932370145442, 39.9494647936597], [-75.23927440166064, 39.949684921302314], [-75.23923238939335, 39.949924521244796], [-75.23911844388543, 39.95044725003495], [-75.24069436633458, 39.95064649730623], [-75.24109450326601, 39.950692270332034], [-75.2409791089452, 39.95119910789798], [-75.24092838668925, 39.95145926411795], [-75.2408870413323, 39.95164878569733], [-75.24077833716721, 39.95219409771834], [-75.24065268580777, 39.9527448765007], [-75.24055628665906, 39.95320676603648], [-75.24045055471251, 39.953734543746975], [-75.24034677116326, 39.95426461469576], [-75.24025201420879, 39.954726082272785], [-75.24013867742423, 39.95525346726105], [-75.23816664919339, 39.95501291036174], [-75.23621692036184, 39.954772282617576]]]}}, {"id": "3408", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.19248650438152, 40.00648631915835], [-75.19210817108346, 40.0059917246091], [-75.19202407067375, 40.00588177689373], [-75.19175386735485, 40.005238965345704], [-75.1915353587339, 40.00420107841301], [-75.19141944287965, 40.002882461289495], [-75.19156264214371, 40.00079131936958], [-75.19173829317083, 39.9995496686985], [-75.19209975304122, 39.99825612471282], [-75.19248952170433, 39.997189339779744], [-75.19387315409962, 39.99538054058539], [-75.19391207372766, 39.99533311331511], [-75.19493374887762, 39.99408810699247], [-75.196736443141, 39.992628239307074], [-75.19756018726912, 39.99169754451703], [-75.19966543084527, 39.98983487779526], [-75.20081185837654, 39.98869997403805], [-75.2026800703466, 39.98695844335217], [-75.20360707217432, 39.986030905550386], [-75.20387968529906, 39.985634231063315], [-75.20422970568241, 39.98512491133937], [-75.20439335041645, 39.9841945852112], [-75.2042911849591, 39.98348477637556], [-75.20402042808387, 39.98285613357483], [-75.20322001689851, 39.9816355506211], [-75.20149254570359, 39.98036607676244], [-75.19968966493572, 39.97939206820288], [-75.19768041890876, 39.978526648404426], [-75.19616318765962, 39.9777853486629], [-75.19500983450119, 39.97715118683491], [-75.19422140431261, 39.976595895992624], [-75.19395195788799, 39.976275795675406], [-75.19316767010415, 39.97534404688133], [-75.19423227229858, 39.97523277524366], [-75.19435026987784, 39.97522044197228], [-75.19438620060323, 39.97521668577702], [-75.19440416945793, 39.975214808203454], [-75.19461061691396, 39.97519322869778], [-75.1946275299596, 39.97519146092737], [-75.19466135487802, 39.97518792535294], [-75.19489863948688, 39.97516312254212], [-75.19541223775175, 39.97510346411268], [-75.19575612004209, 39.97506493243013], [-75.19826820790036, 39.97478341244376], [-75.19839849964937, 39.97476979148737], [-75.19881039777384, 39.974723298916544], [-75.19899434128952, 39.97470253666088], [-75.19950589418717, 39.97464789627134], [-75.20173719574609, 39.974395891106035], [-75.20271356807066, 39.97429286709433], [-75.20315398821757, 39.97424639302827], [-75.20372073074057, 39.9741833244477], [-75.20436211013532, 39.97441853729748], [-75.20619218939848, 39.97508936862707], [-75.20662687309331, 39.97524869898679], [-75.20690784221985, 39.975354863382165], [-75.20789261579813, 39.97571861516643], [-75.20860001378342, 39.97598287735243], [-75.2093218325451, 39.97625152325513], [-75.21035888967715, 39.97663732758542], [-75.21129018304462, 39.97698427399767], [-75.21347081820699, 39.977792108227], [-75.21438130047913, 39.97812979671519], [-75.21681601697746, 39.97902753996308], [-75.21925269074791, 39.979936288003984], [-75.21947213701459, 39.980017477693615], [-75.22145350543394, 39.980750514692936], [-75.22248973525193, 39.98113780900851], [-75.22315828235908, 39.98138230866424], [-75.22354641209124, 39.98147582405985], [-75.22367524703087, 39.98151036448287], [-75.22379084515117, 39.98152112708002], [-75.22406693790319, 39.9815094868596], [-75.22516370803253, 39.98133793425713], [-75.22620352276934, 39.98160917075345], [-75.22611408407533, 39.98131069652115], [-75.22598506456495, 39.98110344713947], [-75.2263870091941, 39.98045849853005], [-75.22671454102148, 39.97993866394432], [-75.22720762006905, 39.98011875105071], [-75.22769983954039, 39.98030167955546], [-75.22815173844755, 39.980464672815025], [-75.22879489571393, 39.98070223660668], [-75.22889328745423, 39.98044163690388], [-75.22894558230313, 39.98018044797911], [-75.22896768418192, 39.97991725419923], [-75.22894765996324, 39.97965218987119], [-75.22883996273082, 39.9794043519961], [-75.2286785702593, 39.97916872493492], [-75.22847274984605, 39.97896106777772], [-75.2282261652399, 39.97877771624851], [-75.22797358650385, 39.97859771478237], [-75.22828221080628, 39.97871136403067], [-75.228590933066, 39.97882486230994], [-75.22889973957359, 39.978938231843195], [-75.2292086142462, 39.97905149570235], [-75.22951753986443, 39.97916467603367], [-75.22982650974122, 39.97927779521482], [-75.2301355031137, 39.97939087621543], [-75.23044450507051, 39.979503942133874], [-75.2307535042112, 39.979617016145696], [-75.23106248696217, 39.97973011687391], [-75.23137143593905, 39.97984327096704], [-75.23168033629835, 39.97995649972348], [-75.23198917553752, 39.980069824493164], [-75.23229793874704, 39.980183268375384], [-75.23260660981407, 39.9802968553442], [-75.23291517861085, 39.980410605900985], [-75.23322362317393, 39.98052454389186], [-75.23353193685344, 39.98063869079578], [-75.23384010002718, 39.98075307051039], [-75.2339591056347, 39.98079736322357], [-75.23414810250182, 39.980867705338326], [-75.23445592365209, 39.980982614650586], [-75.2347635565961, 39.98109782622857], [-75.23507097953902, 39.98121335941804], [-75.235377642931, 39.981330075243065], [-75.23568320596944, 39.981448511344695], [-75.23598789645939, 39.98156830421485], [-75.23629195306646, 39.98168908157105], [-75.23659561047401, 39.98181048365511], [-75.2368991025902, 39.9819321398775], [-75.23720266549203, 39.982053684198895], [-75.23750653404826, 39.98217475145208], [-75.23781094088199, 39.98229497371522], [-75.23811612436292, 39.98241398589309], [-75.23842231593397, 39.98253142003323], [-75.2386133941012, 39.98260314982133], [-75.23804864757997, 39.983543684060464], [-75.23724158388768, 39.98484131042433], [-75.23706281145029, 39.985185697132245], [-75.2370231010044, 39.98540656857109], [-75.23703091898771, 39.98562024376696], [-75.23710876338059, 39.98601125589341], [-75.23717648623028, 39.98644054310879], [-75.23725085241536, 39.98680733861259], [-75.2373285938853, 39.98720332445263], [-75.23739313190914, 39.98757243465119], [-75.23748943446314, 39.98799758547654], [-75.2375631490965, 39.988463737913676], [-75.23765550028003, 39.98890523796826], [-75.23564564878774, 39.98930950082446], [-75.23324262339091, 39.989800273494986], [-75.23338610249759, 39.990219535799035], [-75.23352857182715, 39.9906545575648], [-75.23359749986912, 39.99120535295872], [-75.23367398957797, 39.99188356603107], [-75.2323148913867, 39.991816057524225], [-75.23106116474393, 39.9917654288331], [-75.22979802627162, 39.99168345486216], [-75.2280883871952, 39.991602844416676], [-75.22657305587288, 39.99151720367018], [-75.2256632571371, 39.99147004260671], [-75.22566378621964, 39.991668073566466], [-75.22566509729694, 39.99193131606456], [-75.22566638868767, 39.99219455272114], [-75.22566786217705, 39.99245777535982], [-75.22567059622207, 39.99272099508398], [-75.22567375670262, 39.99298421427232], [-75.22567642287149, 39.993247433398864], [-75.22567775345844, 39.99351065738886], [-75.22567828034347, 39.99377388442448], [-75.22567836679947, 39.994037110781896], [-75.22567805954006, 39.99430034019153], [-75.2256773950464, 39.994563568049735], [-75.22567642371229, 39.994826793662824], [-75.22567455961851, 39.99509002216579], [-75.22567010232133, 39.99535327112508], [-75.22566580829185, 39.995616507455004], [-75.22566493201093, 39.995879695505955], [-75.22566923068271, 39.99614311989164], [-75.22568472491396, 39.99640629852711], [-75.22572752377033, 39.996666869140945], [-75.22579555639331, 39.996925115022684], [-75.22586692375164, 39.99718275752846], [-75.22594031130318, 39.99743986415371], [-75.22601504426356, 39.99769675072328], [-75.22608608367426, 39.997954372323946], [-75.22616242542166, 39.99821093374118], [-75.22625254080789, 39.998464825518425], [-75.22634869197259, 39.99871762814741], [-75.2264516454373, 39.99896873497252], [-75.2265638188994, 39.9992172737964], [-75.22669187430814, 39.9994616214683], [-75.22683366659172, 39.99970118297861], [-75.22698380731825, 39.99993764724526], [-75.22713826559976, 40.00017261411573], [-75.22738074986843, 40.00054046140214], [-75.2274782674168, 40.00074008910896], [-75.22641469824666, 40.001239711627804], [-75.22362994305126, 40.00254779807926], [-75.22069649209475, 40.003925603511995], [-75.21922467833316, 40.004616846915006], [-75.2183458956281, 40.005029556222254], [-75.21577504285966, 40.006236852254894], [-75.21457036263607, 40.00680254793726], [-75.21375540196738, 40.0071470494259], [-75.2130457386327, 40.00744703273062], [-75.21076679598913, 40.00855247204905], [-75.20926651565273, 40.00948811598932], [-75.20838974912195, 40.01004762447749], [-75.20810571601615, 40.010233172363904], [-75.20802453324175, 40.01028672353252], [-75.20794649428309, 40.010338203472806], [-75.20786763334567, 40.0103882568974], [-75.20758817071156, 40.010589319998054], [-75.20726214950554, 40.01076818862627], [-75.20725181468926, 40.01087702961448], [-75.20723867124346, 40.01101543243763], [-75.20699226425197, 40.01119720508264], [-75.20613902163231, 40.01182662245913], [-75.20605558240162, 40.01177134883842], [-75.20598118504968, 40.011722063535636], [-75.20583087553283, 40.01162249423849], [-75.20556089846534, 40.01144637353623], [-75.20493269018309, 40.011036554083525], [-75.20411797328548, 40.01067887127354], [-75.20278453559125, 40.0101681675687], [-75.20096916234523, 40.0095052402321], [-75.1995671662532, 40.00910618352392], [-75.19798662998474, 40.00856163000309], [-75.19741007533945, 40.00838739067628], [-75.19662197462642, 40.00814921442729], [-75.19523788704916, 40.00776465223345], [-75.1940657933079, 40.007370640630775], [-75.1931745133191, 40.006946139642274], [-75.19282909227685, 40.006720041632185], [-75.19248650438152, 40.00648631915835]]]}}, {"id": "3409", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.07019764577667, 40.0227256137045], [-75.06976502199616, 40.02238877796283], [-75.06908841755269, 40.02190558456266], [-75.06915891028082, 40.02186413973909], [-75.07063667030565, 40.02109944245052], [-75.07227204176523, 40.02024986964836], [-75.07281645032124, 40.01998177475131], [-75.07333431412346, 40.01971039962692], [-75.07338094307251, 40.01965571477877], [-75.07329423625396, 40.019530663540294], [-75.07302026297972, 40.01925666717689], [-75.0726472240869, 40.01893074978055], [-75.0725767335006, 40.018869237302596], [-75.07239528427003, 40.01837077919597], [-75.07217711141486, 40.01780815616435], [-75.07184777398788, 40.01695356105951], [-75.07164698160777, 40.016426323339644], [-75.07146018939343, 40.01592034300228], [-75.07129561130252, 40.01547628208808], [-75.07121600444587, 40.015290208483194], [-75.07105511498045, 40.01485517334384], [-75.07086519651371, 40.014354069188656], [-75.0704302429624, 40.01316878168165], [-75.07108902366078, 40.01301909786802], [-75.07184515773078, 40.01285876208922], [-75.07263028656905, 40.01269070974734], [-75.0732958299355, 40.012544988908715], [-75.07522940795765, 40.0121026927516], [-75.07622634718078, 40.011676965469704], [-75.07705894581584, 40.01133352361732], [-75.07742627803177, 40.012908300122575], [-75.07753693593935, 40.013356872141166], [-75.07830534931806, 40.013819680943], [-75.07946727058858, 40.01445822732093], [-75.08019987701304, 40.014864913005], [-75.08097132025813, 40.01530229667788], [-75.08236494235803, 40.01606923064227], [-75.08356395690733, 40.01675184627466], [-75.08366059658319, 40.0167978926383], [-75.08264223060424, 40.01789885752839], [-75.081994744679, 40.01858136037251], [-75.08150044657228, 40.019137017951294], [-75.08092459856877, 40.01975684134091], [-75.08042603579892, 40.02030400776405], [-75.0799195555891, 40.0208342774118], [-75.07941418942038, 40.02138857280776], [-75.07912465172282, 40.021706484266794], [-75.07888115254191, 40.021882928661384], [-75.07816413361522, 40.02236282970455], [-75.07750264200587, 40.02280937560482], [-75.07684195149976, 40.02325898385755], [-75.07562310739706, 40.02407587162441], [-75.07396432896537, 40.025074257481116], [-75.07336441926067, 40.02537013618446], [-75.07333312714907, 40.025290965734875], [-75.07019764577667, 40.0227256137045]]]}}, {"id": "3410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.2339591056347, 39.98079736322357], [-75.23404616346929, 39.98040312776988], [-75.2341418733525, 39.97960344502595], [-75.23417197632504, 39.97926433346443], [-75.23416949834088, 39.97917886302244], [-75.23408204704704, 39.978734035672794], [-75.23401475383362, 39.978362870427425], [-75.23391622064608, 39.977824372158395], [-75.23383619769047, 39.97742070897658], [-75.23380825801765, 39.97726930314024], [-75.23369114722355, 39.976643925147776], [-75.23277250140019, 39.97674721451288], [-75.23178329749751, 39.97685325505881], [-75.23149148084414, 39.97530596816591], [-75.23119487993743, 39.97371076200501], [-75.23095604779093, 39.972431121830894], [-75.23066592674994, 39.97089571533209], [-75.2316186944593, 39.970790477756395], [-75.23257362152906, 39.970684110217924], [-75.23336893261782, 39.97059218114643], [-75.23420321472648, 39.970501406483386], [-75.23497433505277, 39.9704167449269], [-75.23569889615287, 39.970337328070315], [-75.23631310132686, 39.97026837795627], [-75.23678070312911, 39.97021782046675], [-75.2374561581777, 39.970142539223346], [-75.23828930295882, 39.970049354997684], [-75.23904602094366, 39.96996385280201], [-75.23913452825445, 39.969894156939084], [-75.23913209514878, 39.969754754208566], [-75.2394792263291, 39.968098598180006], [-75.24046481307757, 39.96821893667362], [-75.24145297711482, 39.96834167726721], [-75.24212447373782, 39.96842525010824], [-75.24275547517408, 39.96850182540956], [-75.2434287755889, 39.968584480317844], [-75.24441601399035, 39.968707975928204], [-75.24547391384, 39.96883780580013], [-75.24515909619272, 39.97036089119962], [-75.24486356416409, 39.971775639167774], [-75.2448856392896, 39.97185524981628], [-75.24495111730269, 39.9721864702484], [-75.24524823877749, 39.97377965868526], [-75.24554128638924, 39.97533147813126], [-75.24609118202632, 39.978301577196724], [-75.24504122364607, 39.978412055657806], [-75.24413970763122, 39.97851841750556], [-75.24324659750818, 39.97861072026858], [-75.24235595224603, 39.97871317642875], [-75.24157570471533, 39.97880044785277], [-75.24078976905467, 39.978888636602434], [-75.23995988823147, 39.97897202874271], [-75.2391258420239, 39.97907096594098], [-75.23918921571732, 39.97941621572664], [-75.23925884612574, 39.97975561433966], [-75.23930359835626, 39.98001699220907], [-75.23937971975117, 39.98042536050394], [-75.23946783594495, 39.98091564453654], [-75.23947488765062, 39.981115960767795], [-75.23941782700196, 39.9812841947847], [-75.2393364320091, 39.9814487492631], [-75.23904360757881, 39.98195194572015], [-75.23874552031107, 39.982383101851674], [-75.2386133941012, 39.98260314982133], [-75.23842231593397, 39.98253142003323], [-75.23811612436292, 39.98241398589309], [-75.23781094088199, 39.98229497371522], [-75.23750653404826, 39.98217475145208], [-75.23720266549203, 39.982053684198895], [-75.2368991025902, 39.9819321398775], [-75.23659561047401, 39.98181048365511], [-75.23629195306646, 39.98168908157105], [-75.23598789645939, 39.98156830421485], [-75.23568320596944, 39.981448511344695], [-75.235377642931, 39.981330075243065], [-75.23507097953902, 39.98121335941804], [-75.2347635565961, 39.98109782622857], [-75.23445592365209, 39.980982614650586], [-75.23414810250182, 39.980867705338326], [-75.2339591056347, 39.98079736322357]]]}}, {"id": "3411", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22537367233548, 39.969518809027754], [-75.22521439736686, 39.96858969330798], [-75.22514103036552, 39.96814671704771], [-75.2250468750093, 39.96758631841902], [-75.22496396018423, 39.96711185914312], [-75.22488803837112, 39.96664398229281], [-75.22481339106439, 39.96620721153563], [-75.22474199418114, 39.96576621718402], [-75.22464125082206, 39.96518496270591], [-75.2245912459582, 39.96489703747408], [-75.22514198038573, 39.96509389861236], [-75.22546341299322, 39.9652056034123], [-75.22556752561768, 39.9651707802169], [-75.22575087538455, 39.965011065857176], [-75.22584462433898, 39.964944331733754], [-75.22593459599196, 39.964904030803716], [-75.22610999450255, 39.96488050967971], [-75.22600799891545, 39.96425105452764], [-75.22620387041475, 39.96333076392879], [-75.22651888853692, 39.96181383932179], [-75.22716073419876, 39.96189346163298], [-75.22767177235322, 39.961956483381094], [-75.22831950768749, 39.96203465368984], [-75.22890005165743, 39.962108580531364], [-75.2294393887058, 39.96217231617399], [-75.22997789457627, 39.96224147031967], [-75.23055280293089, 39.96231103746482], [-75.23111700353813, 39.96238527615233], [-75.23252865584055, 39.96255878324145], [-75.23322361067352, 39.9626449768465], [-75.23381051701594, 39.962713922148495], [-75.23454018565789, 39.96280875270846], [-75.23445932939023, 39.963200941933835], [-75.23437635415527, 39.9635658070285], [-75.23422456767936, 39.9643261508282], [-75.23406328017319, 39.965086532123166], [-75.23390423808061, 39.96584799773842], [-75.23485508281934, 39.9659636960506], [-75.23584294651286, 39.96608663788389], [-75.23650507401216, 39.966168230655015], [-75.2371614548503, 39.96625200566942], [-75.2378184730562, 39.96633140931446], [-75.23750271463467, 39.96785548024659], [-75.23728329128427, 39.96890011837256], [-75.23724127600507, 39.96897856508314], [-75.23729344550368, 39.96926116010406], [-75.2374561581777, 39.970142539223346], [-75.23678070312911, 39.97021782046675], [-75.23631310132686, 39.97026837795627], [-75.23569889615287, 39.970337328070315], [-75.23497433505277, 39.9704167449269], [-75.23420321472648, 39.970501406483386], [-75.23336893261782, 39.97059218114643], [-75.23257362152906, 39.970684110217924], [-75.2316186944593, 39.970790477756395], [-75.23066592674994, 39.97089571533209], [-75.23013130258644, 39.970951605867114], [-75.22970182046944, 39.9710009771368], [-75.22927488529089, 39.97104645009116], [-75.22873632677351, 39.971108667353086], [-75.22798949528075, 39.97119099565426], [-75.22723186273795, 39.97127505125215], [-75.22656776207988, 39.971345030936604], [-75.22584237062186, 39.97143175783036], [-75.22583491592414, 39.971365668757734], [-75.22561691682257, 39.97048021464085], [-75.22537367233548, 39.969518809027754]]]}}, {"id": "3412", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16531767459625, 39.985862954522055], [-75.1645183402784, 39.98576060376892], [-75.16374843716792, 39.985658196097646], [-75.16361511904181, 39.98563622364805], [-75.16295124718621, 39.98554373064669], [-75.1613833728726, 39.98534049571191], [-75.15981211803054, 39.985149374337254], [-75.15995561764252, 39.984505307145], [-75.16005187512609, 39.98407025927032], [-75.16014671826717, 39.983628898433636], [-75.16047074927715, 39.98212965095867], [-75.16125560907027, 39.98222307186988], [-75.16205428012076, 39.98233074924151], [-75.16236008766865, 39.98083813786572], [-75.16315665839294, 39.980942851162624], [-75.16393580353895, 39.98103913365748], [-75.16472468800637, 39.98114600900777], [-75.16551143276519, 39.981245061241], [-75.16585070373783, 39.979715263217045], [-75.16663553032588, 39.97981529385303], [-75.16742031243012, 39.97992619061252], [-75.1675304717212, 39.97940596581951], [-75.1676280204409, 39.97898637261039], [-75.16773197320441, 39.97850834128129], [-75.16960310980627, 39.97875342002229], [-75.16967792544243, 39.97839775201961], [-75.16977694651204, 39.97795828070379], [-75.1699744619065, 39.978280100894736], [-75.17028853504735, 39.97884634054967], [-75.1706003791456, 39.9788799426667], [-75.17121429252416, 39.97895355524523], [-75.17280097114764, 39.97916176707219], [-75.17439470402259, 39.97938126690058], [-75.17429160032444, 39.9798387647821], [-75.17420179283666, 39.98027882369307], [-75.17409937627401, 39.98077776542791], [-75.17397233359998, 39.9813635885929], [-75.1739088664198, 39.981669054259875], [-75.17499251879063, 39.98246110362299], [-75.17531348430072, 39.98271320068983], [-75.17502711544529, 39.98401535462864], [-75.17446476462969, 39.98393718846691], [-75.1739932972147, 39.983876423527335], [-75.17344318835225, 39.98380091296403], [-75.17288889415936, 39.983735751197166], [-75.17264001235985, 39.983706247609604], [-75.17242436921067, 39.98366591017204], [-75.17184895333082, 39.98360012299759], [-75.1715119580545, 39.98509195802337], [-75.17139443540877, 39.98560510985928], [-75.17129204164658, 39.9860765043848], [-75.17117730471297, 39.986607635295094], [-75.17039697199631, 39.98651296182429], [-75.1695756209088, 39.98640739287832], [-75.16877950953383, 39.986307275443664], [-75.1679760361179, 39.986203987335514], [-75.16731922555276, 39.98612259810428], [-75.16675389667743, 39.98605696318333], [-75.16609883186936, 39.985967163689345], [-75.16531767459625, 39.985862954522055]]]}}, {"id": "3414", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11276124831959, 40.02641186400716], [-75.11273721167133, 40.02625973722888], [-75.11269694601232, 40.026139855005376], [-75.11264127307359, 40.026031131377025], [-75.11253997405726, 40.025940546364005], [-75.11239743559263, 40.025883550536044], [-75.11219565173879, 40.02580984284168], [-75.11201306961777, 40.02575576420475], [-75.11184485327558, 40.02571736433789], [-75.11162389969851, 40.02568734496481], [-75.11145717538353, 40.02561060483848], [-75.11136771254505, 40.02547232346244], [-75.11138100554518, 40.025322974135], [-75.11139530336182, 40.02521202095638], [-75.11145649869287, 40.02492178887383], [-75.11151724422533, 40.024771608827905], [-75.11155118858731, 40.024668781106776], [-75.11155111853812, 40.02454214695341], [-75.11152217264079, 40.02438798964436], [-75.11146539218102, 40.02417946886957], [-75.11140146858001, 40.0238978752842], [-75.11136284617542, 40.02373581970001], [-75.11137275171805, 40.023609414750425], [-75.11133144784338, 40.02351637049445], [-75.11125308109845, 40.02334956411429], [-75.11118647596466, 40.023254281404995], [-75.11110177526518, 40.02313311519714], [-75.11103099730558, 40.023027881026636], [-75.11100130792074, 40.0228928929837], [-75.11099007363472, 40.02279670032437], [-75.11094118311102, 40.022642083552036], [-75.11085179972112, 40.02250188607569], [-75.11070048985525, 40.02241398644175], [-75.11043418841447, 40.022331119294705], [-75.11018165557297, 40.02227926614272], [-75.10997370141887, 40.022236111394484], [-75.10981502257131, 40.022209440059875], [-75.10968715675077, 40.02216045205417], [-75.10936860306877, 40.02213777806876], [-75.10908257018968, 40.022177247355486], [-75.10879579097849, 40.022235887123955], [-75.10861343267538, 40.02230460133006], [-75.10846947746545, 40.022412571771106], [-75.10816720392039, 40.02261283534436], [-75.10807862273626, 40.022708648478115], [-75.10808940525057, 40.02281634179531], [-75.10803565669126, 40.022914876376085], [-75.10792281385686, 40.02299286475194], [-75.10778154248753, 40.02303182489346], [-75.10768455448083, 40.02308715380358], [-75.10751425639339, 40.023102421663594], [-75.1073729845967, 40.02314138040217], [-75.1072096770473, 40.023233555827986], [-75.10704424584219, 40.02331608887378], [-75.10686065894835, 40.02335215568997], [-75.10673673617148, 40.02333011580817], [-75.10659934434501, 40.02326939441552], [-75.10646255127769, 40.02319333576283], [-75.10631124672449, 40.02310543037679], [-75.10613545565268, 40.02300544943703], [-75.10605247374939, 40.02295749164282], [-75.10584846396745, 40.022941281788675], [-75.10566863995791, 40.022944815986456], [-75.10543678370175, 40.023002793046025], [-75.10518210647984, 40.02339025508062], [-75.10508763662361, 40.02350895536784], [-75.1049143487351, 40.02360089684679], [-75.10480855458879, 40.023604262577635], [-75.10462705803057, 40.02354439338227], [-75.10448981833729, 40.02347983364043], [-75.10438324573097, 40.02339679548704], [-75.10429208156532, 40.02330259974516], [-75.10422615514095, 40.02320130771402], [-75.10419937155955, 40.0231201076988], [-75.10419313378188, 40.02302403107859], [-75.10420684398072, 40.02292841226691], [-75.10409693194785, 40.02280308621844], [-75.10390069411592, 40.02258750934463], [-75.10376993748694, 40.02248472580516], [-75.10365124898982, 40.022328497067704], [-75.1035865167461, 40.0221965348681], [-75.10335965788994, 40.02174233905787], [-75.10326807374527, 40.02153109220913], [-75.10319501376617, 40.02135672803016], [-75.10315611454705, 40.02120233779963], [-75.10314578864238, 40.0210831418571], [-75.10317007037045, 40.02097241862366], [-75.10324696224033, 40.02092046779915], [-75.1033671849326, 40.02084992359056], [-75.10344906506903, 40.02072942262346], [-75.10349786087525, 40.02056161716755], [-75.10354663582343, 40.02039388960434], [-75.10359316270015, 40.02023388882772], [-75.1036570026035, 40.01987656897237], [-75.10369705860172, 40.01965930618886], [-75.10373741520444, 40.01952793403622], [-75.10383544166106, 40.019430651520175], [-75.10399315033166, 40.01937884526158], [-75.10417631965316, 40.01934652461066], [-75.10490885747714, 40.01934702238403], [-75.10514063362046, 40.01932905063636], [-75.10533590146107, 40.01928062696204], [-75.10548898171467, 40.01920460947764], [-75.10558162665019, 40.019114922541654], [-75.10567101752486, 40.01896577809034], [-75.10575625037828, 40.018839218600135], [-75.10586011859452, 40.01878112960109], [-75.10602757994306, 40.01868922492428], [-75.10629411473795, 40.01857817906554], [-75.10654007144916, 40.018490600181316], [-75.10672341291877, 40.01841166013801], [-75.10688632285866, 40.018352409187465], [-75.10702670300225, 40.01828255869556], [-75.10713174797101, 40.01819425525665], [-75.10725067393167, 40.01808611062809], [-75.10740250262029, 40.01789052115543], [-75.1074492879232, 40.01778323623494], [-75.1075019453263, 40.01760930469143], [-75.1075484926834, 40.01742389303715], [-75.10753986399301, 40.0172246106732], [-75.1074969191298, 40.0170648597228], [-75.10743534731849, 40.016962640715306], [-75.10733477456357, 40.0168519653075], [-75.10721337838702, 40.01677104914463], [-75.10706904288469, 40.016693842391774], [-75.10774566743571, 40.016581861972575], [-75.1079566960431, 40.01649243760471], [-75.10902514328343, 40.01628798447145], [-75.11136051115065, 40.01586805552725], [-75.11319772024986, 40.01553363305251], [-75.11747690485849, 40.015784203074695], [-75.11757219048913, 40.01558324450789], [-75.11944047531844, 40.01302705559972], [-75.12146940260696, 40.01015438751697], [-75.1233245784329, 40.00755692677894], [-75.12339320057532, 40.007418611434275], [-75.1234268932234, 40.007213386785665], [-75.12394932729268, 40.0048150263638], [-75.12413815881776, 40.004830317442874], [-75.12447874922599, 40.0048561241479], [-75.12481960245576, 40.004880381575894], [-75.12516067340198, 40.00490328601852], [-75.12550191799478, 40.00492503739572], [-75.12584329110216, 40.004945832900546], [-75.12618475093373, 40.004965874307906], [-75.1265262525044, 40.00498535521095], [-75.12686775392743, 40.005004480086335], [-75.12720920671373, 40.00502344244802], [-75.12755058678738, 40.005042349869555], [-75.12787293070507, 40.00505914287225], [-75.12823372347772, 40.00507655443872], [-75.12857548972254, 40.00509169232322], [-75.12891735401352, 40.005105659191635], [-75.1292592889243, 40.00511855803528], [-75.12960127164347, 40.005130493753214], [-75.12994327233797, 40.005141571084394], [-75.13028526365714, 40.00515189122062], [-75.13062734388893, 40.00516042473138], [-75.13096967892228, 40.0051647840814], [-75.1313120905648, 40.005165243621754], [-75.13165438461807, 40.00516218906765], [-75.13195017894888, 40.0051571594535], [-75.13159329869447, 40.006777230208], [-75.13157556350811, 40.006918297371676], [-75.13128895844574, 40.0082654424629], [-75.13122229503595, 40.00838998153134], [-75.13076933610816, 40.010429891484755], [-75.13058658979985, 40.01132621444333], [-75.13039457043838, 40.0122046367008], [-75.13032098038171, 40.012520430993625], [-75.12995568069938, 40.01421690737463], [-75.12991212376365, 40.01438165693674], [-75.12985744154966, 40.01458954235703], [-75.12969626827335, 40.015025138211094], [-75.12954449782806, 40.015628823804676], [-75.1295060820777, 40.01580432267141], [-75.12950279799507, 40.0158893945626], [-75.12958420585664, 40.01596204506945], [-75.12816782747261, 40.01727601049683], [-75.12773597041543, 40.01780744067364], [-75.12728008257253, 40.01855118772663], [-75.12717014834826, 40.0187202445289], [-75.12841230851205, 40.01888818420382], [-75.12828942424522, 40.01931224639612], [-75.12817272187972, 40.019745126505015], [-75.12805743325659, 40.02016776351229], [-75.12793752006728, 40.02058217569274], [-75.12782553628675, 40.02100974360595], [-75.12772254870809, 40.02143541478058], [-75.12766722191142, 40.021678075942006], [-75.1275883473653, 40.02193652409814], [-75.12799561695972, 40.021990003261664], [-75.12832997980297, 40.02203750959046], [-75.1288388007593, 40.02209552698992], [-75.13067747059611, 40.0223264212425], [-75.13165534349513, 40.022466545626095], [-75.13266657267638, 40.02260530897158], [-75.13351806873054, 40.02269961384838], [-75.13517364017464, 40.02288937907387], [-75.13568333923226, 40.02295388314234], [-75.13606727037968, 40.022993869695384], [-75.13680074130902, 40.02266481390887], [-75.13878989832307, 40.02167194894793], [-75.13962410577875, 40.02125554449826], [-75.13989326600749, 40.021143092921015], [-75.14126176526882, 40.020457827767785], [-75.14208211948895, 40.020076769123925], [-75.14246779103715, 40.01992131567765], [-75.1428848436295, 40.01977265716096], [-75.14326097466613, 40.01965955683399], [-75.14363335649988, 40.01956889301005], [-75.14409578705738, 40.019486694076015], [-75.14468710862543, 40.01941183457217], [-75.1453628611309, 40.019380817093726], [-75.14613788229155, 40.01938413204805], [-75.14638257068283, 40.01941384755003], [-75.14705879583687, 40.01909484972519], [-75.14714447643219, 40.01901145008065], [-75.1484680681646, 40.01840767197671], [-75.14908973201165, 40.0181106529181], [-75.1493475064601, 40.017958839322176], [-75.14923089340353, 40.01850378775497], [-75.14899401136766, 40.019573800755275], [-75.14895440785872, 40.01974442881808], [-75.14893672041177, 40.01982773281143], [-75.14885054693626, 40.020202287719464], [-75.14873876523373, 40.02071218205933], [-75.14869223870237, 40.02095431395297], [-75.14856756631274, 40.02147712508312], [-75.14824630443891, 40.02296067248439], [-75.14789505568146, 40.024554834487724], [-75.14755641513194, 40.02613961797357], [-75.14721962735459, 40.02764514311778], [-75.14691352343654, 40.02914516669453], [-75.14685100645652, 40.029482804010044], [-75.14682785335461, 40.029603964525016], [-75.1467062707666, 40.03012811909639], [-75.1466831095684, 40.03022796670184], [-75.14657623992896, 40.03063853073237], [-75.1465198569296, 40.03086669439065], [-75.14622802622662, 40.03218680840395], [-75.14589858962322, 40.033729038091984], [-75.14555423769299, 40.03526310349242], [-75.14514980930565, 40.0371471869134], [-75.1450944010915, 40.03741430698231], [-75.14463761989032, 40.03740050019296], [-75.14146588926472, 40.03628840562802], [-75.14067276785356, 40.036185703147375], [-75.13988302535608, 40.036084777555345], [-75.13909695975165, 40.0359825433927], [-75.13837487569867, 40.03588478067623], [-75.13816430148131, 40.03580745474563], [-75.13720839198119, 40.03656309931997], [-75.13682469320108, 40.03688982868427], [-75.13643742560077, 40.03719714962134], [-75.13596239568302, 40.03714069095362], [-75.13601924186796, 40.03629591786183], [-75.13491719236487, 40.0360488365267], [-75.13435513859052, 40.03588374814797], [-75.1335665112153, 40.035626316406706], [-75.13276532628717, 40.03533772841605], [-75.13184454399239, 40.035052721926434], [-75.13088081387585, 40.03474587521162], [-75.12996771413667, 40.034430870331285], [-75.12909893597146, 40.03414864853474], [-75.12813812194852, 40.0338276626433], [-75.12706004213122, 40.033477949059915], [-75.12598314561127, 40.033122585588295], [-75.12534748854145, 40.032908326018976], [-75.12418810210198, 40.03255273783986], [-75.12403310722064, 40.03404097915165], [-75.12395251307039, 40.03484852062137], [-75.12386086326329, 40.035563736148795], [-75.12142273542835, 40.03528205370963], [-75.12007475167565, 40.035112436465], [-75.11755213886096, 40.03479497055524], [-75.11716343499901, 40.03473588882475], [-75.11685146188826, 40.03469482398715], [-75.11650544942219, 40.03465710540937], [-75.11615336508022, 40.03461643623171], [-75.11583371765533, 40.03457011622014], [-75.11547394249487, 40.03451920586586], [-75.11513512724989, 40.03447968217076], [-75.11489795401083, 40.0344480299467], [-75.11461328019617, 40.03479657194471], [-75.11403140194247, 40.035472603119146], [-75.11316100665682, 40.036504056939116], [-75.11305569974876, 40.036434051292005], [-75.11286185146832, 40.03628378348594], [-75.11271773120262, 40.03613849196673], [-75.11259311624242, 40.03600516240305], [-75.11246381193612, 40.03586404823729], [-75.11234917031798, 40.03573094741304], [-75.11229498148876, 40.03558388308132], [-75.11223007187495, 40.03545576172138], [-75.11217677643165, 40.03528569564004], [-75.11210903928468, 40.035101865293676], [-75.11200088136177, 40.034930539948306], [-75.1118463429548, 40.03479652038135], [-75.1116426742597, 40.03464218637786], [-75.11147771551177, 40.03451943936245], [-75.11131878745127, 40.034369970957016], [-75.11118435201018, 40.034232574807], [-75.11110976725047, 40.03409655366053], [-75.11105961613627, 40.033989029395414], [-75.1109623165532, 40.03378042456657], [-75.11086592483, 40.033563319462765], [-75.11083024503537, 40.0334809861199], [-75.11075606505753, 40.03330752991063], [-75.11073180561117, 40.03316115427316], [-75.1107405208493, 40.03306542190741], [-75.11078444721699, 40.03296282191432], [-75.11083246535115, 40.03288334174899], [-75.11086083187242, 40.03279573592071], [-75.11088094445881, 40.03253525806396], [-75.11093395775706, 40.032327343632254], [-75.11098071478231, 40.032151899997615], [-75.11098697635899, 40.031990875782576], [-75.11101877241295, 40.031815089260064], [-75.11105012104336, 40.03165080490753], [-75.11106017740865, 40.031520565969934], [-75.1110655442647, 40.03138254520654], [-75.11108423162239, 40.03128704286119], [-75.11111029413618, 40.03113031110495], [-75.11113104639891, 40.031043888122646], [-75.11114603241961, 40.03098147483674], [-75.11115355423335, 40.030916413112244], [-75.11113733717988, 40.03069155703038], [-75.1111304256763, 40.030484182095286], [-75.11113817749339, 40.03028481815558], [-75.11111815921498, 40.03015772835574], [-75.11104641384301, 40.02994886364824], [-75.11099587582973, 40.02983641975879], [-75.11091824685484, 40.029650443769015], [-75.11088312012737, 40.02952684150518], [-75.11089965592181, 40.0293583793058], [-75.11093346239159, 40.02913083519481], [-75.110963465984, 40.02900105463474], [-75.11101505890687, 40.02882956142872], [-75.11108406824572, 40.0287237002696], [-75.11119944987506, 40.02858053334839], [-75.11128855606445, 40.02847129816967], [-75.1113933681751, 40.02834323816028], [-75.11150271900249, 40.0282267929963], [-75.1116525633503, 40.02809592899173], [-75.11176496213216, 40.02802943822743], [-75.11188540151312, 40.02801301937457], [-75.11201551288957, 40.02800449573766], [-75.11212083880417, 40.02799156515585], [-75.11228720378666, 40.02794933838244], [-75.11241925306783, 40.02789097420533], [-75.11262767431037, 40.027794071584445], [-75.11279310960418, 40.02771153141426], [-75.11288477850178, 40.02760043473574], [-75.11289026279778, 40.02745805116416], [-75.11288284071983, 40.02732048726397], [-75.11284742220191, 40.027038159909495], [-75.11281268095597, 40.026880239703914], [-75.11278223350453, 40.02664258597819], [-75.11276124831959, 40.02641186400716]]]}}, {"id": "3415", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14574969569053, 39.99444058423645], [-75.14583808553304, 39.994038562044096], [-75.14590955203708, 39.99371661970736], [-75.14598324178084, 39.99339005147819], [-75.14608959689218, 39.99284960025018], [-75.146882363615, 39.99295012073503], [-75.14788703690505, 39.9930798799411], [-75.1480820231125, 39.99237630471542], [-75.14830855656979, 39.99150510945522], [-75.14837843921606, 39.991217649853986], [-75.14834622301967, 39.99106996958742], [-75.14830695816073, 39.99096960067433], [-75.14815313833667, 39.99072552900276], [-75.1480273988089, 39.99056278992367], [-75.14760275533222, 39.989961381659676], [-75.14754375226056, 39.98986497810584], [-75.14781131295904, 39.98990639776105], [-75.14834098292921, 39.98997194898325], [-75.14889812146112, 39.990037386804815], [-75.14935910335902, 39.99009310529301], [-75.1499162301982, 39.990170796234345], [-75.15047931750038, 39.990248048190566], [-75.15092207484999, 39.9903050550188], [-75.15149127773667, 39.9903735518906], [-75.15287221410173, 39.99055287770031], [-75.15307026424283, 39.990578595857045], [-75.15396997044064, 39.99069743079759], [-75.15506972645015, 39.99083911992631], [-75.1552710646978, 39.990854301803694], [-75.15495008064467, 39.99235406881351], [-75.154710323233, 39.993406694494226], [-75.1546557583441, 39.99364499818574], [-75.15463860311415, 39.993720562504734], [-75.15458888487491, 39.99393956602994], [-75.15439262996195, 39.99487228977799], [-75.15431937889399, 39.99522312512964], [-75.15425395767012, 39.99552675657377], [-75.15414268878145, 39.99599273008329], [-75.15398545407648, 39.99678309188484], [-75.15378676915165, 39.997718116984636], [-75.15349510235843, 39.997823867989524], [-75.15318558709062, 39.99793621812171], [-75.15287614918813, 39.998048692632175], [-75.1525667984611, 39.998161310664905], [-75.15225754960804, 39.99827408606865], [-75.151948411096, 39.99838704246226], [-75.15163939531651, 39.99850019274151], [-75.15133051435075, 39.998613557904264], [-75.15102177807661, 39.998727155294766], [-75.15071319988314, 39.99884100233675], [-75.15040478837375, 39.99895511904876], [-75.15009660788598, 39.99906959969441], [-75.15002142288795, 39.99909774129665], [-75.14978886678787, 39.99918478507549], [-75.14948154428005, 39.9993006368818], [-75.14917458286699, 39.99941706551422], [-75.1488679272919, 39.99953398412696], [-75.14856152357349, 39.999651303199265], [-75.14825531418532, 39.99976893403054], [-75.14794924507942, 39.99988678889942], [-75.14771857637933, 39.999975736496935], [-75.14764326110743, 40.00000477825697], [-75.14733730812034, 40.00012281708132], [-75.14703132763313, 40.000240811241575], [-75.14672526660064, 40.00035867754171], [-75.14641907001749, 40.00047632282946], [-75.14611268015865, 40.00059366380154], [-75.1458060431573, 40.00071060823121], [-75.14549910383906, 40.00082706746568], [-75.14519180816691, 40.00094295377832], [-75.14488409738829, 40.00105818023578], [-75.1445759199824, 40.00117265466236], [-75.14426722590736, 40.0012863074405], [-75.14395805176184, 40.00139919255699], [-75.14379809293565, 40.00145585389514], [-75.14334643394318, 40.00074401544597], [-75.14417327834188, 40.000431689331485], [-75.14446339758591, 40.000328858228784], [-75.14476701066317, 39.998916789999626], [-75.14509795563065, 39.997426025465145], [-75.14523738035037, 39.9967583568742], [-75.14531276689256, 39.99639505500942], [-75.14542741148071, 39.99593018162321], [-75.14560509758087, 39.99510328931318], [-75.14574969569053, 39.99444058423645]]]}}, {"id": "3416", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15559310602195, 39.98937048713281], [-75.15593589746767, 39.987878554987844], [-75.15627637149069, 39.986284634879105], [-75.1566139097415, 39.984700031799335], [-75.15691577823603, 39.98322097007837], [-75.15725547387726, 39.98169482104445], [-75.15889700821441, 39.981915040873034], [-75.16047074927715, 39.98212965095867], [-75.16014671826717, 39.983628898433636], [-75.16005187512609, 39.98407025927032], [-75.15995561764252, 39.984505307145], [-75.15981211803054, 39.985149374337254], [-75.1613833728726, 39.98534049571191], [-75.16295124718621, 39.98554373064669], [-75.16361511904181, 39.98563622364805], [-75.16374843716792, 39.985658196097646], [-75.1645183402784, 39.98576060376892], [-75.16531767459625, 39.985862954522055], [-75.16609883186936, 39.985967163689345], [-75.16576344044917, 39.987515001890294], [-75.16497721886617, 39.98742226112422], [-75.16418508630503, 39.98731207775422], [-75.1638426170767, 39.988907785078474], [-75.16350180899792, 39.990402590136924], [-75.16318388419658, 39.99189165982134], [-75.16294179904934, 39.993044584418065], [-75.16285018130908, 39.993481241024035], [-75.16320875554426, 39.993324243819174], [-75.16375019463729, 39.99396740746016], [-75.16364550628586, 39.99401579203144], [-75.163350493459, 39.994148322421], [-75.16305295047066, 39.9942776496103], [-75.16275345225249, 39.9944040577435], [-75.16245167076322, 39.994527825031916], [-75.16214851295865, 39.9946492223867], [-75.16184356796215, 39.99476851894601], [-75.16163202672163, 39.99484964644871], [-75.16153718510476, 39.994885985669384], [-75.16122978418703, 39.99500191943675], [-75.16092135898762, 39.99511657598776], [-75.16061238107615, 39.99523024616773], [-75.16045884503355, 39.995286151429184], [-75.16030227819603, 39.99534316033578], [-75.15999242176541, 39.99545566658435], [-75.15968224437353, 39.99556799088048], [-75.15937214283764, 39.99568041788825], [-75.15910396550437, 39.995787685077396], [-75.15892784507975, 39.99664039538977], [-75.15871361413248, 39.99765215583468], [-75.15858145930692, 39.99820623506159], [-75.15860052408783, 39.99832830269098], [-75.15899682039944, 39.998828117554744], [-75.15862265723953, 39.99902740827307], [-75.15881222546582, 39.99925726237476], [-75.15899602352023, 39.99947923625235], [-75.1591803374125, 39.99970092501449], [-75.15936539983369, 39.99992221767875], [-75.1595615079236, 40.0001381630573], [-75.1597713031795, 40.0003466843852], [-75.15999048402087, 40.000548785576555], [-75.16022065424094, 40.00074376302431], [-75.16046479410915, 40.00092885830357], [-75.16072102574383, 40.001103237877146], [-75.16098012864764, 40.001275047033516], [-75.161240496931, 40.00144584343654], [-75.16150199984101, 40.00161570702282], [-75.16176451244321, 40.00178471876236], [-75.1620279027452, 40.00195296036825], [-75.16229204340254, 40.002120514560396], [-75.16255680593444, 40.00228746313338], [-75.16282206196311, 40.00245388518213], [-75.16308767953454, 40.00261989215878], [-75.16335369651195, 40.002785904787025], [-75.16362073706692, 40.002951223522345], [-75.16368297597836, 40.00298909789411], [-75.16385107540998, 40.0030100347716], [-75.16428653681054, 40.00307313876195], [-75.16423349039556, 40.00331710737684], [-75.16416664603113, 40.003624523693304], [-75.16410376670699, 40.0039137062559], [-75.16394255755147, 40.004656818906476], [-75.1637889278219, 40.005391718188754], [-75.16362929487212, 40.006153400797835], [-75.16522993149461, 40.006355457449395], [-75.16683627468983, 40.00656625799417], [-75.16694227559776, 40.00659450027782], [-75.16706466223903, 40.00671707874373], [-75.16753051174942, 40.007229125812884], [-75.16817665677839, 40.00792919258995], [-75.16848841069908, 40.00830024742549], [-75.16902131344077, 40.00890282471295], [-75.16914141995576, 40.00883386530923], [-75.16918907816523, 40.00888644483949], [-75.1693848528208, 40.00910241414265], [-75.16958063595123, 40.009318377866634], [-75.16977642969267, 40.00953434146551], [-75.16997222605549, 40.00975029935354], [-75.17012183886611, 40.009915319234196], [-75.17016802476591, 40.00996625873271], [-75.1703638212095, 40.0101822176973], [-75.17055961518098, 40.01039818164876], [-75.17075539862202, 40.01061414680205], [-75.17095117611288, 40.010830115963145], [-75.17114693811662, 40.01104609342295], [-75.17134268473573, 40.011262076480755], [-75.17153840994537, 40.01147806950644], [-75.1717341148136, 40.01169407522714], [-75.1719297936233, 40.01191008991051], [-75.17212544499837, 40.01212611893189], [-75.17232106308491, 40.01234216215997], [-75.17251664898511, 40.01255822142175], [-75.17271219560573, 40.012774298360135], [-75.17290770415151, 40.01299039210142], [-75.17310316505105, 40.01320650783698], [-75.17330414845071, 40.01342880284322], [-75.17185110939445, 40.01421865254688], [-75.16990856732517, 40.015251275367135], [-75.16932388598943, 40.01561308507677], [-75.16922639801739, 40.015723223219084], [-75.16903385880265, 40.01586767344456], [-75.16875550853955, 40.016063754154686], [-75.16843373327283, 40.016281090405364], [-75.16830601223785, 40.01634706248918], [-75.1681011247023, 40.0164922616461], [-75.16773914456775, 40.01677676715074], [-75.16726952579513, 40.01715117286135], [-75.16686766643225, 40.017471360816195], [-75.16637408236633, 40.017853963773874], [-75.16612297805914, 40.01804860618353], [-75.16595069899675, 40.01817014864473], [-75.16580943584417, 40.018250581845486], [-75.16549601289547, 40.018389849712655], [-75.16451672375794, 40.01882070935512], [-75.1642100579168, 40.01894959041402], [-75.16382947760472, 40.01918243550099], [-75.1637594507446, 40.01923581659435], [-75.16260104521236, 40.019587285956476], [-75.16165740699451, 40.019866523130446], [-75.16069195307685, 40.020154843997446], [-75.16065723063446, 40.020267866462135], [-75.16064104200257, 40.02032672424692], [-75.160587094013, 40.02047412659202], [-75.16020566761645, 40.021312918917715], [-75.15950224294882, 40.0223432341361], [-75.15903605423988, 40.02280190058979], [-75.15790589094377, 40.023704912206234], [-75.15782906553865, 40.02375408545743], [-75.15724219824413, 40.02408925777339], [-75.15715360548293, 40.02413182896438], [-75.15696965137474, 40.02409024536052], [-75.15618269933954, 40.02398984263152], [-75.15539798309345, 40.02388910564577], [-75.15461075489527, 40.02380201274293], [-75.15405365312745, 40.02372785476409], [-75.15358036624822, 40.02365797773569], [-75.15303674304226, 40.02358501513317], [-75.1522667173414, 40.02348787117297], [-75.15147241693867, 40.023381528339236], [-75.15090369245164, 40.02331069599366], [-75.1506825222888, 40.02328812009111], [-75.15044000128925, 40.0232544392301], [-75.14987715742109, 40.0231842466539], [-75.14911084080961, 40.023087628437445], [-75.14824630443891, 40.02296067248439], [-75.14856756631274, 40.02147712508312], [-75.14869223870237, 40.02095431395297], [-75.14873876523373, 40.02071218205933], [-75.14885054693626, 40.020202287719464], [-75.14893672041177, 40.01982773281143], [-75.14895440785872, 40.01974442881808], [-75.14899401136766, 40.019573800755275], [-75.14923089340353, 40.01850378775497], [-75.1493475064601, 40.017958839322176], [-75.14958686700786, 40.01693362198721], [-75.14972718930441, 40.016216009188604], [-75.14977041330002, 40.01602280409584], [-75.14983979568106, 40.01567315281484], [-75.14993222382938, 40.01532671020396], [-75.15003962572906, 40.01481970269212], [-75.14983165309977, 40.01476596338327], [-75.1478365064141, 40.01450755380314], [-75.14795501083744, 40.0139786146205], [-75.14791438685396, 40.01392740449221], [-75.14722884497878, 40.01408140210885], [-75.14722189137788, 40.013432961843364], [-75.14647680294615, 40.013343114491526], [-75.1433203153046, 40.01292742387583], [-75.14279528639928, 40.012858788197796], [-75.14232926693204, 40.01279113891428], [-75.14178660755206, 40.01270991995661], [-75.14211264092272, 40.01123807168278], [-75.14243880955175, 40.00974402913456], [-75.14276347100015, 40.00826978854965], [-75.14277295786349, 40.00815499045495], [-75.14277427561711, 40.0080455913732], [-75.14306343435318, 40.006722226308], [-75.14309801736401, 40.00656380658327], [-75.14343826047002, 40.005072838644516], [-75.1433015921368, 40.00472237755151], [-75.1431399324757, 40.00428493094099], [-75.14329364986786, 40.00352469250323], [-75.14350127331724, 40.00355156369469], [-75.14374365394839, 40.00358293398834], [-75.1440384135838, 40.00223426474612], [-75.14412366322766, 40.00215922659642], [-75.14406451756503, 40.00191290723567], [-75.14379809293565, 40.00145585389514], [-75.14334643394318, 40.00074401544597], [-75.14417327834188, 40.000431689331485], [-75.14446339758591, 40.000328858228784], [-75.14476701066317, 39.998916789999626], [-75.14509795563065, 39.997426025465145], [-75.14523738035037, 39.9967583568742], [-75.14531276689256, 39.99639505500942], [-75.14542741148071, 39.99593018162321], [-75.14560509758087, 39.99510328931318], [-75.14574969569053, 39.99444058423645], [-75.14583808553304, 39.994038562044096], [-75.14590955203708, 39.99371661970736], [-75.14598324178084, 39.99339005147819], [-75.14608959689218, 39.99284960025018], [-75.146882363615, 39.99295012073503], [-75.14788703690505, 39.9930798799411], [-75.1480820231125, 39.99237630471542], [-75.14830855656979, 39.99150510945522], [-75.14837843921606, 39.991217649853986], [-75.14834622301967, 39.99106996958742], [-75.14830695816073, 39.99096960067433], [-75.14815313833667, 39.99072552900276], [-75.1480273988089, 39.99056278992367], [-75.14760275533222, 39.989961381659676], [-75.14754375226056, 39.98986497810584], [-75.14781131295904, 39.98990639776105], [-75.14834098292921, 39.98997194898325], [-75.14889812146112, 39.990037386804815], [-75.14935910335902, 39.99009310529301], [-75.1499162301982, 39.990170796234345], [-75.15047931750038, 39.990248048190566], [-75.15092207484999, 39.9903050550188], [-75.15149127773667, 39.9903735518906], [-75.15287221410173, 39.99055287770031], [-75.15307026424283, 39.990578595857045], [-75.15396997044064, 39.99069743079759], [-75.15506972645015, 39.99083911992631], [-75.1552710646978, 39.990854301803694], [-75.1554998987755, 39.989794409414735], [-75.15559310602195, 39.98937048713281]]]}}, {"id": "3417", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17587953728179, 39.928942223357396], [-75.17529040837256, 39.92886827026287], [-75.17372885312534, 39.92866167871712], [-75.17316209167474, 39.92858897664198], [-75.17269999642133, 39.9285213470136], [-75.17215552066993, 39.9284642408782], [-75.1715962274586, 39.9283885534335], [-75.17113787546292, 39.92833001716304], [-75.1705936331929, 39.92826682605035], [-75.17004997262877, 39.92818833357387], [-75.1695817099415, 39.928134065918755], [-75.16895773764685, 39.92803667143668], [-75.16882811944834, 39.92803500276149], [-75.16909605511938, 39.92681792605534], [-75.16936345812617, 39.9255916618934], [-75.16962817132318, 39.92437326570684], [-75.16988103061077, 39.92313243740692], [-75.17017980089858, 39.92188608861979], [-75.17044815178282, 39.920640631710256], [-75.17071125143731, 39.91939499497743], [-75.17085501498846, 39.91941145488218], [-75.17148785787545, 39.91948650588742], [-75.1719403514858, 39.91954497164647], [-75.17244736593929, 39.919622458981124], [-75.17300577989006, 39.91968075076979], [-75.1734928793705, 39.91974405438717], [-75.17403428189978, 39.91981077618362], [-75.1745883463195, 39.919885815943516], [-75.17504683556119, 39.91994488243412], [-75.17561598837206, 39.92001434807827], [-75.17636766741929, 39.92010990347405], [-75.17716829123836, 39.920219553776164], [-75.17795486096878, 39.92030994298901], [-75.1787385022326, 39.92041614683869], [-75.17926924046455, 39.920489878413086], [-75.17952902810964, 39.92052150129681], [-75.17976291264522, 39.92055068325926], [-75.1803152087144, 39.92062101252252], [-75.18089486899946, 39.920705255663606], [-75.18123535356035, 39.92073887462593], [-75.18141846905199, 39.92077361841488], [-75.18222126839873, 39.92087175608389], [-75.18251211277983, 39.91963000802967], [-75.18279356431404, 39.9183597213585], [-75.18282151039273, 39.918233589219184], [-75.18440337252183, 39.91844380213035], [-75.18510032904231, 39.918554256265494], [-75.1860247859152, 39.91869097912871], [-75.18696229271059, 39.918867726114804], [-75.18735445155635, 39.91900684701349], [-75.18743741577522, 39.91905085589099], [-75.1877964349535, 39.91925229894708], [-75.18803994232465, 39.919456388448246], [-75.18825459471665, 39.919754693708725], [-75.18910493952532, 39.920684126443284], [-75.18916422210287, 39.92074625237124], [-75.18932450204431, 39.920914220147004], [-75.18941869879913, 39.921007844650426], [-75.18981258718762, 39.92139934007993], [-75.19006058289085, 39.9217171307119], [-75.19015860117176, 39.92170215116822], [-75.1903419604548, 39.92167437759978], [-75.19047247264182, 39.92165423956683], [-75.19060146538074, 39.92162802170247], [-75.19081634417404, 39.92158434713675], [-75.19106794347522, 39.92153321049858], [-75.19122215402639, 39.921500199794416], [-75.19181991635783, 39.92138891467094], [-75.19249473767239, 39.9212670726349], [-75.1938644811039, 39.9211301915961], [-75.19448533530738, 39.921085070263416], [-75.19504651330628, 39.92101268758331], [-75.20006238051837, 39.92013718296255], [-75.20179132442954, 39.91981930807259], [-75.2019945286076, 39.919781946952625], [-75.20203954057037, 39.919939811356116], [-75.20262167546693, 39.920589535899126], [-75.20375348198348, 39.921039201492874], [-75.20524090114905, 39.92107222205077], [-75.20647864311627, 39.920901574082286], [-75.20771109345405, 39.920872302717065], [-75.20888316774469, 39.92098318900874], [-75.20994136801055, 39.92119059609576], [-75.21111670313407, 39.92195247005715], [-75.21195444836577, 39.92265025678862], [-75.21236773139668, 39.92339524882293], [-75.21255801411132, 39.92420605590866], [-75.21240349026309, 39.92539130720084], [-75.21214722121682, 39.92634789377554], [-75.21157630482006, 39.92760883240147], [-75.21116053746807, 39.928406227444746], [-75.21074355424716, 39.929267201457094], [-75.21052319268539, 39.92972229370418], [-75.20969119752053, 39.930835934591194], [-75.20757291260742, 39.933166337097894], [-75.20642541432272, 39.9343578658045], [-75.2058484773116, 39.93503846158553], [-75.2055971311071, 39.93548447427487], [-75.20537590640467, 39.93587702877518], [-75.20516612810576, 39.937061048418464], [-75.205161751336, 39.93840528394946], [-75.20516213209207, 39.938603951228046], [-75.20516533511787, 39.94027327776247], [-75.20515916367398, 39.94065801560933], [-75.2051511241047, 39.941109705274734], [-75.20503308883262, 39.94184108941856], [-75.20454685757073, 39.94255199429125], [-75.20384389489251, 39.943159031803354], [-75.2030545074157, 39.94362262812122], [-75.2018099014724, 39.94396290300457], [-75.20161442497796, 39.94396959747437], [-75.20080678289902, 39.9439972290549], [-75.20042752555308, 39.94394416737382], [-75.19996512413074, 39.94387946206713], [-75.19909313422974, 39.94360535829999], [-75.19795163481602, 39.94316960721573], [-75.19692197216327, 39.94267969748615], [-75.19577620044844, 39.94234286678344], [-75.19460271708917, 39.942260124464774], [-75.19386792557843, 39.94227634272461], [-75.19369737903752, 39.942280125631584], [-75.19364560318907, 39.942281245825754], [-75.19253116202371, 39.94259603349538], [-75.19177005947272, 39.94303188465246], [-75.19157341030997, 39.94319903601902], [-75.19105851370779, 39.943636688136955], [-75.19099136949414, 39.94369375929506], [-75.19067974179438, 39.943981979434184], [-75.19022943637438, 39.94439845576369], [-75.18985287188819, 39.94473383402683], [-75.18945882417533, 39.94508477771983], [-75.18939241252559, 39.94514392406182], [-75.18889164537305, 39.945525822624006], [-75.18825665527879, 39.94601007383723], [-75.18792294351213, 39.946227784440076], [-75.18735320149077, 39.94659947458651], [-75.18687020015383, 39.94691457163152], [-75.18616626780558, 39.94640323864336], [-75.18591378202936, 39.9462198103695], [-75.18568688960681, 39.946160001890966], [-75.18570281208814, 39.945277339313236], [-75.18500788589968, 39.94517971766221], [-75.18388742182482, 39.94503666902186], [-75.1833493200888, 39.94497731916542], [-75.18278116485943, 39.94490703972125], [-75.18095102500803, 39.94467119483289], [-75.18061150719751, 39.94463209059361], [-75.1804101923637, 39.94460311929231], [-75.17876636292688, 39.944401920202495], [-75.17716958712774, 39.94421095754197], [-75.17524211881907, 39.94397053003853], [-75.17366854988926, 39.94377646481941], [-75.17378342812157, 39.94329297174073], [-75.17388527619204, 39.942801545330546], [-75.17410510399097, 39.94179478942147], [-75.17418774665221, 39.941422116658075], [-75.1742728042991, 39.941022763217234], [-75.17437734450827, 39.940527727135084], [-75.17448140136361, 39.94005729581756], [-75.17457705552728, 39.93964170153694], [-75.17465110370284, 39.93930143241136], [-75.1747518511938, 39.93882735859993], [-75.17631149645452, 39.93902274518719], [-75.17825196738539, 39.93926905726782], [-75.17983891181979, 39.939479802181104], [-75.18149528329731, 39.93968854325546], [-75.18314107292235, 39.93989685848033], [-75.18495610112747, 39.94008534101652], [-75.18516814972767, 39.93911548563741], [-75.18523483849769, 39.938824544195754], [-75.18527101941457, 39.938663579602974], [-75.18530335339072, 39.93851578013453], [-75.1853918963181, 39.93805886479759], [-75.18541643376375, 39.93795369886082], [-75.18549993635563, 39.93759827496855], [-75.18572790895732, 39.93648034793651], [-75.18575640786506, 39.93648392872858], [-75.18732760299982, 39.93668022889355], [-75.18888557125193, 39.93688807195146], [-75.18897800978061, 39.93645812481999], [-75.18906265917072, 39.936096819177195], [-75.18914801425663, 39.93567262079523], [-75.18923713517907, 39.93524427892119], [-75.18931761794046, 39.934867517007774], [-75.1894169526017, 39.93443037137289], [-75.18968857636325, 39.93322864037063], [-75.1899493618791, 39.932003488518205], [-75.19012731576615, 39.931220084595004], [-75.1902220487094, 39.93078038680986], [-75.19047474449467, 39.92955977394741], [-75.19053543273527, 39.92926649229742], [-75.19060233030642, 39.928978118248274], [-75.19066859300911, 39.92866941676119], [-75.19074422958964, 39.92832825837987], [-75.18918145487082, 39.92813040403253], [-75.18759758428777, 39.927927613924204], [-75.18685882004087, 39.92783214017275], [-75.18599144062982, 39.92772824384543], [-75.18577448530856, 39.92769634346894], [-75.18518707344323, 39.9276293218686], [-75.18469356535304, 39.927563973577286], [-75.18413572449033, 39.92748839072143], [-75.18356727097928, 39.927414552536376], [-75.18307002762307, 39.9273473187791], [-75.18247970745371, 39.92727098722562], [-75.18192364877922, 39.92721051903828], [-75.18143433399078, 39.92714252943958], [-75.18089407838447, 39.92707475519641], [-75.18024882745244, 39.92700347944945], [-75.17961190138833, 39.926913714072676], [-75.17897092153989, 39.926830360441656], [-75.17840805567783, 39.92674854414239], [-75.17794948006994, 39.92669611269314], [-75.17740166500627, 39.92662679085603], [-75.177302928636, 39.927069538127725], [-75.17722299981469, 39.92742547305531], [-75.17713716654389, 39.927843969737246], [-75.17703462385559, 39.9282791854793], [-75.176962359652, 39.92864116235151], [-75.17687231172798, 39.92906292240617], [-75.17633522047532, 39.92900112389839], [-75.17587953728179, 39.928942223357396]]]}}, {"id": "3418", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17633522047532, 39.92900112389839], [-75.17587953728179, 39.928942223357396], [-75.17529040837256, 39.92886827026287], [-75.17372885312534, 39.92866167871712], [-75.17316209167474, 39.92858897664198], [-75.17269999642133, 39.9285213470136], [-75.17215552066993, 39.9284642408782], [-75.1715962274586, 39.9283885534335], [-75.17113787546292, 39.92833001716304], [-75.1705936331929, 39.92826682605035], [-75.17004997262877, 39.92818833357387], [-75.1695817099415, 39.928134065918755], [-75.16895773764685, 39.92803667143668], [-75.16882811944834, 39.92803500276149], [-75.16909605511938, 39.92681792605534], [-75.16936345812617, 39.9255916618934], [-75.16962817132318, 39.92437326570684], [-75.16988103061077, 39.92313243740692], [-75.17017980089858, 39.92188608861979], [-75.17044815178282, 39.920640631710256], [-75.17071125143731, 39.91939499497743], [-75.17085501498846, 39.91941145488218], [-75.17148785787545, 39.91948650588742], [-75.1719403514858, 39.91954497164647], [-75.17244736593929, 39.919622458981124], [-75.17300577989006, 39.91968075076979], [-75.1734928793705, 39.91974405438717], [-75.17403428189978, 39.91981077618362], [-75.1745883463195, 39.919885815943516], [-75.17504683556119, 39.91994488243412], [-75.17561598837206, 39.92001434807827], [-75.17636766741929, 39.92010990347405], [-75.17716829123836, 39.920219553776164], [-75.17795486096878, 39.92030994298901], [-75.1787385022326, 39.92041614683869], [-75.17926924046455, 39.920489878413086], [-75.17952902810964, 39.92052150129681], [-75.17976291264522, 39.92055068325926], [-75.1803152087144, 39.92062101252252], [-75.18089486899946, 39.920705255663606], [-75.18123535356035, 39.92073887462593], [-75.18141846905199, 39.92077361841488], [-75.18222126839873, 39.92087175608389], [-75.18251211277983, 39.91963000802967], [-75.18279356431404, 39.9183597213585], [-75.18282151039273, 39.918233589219184], [-75.18440337252183, 39.91844380213035], [-75.18510032904231, 39.918554256265494], [-75.1860247859152, 39.91869097912871], [-75.18696229271059, 39.918867726114804], [-75.18735445155635, 39.91900684701349], [-75.18743741577522, 39.91905085589099], [-75.1877964349535, 39.91925229894708], [-75.18803994232465, 39.919456388448246], [-75.18825459471665, 39.919754693708725], [-75.18910493952532, 39.920684126443284], [-75.18916422210287, 39.92074625237124], [-75.18932450204431, 39.920914220147004], [-75.18941869879913, 39.921007844650426], [-75.18981258718762, 39.92139934007993], [-75.19006058289085, 39.9217171307119], [-75.18965238681633, 39.92180636368266], [-75.18890044418367, 39.92197068733024], [-75.18887518116124, 39.922077642304465], [-75.18866229293894, 39.92299769209519], [-75.19026602904323, 39.92319343690514], [-75.19110163648162, 39.923295418125015], [-75.19118578818758, 39.923305688022566], [-75.19139613936314, 39.92338336357609], [-75.19161165853886, 39.923617751117284], [-75.19199250935134, 39.92401569699446], [-75.19234322256247, 39.92437831201164], [-75.19250447035066, 39.92454503064019], [-75.19269098803389, 39.92474055559078], [-75.19296708973327, 39.92503366855368], [-75.19283266918998, 39.926071733611906], [-75.19261584179569, 39.92604225557384], [-75.19248167879262, 39.92605443277392], [-75.19234561742311, 39.92610679659354], [-75.19209440777651, 39.926203476633354], [-75.19197881306039, 39.92624796494283], [-75.19156533587899, 39.92638000609633], [-75.19138477873135, 39.92643766419167], [-75.19100906898176, 39.92655764092452], [-75.19048556896081, 39.926739731963984], [-75.18997104522253, 39.92688815214393], [-75.18946070656388, 39.926984595101054], [-75.1899181876443, 39.926970750615254], [-75.19100820692802, 39.927117599451165], [-75.19093151825834, 39.92746656874468], [-75.1908730394135, 39.92773812156416], [-75.19081348797354, 39.928013904988966], [-75.19074422958964, 39.92832825837987], [-75.18918145487082, 39.92813040403253], [-75.18759758428777, 39.927927613924204], [-75.18685882004087, 39.92783214017275], [-75.18599144062982, 39.92772824384543], [-75.18577448530856, 39.92769634346894], [-75.18518707344323, 39.9276293218686], [-75.18469356535304, 39.927563973577286], [-75.18413572449033, 39.92748839072143], [-75.18356727097928, 39.927414552536376], [-75.18307002762307, 39.9273473187791], [-75.18247970745371, 39.92727098722562], [-75.18192364877922, 39.92721051903828], [-75.18143433399078, 39.92714252943958], [-75.18089407838447, 39.92707475519641], [-75.18024882745244, 39.92700347944945], [-75.17961190138833, 39.926913714072676], [-75.17897092153989, 39.926830360441656], [-75.17840805567783, 39.92674854414239], [-75.17794948006994, 39.92669611269314], [-75.17740166500627, 39.92662679085603], [-75.177302928636, 39.927069538127725], [-75.17722299981469, 39.92742547305531], [-75.17713716654389, 39.927843969737246], [-75.17703462385559, 39.9282791854793], [-75.176962359652, 39.92864116235151], [-75.17687231172798, 39.92906292240617], [-75.17633522047532, 39.92900112389839]]]}}, {"id": "3419", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14146588926472, 40.03628840562802], [-75.14067276785356, 40.036185703147375], [-75.13988302535608, 40.036084777555345], [-75.13909695975165, 40.0359825433927], [-75.13837487569867, 40.03588478067623], [-75.13816430148131, 40.03580745474563], [-75.13720839198119, 40.03656309931997], [-75.13682469320108, 40.03688982868427], [-75.13643742560077, 40.03719714962134], [-75.13596239568302, 40.03714069095362], [-75.13601924186796, 40.03629591786183], [-75.1362256312926, 40.033432280724874], [-75.13624750939496, 40.03328774921344], [-75.13632903528652, 40.03292146855458], [-75.13641587003075, 40.03251136041243], [-75.13648615050276, 40.03218603200388], [-75.13655569805901, 40.03186903485381], [-75.13661962081554, 40.03159076445095], [-75.13675813892036, 40.03096519043236], [-75.13701628378013, 40.02980035538107], [-75.13709228485473, 40.02941326835255], [-75.13742200151447, 40.02791977605994], [-75.13774715050255, 40.026417386977926], [-75.13828580138626, 40.02648992937553], [-75.1386988891154, 40.02653716609904], [-75.13950862078177, 40.02664905552823], [-75.14030488838324, 40.026746981853115], [-75.14108857730857, 40.02685210883573], [-75.14187993430589, 40.02695023153963], [-75.14155786712281, 40.028450084596976], [-75.14233586038641, 40.0285445555944], [-75.1431266425208, 40.02864419059783], [-75.14391379256013, 40.028750317831836], [-75.14471716118774, 40.02885685079207], [-75.14615174299354, 40.02904492261314], [-75.14691352343654, 40.02914516669453], [-75.14685100645652, 40.029482804010044], [-75.14682785335461, 40.029603964525016], [-75.1467062707666, 40.03012811909639], [-75.1466831095684, 40.03022796670184], [-75.14657623992896, 40.03063853073237], [-75.1465198569296, 40.03086669439065], [-75.14622802622662, 40.03218680840395], [-75.14589858962322, 40.033729038091984], [-75.14555423769299, 40.03526310349242], [-75.14514980930565, 40.0371471869134], [-75.1450944010915, 40.03741430698231], [-75.14463761989032, 40.03740050019296], [-75.14146588926472, 40.03628840562802]]]}}, {"id": "3420", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15368454348616, 40.01626716423652], [-75.15335320453102, 40.01620198402418], [-75.15324693958607, 40.01617530203144], [-75.1530274643304, 40.016120194868904], [-75.15270503067173, 40.01603139125947], [-75.15238807819273, 40.015931755249575], [-75.15207891659178, 40.015818381098214], [-75.15177659420125, 40.015694582898824], [-75.15149048826045, 40.015550775247235], [-75.15121604470929, 40.01539290912895], [-75.15094138488286, 40.01523564381474], [-75.15078016813321, 40.0151401698474], [-75.1503365517051, 40.015306352452406], [-75.15014844385973, 40.01534175888267], [-75.14993222382938, 40.01532671020396], [-75.15003962572906, 40.01481970269212], [-75.15007096763034, 40.01468167354025], [-75.1500965005928, 40.014569226117416], [-75.15021373801147, 40.013916741078155], [-75.15024565919153, 40.01376307611625], [-75.15039513654646, 40.01316714443147], [-75.15057380008965, 40.01237154180903], [-75.15088384543449, 40.01083838502309], [-75.15142831160365, 40.010904609042456], [-75.15179958690221, 40.010951326411366], [-75.15254164453529, 40.01105020923317], [-75.15287867430192, 40.00944804956422], [-75.15367036090495, 40.009554092098085], [-75.15446554022661, 40.00965572461483], [-75.15480148824966, 40.00808177653153], [-75.15557733939363, 40.00818170067494], [-75.1563776281082, 40.00828571438881], [-75.1565391286977, 40.007528480929054], [-75.15671137621378, 40.00679123674339], [-75.15827899180522, 40.006995350258336], [-75.15860266420239, 40.00549919183472], [-75.15938120530795, 40.005596441291345], [-75.16018002442229, 40.0056935563002], [-75.16039708600967, 40.00467860002028], [-75.16049590439602, 40.00421652653145], [-75.16124295205188, 40.00430751652491], [-75.16205980369239, 40.004411363111885], [-75.16266176106042, 40.00449586267749], [-75.16394255755147, 40.004656818906476], [-75.1637889278219, 40.005391718188754], [-75.16362929487212, 40.006153400797835], [-75.16522993149461, 40.006355457449395], [-75.16683627468983, 40.00656625799417], [-75.16694227559776, 40.00659450027782], [-75.16706466223903, 40.00671707874373], [-75.16753051174942, 40.007229125812884], [-75.16817665677839, 40.00792919258995], [-75.16848841069908, 40.00830024742549], [-75.16902131344077, 40.00890282471295], [-75.16914141995576, 40.00883386530923], [-75.16918907816523, 40.00888644483949], [-75.1693848528208, 40.00910241414265], [-75.16958063595123, 40.009318377866634], [-75.16977642969267, 40.00953434146551], [-75.16997222605549, 40.00975029935354], [-75.17012183886611, 40.009915319234196], [-75.16999100923545, 40.009980603154695], [-75.1697039552153, 40.01012403304795], [-75.16941695932798, 40.01026753473676], [-75.1691299666026, 40.01041104391501], [-75.16884292685465, 40.01055449368053], [-75.16855578983157, 40.0106978189312], [-75.16826850056458, 40.010840955359306], [-75.16793774191312, 40.011007132731905], [-75.16777770010867, 40.01108753491117], [-75.16765116339951, 40.0111511053811], [-75.16736457698876, 40.01129506815394], [-75.16707798591912, 40.011439028331296], [-75.16679138915686, 40.011582982285844], [-75.1665047889065, 40.01172693367119], [-75.16621818761232, 40.01187087983926], [-75.16593157814704, 40.012014823332706], [-75.1656449698768, 40.012158764362326], [-75.1653583592207, 40.01230270464945], [-75.16507174621306, 40.012446643293906], [-75.16478513202462, 40.01259058032205], [-75.16449851879126, 40.01273452118798], [-75.16421190320634, 40.01287846041121], [-75.16392529098655, 40.01302240172455], [-75.16363867861956, 40.01316634504888], [-75.16335206958335, 40.0133102913636], [-75.16306546146778, 40.01345424241642], [-75.16277885785378, 40.01359819648607], [-75.16249225746749, 40.01374215624688], [-75.16220566147976, 40.01388612172527], [-75.16190138857833, 40.01403897573039], [-75.16163248269973, 40.014174069834986], [-75.16134590331674, 40.01431805524632], [-75.16105932819474, 40.014462049976366], [-75.16077276211982, 40.01460605143004], [-75.16048620023716, 40.01475006400301], [-75.16019965081081, 40.01489408607971], [-75.15991310674733, 40.01503811930221], [-75.15962657390058, 40.01518216380263], [-75.15934004986012, 40.015326221328756], [-75.15905493993432, 40.01547215715871], [-75.15877274865699, 40.0156218460325], [-75.15847900854268, 40.0157557355624], [-75.15816828945724, 40.01586664362334], [-75.15785344588112, 40.015970763203924], [-75.15772865369271, 40.01601172539366], [-75.15753812329432, 40.016074266545736], [-75.157218111556, 40.01616711405825], [-75.15688822595365, 40.01623613107863], [-75.1565538522124, 40.01629451651498], [-75.1560662031187, 40.01635348405228], [-75.15572648503664, 40.016383367047936], [-75.15538440697776, 40.016397019760355], [-75.15504172966676, 40.01639847886657], [-75.15469996687044, 40.01638631532018], [-75.15435919764802, 40.01635785398967], [-75.15406802819236, 40.016323599506364], [-75.15368454348616, 40.01626716423652]]]}}, {"id": "3421", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10993282324226, 40.04319925585045], [-75.10827180197076, 40.042214728152906], [-75.10673069026728, 40.041321112298505], [-75.10562252298803, 40.040667949189285], [-75.1046332240413, 40.04007483349837], [-75.103163265148, 40.03919752094247], [-75.10157375467256, 40.03829446838198], [-75.0993867904679, 40.03676270560465], [-75.09842348622718, 40.03609259162841], [-75.09768657589605, 40.035719345833094], [-75.09308759856975, 40.03348670616812], [-75.09327502170578, 40.03330591693202], [-75.09349854261541, 40.03307356717856], [-75.0937343543084, 40.032843763787554], [-75.09392169359725, 40.032648524438095], [-75.09411844194337, 40.03245672539379], [-75.09435086658802, 40.03220778020944], [-75.093790692357, 40.031513191046294], [-75.09354315989118, 40.03119660686105], [-75.09320525225375, 40.03070558680073], [-75.09531218868015, 40.02854813419083], [-75.09623683618052, 40.02759719115612], [-75.09655185034995, 40.027787634227415], [-75.09665184640231, 40.02785106630354], [-75.09680538289797, 40.02794846082214], [-75.09790836046977, 40.02861986382946], [-75.09832541146291, 40.02820654081584], [-75.09869780527592, 40.027854182841565], [-75.09880927970418, 40.02774045184587], [-75.09906469220137, 40.02749807807378], [-75.10128705513067, 40.0289720841755], [-75.10156167428505, 40.02918380082311], [-75.10195887434806, 40.02934196297108], [-75.1024230166573, 40.02949318557148], [-75.10480855458879, 40.023604262577635], [-75.1049143487351, 40.02360089684679], [-75.10508763662361, 40.02350895536784], [-75.10518210647984, 40.02339025508062], [-75.10543678370175, 40.023002793046025], [-75.10566863995791, 40.022944815986456], [-75.10584846396745, 40.022941281788675], [-75.10605247374939, 40.02295749164282], [-75.10613545565268, 40.02300544943703], [-75.10631124672449, 40.02310543037679], [-75.10646255127769, 40.02319333576283], [-75.10659934434501, 40.02326939441552], [-75.10673673617148, 40.02333011580817], [-75.10686065894835, 40.02335215568997], [-75.10704424584219, 40.02331608887378], [-75.1072096770473, 40.023233555827986], [-75.1073729845967, 40.02314138040217], [-75.10751425639339, 40.023102421663594], [-75.10768455448083, 40.02308715380358], [-75.10778154248753, 40.02303182489346], [-75.10792281385686, 40.02299286475194], [-75.10803565669126, 40.022914876376085], [-75.10808940525057, 40.02281634179531], [-75.10807862273626, 40.022708648478115], [-75.10816720392039, 40.02261283534436], [-75.10846947746545, 40.022412571771106], [-75.10861343267538, 40.02230460133006], [-75.10879579097849, 40.022235887123955], [-75.10908257018968, 40.022177247355486], [-75.10936860306877, 40.02213777806876], [-75.10968715675077, 40.02216045205417], [-75.10981502257131, 40.022209440059875], [-75.10997370141887, 40.022236111394484], [-75.11018165557297, 40.02227926614272], [-75.11043418841447, 40.022331119294705], [-75.11070048985525, 40.02241398644175], [-75.11085179972112, 40.02250188607569], [-75.11094118311102, 40.022642083552036], [-75.11099007363472, 40.02279670032437], [-75.11100130792074, 40.0228928929837], [-75.11103099730558, 40.023027881026636], [-75.11110177526518, 40.02313311519714], [-75.11118647596466, 40.023254281404995], [-75.11125308109845, 40.02334956411429], [-75.11133144784338, 40.02351637049445], [-75.11137275171805, 40.023609414750425], [-75.11136284617542, 40.02373581970001], [-75.11140146858001, 40.0238978752842], [-75.11146539218102, 40.02417946886957], [-75.11152217264079, 40.02438798964436], [-75.11155111853812, 40.02454214695341], [-75.11155118858731, 40.024668781106776], [-75.11151724422533, 40.024771608827905], [-75.11145649869287, 40.02492178887383], [-75.11139530336182, 40.02521202095638], [-75.11138100554518, 40.025322974135], [-75.11136771254505, 40.02547232346244], [-75.11145717538353, 40.02561060483848], [-75.11162389969851, 40.02568734496481], [-75.11184485327558, 40.02571736433789], [-75.11201306961777, 40.02575576420475], [-75.11219565173879, 40.02580984284168], [-75.11239743559263, 40.025883550536044], [-75.11253997405726, 40.025940546364005], [-75.11264127307359, 40.026031131377025], [-75.11269694601232, 40.026139855005376], [-75.11273721167133, 40.02625973722888], [-75.11276124831959, 40.02641186400716], [-75.11278223350453, 40.02664258597819], [-75.11281268095597, 40.026880239703914], [-75.11284742220191, 40.027038159909495], [-75.11288284071983, 40.02732048726397], [-75.11289026279778, 40.02745805116416], [-75.11288477850178, 40.02760043473574], [-75.11279310960418, 40.02771153141426], [-75.11262767431037, 40.027794071584445], [-75.11241925306783, 40.02789097420533], [-75.11228720378666, 40.02794933838244], [-75.11212083880417, 40.02799156515585], [-75.11201551288957, 40.02800449573766], [-75.11188540151312, 40.02801301937457], [-75.11176496213216, 40.02802943822743], [-75.1116525633503, 40.02809592899173], [-75.11150271900249, 40.0282267929963], [-75.1113933681751, 40.02834323816028], [-75.11128855606445, 40.02847129816967], [-75.11119944987506, 40.02858053334839], [-75.11108406824572, 40.0287237002696], [-75.11101505890687, 40.02882956142872], [-75.110963465984, 40.02900105463474], [-75.11093346239159, 40.02913083519481], [-75.11089965592181, 40.0293583793058], [-75.11088312012737, 40.02952684150518], [-75.11091824685484, 40.029650443769015], [-75.11099587582973, 40.02983641975879], [-75.11104641384301, 40.02994886364824], [-75.11111815921498, 40.03015772835574], [-75.11113817749339, 40.03028481815558], [-75.1111304256763, 40.030484182095286], [-75.11113733717988, 40.03069155703038], [-75.11115355423335, 40.030916413112244], [-75.11114603241961, 40.03098147483674], [-75.11113104639891, 40.031043888122646], [-75.11111029413618, 40.03113031110495], [-75.11108423162239, 40.03128704286119], [-75.1110655442647, 40.03138254520654], [-75.11106017740865, 40.031520565969934], [-75.11105012104336, 40.03165080490753], [-75.11101877241295, 40.031815089260064], [-75.11098697635899, 40.031990875782576], [-75.11098071478231, 40.032151899997615], [-75.11093395775706, 40.032327343632254], [-75.11088094445881, 40.03253525806396], [-75.11086083187242, 40.03279573592071], [-75.11083246535115, 40.03288334174899], [-75.11078444721699, 40.03296282191432], [-75.1107405208493, 40.03306542190741], [-75.11073180561117, 40.03316115427316], [-75.11075606505753, 40.03330752991063], [-75.11083024503537, 40.0334809861199], [-75.11086592483, 40.033563319462765], [-75.1109623165532, 40.03378042456657], [-75.11105961613627, 40.033989029395414], [-75.11110976725047, 40.03409655366053], [-75.11118435201018, 40.034232574807], [-75.11131878745127, 40.034369970957016], [-75.11147771551177, 40.03451943936245], [-75.1116426742597, 40.03464218637786], [-75.1118463429548, 40.03479652038135], [-75.11200088136177, 40.034930539948306], [-75.11210903928468, 40.035101865293676], [-75.11217677643165, 40.03528569564004], [-75.11223007187495, 40.03545576172138], [-75.11229498148876, 40.03558388308132], [-75.11234917031798, 40.03573094741304], [-75.11246381193612, 40.03586404823729], [-75.11259311624242, 40.03600516240305], [-75.11271773120262, 40.03613849196673], [-75.11286185146832, 40.03628378348594], [-75.11305569974876, 40.036434051292005], [-75.11316100665682, 40.036504056939116], [-75.11326496084212, 40.03657316283834], [-75.11338012352775, 40.036692843895196], [-75.11349536452525, 40.03681061013599], [-75.11361410099974, 40.03696682859716], [-75.1137419204401, 40.03714627938603], [-75.11381241943819, 40.03725917994319], [-75.11386266859212, 40.0373792906528], [-75.1139219993191, 40.037522632849516], [-75.11402212652956, 40.03790098860959], [-75.11404788283444, 40.03800902466463], [-75.11408860470681, 40.038117404159905], [-75.11410319589001, 40.03825588381147], [-75.11409857931179, 40.03837473435773], [-75.1141160352188, 40.038503685594705], [-75.11420272836139, 40.038649574724715], [-75.1142487356538, 40.038750401375246], [-75.11425014870089, 40.03884252882347], [-75.11427990082679, 40.03898964670384], [-75.11434745416437, 40.03907566195408], [-75.11445948254539, 40.0392343375422], [-75.11453027601395, 40.03948631264985], [-75.11455061278535, 40.03958602844723], [-75.11453878916122, 40.039679994812566], [-75.11453306027111, 40.03982750226669], [-75.11446248689798, 40.03996095702236], [-75.11437838529145, 40.04002185416315], [-75.1142154194218, 40.04021915570021], [-75.11411900420693, 40.04038657080244], [-75.1140082063116, 40.04050339639674], [-75.11392190675035, 40.04062078412621], [-75.11385169712868, 40.04074482303881], [-75.11378099830318, 40.040881417330844], [-75.11372590411038, 40.04103721654756], [-75.1136475265812, 40.0411610687875], [-75.11359413553215, 40.04127292783695], [-75.11349028293597, 40.041421325852625], [-75.11331865739629, 40.04163099141643], [-75.1130556110803, 40.04187939626916], [-75.11286947701865, 40.04204161064726], [-75.1127741066663, 40.04214006146113], [-75.1127128405414, 40.04228617576003], [-75.11264213788857, 40.042422767540494], [-75.11257021738584, 40.04259074478913], [-75.11253291397634, 40.04270925566286], [-75.11246866984594, 40.04288997486483], [-75.11236858653379, 40.04315154394665], [-75.11233201443348, 40.04325122473875], [-75.11228678688215, 40.043363271613295], [-75.11219231569136, 40.04348047053307], [-75.11210576754667, 40.043604133305365], [-75.11198581625828, 40.04374587662462], [-75.11185124027685, 40.04384330742715], [-75.1117332427706, 40.043934836877064], [-75.11156575354802, 40.04403779158808], [-75.11151024216281, 40.04407797918106], [-75.1105023114915, 40.04351627589818], [-75.10993282324226, 40.04319925585045]]]}}, {"id": "3422", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08419874170141, 40.03143968991069], [-75.08410591451434, 40.03139699477768], [-75.08368317740005, 40.03115517912689], [-75.08336080567985, 40.030970773680785], [-75.08263572791671, 40.03056433012943], [-75.08086693407104, 40.02955704706404], [-75.08078735737097, 40.02951759989224], [-75.08028492634173, 40.02923217101581], [-75.07998518405103, 40.029061425175044], [-75.0796932647578, 40.02889532236388], [-75.07908101722236, 40.0285537217213], [-75.07847393502698, 40.02820917789621], [-75.077862216485, 40.02787088057335], [-75.07721471049769, 40.02749290128267], [-75.07677420640991, 40.027382718225276], [-75.07563722211042, 40.02708182314514], [-75.07548899291868, 40.027072748600645], [-75.0753671940858, 40.027039098136406], [-75.07514229652037, 40.02684967008404], [-75.07494510576818, 40.02669246215147], [-75.07336441926067, 40.02537013618446], [-75.07396432896537, 40.025074257481116], [-75.07562310739706, 40.02407587162441], [-75.07684195149976, 40.02325898385755], [-75.07750264200587, 40.02280937560482], [-75.07816413361522, 40.02236282970455], [-75.07888115254191, 40.021882928661384], [-75.07912465172282, 40.021706484266794], [-75.07941418942038, 40.02138857280776], [-75.0799195555891, 40.0208342774118], [-75.08042603579892, 40.02030400776405], [-75.08092459856877, 40.01975684134091], [-75.08150044657228, 40.019137017951294], [-75.081994744679, 40.01858136037251], [-75.08264223060424, 40.01789885752839], [-75.08350869706807, 40.01836678867006], [-75.0840592270956, 40.018659715651644], [-75.0843249369079, 40.01880570129187], [-75.08505923193333, 40.01921760855102], [-75.0872830574803, 40.02048620669436], [-75.08862030507747, 40.02124363667434], [-75.08916970347666, 40.020553783344866], [-75.08971963095158, 40.019876666126635], [-75.09149384447011, 40.021028167748334], [-75.09292462407517, 40.02196113938917], [-75.09377048922879, 40.022509222848406], [-75.09495857630324, 40.023261012180676], [-75.0955364517077, 40.02412972769605], [-75.09588283398332, 40.02475709894003], [-75.09704494224373, 40.025879303453735], [-75.09760535640449, 40.026374768656446], [-75.09759035708078, 40.026571076513996], [-75.09725400391805, 40.02641113436297], [-75.09682994834438, 40.02627212964553], [-75.09647774420104, 40.026186774181035], [-75.09605195741689, 40.02613494846775], [-75.0955834671491, 40.026127620134424], [-75.09526862397325, 40.026148333813644], [-75.09495268670224, 40.02619701018641], [-75.09439191996336, 40.0263379947691], [-75.09406814999566, 40.02647046138908], [-75.09377160583495, 40.026629748156786], [-75.0903918108727, 40.02850061797068], [-75.08956157098642, 40.02895049593653], [-75.08853297121763, 40.02951223847952], [-75.08780447439533, 40.02991630348491], [-75.08704403318237, 40.030332471248634], [-75.08673522761529, 40.03051272166657], [-75.08604451725004, 40.03093078216704], [-75.08560488963899, 40.03119645712578], [-75.08547258246628, 40.031273684432875], [-75.0852697585556, 40.03138028375811], [-75.08512333320796, 40.031450025257755], [-75.08492630444702, 40.03154244548476], [-75.08472066349404, 40.03162543348738], [-75.08451686634676, 40.03169751451363], [-75.08432709881482, 40.031763071134606], [-75.08408993092331, 40.03182185063179], [-75.08411167142378, 40.03161919193568], [-75.08419874170141, 40.03143968991069]]]}}, {"id": "3423", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10351314693432, 39.9893369206364], [-75.10308064390418, 39.988847163864136], [-75.10265238198463, 39.988374283990176], [-75.10230801269951, 39.987975914202075], [-75.10195240299188, 39.98757392128347], [-75.10163181469454, 39.98721261325986], [-75.101311975064, 39.986847573232914], [-75.10094217065105, 39.98644174338533], [-75.10058282005755, 39.98602684857752], [-75.10031677022019, 39.98572886869802], [-75.10009754556556, 39.985478587939035], [-75.09980808572746, 39.98515543917393], [-75.09974432942074, 39.985080936240884], [-75.09953190679715, 39.98484255276022], [-75.09932259123386, 39.984596926008905], [-75.09908446847261, 39.98432642894208], [-75.09905740684128, 39.984253711143715], [-75.0990307256498, 39.984149133414206], [-75.09840808852695, 39.98338968708256], [-75.09824731408207, 39.98319358419305], [-75.09804767080702, 39.98295006964042], [-75.09763312964033, 39.98247808102554], [-75.09758221042588, 39.98240811463097], [-75.0975539446821, 39.982314105049944], [-75.0975577314891, 39.98222095340564], [-75.09759008657996, 39.98214100535176], [-75.0976493489436, 39.98206277572151], [-75.09776781703351, 39.98197314037179], [-75.09967356622244, 39.98097029444044], [-75.09784798833998, 39.978878425783975], [-75.09751316558146, 39.97850784737103], [-75.09383959244585, 39.97437300792721], [-75.09483265192154, 39.9741776430036], [-75.09667124539824, 39.973803513900265], [-75.09743238976397, 39.9736379594382], [-75.09804511557637, 39.973504683462046], [-75.0984435126403, 39.9734180244327], [-75.09962358715774, 39.97314785433316], [-75.10135237773447, 39.97271914088583], [-75.10307967990225, 39.972251161764746], [-75.10618538542172, 39.97121600245923], [-75.1087669398379, 39.970222892540406], [-75.11025601168305, 39.96964565307227], [-75.1114996663189, 39.969139770101634], [-75.11406183964452, 39.96805681489876], [-75.11993151327665, 39.97064517307754], [-75.12114399119184, 39.97140323275224], [-75.12124032747748, 39.97151408764217], [-75.12026167932584, 39.97241307167241], [-75.1196488826997, 39.9729759686648], [-75.12011691306996, 39.9732682506991], [-75.12027147970196, 39.97334921215298], [-75.12043960995102, 39.97341179687219], [-75.12071324814686, 39.97344208769076], [-75.12130210318591, 39.97341310161727], [-75.12179293061767, 39.973378695737765], [-75.12214708256286, 39.97355418709864], [-75.12262237426361, 39.97377310726972], [-75.12205945121542, 39.97433784634104], [-75.1216476749726, 39.97473299700309], [-75.12107558289397, 39.975296260148234], [-75.12097598096194, 39.97538559035902], [-75.12000099038568, 39.97593696366765], [-75.11979432968705, 39.976394887457175], [-75.11864142476595, 39.97890501186372], [-75.11835456588065, 39.97954198516514], [-75.11772738319301, 39.98093034717661], [-75.11738518098363, 39.98150738567307], [-75.11738085545169, 39.98151230877383], [-75.11771344779177, 39.981893242481284], [-75.11852341721955, 39.98282667399838], [-75.1191358701804, 39.98348600088939], [-75.11919036295231, 39.983550142775705], [-75.11969085296037, 39.98411339915456], [-75.12025206106696, 39.984756703332486], [-75.12090664203696, 39.985481406064345], [-75.1212126555554, 39.98582197636218], [-75.1215107497833, 39.98616688936588], [-75.12234155204517, 39.98703199039585], [-75.12291451967475, 39.98746386304235], [-75.12338798505213, 39.987917440030564], [-75.12437568899065, 39.98882344897619], [-75.1254917782044, 39.98983790470489], [-75.12467941648082, 39.990280061064965], [-75.12443263724062, 39.99041437725906], [-75.12368779210668, 39.9908370053132], [-75.1225598379027, 39.99142904589025], [-75.12155268191938, 39.99200126868043], [-75.12031000021946, 39.99267372653925], [-75.11969525744287, 39.9930176547012], [-75.11827306308207, 39.99380494945997], [-75.11804388596643, 39.99392739215795], [-75.11577971940605, 39.99516863261082], [-75.11488815880926, 39.995651207425055], [-75.11443934320606, 39.99590407882544], [-75.11399780861547, 39.99614675119862], [-75.11335627413635, 39.99651837529572], [-75.11349353916128, 39.996509398474814], [-75.11378290403151, 39.99654566844975], [-75.11420376026825, 39.99660020163007], [-75.11544873273199, 39.996754717356865], [-75.11594728557785, 39.996823352482735], [-75.11641424499777, 39.99688234038955], [-75.11687527895985, 39.99694403320292], [-75.11738376209497, 39.997007889103365], [-75.117284481552, 39.99749552058664], [-75.11726460987974, 39.99759085143173], [-75.11720552832361, 39.99784824220488], [-75.11713718954385, 39.998204954618366], [-75.11705540656078, 39.99860245187495], [-75.11760779479803, 39.998672192592046], [-75.1181427263644, 39.99874006892576], [-75.11899483260045, 39.99885363710453], [-75.11948064078999, 39.99891846474961], [-75.11995841616955, 39.99897607104749], [-75.12043816082301, 39.99903124892896], [-75.12093406713585, 39.99909845694048], [-75.12141485963465, 39.99916050071101], [-75.12189645061733, 39.99922197325878], [-75.12286983433349, 39.999348225421684], [-75.1240010392231, 39.99949471531793], [-75.1250593976361, 39.99962937005506], [-75.12495304812299, 40.000118295958615], [-75.12482584559972, 40.00073781277301], [-75.1247327042775, 40.001125212840236], [-75.12441189333515, 40.002635747370185], [-75.12416377417915, 40.00383050497931], [-75.12394932729268, 40.0048150263638], [-75.1234268932234, 40.007213386785665], [-75.12271875342688, 40.007135884907754], [-75.11930063244641, 40.00668062097756], [-75.11348354800558, 40.00592851401563], [-75.10937229646842, 40.00539334662989], [-75.10862843880291, 40.00540581803255], [-75.10803781110063, 40.00543237740518], [-75.1073529084745, 40.00547269932909], [-75.10666156788085, 40.00548114721689], [-75.10602631109278, 40.00549929463638], [-75.10533698181442, 40.00551937536787], [-75.10327103349695, 40.005603012611246], [-75.10352956329014, 40.00443165033639], [-75.10360252415369, 40.00407447780811], [-75.10368780044956, 40.0036383117411], [-75.1037972729379, 40.003135874650006], [-75.10181133678756, 40.00286444150113], [-75.10049827342786, 40.00358035163278], [-75.09936342138738, 40.004204338993276], [-75.09798025936766, 40.004951203315294], [-75.096867594174, 40.0055623568645], [-75.09634801619768, 40.005852913915064], [-75.09327398346457, 40.00596226234677], [-75.09288480353679, 40.005974655093624], [-75.09181617120602, 40.00600868145237], [-75.09239074383822, 40.005511140248174], [-75.09255396545545, 40.00536603675294], [-75.09233848386813, 40.0051706262382], [-75.09221919628253, 40.00503682062715], [-75.0921010930726, 40.00487280351358], [-75.09183794632433, 40.00473062814792], [-75.09140573694945, 40.004554296486084], [-75.09097751437344, 40.004443576190404], [-75.09033735121965, 40.004222103066994], [-75.09015139125702, 40.004153884085476], [-75.08941342606012, 40.00388316403909], [-75.08888380083832, 40.00368440414936], [-75.08864656234672, 40.0035503823744], [-75.08842985436478, 40.003394154256455], [-75.08825342491625, 40.003213660293326], [-75.08810160755651, 40.003074055475324], [-75.08798430624469, 40.00288989257783], [-75.08790668836195, 40.00269656807221], [-75.08768061036204, 40.002278035314845], [-75.08758552063374, 40.00202886357714], [-75.08756900623546, 40.00178151413913], [-75.0875148209393, 40.00115780317993], [-75.0874978781014, 40.000754199257734], [-75.08747738455683, 40.00044123669756], [-75.08741858989772, 40.000102183717935], [-75.08725148428842, 39.99985134298901], [-75.0870710855701, 39.99960523222292], [-75.08666932734353, 39.9991549010774], [-75.08637219053867, 39.99889668903513], [-75.08650317560277, 39.99882817507667], [-75.08708989422199, 39.99851975337438], [-75.08946670816803, 39.997270276066914], [-75.0920722662799, 39.99589576298429], [-75.09452368021225, 39.994604333014706], [-75.09555908145178, 39.99409568671221], [-75.09700726018444, 39.99340093093542], [-75.09930174421098, 39.99218683465115], [-75.1016035551865, 39.99099546766221], [-75.10390372468184, 39.989797541868775], [-75.10390971850677, 39.989794342522494], [-75.10351314693432, 39.9893369206364]], [[-75.10776015070692, 39.99010542981824], [-75.10737064629286, 39.98967049495309], [-75.10707872669175, 39.989338668237636], [-75.10677909348554, 39.98900598098831], [-75.10635638278846, 39.98854972868803], [-75.10635144611298, 39.988552289988235], [-75.10674905570413, 39.98898144880599], [-75.10704868744959, 39.989314137007256], [-75.10734060796894, 39.9896459638263], [-75.10773011087964, 39.99008089876677], [-75.10801484901846, 39.99040233705714], [-75.1083140210508, 39.990732525123946], [-75.1087554459966, 39.991238922759486], [-75.10876125394992, 39.99123565516094], [-75.10834406137712, 39.990757056022076], [-75.10804488788534, 39.990426868907115], [-75.10776015070692, 39.99010542981824]], [[-75.1111666476381, 39.98992317018299], [-75.11116134482363, 39.98992615683433], [-75.1112551974888, 39.99003055456577], [-75.11147487961829, 39.99027300856957], [-75.11148009982134, 39.99027014617919], [-75.11128523736149, 39.99005508556822], [-75.1111666476381, 39.98992317018299]]]}}, {"id": "3424", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.19460271708917, 39.942260124464774], [-75.19386792557843, 39.94227634272461], [-75.19369737903752, 39.942280125631584], [-75.19364560318907, 39.942281245825754], [-75.19253116202371, 39.94259603349538], [-75.19177005947272, 39.94303188465246], [-75.19157341030997, 39.94319903601902], [-75.19136046085595, 39.943075414074606], [-75.1910869949525, 39.94291735389807], [-75.19083072896899, 39.94276959240501], [-75.19053953193601, 39.942601762056334], [-75.19019164382442, 39.94240087094255], [-75.18990808327047, 39.942253728921074], [-75.18962417748999, 39.942106989324515], [-75.18933921741734, 39.94196142109909], [-75.18905229636356, 39.9418181915225], [-75.18875975857343, 39.94168196275867], [-75.18846435891797, 39.94154927064173], [-75.18817193368325, 39.94141278695324], [-75.18787962417663, 39.94127618254073], [-75.187582394664, 39.941146041204426], [-75.18728409480497, 39.94101730776212], [-75.18699036118441, 39.940882551394274], [-75.18685092941591, 39.94081667842323], [-75.18744554526633, 39.94036545315516], [-75.18655241248791, 39.940231437973296], [-75.18631707191341, 39.94019515155492], [-75.18578213809973, 39.94013319178685], [-75.1853416132417, 39.94008211824106], [-75.18495610112747, 39.94008534101652], [-75.18516814972767, 39.93911548563741], [-75.18523483849769, 39.938824544195754], [-75.18527101941457, 39.938663579602974], [-75.18530335339072, 39.93851578013453], [-75.1853918963181, 39.93805886479759], [-75.18541643376375, 39.93795369886082], [-75.18549993635563, 39.93759827496855], [-75.18572790895732, 39.93648034793651], [-75.18575640786506, 39.93648392872858], [-75.18732760299982, 39.93668022889355], [-75.18888557125193, 39.93688807195146], [-75.18897800978061, 39.93645812481999], [-75.18906265917072, 39.936096819177195], [-75.18914801425663, 39.93567262079523], [-75.18923713517907, 39.93524427892119], [-75.18931761794046, 39.934867517007774], [-75.1894169526017, 39.93443037137289], [-75.18968857636325, 39.93322864037063], [-75.1899493618791, 39.932003488518205], [-75.19012731576615, 39.931220084595004], [-75.1902220487094, 39.93078038680986], [-75.19047474449467, 39.92955977394741], [-75.19053543273527, 39.92926649229742], [-75.19060233030642, 39.928978118248274], [-75.19066859300911, 39.92866941676119], [-75.19074422958964, 39.92832825837987], [-75.19081348797354, 39.928013904988966], [-75.1908730394135, 39.92773812156416], [-75.19093151825834, 39.92746656874468], [-75.19100820692802, 39.927117599451165], [-75.1899181876443, 39.926970750615254], [-75.18946070656388, 39.926984595101054], [-75.18997104522253, 39.92688815214393], [-75.19048556896081, 39.926739731963984], [-75.19100906898176, 39.92655764092452], [-75.19138477873135, 39.92643766419167], [-75.19156533587899, 39.92638000609633], [-75.19197881306039, 39.92624796494283], [-75.19209440777651, 39.926203476633354], [-75.19234561742311, 39.92610679659354], [-75.19248167879262, 39.92605443277392], [-75.19261584179569, 39.92604225557384], [-75.19283266918998, 39.926071733611906], [-75.19296708973327, 39.92503366855368], [-75.19269098803389, 39.92474055559078], [-75.19250447035066, 39.92454503064019], [-75.19234322256247, 39.92437831201164], [-75.19199250935134, 39.92401569699446], [-75.19161165853886, 39.923617751117284], [-75.19139613936314, 39.92338336357609], [-75.19118578818758, 39.923305688022566], [-75.19110163648162, 39.923295418125015], [-75.19026602904323, 39.92319343690514], [-75.18866229293894, 39.92299769209519], [-75.18887518116124, 39.922077642304465], [-75.18890044418367, 39.92197068733024], [-75.18965238681633, 39.92180636368266], [-75.19006058289085, 39.9217171307119], [-75.19015860117176, 39.92170215116822], [-75.1903419604548, 39.92167437759978], [-75.19047247264182, 39.92165423956683], [-75.19060146538074, 39.92162802170247], [-75.19081634417404, 39.92158434713675], [-75.19106794347522, 39.92153321049858], [-75.19122215402639, 39.921500199794416], [-75.19181991635783, 39.92138891467094], [-75.19249473767239, 39.9212670726349], [-75.1938644811039, 39.9211301915961], [-75.19448533530738, 39.921085070263416], [-75.19504651330628, 39.92101268758331], [-75.20006238051837, 39.92013718296255], [-75.20179132442954, 39.91981930807259], [-75.2019945286076, 39.919781946952625], [-75.20203954057037, 39.919939811356116], [-75.20262167546693, 39.920589535899126], [-75.20375348198348, 39.921039201492874], [-75.20524090114905, 39.92107222205077], [-75.20647864311627, 39.920901574082286], [-75.20771109345405, 39.920872302717065], [-75.20888316774469, 39.92098318900874], [-75.20994136801055, 39.92119059609576], [-75.21111670313407, 39.92195247005715], [-75.21195444836577, 39.92265025678862], [-75.21236773139668, 39.92339524882293], [-75.21255801411132, 39.92420605590866], [-75.21240349026309, 39.92539130720084], [-75.21214722121682, 39.92634789377554], [-75.21157630482006, 39.92760883240147], [-75.21116053746807, 39.928406227444746], [-75.21074355424716, 39.929267201457094], [-75.21052319268539, 39.92972229370418], [-75.20969119752053, 39.930835934591194], [-75.20757291260742, 39.933166337097894], [-75.20642541432272, 39.9343578658045], [-75.2058484773116, 39.93503846158553], [-75.2055971311071, 39.93548447427487], [-75.20537590640467, 39.93587702877518], [-75.20516612810576, 39.937061048418464], [-75.205161751336, 39.93840528394946], [-75.20516213209207, 39.938603951228046], [-75.20516533511787, 39.94027327776247], [-75.20515916367398, 39.94065801560933], [-75.2051511241047, 39.941109705274734], [-75.20503308883262, 39.94184108941856], [-75.20454685757073, 39.94255199429125], [-75.20384389489251, 39.943159031803354], [-75.2030545074157, 39.94362262812122], [-75.2018099014724, 39.94396290300457], [-75.20161442497796, 39.94396959747437], [-75.20080678289902, 39.9439972290549], [-75.20042752555308, 39.94394416737382], [-75.19996512413074, 39.94387946206713], [-75.19909313422974, 39.94360535829999], [-75.19795163481602, 39.94316960721573], [-75.19692197216327, 39.94267969748615], [-75.19577620044844, 39.94234286678344], [-75.19460271708917, 39.942260124464774]]]}}, {"id": "3426", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15717617792004, 40.054836323074866], [-75.1569513074915, 40.05473349141708], [-75.15648768589912, 40.054521088248016], [-75.15555586975394, 40.054075078255536], [-75.15521592846608, 40.053923630467544], [-75.1552727968388, 40.05311415506475], [-75.15535591337611, 40.05184994789018], [-75.15544804124193, 40.050509287563564], [-75.15550418978171, 40.04957273185858], [-75.15554903914908, 40.04893607533981], [-75.15564729333768, 40.04737197878589], [-75.15574994730251, 40.04581858914535], [-75.15577069181604, 40.04532887629433], [-75.15579424451015, 40.045130568462234], [-75.15586689162292, 40.04372131585984], [-75.15671170262142, 40.04374406575828], [-75.15710054390964, 40.04375024955351], [-75.15749434216939, 40.04376394033985], [-75.15826273724423, 40.04378326023385], [-75.15828650750801, 40.04334277765106], [-75.15830795807854, 40.042862286311994], [-75.15831847943383, 40.04240956273372], [-75.15834207328669, 40.04202281718912], [-75.15835915529544, 40.041488147437796], [-75.15840456619196, 40.040737478582756], [-75.15845241039253, 40.03854029926103], [-75.16087097790971, 40.039344789566556], [-75.16369002224152, 40.04100194564999], [-75.16507823000445, 40.04185959534455], [-75.1658194402422, 40.04231065211631], [-75.16611271882427, 40.04249277144439], [-75.16709265379062, 40.04309643913794], [-75.16720798133798, 40.04315036478413], [-75.16608592135853, 40.04424446434573], [-75.16483188229346, 40.045469253398956], [-75.16556840861145, 40.045923622089], [-75.16603828529823, 40.046219158406636], [-75.16684701465616, 40.04672479830209], [-75.16770275926207, 40.047246253974855], [-75.16723865320313, 40.04768607142578], [-75.16605473744411, 40.04883455137416], [-75.16525712299926, 40.04959732185242], [-75.16520215329996, 40.04965200639097], [-75.1645290723687, 40.050307646064056], [-75.16337456802582, 40.051419298090025], [-75.16189938305337, 40.05284319234763], [-75.16138759282359, 40.053342933770466], [-75.1611689402338, 40.05355483490157], [-75.16091929300433, 40.0537925062337], [-75.16044128197008, 40.05425713561772], [-75.15889048363145, 40.05576949183422], [-75.1583068914531, 40.05543826600539], [-75.15787079217264, 40.05519994829528], [-75.15774917146788, 40.05515408706353], [-75.15772612947846, 40.05514266578577], [-75.15755804003476, 40.05503537344851], [-75.15717617792004, 40.054836323074866]]]}}, {"id": "3427", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16611271882427, 40.04249277144439], [-75.1658194402422, 40.04231065211631], [-75.16507823000445, 40.04185959534455], [-75.16369002224152, 40.04100194564999], [-75.16087097790971, 40.039344789566556], [-75.15845241039253, 40.03854029926103], [-75.15841548109299, 40.03750327785943], [-75.15837413570682, 40.03668606571486], [-75.15836467388999, 40.036347448909254], [-75.15882863365184, 40.03588386659471], [-75.15850981372526, 40.035766671271105], [-75.15823082457943, 40.03561202212634], [-75.15796322411806, 40.03544682161301], [-75.15772483000877, 40.03525782697669], [-75.15751279485703, 40.03504927827877], [-75.15735819077271, 40.03481603849007], [-75.15724637207973, 40.03456517277133], [-75.1571768165857, 40.03430843673233], [-75.15714856928291, 40.03404519711063], [-75.15713925335662, 40.033781562234935], [-75.15713405080882, 40.03351847252612], [-75.15713133069852, 40.033255295594444], [-75.15713040889257, 40.03299205113556], [-75.15713060684874, 40.032728766178884], [-75.15713124379629, 40.032465465000264], [-75.15713163422186, 40.03220217357025], [-75.15713109754785, 40.031938911663524], [-75.1571286918101, 40.03167566882585], [-75.15712456565255, 40.03141238984647], [-75.15712063496119, 40.03114911888007], [-75.15711958910998, 40.03099435210139], [-75.15711885558103, 40.030885896479255], [-75.15712118318922, 40.03062276679764], [-75.15713063868077, 40.030359502505014], [-75.15715328534526, 40.030096589183955], [-75.15719465811908, 40.02983560783092], [-75.1572537030976, 40.029576312987786], [-75.15732283736757, 40.02931819916721], [-75.15739491993216, 40.02906085466382], [-75.15746806296517, 40.02880371697023], [-75.15754224713022, 40.02854673969627], [-75.15761740459884, 40.02828991860611], [-75.15769346172291, 40.02803324843151], [-75.15777034826526, 40.02777672668455], [-75.15784799643501, 40.02752034822959], [-75.1579260739936, 40.027264035287075], [-75.15800315192656, 40.02700739699868], [-75.15807933560305, 40.026750467279854], [-75.15815500634048, 40.02649335835503], [-75.1582305488609, 40.02623618522761], [-75.15830634454005, 40.02597905831943], [-75.15838277571298, 40.02572209347934], [-75.15846022488144, 40.025465402053776], [-75.15853907564416, 40.025209097215225], [-75.15861971166329, 40.024953290334516], [-75.15870251287683, 40.02469809810343], [-75.15878786297104, 40.02444363099025], [-75.1588761454554, 40.02419000396313], [-75.15896867635486, 40.023937587293304], [-75.15910561261985, 40.023697600917764], [-75.15927639149338, 40.02346717452106], [-75.1593151807718, 40.023411916350135], [-75.15955229569964, 40.02392652656961], [-75.15985830538149, 40.02462568816048], [-75.15989823412484, 40.024934916174836], [-75.15993190666204, 40.02555640847333], [-75.16005440340837, 40.0260242608284], [-75.16024532162861, 40.02630149469953], [-75.16057543984138, 40.02672479680068], [-75.16098306030462, 40.027254555654764], [-75.16142639258389, 40.027765739741476], [-75.16212693468864, 40.02824609646851], [-75.16226937941563, 40.028335271113015], [-75.16327034575254, 40.028961898037004], [-75.16374963293076, 40.02925677668989], [-75.16413486010035, 40.02949517005147], [-75.16495001486003, 40.029946937599085], [-75.16549124869522, 40.030243355246], [-75.16612124799292, 40.03060137387694], [-75.16648911530056, 40.03079541067652], [-75.16665612700291, 40.03089173848313], [-75.16774285096625, 40.03151764782613], [-75.16852487493777, 40.03194671602884], [-75.16921170143596, 40.032315150338924], [-75.16933164472384, 40.032384388862205], [-75.1706110856358, 40.03313266683023], [-75.17206034923001, 40.03398307995448], [-75.17271106053025, 40.03436680448122], [-75.17351405998669, 40.03483239338483], [-75.17372512349114, 40.035013997200274], [-75.17395171402475, 40.03519462706986], [-75.17472531934024, 40.03582198106344], [-75.17385116330975, 40.03667716078563], [-75.17307956027062, 40.03743490410127], [-75.17214922889707, 40.03834761950925], [-75.17161929608605, 40.03884884621468], [-75.16979490361025, 40.04063091677584], [-75.16870844823859, 40.0416874424567], [-75.16720798133798, 40.04315036478413], [-75.16709265379062, 40.04309643913794], [-75.16611271882427, 40.04249277144439]]]}}, {"id": "3428", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22978570204727, 39.960600373984306], [-75.22926343436752, 39.96053660207573], [-75.22864645665969, 39.96046483588109], [-75.22797617665447, 39.96037854276966], [-75.2274440501019, 39.96031227707355], [-75.22685117094453, 39.96024000475525], [-75.22620947880866, 39.96016033418035], [-75.22486806570537, 39.960006758007836], [-75.22477258922517, 39.9599762940573], [-75.22421322127714, 39.95990071720949], [-75.22388433780017, 39.95986316309301], [-75.22290106608362, 39.95974637621446], [-75.22239684004771, 39.95968156550928], [-75.22190949565909, 39.95962711754266], [-75.22092091673352, 39.959506370957484], [-75.22108669773192, 39.95873296666356], [-75.2212452105831, 39.95798512282026], [-75.22139876232934, 39.95722829373262], [-75.22149388168697, 39.956831736809185], [-75.22156022486105, 39.956462883842796], [-75.2216873926178, 39.95585536230671], [-75.2217982925147, 39.955320872144064], [-75.22192358674249, 39.954724257174874], [-75.22203767016683, 39.9541745245253], [-75.2220575849949, 39.95410396374315], [-75.22219283966916, 39.95341499671031], [-75.2222800420232, 39.95304100157719], [-75.22243591661017, 39.95228185757551], [-75.22258996908286, 39.951520619003304], [-75.22061693130486, 39.951276551263554], [-75.22077646819018, 39.950514077833525], [-75.22093688238962, 39.94972740202175], [-75.22291509578595, 39.949976453655864], [-75.22489312408028, 39.950215311637955], [-75.2268695724043, 39.950461812102006], [-75.22884682614269, 39.95070699306487], [-75.23063630139251, 39.95092370508727], [-75.2303245095811, 39.95247656068331], [-75.2302067744439, 39.95299633919074], [-75.23011292426536, 39.95345780357851], [-75.22999964359012, 39.9539974791832], [-75.23125273842643, 39.95414472489516], [-75.2321531848757, 39.954263206249884], [-75.23204584723553, 39.954781857684175], [-75.23193785246828, 39.95532005975538], [-75.23191132069722, 39.95541321793619], [-75.23180125062657, 39.95594961381813], [-75.23167498196297, 39.95654524233081], [-75.23155739462278, 39.957103005941605], [-75.23143923401801, 39.95768998429868], [-75.23127838691903, 39.95844994113663], [-75.23111421415305, 39.95921133036289], [-75.23096174457179, 39.95995539343796], [-75.23080297426164, 39.960723310653556], [-75.23024805594517, 39.96065731896809], [-75.22978570204727, 39.960600373984306]]]}}, {"id": "4020", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22831950768749, 39.96203465368984], [-75.22890005165743, 39.962108580531364], [-75.2294393887058, 39.96217231617399], [-75.22997789457627, 39.96224147031967], [-75.23055280293089, 39.96231103746482], [-75.23111700353813, 39.96238527615233], [-75.23252865584055, 39.96255878324145], [-75.23322361067352, 39.9626449768465], [-75.23381051701594, 39.962713922148495], [-75.23454018565789, 39.96280875270846], [-75.23445932939023, 39.963200941933835], [-75.23437635415527, 39.9635658070285], [-75.23422456767936, 39.9643261508282], [-75.23406328017319, 39.965086532123166], [-75.23390423808061, 39.96584799773842], [-75.23485508281934, 39.9659636960506], [-75.23584294651286, 39.96608663788389], [-75.23650507401216, 39.966168230655015], [-75.2371614548503, 39.96625200566942], [-75.2378184730562, 39.96633140931446], [-75.23750271463467, 39.96785548024659], [-75.23728329128427, 39.96890011837256], [-75.23724127600507, 39.96897856508314], [-75.23729344550368, 39.96926116010406], [-75.2374561581777, 39.970142539223346], [-75.23828930295882, 39.970049354997684], [-75.23904602094366, 39.96996385280201], [-75.23913452825445, 39.969894156939084], [-75.23913209514878, 39.969754754208566], [-75.2394792263291, 39.968098598180006], [-75.24046481307757, 39.96821893667362], [-75.24145297711482, 39.96834167726721], [-75.24212447373782, 39.96842525010824], [-75.24275547517408, 39.96850182540956], [-75.2434287755889, 39.968584480317844], [-75.24441601399035, 39.968707975928204], [-75.24547391384, 39.96883780580013], [-75.24579194506076, 39.967319375064456], [-75.24610900459369, 39.96579829700107], [-75.24716915793863, 39.96592870104606], [-75.247464351418, 39.96448137930475], [-75.24744737459446, 39.964391926196676], [-75.24756505959537, 39.963639605442836], [-75.24768522380508, 39.96377860116682], [-75.2477793782375, 39.96387705884449], [-75.24790389371616, 39.96398087900826], [-75.24805776030611, 39.9640759345147], [-75.24861588618744, 39.964353800501904], [-75.24896818715834, 39.96449550559238], [-75.24946554590588, 39.96472266297798], [-75.24988116026812, 39.96492922878938], [-75.25002286147466, 39.96502284247945], [-75.25017837712105, 39.96507325713627], [-75.25031446366849, 39.96507034213005], [-75.2504477428817, 39.96501916641492], [-75.25060613915447, 39.96494972680868], [-75.25075843127458, 39.96488015493032], [-75.25091426179873, 39.96483887444101], [-75.25107591376845, 39.96484709750767], [-75.25120181749591, 39.964913325127895], [-75.25128402560523, 39.965004463956404], [-75.25134258464124, 39.96507392705957], [-75.25133917134195, 39.965166729510464], [-75.25136969178952, 39.9652508636921], [-75.25146336368871, 39.96532109136322], [-75.25160413229484, 39.965357075214506], [-75.25170837757055, 39.96534758804899], [-75.25181287846094, 39.96533105340396], [-75.25192331738495, 39.96531935021451], [-75.25209490560532, 39.965306626594725], [-75.25233571378551, 39.965281302739314], [-75.25263623064134, 39.96525257392888], [-75.25284428756365, 39.96524534522126], [-75.25297295714975, 39.96523638938019], [-75.25307763142389, 39.965215155101575], [-75.25322234528832, 39.965185384786416], [-75.25331553060542, 39.96522738582488], [-75.25340897161496, 39.96526233669846], [-75.25358324169278, 39.96530139863625], [-75.25371358490948, 39.96533009739746], [-75.25393745710235, 39.96539139947551], [-75.2540943564404, 39.965404217128], [-75.25422357081916, 39.96533884096122], [-75.25432028042124, 39.96524336647207], [-75.25438103857822, 39.96512829819331], [-75.25445733673064, 39.96504766222007], [-75.25454490118413, 39.96499313593438], [-75.25463289463416, 39.96492686280587], [-75.2547395539302, 39.964851588320144], [-75.25493832851332, 39.96476421100497], [-75.25511359975978, 39.96469278156741], [-75.25526773132212, 39.96465616145459], [-75.25540921682783, 39.96463102139762], [-75.25554493994596, 39.96459635226818], [-75.25568728897943, 39.96454771843652], [-75.25583275919314, 39.96445565343248], [-75.25589230528023, 39.964373478410195], [-75.25596782694207, 39.96431398433572], [-75.25608347207078, 39.964243609842306], [-75.25619361114309, 39.964156654495994], [-75.25628194810722, 39.964080980401455], [-75.25638361798937, 39.963975031768065], [-75.25658701896828, 39.96380310524684], [-75.25668782927404, 39.963720648984804], [-75.2567823740493, 39.963683907807216], [-75.25694135836522, 39.96368148347726], [-75.25712757987775, 39.96372785360648], [-75.25729434232044, 39.963763218559926], [-75.25745349801994, 39.963756094980965], [-75.25754393842874, 39.963706332131565], [-75.25766826655317, 39.96364907480783], [-75.25782439288122, 39.96359956188437], [-75.25793497463482, 39.963625477768396], [-75.25800447150725, 39.96370928169717], [-75.25801363245961, 39.96385525968886], [-75.25801465271266, 39.963994008833296], [-75.25797759705557, 39.96412957851495], [-75.25794494583565, 39.96426994610895], [-75.25799249841998, 39.96438971928584], [-75.25809000638469, 39.96443886322959], [-75.2582315953502, 39.96445251852966], [-75.25837370017565, 39.964452078082694], [-75.25849071135181, 39.96451105062193], [-75.258547854506, 39.964619274805074], [-75.25861529909808, 39.964738302942806], [-75.25869579374323, 39.964876426123446], [-75.25871389426283, 39.96496616743167], [-75.25871655294945, 39.96506027751206], [-75.25871297136004, 39.96524124881307], [-75.25870582756265, 39.965352779293816], [-75.25873897775676, 39.96544872540839], [-75.25878281352246, 39.96554490621948], [-75.25886516180807, 39.96563251505349], [-75.25897505812372, 39.96567722399897], [-75.25907835404288, 39.96569357510518], [-75.25921566680293, 39.96569890577054], [-75.25933483189694, 39.965699142785894], [-75.25941279750465, 39.96573963080782], [-75.25942840416371, 39.96581403528553], [-75.25943975127157, 39.96592126579723], [-75.25955254833205, 39.9660118866074], [-75.25964922071925, 39.96604220108914], [-75.25977913729092, 39.96608264060492], [-75.2599093111313, 39.96611603352195], [-75.26006524408086, 39.966197008731356], [-75.26031049741809, 39.966258762171016], [-75.2604910270259, 39.96631490318297], [-75.260623238936, 39.96627279168309], [-75.26079045437787, 39.9662764194162], [-75.26093379641621, 39.966243366988095], [-75.26102709877767, 39.96619952979436], [-75.26113926037122, 39.966110237743976], [-75.26125056796985, 39.966012989367606], [-75.26138734376573, 39.96600272769833], [-75.26146338510004, 39.966054648433], [-75.26154820032066, 39.96611734329838], [-75.26166239053003, 39.96616039121987], [-75.26177487345527, 39.966187523902455], [-75.26189348622032, 39.9661724583135], [-75.26201401906312, 39.96613626464223], [-75.26209890174695, 39.96607195829984], [-75.26211729154339, 39.96600797249942], [-75.26215139227739, 39.96595314801409], [-75.2622602236201, 39.965865661258434], [-75.26236353462845, 39.96576283344492], [-75.26244080321875, 39.96565602620614], [-75.26253626560519, 39.9656157620172], [-75.26264910168297, 39.96563320148516], [-75.26280228129282, 39.965644459741384], [-75.26294047574343, 39.96559541878383], [-75.26306166698181, 39.965509849818986], [-75.26317011682211, 39.96545928181954], [-75.2632801457881, 39.96549077198556], [-75.26338469228234, 39.965546838376255], [-75.2634999314463, 39.965592550693714], [-75.26361575127439, 39.9656224018904], [-75.26373382166734, 39.965606438808436], [-75.2638925745811, 39.96554373184378], [-75.26400395736077, 39.965475587101565], [-75.26409504700362, 39.96539818463679], [-75.26424258006374, 39.96531318427432], [-75.26437349643582, 39.96524369914122], [-75.26452562628133, 39.96518966670934], [-75.26464400988061, 39.965180766022385], [-75.26475847594591, 39.965185009544044], [-75.26491989850662, 39.96519026997155], [-75.26505962253569, 39.9651932961095], [-75.26525393659826, 39.96520808725808], [-75.2654189072414, 39.965241646310574], [-75.26554800782657, 39.96537850044579], [-75.2656571866125, 39.96552727109349], [-75.26574520340267, 39.965627955516354], [-75.26580611550156, 39.965717472754235], [-75.26585838466731, 39.96579268888802], [-75.26592236254224, 39.96586110376407], [-75.26604946138958, 39.965927356831095], [-75.26619464308726, 39.96596930517032], [-75.2663558264551, 39.966012483559055], [-75.26654572245975, 39.966022767406024], [-75.26675226433892, 39.966016654659676], [-75.26691070252804, 39.966009499641864], [-75.26702471920359, 39.96602607825345], [-75.26717753207062, 39.96607877524957], [-75.26729380946172, 39.96615890397913], [-75.26737711392987, 39.966212171656025], [-75.2675041832672, 39.966267527710016], [-75.26763528202483, 39.96628712147845], [-75.26777998240793, 39.96634228833357], [-75.26791077678227, 39.966401561806634], [-75.26813095861925, 39.96649275792624], [-75.26839332364213, 39.966590156535425], [-75.2684879211227, 39.96663630116208], [-75.26856838821512, 39.96669272399529], [-75.26870209308387, 39.96679792233221], [-75.26877314063175, 39.96686119602945], [-75.26884793203345, 39.9669474834126], [-75.2689178223784, 39.9670424818077], [-75.26901732057507, 39.96723690165692], [-75.26906281706512, 39.96730932449359], [-75.26916363321028, 39.96737353619685], [-75.26931520040584, 39.96739768533159], [-75.26947164254084, 39.96738254678414], [-75.26954940760504, 39.96735600544301], [-75.26964222570032, 39.96732537822608], [-75.26974114420464, 39.96731605144295], [-75.26982980277185, 39.967336488485415], [-75.26994080967651, 39.96740415429852], [-75.27001750229617, 39.96751693938681], [-75.27005546419105, 39.96765446359375], [-75.27008609397892, 39.96775743332085], [-75.27014147030803, 39.967873284963005], [-75.27019264858359, 39.967978463780554], [-75.27029857547103, 39.96818536843522], [-75.27039605939422, 39.968340937118356], [-75.27041825229144, 39.96845519034891], [-75.27047525775806, 39.96855784694886], [-75.27060759119026, 39.96865889938613], [-75.27074631313926, 39.968668658677835], [-75.27087600835432, 39.968632654577455], [-75.27101562691286, 39.968607446784695], [-75.27113982493529, 39.96862777030827], [-75.27124165378416, 39.96866436607983], [-75.27136877512659, 39.96869886372079], [-75.27149100636406, 39.96871032373607], [-75.27159166987883, 39.96871602539292], [-75.27169888243431, 39.968730689046524], [-75.27183341176121, 39.968782101770195], [-75.27192338869241, 39.96886077640519], [-75.27200552968517, 39.96896574004722], [-75.2720875016248, 39.96901248918478], [-75.2721973785659, 39.969048377619984], [-75.2723446699692, 39.96909565678861], [-75.27250608970286, 39.96913265605032], [-75.27262589201683, 39.96917934132502], [-75.27277184335667, 39.969231882479804], [-75.27300662004204, 39.96930045123913], [-75.27323356179036, 39.96930094053377], [-75.2734544051496, 39.96928013094595], [-75.27357021577774, 39.969279102158396], [-75.2736822032329, 39.96928857460309], [-75.2738102288223, 39.96929839303772], [-75.27391292624827, 39.96931119213032], [-75.27401358851628, 39.96931689161242], [-75.27415109702976, 39.96931809455762], [-75.27432649972707, 39.969317469632365], [-75.27448834915032, 39.9693112605676], [-75.27484957631505, 39.96929127212687], [-75.27505636479906, 39.96929440896439], [-75.2751979025655, 39.969326566152496], [-75.27529422162277, 39.96938861653901], [-75.27537981994091, 39.96954039701618], [-75.27545651418261, 39.96977929878811], [-75.27549455040116, 39.969930933724896], [-75.27556823756021, 39.97012655489465], [-75.27560753384536, 39.97021207217482], [-75.2756790833548, 39.97027755600434], [-75.27581943212209, 39.970311010280305], [-75.27600562051816, 39.97031326148098], [-75.27621655745362, 39.97032839209221], [-75.27630337930857, 39.97035231355931], [-75.27639208218493, 39.97040317435482], [-75.27645347489127, 39.97049577995993], [-75.27650845682969, 39.97059133500776], [-75.27663081832311, 39.97081181759219], [-75.27666108441865, 39.97096438829077], [-75.27655897481661, 39.971077062658885], [-75.27647681652651, 39.97115070035715], [-75.27655402223768, 39.97124452971475], [-75.2767251942114, 39.971249982456406], [-75.27686183385241, 39.97119648269428], [-75.27707374547703, 39.971106238414094], [-75.27716729138939, 39.97108708756969], [-75.27730324621768, 39.971083843768945], [-75.27742249122169, 39.97109876035016], [-75.27755560737012, 39.97114197822164], [-75.27765799846647, 39.9712105507228], [-75.2776966387695, 39.97126694774047], [-75.27768369953003, 39.971344281401834], [-75.2775375059147, 39.971409395369484], [-75.27752660910306, 39.97153713344782], [-75.27759278090684, 39.9716166140329], [-75.27765872446948, 39.97165253165632], [-75.27776625909163, 39.971679707495724], [-75.2778875217629, 39.971694333674876], [-75.2779938245599, 39.97173386766503], [-75.27829745667975, 39.97192902531337], [-75.27835368985112, 39.97201433604586], [-75.27845022447251, 39.97210771993886], [-75.27853792600652, 39.97218649778466], [-75.27863376462648, 39.97229908987982], [-75.27869822404367, 39.97241581194476], [-75.27872523619963, 39.97253172751549], [-75.27876048646607, 39.972635804990645], [-75.27877927328194, 39.97272030725401], [-75.27878418087369, 39.97284295463171], [-75.27879585289563, 39.97295133016385], [-75.27881090768369, 39.97305257158474], [-75.27883185465254, 39.97316355066624], [-75.27886000276243, 39.97324825540332], [-75.27893478651718, 39.97333876841981], [-75.27897142380097, 39.973447681518365], [-75.2789997468898, 39.973527584143355], [-75.27906533009049, 39.97365634295254], [-75.27910958452401, 39.973813476597286], [-75.2791246388332, 39.97391471704907], [-75.27917194907599, 39.97398781879196], [-75.27924215052055, 39.974032581956855], [-75.27935933750587, 39.97407354903744], [-75.2794668117676, 39.97412391856745], [-75.27960193564434, 39.97418689602152], [-75.27980630144762, 39.97432104576538], [-75.27995554698477, 39.974425175482324], [-75.28003974026686, 39.97452890493397], [-75.28008569570692, 39.97462500440104], [-75.28013161062924, 39.974736521475975], [-75.28019356522486, 39.97483636824822], [-75.28030494348063, 39.97499282958565], [-75.27942880590791, 39.97543776910457], [-75.27767815353906, 39.97633805029053], [-75.27637978216349, 39.977005710925546], [-75.27614487465645, 39.97711075459385], [-75.27529559584758, 39.97749051778284], [-75.27357298205358, 39.97826076910169], [-75.27303027921207, 39.97850208912234], [-75.2722670159775, 39.97884147602715], [-75.2714231867024, 39.97921867213419], [-75.26927040715022, 39.98017154149284], [-75.26747837229865, 39.980966265533], [-75.26625785964977, 39.98150750669138], [-75.26559186859274, 39.98180283336507], [-75.26477028042451, 39.982167149718165], [-75.26438298957272, 39.98233888222463], [-75.26371556310222, 39.98263482679255], [-75.26218443439792, 39.98348226865512], [-75.26072952068351, 39.984282074375585], [-75.25950960686441, 39.984952663492855], [-75.25895553332985, 39.98525723169234], [-75.25872753309847, 39.985382559416664], [-75.2585677370443, 39.98551310456246], [-75.258500930732, 39.98556768046523], [-75.25689606554148, 39.98675825032424], [-75.25629660428655, 39.98720179878692], [-75.25611910988093, 39.98731302101286], [-75.25569741881579, 39.98751066331712], [-75.2540006401353, 39.988305893059476], [-75.25146797189905, 39.989493599388325], [-75.25082157861772, 39.98979671217423], [-75.25009715667207, 39.99013718173664], [-75.24918968530673, 39.990563671345605], [-75.24801120862959, 39.99111750895355], [-75.24568439590047, 39.99221095566884], [-75.24378898226598, 39.99310161388292], [-75.2416513158407, 39.994106038824725], [-75.23902511457084, 39.99533696854877], [-75.23735992896796, 39.996117407840515], [-75.23528612184207, 39.99708929728722], [-75.2342435509762, 39.997580435421085], [-75.23322898683246, 39.99804843993605], [-75.23215131811106, 39.9985508797588], [-75.23088773310894, 39.99913997478075], [-75.22945343189996, 39.999812190246274], [-75.22873987281054, 40.000147416213096], [-75.22837586510683, 40.00031842009324], [-75.2274782674168, 40.00074008910896], [-75.22641469824666, 40.001239711627804], [-75.22362994305126, 40.00254779807926], [-75.22069649209475, 40.003925603511995], [-75.21922467833316, 40.004616846915006], [-75.2183458956281, 40.005029556222254], [-75.21577504285966, 40.006236852254894], [-75.21457036263607, 40.00680254793726], [-75.21375540196738, 40.0071470494259], [-75.2130457386327, 40.00744703273062], [-75.21076679598913, 40.00855247204905], [-75.20926651565273, 40.00948811598932], [-75.20838974912195, 40.01004762447749], [-75.20810571601615, 40.010233172363904], [-75.20802453324175, 40.01028672353252], [-75.20794649428309, 40.010338203472806], [-75.20786763334567, 40.0103882568974], [-75.20758817071156, 40.010589319998054], [-75.20726214950554, 40.01076818862627], [-75.20725181468926, 40.01087702961448], [-75.20723867124346, 40.01101543243763], [-75.20699226425197, 40.01119720508264], [-75.20613902163231, 40.01182662245913], [-75.20605558240162, 40.01177134883842], [-75.20598118504968, 40.011722063535636], [-75.20583087553283, 40.01162249423849], [-75.20556089846534, 40.01144637353623], [-75.20493269018309, 40.011036554083525], [-75.20411797328548, 40.01067887127354], [-75.20278453559125, 40.0101681675687], [-75.20096916234523, 40.0095052402321], [-75.1995671662532, 40.00910618352392], [-75.19798662998474, 40.00856163000309], [-75.19741007533945, 40.00838739067628], [-75.19662197462642, 40.00814921442729], [-75.19523788704916, 40.00776465223345], [-75.1940657933079, 40.007370640630775], [-75.1931745133191, 40.006946139642274], [-75.19282909227685, 40.006720041632185], [-75.19248650438152, 40.00648631915835], [-75.19210817108346, 40.0059917246091], [-75.19202407067375, 40.00588177689373], [-75.19175386735485, 40.005238965345704], [-75.1915353587339, 40.00420107841301], [-75.19141944287965, 40.002882461289495], [-75.19156264214371, 40.00079131936958], [-75.19173829317083, 39.9995496686985], [-75.19209975304122, 39.99825612471282], [-75.19248952170433, 39.997189339779744], [-75.19387315409962, 39.99538054058539], [-75.19391207372766, 39.99533311331511], [-75.19493374887762, 39.99408810699247], [-75.196736443141, 39.992628239307074], [-75.19756018726912, 39.99169754451703], [-75.19966543084527, 39.98983487779526], [-75.20081185837654, 39.98869997403805], [-75.2026800703466, 39.98695844335217], [-75.20360707217432, 39.986030905550386], [-75.20387968529906, 39.985634231063315], [-75.20422970568241, 39.98512491133937], [-75.20439335041645, 39.9841945852112], [-75.2042911849591, 39.98348477637556], [-75.20402042808387, 39.98285613357483], [-75.20322001689851, 39.9816355506211], [-75.20149254570359, 39.98036607676244], [-75.19968966493572, 39.97939206820288], [-75.19768041890876, 39.978526648404426], [-75.19616318765962, 39.9777853486629], [-75.19500983450119, 39.97715118683491], [-75.19422140431261, 39.976595895992624], [-75.19395195788799, 39.976275795675406], [-75.19316767010415, 39.97534404688133], [-75.19423227229858, 39.97523277524366], [-75.19435026987784, 39.97522044197228], [-75.19438620060323, 39.97521668577702], [-75.19440416945793, 39.975214808203454], [-75.19461061691396, 39.97519322869778], [-75.1946275299596, 39.97519146092737], [-75.19466135487802, 39.97518792535294], [-75.19489863948688, 39.97516312254212], [-75.19541223775175, 39.97510346411268], [-75.19575612004209, 39.97506493243013], [-75.19577203856599, 39.975054075529776], [-75.19602558226443, 39.974877551471934], [-75.19627710586025, 39.97469896547529], [-75.19652544619335, 39.97451751410253], [-75.1967697217073, 39.9743329092601], [-75.19700906804599, 39.97414484161994], [-75.19724347719469, 39.97395315065537], [-75.19747675915838, 39.97375745082089], [-75.19769427033506, 39.9735526068525], [-75.19776267748833, 39.97347047176852], [-75.19796973622626, 39.97326048165323], [-75.19817373991863, 39.97304817344242], [-75.1983798864382, 39.972837364965635], [-75.19881896232208, 39.97243574288791], [-75.19906596864303, 39.97225320340784], [-75.19933172317984, 39.972085236761686], [-75.19960966378463, 39.9719314879363], [-75.19990132964449, 39.9717951923184], [-75.20020658391334, 39.97167432130029], [-75.2005167783354, 39.97156188994687], [-75.2008300396192, 39.97145629876278], [-75.20114834189835, 39.97135896109926], [-75.20146991414583, 39.97126904739688], [-75.20179527631387, 39.97118609164044], [-75.20212582727534, 39.97111679138892], [-75.20246146679227, 39.97106857044634], [-75.20280217542738, 39.97103558441613], [-75.2031438609358, 39.971018855159635], [-75.20348653944679, 39.97101458528833], [-75.20373778519559, 39.9710135329684], [-75.20372444604058, 39.970940143918334], [-75.20372256837196, 39.97092991009466], [-75.20365192712485, 39.970536711194484], [-75.20363324664117, 39.970432344209144], [-75.20360222096758, 39.970262038082865], [-75.20418303772176, 39.97042967509766], [-75.20430221981374, 39.970442136607105], [-75.2047464601045, 39.97038654791297], [-75.20529383804944, 39.97032724144262], [-75.20584308660476, 39.97027633607101], [-75.20664160684923, 39.97018882439134], [-75.2071715109633, 39.970134859313845], [-75.20822768613749, 39.97001688531799], [-75.20920137525263, 39.969908239553455], [-75.21013836492584, 39.969805350585304], [-75.2115166052264, 39.96965576250502], [-75.21133586950056, 39.96872707840927], [-75.2121349858603, 39.96922915050159], [-75.21264181899252, 39.96953740234732], [-75.21293442563362, 39.96971390666676], [-75.21390007921819, 39.970296393465695], [-75.2143190588701, 39.9705434928283], [-75.21454241075261, 39.970684580300244], [-75.21468810542842, 39.970774549650116], [-75.21499017096943, 39.9709560607137], [-75.21608600831708, 39.97161938133278], [-75.21743760573125, 39.9724356476891], [-75.21717197868607, 39.97035239770751], [-75.21699640530869, 39.968970685609506], [-75.21636818230415, 39.969031120310326], [-75.21576217994979, 39.96909507783468], [-75.21528992999187, 39.96914249371162], [-75.21480839700534, 39.96919231816414], [-75.21435015898996, 39.969238605392725], [-75.21384602151933, 39.969289782379036], [-75.21384515928588, 39.96922812853912], [-75.21381710658514, 39.96903611423682], [-75.21379568055352, 39.96883284512564], [-75.21375007799544, 39.9684829244615], [-75.21370757697493, 39.968127131120845], [-75.2136500122597, 39.96769736954828], [-75.21351411433787, 39.966578304228385], [-75.21340694504758, 39.96570864921634], [-75.21337609340233, 39.965466918667126], [-75.21333806087627, 39.965168923090985], [-75.21322853775273, 39.96433250864373], [-75.21370729354383, 39.964296283029626], [-75.21419559539217, 39.964259332972176], [-75.21470015168937, 39.96422115065583], [-75.21516294851831, 39.964189471409064], [-75.21637741936549, 39.96409569079961], [-75.21822793170311, 39.96395720516577], [-75.21829467559881, 39.96449083190423], [-75.21836098136826, 39.965028922370635], [-75.2201709963554, 39.964845529988835], [-75.22011148713864, 39.96436075060387], [-75.22004478056664, 39.963820869515125], [-75.21976953596858, 39.96301130841067], [-75.21969376220423, 39.96252450315264], [-75.21943900765564, 39.96094235593091], [-75.21965042702726, 39.960957506554315], [-75.22059247702725, 39.961075874663585], [-75.2215794161934, 39.96119931296838], [-75.22206583290657, 39.96125897645551], [-75.22256784792319, 39.96132161960473], [-75.22355198385931, 39.96144479703293], [-75.2245421302761, 39.961568838865276], [-75.2252934967573, 39.96165947884321], [-75.22585395073848, 39.96172902647333], [-75.22651888853692, 39.96181383932179], [-75.22716073419876, 39.96189346163298], [-75.22767177235322, 39.961956483381094], [-75.22831950768749, 39.96203465368984]]]}}, {"id": "4140", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16531767459625, 39.985862954522055], [-75.1645183402784, 39.98576060376892], [-75.16374843716792, 39.985658196097646], [-75.16361511904181, 39.98563622364805], [-75.16295124718621, 39.98554373064669], [-75.1613833728726, 39.98534049571191], [-75.15981211803054, 39.985149374337254], [-75.15995561764252, 39.984505307145], [-75.16005187512609, 39.98407025927032], [-75.16014671826717, 39.983628898433636], [-75.16047074927715, 39.98212965095867], [-75.16125560907027, 39.98222307186988], [-75.16205428012076, 39.98233074924151], [-75.16236008766865, 39.98083813786572], [-75.16315665839294, 39.980942851162624], [-75.16393580353895, 39.98103913365748], [-75.16472468800637, 39.98114600900777], [-75.16551143276519, 39.981245061241], [-75.16585070373783, 39.979715263217045], [-75.16663553032588, 39.97981529385303], [-75.16742031243012, 39.97992619061252], [-75.1675304717212, 39.97940596581951], [-75.1676280204409, 39.97898637261039], [-75.16773197320441, 39.97850834128129], [-75.16960310980627, 39.97875342002229], [-75.16967792544243, 39.97839775201961], [-75.16977694651204, 39.97795828070379], [-75.1699744619065, 39.978280100894736], [-75.17028853504735, 39.97884634054967], [-75.1706003791456, 39.9788799426667], [-75.17121429252416, 39.97895355524523], [-75.17280097114764, 39.97916176707219], [-75.17281882273372, 39.979073762378334], [-75.17287129178672, 39.979052105398196], [-75.1729312809766, 39.979026468103854], [-75.17296297818956, 39.978985721589495], [-75.17299175908344, 39.97883147385479], [-75.17300344818571, 39.978768825817184], [-75.17299986141104, 39.97874957982806], [-75.1729945192562, 39.97872091307391], [-75.1729601967386, 39.97869318582734], [-75.17290251279427, 39.97867918888155], [-75.17296812708716, 39.97840817799981], [-75.17312775354583, 39.977751700238606], [-75.1734059516144, 39.977784690664876], [-75.17385580424572, 39.977838020656726], [-75.17470388655568, 39.97793852162858], [-75.17630085865154, 39.97814009841556], [-75.17710442702693, 39.97825301454284], [-75.17788888439762, 39.97835599818536], [-75.1786945223034, 39.97846900801477], [-75.17948283131925, 39.97855760662868], [-75.17986177265558, 39.978607358478946], [-75.18018551683247, 39.97865007774576], [-75.18031747658478, 39.97866654240448], [-75.18090701836356, 39.97874058888288], [-75.1814601891601, 39.9788146300702], [-75.18192679331867, 39.9788796738151], [-75.1825269998387, 39.978957744698484], [-75.18311587750986, 39.97903082691258], [-75.1835823634162, 39.97908348404279], [-75.18413796951701, 39.979160412047385], [-75.18470025398888, 39.979225395072916], [-75.18572863466908, 39.97936208930493], [-75.18731861787698, 39.97958197540658], [-75.18859028389431, 39.979755160969134], [-75.18885251157113, 39.97958605385964], [-75.18907977150573, 39.97943944702036], [-75.18937682579183, 39.97924771854937], [-75.18963886595216, 39.979078446966966], [-75.18990079379184, 39.97890907500015], [-75.19030903969116, 39.97864466529346], [-75.19057059367931, 39.978474960971226], [-75.19083233340443, 39.97830542060259], [-75.19109419988266, 39.978135993315746], [-75.19135613747095, 39.97796663281875], [-75.19161808969504, 39.977797283791716], [-75.191745662721, 39.9777147798631], [-75.19187999860506, 39.977627898991315], [-75.19214180989704, 39.977458427652095], [-75.19240346936863, 39.97728881630829], [-75.19266491438854, 39.97711901761388], [-75.19292609306041, 39.976948979056516], [-75.19312353237977, 39.976820057225694], [-75.19318694633098, 39.976778651568935], [-75.19344742109921, 39.976607983514036], [-75.19370746636712, 39.976436929608965], [-75.19395195788799, 39.976275795675406], [-75.19422140431261, 39.976595895992624], [-75.19500983450119, 39.97715118683491], [-75.19616318765962, 39.9777853486629], [-75.19768041890876, 39.978526648404426], [-75.19968966493572, 39.97939206820288], [-75.20149254570359, 39.98036607676244], [-75.20322001689851, 39.9816355506211], [-75.20402042808387, 39.98285613357483], [-75.2042911849591, 39.98348477637556], [-75.20439335041645, 39.9841945852112], [-75.20422970568241, 39.98512491133937], [-75.20387968529906, 39.985634231063315], [-75.20360707217432, 39.986030905550386], [-75.2026800703466, 39.98695844335217], [-75.20081185837654, 39.98869997403805], [-75.19966543084527, 39.98983487779526], [-75.19756018726912, 39.99169754451703], [-75.196736443141, 39.992628239307074], [-75.19493374887762, 39.99408810699247], [-75.19391207372766, 39.99533311331511], [-75.19387315409962, 39.99538054058539], [-75.19248952170433, 39.997189339779744], [-75.19209975304122, 39.99825612471282], [-75.19173829317083, 39.9995496686985], [-75.19156264214371, 40.00079131936958], [-75.19141944287965, 40.002882461289495], [-75.1915353587339, 40.00420107841301], [-75.19175386735485, 40.005238965345704], [-75.19202407067375, 40.00588177689373], [-75.19210817108346, 40.0059917246091], [-75.19248650438152, 40.00648631915835], [-75.19215822867767, 40.00652737723856], [-75.19182140823222, 40.006574296052555], [-75.19159962191372, 40.00660536533527], [-75.19148464086909, 40.006621471858764], [-75.19114793109786, 40.00666897143275], [-75.19081081926585, 40.00671456625028], [-75.19047279783496, 40.00675583840279], [-75.19013391830701, 40.006793039509155], [-75.18979495444817, 40.00682982508193], [-75.18875577856281, 40.00687835254241], [-75.18751678904931, 40.00693619642412], [-75.18309910876698, 40.007142337153745], [-75.18259278643873, 40.0071660341871], [-75.18225108780933, 40.00718179340903], [-75.18190938624555, 40.00719750109568], [-75.18156769013017, 40.00721327636771], [-75.18122601266239, 40.00722923484977], [-75.18088436810777, 40.00724549489363], [-75.1805427636371, 40.00726217649447], [-75.18020121485219, 40.00727939352919], [-75.17985986450924, 40.007299379194045], [-75.17949583686833, 40.007330268309794], [-75.1791808013841, 40.00736527442401], [-75.17884254943282, 40.00740598482527], [-75.17850353803009, 40.007442419954835], [-75.17817990974089, 40.00747547030837], [-75.17782497552301, 40.00751233965202], [-75.17748625496522, 40.00755025147113], [-75.17714771609977, 40.007589819726114], [-75.17680993770276, 40.007632744984505], [-75.17647388047243, 40.007682150068774], [-75.17614027259992, 40.0077412625246], [-75.17580848000264, 40.00780637581546], [-75.17547878827409, 40.00787715578088], [-75.17515173790514, 40.00795495076213], [-75.17482574100757, 40.00803540932257], [-75.17450135375312, 40.00811949811968], [-75.17418020188195, 40.00821038105396], [-75.17386255750822, 40.00830866613599], [-75.17354518230786, 40.008407551969064], [-75.17322881678321, 40.008508366147595], [-75.17289976733551, 40.00862885398273], [-75.17261598778865, 40.00874233816866], [-75.17231497932914, 40.00886798956168], [-75.17201478572093, 40.00899458472763], [-75.17171807731377, 40.00912597960543], [-75.17142893153489, 40.00926680419859], [-75.17114081893814, 40.009408899199265], [-75.17085302274307, 40.0095513925516], [-75.17056549159035, 40.00969421733024], [-75.17027816930145, 40.009837310105105], [-75.17012183886611, 40.009915319234196], [-75.16997222605549, 40.00975029935354], [-75.16977642969267, 40.00953434146551], [-75.16958063595123, 40.009318377866634], [-75.1693848528208, 40.00910241414265], [-75.16918907816523, 40.00888644483949], [-75.16914141995576, 40.00883386530923], [-75.16902131344077, 40.00890282471295], [-75.16848841069908, 40.00830024742549], [-75.16817665677839, 40.00792919258995], [-75.16753051174942, 40.007229125812884], [-75.16706466223903, 40.00671707874373], [-75.16694227559776, 40.00659450027782], [-75.16683627468983, 40.00656625799417], [-75.16522993149461, 40.006355457449395], [-75.16362929487212, 40.006153400797835], [-75.1637889278219, 40.005391718188754], [-75.16394255755147, 40.004656818906476], [-75.16410376670699, 40.0039137062559], [-75.16416664603113, 40.003624523693304], [-75.16423349039556, 40.00331710737684], [-75.16428653681054, 40.00307313876195], [-75.16385107540998, 40.0030100347716], [-75.16368297597836, 40.00298909789411], [-75.16362073706692, 40.002951223522345], [-75.16335369651195, 40.002785904787025], [-75.16308767953454, 40.00261989215878], [-75.16282206196311, 40.00245388518213], [-75.16255680593444, 40.00228746313338], [-75.16229204340254, 40.002120514560396], [-75.1620279027452, 40.00195296036825], [-75.16176451244321, 40.00178471876236], [-75.16150199984101, 40.00161570702282], [-75.161240496931, 40.00144584343654], [-75.16098012864764, 40.001275047033516], [-75.16072102574383, 40.001103237877146], [-75.16046479410915, 40.00092885830357], [-75.16022065424094, 40.00074376302431], [-75.15999048402087, 40.000548785576555], [-75.1597713031795, 40.0003466843852], [-75.1595615079236, 40.0001381630573], [-75.15936539983369, 39.99992221767875], [-75.1591803374125, 39.99970092501449], [-75.15899602352023, 39.99947923625235], [-75.15881222546582, 39.99925726237476], [-75.15862265723953, 39.99902740827307], [-75.15899682039944, 39.998828117554744], [-75.15860052408783, 39.99832830269098], [-75.15858145930692, 39.99820623506159], [-75.15871361413248, 39.99765215583468], [-75.15892784507975, 39.99664039538977], [-75.15910396550437, 39.995787685077396], [-75.15937214283764, 39.99568041788825], [-75.15968224437353, 39.99556799088048], [-75.15999242176541, 39.99545566658435], [-75.16030227819603, 39.99534316033578], [-75.16045884503355, 39.995286151429184], [-75.16061238107615, 39.99523024616773], [-75.16092135898762, 39.99511657598776], [-75.16122978418703, 39.99500191943675], [-75.16153718510476, 39.994885985669384], [-75.16163202672163, 39.99484964644871], [-75.16184356796215, 39.99476851894601], [-75.16214851295865, 39.9946492223867], [-75.16245167076322, 39.994527825031916], [-75.16275345225249, 39.9944040577435], [-75.16305295047066, 39.9942776496103], [-75.163350493459, 39.994148322421], [-75.16364550628586, 39.99401579203144], [-75.16375019463729, 39.99396740746016], [-75.16320875554426, 39.993324243819174], [-75.16285018130908, 39.993481241024035], [-75.16294179904934, 39.993044584418065], [-75.16318388419658, 39.99189165982134], [-75.16350180899792, 39.990402590136924], [-75.1638426170767, 39.988907785078474], [-75.16418508630503, 39.98731207775422], [-75.16497721886617, 39.98742226112422], [-75.16576344044917, 39.987515001890294], [-75.16609883186936, 39.985967163689345], [-75.16531767459625, 39.985862954522055]]]}}, {"id": "4220", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18546053033423, 39.99138595734597], [-75.18514705947834, 39.99089240645013], [-75.18492772040672, 39.99059520320089], [-75.18440501709573, 39.98993084231582], [-75.18370039313666, 39.98926152661691], [-75.18360132913213, 39.989160865516276], [-75.1831239638344, 39.98873142579218], [-75.18272022858042, 39.98833197667123], [-75.18239436538755, 39.98804340832484], [-75.1808049885002, 39.98679189595898], [-75.1802587566406, 39.98634657855011], [-75.17952311080867, 39.98578912390087], [-75.17979228179169, 39.985610205196984], [-75.18005025987519, 39.98543728286983], [-75.18030756813549, 39.985263763842426], [-75.18056437649658, 39.98508980059018], [-75.18082085622366, 39.98491554111198], [-75.18107717366271, 39.98474113960218], [-75.18130707172978, 39.98458472238066], [-75.1815899949032, 39.98439250580858], [-75.18184654284833, 39.98421831415624], [-75.18210265999751, 39.98404374020303], [-75.18235846421321, 39.98386888840281], [-75.18261408699321, 39.98369387432563], [-75.18286966544878, 39.98351881997285], [-75.1829298584804, 39.98347762517703], [-75.18312532973815, 39.98334384538718], [-75.18338122162059, 39.983169073572626], [-75.1836374690507, 39.982994620915996], [-75.18389421148204, 39.982820609466366], [-75.18415158027894, 39.9826471583875], [-75.1844097148958, 39.98247438972587], [-75.18466874549368, 39.982302423516984], [-75.18487731999933, 39.98216500358204], [-75.18492861790877, 39.9821312053846], [-75.1851888435736, 39.981960305435045], [-75.1854493693571, 39.98178967292306], [-75.18571017026257, 39.98161928746587], [-75.18597122600798, 39.981449127885256], [-75.18623250701748, 39.981279170993545], [-75.1864939906684, 39.98110939556068], [-75.18672279527853, 39.98096108151576], [-75.18701747299545, 39.9807703059002], [-75.18727942181306, 39.98060094730851], [-75.18754147692974, 39.98043168512674], [-75.18780361458623, 39.98026249719947], [-75.18806581098923, 39.980093362271866], [-75.18832804244711, 39.97992425638832], [-75.18859028389431, 39.979755160969134], [-75.18885251157113, 39.97958605385964], [-75.18907977150573, 39.97943944702036], [-75.18937682579183, 39.97924771854937], [-75.18963886595216, 39.979078446966966], [-75.18990079379184, 39.97890907500015], [-75.19030903969116, 39.97864466529346], [-75.19057059367931, 39.978474960971226], [-75.19083233340443, 39.97830542060259], [-75.19109419988266, 39.978135993315746], [-75.19135613747095, 39.97796663281875], [-75.19161808969504, 39.977797283791716], [-75.191745662721, 39.9777147798631], [-75.19187999860506, 39.977627898991315], [-75.19214180989704, 39.977458427652095], [-75.19240346936863, 39.97728881630829], [-75.19266491438854, 39.97711901761388], [-75.19292609306041, 39.976948979056516], [-75.19312353237977, 39.976820057225694], [-75.19318694633098, 39.976778651568935], [-75.19344742109921, 39.976607983514036], [-75.19370746636712, 39.976436929608965], [-75.19395195788799, 39.976275795675406], [-75.19422140431261, 39.976595895992624], [-75.19500983450119, 39.97715118683491], [-75.19616318765962, 39.9777853486629], [-75.19768041890876, 39.978526648404426], [-75.19968966493572, 39.97939206820288], [-75.20149254570359, 39.98036607676244], [-75.20322001689851, 39.9816355506211], [-75.20402042808387, 39.98285613357483], [-75.2042911849591, 39.98348477637556], [-75.20439335041645, 39.9841945852112], [-75.20422970568241, 39.98512491133937], [-75.20387968529906, 39.985634231063315], [-75.20360707217432, 39.986030905550386], [-75.2026800703466, 39.98695844335217], [-75.20081185837654, 39.98869997403805], [-75.19966543084527, 39.98983487779526], [-75.19756018726912, 39.99169754451703], [-75.196736443141, 39.992628239307074], [-75.19493374887762, 39.99408810699247], [-75.18614935442002, 39.992663518096165], [-75.1858101578719, 39.992076620483545], [-75.1855994217512, 39.991700477966795], [-75.18546053033423, 39.99138595734597]]]}}, {"id": "4240", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.24554128638924, 39.97533147813126], [-75.24524823877749, 39.97377965868526], [-75.24495111730269, 39.9721864702484], [-75.2448856392896, 39.97185524981628], [-75.24486356416409, 39.971775639167774], [-75.24515909619272, 39.97036089119962], [-75.24547391384, 39.96883780580013], [-75.24579194506076, 39.967319375064456], [-75.24610900459369, 39.96579829700107], [-75.24716915793863, 39.96592870104606], [-75.247464351418, 39.96448137930475], [-75.24744737459446, 39.964391926196676], [-75.24756505959537, 39.963639605442836], [-75.24768522380508, 39.96377860116682], [-75.2477793782375, 39.96387705884449], [-75.24790389371616, 39.96398087900826], [-75.24805776030611, 39.9640759345147], [-75.24861588618744, 39.964353800501904], [-75.24896818715834, 39.96449550559238], [-75.24946554590588, 39.96472266297798], [-75.24988116026812, 39.96492922878938], [-75.25002286147466, 39.96502284247945], [-75.25017837712105, 39.96507325713627], [-75.25031446366849, 39.96507034213005], [-75.2504477428817, 39.96501916641492], [-75.25060613915447, 39.96494972680868], [-75.25075843127458, 39.96488015493032], [-75.25091426179873, 39.96483887444101], [-75.25107591376845, 39.96484709750767], [-75.25120181749591, 39.964913325127895], [-75.25128402560523, 39.965004463956404], [-75.25134258464124, 39.96507392705957], [-75.25133917134195, 39.965166729510464], [-75.25136969178952, 39.9652508636921], [-75.25146336368871, 39.96532109136322], [-75.25160413229484, 39.965357075214506], [-75.25170837757055, 39.96534758804899], [-75.25181287846094, 39.96533105340396], [-75.25192331738495, 39.96531935021451], [-75.25209490560532, 39.965306626594725], [-75.25233571378551, 39.965281302739314], [-75.25263623064134, 39.96525257392888], [-75.25284428756365, 39.96524534522126], [-75.25297295714975, 39.96523638938019], [-75.25307763142389, 39.965215155101575], [-75.25322234528832, 39.965185384786416], [-75.25331553060542, 39.96522738582488], [-75.25340897161496, 39.96526233669846], [-75.25358324169278, 39.96530139863625], [-75.25371358490948, 39.96533009739746], [-75.25393745710235, 39.96539139947551], [-75.2540943564404, 39.965404217128], [-75.25422357081916, 39.96533884096122], [-75.25432028042124, 39.96524336647207], [-75.25438103857822, 39.96512829819331], [-75.25445733673064, 39.96504766222007], [-75.25454490118413, 39.96499313593438], [-75.25463289463416, 39.96492686280587], [-75.2547395539302, 39.964851588320144], [-75.25493832851332, 39.96476421100497], [-75.25511359975978, 39.96469278156741], [-75.25526773132212, 39.96465616145459], [-75.25540921682783, 39.96463102139762], [-75.25554493994596, 39.96459635226818], [-75.25568728897943, 39.96454771843652], [-75.25583275919314, 39.96445565343248], [-75.25589230528023, 39.964373478410195], [-75.25596782694207, 39.96431398433572], [-75.25608347207078, 39.964243609842306], [-75.25619361114309, 39.964156654495994], [-75.25628194810722, 39.964080980401455], [-75.25638361798937, 39.963975031768065], [-75.25658701896828, 39.96380310524684], [-75.25668782927404, 39.963720648984804], [-75.2567823740493, 39.963683907807216], [-75.25694135836522, 39.96368148347726], [-75.25712757987775, 39.96372785360648], [-75.25729434232044, 39.963763218559926], [-75.25745349801994, 39.963756094980965], [-75.25754393842874, 39.963706332131565], [-75.25766826655317, 39.96364907480783], [-75.25782439288122, 39.96359956188437], [-75.25793497463482, 39.963625477768396], [-75.25800447150725, 39.96370928169717], [-75.25801363245961, 39.96385525968886], [-75.25801465271266, 39.963994008833296], [-75.25797759705557, 39.96412957851495], [-75.25794494583565, 39.96426994610895], [-75.25799249841998, 39.96438971928584], [-75.25809000638469, 39.96443886322959], [-75.2582315953502, 39.96445251852966], [-75.25837370017565, 39.964452078082694], [-75.25849071135181, 39.96451105062193], [-75.258547854506, 39.964619274805074], [-75.25861529909808, 39.964738302942806], [-75.25869579374323, 39.964876426123446], [-75.25871389426283, 39.96496616743167], [-75.25871655294945, 39.96506027751206], [-75.25871297136004, 39.96524124881307], [-75.25870582756265, 39.965352779293816], [-75.25873897775676, 39.96544872540839], [-75.25878281352246, 39.96554490621948], [-75.25886516180807, 39.96563251505349], [-75.25897505812372, 39.96567722399897], [-75.25907835404288, 39.96569357510518], [-75.25921566680293, 39.96569890577054], [-75.25933483189694, 39.965699142785894], [-75.25941279750465, 39.96573963080782], [-75.25942840416371, 39.96581403528553], [-75.25943975127157, 39.96592126579723], [-75.25955254833205, 39.9660118866074], [-75.25964922071925, 39.96604220108914], [-75.25977913729092, 39.96608264060492], [-75.2599093111313, 39.96611603352195], [-75.26006524408086, 39.966197008731356], [-75.26031049741809, 39.966258762171016], [-75.2604910270259, 39.96631490318297], [-75.26054865177791, 39.96638023618688], [-75.26064700984142, 39.96650830659159], [-75.26070467586813, 39.96658885087744], [-75.26076780266723, 39.966685838592184], [-75.26083301840988, 39.966808525402605], [-75.2608551521047, 39.96694893432809], [-75.2608691387215, 39.96706351269308], [-75.26088961065659, 39.967166572062574], [-75.26095939318695, 39.96724737814309], [-75.26102392676209, 39.96738870767416], [-75.26105280133898, 39.967510605120495], [-75.26110458216422, 39.96758635800436], [-75.2611314534269, 39.967680226401406], [-75.26108998718195, 39.9678192557096], [-75.26101286239131, 39.967938854768136], [-75.2609281419501, 39.96810026781984], [-75.26093581664317, 39.968221705411885], [-75.26094383283976, 39.96833382338833], [-75.26093047823946, 39.96845014129412], [-75.26084477818482, 39.968555561005545], [-75.26072499448445, 39.96868123065621], [-75.26073915319462, 39.96879114834983], [-75.26076670636407, 39.9688663748751], [-75.260720804872, 39.9689609972959], [-75.26059010216389, 39.96905377996183], [-75.26047885110329, 39.96911200276864], [-75.26037310589713, 39.969102711397454], [-75.26029261395144, 39.96906598319266], [-75.2601693799521, 39.96903765541261], [-75.26006418598072, 39.969096008354875], [-75.26002591677762, 39.969230443201695], [-75.26002138972488, 39.96935394876291], [-75.26002974625233, 39.96945674448723], [-75.26005738430719, 39.969529641278555], [-75.26004919148546, 39.969587767310834], [-75.25999966245008, 39.96969863575309], [-75.25997878916237, 39.97002001920612], [-75.26000446278272, 39.970146512776964], [-75.26006340651612, 39.970357685014804], [-75.26006314203006, 39.97053025895482], [-75.26004172481493, 39.97061841536149], [-75.25997133471044, 39.97071950320626], [-75.25985351032962, 39.9707915751731], [-75.25971853939578, 39.970835288428], [-75.25953024757882, 39.97084519518249], [-75.25939681421642, 39.970846963512884], [-75.2592697790063, 39.9708395417386], [-75.25910000155406, 39.970840520831985], [-75.25899617112857, 39.97086158805644], [-75.25884268498008, 39.97091422808973], [-75.25837688914825, 39.971134997549655], [-75.25808668201717, 39.97119632838342], [-75.25791553580198, 39.971234590448375], [-75.25776102205931, 39.97131519145045], [-75.2575571933081, 39.97141804408629], [-75.257431939431, 39.97152726670702], [-75.25740863728154, 39.971666689441044], [-75.2573580261331, 39.971889476660614], [-75.25730563265151, 39.971995617425534], [-75.25730655950275, 39.97213556736496], [-75.257292292555, 39.97235914405464], [-75.25725670225273, 39.97250296425085], [-75.25719551388593, 39.972683542796275], [-75.25718637870318, 39.97276730205233], [-75.25718073453896, 39.97292110069804], [-75.25713371237319, 39.973046015756964], [-75.25706783496831, 39.97318917794868], [-75.25704902260088, 39.973371387903], [-75.25704608876329, 39.97345132743528], [-75.2570293549024, 39.97357690045855], [-75.25696902021768, 39.97373417627259], [-75.25694725586013, 39.97383165349569], [-75.25695395864643, 39.974061971933196], [-75.25695436167905, 39.97413356692452], [-75.25695225953109, 39.974273450166905], [-75.25691381019176, 39.97441254465719], [-75.25693246643112, 39.97473012222964], [-75.25691282402472, 39.974934925343916], [-75.25685820484966, 39.97510165322955], [-75.25682312537205, 39.97523149207834], [-75.25681193541959, 39.97537117787911], [-75.25687915554406, 39.97552189602913], [-75.25699371099005, 39.97586954347642], [-75.25710392126844, 39.97617045312351], [-75.25714605545802, 39.976343948216915], [-75.25726105515838, 39.976514360760035], [-75.25729329735748, 39.97662700440164], [-75.25728296449567, 39.97674338766296], [-75.25721341918234, 39.97682117029333], [-75.25721016932745, 39.97690972181028], [-75.2572787590093, 39.977023154987144], [-75.25734837632905, 39.97710862394151], [-75.25740485139336, 39.97722179389385], [-75.25740646266574, 39.97734310100659], [-75.25740961323852, 39.97742246270898], [-75.25747888789834, 39.97751725296001], [-75.25764943867127, 39.97766088688027], [-75.25769947540438, 39.977729351261154], [-75.25592386999945, 39.97812301785536], [-75.25545811345737, 39.97829859477337], [-75.25502431547316, 39.97846970018743], [-75.25481936135184, 39.97855001011863], [-75.25447177909811, 39.978704422230216], [-75.25425359765558, 39.97883649458859], [-75.25393035335655, 39.979068205885], [-75.25371700479728, 39.97927893963733], [-75.2534972665133, 39.979534654664576], [-75.25329151334172, 39.979878224493525], [-75.2531055950887, 39.980181698136825], [-75.25285866859625, 39.98049146282689], [-75.25254465176846, 39.98077109037152], [-75.25221053651195, 39.98101353192132], [-75.25177529229718, 39.98124566591049], [-75.25144274920666, 39.981409541706675], [-75.25106465748974, 39.98160212773648], [-75.25019634961782, 39.98058188701795], [-75.2499981816164, 39.98034370029889], [-75.24972680378382, 39.98003286435721], [-75.24945736451684, 39.97971133555546], [-75.24922709433469, 39.97945068088363], [-75.24894467722332, 39.979107813621795], [-75.24877874760803, 39.9789212908167], [-75.24869932269642, 39.9788156818088], [-75.24862827057224, 39.97870892987897], [-75.248534557208, 39.97853891643046], [-75.24842942758778, 39.978296601807756], [-75.24837185542803, 39.978120301429165], [-75.24833548194869, 39.97797008910951], [-75.24795534391309, 39.97808789189711], [-75.24741055872916, 39.978153364887895], [-75.24609118202632, 39.978301577196724], [-75.24554128638924, 39.97533147813126]]]}}, {"id": "4270", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16675389667743, 39.98605696318333], [-75.16731922555276, 39.98612259810428], [-75.1679760361179, 39.986203987335514], [-75.16877950953383, 39.986307275443664], [-75.1695756209088, 39.98640739287832], [-75.17039697199631, 39.98651296182429], [-75.17117730471297, 39.986607635295094], [-75.17129204164658, 39.9860765043848], [-75.17139443540877, 39.98560510985928], [-75.1715119580545, 39.98509195802337], [-75.17184895333082, 39.98360012299759], [-75.17242436921067, 39.98366591017204], [-75.17264001235985, 39.983706247609604], [-75.17288889415936, 39.983735751197166], [-75.17344318835225, 39.98380091296403], [-75.1739932972147, 39.983876423527335], [-75.17446476462969, 39.98393718846691], [-75.17502711544529, 39.98401535462864], [-75.17479584065936, 39.98506810427846], [-75.17469432426374, 39.98550764947924], [-75.175271358931, 39.98559829647787], [-75.17521745144552, 39.985853437673235], [-75.17560938223376, 39.98627515162315], [-75.17608954052868, 39.98680021919029], [-75.17541102470533, 39.9871570358007], [-75.17678267943901, 39.987338918507284], [-75.17649542346686, 39.98748759968373], [-75.17621136888152, 39.9876343895556], [-75.17592717237113, 39.987781027802576], [-75.17564284416281, 39.98792752276212], [-75.17535839004088, 39.98807387636496], [-75.175073819062, 39.988220096922404], [-75.17478913219263, 39.988366189861445], [-75.17450433969368, 39.98851216261944], [-75.17431169727813, 39.988610003672555], [-75.17421944851988, 39.98865801715374], [-75.17397753918489, 39.98879442269209], [-75.17364939329444, 39.98894940991035], [-75.17336424298125, 39.98909495654882], [-75.17307901995844, 39.989240410772055], [-75.17279376775308, 39.989385829419646], [-75.17250881164603, 39.98953165408423], [-75.1722929682314, 39.9896425977823], [-75.17222419612551, 39.98967794703608], [-75.1719398834796, 39.98982465246886], [-75.17174544033298, 39.98992532586602], [-75.17165545820235, 39.989971699782394], [-75.17137200492108, 39.99011909081782], [-75.17108835770135, 39.99026671288831], [-75.17080490447788, 39.99041452965903], [-75.17052159274488, 39.99056250481203], [-75.17023810612953, 39.990710548344374], [-75.16995458851298, 39.990858634656625], [-75.16967144280557, 39.991006703428134], [-75.1693872372827, 39.99115510089788], [-75.1691045372262, 39.99130256565563], [-75.1688207535072, 39.991450246846625], [-75.16853740086704, 39.99159771000278], [-75.16843898729299, 39.99164851587217], [-75.16825303046308, 39.99174485766576], [-75.1679687264333, 39.99189167457132], [-75.16768419613064, 39.99203809376805], [-75.16739917355237, 39.99218405610931], [-75.1671136796878, 39.99232950259677], [-75.16682790638126, 39.99247440961277], [-75.1665418847763, 39.99261869766585], [-75.16625523475753, 39.99276232035509], [-75.16596791696877, 39.99290520380751], [-75.16568007898715, 39.99304731800311], [-75.16539161774134, 39.99318860115002], [-75.16510262738187, 39.99332901121388], [-75.16481268231108, 39.99346846562296], [-75.16452209682625, 39.993606924596605], [-75.16423074379837, 39.993744342918106], [-75.16393856707938, 39.99388065714653], [-75.16375019463729, 39.99396740746016], [-75.16320875554426, 39.993324243819174], [-75.16285018130908, 39.993481241024035], [-75.16294179904934, 39.993044584418065], [-75.16318388419658, 39.99189165982134], [-75.16350180899792, 39.990402590136924], [-75.1638426170767, 39.988907785078474], [-75.16418508630503, 39.98731207775422], [-75.16497721886617, 39.98742226112422], [-75.16576344044917, 39.987515001890294], [-75.16609883186936, 39.985967163689345], [-75.16675389667743, 39.98605696318333]]]}}, {"id": "4280", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22713826559976, 40.00017261411573], [-75.22698380731825, 39.99993764724526], [-75.22683366659172, 39.99970118297861], [-75.22669187430814, 39.9994616214683], [-75.2265638188994, 39.9992172737964], [-75.2264516454373, 39.99896873497252], [-75.22634869197259, 39.99871762814741], [-75.22625254080789, 39.998464825518425], [-75.22616242542166, 39.99821093374118], [-75.22608608367426, 39.997954372323946], [-75.22601504426356, 39.99769675072328], [-75.22594031130318, 39.99743986415371], [-75.22586692375164, 39.99718275752846], [-75.22579555639331, 39.996925115022684], [-75.22572752377033, 39.996666869140945], [-75.22568472491396, 39.99640629852711], [-75.22566923068271, 39.99614311989164], [-75.22566493201093, 39.995879695505955], [-75.22566580829185, 39.995616507455004], [-75.22567010232133, 39.99535327112508], [-75.22567455961851, 39.99509002216579], [-75.22567642371229, 39.994826793662824], [-75.2256773950464, 39.994563568049735], [-75.22567805954006, 39.99430034019153], [-75.22567836679947, 39.994037110781896], [-75.22567828034347, 39.99377388442448], [-75.22567775345844, 39.99351065738886], [-75.22567642287149, 39.993247433398864], [-75.22567375670262, 39.99298421427232], [-75.22567059622207, 39.99272099508398], [-75.22566786217705, 39.99245777535982], [-75.22566638868767, 39.99219455272114], [-75.22566509729694, 39.99193131606456], [-75.22566378621964, 39.991668073566466], [-75.2256632571371, 39.99147004260671], [-75.22657305587288, 39.99151720367018], [-75.2280883871952, 39.991602844416676], [-75.22979802627162, 39.99168345486216], [-75.23106116474393, 39.9917654288331], [-75.2323148913867, 39.991816057524225], [-75.23367398957797, 39.99188356603107], [-75.23359749986912, 39.99120535295872], [-75.23352857182715, 39.9906545575648], [-75.23338610249759, 39.990219535799035], [-75.23324262339091, 39.989800273494986], [-75.23564564878774, 39.98930950082446], [-75.23765550028003, 39.98890523796826], [-75.2375631490965, 39.988463737913676], [-75.23748943446314, 39.98799758547654], [-75.23739313190914, 39.98757243465119], [-75.2373285938853, 39.98720332445263], [-75.23725085241536, 39.98680733861259], [-75.23717648623028, 39.98644054310879], [-75.23710876338059, 39.98601125589341], [-75.23703091898771, 39.98562024376696], [-75.2370231010044, 39.98540656857109], [-75.23706281145029, 39.985185697132245], [-75.23724158388768, 39.98484131042433], [-75.23804864757997, 39.983543684060464], [-75.2386133941012, 39.98260314982133], [-75.23872979266353, 39.98264684610981], [-75.23903853607797, 39.98276028803558], [-75.23934823775453, 39.98287223099615], [-75.23965858696977, 39.98298315922893], [-75.23996927180364, 39.983093557849344], [-75.2402799848242, 39.98320391748021], [-75.2405904118842, 39.983314720491556], [-75.24090024436214, 39.983426458387555], [-75.24120916805782, 39.983539615345656], [-75.24151699490501, 39.98365452693657], [-75.24182467064739, 39.98377003714066], [-75.24213188787569, 39.983886478014874], [-75.24243790732571, 39.98400471187836], [-75.24274199429183, 39.984125604761495], [-75.2430434082267, 39.98425002257443], [-75.2433414192912, 39.98437882696372], [-75.24363608721188, 39.98451259048826], [-75.24392738287504, 39.98465130983399], [-75.24421477298127, 39.98479493283755], [-75.24449771339214, 39.98494341521302], [-75.2447756649753, 39.985096703778815], [-75.24504763542635, 39.98525585359801], [-75.24531369919322, 39.98542132404087], [-75.24557536375369, 39.985591336148076], [-75.24583413804008, 39.98576410286919], [-75.24609154060022, 39.98593783014206], [-75.24634908383008, 39.986111494104286], [-75.24644054350821, 39.9861752070431], [-75.24660330199214, 39.98628858708673], [-75.24684604899207, 39.98647402835681], [-75.24707193557566, 39.9866709674555], [-75.24728844095677, 39.986874559862514], [-75.24749891064862, 39.987082381929454], [-75.24770586314762, 39.98729252083316], [-75.24791180889682, 39.98750305995227], [-75.24811931762962, 39.98771250830601], [-75.24832811799277, 39.98792152310045], [-75.24853553159981, 39.98813136500563], [-75.24873884867817, 39.988343287720184], [-75.24893535809994, 39.98855854943753], [-75.24912232106712, 39.98877842758796], [-75.24929776056157, 39.989003933304275], [-75.24946425191449, 39.98923383613185], [-75.24962539757507, 39.989466369359434], [-75.24978479196271, 39.98969976247465], [-75.25000198399019, 39.99001086413415], [-75.25009715667207, 39.99013718173664], [-75.24918968530673, 39.990563671345605], [-75.24801120862959, 39.99111750895355], [-75.24568439590047, 39.99221095566884], [-75.24378898226598, 39.99310161388292], [-75.2416513158407, 39.994106038824725], [-75.23902511457084, 39.99533696854877], [-75.23735992896796, 39.996117407840515], [-75.23528612184207, 39.99708929728722], [-75.2342435509762, 39.997580435421085], [-75.23322898683246, 39.99804843993605], [-75.23215131811106, 39.9985508797588], [-75.23088773310894, 39.99913997478075], [-75.22945343189996, 39.999812190246274], [-75.22873987281054, 40.000147416213096], [-75.22837586510683, 40.00031842009324], [-75.2274782674168, 40.00074008910896], [-75.22738074986843, 40.00054046140214], [-75.22713826559976, 40.00017261411573]]]}}, {"id": "4300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.2316186944593, 39.970790477756395], [-75.23257362152906, 39.970684110217924], [-75.23336893261782, 39.97059218114643], [-75.23420321472648, 39.970501406483386], [-75.23497433505277, 39.9704167449269], [-75.23569889615287, 39.970337328070315], [-75.23631310132686, 39.97026837795627], [-75.23678070312911, 39.97021782046675], [-75.2374561581777, 39.970142539223346], [-75.23828930295882, 39.970049354997684], [-75.23904602094366, 39.96996385280201], [-75.23913452825445, 39.969894156939084], [-75.23913209514878, 39.969754754208566], [-75.2394792263291, 39.968098598180006], [-75.24046481307757, 39.96821893667362], [-75.24145297711482, 39.96834167726721], [-75.24212447373782, 39.96842525010824], [-75.24275547517408, 39.96850182540956], [-75.2434287755889, 39.968584480317844], [-75.24441601399035, 39.968707975928204], [-75.24547391384, 39.96883780580013], [-75.24515909619272, 39.97036089119962], [-75.24486356416409, 39.971775639167774], [-75.2448856392896, 39.97185524981628], [-75.24495111730269, 39.9721864702484], [-75.24524823877749, 39.97377965868526], [-75.24554128638924, 39.97533147813126], [-75.24609118202632, 39.978301577196724], [-75.24504122364607, 39.978412055657806], [-75.24413970763122, 39.97851841750556], [-75.24324659750818, 39.97861072026858], [-75.24235595224603, 39.97871317642875], [-75.24157570471533, 39.97880044785277], [-75.24078976905467, 39.978888636602434], [-75.23995988823147, 39.97897202874271], [-75.2391258420239, 39.97907096594098], [-75.23918921571732, 39.97941621572664], [-75.23925884612574, 39.97975561433966], [-75.23930359835626, 39.98001699220907], [-75.23937971975117, 39.98042536050394], [-75.23946783594495, 39.98091564453654], [-75.23947488765062, 39.981115960767795], [-75.23941782700196, 39.9812841947847], [-75.2393364320091, 39.9814487492631], [-75.23904360757881, 39.98195194572015], [-75.23874552031107, 39.982383101851674], [-75.2386133941012, 39.98260314982133], [-75.23842231593397, 39.98253142003323], [-75.23811612436292, 39.98241398589309], [-75.23781094088199, 39.98229497371522], [-75.23750653404826, 39.98217475145208], [-75.23720266549203, 39.982053684198895], [-75.2368991025902, 39.9819321398775], [-75.23659561047401, 39.98181048365511], [-75.23629195306646, 39.98168908157105], [-75.23598789645939, 39.98156830421485], [-75.23568320596944, 39.981448511344695], [-75.235377642931, 39.981330075243065], [-75.23507097953902, 39.98121335941804], [-75.2347635565961, 39.98109782622857], [-75.23445592365209, 39.980982614650586], [-75.23414810250182, 39.980867705338326], [-75.2339591056347, 39.98079736322357], [-75.23384010002718, 39.98075307051039], [-75.23353193685344, 39.98063869079578], [-75.23322362317393, 39.98052454389186], [-75.23291517861085, 39.980410605900985], [-75.23260660981407, 39.9802968553442], [-75.23229793874704, 39.980183268375384], [-75.23198917553752, 39.980069824493164], [-75.23168033629835, 39.97995649972348], [-75.23137143593905, 39.97984327096704], [-75.23106248696217, 39.97973011687391], [-75.2307535042112, 39.979617016145696], [-75.23044450507051, 39.979503942133874], [-75.2301355031137, 39.97939087621543], [-75.22982650974122, 39.97927779521482], [-75.22951753986443, 39.97916467603367], [-75.2292086142462, 39.97905149570235], [-75.22889973957359, 39.978938231843195], [-75.228590933066, 39.97882486230994], [-75.22828221080628, 39.97871136403067], [-75.22797358650385, 39.97859771478237], [-75.2282261652399, 39.97877771624851], [-75.22847274984605, 39.97896106777772], [-75.2286785702593, 39.97916872493492], [-75.22883996273082, 39.9794043519961], [-75.22894765996324, 39.97965218987119], [-75.22896768418192, 39.97991725419923], [-75.22894558230313, 39.98018044797911], [-75.22889328745423, 39.98044163690388], [-75.22879489571393, 39.98070223660668], [-75.22815173844755, 39.980464672815025], [-75.22769983954039, 39.98030167955546], [-75.22720762006905, 39.98011875105071], [-75.22671454102148, 39.97993866394432], [-75.2263870091941, 39.98045849853005], [-75.22598506456495, 39.98110344713947], [-75.22611408407533, 39.98131069652115], [-75.22620352276934, 39.98160917075345], [-75.22516370803253, 39.98133793425713], [-75.22406693790319, 39.9815094868596], [-75.22379084515117, 39.98152112708002], [-75.22367524703087, 39.98151036448287], [-75.22354641209124, 39.98147582405985], [-75.22315828235908, 39.98138230866424], [-75.22248973525193, 39.98113780900851], [-75.22145350543394, 39.980750514692936], [-75.21947213701459, 39.980017477693615], [-75.22198187468743, 39.975783466924824], [-75.22247529477978, 39.97521309980976], [-75.22298525071733, 39.97459343456398], [-75.22303908602558, 39.97452647937162], [-75.22294655328514, 39.97398536539481], [-75.22282886363037, 39.97331979648558], [-75.22270951231486, 39.972650541751854], [-75.22261453670089, 39.97212115051214], [-75.22367290416578, 39.97189577011077], [-75.22538481137462, 39.97153234336764], [-75.22571266046691, 39.97146490113747], [-75.22584237062186, 39.97143175783036], [-75.22656776207988, 39.971345030936604], [-75.22723186273795, 39.97127505125215], [-75.22798949528075, 39.97119099565426], [-75.22873632677351, 39.971108667353086], [-75.22927488529089, 39.97104645009116], [-75.22970182046944, 39.9710009771368], [-75.23013130258644, 39.970951605867114], [-75.23066592674994, 39.97089571533209], [-75.2316186944593, 39.970790477756395]]]}}, {"id": "4320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.25779952487125, 39.983298733608244], [-75.25779203427024, 39.98318014148932], [-75.25775629701346, 39.98302449642958], [-75.25773773726883, 39.98272346434004], [-75.25778774191511, 39.98265167019297], [-75.25790807519572, 39.982599623853325], [-75.2579939107551, 39.982519497765885], [-75.25799909350198, 39.98234211207622], [-75.2580284939987, 39.98228444662897], [-75.25811659674547, 39.98227936251505], [-75.25824979726318, 39.98228458720162], [-75.25830663143363, 39.98222285289109], [-75.2583221669947, 39.98212990460163], [-75.25836885012829, 39.98201431046831], [-75.25833626165407, 39.98191098765083], [-75.25831715813426, 39.981770644081074], [-75.25836972855525, 39.981659842183376], [-75.25846785912155, 39.98162932260072], [-75.25856564769774, 39.9816081234384], [-75.25864039887813, 39.98155377500522], [-75.25876618215821, 39.981430568990504], [-75.25887532799537, 39.981265023796205], [-75.2589846442712, 39.98109481689402], [-75.25897982934555, 39.98097810475738], [-75.25885201713002, 39.98082607375668], [-75.2588537748815, 39.98069551103776], [-75.25879678170176, 39.98059632301827], [-75.25871470146915, 39.98051991245347], [-75.25860787493902, 39.98045695785922], [-75.25853151037687, 39.9803900000627], [-75.25843782683634, 39.980299344143255], [-75.25841112644903, 39.98020081447303], [-75.25838442617221, 39.980102283895995], [-75.25833869599897, 39.980026662221725], [-75.25825798364228, 39.97991296658654], [-75.2582070502981, 39.97981391071058], [-75.25815868192974, 39.97964494518299], [-75.25809077207833, 39.97951287063377], [-75.25808327222325, 39.979386771288986], [-75.25813149276829, 39.97922923182571], [-75.25819340599485, 39.97911163672751], [-75.25812032954617, 39.97903775383541], [-75.25803641921948, 39.97892865208236], [-75.25793987961264, 39.97883327016297], [-75.25791940977383, 39.978730211227486], [-75.25792590780046, 39.97855310816274], [-75.25791235010618, 39.9784268781471], [-75.25785707138698, 39.97828108446243], [-75.25780213375715, 39.9781259693219], [-75.25779011548293, 39.97795779297534], [-75.25775335275372, 39.9778030724985], [-75.25769947540438, 39.977729351261154], [-75.25764943867127, 39.97766088688027], [-75.25747888789834, 39.97751725296001], [-75.25740961323852, 39.97742246270898], [-75.25740646266574, 39.97734310100659], [-75.25740485139336, 39.97722179389385], [-75.25734837632905, 39.97710862394151], [-75.2572787590093, 39.977023154987144], [-75.25721016932745, 39.97690972181028], [-75.25721341918234, 39.97682117029333], [-75.25728296449567, 39.97674338766296], [-75.25729329735748, 39.97662700440164], [-75.25726105515838, 39.976514360760035], [-75.25714605545802, 39.976343948216915], [-75.25710392126844, 39.97617045312351], [-75.25699371099005, 39.97586954347642], [-75.25687915554406, 39.97552189602913], [-75.25681193541959, 39.97537117787911], [-75.25682312537205, 39.97523149207834], [-75.25685820484966, 39.97510165322955], [-75.25691282402472, 39.974934925343916], [-75.25693246643112, 39.97473012222964], [-75.25691381019176, 39.97441254465719], [-75.25695225953109, 39.974273450166905], [-75.25695436167905, 39.97413356692452], [-75.25695395864643, 39.974061971933196], [-75.25694725586013, 39.97383165349569], [-75.25696902021768, 39.97373417627259], [-75.2570293549024, 39.97357690045855], [-75.25704608876329, 39.97345132743528], [-75.25704902260088, 39.973371387903], [-75.25706783496831, 39.97318917794868], [-75.25713371237319, 39.973046015756964], [-75.25718073453896, 39.97292110069804], [-75.25718637870318, 39.97276730205233], [-75.25719551388593, 39.972683542796275], [-75.25725670225273, 39.97250296425085], [-75.257292292555, 39.97235914405464], [-75.25730655950275, 39.97213556736496], [-75.25730563265151, 39.971995617425534], [-75.2573580261331, 39.971889476660614], [-75.25740863728154, 39.971666689441044], [-75.257431939431, 39.97152726670702], [-75.2575571933081, 39.97141804408629], [-75.25776102205931, 39.97131519145045], [-75.25791553580198, 39.971234590448375], [-75.25808668201717, 39.97119632838342], [-75.25837688914825, 39.971134997549655], [-75.25884268498008, 39.97091422808973], [-75.25899617112857, 39.97086158805644], [-75.25910000155406, 39.970840520831985], [-75.2592697790063, 39.9708395417386], [-75.25939681421642, 39.970846963512884], [-75.25953024757882, 39.97084519518249], [-75.25971853939578, 39.970835288428], [-75.25985351032962, 39.9707915751731], [-75.25997133471044, 39.97071950320626], [-75.26004172481493, 39.97061841536149], [-75.26006314203006, 39.97053025895482], [-75.26006340651612, 39.970357685014804], [-75.26000446278272, 39.970146512776964], [-75.25997878916237, 39.97002001920612], [-75.25999966245008, 39.96969863575309], [-75.26004919148546, 39.969587767310834], [-75.26005738430719, 39.969529641278555], [-75.26002974625233, 39.96945674448723], [-75.26002138972488, 39.96935394876291], [-75.26002591677762, 39.969230443201695], [-75.26006418598072, 39.969096008354875], [-75.2601693799521, 39.96903765541261], [-75.26029261395144, 39.96906598319266], [-75.26037310589713, 39.969102711397454], [-75.26047885110329, 39.96911200276864], [-75.26059010216389, 39.96905377996183], [-75.260720804872, 39.9689609972959], [-75.26076670636407, 39.9688663748751], [-75.26073915319462, 39.96879114834983], [-75.26072499448445, 39.96868123065621], [-75.26084477818482, 39.968555561005545], [-75.26093047823946, 39.96845014129412], [-75.26094383283976, 39.96833382338833], [-75.26093581664317, 39.968221705411885], [-75.2609281419501, 39.96810026781984], [-75.26101286239131, 39.967938854768136], [-75.26108998718195, 39.9678192557096], [-75.2611314534269, 39.967680226401406], [-75.26110458216422, 39.96758635800436], [-75.26105280133898, 39.967510605120495], [-75.26102392676209, 39.96738870767416], [-75.26095939318695, 39.96724737814309], [-75.26088961065659, 39.967166572062574], [-75.2608691387215, 39.96706351269308], [-75.2608551521047, 39.96694893432809], [-75.26083301840988, 39.966808525402605], [-75.26076780266723, 39.966685838592184], [-75.26070467586813, 39.96658885087744], [-75.26064700984142, 39.96650830659159], [-75.26054865177791, 39.96638023618688], [-75.2604910270259, 39.96631490318297], [-75.260623238936, 39.96627279168309], [-75.26079045437787, 39.9662764194162], [-75.26093379641621, 39.966243366988095], [-75.26102709877767, 39.96619952979436], [-75.26113926037122, 39.966110237743976], [-75.26125056796985, 39.966012989367606], [-75.26138734376573, 39.96600272769833], [-75.26146338510004, 39.966054648433], [-75.26154820032066, 39.96611734329838], [-75.26166239053003, 39.96616039121987], [-75.26177487345527, 39.966187523902455], [-75.26189348622032, 39.9661724583135], [-75.26201401906312, 39.96613626464223], [-75.26209890174695, 39.96607195829984], [-75.26211729154339, 39.96600797249942], [-75.26215139227739, 39.96595314801409], [-75.2622602236201, 39.965865661258434], [-75.26236353462845, 39.96576283344492], [-75.26244080321875, 39.96565602620614], [-75.26253626560519, 39.9656157620172], [-75.26264910168297, 39.96563320148516], [-75.26280228129282, 39.965644459741384], [-75.26294047574343, 39.96559541878383], [-75.26306166698181, 39.965509849818986], [-75.26317011682211, 39.96545928181954], [-75.2632801457881, 39.96549077198556], [-75.26338469228234, 39.965546838376255], [-75.2634999314463, 39.965592550693714], [-75.26361575127439, 39.9656224018904], [-75.26373382166734, 39.965606438808436], [-75.2638925745811, 39.96554373184378], [-75.26400395736077, 39.965475587101565], [-75.26409504700362, 39.96539818463679], [-75.26424258006374, 39.96531318427432], [-75.26437349643582, 39.96524369914122], [-75.26452562628133, 39.96518966670934], [-75.26464400988061, 39.965180766022385], [-75.26475847594591, 39.965185009544044], [-75.26491989850662, 39.96519026997155], [-75.26505962253569, 39.9651932961095], [-75.26525393659826, 39.96520808725808], [-75.2654189072414, 39.965241646310574], [-75.26554800782657, 39.96537850044579], [-75.2656571866125, 39.96552727109349], [-75.26574520340267, 39.965627955516354], [-75.26580611550156, 39.965717472754235], [-75.26585838466731, 39.96579268888802], [-75.26592236254224, 39.96586110376407], [-75.26604946138958, 39.965927356831095], [-75.26619464308726, 39.96596930517032], [-75.2663558264551, 39.966012483559055], [-75.26654572245975, 39.966022767406024], [-75.26675226433892, 39.966016654659676], [-75.26691070252804, 39.966009499641864], [-75.26702471920359, 39.96602607825345], [-75.26717753207062, 39.96607877524957], [-75.26729380946172, 39.96615890397913], [-75.26737711392987, 39.966212171656025], [-75.2675041832672, 39.966267527710016], [-75.26763528202483, 39.96628712147845], [-75.26777998240793, 39.96634228833357], [-75.26791077678227, 39.966401561806634], [-75.26813095861925, 39.96649275792624], [-75.26839332364213, 39.966590156535425], [-75.2684879211227, 39.96663630116208], [-75.26856838821512, 39.96669272399529], [-75.26870209308387, 39.96679792233221], [-75.26877314063175, 39.96686119602945], [-75.26884793203345, 39.9669474834126], [-75.2689178223784, 39.9670424818077], [-75.26901732057507, 39.96723690165692], [-75.26906281706512, 39.96730932449359], [-75.26916363321028, 39.96737353619685], [-75.26931520040584, 39.96739768533159], [-75.26947164254084, 39.96738254678414], [-75.26954940760504, 39.96735600544301], [-75.26964222570032, 39.96732537822608], [-75.26974114420464, 39.96731605144295], [-75.26982980277185, 39.967336488485415], [-75.26994080967651, 39.96740415429852], [-75.27001750229617, 39.96751693938681], [-75.27005546419105, 39.96765446359375], [-75.27008609397892, 39.96775743332085], [-75.27014147030803, 39.967873284963005], [-75.27019264858359, 39.967978463780554], [-75.27029857547103, 39.96818536843522], [-75.27039605939422, 39.968340937118356], [-75.27041825229144, 39.96845519034891], [-75.27047525775806, 39.96855784694886], [-75.27060759119026, 39.96865889938613], [-75.27074631313926, 39.968668658677835], [-75.27087600835432, 39.968632654577455], [-75.27101562691286, 39.968607446784695], [-75.27113982493529, 39.96862777030827], [-75.27124165378416, 39.96866436607983], [-75.27136877512659, 39.96869886372079], [-75.27149100636406, 39.96871032373607], [-75.27159166987883, 39.96871602539292], [-75.27169888243431, 39.968730689046524], [-75.27183341176121, 39.968782101770195], [-75.27192338869241, 39.96886077640519], [-75.27200552968517, 39.96896574004722], [-75.2720875016248, 39.96901248918478], [-75.2721973785659, 39.969048377619984], [-75.2723446699692, 39.96909565678861], [-75.27250608970286, 39.96913265605032], [-75.27262589201683, 39.96917934132502], [-75.27277184335667, 39.969231882479804], [-75.27300662004204, 39.96930045123913], [-75.27323356179036, 39.96930094053377], [-75.2734544051496, 39.96928013094595], [-75.27357021577774, 39.969279102158396], [-75.2736822032329, 39.96928857460309], [-75.2738102288223, 39.96929839303772], [-75.27391292624827, 39.96931119213032], [-75.27401358851628, 39.96931689161242], [-75.27415109702976, 39.96931809455762], [-75.27432649972707, 39.969317469632365], [-75.27448834915032, 39.9693112605676], [-75.27484957631505, 39.96929127212687], [-75.27505636479906, 39.96929440896439], [-75.2751979025655, 39.969326566152496], [-75.27529422162277, 39.96938861653901], [-75.27537981994091, 39.96954039701618], [-75.27545651418261, 39.96977929878811], [-75.27549455040116, 39.969930933724896], [-75.27556823756021, 39.97012655489465], [-75.27560753384536, 39.97021207217482], [-75.2756790833548, 39.97027755600434], [-75.27581943212209, 39.970311010280305], [-75.27600562051816, 39.97031326148098], [-75.27621655745362, 39.97032839209221], [-75.27630337930857, 39.97035231355931], [-75.27639208218493, 39.97040317435482], [-75.27645347489127, 39.97049577995993], [-75.27650845682969, 39.97059133500776], [-75.27663081832311, 39.97081181759219], [-75.27666108441865, 39.97096438829077], [-75.27655897481661, 39.971077062658885], [-75.27647681652651, 39.97115070035715], [-75.27655402223768, 39.97124452971475], [-75.2767251942114, 39.971249982456406], [-75.27686183385241, 39.97119648269428], [-75.27707374547703, 39.971106238414094], [-75.27716729138939, 39.97108708756969], [-75.27730324621768, 39.971083843768945], [-75.27742249122169, 39.97109876035016], [-75.27755560737012, 39.97114197822164], [-75.27765799846647, 39.9712105507228], [-75.2776966387695, 39.97126694774047], [-75.27768369953003, 39.971344281401834], [-75.2775375059147, 39.971409395369484], [-75.27752660910306, 39.97153713344782], [-75.27759278090684, 39.9716166140329], [-75.27765872446948, 39.97165253165632], [-75.27776625909163, 39.971679707495724], [-75.2778875217629, 39.971694333674876], [-75.2779938245599, 39.97173386766503], [-75.27829745667975, 39.97192902531337], [-75.27835368985112, 39.97201433604586], [-75.27845022447251, 39.97210771993886], [-75.27853792600652, 39.97218649778466], [-75.27863376462648, 39.97229908987982], [-75.27869822404367, 39.97241581194476], [-75.27872523619963, 39.97253172751549], [-75.27876048646607, 39.972635804990645], [-75.27877927328194, 39.97272030725401], [-75.27878418087369, 39.97284295463171], [-75.27879585289563, 39.97295133016385], [-75.27881090768369, 39.97305257158474], [-75.27883185465254, 39.97316355066624], [-75.27886000276243, 39.97324825540332], [-75.27893478651718, 39.97333876841981], [-75.27897142380097, 39.973447681518365], [-75.2789997468898, 39.973527584143355], [-75.27906533009049, 39.97365634295254], [-75.27910958452401, 39.973813476597286], [-75.2791246388332, 39.97391471704907], [-75.27917194907599, 39.97398781879196], [-75.27924215052055, 39.974032581956855], [-75.27935933750587, 39.97407354903744], [-75.2794668117676, 39.97412391856745], [-75.27960193564434, 39.97418689602152], [-75.27980630144762, 39.97432104576538], [-75.27995554698477, 39.974425175482324], [-75.28003974026686, 39.97452890493397], [-75.28008569570692, 39.97462500440104], [-75.28013161062924, 39.974736521475975], [-75.28019356522486, 39.97483636824822], [-75.28030494348063, 39.97499282958565], [-75.27942880590791, 39.97543776910457], [-75.27767815353906, 39.97633805029053], [-75.27637978216349, 39.977005710925546], [-75.27614487465645, 39.97711075459385], [-75.27529559584758, 39.97749051778284], [-75.27357298205358, 39.97826076910169], [-75.27303027921207, 39.97850208912234], [-75.2722670159775, 39.97884147602715], [-75.2714231867024, 39.97921867213419], [-75.26927040715022, 39.98017154149284], [-75.26747837229865, 39.980966265533], [-75.26625785964977, 39.98150750669138], [-75.26559186859274, 39.98180283336507], [-75.26477028042451, 39.982167149718165], [-75.26438298957272, 39.98233888222463], [-75.26371556310222, 39.98263482679255], [-75.26218443439792, 39.98348226865512], [-75.26072952068351, 39.984282074375585], [-75.25950960686441, 39.984952663492855], [-75.25895553332985, 39.98525723169234], [-75.25873855202822, 39.9851411140688], [-75.25856372363621, 39.985064439102324], [-75.25844839567114, 39.98497994566437], [-75.25841623552195, 39.98488814773539], [-75.25841990895853, 39.98478801782432], [-75.25838875078568, 39.98466891197484], [-75.25829675601017, 39.98459403569778], [-75.25815876484526, 39.98448172025604], [-75.25808027370277, 39.98436158573331], [-75.25800311996899, 39.984205041536896], [-75.25797346464786, 39.98404497323328], [-75.25788514655346, 39.983869965850175], [-75.25786598973029, 39.98374656592826], [-75.2578720020408, 39.98358271667808], [-75.25781851438828, 39.983426686211416], [-75.25779952487125, 39.983298733608244]]]}}, {"id": "4350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17454748031477, 39.99608723898832], [-75.1740384672259, 39.99602451559965], [-75.173949400465, 39.996433541437796], [-75.1738467884602, 39.9969125493937], [-75.17376905847696, 39.99726228886767], [-75.1736925769281, 39.99761763719093], [-75.17360205393814, 39.998036371890905], [-75.17328363960958, 39.99951770076661], [-75.17365940901269, 39.999570697039815], [-75.17383129442936, 39.999588710336866], [-75.17413721987295, 39.99963091214326], [-75.17431353173781, 39.99965438956214], [-75.17462275500036, 39.99969188238585], [-75.1748683905341, 39.99971241271599], [-75.17529339938785, 39.99977849249369], [-75.17551452603499, 39.99980728632103], [-75.17592533856603, 39.99987022969339], [-75.17630108312402, 39.99992258776815], [-75.17788703847265, 40.000121568957525], [-75.18580239335816, 40.001234552348855], [-75.18591254797424, 40.00113254716044], [-75.18601240691117, 40.0010530245405], [-75.1863976069381, 40.00073642456139], [-75.18658483537178, 40.00059526388212], [-75.18670843089362, 40.00051263605986], [-75.18684530319169, 40.00041862298224], [-75.18695021727696, 40.00036542639317], [-75.18719648096246, 40.000287353234], [-75.1873415558144, 40.000261523586055], [-75.18751204453845, 40.000250794308116], [-75.18774342180795, 40.000254142455965], [-75.18811364941526, 40.00027148930787], [-75.1882887944045, 40.000274281499806], [-75.18844854279348, 40.00027300690382], [-75.18856107316485, 40.00025622816419], [-75.18881572478557, 40.000205526644876], [-75.18957783196146, 39.999896811291215], [-75.19051987452018, 39.99964280358881], [-75.19173829317083, 39.9995496686985], [-75.19156264214371, 40.00079131936958], [-75.19141944287965, 40.002882461289495], [-75.1915353587339, 40.00420107841301], [-75.19175386735485, 40.005238965345704], [-75.19202407067375, 40.00588177689373], [-75.19210817108346, 40.0059917246091], [-75.19248650438152, 40.00648631915835], [-75.19215822867767, 40.00652737723856], [-75.19182140823222, 40.006574296052555], [-75.19159962191372, 40.00660536533527], [-75.19148464086909, 40.006621471858764], [-75.19114793109786, 40.00666897143275], [-75.19081081926585, 40.00671456625028], [-75.19047279783496, 40.00675583840279], [-75.19013391830701, 40.006793039509155], [-75.18979495444817, 40.00682982508193], [-75.18875577856281, 40.00687835254241], [-75.18751678904931, 40.00693619642412], [-75.18309910876698, 40.007142337153745], [-75.18259278643873, 40.0071660341871], [-75.18225108780933, 40.00718179340903], [-75.18190938624555, 40.00719750109568], [-75.18156769013017, 40.00721327636771], [-75.18122601266239, 40.00722923484977], [-75.18088436810777, 40.00724549489363], [-75.1805427636371, 40.00726217649447], [-75.18020121485219, 40.00727939352919], [-75.17985986450924, 40.007299379194045], [-75.17949583686833, 40.007330268309794], [-75.1791808013841, 40.00736527442401], [-75.17884254943282, 40.00740598482527], [-75.17850353803009, 40.007442419954835], [-75.17817990974089, 40.00747547030837], [-75.17782497552301, 40.00751233965202], [-75.17748625496522, 40.00755025147113], [-75.17714771609977, 40.007589819726114], [-75.17680993770276, 40.007632744984505], [-75.17647388047243, 40.007682150068774], [-75.17614027259992, 40.0077412625246], [-75.17580848000264, 40.00780637581546], [-75.17547878827409, 40.00787715578088], [-75.17515173790514, 40.00795495076213], [-75.17482574100757, 40.00803540932257], [-75.17450135375312, 40.00811949811968], [-75.17418020188195, 40.00821038105396], [-75.17386255750822, 40.00830866613599], [-75.17354518230786, 40.008407551969064], [-75.17322881678321, 40.008508366147595], [-75.17289976733551, 40.00862885398273], [-75.17261598778865, 40.00874233816866], [-75.17231497932914, 40.00886798956168], [-75.17201478572093, 40.00899458472763], [-75.17171807731377, 40.00912597960543], [-75.17142893153489, 40.00926680419859], [-75.17114081893814, 40.009408899199265], [-75.17085302274307, 40.0095513925516], [-75.17056549159035, 40.00969421733024], [-75.17027816930145, 40.009837310105105], [-75.17012183886611, 40.009915319234196], [-75.16997222605549, 40.00975029935354], [-75.16977642969267, 40.00953434146551], [-75.16958063595123, 40.009318377866634], [-75.1693848528208, 40.00910241414265], [-75.16918907816523, 40.00888644483949], [-75.16914141995576, 40.00883386530923], [-75.16902131344077, 40.00890282471295], [-75.16848841069908, 40.00830024742549], [-75.16817665677839, 40.00792919258995], [-75.16753051174942, 40.007229125812884], [-75.16706466223903, 40.00671707874373], [-75.16694227559776, 40.00659450027782], [-75.16683627468983, 40.00656625799417], [-75.16522993149461, 40.006355457449395], [-75.16362929487212, 40.006153400797835], [-75.1637889278219, 40.005391718188754], [-75.16394255755147, 40.004656818906476], [-75.16410376670699, 40.0039137062559], [-75.16416664603113, 40.003624523693304], [-75.16423349039556, 40.00331710737684], [-75.16428653681054, 40.00307313876195], [-75.16385107540998, 40.0030100347716], [-75.16368297597836, 40.00298909789411], [-75.16362073706692, 40.002951223522345], [-75.16335369651195, 40.002785904787025], [-75.16308767953454, 40.00261989215878], [-75.16282206196311, 40.00245388518213], [-75.16255680593444, 40.00228746313338], [-75.16229204340254, 40.002120514560396], [-75.1620279027452, 40.00195296036825], [-75.16176451244321, 40.00178471876236], [-75.16150199984101, 40.00161570702282], [-75.161240496931, 40.00144584343654], [-75.16098012864764, 40.001275047033516], [-75.16072102574383, 40.001103237877146], [-75.16046479410915, 40.00092885830357], [-75.16022065424094, 40.00074376302431], [-75.15999048402087, 40.000548785576555], [-75.1597713031795, 40.0003466843852], [-75.1595615079236, 40.0001381630573], [-75.15936539983369, 39.99992221767875], [-75.1591803374125, 39.99970092501449], [-75.15899602352023, 39.99947923625235], [-75.15881222546582, 39.99925726237476], [-75.15862265723953, 39.99902740827307], [-75.15899682039944, 39.998828117554744], [-75.15860052408783, 39.99832830269098], [-75.15858145930692, 39.99820623506159], [-75.15871361413248, 39.99765215583468], [-75.15892784507975, 39.99664039538977], [-75.15910396550437, 39.995787685077396], [-75.15937214283764, 39.99568041788825], [-75.15968224437353, 39.99556799088048], [-75.15999242176541, 39.99545566658435], [-75.16030227819603, 39.99534316033578], [-75.16045884503355, 39.995286151429184], [-75.16061238107615, 39.99523024616773], [-75.16092135898762, 39.99511657598776], [-75.16122978418703, 39.99500191943675], [-75.16153718510476, 39.994885985669384], [-75.16163202672163, 39.99484964644871], [-75.16184356796215, 39.99476851894601], [-75.16214851295865, 39.9946492223867], [-75.16245167076322, 39.994527825031916], [-75.16275345225249, 39.9944040577435], [-75.16305295047066, 39.9942776496103], [-75.163350493459, 39.994148322421], [-75.16364550628586, 39.99401579203144], [-75.16375019463729, 39.99396740746016], [-75.16393856707938, 39.99388065714653], [-75.16423074379837, 39.993744342918106], [-75.16452209682625, 39.993606924596605], [-75.16481268231108, 39.99346846562296], [-75.16510262738187, 39.99332901121388], [-75.16539161774134, 39.99318860115002], [-75.16568007898715, 39.99304731800311], [-75.16596791696877, 39.99290520380751], [-75.16625523475753, 39.99276232035509], [-75.1665418847763, 39.99261869766585], [-75.16682790638126, 39.99247440961277], [-75.1671136796878, 39.99232950259677], [-75.16739917355237, 39.99218405610931], [-75.16768419613064, 39.99203809376805], [-75.1679687264333, 39.99189167457132], [-75.16825303046308, 39.99174485766576], [-75.16843898729299, 39.99164851587217], [-75.16853740086704, 39.99159771000278], [-75.1688207535072, 39.991450246846625], [-75.1691045372262, 39.99130256565563], [-75.1693872372827, 39.99115510089788], [-75.16967144280557, 39.991006703428134], [-75.16995458851298, 39.990858634656625], [-75.17023810612953, 39.990710548344374], [-75.17052159274488, 39.99056250481203], [-75.17080490447788, 39.99041452965903], [-75.17108835770135, 39.99026671288831], [-75.17137200492108, 39.99011909081782], [-75.17165545820235, 39.989971699782394], [-75.17174544033298, 39.98992532586602], [-75.1719398834796, 39.98982465246886], [-75.17222419612551, 39.98967794703608], [-75.1722929682314, 39.9896425977823], [-75.17250881164603, 39.98953165408423], [-75.17279376775308, 39.989385829419646], [-75.17307901995844, 39.989240410772055], [-75.17336424298125, 39.98909495654882], [-75.17364939329444, 39.98894940991035], [-75.17397753918489, 39.98879442269209], [-75.17421944851988, 39.98865801715374], [-75.17431169727813, 39.988610003672555], [-75.17450433969368, 39.98851216261944], [-75.17478913219263, 39.988366189861445], [-75.175073819062, 39.988220096922404], [-75.17535839004088, 39.98807387636496], [-75.17564284416281, 39.98792752276212], [-75.17592717237113, 39.987781027802576], [-75.17621136888152, 39.9876343895556], [-75.17649542346686, 39.98748759968373], [-75.17678267943901, 39.987338918507284], [-75.17706309246293, 39.987193543122466], [-75.1773466921687, 39.98704626259055], [-75.17763012508465, 39.986898806454555], [-75.17791338439226, 39.9867511691569], [-75.17819595734188, 39.986602755354134], [-75.17847269556879, 39.98644779135077], [-75.17874350295386, 39.98628671112583], [-75.17900988020565, 39.986121580118635], [-75.17927288452242, 39.985953153660745], [-75.17952311080867, 39.98578912390087], [-75.1802587566406, 39.98634657855011], [-75.1808049885002, 39.98679189595898], [-75.18239436538755, 39.98804340832484], [-75.18272022858042, 39.98833197667123], [-75.1831239638344, 39.98873142579218], [-75.18360132913213, 39.989160865516276], [-75.18370039313666, 39.98926152661691], [-75.18440501709573, 39.98993084231582], [-75.18492772040672, 39.99059520320089], [-75.18514705947834, 39.99089240645013], [-75.18546053033423, 39.99138595734597], [-75.1855994217512, 39.991700477966795], [-75.18470028526923, 39.99158911954114], [-75.18310199841407, 39.991387944261916], [-75.1830327008547, 39.991716851483034], [-75.18294730872427, 39.992132675019576], [-75.18287263140702, 39.99249945472539], [-75.18285160219146, 39.992559874632335], [-75.18278097572606, 39.992882286376116], [-75.18246403080408, 39.99436655835697], [-75.18190307494586, 39.994297651369116], [-75.18143282941065, 39.99424567778614], [-75.18089021757832, 39.99416854551146], [-75.18031371940255, 39.99409936300979], [-75.17984491495443, 39.994033394503084], [-75.17924802630033, 39.99396489071622], [-75.17865174340511, 39.99387175652586], [-75.17818778459817, 39.99381253198284], [-75.17762739068323, 39.9937463844015], [-75.17730329983524, 39.99524011547214], [-75.1772181797496, 39.99565034009198], [-75.17713354646214, 39.996021750104205], [-75.17706269651143, 39.99637357649088], [-75.17565293877416, 39.996202787880286], [-75.17557127214151, 39.9962194694204], [-75.17454748031477, 39.99608723898832]]]}}, {"id": "4360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15142831160365, 40.010904609042456], [-75.15088384543449, 40.01083838502309], [-75.15109155559469, 40.009935608153896], [-75.15124691791851, 40.00928023079825], [-75.15136965214894, 40.0087285626357], [-75.15145388577758, 40.008304667680875], [-75.15160350639509, 40.007666561375814], [-75.1519215609655, 40.00616852257761], [-75.15223616898231, 40.00469095826975], [-75.15255074890221, 40.00318283825957], [-75.15292652250417, 40.00159394177207], [-75.15327178153623, 40.000005964225274], [-75.1533756429784, 39.999535716947804], [-75.15343043501113, 39.99932290234036], [-75.15351676429032, 39.99894368200813], [-75.15356617822117, 39.99872491882124], [-75.15360944500394, 39.99851659723753], [-75.15378676915165, 39.997718116984636], [-75.15411432116903, 39.9975994614778], [-75.15442400020167, 39.99748737210634], [-75.15473371019556, 39.99737533398034], [-75.15504344137354, 39.99726332705614], [-75.1553531803092, 39.99715133481174], [-75.15566291708737, 39.997039340804676], [-75.1559726395891, 39.996927324938724], [-75.15628233683134, 39.996815268044415], [-75.15659199535231, 39.99670315450057], [-75.15670451151196, 39.996662382790745], [-75.15690160774868, 39.99659096341692], [-75.1572111605581, 39.99647867917237], [-75.15752064048989, 39.99636628164496], [-75.1578301887574, 39.9962537542018], [-75.15813665290185, 39.99613667645335], [-75.1584443762612, 39.99602107787734], [-75.1587530025543, 39.99590668642272], [-75.15910396550437, 39.995787685077396], [-75.15892784507975, 39.99664039538977], [-75.15871361413248, 39.99765215583468], [-75.15858145930692, 39.99820623506159], [-75.15860052408783, 39.99832830269098], [-75.15899682039944, 39.998828117554744], [-75.15862265723953, 39.99902740827307], [-75.15881222546582, 39.99925726237476], [-75.15899602352023, 39.99947923625235], [-75.1591803374125, 39.99970092501449], [-75.15936539983369, 39.99992221767875], [-75.1595615079236, 40.0001381630573], [-75.1597713031795, 40.0003466843852], [-75.15999048402087, 40.000548785576555], [-75.16022065424094, 40.00074376302431], [-75.16046479410915, 40.00092885830357], [-75.16072102574383, 40.001103237877146], [-75.16098012864764, 40.001275047033516], [-75.161240496931, 40.00144584343654], [-75.16150199984101, 40.00161570702282], [-75.16176451244321, 40.00178471876236], [-75.1620279027452, 40.00195296036825], [-75.16229204340254, 40.002120514560396], [-75.16255680593444, 40.00228746313338], [-75.16282206196311, 40.00245388518213], [-75.16308767953454, 40.00261989215878], [-75.16335369651195, 40.002785904787025], [-75.16362073706692, 40.002951223522345], [-75.16368297597836, 40.00298909789411], [-75.16385107540998, 40.0030100347716], [-75.16428653681054, 40.00307313876195], [-75.16423349039556, 40.00331710737684], [-75.16416664603113, 40.003624523693304], [-75.16410376670699, 40.0039137062559], [-75.16394255755147, 40.004656818906476], [-75.16266176106042, 40.00449586267749], [-75.16205980369239, 40.004411363111885], [-75.16124295205188, 40.00430751652491], [-75.16049590439602, 40.00421652653145], [-75.16039708600967, 40.00467860002028], [-75.16018002442229, 40.0056935563002], [-75.15938120530795, 40.005596441291345], [-75.15860266420239, 40.00549919183472], [-75.15827899180522, 40.006995350258336], [-75.15671137621378, 40.00679123674339], [-75.1565391286977, 40.007528480929054], [-75.1563776281082, 40.00828571438881], [-75.15557733939363, 40.00818170067494], [-75.15480148824966, 40.00808177653153], [-75.15446554022661, 40.00965572461483], [-75.15367036090495, 40.009554092098085], [-75.15287867430192, 40.00944804956422], [-75.15254164453529, 40.01105020923317], [-75.15179958690221, 40.010951326411366], [-75.15142831160365, 40.010904609042456]]]}}, {"id": "4370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.24978479196271, 39.98969976247465], [-75.24962539757507, 39.989466369359434], [-75.24946425191449, 39.98923383613185], [-75.24929776056157, 39.989003933304275], [-75.24912232106712, 39.98877842758796], [-75.24893535809994, 39.98855854943753], [-75.24873884867817, 39.988343287720184], [-75.24853553159981, 39.98813136500563], [-75.24832811799277, 39.98792152310045], [-75.24811931762962, 39.98771250830601], [-75.24791180889682, 39.98750305995227], [-75.24770586314762, 39.98729252083316], [-75.24749891064862, 39.987082381929454], [-75.24728844095677, 39.986874559862514], [-75.24707193557566, 39.9866709674555], [-75.24684604899207, 39.98647402835681], [-75.24660330199214, 39.98628858708673], [-75.24644054350821, 39.9861752070431], [-75.24634908383008, 39.986111494104286], [-75.24609154060022, 39.98593783014206], [-75.24583413804008, 39.98576410286919], [-75.24557536375369, 39.985591336148076], [-75.24531369919322, 39.98542132404087], [-75.24504763542635, 39.98525585359801], [-75.2447756649753, 39.985096703778815], [-75.24449771339214, 39.98494341521302], [-75.24421477298127, 39.98479493283755], [-75.24392738287504, 39.98465130983399], [-75.24363608721188, 39.98451259048826], [-75.2433414192912, 39.98437882696372], [-75.2430434082267, 39.98425002257443], [-75.24274199429183, 39.984125604761495], [-75.24243790732571, 39.98400471187836], [-75.24213188787569, 39.983886478014874], [-75.24182467064739, 39.98377003714066], [-75.24151699490501, 39.98365452693657], [-75.24120916805782, 39.983539615345656], [-75.24090024436214, 39.983426458387555], [-75.2405904118842, 39.983314720491556], [-75.2402799848242, 39.98320391748021], [-75.23996927180364, 39.983093557849344], [-75.23965858696977, 39.98298315922893], [-75.23934823775453, 39.98287223099615], [-75.23903853607797, 39.98276028803558], [-75.23872979266353, 39.98264684610981], [-75.2386133941012, 39.98260314982133], [-75.23874552031107, 39.982383101851674], [-75.23904360757881, 39.98195194572015], [-75.2393364320091, 39.9814487492631], [-75.23941782700196, 39.9812841947847], [-75.23947488765062, 39.981115960767795], [-75.23946783594495, 39.98091564453654], [-75.23937971975117, 39.98042536050394], [-75.23930359835626, 39.98001699220907], [-75.23925884612574, 39.97975561433966], [-75.23918921571732, 39.97941621572664], [-75.2391258420239, 39.97907096594098], [-75.23995988823147, 39.97897202874271], [-75.24078976905467, 39.978888636602434], [-75.24157570471533, 39.97880044785277], [-75.24235595224603, 39.97871317642875], [-75.24324659750818, 39.97861072026858], [-75.24413970763122, 39.97851841750556], [-75.24504122364607, 39.978412055657806], [-75.24609118202632, 39.978301577196724], [-75.24741055872916, 39.978153364887895], [-75.24795534391309, 39.97808789189711], [-75.24833548194869, 39.97797008910951], [-75.24837185542803, 39.978120301429165], [-75.24842942758778, 39.978296601807756], [-75.248534557208, 39.97853891643046], [-75.24862827057224, 39.97870892987897], [-75.24869932269642, 39.9788156818088], [-75.24877874760803, 39.9789212908167], [-75.24894467722332, 39.979107813621795], [-75.24922709433469, 39.97945068088363], [-75.24945736451684, 39.97971133555546], [-75.24972680378382, 39.98003286435721], [-75.2499981816164, 39.98034370029889], [-75.25019634961782, 39.98058188701795], [-75.25106465748974, 39.98160212773648], [-75.25144274920666, 39.981409541706675], [-75.25177529229718, 39.98124566591049], [-75.25221053651195, 39.98101353192132], [-75.25254465176846, 39.98077109037152], [-75.25285866859625, 39.98049146282689], [-75.2531055950887, 39.980181698136825], [-75.25329151334172, 39.979878224493525], [-75.2534972665133, 39.979534654664576], [-75.25371700479728, 39.97927893963733], [-75.25393035335655, 39.979068205885], [-75.25425359765558, 39.97883649458859], [-75.25447177909811, 39.978704422230216], [-75.25481936135184, 39.97855001011863], [-75.25502431547316, 39.97846970018743], [-75.25545811345737, 39.97829859477337], [-75.25592386999945, 39.97812301785536], [-75.25769947540438, 39.977729351261154], [-75.25775335275372, 39.9778030724985], [-75.25779011548293, 39.97795779297534], [-75.25780213375715, 39.9781259693219], [-75.25785707138698, 39.97828108446243], [-75.25791235010618, 39.9784268781471], [-75.25792590780046, 39.97855310816274], [-75.25791940977383, 39.978730211227486], [-75.25793987961264, 39.97883327016297], [-75.25803641921948, 39.97892865208236], [-75.25812032954617, 39.97903775383541], [-75.25819340599485, 39.97911163672751], [-75.25813149276829, 39.97922923182571], [-75.25808327222325, 39.979386771288986], [-75.25809077207833, 39.97951287063377], [-75.25815868192974, 39.97964494518299], [-75.2582070502981, 39.97981391071058], [-75.25825798364228, 39.97991296658654], [-75.25833869599897, 39.980026662221725], [-75.25838442617221, 39.980102283895995], [-75.25841112644903, 39.98020081447303], [-75.25843782683634, 39.980299344143255], [-75.25853151037687, 39.9803900000627], [-75.25860787493902, 39.98045695785922], [-75.25871470146915, 39.98051991245347], [-75.25879678170176, 39.98059632301827], [-75.2588537748815, 39.98069551103776], [-75.25885201713002, 39.98082607375668], [-75.25897982934555, 39.98097810475738], [-75.2589846442712, 39.98109481689402], [-75.25887532799537, 39.981265023796205], [-75.25876618215821, 39.981430568990504], [-75.25864039887813, 39.98155377500522], [-75.25856564769774, 39.9816081234384], [-75.25846785912155, 39.98162932260072], [-75.25836972855525, 39.981659842183376], [-75.25831715813426, 39.981770644081074], [-75.25833626165407, 39.98191098765083], [-75.25836885012829, 39.98201431046831], [-75.2583221669947, 39.98212990460163], [-75.25830663143363, 39.98222285289109], [-75.25824979726318, 39.98228458720162], [-75.25811659674547, 39.98227936251505], [-75.2580284939987, 39.98228444662897], [-75.25799909350198, 39.98234211207622], [-75.2579939107551, 39.982519497765885], [-75.25790807519572, 39.982599623853325], [-75.25778774191511, 39.98265167019297], [-75.25773773726883, 39.98272346434004], [-75.25775629701346, 39.98302449642958], [-75.25779203427024, 39.98318014148932], [-75.25779952487125, 39.983298733608244], [-75.25781851438828, 39.983426686211416], [-75.2578720020408, 39.98358271667808], [-75.25786598973029, 39.98374656592826], [-75.25788514655346, 39.983869965850175], [-75.25797346464786, 39.98404497323328], [-75.25800311996899, 39.984205041536896], [-75.25808027370277, 39.98436158573331], [-75.25815876484526, 39.98448172025604], [-75.25829675601017, 39.98459403569778], [-75.25838875078568, 39.98466891197484], [-75.25841990895853, 39.98478801782432], [-75.25841623552195, 39.98488814773539], [-75.25844839567114, 39.98497994566437], [-75.25856372363621, 39.985064439102324], [-75.25873855202822, 39.9851411140688], [-75.25895553332985, 39.98525723169234], [-75.25872753309847, 39.985382559416664], [-75.2585677370443, 39.98551310456246], [-75.258500930732, 39.98556768046523], [-75.25689606554148, 39.98675825032424], [-75.25629660428655, 39.98720179878692], [-75.25611910988093, 39.98731302101286], [-75.25569741881579, 39.98751066331712], [-75.2540006401353, 39.988305893059476], [-75.25146797189905, 39.989493599388325], [-75.25082157861772, 39.98979671217423], [-75.25009715667207, 39.99013718173664], [-75.25000198399019, 39.99001086413415], [-75.24978479196271, 39.98969976247465]]]}}, {"id": "4380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16428653681054, 40.00307313876195], [-75.16385107540998, 40.0030100347716], [-75.16368297597836, 40.00298909789411], [-75.16362073706692, 40.002951223522345], [-75.16335369651195, 40.002785904787025], [-75.16308767953454, 40.00261989215878], [-75.16282206196311, 40.00245388518213], [-75.16255680593444, 40.00228746313338], [-75.16229204340254, 40.002120514560396], [-75.1620279027452, 40.00195296036825], [-75.16176451244321, 40.00178471876236], [-75.16150199984101, 40.00161570702282], [-75.161240496931, 40.00144584343654], [-75.16098012864764, 40.001275047033516], [-75.16072102574383, 40.001103237877146], [-75.16046479410915, 40.00092885830357], [-75.16022065424094, 40.00074376302431], [-75.15999048402087, 40.000548785576555], [-75.1597713031795, 40.0003466843852], [-75.1595615079236, 40.0001381630573], [-75.15936539983369, 39.99992221767875], [-75.1591803374125, 39.99970092501449], [-75.15899602352023, 39.99947923625235], [-75.15881222546582, 39.99925726237476], [-75.15862265723953, 39.99902740827307], [-75.15899682039944, 39.998828117554744], [-75.15860052408783, 39.99832830269098], [-75.15858145930692, 39.99820623506159], [-75.15871361413248, 39.99765215583468], [-75.15892784507975, 39.99664039538977], [-75.15910396550437, 39.995787685077396], [-75.15937214283764, 39.99568041788825], [-75.15968224437353, 39.99556799088048], [-75.15999242176541, 39.99545566658435], [-75.16030227819603, 39.99534316033578], [-75.16045884503355, 39.995286151429184], [-75.16061238107615, 39.99523024616773], [-75.16092135898762, 39.99511657598776], [-75.16122978418703, 39.99500191943675], [-75.16153718510476, 39.994885985669384], [-75.16163202672163, 39.99484964644871], [-75.16184356796215, 39.99476851894601], [-75.16214851295865, 39.9946492223867], [-75.16245167076322, 39.994527825031916], [-75.16275345225249, 39.9944040577435], [-75.16305295047066, 39.9942776496103], [-75.163350493459, 39.994148322421], [-75.16364550628586, 39.99401579203144], [-75.16375019463729, 39.99396740746016], [-75.16393856707938, 39.99388065714653], [-75.16423074379837, 39.993744342918106], [-75.16452209682625, 39.993606924596605], [-75.16481268231108, 39.99346846562296], [-75.16510262738187, 39.99332901121388], [-75.16539161774134, 39.99318860115002], [-75.16568007898715, 39.99304731800311], [-75.16596791696877, 39.99290520380751], [-75.16625523475753, 39.99276232035509], [-75.1665418847763, 39.99261869766585], [-75.16682790638126, 39.99247440961277], [-75.1671136796878, 39.99232950259677], [-75.16739917355237, 39.99218405610931], [-75.16768419613064, 39.99203809376805], [-75.1679687264333, 39.99189167457132], [-75.16825303046308, 39.99174485766576], [-75.16843898729299, 39.99164851587217], [-75.16853740086704, 39.99159771000278], [-75.1688207535072, 39.991450246846625], [-75.1691045372262, 39.99130256565563], [-75.1693872372827, 39.99115510089788], [-75.1707843728449, 39.99133578500331], [-75.17019883139814, 39.99163851941514], [-75.17007999572749, 39.99169884638352], [-75.17002253696099, 39.992006980909686], [-75.16984245201542, 39.99275533866876], [-75.16973556515883, 39.99327294867794], [-75.16963738497498, 39.99368026305779], [-75.16952159443004, 39.99424075112162], [-75.1711160935064, 39.994445457176994], [-75.17099820193717, 39.99496979116941], [-75.17090336988619, 39.99540940915178], [-75.1724908006024, 39.995620937451456], [-75.17408186118556, 39.995823423914], [-75.1740384672259, 39.99602451559965], [-75.173949400465, 39.996433541437796], [-75.1738467884602, 39.9969125493937], [-75.17376905847696, 39.99726228886767], [-75.1736925769281, 39.99761763719093], [-75.17360205393814, 39.998036371890905], [-75.17328363960958, 39.99951770076661], [-75.17295750713009, 40.00103313744321], [-75.17238977162123, 40.000961346000494], [-75.17191211309034, 40.00088428639906], [-75.17134887345915, 40.000821883769845], [-75.17077113829977, 40.000751540915886], [-75.17063152402457, 40.00073802343627], [-75.17030268419701, 40.00069125908698], [-75.16975566662346, 40.000623150195075], [-75.1692016493103, 40.000547229001015], [-75.16872495187236, 40.000486773369175], [-75.16817950427762, 40.00041026681867], [-75.16761132687105, 40.000343809820485], [-75.16737616867391, 40.00031121706132], [-75.16713533996705, 40.000283623001], [-75.16656379910866, 40.00020077043193], [-75.16652846584367, 40.000403778368266], [-75.1664096657493, 40.00093443216074], [-75.16623794654255, 40.00168507129088], [-75.16609052902518, 40.00243612386425], [-75.16589661091966, 40.003270433008296], [-75.16428653681054, 40.00307313876195]]]}}, {"id": "4440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17630108312402, 39.99992258776815], [-75.17592533856603, 39.99987022969339], [-75.17551452603499, 39.99980728632103], [-75.17529339938785, 39.99977849249369], [-75.1748683905341, 39.99971241271599], [-75.17462275500036, 39.99969188238585], [-75.17431353173781, 39.99965438956214], [-75.17413721987295, 39.99963091214326], [-75.17383129442936, 39.999588710336866], [-75.17365940901269, 39.999570697039815], [-75.17328363960958, 39.99951770076661], [-75.17360205393814, 39.998036371890905], [-75.1736925769281, 39.99761763719093], [-75.17376905847696, 39.99726228886767], [-75.1738467884602, 39.9969125493937], [-75.173949400465, 39.996433541437796], [-75.1740384672259, 39.99602451559965], [-75.17454748031477, 39.99608723898832], [-75.17557127214151, 39.9962194694204], [-75.17565293877416, 39.996202787880286], [-75.17706269651143, 39.99637357649088], [-75.17713354646214, 39.996021750104205], [-75.1772181797496, 39.99565034009198], [-75.17730329983524, 39.99524011547214], [-75.17762739068323, 39.9937463844015], [-75.17818778459817, 39.99381253198284], [-75.17865174340511, 39.99387175652586], [-75.17924802630033, 39.99396489071622], [-75.17984491495443, 39.994033394503084], [-75.18031371940255, 39.99409936300979], [-75.18089021757832, 39.99416854551146], [-75.18143282941065, 39.99424567778614], [-75.18190307494586, 39.994297651369116], [-75.18246403080408, 39.99436655835697], [-75.18278097572606, 39.992882286376116], [-75.18285160219146, 39.992559874632335], [-75.18287263140702, 39.99249945472539], [-75.18294730872427, 39.992132675019576], [-75.1830327008547, 39.991716851483034], [-75.18310199841407, 39.991387944261916], [-75.18470028526923, 39.99158911954114], [-75.1855994217512, 39.991700477966795], [-75.1858101578719, 39.992076620483545], [-75.18614935442002, 39.992663518096165], [-75.19493374887762, 39.99408810699247], [-75.19391207372766, 39.99533311331511], [-75.19387315409962, 39.99538054058539], [-75.19248952170433, 39.997189339779744], [-75.19209975304122, 39.99825612471282], [-75.19173829317083, 39.9995496686985], [-75.19051987452018, 39.99964280358881], [-75.18957783196146, 39.999896811291215], [-75.18881572478557, 40.000205526644876], [-75.18856107316485, 40.00025622816419], [-75.18844854279348, 40.00027300690382], [-75.1882887944045, 40.000274281499806], [-75.18811364941526, 40.00027148930787], [-75.18774342180795, 40.000254142455965], [-75.18751204453845, 40.000250794308116], [-75.1873415558144, 40.000261523586055], [-75.18719648096246, 40.000287353234], [-75.18695021727696, 40.00036542639317], [-75.18684530319169, 40.00041862298224], [-75.18670843089362, 40.00051263605986], [-75.18658483537178, 40.00059526388212], [-75.1863976069381, 40.00073642456139], [-75.18601240691117, 40.0010530245405], [-75.18591254797424, 40.00113254716044], [-75.18580239335816, 40.001234552348855], [-75.17788703847265, 40.000121568957525], [-75.17630108312402, 39.99992258776815]]]}}, {"id": "4460", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15495008064467, 39.99235406881351], [-75.1552710646978, 39.990854301803694], [-75.1554998987755, 39.989794409414735], [-75.15559310602195, 39.98937048713281], [-75.15593589746767, 39.987878554987844], [-75.15627637149069, 39.986284634879105], [-75.1566139097415, 39.984700031799335], [-75.15691577823603, 39.98322097007837], [-75.15725547387726, 39.98169482104445], [-75.15889700821441, 39.981915040873034], [-75.16047074927715, 39.98212965095867], [-75.16014671826717, 39.983628898433636], [-75.16005187512609, 39.98407025927032], [-75.15995561764252, 39.984505307145], [-75.15981211803054, 39.985149374337254], [-75.1613833728726, 39.98534049571191], [-75.16295124718621, 39.98554373064669], [-75.16361511904181, 39.98563622364805], [-75.16374843716792, 39.985658196097646], [-75.1645183402784, 39.98576060376892], [-75.16531767459625, 39.985862954522055], [-75.16609883186936, 39.985967163689345], [-75.16576344044917, 39.987515001890294], [-75.16497721886617, 39.98742226112422], [-75.16418508630503, 39.98731207775422], [-75.1638426170767, 39.988907785078474], [-75.16350180899792, 39.990402590136924], [-75.16318388419658, 39.99189165982134], [-75.16294179904934, 39.993044584418065], [-75.16285018130908, 39.993481241024035], [-75.16320875554426, 39.993324243819174], [-75.16375019463729, 39.99396740746016], [-75.16364550628586, 39.99401579203144], [-75.163350493459, 39.994148322421], [-75.16305295047066, 39.9942776496103], [-75.16275345225249, 39.9944040577435], [-75.16245167076322, 39.994527825031916], [-75.16214851295865, 39.9946492223867], [-75.16184356796215, 39.99476851894601], [-75.16163202672163, 39.99484964644871], [-75.16153718510476, 39.994885985669384], [-75.16122978418703, 39.99500191943675], [-75.16092135898762, 39.99511657598776], [-75.16061238107615, 39.99523024616773], [-75.16045884503355, 39.995286151429184], [-75.16030227819603, 39.99534316033578], [-75.15999242176541, 39.99545566658435], [-75.15968224437353, 39.99556799088048], [-75.15937214283764, 39.99568041788825], [-75.15910396550437, 39.995787685077396], [-75.1587530025543, 39.99590668642272], [-75.1584443762612, 39.99602107787734], [-75.15813665290185, 39.99613667645335], [-75.1578301887574, 39.9962537542018], [-75.15752064048989, 39.99636628164496], [-75.1572111605581, 39.99647867917237], [-75.15690160774868, 39.99659096341692], [-75.15670451151196, 39.996662382790745], [-75.15659199535231, 39.99670315450057], [-75.15628233683134, 39.996815268044415], [-75.1559726395891, 39.996927324938724], [-75.15566291708737, 39.997039340804676], [-75.1553531803092, 39.99715133481174], [-75.15504344137354, 39.99726332705614], [-75.15473371019556, 39.99737533398034], [-75.15442400020167, 39.99748737210634], [-75.15411432116903, 39.9975994614778], [-75.15378676915165, 39.997718116984636], [-75.15398545407648, 39.99678309188484], [-75.15414268878145, 39.99599273008329], [-75.15425395767012, 39.99552675657377], [-75.15431937889399, 39.99522312512964], [-75.15439262996195, 39.99487228977799], [-75.15458888487491, 39.99393956602994], [-75.15463860311415, 39.993720562504734], [-75.1546557583441, 39.99364499818574], [-75.154710323233, 39.993406694494226], [-75.15495008064467, 39.99235406881351]]]}}, {"id": "4470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17565293877416, 39.996202787880286], [-75.17557127214151, 39.9962194694204], [-75.17454748031477, 39.99608723898832], [-75.1740384672259, 39.99602451559965], [-75.17408186118556, 39.995823423914], [-75.1724908006024, 39.995620937451456], [-75.17090336988619, 39.99540940915178], [-75.17099820193717, 39.99496979116941], [-75.1711160935064, 39.994445457176994], [-75.16952159443004, 39.99424075112162], [-75.16963738497498, 39.99368026305779], [-75.16973556515883, 39.99327294867794], [-75.16984245201542, 39.99275533866876], [-75.17002253696099, 39.992006980909686], [-75.17007999572749, 39.99169884638352], [-75.17019883139814, 39.99163851941514], [-75.1707843728449, 39.99133578500331], [-75.1693872372827, 39.99115510089788], [-75.16967144280557, 39.991006703428134], [-75.16995458851298, 39.990858634656625], [-75.17023810612953, 39.990710548344374], [-75.17052159274488, 39.99056250481203], [-75.17080490447788, 39.99041452965903], [-75.17108835770135, 39.99026671288831], [-75.17137200492108, 39.99011909081782], [-75.17165545820235, 39.989971699782394], [-75.17174544033298, 39.98992532586602], [-75.1719398834796, 39.98982465246886], [-75.17222419612551, 39.98967794703608], [-75.1722929682314, 39.9896425977823], [-75.17250881164603, 39.98953165408423], [-75.17279376775308, 39.989385829419646], [-75.17307901995844, 39.989240410772055], [-75.17336424298125, 39.98909495654882], [-75.17364939329444, 39.98894940991035], [-75.17397753918489, 39.98879442269209], [-75.17421944851988, 39.98865801715374], [-75.17431169727813, 39.988610003672555], [-75.17450433969368, 39.98851216261944], [-75.17478913219263, 39.988366189861445], [-75.175073819062, 39.988220096922404], [-75.17535839004088, 39.98807387636496], [-75.17564284416281, 39.98792752276212], [-75.17592717237113, 39.987781027802576], [-75.17621136888152, 39.9876343895556], [-75.17649542346686, 39.98748759968373], [-75.17678267943901, 39.987338918507284], [-75.17706309246293, 39.987193543122466], [-75.1773466921687, 39.98704626259055], [-75.17763012508465, 39.986898806454555], [-75.17791338439226, 39.9867511691569], [-75.17819595734188, 39.986602755354134], [-75.17847269556879, 39.98644779135077], [-75.17874350295386, 39.98628671112583], [-75.17900988020565, 39.986121580118635], [-75.17927288452242, 39.985953153660745], [-75.17952311080867, 39.98578912390087], [-75.1802587566406, 39.98634657855011], [-75.1808049885002, 39.98679189595898], [-75.18239436538755, 39.98804340832484], [-75.18272022858042, 39.98833197667123], [-75.1831239638344, 39.98873142579218], [-75.18360132913213, 39.989160865516276], [-75.18370039313666, 39.98926152661691], [-75.18440501709573, 39.98993084231582], [-75.18492772040672, 39.99059520320089], [-75.18514705947834, 39.99089240645013], [-75.18546053033423, 39.99138595734597], [-75.1855994217512, 39.991700477966795], [-75.18470028526923, 39.99158911954114], [-75.18310199841407, 39.991387944261916], [-75.1830327008547, 39.991716851483034], [-75.18294730872427, 39.992132675019576], [-75.18287263140702, 39.99249945472539], [-75.18285160219146, 39.992559874632335], [-75.18278097572606, 39.992882286376116], [-75.18246403080408, 39.99436655835697], [-75.18190307494586, 39.994297651369116], [-75.18143282941065, 39.99424567778614], [-75.18089021757832, 39.99416854551146], [-75.18031371940255, 39.99409936300979], [-75.17984491495443, 39.994033394503084], [-75.17924802630033, 39.99396489071622], [-75.17865174340511, 39.99387175652586], [-75.17818778459817, 39.99381253198284], [-75.17762739068323, 39.9937463844015], [-75.17730329983524, 39.99524011547214], [-75.1772181797496, 39.99565034009198], [-75.17713354646214, 39.996021750104205], [-75.17706269651143, 39.99637357649088], [-75.17565293877416, 39.996202787880286]]]}}, {"id": "4530", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17608954052868, 39.98680021919029], [-75.17560938223376, 39.98627515162315], [-75.17521745144552, 39.985853437673235], [-75.175271358931, 39.98559829647787], [-75.17469432426374, 39.98550764947924], [-75.17479584065936, 39.98506810427846], [-75.17502711544529, 39.98401535462864], [-75.17531348430072, 39.98271320068983], [-75.17534449995452, 39.98251865708191], [-75.17591089978647, 39.98258244424712], [-75.17636790341315, 39.982651725063285], [-75.17693358704699, 39.982714092705194], [-75.17747775893855, 39.982784443953356], [-75.17797763943564, 39.98285408831894], [-75.17853597130828, 39.98292088740108], [-75.17905745190416, 39.9829913317469], [-75.17946574707625, 39.983050154652986], [-75.17995232556449, 39.98310918663231], [-75.1805289312639, 39.98318166056218], [-75.18096324902844, 39.98323956501493], [-75.18148182666485, 39.98330311440841], [-75.18157981012648, 39.983314721911796], [-75.18190794857104, 39.98178858800848], [-75.18202072179687, 39.98129725249097], [-75.18210853343237, 39.98089485570349], [-75.18221677147056, 39.9803749484491], [-75.18280668669908, 39.980443549243105], [-75.18328108278052, 39.98050734151104], [-75.1838393770739, 39.98058623736356], [-75.18442352402792, 39.98066996028547], [-75.18549861693499, 39.980805936179266], [-75.18632324019792, 39.98091621540035], [-75.18672279527853, 39.98096108151576], [-75.1864939906684, 39.98110939556068], [-75.18623250701748, 39.981279170993545], [-75.18597122600798, 39.981449127885256], [-75.18571017026257, 39.98161928746587], [-75.1854493693571, 39.98178967292306], [-75.1851888435736, 39.981960305435045], [-75.18492861790877, 39.9821312053846], [-75.18487731999933, 39.98216500358204], [-75.18466874549368, 39.982302423516984], [-75.1844097148958, 39.98247438972587], [-75.18415158027894, 39.9826471583875], [-75.18389421148204, 39.982820609466366], [-75.1836374690507, 39.982994620915996], [-75.18338122162059, 39.983169073572626], [-75.18312532973815, 39.98334384538718], [-75.1829298584804, 39.98347762517703], [-75.18286966544878, 39.98351881997285], [-75.18261408699321, 39.98369387432563], [-75.18235846421321, 39.98386888840281], [-75.18210265999751, 39.98404374020303], [-75.18184654284833, 39.98421831415624], [-75.1815899949032, 39.98439250580858], [-75.18130707172978, 39.98458472238066], [-75.18107717366271, 39.98474113960218], [-75.18082085622366, 39.98491554111198], [-75.18056437649658, 39.98508980059018], [-75.18030756813549, 39.985263763842426], [-75.18005025987519, 39.98543728286983], [-75.17979228179169, 39.985610205196984], [-75.17952311080867, 39.98578912390087], [-75.17927288452242, 39.985953153660745], [-75.17900988020565, 39.986121580118635], [-75.17874350295386, 39.98628671112583], [-75.17847269556879, 39.98644779135077], [-75.17819595734188, 39.986602755354134], [-75.17791338439226, 39.9867511691569], [-75.17763012508465, 39.986898806454555], [-75.1773466921687, 39.98704626259055], [-75.17706309246293, 39.987193543122466], [-75.17678267943901, 39.987338918507284], [-75.17541102470533, 39.9871570358007], [-75.17608954052868, 39.98680021919029]]]}}, {"id": "4560", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17534449995452, 39.98251865708191], [-75.17531348430072, 39.98271320068983], [-75.17499251879063, 39.98246110362299], [-75.1739088664198, 39.981669054259875], [-75.17397233359998, 39.9813635885929], [-75.17409937627401, 39.98077776542791], [-75.17420179283666, 39.98027882369307], [-75.17429160032444, 39.9798387647821], [-75.17439470402259, 39.97938126690058], [-75.17280097114764, 39.97916176707219], [-75.17281882273372, 39.979073762378334], [-75.17287129178672, 39.979052105398196], [-75.1729312809766, 39.979026468103854], [-75.17296297818956, 39.978985721589495], [-75.17299175908344, 39.97883147385479], [-75.17300344818571, 39.978768825817184], [-75.17299986141104, 39.97874957982806], [-75.1729945192562, 39.97872091307391], [-75.1729601967386, 39.97869318582734], [-75.17290251279427, 39.97867918888155], [-75.17296812708716, 39.97840817799981], [-75.17312775354583, 39.977751700238606], [-75.1734059516144, 39.977784690664876], [-75.17385580424572, 39.977838020656726], [-75.17470388655568, 39.97793852162858], [-75.17630085865154, 39.97814009841556], [-75.17710442702693, 39.97825301454284], [-75.17788888439762, 39.97835599818536], [-75.1786945223034, 39.97846900801477], [-75.17948283131925, 39.97855760662868], [-75.17986177265558, 39.978607358478946], [-75.18018551683247, 39.97865007774576], [-75.18031747658478, 39.97866654240448], [-75.18090701836356, 39.97874058888288], [-75.1814601891601, 39.9788146300702], [-75.18192679331867, 39.9788796738151], [-75.1825269998387, 39.978957744698484], [-75.18311587750986, 39.97903082691258], [-75.1835823634162, 39.97908348404279], [-75.18413796951701, 39.979160412047385], [-75.18470025398888, 39.979225395072916], [-75.18572863466908, 39.97936208930493], [-75.18731861787698, 39.97958197540658], [-75.18859028389431, 39.979755160969134], [-75.18832804244711, 39.97992425638832], [-75.18806581098923, 39.980093362271866], [-75.18780361458623, 39.98026249719947], [-75.18754147692974, 39.98043168512674], [-75.18727942181306, 39.98060094730851], [-75.18701747299545, 39.9807703059002], [-75.18672279527853, 39.98096108151576], [-75.18632324019792, 39.98091621540035], [-75.18549861693499, 39.980805936179266], [-75.18442352402792, 39.98066996028547], [-75.1838393770739, 39.98058623736356], [-75.18328108278052, 39.98050734151104], [-75.18280668669908, 39.980443549243105], [-75.18221677147056, 39.9803749484491], [-75.18210853343237, 39.98089485570349], [-75.18202072179687, 39.98129725249097], [-75.18190794857104, 39.98178858800848], [-75.18157981012648, 39.983314721911796], [-75.18148182666485, 39.98330311440841], [-75.18096324902844, 39.98323956501493], [-75.1805289312639, 39.98318166056218], [-75.17995232556449, 39.98310918663231], [-75.17946574707625, 39.983050154652986], [-75.17905745190416, 39.9829913317469], [-75.17853597130828, 39.98292088740108], [-75.17797763943564, 39.98285408831894], [-75.17747775893855, 39.982784443953356], [-75.17693358704699, 39.982714092705194], [-75.17636790341315, 39.982651725063285], [-75.17591089978647, 39.98258244424712], [-75.17534449995452, 39.98251865708191]]]}}, {"id": "4570", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15889700821441, 39.981915040873034], [-75.15725547387726, 39.98169482104445], [-75.15758279731992, 39.98022419451091], [-75.15791562606728, 39.97870886332697], [-75.15823962395879, 39.977281450598056], [-75.15822792908624, 39.97721710881816], [-75.15852699848782, 39.97585154506873], [-75.15878329590785, 39.97448373998994], [-75.1590577036878, 39.97320612890056], [-75.15923764108679, 39.97238526979513], [-75.15944196657915, 39.971468323386574], [-75.15970329166524, 39.97020311206611], [-75.15985341632611, 39.97022162902299], [-75.16056071990103, 39.970320887387665], [-75.16140453844403, 39.970429631873635], [-75.16298126830455, 39.97062420171791], [-75.16455516178287, 39.97081794335175], [-75.16531133153285, 39.97091144438554], [-75.16561818923037, 39.97119200249721], [-75.16577880145555, 39.97134049222068], [-75.16597289357621, 39.97160889671574], [-75.1662721085587, 39.972037642881524], [-75.16653967502313, 39.97238159742861], [-75.16722014897815, 39.97339870716462], [-75.16773195706557, 39.97432080820269], [-75.16805503233596, 39.97487099232693], [-75.1681453247881, 39.97503502447598], [-75.1682634491673, 39.97526019664399], [-75.16914490341505, 39.97516856344814], [-75.1704017109951, 39.97503938227979], [-75.17209233641867, 39.974855903415154], [-75.17198110519435, 39.97539808423971], [-75.17197112375173, 39.97546380426331], [-75.17191246289653, 39.97577235568639], [-75.17181450773097, 39.976165127688525], [-75.17173555442703, 39.97650674804233], [-75.17172809531297, 39.97653312881369], [-75.17167137307844, 39.9768393342176], [-75.17159569289858, 39.97718049013689], [-75.17152830953934, 39.97753886429667], [-75.17143377989801, 39.97791757072109], [-75.17135448846633, 39.97825182831359], [-75.17130780300391, 39.97850613459061], [-75.17129432139696, 39.9785792462262], [-75.17121429252416, 39.97895355524523], [-75.1706003791456, 39.9788799426667], [-75.17028853504735, 39.97884634054967], [-75.1699744619065, 39.978280100894736], [-75.16977694651204, 39.97795828070379], [-75.16967792544243, 39.97839775201961], [-75.16960310980627, 39.97875342002229], [-75.16773197320441, 39.97850834128129], [-75.1676280204409, 39.97898637261039], [-75.1675304717212, 39.97940596581951], [-75.16742031243012, 39.97992619061252], [-75.16663553032588, 39.97981529385303], [-75.16585070373783, 39.979715263217045], [-75.16551143276519, 39.981245061241], [-75.16472468800637, 39.98114600900777], [-75.16393580353895, 39.98103913365748], [-75.16315665839294, 39.980942851162624], [-75.16236008766865, 39.98083813786572], [-75.16205428012076, 39.98233074924151], [-75.16125560907027, 39.98222307186988], [-75.16047074927715, 39.98212965095867], [-75.15889700821441, 39.981915040873034]]]}}, {"id": "5020", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12897541590053, 39.990641759039676], [-75.13089889813841, 39.99089105165924], [-75.13143812359161, 39.99096152315822], [-75.13196035665526, 39.9910311963508], [-75.13242053001268, 39.99108443358905], [-75.13289367278115, 39.99114508728434], [-75.13334828398281, 39.991202409839445], [-75.13380448437566, 39.99126085613806], [-75.13433386723568, 39.99133132472353], [-75.13486914231545, 39.99140896839514], [-75.13546637554853, 39.99148048381726], [-75.13615995646202, 39.99156601616205], [-75.13734853427543, 39.9917304244261], [-75.13784387092095, 39.99178927860157], [-75.13835217472275, 39.99185285779908], [-75.13926139018056, 39.99197058202547], [-75.13970899094424, 39.99202958030164], [-75.14019800056143, 39.992087928038465], [-75.14086373856927, 39.992175219664745], [-75.14151207718533, 39.99225682117944], [-75.14217423972777, 39.99234441221609], [-75.14299899185374, 39.99245086645243], [-75.14383047084318, 39.99255141798455], [-75.1444670159411, 39.99263396927229], [-75.14511047460131, 39.99271674777694], [-75.14560313372758, 39.99278468699399], [-75.14608959689218, 39.99284960025018], [-75.14598324178084, 39.99339005147819], [-75.14590955203708, 39.99371661970736], [-75.14583808553304, 39.994038562044096], [-75.14574969569053, 39.99444058423645], [-75.14560509758087, 39.99510328931318], [-75.14542741148071, 39.99593018162321], [-75.14531276689256, 39.99639505500942], [-75.14523738035037, 39.9967583568742], [-75.14509795563065, 39.997426025465145], [-75.14476701066317, 39.998916789999626], [-75.14446339758591, 40.000328858228784], [-75.14417327834188, 40.000431689331485], [-75.14334643394318, 40.00074401544597], [-75.14379809293565, 40.00145585389514], [-75.14406451756503, 40.00191290723567], [-75.14412366322766, 40.00215922659642], [-75.1440384135838, 40.00223426474612], [-75.14374365394839, 40.00358293398834], [-75.14350127331724, 40.00355156369469], [-75.14329364986786, 40.00352469250323], [-75.1431399324757, 40.00428493094099], [-75.1433015921368, 40.00472237755151], [-75.14343826047002, 40.005072838644516], [-75.14309801736401, 40.00656380658327], [-75.14306343435318, 40.006722226308], [-75.14277427561711, 40.0080455913732], [-75.14277295786349, 40.00815499045495], [-75.14276347100015, 40.00826978854965], [-75.14243880955175, 40.00974402913456], [-75.14211264092272, 40.01123807168278], [-75.14178660755206, 40.01270991995661], [-75.14232926693204, 40.01279113891428], [-75.14279528639928, 40.012858788197796], [-75.1433203153046, 40.01292742387583], [-75.14647680294615, 40.013343114491526], [-75.14722189137788, 40.013432961843364], [-75.14722884497878, 40.01408140210885], [-75.14791438685396, 40.01392740449221], [-75.14795501083744, 40.0139786146205], [-75.1478365064141, 40.01450755380314], [-75.14983165309977, 40.01476596338327], [-75.15003962572906, 40.01481970269212], [-75.14993222382938, 40.01532671020396], [-75.14983979568106, 40.01567315281484], [-75.14977041330002, 40.01602280409584], [-75.14972718930441, 40.016216009188604], [-75.14958686700786, 40.01693362198721], [-75.1493475064601, 40.017958839322176], [-75.14908973201165, 40.0181106529181], [-75.1484680681646, 40.01840767197671], [-75.14714447643219, 40.01901145008065], [-75.14705879583687, 40.01909484972519], [-75.14638257068283, 40.01941384755003], [-75.14613788229155, 40.01938413204805], [-75.1453628611309, 40.019380817093726], [-75.14468710862543, 40.01941183457217], [-75.14409578705738, 40.019486694076015], [-75.14363335649988, 40.01956889301005], [-75.14326097466613, 40.01965955683399], [-75.1428848436295, 40.01977265716096], [-75.14246779103715, 40.01992131567765], [-75.14208211948895, 40.020076769123925], [-75.14126176526882, 40.020457827767785], [-75.13989326600749, 40.021143092921015], [-75.13962410577875, 40.02125554449826], [-75.13878989832307, 40.02167194894793], [-75.13680074130902, 40.02266481390887], [-75.13606727037968, 40.022993869695384], [-75.13568333923226, 40.02295388314234], [-75.13517364017464, 40.02288937907387], [-75.13351806873054, 40.02269961384838], [-75.13266657267638, 40.02260530897158], [-75.13165534349513, 40.022466545626095], [-75.13067747059611, 40.0223264212425], [-75.1288388007593, 40.02209552698992], [-75.12832997980297, 40.02203750959046], [-75.12799561695972, 40.021990003261664], [-75.1275883473653, 40.02193652409814], [-75.12766722191142, 40.021678075942006], [-75.12772254870809, 40.02143541478058], [-75.12782553628675, 40.02100974360595], [-75.12793752006728, 40.02058217569274], [-75.12805743325659, 40.02016776351229], [-75.12817272187972, 40.019745126505015], [-75.12828942424522, 40.01931224639612], [-75.12841230851205, 40.01888818420382], [-75.12717014834826, 40.0187202445289], [-75.12728008257253, 40.01855118772663], [-75.12773597041543, 40.01780744067364], [-75.12816782747261, 40.01727601049683], [-75.12958420585664, 40.01596204506945], [-75.12950279799507, 40.0158893945626], [-75.1295060820777, 40.01580432267141], [-75.12954449782806, 40.015628823804676], [-75.12969626827335, 40.015025138211094], [-75.12985744154966, 40.01458954235703], [-75.12991212376365, 40.01438165693674], [-75.12995568069938, 40.01421690737463], [-75.13032098038171, 40.012520430993625], [-75.13039457043838, 40.0122046367008], [-75.13058658979985, 40.01132621444333], [-75.13076933610816, 40.010429891484755], [-75.13122229503595, 40.00838998153134], [-75.13128895844574, 40.0082654424629], [-75.13157556350811, 40.006918297371676], [-75.13159329869447, 40.006777230208], [-75.13195017894888, 40.0051571594535], [-75.13165438461807, 40.00516218906765], [-75.1313120905648, 40.005165243621754], [-75.13096967892228, 40.0051647840814], [-75.13062734388893, 40.00516042473138], [-75.13028526365714, 40.00515189122062], [-75.12994327233797, 40.005141571084394], [-75.12960127164347, 40.005130493753214], [-75.1292592889243, 40.00511855803528], [-75.12891735401352, 40.005105659191635], [-75.12857548972254, 40.00509169232322], [-75.12823372347772, 40.00507655443872], [-75.12787293070507, 40.00505914287225], [-75.12755058678738, 40.005042349869555], [-75.12720920671373, 40.00502344244802], [-75.12686775392743, 40.005004480086335], [-75.1265262525044, 40.00498535521095], [-75.12618475093373, 40.004965874307906], [-75.12584329110216, 40.004945832900546], [-75.12550191799478, 40.00492503739572], [-75.12516067340198, 40.00490328601852], [-75.12481960245576, 40.004880381575894], [-75.12447874922599, 40.0048561241479], [-75.12413815881776, 40.004830317442874], [-75.12394932729268, 40.0048150263638], [-75.12416377417915, 40.00383050497931], [-75.12441189333515, 40.002635747370185], [-75.1247327042775, 40.001125212840236], [-75.12482584559972, 40.00073781277301], [-75.12495304812299, 40.000118295958615], [-75.1250593976361, 39.99962937005506], [-75.1240010392231, 39.99949471531793], [-75.12286983433349, 39.999348225421684], [-75.12189645061733, 39.99922197325878], [-75.12141485963465, 39.99916050071101], [-75.12093406713585, 39.99909845694048], [-75.12043816082301, 39.99903124892896], [-75.11995841616955, 39.99897607104749], [-75.11948064078999, 39.99891846474961], [-75.11899483260045, 39.99885363710453], [-75.1181427263644, 39.99874006892576], [-75.11760779479803, 39.998672192592046], [-75.11705540656078, 39.99860245187495], [-75.11713718954385, 39.998204954618366], [-75.11720552832361, 39.99784824220488], [-75.11726460987974, 39.99759085143173], [-75.117284481552, 39.99749552058664], [-75.11738376209497, 39.997007889103365], [-75.11687527895985, 39.99694403320292], [-75.11641424499777, 39.99688234038955], [-75.11594728557785, 39.996823352482735], [-75.11544873273199, 39.996754717356865], [-75.11420376026825, 39.99660020163007], [-75.11378290403151, 39.99654566844975], [-75.11349353916128, 39.996509398474814], [-75.11335627413635, 39.99651837529572], [-75.11399780861547, 39.99614675119862], [-75.11443934320606, 39.99590407882544], [-75.11488815880926, 39.995651207425055], [-75.11577971940605, 39.99516863261082], [-75.11804388596643, 39.99392739215795], [-75.11827306308207, 39.99380494945997], [-75.11969525744287, 39.9930176547012], [-75.12031000021946, 39.99267372653925], [-75.12155268191938, 39.99200126868043], [-75.1225598379027, 39.99142904589025], [-75.12368779210668, 39.9908370053132], [-75.12443263724062, 39.99041437725906], [-75.12467941648082, 39.990280061064965], [-75.1254917782044, 39.98983790470489], [-75.12583337764181, 39.99015080201797], [-75.12594819181096, 39.990231008067155], [-75.12703151939232, 39.99038716308235], [-75.12897541590053, 39.990641759039676]]]}}, {"id": "5160", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1392220181052, 39.96254041128918], [-75.13929679599369, 39.96255801053774], [-75.13960221591503, 39.9626303517114], [-75.13978578774208, 39.96267383177339], [-75.14006138678764, 39.96273790213371], [-75.13975490177026, 39.963692321574484], [-75.13993197133192, 39.963777785249036], [-75.1407064227292, 39.964139708528414], [-75.14163139510946, 39.96457373788679], [-75.14252966634245, 39.9649864598312], [-75.14337752362562, 39.96538087912413], [-75.14400254301472, 39.96567103285405], [-75.14458633097023, 39.9659454790478], [-75.14490607326032, 39.96609660893821], [-75.14575782885368, 39.96649392862541], [-75.1458913161705, 39.96654816429047], [-75.14650478063565, 39.966842825167525], [-75.14714784176866, 39.96712784996928], [-75.14791049722622, 39.96732631826535], [-75.14869023776352, 39.9675176776505], [-75.14955850264346, 39.967733564369766], [-75.15051564764148, 39.96797237611294], [-75.15097355673184, 39.96807896736265], [-75.15146301021215, 39.96817620675212], [-75.15200070091771, 39.96829918091589], [-75.15301923457218, 39.968550282609826], [-75.1529071228886, 39.96906713671027], [-75.1527835009234, 39.96962440941302], [-75.15269159270923, 39.97005595174743], [-75.15257454601797, 39.970571700083724], [-75.15245012383737, 39.97114516194853], [-75.15218836742413, 39.972319593119735], [-75.15202353133493, 39.97310628406676], [-75.15191669061984, 39.973589833498096], [-75.15161706971416, 39.97496055307036], [-75.15094863392703, 39.97487344024391], [-75.150231571073, 39.97478246830948], [-75.15004094823418, 39.97475828200775], [-75.14955201707166, 39.97469444844773], [-75.14905919608358, 39.97462924336764], [-75.14875280338978, 39.97605319690573], [-75.14844892599797, 39.977446981252434], [-75.14811166218786, 39.978998965177915], [-75.14732538418636, 39.9788969009252], [-75.14658498086375, 39.978801493421564], [-75.14621504881288, 39.978756261424145], [-75.14579264210776, 39.97870283199536], [-75.14501101215193, 39.97859859204255], [-75.14464699302899, 39.978549148043435], [-75.14405950698142, 39.97847137322641], [-75.14375630225537, 39.97843254911381], [-75.14314046866812, 39.97836739419738], [-75.14303334564039, 39.97900298334407], [-75.14286771936777, 39.97985261552813], [-75.14210829574333, 39.97976240195687], [-75.14193713418241, 39.979740985557754], [-75.1415112522445, 39.979681680500754], [-75.1410218897316, 39.979618813283], [-75.1408216551943, 39.98052898711954], [-75.1406869260253, 39.981123617196054], [-75.14037075117886, 39.982602963060174], [-75.13986861741796, 39.98253743129194], [-75.13936497646219, 39.98247435434834], [-75.13891806064221, 39.98241335056541], [-75.13881084329309, 39.98240067192492], [-75.13813899339736, 39.98231364961067], [-75.13744398243685, 39.982224063368434], [-75.1368496275253, 39.98214824296992], [-75.13631469225547, 39.982077524588775], [-75.13578148349205, 39.98201048225343], [-75.13487065991411, 39.981888470214855], [-75.13392340603801, 39.981770568866075], [-75.13341080943681, 39.981699372023634], [-75.13288158399425, 39.98163265288409], [-75.13288008300748, 39.98154686361165], [-75.13319065263426, 39.98013574784717], [-75.13301724024231, 39.980120591075384], [-75.13265334485587, 39.98033873970294], [-75.13183190731813, 39.980765502527944], [-75.13136655491007, 39.981010901517074], [-75.13093007933422, 39.98123462399555], [-75.13033830584416, 39.98155001773191], [-75.12973559600937, 39.981861175408646], [-75.12933523561645, 39.982070909171554], [-75.12914472245183, 39.98217056132641], [-75.12898610754681, 39.98225344555778], [-75.12855382281006, 39.982481026760404], [-75.12797870050113, 39.98278676164064], [-75.12739883724821, 39.98308170284578], [-75.12682245317455, 39.983386960925024], [-75.12622812377951, 39.98369641651944], [-75.1250655663543, 39.98430498726714], [-75.12465597526973, 39.98452791773668], [-75.12392849211, 39.98490340306844], [-75.1215107497833, 39.98616688936588], [-75.1212126555554, 39.98582197636218], [-75.12090664203696, 39.985481406064345], [-75.12025206106696, 39.984756703332486], [-75.11969085296037, 39.98411339915456], [-75.11919036295231, 39.983550142775705], [-75.1191358701804, 39.98348600088939], [-75.11852341721955, 39.98282667399838], [-75.11771344779177, 39.981893242481284], [-75.11735514148285, 39.981482857133244], [-75.11769734499407, 39.98090581875275], [-75.11832452806911, 39.97951745690433], [-75.11861138716736, 39.978880482777285], [-75.1197642927471, 39.97637035957075], [-75.11997095243832, 39.97591243490792], [-75.12094594407647, 39.975361061880854], [-75.12104554597718, 39.97527173259632], [-75.12161763813313, 39.97470846870026], [-75.12202941319707, 39.97431331901911], [-75.12259233629173, 39.97374858009471], [-75.12211704606422, 39.973529658925685], [-75.12176289432448, 39.97335416747199], [-75.12127206701985, 39.973388574123305], [-75.12068321218055, 39.97341756004273], [-75.12040957292677, 39.973387269125716], [-75.1202414439362, 39.97332468438928], [-75.12008687739578, 39.97324372289487], [-75.11961884615357, 39.97295144071109], [-75.12023164280738, 39.972388543878665], [-75.12121029100315, 39.971489560103905], [-75.1199014776589, 39.97062064519618], [-75.11757972389783, 39.9695968758442], [-75.1140318084597, 39.9680322855066], [-75.11441255455537, 39.96786656261048], [-75.11538436299533, 39.967443565655], [-75.11603666268508, 39.96715963307793], [-75.11686352968388, 39.96679970705826], [-75.11811738980097, 39.96625389485373], [-75.11966802450652, 39.965568062352844], [-75.12163174351726, 39.96461663435518], [-75.12402565266153, 39.96343911913137], [-75.12777482013738, 39.96152226006703], [-75.12908790808855, 39.96070914120397], [-75.13570254442688, 39.962047993115426], [-75.1362965206531, 39.96245264193541], [-75.13675691661963, 39.96276757101526], [-75.13717083928285, 39.962820848330665], [-75.13808290746044, 39.96293764490021], [-75.13827549450221, 39.96231762501555], [-75.1392220181052, 39.96254041128918]]]}}, {"id": "5170", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13215673288484, 39.99571908852154], [-75.1319487531092, 39.995584771470156], [-75.13151375949263, 39.995312789866986], [-75.13108811546374, 39.995035612799455], [-75.1306287246693, 39.9947099015428], [-75.13016923992892, 39.99438670726852], [-75.12949697864121, 39.993869232807484], [-75.12928045888196, 39.993699377473], [-75.12888944298902, 39.99337210329976], [-75.12847508975587, 39.992960955217434], [-75.12754649303128, 39.992086888554475], [-75.12711132039227, 39.991717809559425], [-75.1268304877983, 39.99140473196538], [-75.12671073514534, 39.991301669390836], [-75.12624403982602, 39.99086840531347], [-75.12619132496967, 39.99081410638479], [-75.1257966876318, 39.99046143190336], [-75.12575053444866, 39.99038664295684], [-75.12581548092545, 39.990321253648226], [-75.12594819181096, 39.990231008067155], [-75.12703151939232, 39.99038716308235], [-75.12897541590053, 39.990641759039676], [-75.13089889813841, 39.99089105165924], [-75.13143812359161, 39.99096152315822], [-75.13196035665526, 39.9910311963508], [-75.13242053001268, 39.99108443358905], [-75.13289367278115, 39.99114508728434], [-75.13334828398281, 39.991202409839445], [-75.13380448437566, 39.99126085613806], [-75.13433386723568, 39.99133132472353], [-75.13486914231545, 39.99140896839514], [-75.13546637554853, 39.99148048381726], [-75.13615995646202, 39.99156601616205], [-75.13734853427543, 39.9917304244261], [-75.13784387092095, 39.99178927860157], [-75.13835217472275, 39.99185285779908], [-75.13926139018056, 39.99197058202547], [-75.13970899094424, 39.99202958030164], [-75.14019800056143, 39.992087928038465], [-75.14086373856927, 39.992175219664745], [-75.14151207718533, 39.99225682117944], [-75.14217423972777, 39.99234441221609], [-75.14299899185374, 39.99245086645243], [-75.14383047084318, 39.99255141798455], [-75.1444670159411, 39.99263396927229], [-75.14511047460131, 39.99271674777694], [-75.14560313372758, 39.99278468699399], [-75.14608959689218, 39.99284960025018], [-75.14598324178084, 39.99339005147819], [-75.14590955203708, 39.99371661970736], [-75.14583808553304, 39.994038562044096], [-75.14574969569053, 39.99444058423645], [-75.14523985717346, 39.99437003326841], [-75.1449422627162, 39.9943335253197], [-75.14475929946508, 39.99431108028383], [-75.14412330779642, 39.994226694654955], [-75.14347679145469, 39.994139667054554], [-75.14183154987668, 39.99393097316631], [-75.14149666955511, 39.99542308912688], [-75.14083763348894, 39.99533644892229], [-75.14019094100959, 39.995252235382324], [-75.13952082967248, 39.99516588896113], [-75.13919971671324, 39.996662558158164], [-75.13869442564875, 39.99659587328851], [-75.13827020804773, 39.99653846065829], [-75.13780878030616, 39.99648020057785], [-75.1373500685577, 39.99642246537034], [-75.13684622551224, 39.99635321660288], [-75.13634700247911, 39.99628984635562], [-75.13551012066759, 39.99618002974883], [-75.13499336970392, 39.996118024840605], [-75.13444492899423, 39.99605094896756], [-75.13389642109973, 39.995968736218344], [-75.13335735075286, 39.995906073736414], [-75.13283321527076, 39.99583834307155], [-75.13236737143946, 39.995777072436475], [-75.13215673288484, 39.99571908852154]]]}}, {"id": "5180", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17312775354583, 39.977751700238606], [-75.17296812708716, 39.97840817799981], [-75.17290251279427, 39.97867918888155], [-75.1729601967386, 39.97869318582734], [-75.1729945192562, 39.97872091307391], [-75.17299986141104, 39.97874957982806], [-75.17300344818571, 39.978768825817184], [-75.17299175908344, 39.97883147385479], [-75.17296297818956, 39.978985721589495], [-75.1729312809766, 39.979026468103854], [-75.17287129178672, 39.979052105398196], [-75.17281882273372, 39.979073762378334], [-75.17280097114764, 39.97916176707219], [-75.17121429252416, 39.97895355524523], [-75.1706003791456, 39.9788799426667], [-75.17028853504735, 39.97884634054967], [-75.1699744619065, 39.978280100894736], [-75.16977694651204, 39.97795828070379], [-75.16967792544243, 39.97839775201961], [-75.16960310980627, 39.97875342002229], [-75.16773197320441, 39.97850834128129], [-75.1676280204409, 39.97898637261039], [-75.1675304717212, 39.97940596581951], [-75.16742031243012, 39.97992619061252], [-75.16663553032588, 39.97981529385303], [-75.16585070373783, 39.979715263217045], [-75.16551143276519, 39.981245061241], [-75.16472468800637, 39.98114600900777], [-75.16393580353895, 39.98103913365748], [-75.16315665839294, 39.980942851162624], [-75.16236008766865, 39.98083813786572], [-75.16205428012076, 39.98233074924151], [-75.16125560907027, 39.98222307186988], [-75.16047074927715, 39.98212965095867], [-75.15889700821441, 39.981915040873034], [-75.15725547387726, 39.98169482104445], [-75.15758279731992, 39.98022419451091], [-75.15791562606728, 39.97870886332697], [-75.15823962395879, 39.977281450598056], [-75.15822792908624, 39.97721710881816], [-75.15852699848782, 39.97585154506873], [-75.15878329590785, 39.97448373998994], [-75.1590577036878, 39.97320612890056], [-75.15923764108679, 39.97238526979513], [-75.15944196657915, 39.971468323386574], [-75.15970329166524, 39.97020311206611], [-75.15985341632611, 39.97022162902299], [-75.16056071990103, 39.970320887387665], [-75.16140453844403, 39.970429631873635], [-75.16298126830455, 39.97062420171791], [-75.16455516178287, 39.97081794335175], [-75.16531133153285, 39.97091144438554], [-75.16561818923037, 39.97119200249721], [-75.16577880145555, 39.97134049222068], [-75.16597289357621, 39.97160889671574], [-75.1662721085587, 39.972037642881524], [-75.16653967502313, 39.97238159742861], [-75.16722014897815, 39.97339870716462], [-75.16773195706557, 39.97432080820269], [-75.16805503233596, 39.97487099232693], [-75.1681453247881, 39.97503502447598], [-75.1682634491673, 39.97526019664399], [-75.16914490341505, 39.97516856344814], [-75.1704017109951, 39.97503938227979], [-75.17209233641867, 39.974855903415154], [-75.17378624577721, 39.97467888698817], [-75.17545671569454, 39.97450466083824], [-75.17593658491718, 39.97445362377925], [-75.17641964846224, 39.97440418538758], [-75.1771235341516, 39.974328234747865], [-75.17785267920566, 39.97424893652467], [-75.17786387562035, 39.97383345443092], [-75.17786294614987, 39.97248103137002], [-75.17753873030072, 39.97243855647388], [-75.17780650810144, 39.97120896950443], [-75.1780566875297, 39.97011372941456], [-75.17860640189194, 39.970181658250176], [-75.17965161686956, 39.970310272091965], [-75.17975488906876, 39.96981497856103], [-75.17977598962271, 39.96969353989304], [-75.17983743980078, 39.96944775366464], [-75.17991460237576, 39.969090943561284], [-75.18006282011629, 39.968416647134006], [-75.18016368176961, 39.967794395545106], [-75.17968478300124, 39.96741740767767], [-75.18112177540891, 39.96746359961289], [-75.18559269656258, 39.96690811198944], [-75.18706908333387, 39.967747703382884], [-75.18900330738798, 39.96863994646185], [-75.19053330321391, 39.969523141662705], [-75.19117087980821, 39.970174153296554], [-75.19156997895064, 39.971541539557435], [-75.19185603211622, 39.97273659554681], [-75.19251524639479, 39.97427958810763], [-75.19267610460359, 39.97455682874583], [-75.19306819929173, 39.97522587002582], [-75.19316767010415, 39.97534404688133], [-75.19395195788799, 39.976275795675406], [-75.19370746636712, 39.976436929608965], [-75.19344742109921, 39.976607983514036], [-75.19318694633098, 39.976778651568935], [-75.19312353237977, 39.976820057225694], [-75.19292609306041, 39.976948979056516], [-75.19266491438854, 39.97711901761388], [-75.19240346936863, 39.97728881630829], [-75.19214180989704, 39.977458427652095], [-75.19187999860506, 39.977627898991315], [-75.191745662721, 39.9777147798631], [-75.19161808969504, 39.977797283791716], [-75.19135613747095, 39.97796663281875], [-75.19109419988266, 39.978135993315746], [-75.19083233340443, 39.97830542060259], [-75.19057059367931, 39.978474960971226], [-75.19030903969116, 39.97864466529346], [-75.18990079379184, 39.97890907500015], [-75.18963886595216, 39.979078446966966], [-75.18937682579183, 39.97924771854937], [-75.18907977150573, 39.97943944702036], [-75.18885251157113, 39.97958605385964], [-75.18859028389431, 39.979755160969134], [-75.18731861787698, 39.97958197540658], [-75.18572863466908, 39.97936208930493], [-75.18470025398888, 39.979225395072916], [-75.18413796951701, 39.979160412047385], [-75.1835823634162, 39.97908348404279], [-75.18311587750986, 39.97903082691258], [-75.1825269998387, 39.978957744698484], [-75.18192679331867, 39.9788796738151], [-75.1814601891601, 39.9788146300702], [-75.18090701836356, 39.97874058888288], [-75.18031747658478, 39.97866654240448], [-75.18018551683247, 39.97865007774576], [-75.17986177265558, 39.978607358478946], [-75.17948283131925, 39.97855760662868], [-75.1786945223034, 39.97846900801477], [-75.17788888439762, 39.97835599818536], [-75.17710442702693, 39.97825301454284], [-75.17630085865154, 39.97814009841556], [-75.17470388655568, 39.97793852162858], [-75.17385580424572, 39.977838020656726], [-75.1734059516144, 39.977784690664876], [-75.17312775354583, 39.977751700238606]]]}}, {"id": "5200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1317770865436, 39.979365787653045], [-75.13092075739304, 39.978864734862874], [-75.13044944732988, 39.97859016069931], [-75.12995247667382, 39.97830328711981], [-75.1295103782287, 39.97804816404525], [-75.12862944990769, 39.97753465612431], [-75.12756969183124, 39.97691957973021], [-75.12740201520647, 39.97684668230214], [-75.12706900054707, 39.97662358518799], [-75.12696089271223, 39.97656331416455], [-75.12654230401856, 39.97632123087441], [-75.12613639160224, 39.976083143560096], [-75.12529987772899, 39.9755927888059], [-75.12520279899326, 39.975559228786324], [-75.1247108596752, 39.97524935772895], [-75.12432109501148, 39.97500405097309], [-75.12384343234258, 39.97469552264224], [-75.12339160083148, 39.97440444082287], [-75.12268830417882, 39.97395572798937], [-75.12259233629173, 39.97374858009471], [-75.12211704606422, 39.973529658925685], [-75.12176289432448, 39.97335416747199], [-75.12127206701985, 39.973388574123305], [-75.12068321218055, 39.97341756004273], [-75.12040957292677, 39.973387269125716], [-75.1202414439362, 39.97332468438928], [-75.12008687739578, 39.97324372289487], [-75.11961884615357, 39.97295144071109], [-75.12023164280738, 39.972388543878665], [-75.12121029100315, 39.971489560103905], [-75.1199014776589, 39.97062064519618], [-75.11757972389783, 39.9695968758442], [-75.1140318084597, 39.9680322855066], [-75.11441255455537, 39.96786656261048], [-75.11538436299533, 39.967443565655], [-75.11603666268508, 39.96715963307793], [-75.11686352968388, 39.96679970705826], [-75.11811738980097, 39.96625389485373], [-75.11966802450652, 39.965568062352844], [-75.12163174351726, 39.96461663435518], [-75.12402565266153, 39.96343911913137], [-75.12777482013738, 39.96152226006703], [-75.12908790808855, 39.96070914120397], [-75.13570254442688, 39.962047993115426], [-75.1362965206531, 39.96245264193541], [-75.13675691661963, 39.96276757101526], [-75.13717083928285, 39.962820848330665], [-75.13808290746044, 39.96293764490021], [-75.13778453671829, 39.963914618673314], [-75.13763755143225, 39.96427858977453], [-75.13754519517768, 39.96446130852313], [-75.13749760507172, 39.96463045445626], [-75.13748253512068, 39.964726420860195], [-75.13744872781277, 39.96498515226201], [-75.13768154916389, 39.96511329991819], [-75.13803308183687, 39.96551185818478], [-75.13828776449922, 39.96584383441974], [-75.1384392832969, 39.96604133674185], [-75.13873359398303, 39.966484864056554], [-75.13882750245008, 39.966596308900456], [-75.13987300889868, 39.96798705856361], [-75.14046292197838, 39.969071045766974], [-75.14055140212515, 39.96923559171817], [-75.14066667180037, 39.969653554896865], [-75.13957962184396, 39.96951603226673], [-75.13899880115336, 39.96940742479897], [-75.13849829186547, 39.969312315896914], [-75.13800604812953, 39.96921936347586], [-75.13776451243866, 39.96916947868097], [-75.13725352039627, 39.96907578530479], [-75.1367915050625, 39.968990817810344], [-75.1362246157766, 39.96888280351075], [-75.1357752336454, 39.97033986957758], [-75.13530853850415, 39.971860497177055], [-75.13493090050034, 39.97306124205988], [-75.13455645464565, 39.97425754188351], [-75.13434349740862, 39.97491896587055], [-75.13433393411295, 39.974994169051676], [-75.13421921679632, 39.97536559378394], [-75.13400419631301, 39.97633249510136], [-75.13383501136663, 39.977149053608564], [-75.13351038338044, 39.978643366084896], [-75.13319065263426, 39.98013574784717], [-75.13301724024231, 39.980120591075384], [-75.1317770865436, 39.979365787653045]]]}}, {"id": "5210", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12703151939232, 39.99038716308235], [-75.12594819181096, 39.990231008067155], [-75.12583337764181, 39.99015080201797], [-75.1254917782044, 39.98983790470489], [-75.12437568899065, 39.98882344897619], [-75.12338798505213, 39.987917440030564], [-75.12291451967475, 39.98746386304235], [-75.12234155204517, 39.98703199039585], [-75.1215107497833, 39.98616688936588], [-75.12392849211, 39.98490340306844], [-75.12465597526973, 39.98452791773668], [-75.1250655663543, 39.98430498726714], [-75.12622812377951, 39.98369641651944], [-75.12682245317455, 39.983386960925024], [-75.12739883724821, 39.98308170284578], [-75.12797870050113, 39.98278676164064], [-75.12855382281006, 39.982481026760404], [-75.12898610754681, 39.98225344555778], [-75.12914472245183, 39.98217056132641], [-75.12933523561645, 39.982070909171554], [-75.12973559600937, 39.981861175408646], [-75.13033830584416, 39.98155001773191], [-75.13093007933422, 39.98123462399555], [-75.13136655491007, 39.981010901517074], [-75.13183190731813, 39.980765502527944], [-75.13265334485587, 39.98033873970294], [-75.13301724024231, 39.980120591075384], [-75.13319065263426, 39.98013574784717], [-75.13288008300748, 39.98154686361165], [-75.13288158399425, 39.98163265288409], [-75.13254593170814, 39.98316792938105], [-75.13220854567699, 39.98474259357524], [-75.13190822559206, 39.986142442348005], [-75.13190738930429, 39.986307698294866], [-75.131831998645, 39.98652010620887], [-75.13167689556849, 39.98723090960091], [-75.13155894833066, 39.9878004184], [-75.13124088927039, 39.98929709263805], [-75.13089889813841, 39.99089105165924], [-75.12897541590053, 39.990641759039676], [-75.12703151939232, 39.99038716308235]]]}}, {"id": "5250", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1494332507939, 39.98496243191052], [-75.14950398760712, 39.98463024833647], [-75.14968633180648, 39.98380871779169], [-75.15001314411744, 39.98231620624612], [-75.1494428528043, 39.982242079566795], [-75.14843839356008, 39.98211158646729], [-75.14794623020516, 39.982050274322205], [-75.14745513601414, 39.981987551670095], [-75.14778251867806, 39.980496006284795], [-75.14811166218786, 39.978998965177915], [-75.14844892599797, 39.977446981252434], [-75.14875280338978, 39.97605319690573], [-75.14905919608358, 39.97462924336764], [-75.14955201707166, 39.97469444844773], [-75.15004094823418, 39.97475828200775], [-75.150231571073, 39.97478246830948], [-75.15094863392703, 39.97487344024391], [-75.15161706971416, 39.97496055307036], [-75.15191669061984, 39.973589833498096], [-75.15202353133493, 39.97310628406676], [-75.15218836742413, 39.972319593119735], [-75.15245012383737, 39.97114516194853], [-75.15257454601797, 39.970571700083724], [-75.15415068105897, 39.97077954215101], [-75.1557193009253, 39.97098284413163], [-75.15728042119237, 39.971192141394845], [-75.15861164455573, 39.971348995116934], [-75.15944196657915, 39.971468323386574], [-75.15923764108679, 39.97238526979513], [-75.1590577036878, 39.97320612890056], [-75.15878329590785, 39.97448373998994], [-75.15852699848782, 39.97585154506873], [-75.15822792908624, 39.97721710881816], [-75.15823962395879, 39.977281450598056], [-75.15791562606728, 39.97870886332697], [-75.15758279731992, 39.98022419451091], [-75.15725547387726, 39.98169482104445], [-75.15691577823603, 39.98322097007837], [-75.1566139097415, 39.984700031799335], [-75.15627637149069, 39.986284634879105], [-75.15540774318183, 39.98618087615382], [-75.1549397816308, 39.9861194562513], [-75.15406310987017, 39.986004580541646], [-75.15327633795096, 39.98590065219484], [-75.15248570735123, 39.98580294631227], [-75.15170235540398, 39.98570171004166], [-75.15091477997109, 39.985598532846595], [-75.14947287810017, 39.98541044376598], [-75.1493426008124, 39.98539344850191], [-75.1494332507939, 39.98496243191052]]]}}, {"id": "5260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1240010392231, 39.99949471531793], [-75.12286983433349, 39.999348225421684], [-75.12189645061733, 39.99922197325878], [-75.12141485963465, 39.99916050071101], [-75.12093406713585, 39.99909845694048], [-75.12043816082301, 39.99903124892896], [-75.11995841616955, 39.99897607104749], [-75.11948064078999, 39.99891846474961], [-75.11899483260045, 39.99885363710453], [-75.1181427263644, 39.99874006892576], [-75.11760779479803, 39.998672192592046], [-75.11705540656078, 39.99860245187495], [-75.11713718954385, 39.998204954618366], [-75.11720552832361, 39.99784824220488], [-75.11726460987974, 39.99759085143173], [-75.117284481552, 39.99749552058664], [-75.11738376209497, 39.997007889103365], [-75.11687527895985, 39.99694403320292], [-75.11641424499777, 39.99688234038955], [-75.11594728557785, 39.996823352482735], [-75.11544873273199, 39.996754717356865], [-75.11420376026825, 39.99660020163007], [-75.11378290403151, 39.99654566844975], [-75.11349353916128, 39.996509398474814], [-75.11335627413635, 39.99651837529572], [-75.11399780861547, 39.99614675119862], [-75.11443934320606, 39.99590407882544], [-75.11488815880926, 39.995651207425055], [-75.11577971940605, 39.99516863261082], [-75.11804388596643, 39.99392739215795], [-75.11827306308207, 39.99380494945997], [-75.11969525744287, 39.9930176547012], [-75.12031000021946, 39.99267372653925], [-75.12155268191938, 39.99200126868043], [-75.1225598379027, 39.99142904589025], [-75.12368779210668, 39.9908370053132], [-75.12443263724062, 39.99041437725906], [-75.12467941648082, 39.990280061064965], [-75.1254917782044, 39.98983790470489], [-75.12583337764181, 39.99015080201797], [-75.12594819181096, 39.990231008067155], [-75.12581548092545, 39.990321253648226], [-75.12575053444866, 39.99038664295684], [-75.1257966876318, 39.99046143190336], [-75.12619132496967, 39.99081410638479], [-75.12624403982602, 39.99086840531347], [-75.12671073514534, 39.991301669390836], [-75.1268304877983, 39.99140473196538], [-75.12711132039227, 39.991717809559425], [-75.12754649303128, 39.992086888554475], [-75.12847508975587, 39.992960955217434], [-75.12888944298902, 39.99337210329976], [-75.12928045888196, 39.993699377473], [-75.12949697864121, 39.993869232807484], [-75.13016923992892, 39.99438670726852], [-75.1306287246693, 39.9947099015428], [-75.13108811546374, 39.995035612799455], [-75.13151375949263, 39.995312789866986], [-75.1319487531092, 39.995584771470156], [-75.13215673288484, 39.99571908852154], [-75.13236737143946, 39.995777072436475], [-75.13283321527076, 39.99583834307155], [-75.13335735075286, 39.995906073736414], [-75.13389642109973, 39.995968736218344], [-75.13379804534607, 39.99650859349995], [-75.13372632073936, 39.99681997186189], [-75.13357826719061, 39.99746271908161], [-75.133433859375, 39.99813610118974], [-75.13335178223137, 39.998538430656275], [-75.13323677148799, 39.99905883822483], [-75.13270269672653, 39.99898682724332], [-75.13217235333043, 39.99891450960239], [-75.13125011731422, 39.99880785005577], [-75.13032139808102, 39.998678693262704], [-75.12980340464517, 39.99861470247278], [-75.12926055898585, 39.99854041987689], [-75.12862908793683, 39.99846025629529], [-75.12733742969829, 39.9982922813818], [-75.12641257905781, 39.9981699522401], [-75.12610139771022, 39.99813748479193], [-75.1253813505078, 39.99804499865212], [-75.1250593976361, 39.99962937005506], [-75.1240010392231, 39.99949471531793]]]}}, {"id": "5300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1212126555554, 39.98582197636218], [-75.12090664203696, 39.985481406064345], [-75.12025206106696, 39.984756703332486], [-75.11969085296037, 39.98411339915456], [-75.11919036295231, 39.983550142775705], [-75.1191358701804, 39.98348600088939], [-75.11852341721955, 39.98282667399838], [-75.11771344779177, 39.981893242481284], [-75.11735514148285, 39.981482857133244], [-75.11769734499407, 39.98090581875275], [-75.11832452806911, 39.97951745690433], [-75.11861138716736, 39.978880482777285], [-75.1197642927471, 39.97637035957075], [-75.11997095243832, 39.97591243490792], [-75.12094594407647, 39.975361061880854], [-75.12104554597718, 39.97527173259632], [-75.12161763813313, 39.97470846870026], [-75.12202941319707, 39.97431331901911], [-75.12259233629173, 39.97374858009471], [-75.12268830417882, 39.97395572798937], [-75.12339160083148, 39.97440444082287], [-75.12384343234258, 39.97469552264224], [-75.12432109501148, 39.97500405097309], [-75.1247108596752, 39.97524935772895], [-75.12520279899326, 39.975559228786324], [-75.12529987772899, 39.9755927888059], [-75.12613639160224, 39.976083143560096], [-75.12654230401856, 39.97632123087441], [-75.12696089271223, 39.97656331416455], [-75.12706900054707, 39.97662358518799], [-75.12740201520647, 39.97684668230214], [-75.12756969183124, 39.97691957973021], [-75.12862944990769, 39.97753465612431], [-75.1295103782287, 39.97804816404525], [-75.12995247667382, 39.97830328711981], [-75.13044944732988, 39.97859016069931], [-75.13092075739304, 39.978864734862874], [-75.1317770865436, 39.979365787653045], [-75.13301724024231, 39.980120591075384], [-75.13265334485587, 39.98033873970294], [-75.13183190731813, 39.980765502527944], [-75.13136655491007, 39.981010901517074], [-75.13093007933422, 39.98123462399555], [-75.13033830584416, 39.98155001773191], [-75.12973559600937, 39.981861175408646], [-75.12933523561645, 39.982070909171554], [-75.12914472245183, 39.98217056132641], [-75.12898610754681, 39.98225344555778], [-75.12855382281006, 39.982481026760404], [-75.12797870050113, 39.98278676164064], [-75.12739883724821, 39.98308170284578], [-75.12682245317455, 39.983386960925024], [-75.12622812377951, 39.98369641651944], [-75.1250655663543, 39.98430498726714], [-75.12465597526973, 39.98452791773668], [-75.12392849211, 39.98490340306844], [-75.1215107497833, 39.98616688936588], [-75.1212126555554, 39.98582197636218]]]}}, {"id": "5320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14560313372758, 39.99278468699399], [-75.14511047460131, 39.99271674777694], [-75.1444670159411, 39.99263396927229], [-75.14383047084318, 39.99255141798455], [-75.14299899185374, 39.99245086645243], [-75.14217423972777, 39.99234441221609], [-75.14252186137165, 39.99075562891122], [-75.14284789400755, 39.98925827216778], [-75.14316972920646, 39.9877677843116], [-75.14350127645031, 39.986276791042265], [-75.14364231069816, 39.985634051569576], [-75.14384520940524, 39.98468401151407], [-75.14415497059565, 39.984725377629076], [-75.14438113099148, 39.98475543195791], [-75.14465565058934, 39.98479191317823], [-75.14544523910484, 39.98489682018643], [-75.14610343594677, 39.98497955532438], [-75.14678348138041, 39.985064706806504], [-75.14727487413454, 39.98512521849173], [-75.1477670295492, 39.98519167766347], [-75.14825923418245, 39.985254031672355], [-75.14855043158798, 39.98529316113752], [-75.1493426008124, 39.98539344850191], [-75.14947287810017, 39.98541044376598], [-75.15091477997109, 39.985598532846595], [-75.15170235540398, 39.98570171004166], [-75.15248570735123, 39.98580294631227], [-75.15327633795096, 39.98590065219484], [-75.15406310987017, 39.986004580541646], [-75.1549397816308, 39.9861194562513], [-75.15540774318183, 39.98618087615382], [-75.15627637149069, 39.986284634879105], [-75.15593589746767, 39.987878554987844], [-75.15559310602195, 39.98937048713281], [-75.1554998987755, 39.989794409414735], [-75.1552710646978, 39.990854301803694], [-75.15506972645015, 39.99083911992631], [-75.15396997044064, 39.99069743079759], [-75.15307026424283, 39.990578595857045], [-75.15287221410173, 39.99055287770031], [-75.15149127773667, 39.9903735518906], [-75.15092207484999, 39.9903050550188], [-75.15047931750038, 39.990248048190566], [-75.1499162301982, 39.990170796234345], [-75.14935910335902, 39.99009310529301], [-75.14889812146112, 39.990037386804815], [-75.14834098292921, 39.98997194898325], [-75.14781131295904, 39.98990639776105], [-75.14754375226056, 39.98986497810584], [-75.14760275533222, 39.989961381659676], [-75.1480273988089, 39.99056278992367], [-75.14815313833667, 39.99072552900276], [-75.14830695816073, 39.99096960067433], [-75.14834622301967, 39.99106996958742], [-75.14837843921606, 39.991217649853986], [-75.14830855656979, 39.99150510945522], [-75.1480820231125, 39.99237630471542], [-75.14788703690505, 39.9930798799411], [-75.146882363615, 39.99295012073503], [-75.14608959689218, 39.99284960025018], [-75.14560313372758, 39.99278468699399]]]}}, {"id": "5330", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13486914231545, 39.99140896839514], [-75.13433386723568, 39.99133132472353], [-75.13380448437566, 39.99126085613806], [-75.13334828398281, 39.991202409839445], [-75.13289367278115, 39.99114508728434], [-75.13242053001268, 39.99108443358905], [-75.13196035665526, 39.9910311963508], [-75.13143812359161, 39.99096152315822], [-75.13089889813841, 39.99089105165924], [-75.13124088927039, 39.98929709263805], [-75.13155894833066, 39.9878004184], [-75.13167689556849, 39.98723090960091], [-75.131831998645, 39.98652010620887], [-75.13190738930429, 39.986307698294866], [-75.13190822559206, 39.986142442348005], [-75.13220854567699, 39.98474259357524], [-75.13254593170814, 39.98316792938105], [-75.13288158399425, 39.98163265288409], [-75.13341080943681, 39.981699372023634], [-75.13392340603801, 39.981770568866075], [-75.13487065991411, 39.981888470214855], [-75.13578148349205, 39.98201048225343], [-75.13631469225547, 39.982077524588775], [-75.1368496275253, 39.98214824296992], [-75.13744398243685, 39.982224063368434], [-75.13813899339736, 39.98231364961067], [-75.13780086001088, 39.98390843998646], [-75.13746173750786, 39.98549351302039], [-75.13713869789352, 39.9869901808367], [-75.13683568381678, 39.98848690928337], [-75.1366433218456, 39.98937111348399], [-75.13657307684333, 39.98965441318546], [-75.13650837544215, 39.989970281336475], [-75.13615995646202, 39.99156601616205], [-75.13546637554853, 39.99148048381726], [-75.13486914231545, 39.99140896839514]]]}}, {"id": "5340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1430260864794, 39.97823389715918], [-75.14261628923622, 39.976751180765255], [-75.14237807521141, 39.97585934960763], [-75.14219858195302, 39.97521289774196], [-75.14207343292402, 39.97467849821699], [-75.14211943778261, 39.974587830488574], [-75.14230218996924, 39.97373168398387], [-75.14247733769012, 39.97288931139299], [-75.14258183462758, 39.97238959489266], [-75.14283870639481, 39.97119523487204], [-75.14309536107109, 39.96995576434285], [-75.14237069913011, 39.96986710560221], [-75.14151817930153, 39.969759299275125], [-75.14066667180037, 39.969653554896865], [-75.14055140212515, 39.96923559171817], [-75.14046292197838, 39.969071045766974], [-75.13987300889868, 39.96798705856361], [-75.13882750245008, 39.966596308900456], [-75.13873359398303, 39.966484864056554], [-75.1384392832969, 39.96604133674185], [-75.13828776449922, 39.96584383441974], [-75.13803308183687, 39.96551185818478], [-75.13768154916389, 39.96511329991819], [-75.13744872781277, 39.96498515226201], [-75.13748253512068, 39.964726420860195], [-75.13749760507172, 39.96463045445626], [-75.13754519517768, 39.96446130852313], [-75.13763755143225, 39.96427858977453], [-75.13778453671829, 39.963914618673314], [-75.13808290746044, 39.96293764490021], [-75.13827549450221, 39.96231762501555], [-75.1392220181052, 39.96254041128918], [-75.13929679599369, 39.96255801053774], [-75.13960221591503, 39.9626303517114], [-75.13978578774208, 39.96267383177339], [-75.14006138678764, 39.96273790213371], [-75.13975490177026, 39.963692321574484], [-75.13993197133192, 39.963777785249036], [-75.1407064227292, 39.964139708528414], [-75.14163139510946, 39.96457373788679], [-75.14252966634245, 39.9649864598312], [-75.14337752362562, 39.96538087912413], [-75.14400254301472, 39.96567103285405], [-75.14458633097023, 39.9659454790478], [-75.14490607326032, 39.96609660893821], [-75.14575782885368, 39.96649392862541], [-75.1458913161705, 39.96654816429047], [-75.14650478063565, 39.966842825167525], [-75.14714784176866, 39.96712784996928], [-75.14791049722622, 39.96732631826535], [-75.14869023776352, 39.9675176776505], [-75.14955850264346, 39.967733564369766], [-75.15051564764148, 39.96797237611294], [-75.15097355673184, 39.96807896736265], [-75.15146301021215, 39.96817620675212], [-75.15200070091771, 39.96829918091589], [-75.15301923457218, 39.968550282609826], [-75.1529071228886, 39.96906713671027], [-75.1527835009234, 39.96962440941302], [-75.15269159270923, 39.97005595174743], [-75.15257454601797, 39.970571700083724], [-75.15245012383737, 39.97114516194853], [-75.15218836742413, 39.972319593119735], [-75.15202353133493, 39.97310628406676], [-75.15191669061984, 39.973589833498096], [-75.15161706971416, 39.97496055307036], [-75.15094863392703, 39.97487344024391], [-75.150231571073, 39.97478246830948], [-75.15004094823418, 39.97475828200775], [-75.14955201707166, 39.97469444844773], [-75.14905919608358, 39.97462924336764], [-75.14875280338978, 39.97605319690573], [-75.14844892599797, 39.977446981252434], [-75.14811166218786, 39.978998965177915], [-75.14732538418636, 39.9788969009252], [-75.14658498086375, 39.978801493421564], [-75.14621504881288, 39.978756261424145], [-75.14579264210776, 39.97870283199536], [-75.14501101215193, 39.97859859204255], [-75.14464699302899, 39.978549148043435], [-75.14405950698142, 39.97847137322641], [-75.14375630225537, 39.97843254911381], [-75.14314046866812, 39.97836739419738], [-75.1430260864794, 39.97823389715918]]]}}, {"id": "5350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13780086001088, 39.98390843998646], [-75.13813899339736, 39.98231364961067], [-75.13881084329309, 39.98240067192492], [-75.13891806064221, 39.98241335056541], [-75.13936497646219, 39.98247435434834], [-75.13986861741796, 39.98253743129194], [-75.14037075117886, 39.982602963060174], [-75.1406869260253, 39.981123617196054], [-75.1408216551943, 39.98052898711954], [-75.1410218897316, 39.979618813283], [-75.1415112522445, 39.979681680500754], [-75.14193713418241, 39.979740985557754], [-75.14210829574333, 39.97976240195687], [-75.14286771936777, 39.97985261552813], [-75.14303334564039, 39.97900298334407], [-75.14314046866812, 39.97836739419738], [-75.14375630225537, 39.97843254911381], [-75.14405950698142, 39.97847137322641], [-75.14464699302899, 39.978549148043435], [-75.14501101215193, 39.97859859204255], [-75.14579264210776, 39.97870283199536], [-75.14621504881288, 39.978756261424145], [-75.14658498086375, 39.978801493421564], [-75.14732538418636, 39.9788969009252], [-75.14811166218786, 39.978998965177915], [-75.14778251867806, 39.980496006284795], [-75.14745513601414, 39.981987551670095], [-75.14794623020516, 39.982050274322205], [-75.14843839356008, 39.98211158646729], [-75.1494428528043, 39.982242079566795], [-75.15001314411744, 39.98231620624612], [-75.14968633180648, 39.98380871779169], [-75.14950398760712, 39.98463024833647], [-75.1494332507939, 39.98496243191052], [-75.1493426008124, 39.98539344850191], [-75.14855043158798, 39.98529316113752], [-75.14825923418245, 39.985254031672355], [-75.1477670295492, 39.98519167766347], [-75.14727487413454, 39.98512521849173], [-75.14678348138041, 39.985064706806504], [-75.14610343594677, 39.98497955532438], [-75.14544523910484, 39.98489682018643], [-75.14465565058934, 39.98479191317823], [-75.14438113099148, 39.98475543195791], [-75.14415497059565, 39.984725377629076], [-75.14384520940524, 39.98468401151407], [-75.14364231069816, 39.985634051569576], [-75.14350127645031, 39.986276791042265], [-75.14284163481193, 39.98619210182025], [-75.14219086607646, 39.98610805908815], [-75.14152068093209, 39.98601757233661], [-75.14104760448167, 39.98595982931496], [-75.14058850347658, 39.985896730133746], [-75.14012866158401, 39.98584162234003], [-75.1391684971638, 39.98571722446956], [-75.13865686623637, 39.98565115199687], [-75.13812245200133, 39.98558269631855], [-75.13746173750786, 39.98549351302039], [-75.13780086001088, 39.98390843998646]]]}}, {"id": "5370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13986861741796, 39.98253743129194], [-75.13936497646219, 39.98247435434834], [-75.13891806064221, 39.98241335056541], [-75.13881084329309, 39.98240067192492], [-75.13813899339736, 39.98231364961067], [-75.13744398243685, 39.982224063368434], [-75.1368496275253, 39.98214824296992], [-75.13631469225547, 39.982077524588775], [-75.13578148349205, 39.98201048225343], [-75.13487065991411, 39.981888470214855], [-75.13392340603801, 39.981770568866075], [-75.13341080943681, 39.981699372023634], [-75.13288158399425, 39.98163265288409], [-75.13288008300748, 39.98154686361165], [-75.13319065263426, 39.98013574784717], [-75.13351038338044, 39.978643366084896], [-75.13383501136663, 39.977149053608564], [-75.13400419631301, 39.97633249510136], [-75.13421921679632, 39.97536559378394], [-75.13433393411295, 39.974994169051676], [-75.13434349740862, 39.97491896587055], [-75.13455645464565, 39.97425754188351], [-75.13493090050034, 39.97306124205988], [-75.13530853850415, 39.971860497177055], [-75.1357752336454, 39.97033986957758], [-75.1362246157766, 39.96888280351075], [-75.1367915050625, 39.968990817810344], [-75.13725352039627, 39.96907578530479], [-75.13776451243866, 39.96916947868097], [-75.13800604812953, 39.96921936347586], [-75.13849829186547, 39.969312315896914], [-75.13899880115336, 39.96940742479897], [-75.13957962184396, 39.96951603226673], [-75.14066667180037, 39.969653554896865], [-75.14151817930153, 39.969759299275125], [-75.14237069913011, 39.96986710560221], [-75.14309536107109, 39.96995576434285], [-75.14283870639481, 39.97119523487204], [-75.14258183462758, 39.97238959489266], [-75.14247733769012, 39.97288931139299], [-75.14230218996924, 39.97373168398387], [-75.14211943778261, 39.974587830488574], [-75.14207343292402, 39.97467849821699], [-75.14219858195302, 39.97521289774196], [-75.14237807521141, 39.97585934960763], [-75.14261628923622, 39.976751180765255], [-75.1430260864794, 39.97823389715918], [-75.14314046866812, 39.97836739419738], [-75.14303334564039, 39.97900298334407], [-75.14286771936777, 39.97985261552813], [-75.14210829574333, 39.97976240195687], [-75.14193713418241, 39.979740985557754], [-75.1415112522445, 39.979681680500754], [-75.1410218897316, 39.979618813283], [-75.1408216551943, 39.98052898711954], [-75.1406869260253, 39.981123617196054], [-75.14037075117886, 39.982602963060174], [-75.13986861741796, 39.98253743129194]]]}}, {"id": "5390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13335178223137, 39.998538430656275], [-75.133433859375, 39.99813610118974], [-75.13357826719061, 39.99746271908161], [-75.13372632073936, 39.99681997186189], [-75.13379804534607, 39.99650859349995], [-75.13389642109973, 39.995968736218344], [-75.13444492899423, 39.99605094896756], [-75.13499336970392, 39.996118024840605], [-75.13551012066759, 39.99618002974883], [-75.13634700247911, 39.99628984635562], [-75.13684622551224, 39.99635321660288], [-75.1373500685577, 39.99642246537034], [-75.13780878030616, 39.99648020057785], [-75.13827020804773, 39.99653846065829], [-75.13869442564875, 39.99659587328851], [-75.13919971671324, 39.996662558158164], [-75.13952082967248, 39.99516588896113], [-75.14019094100959, 39.995252235382324], [-75.14083763348894, 39.99533644892229], [-75.14149666955511, 39.99542308912688], [-75.14183154987668, 39.99393097316631], [-75.14347679145469, 39.994139667054554], [-75.14412330779642, 39.994226694654955], [-75.14475929946508, 39.99431108028383], [-75.1449422627162, 39.9943335253197], [-75.14523985717346, 39.99437003326841], [-75.14574969569053, 39.99444058423645], [-75.14560509758087, 39.99510328931318], [-75.14542741148071, 39.99593018162321], [-75.14531276689256, 39.99639505500942], [-75.14523738035037, 39.9967583568742], [-75.14509795563065, 39.997426025465145], [-75.14476701066317, 39.998916789999626], [-75.14446339758591, 40.000328858228784], [-75.14417327834188, 40.000431689331485], [-75.14334643394318, 40.00074401544597], [-75.14379809293565, 40.00145585389514], [-75.14364845063128, 40.00151139230492], [-75.14333847105587, 40.0016229852707], [-75.14302815937185, 40.00173404638711], [-75.14271756308496, 40.001844650614025], [-75.14241335513279, 40.00195252307149], [-75.1420957018997, 40.00206479173606], [-75.14178453204205, 40.00217447765325], [-75.14147326507981, 40.002284010973575], [-75.1411619520598, 40.00239346583894], [-75.14085063459378, 40.002502917979676], [-75.14053936145434, 40.002612439684974], [-75.1402281822031, 40.00272211317395], [-75.13988662155539, 40.002842828195924], [-75.14006841565788, 40.00197168060588], [-75.14077743979948, 40.0016958264364], [-75.14063453178653, 40.00164705497362], [-75.14014907628051, 40.0015839349809], [-75.14022924746904, 40.001251083769084], [-75.14040264033144, 40.000477983232145], [-75.14047863717099, 40.00009495188522], [-75.14049855672104, 39.999994555103264], [-75.14031945964709, 39.99997299400659], [-75.1399888432736, 39.999933194748465], [-75.13952746728651, 39.999877985167934], [-75.13907061740818, 39.99981266897677], [-75.13852563068767, 39.999744178215266], [-75.13565223778376, 39.99937684278519], [-75.13441312486971, 39.99920862491413], [-75.13383077962293, 39.99913047723988], [-75.13323677148799, 39.99905883822483], [-75.13335178223137, 39.998538430656275]]]}}, {"id": "5400", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10834406137712, 39.990757056022076], [-75.10804488788534, 39.990426868907115], [-75.10776015070692, 39.99010542981824], [-75.10737064629286, 39.98967049495309], [-75.10707872669175, 39.989338668237636], [-75.10677909348554, 39.98900598098831], [-75.10635638278846, 39.98854972868803], [-75.1051064022264, 39.989198244384106], [-75.10480433850458, 39.98935737786698], [-75.10393376179653, 39.989822074794816], [-75.10351314693432, 39.9893369206364], [-75.10308064390418, 39.988847163864136], [-75.10265238198463, 39.988374283990176], [-75.10230801269951, 39.987975914202075], [-75.10195240299188, 39.98757392128347], [-75.10163181469454, 39.98721261325986], [-75.101311975064, 39.986847573232914], [-75.10094217065105, 39.98644174338533], [-75.10058282005755, 39.98602684857752], [-75.10031677022019, 39.98572886869802], [-75.10009754556556, 39.985478587939035], [-75.09980808572746, 39.98515543917393], [-75.09974432942074, 39.985080936240884], [-75.09953190679715, 39.98484255276022], [-75.09932259123386, 39.984596926008905], [-75.09908446847261, 39.98432642894208], [-75.09905740684128, 39.984253711143715], [-75.0990307256498, 39.984149133414206], [-75.09840808852695, 39.98338968708256], [-75.09824731408207, 39.98319358419305], [-75.09804767080702, 39.98295006964042], [-75.09763312964033, 39.98247808102554], [-75.09758221042588, 39.98240811463097], [-75.0975539446821, 39.982314105049944], [-75.0975577314891, 39.98222095340564], [-75.09759008657996, 39.98214100535176], [-75.0976493489436, 39.98206277572151], [-75.09776781703351, 39.98197314037179], [-75.09967356622244, 39.98097029444044], [-75.09784798833998, 39.978878425783975], [-75.09751316558146, 39.97850784737103], [-75.09383959244585, 39.97437300792721], [-75.09483265192154, 39.9741776430036], [-75.09667124539824, 39.973803513900265], [-75.09743238976397, 39.9736379594382], [-75.09804511557637, 39.973504683462046], [-75.0984435126403, 39.9734180244327], [-75.09962358715774, 39.97314785433316], [-75.10135237773447, 39.97271914088583], [-75.10307967990225, 39.972251161764746], [-75.10618538542172, 39.97121600245923], [-75.1087669398379, 39.970222892540406], [-75.11025601168305, 39.96964565307227], [-75.1114996663189, 39.969139770101634], [-75.11406183964452, 39.96805681489876], [-75.11993151327665, 39.97064517307754], [-75.12114399119184, 39.97140323275224], [-75.12124032747748, 39.97151408764217], [-75.12026167932584, 39.97241307167241], [-75.1196488826997, 39.9729759686648], [-75.12011691306996, 39.9732682506991], [-75.12027147970196, 39.97334921215298], [-75.12043960995102, 39.97341179687219], [-75.12071324814686, 39.97344208769076], [-75.12130210318591, 39.97341310161727], [-75.12179293061767, 39.973378695737765], [-75.12214708256286, 39.97355418709864], [-75.12262237426361, 39.97377310726972], [-75.12205945121542, 39.97433784634104], [-75.1216476749726, 39.97473299700309], [-75.12107558289397, 39.975296260148234], [-75.12097598096194, 39.97538559035902], [-75.12000099038568, 39.97593696366765], [-75.11979432968705, 39.976394887457175], [-75.11864142476595, 39.97890501186372], [-75.11835456588065, 39.97954198516514], [-75.11772738319301, 39.98093034717661], [-75.11738518098363, 39.98150738567307], [-75.11718412563928, 39.981736215726855], [-75.11609037759447, 39.98298103463053], [-75.11563626597547, 39.98357714457621], [-75.1161150212943, 39.984124077309005], [-75.11496510658728, 39.984722697957885], [-75.11381708576394, 39.98532966034778], [-75.11440237646337, 39.985989265772425], [-75.11507761640394, 39.986755994043236], [-75.11564796513767, 39.9873946375281], [-75.11576049421137, 39.98753429941364], [-75.11535586506459, 39.987762730504464], [-75.11499940258108, 39.98796208065124], [-75.11463620748842, 39.98816758235997], [-75.11427841152161, 39.98836879461104], [-75.11391785141781, 39.98857537462168], [-75.11352280106009, 39.988794509150765], [-75.11373137460194, 39.98913332828605], [-75.1131314075781, 39.98943743425496], [-75.11191230629154, 39.99007415663864], [-75.1115049197125, 39.99029753861414], [-75.11128523736149, 39.99005508556822], [-75.1111666476381, 39.98992317018299], [-75.11096306449785, 39.99003783192062], [-75.11068692842274, 39.99019332842605], [-75.11041077288246, 39.990348810332456], [-75.11013460259346, 39.990504276847176], [-75.10985841525012, 39.99065972701601], [-75.10958221528891, 39.99081516724814], [-75.109306002815, 39.99097059484277], [-75.10902977892876, 39.99112601162724], [-75.10878548667127, 39.991263454441956], [-75.10834406137712, 39.990757056022076]]]}}, {"id": "5410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13236737143946, 39.995777072436475], [-75.13215673288484, 39.99571908852154], [-75.1319487531092, 39.995584771470156], [-75.13151375949263, 39.995312789866986], [-75.13108811546374, 39.995035612799455], [-75.1306287246693, 39.9947099015428], [-75.13016923992892, 39.99438670726852], [-75.12949697864121, 39.993869232807484], [-75.12928045888196, 39.993699377473], [-75.12888944298902, 39.99337210329976], [-75.12847508975587, 39.992960955217434], [-75.12754649303128, 39.992086888554475], [-75.12711132039227, 39.991717809559425], [-75.1268304877983, 39.99140473196538], [-75.12671073514534, 39.991301669390836], [-75.12624403982602, 39.99086840531347], [-75.12619132496967, 39.99081410638479], [-75.1257966876318, 39.99046143190336], [-75.12575053444866, 39.99038664295684], [-75.12581548092545, 39.990321253648226], [-75.12594819181096, 39.990231008067155], [-75.12703151939232, 39.99038716308235], [-75.12897541590053, 39.990641759039676], [-75.13089889813841, 39.99089105165924], [-75.13143812359161, 39.99096152315822], [-75.13196035665526, 39.9910311963508], [-75.13242053001268, 39.99108443358905], [-75.13289367278115, 39.99114508728434], [-75.13334828398281, 39.991202409839445], [-75.13380448437566, 39.99126085613806], [-75.13346960071041, 39.992851042480595], [-75.13314828141475, 39.99434543499188], [-75.13304382135699, 39.99484266342269], [-75.13298036508621, 39.99515770603356], [-75.13290782243445, 39.99547128182176], [-75.13283321527076, 39.99583834307155], [-75.13236737143946, 39.995777072436475]]]}}, {"id": "5420", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14086373856927, 39.992175219664745], [-75.14019800056143, 39.992087928038465], [-75.13970899094424, 39.99202958030164], [-75.13926139018056, 39.99197058202547], [-75.13835217472275, 39.99185285779908], [-75.13784387092095, 39.99178927860157], [-75.13734853427543, 39.9917304244261], [-75.13615995646202, 39.99156601616205], [-75.13650837544215, 39.989970281336475], [-75.13657307684333, 39.98965441318546], [-75.1366433218456, 39.98937111348399], [-75.13683568381678, 39.98848690928337], [-75.13713869789352, 39.9869901808367], [-75.13746173750786, 39.98549351302039], [-75.13812245200133, 39.98558269631855], [-75.13865686623637, 39.98565115199687], [-75.1391684971638, 39.98571722446956], [-75.14012866158401, 39.98584162234003], [-75.14058850347658, 39.985896730133746], [-75.14104760448167, 39.98595982931496], [-75.14152068093209, 39.98601757233661], [-75.14219086607646, 39.98610805908815], [-75.14284163481193, 39.98619210182025], [-75.14350127645031, 39.986276791042265], [-75.14316972920646, 39.9877677843116], [-75.14284789400755, 39.98925827216778], [-75.14252186137165, 39.99075562891122], [-75.14217423972777, 39.99234441221609], [-75.14151207718533, 39.99225682117944], [-75.14086373856927, 39.992175219664745]]]}}, {"id": "5440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11221308246229, 39.99517427233117], [-75.11137060339652, 39.994212496319484], [-75.11025974583154, 39.99295826605309], [-75.10971001729443, 39.99233598687909], [-75.10952824197115, 39.992124638379394], [-75.10934108323367, 39.991910744640194], [-75.1087554459966, 39.991238922759486], [-75.108999739362, 39.991101480935754], [-75.10927596204687, 39.99094606419649], [-75.10955217569511, 39.99079063580071], [-75.1098283744549, 39.99063519561379], [-75.11010456176727, 39.9904797455171], [-75.11038073316068, 39.99032428000165], [-75.11065688749964, 39.990168798140466], [-75.11093302357875, 39.990013300806936], [-75.11113660669623, 39.98989863912245], [-75.1112551974888, 39.99003055456577], [-75.11147487961829, 39.99027300856957], [-75.11188226501358, 39.99004962577333], [-75.1131013661065, 39.98941290460837], [-75.1137013330482, 39.989108798796195], [-75.11349276093682, 39.98876997873267], [-75.1138878112488, 39.98855084430678], [-75.11424837014344, 39.98834426436344], [-75.11460616607, 39.98814305220588], [-75.11496936229267, 39.987937550618824], [-75.11532582470073, 39.98773820146543], [-75.11573045266707, 39.98750976955322], [-75.11561792483113, 39.9873701085652], [-75.11504757662068, 39.98673146403038], [-75.11437233722806, 39.985964736482465], [-75.11378704703164, 39.98530513090415], [-75.11493506653858, 39.984698168787304], [-75.11608498113003, 39.98409954753863], [-75.11560622736123, 39.9835526156072], [-75.11606033794453, 39.982956504852815], [-75.11715408728016, 39.98171168716143], [-75.11735514148285, 39.981482857133244], [-75.11771344779177, 39.981893242481284], [-75.11852341721955, 39.98282667399838], [-75.1191358701804, 39.98348600088939], [-75.11919036295231, 39.983550142775705], [-75.11969085296037, 39.98411339915456], [-75.12025206106696, 39.984756703332486], [-75.12090664203696, 39.985481406064345], [-75.1212126555554, 39.98582197636218], [-75.1215107497833, 39.98616688936588], [-75.12234155204517, 39.98703199039585], [-75.12291451967475, 39.98746386304235], [-75.12338798505213, 39.987917440030564], [-75.12437568899065, 39.98882344897619], [-75.1254917782044, 39.98983790470489], [-75.12467941648082, 39.990280061064965], [-75.12443263724062, 39.99041437725906], [-75.12368779210668, 39.9908370053132], [-75.1225598379027, 39.99142904589025], [-75.12155268191938, 39.99200126868043], [-75.12031000021946, 39.99267372653925], [-75.11969525744287, 39.9930176547012], [-75.11827306308207, 39.99380494945997], [-75.11804388596643, 39.99392739215795], [-75.11577971940605, 39.99516863261082], [-75.11488815880926, 39.995651207425055], [-75.11443934320606, 39.99590407882544], [-75.11399780861547, 39.99614675119862], [-75.11335627413635, 39.99651837529572], [-75.11330958515573, 39.99640977749513], [-75.11221308246229, 39.99517427233117]]]}}, {"id": "5470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12787293070507, 40.00505914287225], [-75.12755058678738, 40.005042349869555], [-75.12720920671373, 40.00502344244802], [-75.12686775392743, 40.005004480086335], [-75.1265262525044, 40.00498535521095], [-75.12618475093373, 40.004965874307906], [-75.12584329110216, 40.004945832900546], [-75.12550191799478, 40.00492503739572], [-75.12516067340198, 40.00490328601852], [-75.12481960245576, 40.004880381575894], [-75.12447874922599, 40.0048561241479], [-75.12413815881776, 40.004830317442874], [-75.12394932729268, 40.0048150263638], [-75.12416377417915, 40.00383050497931], [-75.12441189333515, 40.002635747370185], [-75.1247327042775, 40.001125212840236], [-75.12482584559972, 40.00073781277301], [-75.12495304812299, 40.000118295958615], [-75.1250593976361, 39.99962937005506], [-75.1253813505078, 39.99804499865212], [-75.12610139771022, 39.99813748479193], [-75.12641257905781, 39.9981699522401], [-75.12733742969829, 39.9982922813818], [-75.12862908793683, 39.99846025629529], [-75.12926055898585, 39.99854041987689], [-75.12980340464517, 39.99861470247278], [-75.13032139808102, 39.998678693262704], [-75.13125011731422, 39.99880785005577], [-75.13217235333043, 39.99891450960239], [-75.13270269672653, 39.99898682724332], [-75.13323677148799, 39.99905883822483], [-75.13289707808269, 40.000644377340706], [-75.1325783050674, 40.002135590534316], [-75.13225594170935, 40.00363274185506], [-75.13206592362307, 40.00455975090279], [-75.13195017894888, 40.0051571594535], [-75.13165438461807, 40.00516218906765], [-75.1313120905648, 40.005165243621754], [-75.13096967892228, 40.0051647840814], [-75.13062734388893, 40.00516042473138], [-75.13028526365714, 40.00515189122062], [-75.12994327233797, 40.005141571084394], [-75.12960127164347, 40.005130493753214], [-75.1292592889243, 40.00511855803528], [-75.12891735401352, 40.005105659191635], [-75.12857548972254, 40.00509169232322], [-75.12823372347772, 40.00507655443872], [-75.12787293070507, 40.00505914287225]]]}}, {"id": "5480", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15146301021215, 39.96817620675212], [-75.15097355673184, 39.96807896736265], [-75.15051564764148, 39.96797237611294], [-75.14955850264346, 39.967733564369766], [-75.14869023776352, 39.9675176776505], [-75.14791049722622, 39.96732631826535], [-75.14714784176866, 39.96712784996928], [-75.14650478063565, 39.966842825167525], [-75.1458913161705, 39.96654816429047], [-75.14575782885368, 39.96649392862541], [-75.14490607326032, 39.96609660893821], [-75.14458633097023, 39.9659454790478], [-75.14400254301472, 39.96567103285405], [-75.14337752362562, 39.96538087912413], [-75.14252966634245, 39.9649864598312], [-75.14163139510946, 39.96457373788679], [-75.1407064227292, 39.964139708528414], [-75.13993197133192, 39.963777785249036], [-75.13975490177026, 39.963692321574484], [-75.14006138678764, 39.96273790213371], [-75.13978578774208, 39.96267383177339], [-75.13960221591503, 39.9626303517114], [-75.13929679599369, 39.96255801053774], [-75.1392220181052, 39.96254041128918], [-75.13827549450221, 39.96231762501555], [-75.13808290746044, 39.96293764490021], [-75.13717083928285, 39.962820848330665], [-75.13675691661963, 39.96276757101526], [-75.1362965206531, 39.96245264193541], [-75.13570254442688, 39.962047993115426], [-75.12908790808855, 39.96070914120397], [-75.13049522314829, 39.95959590757984], [-75.13073066711392, 39.959319392641476], [-75.1309676850371, 39.95904102734597], [-75.1310798418532, 39.9589093032834], [-75.13132845710639, 39.958569744871205], [-75.13153807571817, 39.95828344487096], [-75.13196037157967, 39.95756603590327], [-75.13226802673258, 39.95704337310769], [-75.13253209875239, 39.956570957433094], [-75.13280852508643, 39.956020214005825], [-75.13963009231092, 39.95688829534479], [-75.13995562256132, 39.956929803007355], [-75.14071772348635, 39.9570283221774], [-75.14099879826782, 39.95706465660699], [-75.14141335264442, 39.95711824275984], [-75.14202103524084, 39.957196792797966], [-75.14218858223636, 39.9572186273773], [-75.14263581931723, 39.957274725205366], [-75.14280369112413, 39.9572127738713], [-75.14304070740114, 39.95716036310856], [-75.14330037514917, 39.95712727268846], [-75.14359698373113, 39.957110134708415], [-75.14390529291268, 39.957135100727456], [-75.14418051989675, 39.95716930321432], [-75.14539903510733, 39.957320721497], [-75.14574445922563, 39.95735972423506], [-75.14594277208461, 39.95738211563704], [-75.14608671800413, 39.95739172522386], [-75.14720376534348, 39.957537836872454], [-75.1473479021083, 39.95755794158644], [-75.14784414808281, 39.957628002777504], [-75.14846120785022, 39.95771646485915], [-75.14886085945778, 39.957745703471176], [-75.14887734536661, 39.95766550348537], [-75.1491264360546, 39.95767570821541], [-75.14952611782954, 39.95766316757791], [-75.15017367166261, 39.95759347705416], [-75.15065512095714, 39.95748279926199], [-75.15089400948241, 39.95741860604724], [-75.15114054904012, 39.957352358346], [-75.15148914939789, 39.95725851973942], [-75.15164997012965, 39.95721319094828], [-75.1520616305533, 39.95709976077902], [-75.15229079385131, 39.95704144528795], [-75.15255960777671, 39.95696475428164], [-75.15277270115861, 39.95691539955717], [-75.1528942880345, 39.956885026153664], [-75.15334639383745, 39.95682544556332], [-75.15378436972924, 39.95678659845988], [-75.15424934268523, 39.956778157248024], [-75.15445168386493, 39.95677847802033], [-75.15553977298742, 39.95692481636413], [-75.15550963434188, 39.95705099819963], [-75.15549108937509, 39.95712863764905], [-75.15548348227792, 39.957206029803565], [-75.15547749348217, 39.957281821405715], [-75.15539164048559, 39.95767789846245], [-75.15535015234914, 39.95787152793278], [-75.15532843587654, 39.95797600546007], [-75.15526193570719, 39.95827025632162], [-75.15518162051798, 39.95862899776177], [-75.15509490505809, 39.95871054284239], [-75.15513527514067, 39.95885473774765], [-75.15496540966672, 39.95962704039213], [-75.15484453197425, 39.96018548951281], [-75.15472013706143, 39.9607454159408], [-75.15463359264892, 39.9611451089622], [-75.15454212216805, 39.961580483472844], [-75.15451310853925, 39.961712146240565], [-75.15442408173111, 39.96212679396662], [-75.15431216993537, 39.962615898581014], [-75.15418202018007, 39.96322382051938], [-75.15409572426688, 39.963603054932825], [-75.15401448604787, 39.963977350821146], [-75.15386457120636, 39.9646612614374], [-75.15374190518315, 39.965246269151486], [-75.15451159715468, 39.96548911089992], [-75.1552606561634, 39.965709754494505], [-75.15504591539361, 39.966683130300744], [-75.15481665131104, 39.967722321111665], [-75.15327811682964, 39.96734879319945], [-75.15314966562767, 39.96794494669252], [-75.15301923457218, 39.968550282609826], [-75.15200070091771, 39.96829918091589], [-75.15146301021215, 39.96817620675212]]]}}, {"id": "5490", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13568333923226, 40.02295388314234], [-75.13517364017464, 40.02288937907387], [-75.13351806873054, 40.02269961384838], [-75.13266657267638, 40.02260530897158], [-75.13165534349513, 40.022466545626095], [-75.13067747059611, 40.0223264212425], [-75.1288388007593, 40.02209552698992], [-75.12832997980297, 40.02203750959046], [-75.12799561695972, 40.021990003261664], [-75.1275883473653, 40.02193652409814], [-75.12766722191142, 40.021678075942006], [-75.12772254870809, 40.02143541478058], [-75.12782553628675, 40.02100974360595], [-75.12793752006728, 40.02058217569274], [-75.12805743325659, 40.02016776351229], [-75.12817272187972, 40.019745126505015], [-75.12828942424522, 40.01931224639612], [-75.12841230851205, 40.01888818420382], [-75.12717014834826, 40.0187202445289], [-75.12728008257253, 40.01855118772663], [-75.12773597041543, 40.01780744067364], [-75.12816782747261, 40.01727601049683], [-75.12958420585664, 40.01596204506945], [-75.13079224052301, 40.01612157929509], [-75.13139153266953, 40.01619119732399], [-75.1319817951704, 40.01628024323355], [-75.13247683593104, 40.0163386448571], [-75.13299382132521, 40.01641091387685], [-75.13389576979203, 40.01652956087033], [-75.13484437013499, 40.01663857260232], [-75.13558304956146, 40.016735761721314], [-75.13592411965315, 40.01678028971108], [-75.13615399991127, 40.01680675916981], [-75.13681235707244, 40.01690027732512], [-75.13763970201917, 40.01700490589694], [-75.13846703853598, 40.017101650623424], [-75.13911045332391, 40.017188516576056], [-75.13974978354928, 40.01727754038999], [-75.14024968966272, 40.017342373698476], [-75.14076235440827, 40.01741242962785], [-75.141842755967, 40.01754526543114], [-75.14674207614026, 40.01816830825549], [-75.14718171411992, 40.01822158662099], [-75.14804861159351, 40.01834745042115], [-75.1484680681646, 40.01840767197671], [-75.14714447643219, 40.01901145008065], [-75.14705879583687, 40.01909484972519], [-75.14638257068283, 40.01941384755003], [-75.14613788229155, 40.01938413204805], [-75.1453628611309, 40.019380817093726], [-75.14468710862543, 40.01941183457217], [-75.14409578705738, 40.019486694076015], [-75.14363335649988, 40.01956889301005], [-75.14326097466613, 40.01965955683399], [-75.1428848436295, 40.01977265716096], [-75.14246779103715, 40.01992131567765], [-75.14208211948895, 40.020076769123925], [-75.14126176526882, 40.020457827767785], [-75.13989326600749, 40.021143092921015], [-75.13962410577875, 40.02125554449826], [-75.13878989832307, 40.02167194894793], [-75.13680074130902, 40.02266481390887], [-75.13606727037968, 40.022993869695384], [-75.13568333923226, 40.02295388314234]]]}}, {"id": "5500", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1335665112153, 40.035626316406706], [-75.13276532628717, 40.03533772841605], [-75.13184454399239, 40.035052721926434], [-75.13088081387585, 40.03474587521162], [-75.13116347306803, 40.0333930419087], [-75.13129072350458, 40.032819538815794], [-75.13139417908607, 40.03235326090929], [-75.13150816845437, 40.03186826466147], [-75.13160904957076, 40.03135428719283], [-75.13183059592654, 40.03032234554205], [-75.1321754906953, 40.02877322025858], [-75.132353179843, 40.02802099829087], [-75.13251011366452, 40.0272753508569], [-75.13283944491678, 40.02578433313788], [-75.13301086909873, 40.02499780982186], [-75.13316850018711, 40.02430018863057], [-75.13320788314832, 40.024145564934464], [-75.13326111468093, 40.0238967790924], [-75.13328560210047, 40.02378554621781], [-75.13433030569912, 40.02355568546947], [-75.13500172747884, 40.023376356045276], [-75.13549018536642, 40.023223266760084], [-75.13593982391987, 40.023051045166966], [-75.13606727037968, 40.022993869695384], [-75.13680074130902, 40.02266481390887], [-75.13878989832307, 40.02167194894793], [-75.1386856314607, 40.022089355858064], [-75.13864604864172, 40.022274510415976], [-75.13841994705085, 40.023329816232724], [-75.13807943565392, 40.024928910005606], [-75.1378229004782, 40.026088812543264], [-75.13774715050255, 40.026417386977926], [-75.13742200151447, 40.02791977605994], [-75.13709228485473, 40.02941326835255], [-75.13701628378013, 40.02980035538107], [-75.13675813892036, 40.03096519043236], [-75.13661962081554, 40.03159076445095], [-75.13655569805901, 40.03186903485381], [-75.13648615050276, 40.03218603200388], [-75.13641587003075, 40.03251136041243], [-75.13632903528652, 40.03292146855458], [-75.13624750939496, 40.03328774921344], [-75.1362256312926, 40.033432280724874], [-75.13601924186796, 40.03629591786183], [-75.13491719236487, 40.0360488365267], [-75.13435513859052, 40.03588374814797], [-75.1335665112153, 40.035626316406706]]]}}, {"id": "5530", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11930063244641, 40.00668062097756], [-75.11348354800558, 40.00592851401563], [-75.10937229646842, 40.00539334662989], [-75.10862843880291, 40.00540581803255], [-75.10803781110063, 40.00543237740518], [-75.1073529084745, 40.00547269932909], [-75.10666156788085, 40.00548114721689], [-75.10602631109278, 40.00549929463638], [-75.10533698181442, 40.00551937536787], [-75.10327103349695, 40.005603012611246], [-75.10352956329014, 40.00443165033639], [-75.10360252415369, 40.00407447780811], [-75.10368780044956, 40.0036383117411], [-75.1037972729379, 40.003135874650006], [-75.10181133678756, 40.00286444150113], [-75.10308470566804, 40.002151232898676], [-75.10318091191402, 40.00209734827566], [-75.10419895428362, 40.00152691203503], [-75.10542739643184, 40.000874883725594], [-75.10644377204741, 40.00032368292104], [-75.10759389499513, 39.99966357921811], [-75.1081451160509, 39.99935864992294], [-75.10872428311191, 39.99903366531335], [-75.10929527099421, 39.998746113222424], [-75.10984871968364, 39.998437580857484], [-75.11041965972122, 39.998125838616055], [-75.11098376966241, 39.99780241424472], [-75.1115589347371, 39.99747639316599], [-75.1121339292869, 39.997159893810384], [-75.11271108848979, 39.99686096737343], [-75.11335627413635, 39.99651837529572], [-75.11349353916128, 39.996509398474814], [-75.11378290403151, 39.99654566844975], [-75.11420376026825, 39.99660020163007], [-75.11544873273199, 39.996754717356865], [-75.11594728557785, 39.996823352482735], [-75.11641424499777, 39.99688234038955], [-75.11687527895985, 39.99694403320292], [-75.11738376209497, 39.997007889103365], [-75.117284481552, 39.99749552058664], [-75.11726460987974, 39.99759085143173], [-75.11720552832361, 39.99784824220488], [-75.11713718954385, 39.998204954618366], [-75.11705540656078, 39.99860245187495], [-75.11760779479803, 39.998672192592046], [-75.1181427263644, 39.99874006892576], [-75.11899483260045, 39.99885363710453], [-75.11948064078999, 39.99891846474961], [-75.11995841616955, 39.99897607104749], [-75.12043816082301, 39.99903124892896], [-75.12093406713585, 39.99909845694048], [-75.12141485963465, 39.99916050071101], [-75.12189645061733, 39.99922197325878], [-75.12286983433349, 39.999348225421684], [-75.1240010392231, 39.99949471531793], [-75.1250593976361, 39.99962937005506], [-75.12495304812299, 40.000118295958615], [-75.12482584559972, 40.00073781277301], [-75.1247327042775, 40.001125212840236], [-75.12441189333515, 40.002635747370185], [-75.12416377417915, 40.00383050497931], [-75.12394932729268, 40.0048150263638], [-75.1234268932234, 40.007213386785665], [-75.12271875342688, 40.007135884907754], [-75.11930063244641, 40.00668062097756]]]}}, {"id": "5560", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15269159270923, 39.97005595174743], [-75.1527835009234, 39.96962440941302], [-75.1529071228886, 39.96906713671027], [-75.15301923457218, 39.968550282609826], [-75.15314966562767, 39.96794494669252], [-75.15327811682964, 39.96734879319945], [-75.15481665131104, 39.967722321111665], [-75.15504591539361, 39.966683130300744], [-75.1552606561634, 39.965709754494505], [-75.15451159715468, 39.96548911089992], [-75.15374190518315, 39.965246269151486], [-75.15386457120636, 39.9646612614374], [-75.15401448604787, 39.963977350821146], [-75.15409572426688, 39.963603054932825], [-75.15418202018007, 39.96322382051938], [-75.15431216993537, 39.962615898581014], [-75.15442408173111, 39.96212679396662], [-75.15451310853925, 39.961712146240565], [-75.15454212216805, 39.961580483472844], [-75.15463359264892, 39.9611451089622], [-75.15472013706143, 39.9607454159408], [-75.15484453197425, 39.96018548951281], [-75.15496540966672, 39.95962704039213], [-75.15513527514067, 39.95885473774765], [-75.15509490505809, 39.95871054284239], [-75.15518162051798, 39.95862899776177], [-75.15526193570719, 39.95827025632162], [-75.15532843587654, 39.95797600546007], [-75.15535015234914, 39.95787152793278], [-75.15539164048559, 39.95767789846245], [-75.15547749348217, 39.957281821405715], [-75.15548348227792, 39.957206029803565], [-75.15549108937509, 39.95712863764905], [-75.15550963434188, 39.95705099819963], [-75.15553977298742, 39.95692481636413], [-75.15713524170022, 39.95713947514945], [-75.15869380494068, 39.95736238541401], [-75.15881552775565, 39.95737855542266], [-75.15902918678124, 39.95738338102032], [-75.16029504157096, 39.95750945198353], [-75.16129622782401, 39.95760915330485], [-75.16215524968051, 39.95771795778167], [-75.16236367069868, 39.95768001206847], [-75.16234055358527, 39.957826991575594], [-75.16231961935134, 39.95793156531414], [-75.16229423597242, 39.95805925338909], [-75.16217633043827, 39.95854852733416], [-75.16211951086655, 39.95882285854339], [-75.16205912443985, 39.95910213784753], [-75.16196092086922, 39.95957214361842], [-75.16180345680907, 39.96028624941455], [-75.16177327298585, 39.960422797834035], [-75.16164673143402, 39.96102249168303], [-75.16155403445104, 39.961443028576916], [-75.16147669842815, 39.96179046019916], [-75.16141283106843, 39.962103737181245], [-75.16138160076343, 39.962318688220996], [-75.1613842499537, 39.962475270829295], [-75.16130358132413, 39.962895050011134], [-75.16126150742342, 39.9631278884295], [-75.1611891934805, 39.96342364008302], [-75.16111004875117, 39.963789972799844], [-75.16105400769862, 39.964041957068666], [-75.16095891448897, 39.96447068926589], [-75.1608058691436, 39.965160145575574], [-75.1606783423134, 39.96577180717495], [-75.16056227887695, 39.96629531689701], [-75.16048339596443, 39.96667146909137], [-75.16040703472181, 39.96703130397831], [-75.16021432105333, 39.96788965927834], [-75.16016018888936, 39.968178321671864], [-75.16007335415503, 39.96860084432869], [-75.15997729346478, 39.968996296665715], [-75.15970329166524, 39.97020311206611], [-75.15944196657915, 39.971468323386574], [-75.15861164455573, 39.971348995116934], [-75.15728042119237, 39.971192141394845], [-75.1557193009253, 39.97098284413163], [-75.15415068105897, 39.97077954215101], [-75.15257454601797, 39.970571700083724], [-75.15269159270923, 39.97005595174743]]]}}, {"id": "5590", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.09255396545545, 40.00536603675294], [-75.09233848386813, 40.0051706262382], [-75.09221919628253, 40.00503682062715], [-75.0921010930726, 40.00487280351358], [-75.09183794632433, 40.00473062814792], [-75.09140573694945, 40.004554296486084], [-75.09097751437344, 40.004443576190404], [-75.09033735121965, 40.004222103066994], [-75.09015139125702, 40.004153884085476], [-75.08941342606012, 40.00388316403909], [-75.08888380083832, 40.00368440414936], [-75.08864656234672, 40.0035503823744], [-75.08842985436478, 40.003394154256455], [-75.08825342491625, 40.003213660293326], [-75.08810160755651, 40.003074055475324], [-75.08798430624469, 40.00288989257783], [-75.08790668836195, 40.00269656807221], [-75.08768061036204, 40.002278035314845], [-75.08758552063374, 40.00202886357714], [-75.08756900623546, 40.00178151413913], [-75.0875148209393, 40.00115780317993], [-75.0874978781014, 40.000754199257734], [-75.08747738455683, 40.00044123669756], [-75.08741858989772, 40.000102183717935], [-75.08725148428842, 39.99985134298901], [-75.0870710855701, 39.99960523222292], [-75.08666932734353, 39.9991549010774], [-75.08637219053867, 39.99889668903513], [-75.08650317560277, 39.99882817507667], [-75.08708989422199, 39.99851975337438], [-75.08946670816803, 39.997270276066914], [-75.0920722662799, 39.99589576298429], [-75.09452368021225, 39.994604333014706], [-75.09555908145178, 39.99409568671221], [-75.09700726018444, 39.99340093093542], [-75.09930174421098, 39.99218683465115], [-75.1016035551865, 39.99099546766221], [-75.10390372468184, 39.989797541868775], [-75.10477430011056, 39.98933284514133], [-75.10507636496406, 39.98917371176434], [-75.10632634532641, 39.98852519729498], [-75.10674905570413, 39.98898144880599], [-75.10704868744959, 39.989314137007256], [-75.10734060796894, 39.9896459638263], [-75.10773011087964, 39.99008089876677], [-75.10801484901846, 39.99040233705714], [-75.1083140210508, 39.990732525123946], [-75.1087554459966, 39.991238922759486], [-75.10934108323367, 39.991910744640194], [-75.10952824197115, 39.992124638379394], [-75.10971001729443, 39.99233598687909], [-75.11025974583154, 39.99295826605309], [-75.11137060339652, 39.994212496319484], [-75.11221308246229, 39.99517427233117], [-75.11330958515573, 39.99640977749513], [-75.11335627413635, 39.99651837529572], [-75.11271108848979, 39.99686096737343], [-75.1121339292869, 39.997159893810384], [-75.1115589347371, 39.99747639316599], [-75.11098376966241, 39.99780241424472], [-75.11041965972122, 39.998125838616055], [-75.10984871968364, 39.998437580857484], [-75.10929527099421, 39.998746113222424], [-75.10872428311191, 39.99903366531335], [-75.1081451160509, 39.99935864992294], [-75.10759389499513, 39.99966357921811], [-75.10644377204741, 40.00032368292104], [-75.10542739643184, 40.000874883725594], [-75.10419895428362, 40.00152691203503], [-75.10318091191402, 40.00209734827566], [-75.10308470566804, 40.002151232898676], [-75.10181133678756, 40.00286444150113], [-75.10049827342786, 40.00358035163278], [-75.09936342138738, 40.004204338993276], [-75.09798025936766, 40.004951203315294], [-75.096867594174, 40.0055623568645], [-75.09634801619768, 40.005852913915064], [-75.09327398346457, 40.00596226234677], [-75.09288480353679, 40.005974655093624], [-75.09181617120602, 40.00600868145237], [-75.09239074383822, 40.005511140248174], [-75.09255396545545, 40.00536603675294]]]}}, {"id": "5680", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13225594170935, 40.00363274185506], [-75.1325783050674, 40.002135590534316], [-75.13289707808269, 40.000644377340706], [-75.13323677148799, 39.99905883822483], [-75.13383077962293, 39.99913047723988], [-75.13441312486971, 39.99920862491413], [-75.13565223778376, 39.99937684278519], [-75.13852563068767, 39.999744178215266], [-75.13907061740818, 39.99981266897677], [-75.13952746728651, 39.999877985167934], [-75.1399888432736, 39.999933194748465], [-75.14031945964709, 39.99997299400659], [-75.14049855672104, 39.999994555103264], [-75.14047863717099, 40.00009495188522], [-75.14040264033144, 40.000477983232145], [-75.14022924746904, 40.001251083769084], [-75.14014907628051, 40.0015839349809], [-75.14063453178653, 40.00164705497362], [-75.14077743979948, 40.0016958264364], [-75.14006841565788, 40.00197168060588], [-75.13988662155539, 40.002842828195924], [-75.13960628994526, 40.00294220352529], [-75.13929567189308, 40.00305277121833], [-75.13898533409136, 40.00316379317689], [-75.13867532541023, 40.00327533899265], [-75.1383656919968, 40.0033874881072], [-75.13805660933845, 40.00350052113034], [-75.1377488996158, 40.00361575514893], [-75.13766927943385, 40.00364619730299], [-75.13744240731118, 40.00373293795305], [-75.13713677708644, 40.0038514992271], [-75.13683165251034, 40.003970866824645], [-75.13652667478337, 40.00409046944232], [-75.13622149461732, 40.00420973238526], [-75.1359157518846, 40.00432808881714], [-75.13560909369671, 40.00444496665626], [-75.13530090626963, 40.00455963199797], [-75.1349895542347, 40.004669614814944], [-75.13467397684518, 40.004771398547945], [-75.13435250240111, 40.004861512171956], [-75.13402486017198, 40.00493889706954], [-75.13369357562595, 40.00500497218568], [-75.13335888197858, 40.0050626585146], [-75.1330212513291, 40.00510594253852], [-75.13268120165456, 40.005131878874295], [-75.1323393000563, 40.005147432728876], [-75.13195017894888, 40.0051571594535], [-75.13206592362307, 40.00455975090279], [-75.13225594170935, 40.00363274185506]]]}}, {"id": "5700", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10351314693432, 39.9893369206364], [-75.10308064390418, 39.988847163864136], [-75.10265238198463, 39.988374283990176], [-75.10230801269951, 39.987975914202075], [-75.10195240299188, 39.98757392128347], [-75.10163181469454, 39.98721261325986], [-75.101311975064, 39.986847573232914], [-75.10094217065105, 39.98644174338533], [-75.10058282005755, 39.98602684857752], [-75.10031677022019, 39.98572886869802], [-75.10009754556556, 39.985478587939035], [-75.09980808572746, 39.98515543917393], [-75.09974432942074, 39.985080936240884], [-75.09953190679715, 39.98484255276022], [-75.09932259123386, 39.984596926008905], [-75.09908446847261, 39.98432642894208], [-75.09905740684128, 39.984253711143715], [-75.0990307256498, 39.984149133414206], [-75.09840808852695, 39.98338968708256], [-75.09824731408207, 39.98319358419305], [-75.09804767080702, 39.98295006964042], [-75.09763312964033, 39.98247808102554], [-75.09758221042588, 39.98240811463097], [-75.0975539446821, 39.982314105049944], [-75.0975577314891, 39.98222095340564], [-75.09759008657996, 39.98214100535176], [-75.0976493489436, 39.98206277572151], [-75.09776781703351, 39.98197314037179], [-75.09967356622244, 39.98097029444044], [-75.09784798833998, 39.978878425783975], [-75.09751316558146, 39.97850784737103], [-75.09383959244585, 39.97437300792721], [-75.09483265192154, 39.9741776430036], [-75.09667124539824, 39.973803513900265], [-75.09743238976397, 39.9736379594382], [-75.09804511557637, 39.973504683462046], [-75.0984435126403, 39.9734180244327], [-75.09962358715774, 39.97314785433316], [-75.10135237773447, 39.97271914088583], [-75.10307967990225, 39.972251161764746], [-75.10618538542172, 39.97121600245923], [-75.1087669398379, 39.970222892540406], [-75.11025601168305, 39.96964565307227], [-75.1114996663189, 39.969139770101634], [-75.11406183964452, 39.96805681489876], [-75.11993151327665, 39.97064517307754], [-75.12114399119184, 39.97140323275224], [-75.12124032747748, 39.97151408764217], [-75.12026167932584, 39.97241307167241], [-75.1196488826997, 39.9729759686648], [-75.12011691306996, 39.9732682506991], [-75.12027147970196, 39.97334921215298], [-75.12043960995102, 39.97341179687219], [-75.12071324814686, 39.97344208769076], [-75.12130210318591, 39.97341310161727], [-75.12179293061767, 39.973378695737765], [-75.12214708256286, 39.97355418709864], [-75.12262237426361, 39.97377310726972], [-75.12205945121542, 39.97433784634104], [-75.1216476749726, 39.97473299700309], [-75.12107558289397, 39.975296260148234], [-75.12097598096194, 39.97538559035902], [-75.12000099038568, 39.97593696366765], [-75.11979432968705, 39.976394887457175], [-75.11864142476595, 39.97890501186372], [-75.11835456588065, 39.97954198516514], [-75.11772738319301, 39.98093034717661], [-75.11738518098363, 39.98150738567307], [-75.11738085545169, 39.98151230877383], [-75.11771344779177, 39.981893242481284], [-75.11852341721955, 39.98282667399838], [-75.1191358701804, 39.98348600088939], [-75.11919036295231, 39.983550142775705], [-75.11969085296037, 39.98411339915456], [-75.12025206106696, 39.984756703332486], [-75.12090664203696, 39.985481406064345], [-75.1212126555554, 39.98582197636218], [-75.1215107497833, 39.98616688936588], [-75.12392849211, 39.98490340306844], [-75.12465597526973, 39.98452791773668], [-75.1250655663543, 39.98430498726714], [-75.12622812377951, 39.98369641651944], [-75.12682245317455, 39.983386960925024], [-75.12739883724821, 39.98308170284578], [-75.12797870050113, 39.98278676164064], [-75.12855382281006, 39.982481026760404], [-75.12898610754681, 39.98225344555778], [-75.12914472245183, 39.98217056132641], [-75.12933523561645, 39.982070909171554], [-75.12973559600937, 39.981861175408646], [-75.13033830584416, 39.98155001773191], [-75.13093007933422, 39.98123462399555], [-75.13136655491007, 39.981010901517074], [-75.13183190731813, 39.980765502527944], [-75.13265334485587, 39.98033873970294], [-75.13301724024231, 39.980120591075384], [-75.13319065263426, 39.98013574784717], [-75.13288008300748, 39.98154686361165], [-75.13288158399425, 39.98163265288409], [-75.13341080943681, 39.981699372023634], [-75.13392340603801, 39.981770568866075], [-75.13487065991411, 39.981888470214855], [-75.13578148349205, 39.98201048225343], [-75.13631469225547, 39.982077524588775], [-75.1368496275253, 39.98214824296992], [-75.13744398243685, 39.982224063368434], [-75.13813899339736, 39.98231364961067], [-75.13881084329309, 39.98240067192492], [-75.13891806064221, 39.98241335056541], [-75.13936497646219, 39.98247435434834], [-75.13986861741796, 39.98253743129194], [-75.14037075117886, 39.982602963060174], [-75.1406869260253, 39.981123617196054], [-75.1408216551943, 39.98052898711954], [-75.1410218897316, 39.979618813283], [-75.1415112522445, 39.979681680500754], [-75.14193713418241, 39.979740985557754], [-75.14210829574333, 39.97976240195687], [-75.14286771936777, 39.97985261552813], [-75.14303334564039, 39.97900298334407], [-75.14314046866812, 39.97836739419738], [-75.14375630225537, 39.97843254911381], [-75.14405950698142, 39.97847137322641], [-75.14464699302899, 39.978549148043435], [-75.14501101215193, 39.97859859204255], [-75.14579264210776, 39.97870283199536], [-75.14621504881288, 39.978756261424145], [-75.14658498086375, 39.978801493421564], [-75.14732538418636, 39.9788969009252], [-75.14811166218786, 39.978998965177915], [-75.14778251867806, 39.980496006284795], [-75.14745513601414, 39.981987551670095], [-75.14794623020516, 39.982050274322205], [-75.14843839356008, 39.98211158646729], [-75.1494428528043, 39.982242079566795], [-75.15001314411744, 39.98231620624612], [-75.14968633180648, 39.98380871779169], [-75.14950398760712, 39.98463024833647], [-75.1494332507939, 39.98496243191052], [-75.1493426008124, 39.98539344850191], [-75.14947287810017, 39.98541044376598], [-75.15091477997109, 39.985598532846595], [-75.15170235540398, 39.98570171004166], [-75.15248570735123, 39.98580294631227], [-75.15327633795096, 39.98590065219484], [-75.15406310987017, 39.986004580541646], [-75.1549397816308, 39.9861194562513], [-75.15540774318183, 39.98618087615382], [-75.15627637149069, 39.986284634879105], [-75.15593589746767, 39.987878554987844], [-75.15559310602195, 39.98937048713281], [-75.1554998987755, 39.989794409414735], [-75.1552710646978, 39.990854301803694], [-75.15506972645015, 39.99083911992631], [-75.15396997044064, 39.99069743079759], [-75.15307026424283, 39.990578595857045], [-75.15287221410173, 39.99055287770031], [-75.15149127773667, 39.9903735518906], [-75.15092207484999, 39.9903050550188], [-75.15047931750038, 39.990248048190566], [-75.1499162301982, 39.990170796234345], [-75.14935910335902, 39.99009310529301], [-75.14889812146112, 39.990037386804815], [-75.14834098292921, 39.98997194898325], [-75.14781131295904, 39.98990639776105], [-75.14754375226056, 39.98986497810584], [-75.14760275533222, 39.989961381659676], [-75.1480273988089, 39.99056278992367], [-75.14815313833667, 39.99072552900276], [-75.14830695816073, 39.99096960067433], [-75.14834622301967, 39.99106996958742], [-75.14837843921606, 39.991217649853986], [-75.14830855656979, 39.99150510945522], [-75.1480820231125, 39.99237630471542], [-75.14788703690505, 39.9930798799411], [-75.146882363615, 39.99295012073503], [-75.14608959689218, 39.99284960025018], [-75.14560313372758, 39.99278468699399], [-75.14511047460131, 39.99271674777694], [-75.1444670159411, 39.99263396927229], [-75.14383047084318, 39.99255141798455], [-75.14299899185374, 39.99245086645243], [-75.14217423972777, 39.99234441221609], [-75.14151207718533, 39.99225682117944], [-75.14086373856927, 39.992175219664745], [-75.14019800056143, 39.992087928038465], [-75.13970899094424, 39.99202958030164], [-75.13926139018056, 39.99197058202547], [-75.13835217472275, 39.99185285779908], [-75.13784387092095, 39.99178927860157], [-75.13734853427543, 39.9917304244261], [-75.13615995646202, 39.99156601616205], [-75.13546637554853, 39.99148048381726], [-75.13486914231545, 39.99140896839514], [-75.13433386723568, 39.99133132472353], [-75.13380448437566, 39.99126085613806], [-75.13334828398281, 39.991202409839445], [-75.13289367278115, 39.99114508728434], [-75.13242053001268, 39.99108443358905], [-75.13196035665526, 39.9910311963508], [-75.13143812359161, 39.99096152315822], [-75.13089889813841, 39.99089105165924], [-75.12897541590053, 39.990641759039676], [-75.12703151939232, 39.99038716308235], [-75.12594819181096, 39.990231008067155], [-75.12583337764181, 39.99015080201797], [-75.1254917782044, 39.98983790470489], [-75.12467941648082, 39.990280061064965], [-75.12443263724062, 39.99041437725906], [-75.12368779210668, 39.9908370053132], [-75.1225598379027, 39.99142904589025], [-75.12155268191938, 39.99200126868043], [-75.12031000021946, 39.99267372653925], [-75.11969525744287, 39.9930176547012], [-75.11827306308207, 39.99380494945997], [-75.11804388596643, 39.99392739215795], [-75.11577971940605, 39.99516863261082], [-75.11488815880926, 39.995651207425055], [-75.11443934320606, 39.99590407882544], [-75.11399780861547, 39.99614675119862], [-75.11335627413635, 39.99651837529572], [-75.11349353916128, 39.996509398474814], [-75.11378290403151, 39.99654566844975], [-75.11420376026825, 39.99660020163007], [-75.11544873273199, 39.996754717356865], [-75.11594728557785, 39.996823352482735], [-75.11641424499777, 39.99688234038955], [-75.11687527895985, 39.99694403320292], [-75.11738376209497, 39.997007889103365], [-75.117284481552, 39.99749552058664], [-75.11726460987974, 39.99759085143173], [-75.11720552832361, 39.99784824220488], [-75.11713718954385, 39.998204954618366], [-75.11705540656078, 39.99860245187495], [-75.11760779479803, 39.998672192592046], [-75.1181427263644, 39.99874006892576], [-75.11899483260045, 39.99885363710453], [-75.11948064078999, 39.99891846474961], [-75.11995841616955, 39.99897607104749], [-75.12043816082301, 39.99903124892896], [-75.12093406713585, 39.99909845694048], [-75.12141485963465, 39.99916050071101], [-75.12189645061733, 39.99922197325878], [-75.12286983433349, 39.999348225421684], [-75.1240010392231, 39.99949471531793], [-75.1250593976361, 39.99962937005506], [-75.12495304812299, 40.000118295958615], [-75.12482584559972, 40.00073781277301], [-75.1247327042775, 40.001125212840236], [-75.12441189333515, 40.002635747370185], [-75.12416377417915, 40.00383050497931], [-75.12394932729268, 40.0048150263638], [-75.1234268932234, 40.007213386785665], [-75.12271875342688, 40.007135884907754], [-75.11930063244641, 40.00668062097756], [-75.11348354800558, 40.00592851401563], [-75.10937229646842, 40.00539334662989], [-75.10862843880291, 40.00540581803255], [-75.10803781110063, 40.00543237740518], [-75.1073529084745, 40.00547269932909], [-75.10666156788085, 40.00548114721689], [-75.10602631109278, 40.00549929463638], [-75.10533698181442, 40.00551937536787], [-75.10327103349695, 40.005603012611246], [-75.10352956329014, 40.00443165033639], [-75.10360252415369, 40.00407447780811], [-75.10368780044956, 40.0036383117411], [-75.1037972729379, 40.003135874650006], [-75.10181133678756, 40.00286444150113], [-75.10049827342786, 40.00358035163278], [-75.09936342138738, 40.004204338993276], [-75.09798025936766, 40.004951203315294], [-75.096867594174, 40.0055623568645], [-75.09634801619768, 40.005852913915064], [-75.09327398346457, 40.00596226234677], [-75.09288480353679, 40.005974655093624], [-75.09181617120602, 40.00600868145237], [-75.09239074383822, 40.005511140248174], [-75.09255396545545, 40.00536603675294], [-75.09233848386813, 40.0051706262382], [-75.09221919628253, 40.00503682062715], [-75.0921010930726, 40.00487280351358], [-75.09183794632433, 40.00473062814792], [-75.09140573694945, 40.004554296486084], [-75.09097751437344, 40.004443576190404], [-75.09033735121965, 40.004222103066994], [-75.09015139125702, 40.004153884085476], [-75.08941342606012, 40.00388316403909], [-75.08888380083832, 40.00368440414936], [-75.08864656234672, 40.0035503823744], [-75.08842985436478, 40.003394154256455], [-75.08825342491625, 40.003213660293326], [-75.08810160755651, 40.003074055475324], [-75.08798430624469, 40.00288989257783], [-75.08790668836195, 40.00269656807221], [-75.08768061036204, 40.002278035314845], [-75.08758552063374, 40.00202886357714], [-75.08756900623546, 40.00178151413913], [-75.0875148209393, 40.00115780317993], [-75.0874978781014, 40.000754199257734], [-75.08747738455683, 40.00044123669756], [-75.08741858989772, 40.000102183717935], [-75.08725148428842, 39.99985134298901], [-75.0870710855701, 39.99960523222292], [-75.08666932734353, 39.9991549010774], [-75.08637219053867, 39.99889668903513], [-75.08650317560277, 39.99882817507667], [-75.08708989422199, 39.99851975337438], [-75.08946670816803, 39.997270276066914], [-75.0920722662799, 39.99589576298429], [-75.09452368021225, 39.994604333014706], [-75.09555908145178, 39.99409568671221], [-75.09700726018444, 39.99340093093542], [-75.09930174421098, 39.99218683465115], [-75.1016035551865, 39.99099546766221], [-75.10390372468184, 39.989797541868775], [-75.10390971850677, 39.989794342522494], [-75.10351314693432, 39.9893369206364]], [[-75.10737064629286, 39.98967049495309], [-75.10707872669175, 39.989338668237636], [-75.10677909348554, 39.98900598098831], [-75.10635638278846, 39.98854972868803], [-75.10635144611298, 39.988552289988235], [-75.10674905570413, 39.98898144880599], [-75.10704868744959, 39.989314137007256], [-75.10734060796894, 39.9896459638263], [-75.10773011087964, 39.99008089876677], [-75.10801484901846, 39.99040233705714], [-75.1083140210508, 39.990732525123946], [-75.1087554459966, 39.991238922759486], [-75.10876125394992, 39.99123565516094], [-75.10834406137712, 39.990757056022076], [-75.10804488788534, 39.990426868907115], [-75.10776015070692, 39.99010542981824], [-75.10737064629286, 39.98967049495309]], [[-75.11128523736149, 39.99005508556822], [-75.1111666476381, 39.98992317018299], [-75.11116134482363, 39.98992615683433], [-75.1112551974888, 39.99003055456577], [-75.11147487961829, 39.99027300856957], [-75.11148009982134, 39.99027014617919], [-75.11128523736149, 39.99005508556822]]]}}, {"id": "6030", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1821248520501, 40.02604741606695], [-75.18166803708723, 40.02565827051328], [-75.17984442801564, 40.024087111001535], [-75.17903439685347, 40.02333017978122], [-75.17813356713184, 40.022588967799784], [-75.1781634577923, 40.02232191114883], [-75.17819654807381, 40.022059883507694], [-75.17822909970849, 40.02179783748928], [-75.17826098048974, 40.02153576743003], [-75.17829207453775, 40.02127366983408], [-75.17832225316255, 40.02101153911683], [-75.17835132003574, 40.020749360970896], [-75.17836483896939, 40.02048572998522], [-75.17835128765265, 40.02022254243119], [-75.17829905577587, 40.01996324862947], [-75.17821811683437, 40.01968915969033], [-75.17812245920452, 40.019436176044145], [-75.17802950186633, 40.01918236889096], [-75.17793398080568, 40.018929343960046], [-75.17783062615489, 40.01867870863221], [-75.17771296225875, 40.01843197748175], [-75.17756704006801, 40.01819271861627], [-75.17738626062157, 40.01796889046678], [-75.1771925170203, 40.01775198501652], [-75.17699866248022, 40.01753513258645], [-75.17680470071932, 40.01731832785329], [-75.17661063755828, 40.01710157184788], [-75.17641647316844, 40.016884860068586], [-75.17622220978954, 40.01666819526803], [-75.1760278511054, 40.01645157302326], [-75.17584542335327, 40.01624838166194], [-75.17575476211923, 40.01614745779258], [-75.17565908381408, 40.01604096033477], [-75.17552671391125, 40.015893697405055], [-75.17544423876154, 40.015801951603464], [-75.17524953212295, 40.01558548770875], [-75.17505474670979, 40.0153690631341], [-75.17485988513735, 40.0151526707297], [-75.17466494844024, 40.01493631412243], [-75.17446994026795, 40.014719989789626], [-75.17427486537244, 40.01450369603558], [-75.17407972733481, 40.01428743113824], [-75.17388452615543, 40.014071195097266], [-75.17368926651781, 40.01385498801739], [-75.173493951003, 40.01363880364923], [-75.17330414845071, 40.01342880284322], [-75.17310316505105, 40.01320650783698], [-75.17290770415151, 40.01299039210142], [-75.17271219560573, 40.012774298360135], [-75.17251664898511, 40.01255822142175], [-75.17232106308491, 40.01234216215997], [-75.17212544499837, 40.01212611893189], [-75.1719297936233, 40.01191008991051], [-75.1717341148136, 40.01169407522714], [-75.17153840994537, 40.01147806950644], [-75.17134268473573, 40.011262076480755], [-75.17114693811662, 40.01104609342295], [-75.17095117611288, 40.010830115963145], [-75.17075539862202, 40.01061414680205], [-75.17055961518098, 40.01039818164876], [-75.1703638212095, 40.0101822176973], [-75.17016802476591, 40.00996625873271], [-75.17012183886611, 40.009915319234196], [-75.17027816930145, 40.009837310105105], [-75.17056549159035, 40.00969421733024], [-75.17085302274307, 40.0095513925516], [-75.17114081893814, 40.009408899199265], [-75.17142893153489, 40.00926680419859], [-75.17171807731377, 40.00912597960543], [-75.17201478572093, 40.00899458472763], [-75.17231497932914, 40.00886798956168], [-75.17261598778865, 40.00874233816866], [-75.17289976733551, 40.00862885398273], [-75.17322881678321, 40.008508366147595], [-75.17354518230786, 40.008407551969064], [-75.17386255750822, 40.00830866613599], [-75.17418020188195, 40.00821038105396], [-75.17450135375312, 40.00811949811968], [-75.17482574100757, 40.00803540932257], [-75.17515173790514, 40.00795495076213], [-75.17547878827409, 40.00787715578088], [-75.17580848000264, 40.00780637581546], [-75.17614027259992, 40.0077412625246], [-75.17647388047243, 40.007682150068774], [-75.17680993770276, 40.007632744984505], [-75.17714771609977, 40.007589819726114], [-75.17748625496522, 40.00755025147113], [-75.17782497552301, 40.00751233965202], [-75.17817990974089, 40.00747547030837], [-75.17850353803009, 40.007442419954835], [-75.17884254943282, 40.00740598482527], [-75.1791808013841, 40.00736527442401], [-75.17949583686833, 40.007330268309794], [-75.17985986450924, 40.007299379194045], [-75.18020121485219, 40.00727939352919], [-75.1805427636371, 40.00726217649447], [-75.18088436810777, 40.00724549489363], [-75.18122601266239, 40.00722923484977], [-75.18156769013017, 40.00721327636771], [-75.18190938624555, 40.00719750109568], [-75.18225108780933, 40.00718179340903], [-75.18259278643873, 40.0071660341871], [-75.18309910876698, 40.007142337153745], [-75.18751678904931, 40.00693619642412], [-75.18875577856281, 40.00687835254241], [-75.18979495444817, 40.00682982508193], [-75.19013391830701, 40.006793039509155], [-75.19047279783496, 40.00675583840279], [-75.19081081926585, 40.00671456625028], [-75.19114793109786, 40.00666897143275], [-75.19148464086909, 40.006621471858764], [-75.19159962191372, 40.00660536533527], [-75.19182140823222, 40.006574296052555], [-75.19215822867767, 40.00652737723856], [-75.19248650438152, 40.00648631915835], [-75.19282909227685, 40.006720041632185], [-75.1931745133191, 40.006946139642274], [-75.1940657933079, 40.007370640630775], [-75.19523788704916, 40.00776465223345], [-75.19662197462642, 40.00814921442729], [-75.19741007533945, 40.00838739067628], [-75.19798662998474, 40.00856163000309], [-75.1995671662532, 40.00910618352392], [-75.20096916234523, 40.0095052402321], [-75.20278453559125, 40.0101681675687], [-75.20411797328548, 40.01067887127354], [-75.20493269018309, 40.011036554083525], [-75.20556089846534, 40.01144637353623], [-75.20583087553283, 40.01162249423849], [-75.20598118504968, 40.011722063535636], [-75.20605558240162, 40.01177134883842], [-75.20613902163231, 40.01182662245913], [-75.20640550638981, 40.012003148204144], [-75.20760649409308, 40.01272404544921], [-75.2086521136056, 40.01343967710121], [-75.21000742817179, 40.01410645377305], [-75.21166268341004, 40.015119462622884], [-75.21308389807258, 40.01624048556557], [-75.21384979900387, 40.01692249206666], [-75.21464457001309, 40.017817392484254], [-75.21542414542677, 40.01862704494904], [-75.2162562666293, 40.01950860927236], [-75.21734481410951, 40.02042412150334], [-75.21856318246036, 40.02131418430032], [-75.21939048433295, 40.02185599674593], [-75.22056540237243, 40.02220734989407], [-75.22126003177011, 40.022335853157074], [-75.22222421119417, 40.022640097680785], [-75.22304860630462, 40.02323842117824], [-75.22394763206715, 40.023810080688754], [-75.22487599450581, 40.0242944622951], [-75.22519348185745, 40.02446011104909], [-75.22631113681243, 40.025093159203045], [-75.22795481788366, 40.02593586023214], [-75.22813603325612, 40.02602641551546], [-75.22967908820523, 40.02679445646915], [-75.23074584431313, 40.02731313629939], [-75.23170331576, 40.027801110198155], [-75.23290675810962, 40.02860578109708], [-75.23392315762696, 40.02949124533276], [-75.2350183907117, 40.030236920862365], [-75.23569898916516, 40.03074709666462], [-75.23713850345766, 40.03164179287043], [-75.23794421073465, 40.03207409545746], [-75.2383207666653, 40.032276133395676], [-75.23981029716893, 40.03331339537024], [-75.24048991682038, 40.03385182089564], [-75.24126945829778, 40.03467543949548], [-75.24188660444196, 40.035410599628975], [-75.24242328641597, 40.03583268652996], [-75.2429794123921, 40.03622689416779], [-75.24352237310877, 40.036479305759755], [-75.24437387203027, 40.036851649750155], [-75.24495050064645, 40.03718969357607], [-75.24559602036331, 40.037656590452954], [-75.24617090319563, 40.038291751393665], [-75.24700119872512, 40.03973906042202], [-75.24792075661651, 40.04076378900924], [-75.24904061279294, 40.04184947352197], [-75.25098609010281, 40.04326442539769], [-75.25288357388546, 40.04473489920496], [-75.25431892977208, 40.04575663310977], [-75.25589350664505, 40.04649835845789], [-75.25765698741405, 40.047612077465544], [-75.25962262300425, 40.04923956838294], [-75.26109832862248, 40.05067245466669], [-75.2626772349632, 40.05230566326601], [-75.26440145602456, 40.05411924457915], [-75.26386876848365, 40.05455088467353], [-75.26364402450334, 40.05475780096561], [-75.2635192278265, 40.05487269924374], [-75.26322298086806, 40.05514544642252], [-75.24345817374991, 40.07333560805698], [-75.24328766603712, 40.07349322360966], [-75.24313842579609, 40.07363184419745], [-75.24306339869048, 40.07370411565387], [-75.24210907881313, 40.07464282449793], [-75.24128588359679, 40.07545310524678], [-75.24095812787534, 40.07576877273638], [-75.24067409635178, 40.07605051585533], [-75.24039019564327, 40.076341496314605], [-75.24012963143099, 40.07659792106551], [-75.23999636903362, 40.0767244513198], [-75.23965572220074, 40.07704923562079], [-75.23936865476257, 40.077321574264296], [-75.23821696094798, 40.07847643574011], [-75.23770858074418, 40.078980513623826], [-75.2371717123157, 40.07950751482991], [-75.23668159485884, 40.07999675562678], [-75.23622461299013, 40.08045186530228], [-75.23609103734573, 40.08058545994921], [-75.23301936788978, 40.08363141840429], [-75.23178908302853, 40.08484644728194], [-75.23055919982524, 40.08606102127528], [-75.22773343695147, 40.08881835136036], [-75.22359382389517, 40.09292898904922], [-75.22018215051745, 40.090987381580675], [-75.21963379661355, 40.09067184471324], [-75.21679214667414, 40.08903660075094], [-75.21512274979831, 40.08807586703638], [-75.21434841609376, 40.08763022044048], [-75.21413160426536, 40.08750543917298], [-75.21375197276815, 40.087291903724214], [-75.21283123393746, 40.08675631936212], [-75.21177555623677, 40.08614222151246], [-75.21035288220077, 40.08531460941738], [-75.20997168856624, 40.085169123801826], [-75.20977974603359, 40.085090031618805], [-75.20963620520541, 40.085022979412834], [-75.20948176906893, 40.08494332721877], [-75.20928421156539, 40.08483426722577], [-75.20915570284714, 40.08475537509521], [-75.20891071574653, 40.08457532509507], [-75.20843502940461, 40.08419887541467], [-75.2063242757714, 40.08297083901374], [-75.20488165090603, 40.08214435799494], [-75.20414582216543, 40.08172278662238], [-75.20267381649565, 40.08087960607389], [-75.2009356191845, 40.0798838978099], [-75.20045304605522, 40.07960745181517], [-75.19835139218625, 40.07840344884116], [-75.19764268313288, 40.07799742241749], [-75.19643439831073, 40.07730516345369], [-75.19595648241079, 40.07703270074233], [-75.19500340736744, 40.076489337754225], [-75.19083279681232, 40.07411548107926], [-75.18967703529019, 40.07346034863238], [-75.1892072590428, 40.073164558665844], [-75.18850083767563, 40.072765298951126], [-75.18842266937398, 40.072840843860725], [-75.1870611695249, 40.0741566125007], [-75.18698669964411, 40.0742430456326], [-75.18591820379741, 40.07528352592726], [-75.18584257629753, 40.075350095113144], [-75.1850233512383, 40.07615035378346], [-75.18380354697693, 40.0773740197529], [-75.18194161224882, 40.07641177158509], [-75.18181960944209, 40.076472005835555], [-75.18150775129591, 40.07676652494106], [-75.18127577782226, 40.07701929846174], [-75.181030059986, 40.07727343208425], [-75.18077977253778, 40.07752894161619], [-75.18049874457054, 40.07781947926673], [-75.18028393325905, 40.0780499157515], [-75.1802389798596, 40.077946920259826], [-75.17844985463559, 40.076930025345625], [-75.17684189203585, 40.07598139144614], [-75.17702354357212, 40.07568853946867], [-75.17723572756108, 40.075347332512585], [-75.17740490470734, 40.075083609626276], [-75.17761720606259, 40.07473265125835], [-75.17781843262479, 40.07442285047015], [-75.17802828865062, 40.07406639821007], [-75.17898196770119, 40.0721552672007], [-75.17937270298397, 40.07139944954563], [-75.17944859352355, 40.071262433472086], [-75.17953391169506, 40.071163544421765], [-75.17981933918136, 40.070876185778644], [-75.18048295831493, 40.07019200510883], [-75.18108824954528, 40.069602032708595], [-75.18175175187088, 40.06890397071676], [-75.18090101784799, 40.06841272994902], [-75.18054528168594, 40.06819117349491], [-75.18011080793077, 40.06795527424724], [-75.17997631626186, 40.067875264486865], [-75.17930582966149, 40.06748374481404], [-75.17867207808484, 40.06711878666639], [-75.17800957051952, 40.06674475950524], [-75.17764680439015, 40.06654750587865], [-75.17726171534507, 40.06633115264945], [-75.17711530184557, 40.06624476362587], [-75.17695379388663, 40.066151322996184], [-75.17652615372914, 40.06589703428178], [-75.17772396742323, 40.06473889800499], [-75.17842108801139, 40.06403171575031], [-75.17915926787137, 40.063318167187305], [-75.17992069834072, 40.06258220722493], [-75.18054279102539, 40.06197862111421], [-75.18080527694892, 40.061725900603314], [-75.18090811057657, 40.061608494800076], [-75.18115290444139, 40.061375417270774], [-75.18131392482739, 40.06122210131275], [-75.18155571566143, 40.061006075885004], [-75.18177885875095, 40.06076888207175], [-75.18336624418237, 40.059221535836], [-75.18404519236326, 40.05857345529716], [-75.18476966794022, 40.05785849127056], [-75.18486134639281, 40.05779373121243], [-75.1849563775198, 40.05773494212012], [-75.18653553874663, 40.05621047774239], [-75.18730678094542, 40.05548581666945], [-75.18696188620653, 40.05482355399488], [-75.1867785678006, 40.05450532939778], [-75.18651717607368, 40.053967139677184], [-75.18611595407215, 40.053247312429534], [-75.18568090856587, 40.0524229651019], [-75.18528871203894, 40.051744551606674], [-75.18522100345294, 40.05158637481057], [-75.18501659720498, 40.05121743514732], [-75.1846937674163, 40.05064241151825], [-75.18457340886603, 40.05040492237618], [-75.18436784380793, 40.05006963513841], [-75.18420344684705, 40.049775693340166], [-75.18396765482593, 40.049314893850955], [-75.18391838926657, 40.04920943606664], [-75.18376010127409, 40.04891675714872], [-75.18339861136822, 40.04825532226838], [-75.18279836557451, 40.04707577114246], [-75.18220444401027, 40.0458957297085], [-75.18170260015731, 40.044832379521964], [-75.18143093247392, 40.04416263987507], [-75.18125703292239, 40.043733829527675], [-75.18117466376285, 40.04361035144422], [-75.18097922010578, 40.04333838114339], [-75.18088411064987, 40.0432480218722], [-75.17998167048039, 40.04209473357406], [-75.17963202957364, 40.04168252762443], [-75.17912977440957, 40.04106626641239], [-75.17871264213939, 40.04055843101864], [-75.1786313883227, 40.04045502151935], [-75.17775844345613, 40.039402056474906], [-75.17762916337077, 40.03923034817212], [-75.17695591195294, 40.03842372889561], [-75.17642853248903, 40.037795390475246], [-75.17614415827084, 40.0374530957513], [-75.17562257070458, 40.0367689105063], [-75.17520805709144, 40.03623377954292], [-75.17472531934024, 40.03582198106344], [-75.17649623766056, 40.03409785740428], [-75.17757545599665, 40.033047573898465], [-75.17773994379091, 40.032891613455284], [-75.1784680745982, 40.03217747122257], [-75.1788081294255, 40.03185131024302], [-75.17891466313162, 40.0317380686852], [-75.18029157893811, 40.030412246474555], [-75.18088365695873, 40.029841509241315], [-75.18148137413901, 40.02926532344677], [-75.182702183151, 40.028056239616085], [-75.18354462742221, 40.02726656215683], [-75.18293309559137, 40.02674623378277], [-75.1821248520501, 40.02604741606695]]]}}, {"id": "6060", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15950224294882, 40.0223432341361], [-75.16020566761645, 40.021312918917715], [-75.160587094013, 40.02047412659202], [-75.16064104200257, 40.02032672424692], [-75.16065723063446, 40.020267866462135], [-75.16069195307685, 40.020154843997446], [-75.16165740699451, 40.019866523130446], [-75.16260104521236, 40.019587285956476], [-75.1637594507446, 40.01923581659435], [-75.16382947760472, 40.01918243550099], [-75.1642100579168, 40.01894959041402], [-75.16451672375794, 40.01882070935512], [-75.16549601289547, 40.018389849712655], [-75.16580943584417, 40.018250581845486], [-75.16595069899675, 40.01817014864473], [-75.16612297805914, 40.01804860618353], [-75.16637408236633, 40.017853963773874], [-75.16686766643225, 40.017471360816195], [-75.16726952579513, 40.01715117286135], [-75.16773914456775, 40.01677676715074], [-75.1681011247023, 40.0164922616461], [-75.16830601223785, 40.01634706248918], [-75.16843373327283, 40.016281090405364], [-75.16875550853955, 40.016063754154686], [-75.16903385880265, 40.01586767344456], [-75.16922639801739, 40.015723223219084], [-75.16932388598943, 40.01561308507677], [-75.16990856732517, 40.015251275367135], [-75.17185110939445, 40.01421865254688], [-75.17330414845071, 40.01342880284322], [-75.173493951003, 40.01363880364923], [-75.17368926651781, 40.01385498801739], [-75.17388452615543, 40.014071195097266], [-75.17407972733481, 40.01428743113824], [-75.17427486537244, 40.01450369603558], [-75.17446994026795, 40.014719989789626], [-75.17466494844024, 40.01493631412243], [-75.17485988513735, 40.0151526707297], [-75.17505474670979, 40.0153690631341], [-75.17524953212295, 40.01558548770875], [-75.17544423876154, 40.015801951603464], [-75.17552671391125, 40.015893697405055], [-75.17565908381408, 40.01604096033477], [-75.17575476211923, 40.01614745779258], [-75.17584542335327, 40.01624838166194], [-75.1760278511054, 40.01645157302326], [-75.17622220978954, 40.01666819526803], [-75.17641647316844, 40.016884860068586], [-75.17661063755828, 40.01710157184788], [-75.17680470071932, 40.01731832785329], [-75.17699866248022, 40.01753513258645], [-75.1771925170203, 40.01775198501652], [-75.17738626062157, 40.01796889046678], [-75.17756704006801, 40.01819271861627], [-75.17771296225875, 40.01843197748175], [-75.17783062615489, 40.01867870863221], [-75.17793398080568, 40.018929343960046], [-75.17802950186633, 40.01918236889096], [-75.17812245920452, 40.019436176044145], [-75.17821811683437, 40.01968915969033], [-75.17829905577587, 40.01996324862947], [-75.17835128765265, 40.02022254243119], [-75.17836483896939, 40.02048572998522], [-75.17835132003574, 40.020749360970896], [-75.17832225316255, 40.02101153911683], [-75.17829207453775, 40.02127366983408], [-75.17826098048974, 40.02153576743003], [-75.17822909970849, 40.02179783748928], [-75.17819654807381, 40.022059883507694], [-75.1781634577923, 40.02232191114883], [-75.17813356713184, 40.022588967799784], [-75.17903439685347, 40.02333017978122], [-75.17984442801564, 40.024087111001535], [-75.18166803708723, 40.02565827051328], [-75.1821248520501, 40.02604741606695], [-75.18293309559137, 40.02674623378277], [-75.18354462742221, 40.02726656215683], [-75.182702183151, 40.028056239616085], [-75.18148137413901, 40.02926532344677], [-75.18088365695873, 40.029841509241315], [-75.18029157893811, 40.030412246474555], [-75.17891466313162, 40.0317380686852], [-75.1788081294255, 40.03185131024302], [-75.1784680745982, 40.03217747122257], [-75.17773994379091, 40.032891613455284], [-75.17757545599665, 40.033047573898465], [-75.17649623766056, 40.03409785740428], [-75.17472531934024, 40.03582198106344], [-75.17520805709144, 40.03623377954292], [-75.17562257070458, 40.0367689105063], [-75.17614415827084, 40.0374530957513], [-75.17642853248903, 40.037795390475246], [-75.17695591195294, 40.03842372889561], [-75.17762916337077, 40.03923034817212], [-75.17775844345613, 40.039402056474906], [-75.1786313883227, 40.04045502151935], [-75.17871264213939, 40.04055843101864], [-75.17912977440957, 40.04106626641239], [-75.17963202957364, 40.04168252762443], [-75.17998167048039, 40.04209473357406], [-75.18088411064987, 40.0432480218722], [-75.18097922010578, 40.04333838114339], [-75.18117466376285, 40.04361035144422], [-75.18125703292239, 40.043733829527675], [-75.18143093247392, 40.04416263987507], [-75.18170260015731, 40.044832379521964], [-75.18220444401027, 40.0458957297085], [-75.18279836557451, 40.04707577114246], [-75.18339861136822, 40.04825532226838], [-75.18376010127409, 40.04891675714872], [-75.18391838926657, 40.04920943606664], [-75.18396765482593, 40.049314893850955], [-75.18420344684705, 40.049775693340166], [-75.18436784380793, 40.05006963513841], [-75.18457340886603, 40.05040492237618], [-75.1846937674163, 40.05064241151825], [-75.18501659720498, 40.05121743514732], [-75.18522100345294, 40.05158637481057], [-75.18528871203894, 40.051744551606674], [-75.18568090856587, 40.0524229651019], [-75.18611595407215, 40.053247312429534], [-75.18651717607368, 40.053967139677184], [-75.1867785678006, 40.05450532939778], [-75.18696188620653, 40.05482355399488], [-75.18730678094542, 40.05548581666945], [-75.18653553874663, 40.05621047774239], [-75.1849563775198, 40.05773494212012], [-75.18486134639281, 40.05779373121243], [-75.18476966794022, 40.05785849127056], [-75.18404519236326, 40.05857345529716], [-75.18336624418237, 40.059221535836], [-75.18177885875095, 40.06076888207175], [-75.18155571566143, 40.061006075885004], [-75.18131392482739, 40.06122210131275], [-75.18115290444139, 40.061375417270774], [-75.18090811057657, 40.061608494800076], [-75.18080527694892, 40.061725900603314], [-75.18054279102539, 40.06197862111421], [-75.17992069834072, 40.06258220722493], [-75.17915926787137, 40.063318167187305], [-75.17842108801139, 40.06403171575031], [-75.17772396742323, 40.06473889800499], [-75.17652615372914, 40.06589703428178], [-75.17695379388663, 40.066151322996184], [-75.17711530184557, 40.06624476362587], [-75.17726171534507, 40.06633115264945], [-75.17764680439015, 40.06654750587865], [-75.17800957051952, 40.06674475950524], [-75.17867207808484, 40.06711878666639], [-75.17930582966149, 40.06748374481404], [-75.17997631626186, 40.067875264486865], [-75.18011080793077, 40.06795527424724], [-75.18054528168594, 40.06819117349491], [-75.18090101784799, 40.06841272994902], [-75.18175175187088, 40.06890397071676], [-75.18108824954528, 40.069602032708595], [-75.18048295831493, 40.07019200510883], [-75.17981933918136, 40.070876185778644], [-75.17953391169506, 40.071163544421765], [-75.17944859352355, 40.071262433472086], [-75.17937270298397, 40.07139944954563], [-75.17898196770119, 40.0721552672007], [-75.17802828865062, 40.07406639821007], [-75.17781843262479, 40.07442285047015], [-75.17761720606259, 40.07473265125835], [-75.17740490470734, 40.075083609626276], [-75.17723572756108, 40.075347332512585], [-75.17702354357212, 40.07568853946867], [-75.17684189203585, 40.07598139144614], [-75.17844985463559, 40.076930025345625], [-75.1802389798596, 40.077946920259826], [-75.18028393325905, 40.0780499157515], [-75.18049874457054, 40.07781947926673], [-75.18077977253778, 40.07752894161619], [-75.181030059986, 40.07727343208425], [-75.18127577782226, 40.07701929846174], [-75.18150775129591, 40.07676652494106], [-75.18181960944209, 40.076472005835555], [-75.18194161224882, 40.07641177158509], [-75.18380354697693, 40.0773740197529], [-75.18338031680676, 40.07779858590659], [-75.18309433465161, 40.07807587966636], [-75.18287149014344, 40.078292464114064], [-75.18258086041408, 40.07857492735905], [-75.18232052018368, 40.07884043664458], [-75.18203755777367, 40.07910908539153], [-75.18180286135693, 40.079337154012684], [-75.18145425234837, 40.07967940722044], [-75.18111760840718, 40.08001602438674], [-75.18082835390277, 40.080295325576316], [-75.18051355457972, 40.08060664800581], [-75.18026277904949, 40.08085339519159], [-75.18000629267141, 40.08109897260521], [-75.1797465281049, 40.081356162231216], [-75.17947174227169, 40.08161030603028], [-75.17919957785055, 40.08187937536236], [-75.17894425415764, 40.082141941628535], [-75.17868482425071, 40.08239067875266], [-75.17844262597258, 40.08264111363603], [-75.17819946150917, 40.08287791311066], [-75.17794373603151, 40.083129189512114], [-75.17769764878433, 40.083386235797065], [-75.17643825170076, 40.08465273993144], [-75.17617086031584, 40.08449802955405], [-75.17587162456431, 40.08432420858097], [-75.17565377401108, 40.08419536522242], [-75.17534368589227, 40.08401196620428], [-75.17513240532602, 40.083887005460255], [-75.17478569112538, 40.08368194223895], [-75.17451282257665, 40.08352055207597], [-75.17415810344424, 40.08331074839847], [-75.17392483275896, 40.08317277840625], [-75.17357374932254, 40.08296512124009], [-75.1733047962172, 40.082806040432715], [-75.17293752614974, 40.08258880643946], [-75.17206912077135, 40.08207514660764], [-75.1717125938213, 40.081864259219266], [-75.16993233616797, 40.080811185455374], [-75.16826691265771, 40.079825985671924], [-75.16766083538825, 40.07946744025506], [-75.16408829184321, 40.077353842883106], [-75.16339656128754, 40.07696659290676], [-75.1604288812882, 40.07531266399091], [-75.15912148998693, 40.07459926761436], [-75.15838366762185, 40.0741818577783], [-75.15662764764954, 40.073184684935896], [-75.1558340546091, 40.072734017011875], [-75.15469496358601, 40.07208558563241], [-75.15407609241902, 40.071733279851415], [-75.15333305739387, 40.071310283447445], [-75.15275632915203, 40.07098195424609], [-75.15218557363076, 40.070657020518695], [-75.1518743522914, 40.07047983851803], [-75.1515895445759, 40.07031768987099], [-75.1507247653823, 40.06982534507238], [-75.15004070721001, 40.06943588345188], [-75.14960541385284, 40.06918804665245], [-75.14835533464405, 40.06847629140363], [-75.1476786971091, 40.06809102144619], [-75.14666575147052, 40.067521504880396], [-75.14550083646236, 40.066852333810544], [-75.14521906964595, 40.06669047274589], [-75.1445545761143, 40.06631208041861], [-75.14405155015547, 40.06601595270874], [-75.14309806566018, 40.06547590316734], [-75.1418870299279, 40.06478995437998], [-75.14077361287495, 40.06415244752091], [-75.13941558224629, 40.06338650266371], [-75.13680077963983, 40.061950670877565], [-75.13518201886446, 40.06095171336758], [-75.13411737359088, 40.06029467864256], [-75.13336952909367, 40.05983314071961], [-75.13306980634653, 40.059648161740796], [-75.13011006466647, 40.0578699154973], [-75.12897416052719, 40.05718740622033], [-75.1290445515563, 40.05703322693472], [-75.13000011598297, 40.05555327791002], [-75.12918727245439, 40.05565461231603], [-75.12922179044439, 40.05440819171393], [-75.12924104435761, 40.053622265606776], [-75.12876930743163, 40.05356421498887], [-75.12791015844874, 40.053461088976896], [-75.12824747591462, 40.051887744051875], [-75.12858891879509, 40.05036125112049], [-75.12945227218991, 40.050489274927635], [-75.13111308760577, 40.050690271010204], [-75.13140423760464, 40.04940024691916], [-75.13166128235686, 40.048156268360856], [-75.1332567119416, 40.048777459670774], [-75.13375894185535, 40.0488817426885], [-75.13409180476353, 40.048902587735896], [-75.13440674322722, 40.04891116535305], [-75.13470588083467, 40.04893219041025], [-75.13471592360841, 40.0486818070314], [-75.13471906989062, 40.04841859647586], [-75.13472046245599, 40.048155380230874], [-75.13472165229443, 40.04789216116925], [-75.13472266045814, 40.04762894067132], [-75.13472350689706, 40.04736571829014], [-75.13472421038942, 40.04710249355224], [-75.13472479198656, 40.04683926783781], [-75.1347252728087, 40.04657604072672], [-75.1347256727699, 40.04631281267226], [-75.13472590134562, 40.046135759857265], [-75.13472601174911, 40.04604958502804], [-75.13472630862711, 40.045786354619786], [-75.13472658669221, 40.045523125581795], [-75.13472686127587, 40.04525989556012], [-75.13472715583922, 40.04499666418777], [-75.13472748898417, 40.044733435492475], [-75.13472788313881, 40.04447020547966], [-75.13472835459646, 40.044206977223425], [-75.13472892805768, 40.043943748583104], [-75.13472962098656, 40.04368052265935], [-75.13472969726423, 40.04341726647428], [-75.13472697741948, 40.04315389256317], [-75.13472352169212, 40.042890480269094], [-75.13472182558891, 40.042627129658364], [-75.13472438816113, 40.04236393907692], [-75.13473370487289, 40.04210100769038], [-75.13475175466523, 40.04183839136754], [-75.13477741194309, 40.04157600140778], [-75.13480890949876, 40.04131382009847], [-75.13484452100693, 40.0410518342622], [-75.13488252571301, 40.040790038958356], [-75.13492119862019, 40.040528418339036], [-75.13496233925464, 40.04026715213024], [-75.13500880438107, 40.040006362132374], [-75.13505778090732, 40.03974579508309], [-75.13510640080575, 40.03948519467066], [-75.1351508380495, 40.03922409987065], [-75.13519214212045, 40.03896256431206], [-75.13524186910239, 40.03870228819914], [-75.13530975823267, 40.038444142866446], [-75.13539985461783, 40.03818986383155], [-75.13551964132269, 40.03794392826701], [-75.13566051505993, 40.037703539013485], [-75.13579331165975, 40.037460704204015], [-75.1359172080124, 40.03721491407448], [-75.13596239568302, 40.03714069095362], [-75.13643742560077, 40.03719714962134], [-75.13682469320108, 40.03688982868427], [-75.13720839198119, 40.03656309931997], [-75.13816430148131, 40.03580745474563], [-75.13837487569867, 40.03588478067623], [-75.13909695975165, 40.0359825433927], [-75.13988302535608, 40.036084777555345], [-75.14067276785356, 40.036185703147375], [-75.14146588926472, 40.03628840562802], [-75.14463761989032, 40.03740050019296], [-75.1450944010915, 40.03741430698231], [-75.14514980930565, 40.0371471869134], [-75.14555423769299, 40.03526310349242], [-75.14589858962322, 40.033729038091984], [-75.14622802622662, 40.03218680840395], [-75.1465198569296, 40.03086669439065], [-75.14657623992896, 40.03063853073237], [-75.1466831095684, 40.03022796670184], [-75.1467062707666, 40.03012811909639], [-75.14682785335461, 40.029603964525016], [-75.14685100645652, 40.029482804010044], [-75.14691352343654, 40.02914516669453], [-75.14721962735459, 40.02764514311778], [-75.14755641513194, 40.02613961797357], [-75.14789505568146, 40.024554834487724], [-75.14824630443891, 40.02296067248439], [-75.14911084080961, 40.023087628437445], [-75.14987715742109, 40.0231842466539], [-75.15044000128925, 40.0232544392301], [-75.1506825222888, 40.02328812009111], [-75.15090369245164, 40.02331069599366], [-75.15147241693867, 40.023381528339236], [-75.1522667173414, 40.02348787117297], [-75.15303674304226, 40.02358501513317], [-75.15358036624822, 40.02365797773569], [-75.15405365312745, 40.02372785476409], [-75.15461075489527, 40.02380201274293], [-75.15539798309345, 40.02388910564577], [-75.15618269933954, 40.02398984263152], [-75.15696965137474, 40.02409024536052], [-75.15715360548293, 40.02413182896438], [-75.15724219824413, 40.02408925777339], [-75.15782906553865, 40.02375408545743], [-75.15790589094377, 40.023704912206234], [-75.15903605423988, 40.02280190058979], [-75.15950224294882, 40.0223432341361]]]}}, {"id": "6200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17124261342087, 40.06500946556407], [-75.17091194220046, 40.06466925503468], [-75.17069409522429, 40.06445965564536], [-75.1703634321165, 40.06409495052153], [-75.17017127786087, 40.06390687896074], [-75.16983006917584, 40.06354105060354], [-75.16904394106206, 40.06430044770858], [-75.16809985399476, 40.06522082243321], [-75.1677689939968, 40.065108487428574], [-75.16731697579957, 40.06494737580528], [-75.16695979762125, 40.06482743429275], [-75.16654186059458, 40.06468055848998], [-75.16622136222205, 40.06457189914461], [-75.16571540071172, 40.06439171631164], [-75.16534808383226, 40.06426613015285], [-75.16480035602746, 40.06407242015249], [-75.1643836856483, 40.063926607255304], [-75.16378784926586, 40.063712558698455], [-75.16344190448093, 40.06359655565086], [-75.16292411240609, 40.063410709422975], [-75.16254871651984, 40.063285958426555], [-75.1620197780772, 40.0630962169184], [-75.16195977544348, 40.06315890313737], [-75.1616641649705, 40.06298405418257], [-75.16123426856046, 40.06273231936118], [-75.16099326125268, 40.062595900743204], [-75.16060368358214, 40.062369944395606], [-75.16035182382006, 40.06222962168702], [-75.15989416367573, 40.061971945302716], [-75.15961343513683, 40.06181075138843], [-75.15919973818367, 40.061567179296624], [-75.15720193376991, 40.06042981662128], [-75.15841323800502, 40.059182161006305], [-75.1581641751228, 40.059036116190065], [-75.15776045979493, 40.058800649227884], [-75.15737303204526, 40.05858598062293], [-75.15747896418917, 40.056504930678976], [-75.15746051816018, 40.0564194703756], [-75.15831599261553, 40.05603530684842], [-75.15889048363145, 40.05576949183422], [-75.16044128197008, 40.05425713561772], [-75.16091929300433, 40.0537925062337], [-75.1611689402338, 40.05355483490157], [-75.16138759282359, 40.053342933770466], [-75.16189938305337, 40.05284319234763], [-75.16337456802582, 40.051419298090025], [-75.1645290723687, 40.050307646064056], [-75.16520215329996, 40.04965200639097], [-75.16525712299926, 40.04959732185242], [-75.16605473744411, 40.04883455137416], [-75.16723865320313, 40.04768607142578], [-75.16770275926207, 40.047246253974855], [-75.16884922937358, 40.04795506324941], [-75.16927029423954, 40.048207577481364], [-75.17060415461262, 40.04903026260365], [-75.1706333927059, 40.04910225393454], [-75.17073576482973, 40.04935353962386], [-75.17083862208125, 40.0496046667032], [-75.17094216748087, 40.049855568549134], [-75.1710466086001, 40.05010618224366], [-75.17112820941101, 40.050300315011405], [-75.1711520694657, 40.050356452903564], [-75.17125881986824, 40.050606284767596], [-75.17136800824716, 40.05085547655511], [-75.17152726633, 40.051089120617476], [-75.1717302446799, 40.05130067346059], [-75.17194564025809, 40.05150565958964], [-75.1721527570008, 40.051715590770904], [-75.17216182099546, 40.051725161961755], [-75.172357958871, 40.05192621020427], [-75.17256355291329, 40.05213675514574], [-75.1728866854698, 40.05240617655712], [-75.17311902812443, 40.05259960659701], [-75.17335044401179, 40.05279367128519], [-75.17358005010088, 40.052988992343515], [-75.17381241180091, 40.05318350612949], [-75.17403840687084, 40.053381793351825], [-75.17424056057901, 40.053592781409186], [-75.17440688262629, 40.053823769205636], [-75.17454506276708, 40.05406488302684], [-75.17465933962295, 40.054312964447234], [-75.1747608547261, 40.05456490612149], [-75.17486440654937, 40.05481655635975], [-75.17495847107281, 40.05507018780081], [-75.1750118866538, 40.05532876015456], [-75.17503111300805, 40.055591480315336], [-75.17504089384201, 40.05585549435688], [-75.17506031602504, 40.05611862254066], [-75.17507933319033, 40.05638220025059], [-75.17510785609336, 40.05664457640369], [-75.17514798273434, 40.056839725193974], [-75.17516113351942, 40.056903685234026], [-75.1752495582113, 40.05715893337811], [-75.17536810749817, 40.05740605364031], [-75.17550645600836, 40.05764690489541], [-75.17566016370529, 40.05788293281444], [-75.17582822362066, 40.058112341586416], [-75.17600881660165, 40.05833576524766], [-75.1761994717258, 40.058554821559156], [-75.17639803953782, 40.05876979389417], [-75.1766023533545, 40.058981048146265], [-75.17681100212951, 40.05919014206236], [-75.17702481901934, 40.05939641041052], [-75.17724499618087, 40.0595983481416], [-75.1774727246601, 40.05979444836981], [-75.1777137531315, 40.059982251152746], [-75.17786819767917, 40.06008571522395], [-75.17797306082973, 40.06015596266008], [-75.17825011568553, 40.06030907909555], [-75.17854709002448, 40.06043969196185], [-75.17885517364552, 40.060557399718036], [-75.1791640113303, 40.06067185283692], [-75.1794761022797, 40.06078031680443], [-75.17978995236567, 40.06088607658467], [-75.18010210008383, 40.06099460945412], [-75.18041237768011, 40.06110616575838], [-75.18072219957281, 40.0612184795709], [-75.18103175837003, 40.061331233541814], [-75.18115290444139, 40.061375417270774], [-75.18090811057657, 40.061608494800076], [-75.18080527694892, 40.061725900603314], [-75.18054279102539, 40.06197862111421], [-75.17992069834072, 40.06258220722493], [-75.17915926787137, 40.063318167187305], [-75.17842108801139, 40.06403171575031], [-75.17772396742323, 40.06473889800499], [-75.17652615372914, 40.06589703428178], [-75.17573916329452, 40.065455268868476], [-75.1753283866907, 40.06521738943825], [-75.17472790207933, 40.06584572169545], [-75.17416537252768, 40.06638980605839], [-75.17345972356307, 40.06705509382905], [-75.1731109475838, 40.06683128113391], [-75.17271130613928, 40.06651149251504], [-75.17248326087959, 40.06627327634225], [-75.17213407820678, 40.065926492388684], [-75.17188653373765, 40.06566421390312], [-75.17149994529751, 40.06526016646006], [-75.17124261342087, 40.06500946556407]]]}}, {"id": "6210", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1604288812882, 40.07531266399091], [-75.16050594436373, 40.07483288570474], [-75.16055753540152, 40.07453012215321], [-75.16057136671013, 40.07442377191166], [-75.16064054996237, 40.07404220389587], [-75.16069589137035, 40.07366282968974], [-75.16071675585628, 40.0735384122146], [-75.16077029469126, 40.07331416167603], [-75.16082425301092, 40.073095104095074], [-75.1609187723063, 40.07271045947612], [-75.16102579413145, 40.07227280606486], [-75.16110506465807, 40.07195354846603], [-75.1613133773838, 40.07138793441847], [-75.16138802540127, 40.071313389393225], [-75.16161519042359, 40.07109386403413], [-75.16180113346527, 40.07091280571107], [-75.16203667711369, 40.070686408849866], [-75.1623238000922, 40.070408124113825], [-75.16274583591098, 40.06999711536643], [-75.16342108161521, 40.06933393255309], [-75.16410687905979, 40.06866398623474], [-75.16436155806885, 40.068424816613124], [-75.16463785158234, 40.068194280617526], [-75.16487677547958, 40.06800838818451], [-75.16514635504116, 40.06782087737948], [-75.16531857078982, 40.06770751422005], [-75.16570662695527, 40.06743917295645], [-75.16607391930532, 40.06719546211728], [-75.16809985399476, 40.06522082243321], [-75.16904394106206, 40.06430044770858], [-75.16983006917584, 40.06354105060354], [-75.17017127786087, 40.06390687896074], [-75.1703634321165, 40.06409495052153], [-75.17069409522429, 40.06445965564536], [-75.17091194220046, 40.06466925503468], [-75.17124261342087, 40.06500946556407], [-75.17149994529751, 40.06526016646006], [-75.17188653373765, 40.06566421390312], [-75.17213407820678, 40.065926492388684], [-75.17248326087959, 40.06627327634225], [-75.17271130613928, 40.06651149251504], [-75.1731109475838, 40.06683128113391], [-75.17345972356307, 40.06705509382905], [-75.17416537252768, 40.06638980605839], [-75.17472790207933, 40.06584572169545], [-75.1753283866907, 40.06521738943825], [-75.17573916329452, 40.065455268868476], [-75.17652615372914, 40.06589703428178], [-75.17695379388663, 40.066151322996184], [-75.17711530184557, 40.06624476362587], [-75.17726171534507, 40.06633115264945], [-75.17764680439015, 40.06654750587865], [-75.17800957051952, 40.06674475950524], [-75.17867207808484, 40.06711878666639], [-75.17930582966149, 40.06748374481404], [-75.17997631626186, 40.067875264486865], [-75.18011080793077, 40.06795527424724], [-75.18054528168594, 40.06819117349491], [-75.18090101784799, 40.06841272994902], [-75.18175175187088, 40.06890397071676], [-75.18108824954528, 40.069602032708595], [-75.18048295831493, 40.07019200510883], [-75.17981933918136, 40.070876185778644], [-75.17953391169506, 40.071163544421765], [-75.17944859352355, 40.071262433472086], [-75.17937270298397, 40.07139944954563], [-75.17898196770119, 40.0721552672007], [-75.17802828865062, 40.07406639821007], [-75.17781843262479, 40.07442285047015], [-75.17761720606259, 40.07473265125835], [-75.17740490470734, 40.075083609626276], [-75.17723572756108, 40.075347332512585], [-75.17702354357212, 40.07568853946867], [-75.17684189203585, 40.07598139144614], [-75.17650168334147, 40.076371483982], [-75.17622691145561, 40.07666422121828], [-75.17587660181164, 40.07703290043079], [-75.17557507191728, 40.07735456292724], [-75.17528915694395, 40.07766727790896], [-75.17506353867036, 40.07787997885392], [-75.17365569344673, 40.077070581483774], [-75.17337495601436, 40.07735390531589], [-75.17314849623152, 40.077577846361805], [-75.1728799001031, 40.07785070127036], [-75.17262144318636, 40.078104902334765], [-75.17073321801493, 40.07701492411452], [-75.1702893584541, 40.0767687584959], [-75.16978670514862, 40.0772875187461], [-75.16931873256533, 40.077784394409086], [-75.16880378323822, 40.07829299949059], [-75.16766083538825, 40.07946744025506], [-75.16408829184321, 40.077353842883106], [-75.16339656128754, 40.07696659290676], [-75.1604288812882, 40.07531266399091]]]}}, {"id": "6220", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17216182099546, 40.051725161961755], [-75.17278214968263, 40.05114098636905], [-75.17326193964533, 40.050668307254625], [-75.17491703922701, 40.04905352974127], [-75.17554837432448, 40.04843964367981], [-75.17609108661524, 40.047908442017345], [-75.17624745535426, 40.047753284928866], [-75.17662568220831, 40.047399341707596], [-75.17675867916391, 40.04725214341318], [-75.17681056280375, 40.04720520432477], [-75.17700069329203, 40.04702130168701], [-75.17718362379978, 40.04684811358267], [-75.17725380693192, 40.04677119491558], [-75.1773822612706, 40.046662942149524], [-75.17756627407671, 40.046474822765596], [-75.17775517766586, 40.04627533376665], [-75.17960663140585, 40.04448953551959], [-75.18088411064987, 40.0432480218722], [-75.18097922010578, 40.04333838114339], [-75.18117466376285, 40.04361035144422], [-75.18125703292239, 40.043733829527675], [-75.18143093247392, 40.04416263987507], [-75.18170260015731, 40.044832379521964], [-75.18220444401027, 40.0458957297085], [-75.18279836557451, 40.04707577114246], [-75.18339861136822, 40.04825532226838], [-75.18376010127409, 40.04891675714872], [-75.18391838926657, 40.04920943606664], [-75.18396765482593, 40.049314893850955], [-75.18420344684705, 40.049775693340166], [-75.18436784380793, 40.05006963513841], [-75.18457340886603, 40.05040492237618], [-75.1846937674163, 40.05064241151825], [-75.18501659720498, 40.05121743514732], [-75.18522100345294, 40.05158637481057], [-75.18528871203894, 40.051744551606674], [-75.18568090856587, 40.0524229651019], [-75.18611595407215, 40.053247312429534], [-75.18651717607368, 40.053967139677184], [-75.1867785678006, 40.05450532939778], [-75.18696188620653, 40.05482355399488], [-75.18730678094542, 40.05548581666945], [-75.18653553874663, 40.05621047774239], [-75.1849563775198, 40.05773494212012], [-75.18486134639281, 40.05779373121243], [-75.18476966794022, 40.05785849127056], [-75.18404519236326, 40.05857345529716], [-75.18336624418237, 40.059221535836], [-75.18177885875095, 40.06076888207175], [-75.18155571566143, 40.061006075885004], [-75.18131392482739, 40.06122210131275], [-75.18115290444139, 40.061375417270774], [-75.18103175837003, 40.061331233541814], [-75.18072219957281, 40.0612184795709], [-75.18041237768011, 40.06110616575838], [-75.18010210008383, 40.06099460945412], [-75.17978995236567, 40.06088607658467], [-75.1794761022797, 40.06078031680443], [-75.1791640113303, 40.06067185283692], [-75.17885517364552, 40.060557399718036], [-75.17854709002448, 40.06043969196185], [-75.17825011568553, 40.06030907909555], [-75.17797306082973, 40.06015596266008], [-75.17786819767917, 40.06008571522395], [-75.1777137531315, 40.059982251152746], [-75.1774727246601, 40.05979444836981], [-75.17724499618087, 40.0595983481416], [-75.17702481901934, 40.05939641041052], [-75.17681100212951, 40.05919014206236], [-75.1766023533545, 40.058981048146265], [-75.17639803953782, 40.05876979389417], [-75.1761994717258, 40.058554821559156], [-75.17600881660165, 40.05833576524766], [-75.17582822362066, 40.058112341586416], [-75.17566016370529, 40.05788293281444], [-75.17550645600836, 40.05764690489541], [-75.17536810749817, 40.05740605364031], [-75.1752495582113, 40.05715893337811], [-75.17516113351942, 40.056903685234026], [-75.17514798273434, 40.056839725193974], [-75.17510785609336, 40.05664457640369], [-75.17507933319033, 40.05638220025059], [-75.17506031602504, 40.05611862254066], [-75.17504089384201, 40.05585549435688], [-75.17503111300805, 40.055591480315336], [-75.1750118866538, 40.05532876015456], [-75.17495847107281, 40.05507018780081], [-75.17486440654937, 40.05481655635975], [-75.1747608547261, 40.05456490612149], [-75.17465933962295, 40.054312964447234], [-75.17454506276708, 40.05406488302684], [-75.17440688262629, 40.053823769205636], [-75.17424056057901, 40.053592781409186], [-75.17403840687084, 40.053381793351825], [-75.17381241180091, 40.05318350612949], [-75.17358005010088, 40.052988992343515], [-75.17335044401179, 40.05279367128519], [-75.17311902812443, 40.05259960659701], [-75.1728866854698, 40.05240617655712], [-75.17256355291329, 40.05213675514574], [-75.172357958871, 40.05192621020427], [-75.17216182099546, 40.051725161961755]]]}}, {"id": "6250", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18651717607368, 40.053967139677184], [-75.18611595407215, 40.053247312429534], [-75.18568090856587, 40.0524229651019], [-75.18528871203894, 40.051744551606674], [-75.18522100345294, 40.05158637481057], [-75.18501659720498, 40.05121743514732], [-75.1846937674163, 40.05064241151825], [-75.18457340886603, 40.05040492237618], [-75.18436784380793, 40.05006963513841], [-75.18420344684705, 40.049775693340166], [-75.18396765482593, 40.049314893850955], [-75.18391838926657, 40.04920943606664], [-75.18376010127409, 40.04891675714872], [-75.18339861136822, 40.04825532226838], [-75.18527664267911, 40.046411282219864], [-75.18668797871183, 40.04503518347589], [-75.18931485668102, 40.0424870819142], [-75.18947980639672, 40.04230868909042], [-75.19025172805095, 40.04278912918824], [-75.19057914684831, 40.04299291082166], [-75.19119981577036, 40.04338709775542], [-75.19124142940883, 40.043133123148614], [-75.19134753185405, 40.04283747821982], [-75.19145042795034, 40.04262690767887], [-75.19157772831606, 40.042398635256504], [-75.19176919636841, 40.04214746287633], [-75.19209517660428, 40.0418099230789], [-75.19391825051949, 40.04003759263793], [-75.1961285681936, 40.03792510705202], [-75.19591426474284, 40.03773386290462], [-75.19823927899031, 40.0366086380846], [-75.19803969458452, 40.035669218093304], [-75.19797485763613, 40.03550704206032], [-75.19788801660623, 40.03505591715643], [-75.19781610939663, 40.03474973507563], [-75.19767408751511, 40.03440506991492], [-75.19764644430055, 40.0342703880722], [-75.19762267816256, 40.03416298827446], [-75.1975357248421, 40.033893093786155], [-75.1975423038068, 40.033712343674054], [-75.19759775248555, 40.03353189483889], [-75.19767897363276, 40.0334054527399], [-75.19791907202325, 40.033244249276365], [-75.19867854345327, 40.03310333437685], [-75.19903824459082, 40.032960800774006], [-75.19925173748065, 40.0327331286416], [-75.19965720849837, 40.032329249260336], [-75.19972657938162, 40.032360159665316], [-75.19997327152043, 40.032514050436404], [-75.2001684571078, 40.03265538325535], [-75.20023180653428, 40.032748119832135], [-75.20024278770153, 40.03285111219636], [-75.2002066813973, 40.03302155884678], [-75.20014649247801, 40.03323998893978], [-75.2000286885841, 40.03360840834481], [-75.1999853764631, 40.03377298530102], [-75.20009758234858, 40.03414651220337], [-75.20019902122058, 40.03441134260745], [-75.20029111299033, 40.03472733968486], [-75.20044427709198, 40.03499902773448], [-75.20065701896179, 40.035266328297695], [-75.20077587266421, 40.03546304589897], [-75.20086740470755, 40.03559636701068], [-75.20090064681602, 40.03569985332406], [-75.20085098603475, 40.03583574861133], [-75.20087202841943, 40.03596750522857], [-75.20095963561124, 40.03610644698831], [-75.20110246626595, 40.03625803169762], [-75.20119507108404, 40.03636283525448], [-75.20134832008314, 40.03643473280454], [-75.20156307328378, 40.03645091539052], [-75.20178824330848, 40.03638741157057], [-75.20203211000842, 40.03622157448156], [-75.20215004658733, 40.03604723564648], [-75.20226120658367, 40.03585562283787], [-75.20238656373073, 40.035681448385986], [-75.20257149451804, 40.0355028854725], [-75.20271211717781, 40.035317633574714], [-75.20292251520746, 40.03505401271858], [-75.20308475313355, 40.03488636329297], [-75.20322216373734, 40.034786662719796], [-75.20350839828592, 40.034678843315966], [-75.2037475444075, 40.034638480680805], [-75.20402971436165, 40.034639027990075], [-75.20429618639469, 40.034662058053975], [-75.20486302268161, 40.0347944931357], [-75.20519541902128, 40.03484181600355], [-75.20546781580545, 40.03490493310414], [-75.20570097432311, 40.03502426417902], [-75.2058671406445, 40.03514781690197], [-75.20601718590125, 40.035305262058806], [-75.20607098712954, 40.03545486751505], [-75.20608512223498, 40.03567209300905], [-75.20613913768528, 40.03581599532369], [-75.20626035989733, 40.03594996856576], [-75.20637352169493, 40.036100889391015], [-75.20647712448454, 40.03630867952482], [-75.20653556814453, 40.03653259396182], [-75.2065986085726, 40.036631961173214], [-75.20676696501357, 40.03689733615117], [-75.20697424047722, 40.037113130006546], [-75.20721562476146, 40.03740959192733], [-75.20772920774597, 40.03777487177704], [-75.20807811152633, 40.03797667283057], [-75.20837657449391, 40.03813739998149], [-75.20865234891762, 40.038309040909205], [-75.20886897664359, 40.03847366389456], [-75.20912457299517, 40.03878756032005], [-75.20931744791032, 40.03899161630986], [-75.20955799502023, 40.03931088753139], [-75.20981167851987, 40.03967611498109], [-75.21001704965896, 40.039943234008625], [-75.21016113787074, 40.040260373489794], [-75.21048075797292, 40.04064989036193], [-75.21056168484728, 40.04087022688045], [-75.21072889124217, 40.04132547366802], [-75.21083797713106, 40.04162247498826], [-75.21085954892055, 40.04183986385273], [-75.2109046653704, 40.04202352346143], [-75.21105767616733, 40.04230090130406], [-75.21134549627982, 40.04274679443542], [-75.21155894192873, 40.04299696438598], [-75.21167373864417, 40.043090419187074], [-75.2117895800312, 40.043184724066734], [-75.21192903529322, 40.04342755048803], [-75.21204981105043, 40.04377271123764], [-75.2121443171284, 40.04402596169148], [-75.21217139683955, 40.04429484411868], [-75.21219062724198, 40.0445749723814], [-75.21217974815472, 40.044865850199635], [-75.21210957954078, 40.045749073728594], [-75.21204231820863, 40.04595879087753], [-75.21194387704928, 40.046207777510205], [-75.2118452230371, 40.046462466295836], [-75.21166066758568, 40.046829422513625], [-75.21158218854448, 40.04694185216979], [-75.21158363596008, 40.04710171417034], [-75.21164658531441, 40.047205853263726], [-75.21176848115175, 40.04732271042747], [-75.21194910224808, 40.04745799020771], [-75.21215049774804, 40.04763368703058], [-75.2123826464751, 40.047781519170755], [-75.21260865508998, 40.047894967336916], [-75.2129769046371, 40.04817709331067], [-75.21312784812656, 40.048311716613625], [-75.21333116833364, 40.04843607880874], [-75.21350331205412, 40.04859970973842], [-75.21366632770139, 40.04880880505784], [-75.21378225812595, 40.04908535721496], [-75.21391448667507, 40.04952210070516], [-75.21405097697317, 40.04984477259543], [-75.2145028979404, 40.05067102121905], [-75.21457095142553, 40.050756997128204], [-75.21439193823277, 40.05087763982575], [-75.21428512785094, 40.050993419398814], [-75.21410916982583, 40.05124550003927], [-75.21401184869464, 40.05145009209251], [-75.21395586900432, 40.05157683863884], [-75.21392365068435, 40.05175333392736], [-75.21385266377408, 40.05193881768102], [-75.2138347164866, 40.05207624896712], [-75.21372753439724, 40.05220186417726], [-75.21362255943978, 40.05226846038528], [-75.2134678547842, 40.05229457951167], [-75.21316977233033, 40.05238644539147], [-75.21292399433403, 40.05244993176783], [-75.21263871121019, 40.0525420789539], [-75.21240683662488, 40.05257633748612], [-75.21207292725472, 40.05259849545021], [-75.21171194524376, 40.052659434259446], [-75.21141275580193, 40.05278080595065], [-75.21123060715377, 40.052855539056765], [-75.21109671538522, 40.053010096448794], [-75.21095370334592, 40.0530660053901], [-75.21078729945812, 40.05306232766443], [-75.21053202960914, 40.05303699589321], [-75.21028992901358, 40.05300210945723], [-75.21007085136426, 40.0530366453269], [-75.20985103692693, 40.053090854029726], [-75.20965571771637, 40.053175138711524], [-75.20947209268773, 40.053289216427785], [-75.20932686859572, 40.053404142187816], [-75.20914398037468, 40.053498545257014], [-75.20896367052569, 40.05352409212852], [-75.20783318259917, 40.053607375784004], [-75.20767699826081, 40.05367283358721], [-75.20754678299276, 40.053729020655396], [-75.20730850075148, 40.05376312634277], [-75.2071382762331, 40.05369044492225], [-75.20693605031188, 40.05361705578653], [-75.20675647564745, 40.053622925036954], [-75.20651142471398, 40.0536667244638], [-75.20627806801201, 40.05374031618485], [-75.20612114304201, 40.05382544507432], [-75.20598871311253, 40.053940650054756], [-75.20567596899471, 40.05408139656822], [-75.20547658358366, 40.05427387731837], [-75.2053295058763, 40.05443798152439], [-75.20519522856382, 40.05460236908748], [-75.20511362871878, 40.05472854423565], [-75.20504667351175, 40.054805819367026], [-75.20488263197747, 40.054853072221036], [-75.20471113653498, 40.05472015869834], [-75.20417264630456, 40.054306830785684], [-75.20372888679066, 40.05392917556531], [-75.20349281323871, 40.05365317795886], [-75.20334340662053, 40.0535052159], [-75.20321635085055, 40.053428105580494], [-75.20146367263548, 40.05231785002617], [-75.20011269688989, 40.05146473442294], [-75.19877066105177, 40.05270643612475], [-75.19820021143939, 40.05235596117368], [-75.19771378237151, 40.05203896338299], [-75.1969823896079, 40.05157312711901], [-75.19563324275806, 40.05280253409382], [-75.19491469239934, 40.05234769564096], [-75.19443475926589, 40.05205432898346], [-75.19434079120006, 40.051896151450784], [-75.19432707016699, 40.05171226037262], [-75.1942064694033, 40.05168030023692], [-75.1940848633164, 40.051634165536754], [-75.19401303857717, 40.05173347550707], [-75.19321126466869, 40.05116499385955], [-75.19301187701981, 40.05100999296698], [-75.19181659556949, 40.05025748485779], [-75.19149646777267, 40.05057119096916], [-75.19131958904751, 40.050744520703475], [-75.19081732761688, 40.051190803965], [-75.18890640015005, 40.053020829447696], [-75.18804884702564, 40.053816158878966], [-75.18779809316645, 40.054065199186574], [-75.18696188620653, 40.05482355399488], [-75.1867785678006, 40.05450532939778], [-75.18651717607368, 40.053967139677184]]]}}, {"id": "6260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1892072590428, 40.073164558665844], [-75.18850083767563, 40.072765298951126], [-75.18805338790312, 40.072504173185806], [-75.18769578724081, 40.07230280518222], [-75.18727691346884, 40.07206282928188], [-75.18695418042498, 40.07188242253921], [-75.18656090515977, 40.07165815713035], [-75.18635439238608, 40.07153643854975], [-75.18623293140867, 40.07146527137888], [-75.18585788038457, 40.071247696344166], [-75.1855608441507, 40.07107347214713], [-75.18465450351158, 40.070566138510706], [-75.18391276257141, 40.070145631452164], [-75.18364912476173, 40.06999111135572], [-75.18327103153682, 40.069789831738944], [-75.18289547943881, 40.06955422068512], [-75.18258006129889, 40.06937617829236], [-75.18221999451552, 40.06916019514141], [-75.18175175187088, 40.06890397071676], [-75.18090101784799, 40.06841272994902], [-75.18054528168594, 40.06819117349491], [-75.18011080793077, 40.06795527424724], [-75.17997631626186, 40.067875264486865], [-75.17930582966149, 40.06748374481404], [-75.17867207808484, 40.06711878666639], [-75.17800957051952, 40.06674475950524], [-75.17764680439015, 40.06654750587865], [-75.17726171534507, 40.06633115264945], [-75.17711530184557, 40.06624476362587], [-75.17695379388663, 40.066151322996184], [-75.17652615372914, 40.06589703428178], [-75.17772396742323, 40.06473889800499], [-75.17842108801139, 40.06403171575031], [-75.17915926787137, 40.063318167187305], [-75.17992069834072, 40.06258220722493], [-75.18054279102539, 40.06197862111421], [-75.18080527694892, 40.061725900603314], [-75.18090811057657, 40.061608494800076], [-75.18115290444139, 40.061375417270774], [-75.18131392482739, 40.06122210131275], [-75.18155571566143, 40.061006075885004], [-75.18177885875095, 40.06076888207175], [-75.18336624418237, 40.059221535836], [-75.18404519236326, 40.05857345529716], [-75.18476966794022, 40.05785849127056], [-75.18486134639281, 40.05779373121243], [-75.1849563775198, 40.05773494212012], [-75.18653553874663, 40.05621047774239], [-75.18730678094542, 40.05548581666945], [-75.18696188620653, 40.05482355399488], [-75.18779809316645, 40.054065199186574], [-75.18804884702564, 40.053816158878966], [-75.18890640015005, 40.053020829447696], [-75.19081732761688, 40.051190803965], [-75.19131958904751, 40.050744520703475], [-75.19149646777267, 40.05057119096916], [-75.19181659556949, 40.05025748485779], [-75.19301187701981, 40.05100999296698], [-75.19321126466869, 40.05116499385955], [-75.19401303857717, 40.05173347550707], [-75.1940848633164, 40.051634165536754], [-75.1942064694033, 40.05168030023692], [-75.19432707016699, 40.05171226037262], [-75.19434079120006, 40.051896151450784], [-75.19443475926589, 40.05205432898346], [-75.19491469239934, 40.05234769564096], [-75.19563324275806, 40.05280253409382], [-75.1969823896079, 40.05157312711901], [-75.19771378237151, 40.05203896338299], [-75.19820021143939, 40.05235596117368], [-75.19877066105177, 40.05270643612475], [-75.20011269688989, 40.05146473442294], [-75.20146367263548, 40.05231785002617], [-75.20321635085055, 40.053428105580494], [-75.20334340662053, 40.0535052159], [-75.20349281323871, 40.05365317795886], [-75.20372888679066, 40.05392917556531], [-75.20417264630456, 40.054306830785684], [-75.20471113653498, 40.05472015869834], [-75.20488263197747, 40.054853072221036], [-75.20531821375958, 40.05519065607581], [-75.20587257610931, 40.0556159526666], [-75.20621022591658, 40.055885484051885], [-75.20792963361659, 40.057219621105475], [-75.20695768938901, 40.05819620479453], [-75.20454450168005, 40.06058276092143], [-75.2025890996209, 40.06253928364317], [-75.20247578849883, 40.06265117785159], [-75.20214620389496, 40.06298260864735], [-75.20173977228471, 40.063375963925445], [-75.20126926436419, 40.06385488194599], [-75.20079594233718, 40.063734488746654], [-75.20074493127662, 40.064497824262524], [-75.20136836078836, 40.0651152109948], [-75.20171678219866, 40.06544573648771], [-75.2015092772665, 40.0654196825577], [-75.20131881082602, 40.065383095046506], [-75.20084833594773, 40.0652339595504], [-75.20046680831523, 40.06517812477132], [-75.20019673687891, 40.065164236678115], [-75.20004858741599, 40.065187266471746], [-75.19987088182724, 40.06526753670021], [-75.19975528635453, 40.065382275334606], [-75.19836153173155, 40.06676286075396], [-75.19742492411515, 40.06767933279832], [-75.19733737504282, 40.06770788061124], [-75.19725608769183, 40.06774856340655], [-75.19702893684186, 40.067952075639944], [-75.19455359516283, 40.07041510107163], [-75.19437203320024, 40.07059064141814], [-75.19413745659803, 40.07081743807545], [-75.19284644342434, 40.07211114328308], [-75.19206451092946, 40.0729015340207], [-75.19083279681232, 40.07411548107926], [-75.18967703529019, 40.07346034863238], [-75.1892072590428, 40.073164558665844]]]}}, {"id": "6270", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-75.21434841609376, 40.08763022044048], [-75.21413160426536, 40.08750543917298], [-75.21375197276815, 40.087291903724214], [-75.21283123393746, 40.08675631936212], [-75.21177555623677, 40.08614222151246], [-75.21035288220077, 40.08531460941738], [-75.20997168856624, 40.085169123801826], [-75.20977974603359, 40.085090031618805], [-75.20963620520541, 40.085022979412834], [-75.20948176906893, 40.08494332721877], [-75.20928421156539, 40.08483426722577], [-75.20915570284714, 40.08475537509521], [-75.20891071574653, 40.08457532509507], [-75.20843502940461, 40.08419887541467], [-75.2063242757714, 40.08297083901374], [-75.20488165090603, 40.08214435799494], [-75.20414582216543, 40.08172278662238], [-75.20267381649565, 40.08087960607389], [-75.2009356191845, 40.0798838978099], [-75.20045304605522, 40.07960745181517], [-75.19835139218625, 40.07840344884116], [-75.19764268313288, 40.07799742241749], [-75.19643439831073, 40.07730516345369], [-75.19595648241079, 40.07703270074233], [-75.19500340736744, 40.076489337754225], [-75.19083279681232, 40.07411548107926], [-75.19206451092946, 40.0729015340207], [-75.19284644342434, 40.07211114328308], [-75.19413745659803, 40.07081743807545], [-75.19437203320024, 40.07059064141814], [-75.19455359516283, 40.07041510107163], [-75.19702893684186, 40.067952075639944], [-75.19725608769183, 40.06774856340655], [-75.19733737504282, 40.06770788061124], [-75.19742492411515, 40.06767933279832], [-75.19836153173155, 40.06676286075396], [-75.19975528635453, 40.065382275334606], [-75.19987088182724, 40.06526753670021], [-75.20004858741599, 40.065187266471746], [-75.20019673687891, 40.065164236678115], [-75.20046680831523, 40.06517812477132], [-75.20084833594773, 40.0652339595504], [-75.20131881082602, 40.065383095046506], [-75.2015092772665, 40.0654196825577], [-75.20171678219866, 40.06544573648771], [-75.20136836078836, 40.0651152109948], [-75.20074493127662, 40.064497824262524], [-75.20079594233718, 40.063734488746654], [-75.20126926436419, 40.06385488194599], [-75.20173977228471, 40.063375963925445], [-75.20214620389496, 40.06298260864735], [-75.20247578849883, 40.06265117785159], [-75.2025890996209, 40.06253928364317], [-75.20454450168005, 40.06058276092143], [-75.20695768938901, 40.05819620479453], [-75.20792963361659, 40.057219621105475], [-75.20621022591658, 40.055885484051885], [-75.20587257610931, 40.0556159526666], [-75.20531821375958, 40.05519065607581], [-75.20488263197747, 40.054853072221036], [-75.20504667351175, 40.054805819367026], [-75.20511362871878, 40.05472854423565], [-75.20519522856382, 40.05460236908748], [-75.2053295058763, 40.05443798152439], [-75.20547658358366, 40.05427387731837], [-75.20567596899471, 40.05408139656822], [-75.20598871311253, 40.053940650054756], [-75.20612114304201, 40.05382544507432], [-75.20627806801201, 40.05374031618485], [-75.20651142471398, 40.0536667244638], [-75.20675647564745, 40.053622925036954], [-75.20693605031188, 40.05361705578653], [-75.2071382762331, 40.05369044492225], [-75.20730850075148, 40.05376312634277], [-75.20754678299276, 40.053729020655396], [-75.20767699826081, 40.05367283358721], [-75.20783318259917, 40.053607375784004], [-75.20896367052569, 40.05352409212852], [-75.20914398037468, 40.053498545257014], [-75.20932686859572, 40.053404142187816], [-75.20947209268773, 40.053289216427785], [-75.20965571771637, 40.053175138711524], [-75.20985103692693, 40.053090854029726], [-75.21007085136426, 40.0530366453269], [-75.21028992901358, 40.05300210945723], [-75.21053202960914, 40.05303699589321], [-75.21078729945812, 40.05306232766443], [-75.21095370334592, 40.0530660053901], [-75.21109671538522, 40.053010096448794], [-75.21123060715377, 40.052855539056765], [-75.21141275580193, 40.05278080595065], [-75.21171194524376, 40.052659434259446], [-75.21207292725472, 40.05259849545021], [-75.21240683662488, 40.05257633748612], [-75.21263871121019, 40.0525420789539], [-75.21292399433403, 40.05244993176783], [-75.21316977233033, 40.05238644539147], [-75.2134678547842, 40.05229457951167], [-75.21362255943978, 40.05226846038528], [-75.21372753439724, 40.05220186417726], [-75.2138347164866, 40.05207624896712], [-75.21385266377408, 40.05193881768102], [-75.21392365068435, 40.05175333392736], [-75.21395586900432, 40.05157683863884], [-75.21401184869464, 40.05145009209251], [-75.21410916982583, 40.05124550003927], [-75.21428512785094, 40.050993419398814], [-75.21439193823277, 40.05087763982575], [-75.21457095142553, 40.050756997128204], [-75.21477366202399, 40.05101308969664], [-75.21501401520094, 40.05122580502872], [-75.2152226300174, 40.05142122678272], [-75.21542076776456, 40.05160811879584], [-75.2157779251754, 40.05187318942014], [-75.21632692950475, 40.05220471199618], [-75.21679072538791, 40.05250531568779], [-75.2170101374423, 40.052700972060066], [-75.21721381115472, 40.05302902401661], [-75.21740545851311, 40.053389994172306], [-75.21754932117564, 40.053874360860874], [-75.21766975489608, 40.05440798827836], [-75.21776370587726, 40.05478339972237], [-75.21779540748678, 40.0550910671567], [-75.2178326859878, 40.055389555593784], [-75.21784527981154, 40.055490394310446], [-75.21786557809817, 40.055814404931795], [-75.21796293545793, 40.05609862743273], [-75.21815707259692, 40.05639328255384], [-75.21829851055543, 40.05665358966609], [-75.21841315458913, 40.056763968720674], [-75.21853611088002, 40.05694090450774], [-75.21870160256275, 40.057135367329046], [-75.21894168160546, 40.05735636486365], [-75.21920948591723, 40.05770241727509], [-75.21938886133773, 40.057814222902245], [-75.21965144839187, 40.058010823670315], [-75.2198246408614, 40.0582884207507], [-75.22000491297439, 40.05866572988123], [-75.2202690184377, 40.05911125636288], [-75.22035622174903, 40.05937866375898], [-75.22047671514694, 40.0596219130589], [-75.22064160075098, 40.05983295308749], [-75.22079817161715, 40.05997743888005], [-75.22101022821018, 40.06008166299098], [-75.22117851331238, 40.06020151786903], [-75.22134432944159, 40.060387689084486], [-75.22150890942957, 40.060607018300935], [-75.22171077373474, 40.06098480042213], [-75.22187242274134, 40.06128287912471], [-75.2220866007378, 40.06190982594182], [-75.22215378114606, 40.062135306657616], [-75.22223174936673, 40.06236102554656], [-75.22239510269806, 40.06261351176765], [-75.22263243242793, 40.062909106714166], [-75.22289134395056, 40.063205176676256], [-75.22315118059892, 40.06347637636253], [-75.22340116030304, 40.06372246959266], [-75.22352506966465, 40.06387452948777], [-75.22357191279042, 40.06406637840206], [-75.22352011258054, 40.06429754021719], [-75.22344920425138, 40.06446190919216], [-75.22328242911209, 40.064590983781855], [-75.22300837908303, 40.06470110721599], [-75.2225177766978, 40.0648272096523], [-75.22191572875089, 40.06504626453165], [-75.22150726258572, 40.06528617072171], [-75.22104144863594, 40.06561607340886], [-75.22075320409613, 40.06581714015489], [-75.22047265223308, 40.06610134012056], [-75.22040204497277, 40.066257416762774], [-75.22035054142914, 40.0664802875594], [-75.22040538564119, 40.06674698042691], [-75.220482425938, 40.0669975700272], [-75.22050923080047, 40.06714749556472], [-75.22054237296345, 40.06721474649943], [-75.22057950109134, 40.06729008239717], [-75.22072344387293, 40.06748406897721], [-75.2209179347524, 40.06777042698577], [-75.2213027771429, 40.06816468169993], [-75.2217426532696, 40.06853110678613], [-75.22206724680694, 40.06880373321647], [-75.22227624376103, 40.06899085148552], [-75.22244393540804, 40.06912728358061], [-75.22252469618299, 40.069278394369626], [-75.22264923022982, 40.06941387780444], [-75.22283726891679, 40.06958394131134], [-75.22303764245397, 40.06971279303993], [-75.22323554624268, 40.06990796365707], [-75.22354073415222, 40.07012208264088], [-75.22391898414968, 40.07040418218518], [-75.22436228313141, 40.07067941101737], [-75.22466778663087, 40.07088523922988], [-75.22494153696408, 40.071073775280794], [-75.22517243854045, 40.07125307378348], [-75.22534045015375, 40.071381212063194], [-75.2254776385463, 40.07146718940843], [-75.22560156553432, 40.071619246971714], [-75.22562730372316, 40.07179818477979], [-75.22560689750236, 40.07186637332087], [-75.22555330614519, 40.07204545248316], [-75.22541857825082, 40.0721835307691], [-75.22535845521037, 40.07234813966267], [-75.22509269992044, 40.07252482076271], [-75.22475048568877, 40.072724712956685], [-75.22444187609301, 40.072892156381826], [-75.2239359479737, 40.07313822547624], [-75.22340473110751, 40.073483293600965], [-75.22321480880846, 40.07365334319305], [-75.22306465107508, 40.073915526763315], [-75.22301253280233, 40.07415497688277], [-75.22301405654467, 40.074403903759965], [-75.2231222525839, 40.07468836155796], [-75.2233640900345, 40.075154129066924], [-75.22348246180022, 40.0754554028763], [-75.22361224171561, 40.07574033461288], [-75.22380275568308, 40.07613445377599], [-75.22406757151978, 40.07656339285195], [-75.22430372483832, 40.07689214332473], [-75.224484071298, 40.07726944502672], [-75.22467335998041, 40.077696720978004], [-75.22478958021959, 40.07805602214], [-75.22518436116688, 40.07876574232143], [-75.22533789600043, 40.078993118274425], [-75.22548247315505, 40.079246018795054], [-75.22552041613174, 40.079312390476254], [-75.22573716086733, 40.07958263595362], [-75.22590025895488, 40.07984340828304], [-75.22594742726926, 40.08002696375382], [-75.22604917455128, 40.08019512778883], [-75.22624434014634, 40.08046489740403], [-75.22649284903395, 40.08075243236348], [-75.22680611171896, 40.08104138831406], [-75.22703520302512, 40.081270419520784], [-75.22735185996784, 40.08146818773472], [-75.22765618786684, 40.08170716616172], [-75.22807028453268, 40.0818987752061], [-75.22859076107581, 40.08213419633967], [-75.22927296615082, 40.08237731115313], [-75.2295258070147, 40.082548784516646], [-75.22977155525922, 40.08262054487449], [-75.22994207044799, 40.082682357964245], [-75.2301794942427, 40.08268756335315], [-75.23035277957234, 40.08267476866629], [-75.23055659477808, 40.08271242363329], [-75.23078260987309, 40.08273396945265], [-75.23097501668049, 40.08278796537604], [-75.23115540153664, 40.082874882829444], [-75.23196115806692, 40.08313193953048], [-75.23266787022823, 40.08342299244986], [-75.23301936788978, 40.08363141840429], [-75.23178908302853, 40.08484644728194], [-75.23055919982524, 40.08606102127528], [-75.22773343695147, 40.08881835136036], [-75.22359382389517, 40.09292898904922], [-75.22018215051745, 40.090987381580675], [-75.21963379661355, 40.09067184471324], [-75.21679214667414, 40.08903660075094], [-75.21512274979831, 40.08807586703638], [-75.21434841609376, 40.08763022044048]]], [[[-75.17702354357212, 40.07568853946867], [-75.17723572756108, 40.075347332512585], [-75.17740490470734, 40.075083609626276], [-75.17761720606259, 40.07473265125835], [-75.17781843262479, 40.07442285047015], [-75.17802828865062, 40.07406639821007], [-75.17898196770119, 40.0721552672007], [-75.17937270298397, 40.07139944954563], [-75.17944859352355, 40.071262433472086], [-75.17953391169506, 40.071163544421765], [-75.17981933918136, 40.070876185778644], [-75.18048295831493, 40.07019200510883], [-75.18108824954528, 40.069602032708595], [-75.18175175187088, 40.06890397071676], [-75.18221999451552, 40.06916019514141], [-75.18258006129889, 40.06937617829236], [-75.18289547943881, 40.06955422068512], [-75.18327103153682, 40.069789831738944], [-75.18364912476173, 40.06999111135572], [-75.18391276257141, 40.070145631452164], [-75.18465450351158, 40.070566138510706], [-75.1855608441507, 40.07107347214713], [-75.18585788038457, 40.071247696344166], [-75.18623293140867, 40.07146527137888], [-75.18635439238608, 40.07153643854975], [-75.18656090515977, 40.07165815713035], [-75.18695418042498, 40.07188242253921], [-75.18727691346884, 40.07206282928188], [-75.18769578724081, 40.07230280518222], [-75.18805338790312, 40.072504173185806], [-75.18850083767563, 40.072765298951126], [-75.18842266937398, 40.072840843860725], [-75.1870611695249, 40.0741566125007], [-75.18698669964411, 40.0742430456326], [-75.18591820379741, 40.07528352592726], [-75.18584257629753, 40.075350095113144], [-75.1850233512383, 40.07615035378346], [-75.18380354697693, 40.0773740197529], [-75.18194161224882, 40.07641177158509], [-75.18181960944209, 40.076472005835555], [-75.18150775129591, 40.07676652494106], [-75.18127577782226, 40.07701929846174], [-75.181030059986, 40.07727343208425], [-75.18077977253778, 40.07752894161619], [-75.18049874457054, 40.07781947926673], [-75.18028393325905, 40.0780499157515], [-75.1802389798596, 40.077946920259826], [-75.17844985463559, 40.076930025345625], [-75.17684189203585, 40.07598139144614], [-75.17702354357212, 40.07568853946867]]]]}}, {"id": "6300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15559107750623, 40.03621529856409], [-75.14986041135666, 40.03582873929858], [-75.14925006473153, 40.03573632825544], [-75.14872321845299, 40.03567052723887], [-75.14817965587301, 40.035599243543416], [-75.14719897646965, 40.03547322032816], [-75.14643827735868, 40.035379044730846], [-75.14555423769299, 40.03526310349242], [-75.14589858962322, 40.033729038091984], [-75.14622802622662, 40.03218680840395], [-75.1465198569296, 40.03086669439065], [-75.14657623992896, 40.03063853073237], [-75.1466831095684, 40.03022796670184], [-75.1467062707666, 40.03012811909639], [-75.14682785335461, 40.029603964525016], [-75.14685100645652, 40.029482804010044], [-75.14691352343654, 40.02914516669453], [-75.14721962735459, 40.02764514311778], [-75.14755641513194, 40.02613961797357], [-75.14789505568146, 40.024554834487724], [-75.14824630443891, 40.02296067248439], [-75.14911084080961, 40.023087628437445], [-75.14987715742109, 40.0231842466539], [-75.15044000128925, 40.0232544392301], [-75.1506825222888, 40.02328812009111], [-75.15090369245164, 40.02331069599366], [-75.15147241693867, 40.023381528339236], [-75.1522667173414, 40.02348787117297], [-75.15303674304226, 40.02358501513317], [-75.15358036624822, 40.02365797773569], [-75.15405365312745, 40.02372785476409], [-75.15461075489527, 40.02380201274293], [-75.15539798309345, 40.02388910564577], [-75.15618269933954, 40.02398984263152], [-75.15696965137474, 40.02409024536052], [-75.15715360548293, 40.02413182896438], [-75.15724219824413, 40.02408925777339], [-75.15782906553865, 40.02375408545743], [-75.15790589094377, 40.023704912206234], [-75.15903605423988, 40.02280190058979], [-75.15913886526133, 40.023029249784166], [-75.1592144562075, 40.02319330831552], [-75.1593151807718, 40.023411916350135], [-75.15927639149338, 40.02346717452106], [-75.15910561261985, 40.023697600917764], [-75.15896867635486, 40.023937587293304], [-75.1588761454554, 40.02419000396313], [-75.15878786297104, 40.02444363099025], [-75.15870251287683, 40.02469809810343], [-75.15861971166329, 40.024953290334516], [-75.15853907564416, 40.025209097215225], [-75.15846022488144, 40.025465402053776], [-75.15838277571298, 40.02572209347934], [-75.15830634454005, 40.02597905831943], [-75.1582305488609, 40.02623618522761], [-75.15815500634048, 40.02649335835503], [-75.15807933560305, 40.026750467279854], [-75.15800315192656, 40.02700739699868], [-75.1579260739936, 40.027264035287075], [-75.15784799643501, 40.02752034822959], [-75.15777034826526, 40.02777672668455], [-75.15769346172291, 40.02803324843151], [-75.15761740459884, 40.02828991860611], [-75.15754224713022, 40.02854673969627], [-75.15746806296517, 40.02880371697023], [-75.15739491993216, 40.02906085466382], [-75.15732283736757, 40.02931819916721], [-75.1572537030976, 40.029576312987786], [-75.15719465811908, 40.02983560783092], [-75.15715328534526, 40.030096589183955], [-75.15713063868077, 40.030359502505014], [-75.15712118318922, 40.03062276679764], [-75.15711885558103, 40.030885896479255], [-75.15711958910998, 40.03099435210139], [-75.15712063496119, 40.03114911888007], [-75.15712456565255, 40.03141238984647], [-75.1571286918101, 40.03167566882585], [-75.15713109754785, 40.031938911663524], [-75.15713163422186, 40.03220217357025], [-75.15713124379629, 40.032465465000264], [-75.15713060684874, 40.032728766178884], [-75.15713040889257, 40.03299205113556], [-75.15713133069852, 40.033255295594444], [-75.15713405080882, 40.03351847252612], [-75.15713925335662, 40.033781562234935], [-75.15714856928291, 40.03404519711063], [-75.1571768165857, 40.03430843673233], [-75.15724637207973, 40.03456517277133], [-75.15735819077271, 40.03481603849007], [-75.15751279485703, 40.03504927827877], [-75.15772483000877, 40.03525782697669], [-75.15796322411806, 40.03544682161301], [-75.15823082457943, 40.03561202212634], [-75.15850981372526, 40.035766671271105], [-75.15882863365184, 40.03588386659471], [-75.15836467388999, 40.036347448909254], [-75.15837413570682, 40.03668606571486], [-75.15702140499151, 40.03671310349853], [-75.15664349184547, 40.03668758259277], [-75.15638304168068, 40.03664529696424], [-75.1561245406069, 40.03655208788836], [-75.1558581505199, 40.036417443412375], [-75.15559107750623, 40.03621529856409]]]}}, {"id": "6310", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17565377401108, 40.08419536522242], [-75.17534368589227, 40.08401196620428], [-75.17513240532602, 40.083887005460255], [-75.17478569112538, 40.08368194223895], [-75.17451282257665, 40.08352055207597], [-75.17415810344424, 40.08331074839847], [-75.17392483275896, 40.08317277840625], [-75.17357374932254, 40.08296512124009], [-75.1733047962172, 40.082806040432715], [-75.17293752614974, 40.08258880643946], [-75.17206912077135, 40.08207514660764], [-75.1717125938213, 40.081864259219266], [-75.16993233616797, 40.080811185455374], [-75.16826691265771, 40.079825985671924], [-75.16766083538825, 40.07946744025506], [-75.16880378323822, 40.07829299949059], [-75.16931873256533, 40.077784394409086], [-75.16978670514862, 40.0772875187461], [-75.1702893584541, 40.0767687584959], [-75.17073321801493, 40.07701492411452], [-75.17262144318636, 40.078104902334765], [-75.1728799001031, 40.07785070127036], [-75.17314849623152, 40.077577846361805], [-75.17337495601436, 40.07735390531589], [-75.17365569344673, 40.077070581483774], [-75.17506353867036, 40.07787997885392], [-75.17528915694395, 40.07766727790896], [-75.17557507191728, 40.07735456292724], [-75.17587660181164, 40.07703290043079], [-75.17622691145561, 40.07666422121828], [-75.17650168334147, 40.076371483982], [-75.17684189203585, 40.07598139144614], [-75.17844985463559, 40.076930025345625], [-75.1802389798596, 40.077946920259826], [-75.18028393325905, 40.0780499157515], [-75.18049874457054, 40.07781947926673], [-75.18077977253778, 40.07752894161619], [-75.181030059986, 40.07727343208425], [-75.18127577782226, 40.07701929846174], [-75.18150775129591, 40.07676652494106], [-75.18181960944209, 40.076472005835555], [-75.18194161224882, 40.07641177158509], [-75.18380354697693, 40.0773740197529], [-75.18338031680676, 40.07779858590659], [-75.18309433465161, 40.07807587966636], [-75.18287149014344, 40.078292464114064], [-75.18258086041408, 40.07857492735905], [-75.18232052018368, 40.07884043664458], [-75.18203755777367, 40.07910908539153], [-75.18180286135693, 40.079337154012684], [-75.18145425234837, 40.07967940722044], [-75.18111760840718, 40.08001602438674], [-75.18082835390277, 40.080295325576316], [-75.18051355457972, 40.08060664800581], [-75.18026277904949, 40.08085339519159], [-75.18000629267141, 40.08109897260521], [-75.1797465281049, 40.081356162231216], [-75.17947174227169, 40.08161030603028], [-75.17919957785055, 40.08187937536236], [-75.17894425415764, 40.082141941628535], [-75.17868482425071, 40.08239067875266], [-75.17844262597258, 40.08264111363603], [-75.17819946150917, 40.08287791311066], [-75.17794373603151, 40.083129189512114], [-75.17769764878433, 40.083386235797065], [-75.17643825170076, 40.08465273993144], [-75.17617086031584, 40.08449802955405], [-75.17587162456431, 40.08432420858097], [-75.17565377401108, 40.08419536522242]]]}}, {"id": "6320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18475599428261, 40.02828670786825], [-75.18423409720958, 40.02785744191139], [-75.18416957969907, 40.02778727159014], [-75.18354462742221, 40.02726656215683], [-75.18293309559137, 40.02674623378277], [-75.1821248520501, 40.02604741606695], [-75.18166803708723, 40.02565827051328], [-75.17984442801564, 40.024087111001535], [-75.17903439685347, 40.02333017978122], [-75.17813356713184, 40.022588967799784], [-75.1781634577923, 40.02232191114883], [-75.17819654807381, 40.022059883507694], [-75.17822909970849, 40.02179783748928], [-75.17826098048974, 40.02153576743003], [-75.17829207453775, 40.02127366983408], [-75.17832225316255, 40.02101153911683], [-75.17835132003574, 40.020749360970896], [-75.17836483896939, 40.02048572998522], [-75.17835128765265, 40.02022254243119], [-75.17829905577587, 40.01996324862947], [-75.17821811683437, 40.01968915969033], [-75.17812245920452, 40.019436176044145], [-75.17802950186633, 40.01918236889096], [-75.17793398080568, 40.018929343960046], [-75.17783062615489, 40.01867870863221], [-75.17771296225875, 40.01843197748175], [-75.17756704006801, 40.01819271861627], [-75.17738626062157, 40.01796889046678], [-75.1771925170203, 40.01775198501652], [-75.17699866248022, 40.01753513258645], [-75.17680470071932, 40.01731832785329], [-75.17661063755828, 40.01710157184788], [-75.17641647316844, 40.016884860068586], [-75.17622220978954, 40.01666819526803], [-75.1760278511054, 40.01645157302326], [-75.17584542335327, 40.01624838166194], [-75.17575476211923, 40.01614745779258], [-75.17565908381408, 40.01604096033477], [-75.17552671391125, 40.015893697405055], [-75.17544423876154, 40.015801951603464], [-75.17524953212295, 40.01558548770875], [-75.17505474670979, 40.0153690631341], [-75.17485988513735, 40.0151526707297], [-75.17466494844024, 40.01493631412243], [-75.17446994026795, 40.014719989789626], [-75.17427486537244, 40.01450369603558], [-75.17407972733481, 40.01428743113824], [-75.17388452615543, 40.014071195097266], [-75.17368926651781, 40.01385498801739], [-75.173493951003, 40.01363880364923], [-75.17330414845071, 40.01342880284322], [-75.17310316505105, 40.01320650783698], [-75.17290770415151, 40.01299039210142], [-75.17271219560573, 40.012774298360135], [-75.17251664898511, 40.01255822142175], [-75.17232106308491, 40.01234216215997], [-75.17212544499837, 40.01212611893189], [-75.1719297936233, 40.01191008991051], [-75.1717341148136, 40.01169407522714], [-75.17153840994537, 40.01147806950644], [-75.17134268473573, 40.011262076480755], [-75.17114693811662, 40.01104609342295], [-75.17095117611288, 40.010830115963145], [-75.17075539862202, 40.01061414680205], [-75.17055961518098, 40.01039818164876], [-75.1703638212095, 40.0101822176973], [-75.17016802476591, 40.00996625873271], [-75.17012183886611, 40.009915319234196], [-75.17027816930145, 40.009837310105105], [-75.17056549159035, 40.00969421733024], [-75.17085302274307, 40.0095513925516], [-75.17114081893814, 40.009408899199265], [-75.17142893153489, 40.00926680419859], [-75.17171807731377, 40.00912597960543], [-75.17201478572093, 40.00899458472763], [-75.17231497932914, 40.00886798956168], [-75.17261598778865, 40.00874233816866], [-75.17289976733551, 40.00862885398273], [-75.17322881678321, 40.008508366147595], [-75.17354518230786, 40.008407551969064], [-75.17386255750822, 40.00830866613599], [-75.17418020188195, 40.00821038105396], [-75.17450135375312, 40.00811949811968], [-75.17482574100757, 40.00803540932257], [-75.17515173790514, 40.00795495076213], [-75.17547878827409, 40.00787715578088], [-75.17580848000264, 40.00780637581546], [-75.17614027259992, 40.0077412625246], [-75.17647388047243, 40.007682150068774], [-75.17680993770276, 40.007632744984505], [-75.17714771609977, 40.007589819726114], [-75.17748625496522, 40.00755025147113], [-75.17782497552301, 40.00751233965202], [-75.17817990974089, 40.00747547030837], [-75.17850353803009, 40.007442419954835], [-75.17884254943282, 40.00740598482527], [-75.1791808013841, 40.00736527442401], [-75.17949583686833, 40.007330268309794], [-75.17985986450924, 40.007299379194045], [-75.18020121485219, 40.00727939352919], [-75.1805427636371, 40.00726217649447], [-75.18088436810777, 40.00724549489363], [-75.18122601266239, 40.00722923484977], [-75.18156769013017, 40.00721327636771], [-75.18190938624555, 40.00719750109568], [-75.18225108780933, 40.00718179340903], [-75.18259278643873, 40.0071660341871], [-75.18309910876698, 40.007142337153745], [-75.18751678904931, 40.00693619642412], [-75.18875577856281, 40.00687835254241], [-75.18979495444817, 40.00682982508193], [-75.19013391830701, 40.006793039509155], [-75.19047279783496, 40.00675583840279], [-75.19081081926585, 40.00671456625028], [-75.19114793109786, 40.00666897143275], [-75.19148464086909, 40.006621471858764], [-75.19159962191372, 40.00660536533527], [-75.19182140823222, 40.006574296052555], [-75.19215822867767, 40.00652737723856], [-75.19248650438152, 40.00648631915835], [-75.19282909227685, 40.006720041632185], [-75.1931745133191, 40.006946139642274], [-75.1940657933079, 40.007370640630775], [-75.19523788704916, 40.00776465223345], [-75.19662197462642, 40.00814921442729], [-75.19741007533945, 40.00838739067628], [-75.19798662998474, 40.00856163000309], [-75.1995671662532, 40.00910618352392], [-75.20096916234523, 40.0095052402321], [-75.20278453559125, 40.0101681675687], [-75.20411797328548, 40.01067887127354], [-75.20493269018309, 40.011036554083525], [-75.20556089846534, 40.01144637353623], [-75.20583087553283, 40.01162249423849], [-75.20598118504968, 40.011722063535636], [-75.20605558240162, 40.01177134883842], [-75.20613902163231, 40.01182662245913], [-75.20640550638981, 40.012003148204144], [-75.20760649409308, 40.01272404544921], [-75.20739351668358, 40.01320203826188], [-75.20727299953978, 40.01348198569755], [-75.20715783224605, 40.013781971752], [-75.20706619715126, 40.01404822910396], [-75.20692071497255, 40.01436466800637], [-75.20678072668967, 40.0147326026567], [-75.2067059307227, 40.01490263093841], [-75.20662654125256, 40.015083096447846], [-75.20646664769988, 40.015387799942964], [-75.20645087585967, 40.01545245604645], [-75.206387706368, 40.01571141920294], [-75.20617481696412, 40.01604348848058], [-75.20579366609358, 40.01630904026045], [-75.20555030887488, 40.016463477484905], [-75.20530801957125, 40.016589396839564], [-75.20500453014414, 40.01656554618231], [-75.20479875441963, 40.01650961178716], [-75.20451922741914, 40.016440624581826], [-75.20424669291437, 40.01638320741465], [-75.20395932174982, 40.01632546331481], [-75.20364649000336, 40.016352775248386], [-75.20338429793868, 40.0164154592704], [-75.2031640440374, 40.016547571648445], [-75.20303280363615, 40.01668165809953], [-75.20286654166652, 40.016957674676874], [-75.20267609871061, 40.017284526184504], [-75.20246610984428, 40.017736527357975], [-75.20235155632979, 40.01801939652393], [-75.20222066465567, 40.0183418634675], [-75.20199055409695, 40.01873633438742], [-75.20179311252437, 40.01905161270349], [-75.20099183814499, 40.02042093025455], [-75.200933484597, 40.02059088319604], [-75.20082041804712, 40.02083382726441], [-75.20068994333401, 40.02114488354787], [-75.20062160003872, 40.021383111556446], [-75.20054840776287, 40.02155273490167], [-75.20040274633219, 40.02167508186673], [-75.20027234638414, 40.02178635090709], [-75.20007218376311, 40.021975985218994], [-75.19963776060904, 40.02227458377773], [-75.19934170779126, 40.022409689343846], [-75.19918450788889, 40.02248142957175], [-75.19878532457916, 40.022632393583635], [-75.19828926933943, 40.02279261764224], [-75.19773806728172, 40.02303723908307], [-75.1971247232168, 40.02335468413469], [-75.19661673607646, 40.023634510949535], [-75.1962364802291, 40.02385044329653], [-75.19586209060706, 40.02408052814591], [-75.19561451234333, 40.02422300599726], [-75.19539863212474, 40.024435116240824], [-75.19531800535528, 40.02460456940891], [-75.19525727026146, 40.024837256973086], [-75.19523997803107, 40.02509945210123], [-75.19525557906691, 40.02527675470127], [-75.19522160999645, 40.02539016261946], [-75.19516602862579, 40.02548596792842], [-75.1951019554212, 40.02561012271681], [-75.19504616022495, 40.02571163018187], [-75.19496810515115, 40.02581264147189], [-75.19484511016006, 40.02592407125742], [-75.19467674213509, 40.02605732279176], [-75.19449396494984, 40.02617883771931], [-75.19428000791352, 40.02633961354925], [-75.19393735196232, 40.02656602708576], [-75.19374457249535, 40.026755815367316], [-75.19363490933219, 40.026907498464205], [-75.19348244764849, 40.02701256037837], [-75.19330450726073, 40.02720268011006], [-75.19316151110232, 40.027450658973855], [-75.19261246810618, 40.02731614578106], [-75.19248235415391, 40.02739710662348], [-75.19235656838265, 40.02743635435836], [-75.1921111097142, 40.027484402743646], [-75.19176542891499, 40.02755315410919], [-75.1912292953343, 40.02752974194893], [-75.19104928822398, 40.027556311269855], [-75.19089851603299, 40.02759882364573], [-75.19064420187902, 40.0277498809391], [-75.19054476427709, 40.0278814543467], [-75.1904995457736, 40.02802570406753], [-75.19047396785099, 40.02837399003998], [-75.19028403082824, 40.028861861960216], [-75.19015478140203, 40.02899277241513], [-75.18994575152439, 40.02912954578415], [-75.18970849483175, 40.02922364496932], [-75.18940780350799, 40.02928574740464], [-75.18890267908205, 40.02934416339511], [-75.1883624717145, 40.02922889960042], [-75.18737926217861, 40.02909228285243], [-75.18706442961953, 40.02905763697274], [-75.18677892810167, 40.0291124256], [-75.18644380753355, 40.029296073536564], [-75.18619433324473, 40.0294699797975], [-75.18546479446888, 40.02887689787078], [-75.18475599428261, 40.02828670786825]]]}}, {"id": "6340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14646875550979, 40.04622407338927], [-75.14663676712304, 40.04545030860512], [-75.14669300886234, 40.045194628987076], [-75.14677753155169, 40.044849237938145], [-75.14677547274304, 40.04478388096465], [-75.14684915190857, 40.04448263821296], [-75.14695055644779, 40.04401627147233], [-75.14701361561217, 40.043721372621505], [-75.14710460885777, 40.043324167185084], [-75.14714038176054, 40.04310281640004], [-75.14714370082122, 40.0430084054196], [-75.14708428051617, 40.042744899563225], [-75.14699021201726, 40.04254004327967], [-75.14693970827715, 40.0424584486666], [-75.14688229840992, 40.04231870797406], [-75.146857531517, 40.04218180278661], [-75.14685593723742, 40.04208108234812], [-75.14687399161087, 40.04196612419693], [-75.14690535911149, 40.04185985712996], [-75.14697851267586, 40.041731463715664], [-75.14709850337391, 40.04157143906791], [-75.14717808632864, 40.04149643421224], [-75.14740059680261, 40.04124865209369], [-75.1476752049131, 40.040934966381], [-75.14808463273732, 40.040481288460676], [-75.14822050255044, 40.04029680839816], [-75.14833728636707, 40.04008926772206], [-75.14843192760813, 40.039876935680155], [-75.14849532919025, 40.03967890879429], [-75.14852773195206, 40.03948876019615], [-75.14854610688744, 40.03937335949963], [-75.14854554188075, 40.03924251617451], [-75.14853266999647, 40.039003599011316], [-75.14751693464373, 40.0390216568223], [-75.1465864041407, 40.03905049033996], [-75.14483484273276, 40.03909529389763], [-75.14475013943076, 40.03907393952762], [-75.1450944010915, 40.03741430698231], [-75.14514980930565, 40.0371471869134], [-75.14555423769299, 40.03526310349242], [-75.14643827735868, 40.035379044730846], [-75.14719897646965, 40.03547322032816], [-75.14817965587301, 40.035599243543416], [-75.14872321845299, 40.03567052723887], [-75.14925006473153, 40.03573632825544], [-75.14986041135666, 40.03582873929858], [-75.15559107750623, 40.03621529856409], [-75.1558581505199, 40.036417443412375], [-75.1561245406069, 40.03655208788836], [-75.15638304168068, 40.03664529696424], [-75.15664349184547, 40.03668758259277], [-75.15702140499151, 40.03671310349853], [-75.15837413570682, 40.03668606571486], [-75.15841548109299, 40.03750327785943], [-75.15845241039253, 40.03854029926103], [-75.15840456619196, 40.040737478582756], [-75.15835915529544, 40.041488147437796], [-75.15834207328669, 40.04202281718912], [-75.15831847943383, 40.04240956273372], [-75.15830795807854, 40.042862286311994], [-75.15828650750801, 40.04334277765106], [-75.15826273724423, 40.04378326023385], [-75.15749434216939, 40.04376394033985], [-75.15710054390964, 40.04375024955351], [-75.15671170262142, 40.04374406575828], [-75.15586689162292, 40.04372131585984], [-75.15579424451015, 40.045130568462234], [-75.15577069181604, 40.04532887629433], [-75.15574994730251, 40.04581858914535], [-75.15564729333768, 40.04737197878589], [-75.15554903914908, 40.04893607533981], [-75.15550418978171, 40.04957273185858], [-75.15544804124193, 40.050509287563564], [-75.15461967306605, 40.05047573996834], [-75.15392188456589, 40.05045250401035], [-75.15310149329383, 40.05041353940018], [-75.15198400138559, 40.05026771590411], [-75.15127702118768, 40.05017532996552], [-75.15047695034879, 40.050072214971735], [-75.15062969401944, 40.04941735934156], [-75.15082167575875, 40.04851954731878], [-75.15091417024898, 40.04811018793448], [-75.1509824795425, 40.047815942160376], [-75.15104529347037, 40.04747366855939], [-75.15108319635144, 40.047121440951564], [-75.15103283505383, 40.046951987093884], [-75.15096808613218, 40.046768835694195], [-75.15082915483441, 40.04653858372858], [-75.15068101521854, 40.04635332723772], [-75.1486563555371, 40.04629196163454], [-75.14807370799431, 40.046273052569106], [-75.14751948857638, 40.0462558432871], [-75.14646875550979, 40.04622407338927]]]}}, {"id": "6350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15096958553814, 40.06956843639189], [-75.15106191088287, 40.06946857816879], [-75.15110941573222, 40.06938823856531], [-75.15113969247578, 40.06930768861748], [-75.1512590535016, 40.068766755608095], [-75.15154453594731, 40.067492518421346], [-75.15188488782408, 40.06599297260364], [-75.15225506922619, 40.06429891873402], [-75.15294352202838, 40.06429432184391], [-75.1533997052835, 40.064346319747806], [-75.15351422568159, 40.064286960105086], [-75.15358456284916, 40.06419917687332], [-75.15411076692092, 40.063648702720286], [-75.15469973804461, 40.06302558333437], [-75.15520562760757, 40.0625047873463], [-75.15525483072531, 40.0624327360658], [-75.15522895265995, 40.06237394340174], [-75.15446021032547, 40.061154792902464], [-75.15376348409853, 40.06009936287663], [-75.15451465886387, 40.05978796538895], [-75.15527293531468, 40.05947082097148], [-75.15562086138792, 40.05932667201359], [-75.15689851127883, 40.05877686767505], [-75.157200041546, 40.05864718062386], [-75.15737303204526, 40.05858598062293], [-75.15776045979493, 40.058800649227884], [-75.1581641751228, 40.059036116190065], [-75.15841323800502, 40.059182161006305], [-75.15720193376991, 40.06042981662128], [-75.15919973818367, 40.061567179296624], [-75.15961343513683, 40.06181075138843], [-75.15989416367573, 40.061971945302716], [-75.16035182382006, 40.06222962168702], [-75.16060368358214, 40.062369944395606], [-75.16099326125268, 40.062595900743204], [-75.16123426856046, 40.06273231936118], [-75.1616641649705, 40.06298405418257], [-75.16195977544348, 40.06315890313737], [-75.1620197780772, 40.0630962169184], [-75.16254871651984, 40.063285958426555], [-75.16292411240609, 40.063410709422975], [-75.16344190448093, 40.06359655565086], [-75.16378784926586, 40.063712558698455], [-75.1643836856483, 40.063926607255304], [-75.16480035602746, 40.06407242015249], [-75.16534808383226, 40.06426613015285], [-75.16571540071172, 40.06439171631164], [-75.16622136222205, 40.06457189914461], [-75.16654186059458, 40.06468055848998], [-75.16695979762125, 40.06482743429275], [-75.16731697579957, 40.06494737580528], [-75.1677689939968, 40.065108487428574], [-75.16809985399476, 40.06522082243321], [-75.16607391930532, 40.06719546211728], [-75.16570662695527, 40.06743917295645], [-75.16531857078982, 40.06770751422005], [-75.16514635504116, 40.06782087737948], [-75.16487677547958, 40.06800838818451], [-75.16463785158234, 40.068194280617526], [-75.16436155806885, 40.068424816613124], [-75.16410687905979, 40.06866398623474], [-75.16342108161521, 40.06933393255309], [-75.16274583591098, 40.06999711536643], [-75.1623238000922, 40.070408124113825], [-75.16203667711369, 40.070686408849866], [-75.16180113346527, 40.07091280571107], [-75.16161519042359, 40.07109386403413], [-75.16138802540127, 40.071313389393225], [-75.1613133773838, 40.07138793441847], [-75.16110506465807, 40.07195354846603], [-75.16102579413145, 40.07227280606486], [-75.1609187723063, 40.07271045947612], [-75.16082425301092, 40.073095104095074], [-75.16077029469126, 40.07331416167603], [-75.16071675585628, 40.0735384122146], [-75.16069589137035, 40.07366282968974], [-75.16064054996237, 40.07404220389587], [-75.16057136671013, 40.07442377191166], [-75.16055753540152, 40.07453012215321], [-75.16050594436373, 40.07483288570474], [-75.1604288812882, 40.07531266399091], [-75.15912148998693, 40.07459926761436], [-75.15838366762185, 40.0741818577783], [-75.15662764764954, 40.073184684935896], [-75.1558340546091, 40.072734017011875], [-75.15469496358601, 40.07208558563241], [-75.15407609241902, 40.071733279851415], [-75.15333305739387, 40.071310283447445], [-75.15275632915203, 40.07098195424609], [-75.15218557363076, 40.070657020518695], [-75.1518743522914, 40.07047983851803], [-75.1515895445759, 40.07031768987099], [-75.1507247653823, 40.06982534507238], [-75.15096958553814, 40.06956843639189]]]}}, {"id": "6360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16020566761645, 40.021312918917715], [-75.160587094013, 40.02047412659202], [-75.16064104200257, 40.02032672424692], [-75.16065723063446, 40.020267866462135], [-75.16069195307685, 40.020154843997446], [-75.16165740699451, 40.019866523130446], [-75.16260104521236, 40.019587285956476], [-75.1637594507446, 40.01923581659435], [-75.16382947760472, 40.01918243550099], [-75.1642100579168, 40.01894959041402], [-75.16451672375794, 40.01882070935512], [-75.16549601289547, 40.018389849712655], [-75.16580943584417, 40.018250581845486], [-75.16595069899675, 40.01817014864473], [-75.16612297805914, 40.01804860618353], [-75.16637408236633, 40.017853963773874], [-75.16686766643225, 40.017471360816195], [-75.16726952579513, 40.01715117286135], [-75.16773914456775, 40.01677676715074], [-75.1681011247023, 40.0164922616461], [-75.16830601223785, 40.01634706248918], [-75.16843373327283, 40.016281090405364], [-75.16875550853955, 40.016063754154686], [-75.16903385880265, 40.01586767344456], [-75.16922639801739, 40.015723223219084], [-75.16932388598943, 40.01561308507677], [-75.16990856732517, 40.015251275367135], [-75.17185110939445, 40.01421865254688], [-75.17330414845071, 40.01342880284322], [-75.173493951003, 40.01363880364923], [-75.17368926651781, 40.01385498801739], [-75.17388452615543, 40.014071195097266], [-75.17407972733481, 40.01428743113824], [-75.17427486537244, 40.01450369603558], [-75.17446994026795, 40.014719989789626], [-75.17466494844024, 40.01493631412243], [-75.17485988513735, 40.0151526707297], [-75.17505474670979, 40.0153690631341], [-75.17524953212295, 40.01558548770875], [-75.17544423876154, 40.015801951603464], [-75.17552671391125, 40.015893697405055], [-75.17565908381408, 40.01604096033477], [-75.17575476211923, 40.01614745779258], [-75.17584542335327, 40.01624838166194], [-75.1760278511054, 40.01645157302326], [-75.17622220978954, 40.01666819526803], [-75.17641647316844, 40.016884860068586], [-75.17661063755828, 40.01710157184788], [-75.17680470071932, 40.01731832785329], [-75.17699866248022, 40.01753513258645], [-75.1771925170203, 40.01775198501652], [-75.17738626062157, 40.01796889046678], [-75.17756704006801, 40.01819271861627], [-75.17771296225875, 40.01843197748175], [-75.17783062615489, 40.01867870863221], [-75.17793398080568, 40.018929343960046], [-75.17802950186633, 40.01918236889096], [-75.17812245920452, 40.019436176044145], [-75.17821811683437, 40.01968915969033], [-75.17829905577587, 40.01996324862947], [-75.17835128765265, 40.02022254243119], [-75.17836483896939, 40.02048572998522], [-75.17835132003574, 40.020749360970896], [-75.17832225316255, 40.02101153911683], [-75.17829207453775, 40.02127366983408], [-75.17826098048974, 40.02153576743003], [-75.17822909970849, 40.02179783748928], [-75.17819654807381, 40.022059883507694], [-75.1781634577923, 40.02232191114883], [-75.17813356713184, 40.022588967799784], [-75.17903439685347, 40.02333017978122], [-75.17984442801564, 40.024087111001535], [-75.18166803708723, 40.02565827051328], [-75.1821248520501, 40.02604741606695], [-75.18293309559137, 40.02674623378277], [-75.18354462742221, 40.02726656215683], [-75.182702183151, 40.028056239616085], [-75.18148137413901, 40.02926532344677], [-75.18088365695873, 40.029841509241315], [-75.18029157893811, 40.030412246474555], [-75.17891466313162, 40.0317380686852], [-75.1788081294255, 40.03185131024302], [-75.1784680745982, 40.03217747122257], [-75.17773994379091, 40.032891613455284], [-75.17757545599665, 40.033047573898465], [-75.17649623766056, 40.03409785740428], [-75.17472531934024, 40.03582198106344], [-75.17520805709144, 40.03623377954292], [-75.17562257070458, 40.0367689105063], [-75.17614415827084, 40.0374530957513], [-75.17642853248903, 40.037795390475246], [-75.17695591195294, 40.03842372889561], [-75.17762916337077, 40.03923034817212], [-75.17775844345613, 40.039402056474906], [-75.1786313883227, 40.04045502151935], [-75.17871264213939, 40.04055843101864], [-75.17912977440957, 40.04106626641239], [-75.17963202957364, 40.04168252762443], [-75.17998167048039, 40.04209473357406], [-75.18088411064987, 40.0432480218722], [-75.18097922010578, 40.04333838114339], [-75.18117466376285, 40.04361035144422], [-75.18125703292239, 40.043733829527675], [-75.18143093247392, 40.04416263987507], [-75.18170260015731, 40.044832379521964], [-75.18220444401027, 40.0458957297085], [-75.18279836557451, 40.04707577114246], [-75.18339861136822, 40.04825532226838], [-75.18376010127409, 40.04891675714872], [-75.18391838926657, 40.04920943606664], [-75.18396765482593, 40.049314893850955], [-75.18420344684705, 40.049775693340166], [-75.18436784380793, 40.05006963513841], [-75.18457340886603, 40.05040492237618], [-75.1846937674163, 40.05064241151825], [-75.18501659720498, 40.05121743514732], [-75.18522100345294, 40.05158637481057], [-75.18528871203894, 40.051744551606674], [-75.18568090856587, 40.0524229651019], [-75.18611595407215, 40.053247312429534], [-75.18651717607368, 40.053967139677184], [-75.1867785678006, 40.05450532939778], [-75.18696188620653, 40.05482355399488], [-75.18730678094542, 40.05548581666945], [-75.18653553874663, 40.05621047774239], [-75.1849563775198, 40.05773494212012], [-75.18486134639281, 40.05779373121243], [-75.18476966794022, 40.05785849127056], [-75.18404519236326, 40.05857345529716], [-75.18336624418237, 40.059221535836], [-75.18177885875095, 40.06076888207175], [-75.18155571566143, 40.061006075885004], [-75.18131392482739, 40.06122210131275], [-75.18115290444139, 40.061375417270774], [-75.18103175837003, 40.061331233541814], [-75.18072219957281, 40.0612184795709], [-75.18041237768011, 40.06110616575838], [-75.18010210008383, 40.06099460945412], [-75.17978995236567, 40.06088607658467], [-75.1794761022797, 40.06078031680443], [-75.1791640113303, 40.06067185283692], [-75.17885517364552, 40.060557399718036], [-75.17854709002448, 40.06043969196185], [-75.17825011568553, 40.06030907909555], [-75.17797306082973, 40.06015596266008], [-75.17786819767917, 40.06008571522395], [-75.1777137531315, 40.059982251152746], [-75.1774727246601, 40.05979444836981], [-75.17724499618087, 40.0595983481416], [-75.17702481901934, 40.05939641041052], [-75.17681100212951, 40.05919014206236], [-75.1766023533545, 40.058981048146265], [-75.17639803953782, 40.05876979389417], [-75.1761994717258, 40.058554821559156], [-75.17600881660165, 40.05833576524766], [-75.17582822362066, 40.058112341586416], [-75.17566016370529, 40.05788293281444], [-75.17550645600836, 40.05764690489541], [-75.17536810749817, 40.05740605364031], [-75.1752495582113, 40.05715893337811], [-75.17516113351942, 40.056903685234026], [-75.17514798273434, 40.056839725193974], [-75.17510785609336, 40.05664457640369], [-75.17507933319033, 40.05638220025059], [-75.17506031602504, 40.05611862254066], [-75.17504089384201, 40.05585549435688], [-75.17503111300805, 40.055591480315336], [-75.1750118866538, 40.05532876015456], [-75.17495847107281, 40.05507018780081], [-75.17486440654937, 40.05481655635975], [-75.1747608547261, 40.05456490612149], [-75.17465933962295, 40.054312964447234], [-75.17454506276708, 40.05406488302684], [-75.17440688262629, 40.053823769205636], [-75.17424056057901, 40.053592781409186], [-75.17403840687084, 40.053381793351825], [-75.17381241180091, 40.05318350612949], [-75.17358005010088, 40.052988992343515], [-75.17335044401179, 40.05279367128519], [-75.17311902812443, 40.05259960659701], [-75.1728866854698, 40.05240617655712], [-75.17256355291329, 40.05213675514574], [-75.172357958871, 40.05192621020427], [-75.17216182099546, 40.051725161961755], [-75.1721527570008, 40.051715590770904], [-75.17194564025809, 40.05150565958964], [-75.1717302446799, 40.05130067346059], [-75.17152726633, 40.051089120617476], [-75.17136800824716, 40.05085547655511], [-75.17125881986824, 40.050606284767596], [-75.1711520694657, 40.050356452903564], [-75.17112820941101, 40.050300315011405], [-75.1710466086001, 40.05010618224366], [-75.17094216748087, 40.049855568549134], [-75.17083862208125, 40.0496046667032], [-75.17073576482973, 40.04935353962386], [-75.1706333927059, 40.04910225393454], [-75.17060415461262, 40.04903026260365], [-75.16927029423954, 40.048207577481364], [-75.16884922937358, 40.04795506324941], [-75.16770275926207, 40.047246253974855], [-75.16684701465616, 40.04672479830209], [-75.16603828529823, 40.046219158406636], [-75.16556840861145, 40.045923622089], [-75.16483188229346, 40.045469253398956], [-75.16608592135853, 40.04424446434573], [-75.16720798133798, 40.04315036478413], [-75.16709265379062, 40.04309643913794], [-75.16611271882427, 40.04249277144439], [-75.1658194402422, 40.04231065211631], [-75.16507823000445, 40.04185959534455], [-75.16369002224152, 40.04100194564999], [-75.16087097790971, 40.039344789566556], [-75.15845241039253, 40.03854029926103], [-75.15841548109299, 40.03750327785943], [-75.15837413570682, 40.03668606571486], [-75.15702140499151, 40.03671310349853], [-75.15664349184547, 40.03668758259277], [-75.15638304168068, 40.03664529696424], [-75.1561245406069, 40.03655208788836], [-75.1558581505199, 40.036417443412375], [-75.15559107750623, 40.03621529856409], [-75.14986041135666, 40.03582873929858], [-75.14925006473153, 40.03573632825544], [-75.14872321845299, 40.03567052723887], [-75.14817965587301, 40.035599243543416], [-75.14719897646965, 40.03547322032816], [-75.14643827735868, 40.035379044730846], [-75.14555423769299, 40.03526310349242], [-75.14589858962322, 40.033729038091984], [-75.14622802622662, 40.03218680840395], [-75.1465198569296, 40.03086669439065], [-75.14657623992896, 40.03063853073237], [-75.1466831095684, 40.03022796670184], [-75.1467062707666, 40.03012811909639], [-75.14682785335461, 40.029603964525016], [-75.14685100645652, 40.029482804010044], [-75.14691352343654, 40.02914516669453], [-75.14721962735459, 40.02764514311778], [-75.14755641513194, 40.02613961797357], [-75.14789505568146, 40.024554834487724], [-75.14824630443891, 40.02296067248439], [-75.14911084080961, 40.023087628437445], [-75.14987715742109, 40.0231842466539], [-75.15044000128925, 40.0232544392301], [-75.1506825222888, 40.02328812009111], [-75.15090369245164, 40.02331069599366], [-75.15147241693867, 40.023381528339236], [-75.1522667173414, 40.02348787117297], [-75.15303674304226, 40.02358501513317], [-75.15358036624822, 40.02365797773569], [-75.15405365312745, 40.02372785476409], [-75.15461075489527, 40.02380201274293], [-75.15539798309345, 40.02388910564577], [-75.15618269933954, 40.02398984263152], [-75.15696965137474, 40.02409024536052], [-75.15715360548293, 40.02413182896438], [-75.15724219824413, 40.02408925777339], [-75.15782906553865, 40.02375408545743], [-75.15790589094377, 40.023704912206234], [-75.15903605423988, 40.02280190058979], [-75.15950224294882, 40.0223432341361], [-75.16020566761645, 40.021312918917715]]]}}, {"id": "6380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23035277957234, 40.08267476866629], [-75.2301794942427, 40.08268756335315], [-75.22994207044799, 40.082682357964245], [-75.22977155525922, 40.08262054487449], [-75.2295258070147, 40.082548784516646], [-75.22927296615082, 40.08237731115313], [-75.22859076107581, 40.08213419633967], [-75.22807028453268, 40.0818987752061], [-75.22765618786684, 40.08170716616172], [-75.22735185996784, 40.08146818773472], [-75.22703520302512, 40.081270419520784], [-75.22680611171896, 40.08104138831406], [-75.22649284903395, 40.08075243236348], [-75.22624434014634, 40.08046489740403], [-75.22604917455128, 40.08019512778883], [-75.22594742726926, 40.08002696375382], [-75.22590025895488, 40.07984340828304], [-75.22573716086733, 40.07958263595362], [-75.22552041613174, 40.079312390476254], [-75.22548247315505, 40.079246018795054], [-75.22533789600043, 40.078993118274425], [-75.22518436116688, 40.07876574232143], [-75.22478958021959, 40.07805602214], [-75.22467335998041, 40.077696720978004], [-75.224484071298, 40.07726944502672], [-75.22430372483832, 40.07689214332473], [-75.22406757151978, 40.07656339285195], [-75.22380275568308, 40.07613445377599], [-75.22361224171561, 40.07574033461288], [-75.22348246180022, 40.0754554028763], [-75.2233640900345, 40.075154129066924], [-75.2231222525839, 40.07468836155796], [-75.22301405654467, 40.074403903759965], [-75.22301253280233, 40.07415497688277], [-75.22306465107508, 40.073915526763315], [-75.22321480880846, 40.07365334319305], [-75.22340473110751, 40.073483293600965], [-75.2239359479737, 40.07313822547624], [-75.22444187609301, 40.072892156381826], [-75.22475048568877, 40.072724712956685], [-75.22509269992044, 40.07252482076271], [-75.22535845521037, 40.07234813966267], [-75.22541857825082, 40.0721835307691], [-75.22555330614519, 40.07204545248316], [-75.22560689750236, 40.07186637332087], [-75.22562730372316, 40.07179818477979], [-75.22560156553432, 40.071619246971714], [-75.2254776385463, 40.07146718940843], [-75.22534045015375, 40.071381212063194], [-75.22517243854045, 40.07125307378348], [-75.22494153696408, 40.071073775280794], [-75.22466778663087, 40.07088523922988], [-75.22436228313141, 40.07067941101737], [-75.22391898414968, 40.07040418218518], [-75.22354073415222, 40.07012208264088], [-75.22323554624268, 40.06990796365707], [-75.22303764245397, 40.06971279303993], [-75.22283726891679, 40.06958394131134], [-75.22264923022982, 40.06941387780444], [-75.22252469618299, 40.069278394369626], [-75.22244393540804, 40.06912728358061], [-75.22227624376103, 40.06899085148552], [-75.22206724680694, 40.06880373321647], [-75.2217426532696, 40.06853110678613], [-75.2213027771429, 40.06816468169993], [-75.2209179347524, 40.06777042698577], [-75.22072344387293, 40.06748406897721], [-75.22057950109134, 40.06729008239717], [-75.22054237296345, 40.06721474649943], [-75.22050923080047, 40.06714749556472], [-75.220482425938, 40.0669975700272], [-75.22040538564119, 40.06674698042691], [-75.22035054142914, 40.0664802875594], [-75.22040204497277, 40.066257416762774], [-75.22047265223308, 40.06610134012056], [-75.22075320409613, 40.06581714015489], [-75.22104144863594, 40.06561607340886], [-75.22150726258572, 40.06528617072171], [-75.22191572875089, 40.06504626453165], [-75.2225177766978, 40.0648272096523], [-75.22300837908303, 40.06470110721599], [-75.22328242911209, 40.064590983781855], [-75.22344920425138, 40.06446190919216], [-75.22352011258054, 40.06429754021719], [-75.22357191279042, 40.06406637840206], [-75.22352506966465, 40.06387452948777], [-75.22340116030304, 40.06372246959266], [-75.22315118059892, 40.06347637636253], [-75.22289134395056, 40.063205176676256], [-75.22263243242793, 40.062909106714166], [-75.22239510269806, 40.06261351176765], [-75.22223174936673, 40.06236102554656], [-75.22215378114606, 40.062135306657616], [-75.2220866007378, 40.06190982594182], [-75.22187242274134, 40.06128287912471], [-75.22171077373474, 40.06098480042213], [-75.22150890942957, 40.060607018300935], [-75.22134432944159, 40.060387689084486], [-75.22117851331238, 40.06020151786903], [-75.22101022821018, 40.06008166299098], [-75.22079817161715, 40.05997743888005], [-75.22064160075098, 40.05983295308749], [-75.22047671514694, 40.0596219130589], [-75.22035622174903, 40.05937866375898], [-75.2202690184377, 40.05911125636288], [-75.22000491297439, 40.05866572988123], [-75.2198246408614, 40.0582884207507], [-75.21965144839187, 40.058010823670315], [-75.21938886133773, 40.057814222902245], [-75.21920948591723, 40.05770241727509], [-75.21894168160546, 40.05735636486365], [-75.21870160256275, 40.057135367329046], [-75.21853611088002, 40.05694090450774], [-75.21841315458913, 40.056763968720674], [-75.21829851055543, 40.05665358966609], [-75.21815707259692, 40.05639328255384], [-75.21796293545793, 40.05609862743273], [-75.21786557809817, 40.055814404931795], [-75.21784527981154, 40.055490394310446], [-75.2178326859878, 40.055389555593784], [-75.21779540748678, 40.0550910671567], [-75.21776370587726, 40.05478339972237], [-75.21766975489608, 40.05440798827836], [-75.21754932117564, 40.053874360860874], [-75.21740545851311, 40.053389994172306], [-75.21721381115472, 40.05302902401661], [-75.2170101374423, 40.052700972060066], [-75.21679072538791, 40.05250531568779], [-75.21632692950475, 40.05220471199618], [-75.2157779251754, 40.05187318942014], [-75.21542076776456, 40.05160811879584], [-75.2152226300174, 40.05142122678272], [-75.21501401520094, 40.05122580502872], [-75.21477366202399, 40.05101308969664], [-75.21457095142553, 40.050756997128204], [-75.2145028979404, 40.05067102121905], [-75.21405097697317, 40.04984477259543], [-75.21391448667507, 40.04952210070516], [-75.21378225812595, 40.04908535721496], [-75.21366632770139, 40.04880880505784], [-75.21350331205412, 40.04859970973842], [-75.21333116833364, 40.04843607880874], [-75.21312784812656, 40.048311716613625], [-75.2129769046371, 40.04817709331067], [-75.21260865508998, 40.047894967336916], [-75.2123826464751, 40.047781519170755], [-75.21215049774804, 40.04763368703058], [-75.21194910224808, 40.04745799020771], [-75.21176848115175, 40.04732271042747], [-75.21164658531441, 40.047205853263726], [-75.21158363596008, 40.04710171417034], [-75.21158218854448, 40.04694185216979], [-75.21166066758568, 40.046829422513625], [-75.2118452230371, 40.046462466295836], [-75.21194387704928, 40.046207777510205], [-75.21204231820863, 40.04595879087753], [-75.21210957954078, 40.045749073728594], [-75.21217974815472, 40.044865850199635], [-75.21219062724198, 40.0445749723814], [-75.21217139683955, 40.04429484411868], [-75.2121443171284, 40.04402596169148], [-75.21204981105043, 40.04377271123764], [-75.21192903529322, 40.04342755048803], [-75.2117895800312, 40.043184724066734], [-75.21167373864417, 40.043090419187074], [-75.21155894192873, 40.04299696438598], [-75.21134549627982, 40.04274679443542], [-75.21105767616733, 40.04230090130406], [-75.2109046653704, 40.04202352346143], [-75.21085954892055, 40.04183986385273], [-75.21083797713106, 40.04162247498826], [-75.21072889124217, 40.04132547366802], [-75.21056168484728, 40.04087022688045], [-75.21048075797292, 40.04064989036193], [-75.21016113787074, 40.040260373489794], [-75.21001704965896, 40.039943234008625], [-75.20981167851987, 40.03967611498109], [-75.20955799502023, 40.03931088753139], [-75.20931744791032, 40.03899161630986], [-75.20912457299517, 40.03878756032005], [-75.20886897664359, 40.03847366389456], [-75.20865234891762, 40.038309040909205], [-75.20837657449391, 40.03813739998149], [-75.20807811152633, 40.03797667283057], [-75.20772920774597, 40.03777487177704], [-75.20721562476146, 40.03740959192733], [-75.20697424047722, 40.037113130006546], [-75.20676696501357, 40.03689733615117], [-75.2065986085726, 40.036631961173214], [-75.20699511141257, 40.03649295570227], [-75.20914139137474, 40.035659851691165], [-75.20912218928297, 40.035621840775775], [-75.20894890862664, 40.03524245326302], [-75.20970207086455, 40.034975212048174], [-75.21069571487631, 40.03470016806649], [-75.21163946652192, 40.03425528193702], [-75.21449335806577, 40.0328392244125], [-75.21517657247027, 40.03344632792387], [-75.2153611594672, 40.033612978699125], [-75.21588220473366, 40.03405846904807], [-75.21600243118746, 40.03418744879971], [-75.2164164162974, 40.034606030367065], [-75.21663988774236, 40.034834138713485], [-75.21738290949676, 40.035585013994464], [-75.21792679239577, 40.03616127321977], [-75.21808156983627, 40.036298049985746], [-75.21818332016892, 40.03637186635479], [-75.21848040560981, 40.03654179248017], [-75.21876044719933, 40.03665586418302], [-75.21939787277367, 40.03691246463764], [-75.22067011533525, 40.03730541500676], [-75.22129409897332, 40.03752006547368], [-75.22178364076424, 40.03768423026475], [-75.22205297800791, 40.03777701262175], [-75.22280951936881, 40.038112997139116], [-75.22327148183568, 40.03873508257713], [-75.22339531056211, 40.03890199136062], [-75.22380787878424, 40.03943822398916], [-75.2261606942151, 40.03836248679967], [-75.22704014575491, 40.037811684914686], [-75.22817973172945, 40.03708302145663], [-75.22846478302714, 40.03691109620618], [-75.2291463474606, 40.036476921844844], [-75.23004048990013, 40.03591082603452], [-75.23110561965497, 40.0352203738803], [-75.23294892141585, 40.03440870118229], [-75.23334791606099, 40.03422990450476], [-75.23347140626689, 40.0341891572001], [-75.23356293339191, 40.03414453166594], [-75.23365926823085, 40.034091376274894], [-75.23400675069436, 40.03391051627217], [-75.23492237238553, 40.033507810813035], [-75.23548278380052, 40.033266081633215], [-75.23659973518544, 40.032788969997156], [-75.23794421073465, 40.03207409545746], [-75.2383207666653, 40.032276133395676], [-75.23981029716893, 40.03331339537024], [-75.24048991682038, 40.03385182089564], [-75.24126945829778, 40.03467543949548], [-75.24188660444196, 40.035410599628975], [-75.24242328641597, 40.03583268652996], [-75.2429794123921, 40.03622689416779], [-75.24352237310877, 40.036479305759755], [-75.24437387203027, 40.036851649750155], [-75.24495050064645, 40.03718969357607], [-75.24559602036331, 40.037656590452954], [-75.24617090319563, 40.038291751393665], [-75.24700119872512, 40.03973906042202], [-75.24792075661651, 40.04076378900924], [-75.24904061279294, 40.04184947352197], [-75.25098609010281, 40.04326442539769], [-75.25288357388546, 40.04473489920496], [-75.25431892977208, 40.04575663310977], [-75.25589350664505, 40.04649835845789], [-75.25765698741405, 40.047612077465544], [-75.25962262300425, 40.04923956838294], [-75.26109832862248, 40.05067245466669], [-75.2626772349632, 40.05230566326601], [-75.26440145602456, 40.05411924457915], [-75.26386876848365, 40.05455088467353], [-75.26364402450334, 40.05475780096561], [-75.2635192278265, 40.05487269924374], [-75.26322298086806, 40.05514544642252], [-75.24345817374991, 40.07333560805698], [-75.24328766603712, 40.07349322360966], [-75.24313842579609, 40.07363184419745], [-75.24306339869048, 40.07370411565387], [-75.24210907881313, 40.07464282449793], [-75.24128588359679, 40.07545310524678], [-75.24095812787534, 40.07576877273638], [-75.24067409635178, 40.07605051585533], [-75.24039019564327, 40.076341496314605], [-75.24012963143099, 40.07659792106551], [-75.23999636903362, 40.0767244513198], [-75.23965572220074, 40.07704923562079], [-75.23936865476257, 40.077321574264296], [-75.23821696094798, 40.07847643574011], [-75.23770858074418, 40.078980513623826], [-75.2371717123157, 40.07950751482991], [-75.23668159485884, 40.07999675562678], [-75.23622461299013, 40.08045186530228], [-75.23609103734573, 40.08058545994921], [-75.23301936788978, 40.08363141840429], [-75.23266787022823, 40.08342299244986], [-75.23196115806692, 40.08313193953048], [-75.23115540153664, 40.082874882829444], [-75.23097501668049, 40.08278796537604], [-75.23078260987309, 40.08273396945265], [-75.23055659477808, 40.08271242363329], [-75.23035277957234, 40.08267476866629]]]}}, {"id": "6390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15618269933954, 40.02398984263152], [-75.15539798309345, 40.02388910564577], [-75.15461075489527, 40.02380201274293], [-75.15405365312745, 40.02372785476409], [-75.15358036624822, 40.02365797773569], [-75.15303674304226, 40.02358501513317], [-75.1522667173414, 40.02348787117297], [-75.15147241693867, 40.023381528339236], [-75.15090369245164, 40.02331069599366], [-75.1506825222888, 40.02328812009111], [-75.15044000128925, 40.0232544392301], [-75.14987715742109, 40.0231842466539], [-75.14911084080961, 40.023087628437445], [-75.14824630443891, 40.02296067248439], [-75.14856756631274, 40.02147712508312], [-75.14869223870237, 40.02095431395297], [-75.14873876523373, 40.02071218205933], [-75.14885054693626, 40.020202287719464], [-75.14893672041177, 40.01982773281143], [-75.14895440785872, 40.01974442881808], [-75.14899401136766, 40.019573800755275], [-75.14923089340353, 40.01850378775497], [-75.1493475064601, 40.017958839322176], [-75.14958686700786, 40.01693362198721], [-75.14972718930441, 40.016216009188604], [-75.14977041330002, 40.01602280409584], [-75.14983979568106, 40.01567315281484], [-75.14993222382938, 40.01532671020396], [-75.15014844385973, 40.01534175888267], [-75.1503365517051, 40.015306352452406], [-75.15078016813321, 40.0151401698474], [-75.15094138488286, 40.01523564381474], [-75.15121604470929, 40.01539290912895], [-75.15149048826045, 40.015550775247235], [-75.15177659420125, 40.015694582898824], [-75.15207891659178, 40.015818381098214], [-75.15238807819273, 40.015931755249575], [-75.15270503067173, 40.01603139125947], [-75.1530274643304, 40.016120194868904], [-75.15324693958607, 40.01617530203144], [-75.15335320453102, 40.01620198402418], [-75.15368454348616, 40.01626716423652], [-75.15406802819236, 40.016323599506364], [-75.15435919764802, 40.01635785398967], [-75.15469996687044, 40.01638631532018], [-75.15504172966676, 40.01639847886657], [-75.15538440697776, 40.016397019760355], [-75.15572648503664, 40.016383367047936], [-75.1560662031187, 40.01635348405228], [-75.1565538522124, 40.01629451651498], [-75.15688822595365, 40.01623613107863], [-75.157218111556, 40.01616711405825], [-75.15753812329432, 40.016074266545736], [-75.15772865369271, 40.01601172539366], [-75.15785344588112, 40.015970763203924], [-75.15816828945724, 40.01586664362334], [-75.15847900854268, 40.0157557355624], [-75.15877274865699, 40.0156218460325], [-75.15905493993432, 40.01547215715871], [-75.15934004986012, 40.015326221328756], [-75.15962657390058, 40.01518216380263], [-75.15991310674733, 40.01503811930221], [-75.16019965081081, 40.01489408607971], [-75.16048620023716, 40.01475006400301], [-75.16077276211982, 40.01460605143004], [-75.16105932819474, 40.014462049976366], [-75.16134590331674, 40.01431805524632], [-75.16163248269973, 40.014174069834986], [-75.16190138857833, 40.01403897573039], [-75.16220566147976, 40.01388612172527], [-75.16249225746749, 40.01374215624688], [-75.16277885785378, 40.01359819648607], [-75.16306546146778, 40.01345424241642], [-75.16335206958335, 40.0133102913636], [-75.16363867861956, 40.01316634504888], [-75.16392529098655, 40.01302240172455], [-75.16421190320634, 40.01287846041121], [-75.16449851879126, 40.01273452118798], [-75.16478513202462, 40.01259058032205], [-75.16507174621306, 40.012446643293906], [-75.1653583592207, 40.01230270464945], [-75.1656449698768, 40.012158764362326], [-75.16593157814704, 40.012014823332706], [-75.16621818761232, 40.01187087983926], [-75.1665047889065, 40.01172693367119], [-75.16679138915686, 40.011582982285844], [-75.16707798591912, 40.011439028331296], [-75.16736457698876, 40.01129506815394], [-75.16765116339951, 40.0111511053811], [-75.16777770010867, 40.01108753491117], [-75.16793774191312, 40.011007132731905], [-75.16826850056458, 40.010840955359306], [-75.16855578983157, 40.0106978189312], [-75.16884292685465, 40.01055449368053], [-75.1691299666026, 40.01041104391501], [-75.16941695932798, 40.01026753473676], [-75.1697039552153, 40.01012403304795], [-75.16999100923545, 40.009980603154695], [-75.17012183886611, 40.009915319234196], [-75.17016802476591, 40.00996625873271], [-75.1703638212095, 40.0101822176973], [-75.17055961518098, 40.01039818164876], [-75.17075539862202, 40.01061414680205], [-75.17095117611288, 40.010830115963145], [-75.17114693811662, 40.01104609342295], [-75.17134268473573, 40.011262076480755], [-75.17153840994537, 40.01147806950644], [-75.1717341148136, 40.01169407522714], [-75.1719297936233, 40.01191008991051], [-75.17212544499837, 40.01212611893189], [-75.17232106308491, 40.01234216215997], [-75.17251664898511, 40.01255822142175], [-75.17271219560573, 40.012774298360135], [-75.17290770415151, 40.01299039210142], [-75.17310316505105, 40.01320650783698], [-75.17330414845071, 40.01342880284322], [-75.17185110939445, 40.01421865254688], [-75.16990856732517, 40.015251275367135], [-75.16932388598943, 40.01561308507677], [-75.16922639801739, 40.015723223219084], [-75.16903385880265, 40.01586767344456], [-75.16875550853955, 40.016063754154686], [-75.16843373327283, 40.016281090405364], [-75.16830601223785, 40.01634706248918], [-75.1681011247023, 40.0164922616461], [-75.16773914456775, 40.01677676715074], [-75.16726952579513, 40.01715117286135], [-75.16686766643225, 40.017471360816195], [-75.16637408236633, 40.017853963773874], [-75.16612297805914, 40.01804860618353], [-75.16595069899675, 40.01817014864473], [-75.16580943584417, 40.018250581845486], [-75.16549601289547, 40.018389849712655], [-75.16451672375794, 40.01882070935512], [-75.1642100579168, 40.01894959041402], [-75.16382947760472, 40.01918243550099], [-75.1637594507446, 40.01923581659435], [-75.16260104521236, 40.019587285956476], [-75.16165740699451, 40.019866523130446], [-75.16069195307685, 40.020154843997446], [-75.16065723063446, 40.020267866462135], [-75.16064104200257, 40.02032672424692], [-75.160587094013, 40.02047412659202], [-75.16020566761645, 40.021312918917715], [-75.15950224294882, 40.0223432341361], [-75.15903605423988, 40.02280190058979], [-75.15790589094377, 40.023704912206234], [-75.15782906553865, 40.02375408545743], [-75.15724219824413, 40.02408925777339], [-75.15715360548293, 40.02413182896438], [-75.15696965137474, 40.02409024536052], [-75.15618269933954, 40.02398984263152]]]}}, {"id": "6410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20607098712954, 40.03545486751505], [-75.20601718590125, 40.035305262058806], [-75.2058671406445, 40.03514781690197], [-75.20570097432311, 40.03502426417902], [-75.20546781580545, 40.03490493310414], [-75.20519541902128, 40.03484181600355], [-75.20486302268161, 40.0347944931357], [-75.20429618639469, 40.034662058053975], [-75.20402971436165, 40.034639027990075], [-75.2037475444075, 40.034638480680805], [-75.20350839828592, 40.034678843315966], [-75.20322216373734, 40.034786662719796], [-75.20308475313355, 40.03488636329297], [-75.20292251520746, 40.03505401271858], [-75.20271211717781, 40.035317633574714], [-75.20257149451804, 40.0355028854725], [-75.20238656373073, 40.035681448385986], [-75.20226120658367, 40.03585562283787], [-75.20215004658733, 40.03604723564648], [-75.20203211000842, 40.03622157448156], [-75.20178824330848, 40.03638741157057], [-75.20156307328378, 40.03645091539052], [-75.20134832008314, 40.03643473280454], [-75.20119507108404, 40.03636283525448], [-75.20110246626595, 40.03625803169762], [-75.20095963561124, 40.03610644698831], [-75.20087202841943, 40.03596750522857], [-75.20085098603475, 40.03583574861133], [-75.20090064681602, 40.03569985332406], [-75.20086740470755, 40.03559636701068], [-75.20077587266421, 40.03546304589897], [-75.20065701896179, 40.035266328297695], [-75.20044427709198, 40.03499902773448], [-75.20029111299033, 40.03472733968486], [-75.20019902122058, 40.03441134260745], [-75.20009758234858, 40.03414651220337], [-75.1999853764631, 40.03377298530102], [-75.2000286885841, 40.03360840834481], [-75.20014649247801, 40.03323998893978], [-75.2002066813973, 40.03302155884678], [-75.20024278770153, 40.03285111219636], [-75.20023180653428, 40.032748119832135], [-75.2001684571078, 40.03265538325535], [-75.19997327152043, 40.032514050436404], [-75.19972657938162, 40.032360159665316], [-75.19965720849837, 40.032329249260336], [-75.19945063498541, 40.03219420120977], [-75.1992054457941, 40.032000384046086], [-75.198899826879, 40.03183376513608], [-75.19865313854223, 40.0316798702286], [-75.19849526936679, 40.031533657670074], [-75.19833847656706, 40.031358927702016], [-75.19822512372946, 40.031213702871426], [-75.19810068880156, 40.03096833830079], [-75.19809588817733, 40.03089442501455], [-75.19808658022411, 40.03075111177749], [-75.19810172067304, 40.03054595177751], [-75.19817115316746, 40.03027920626962], [-75.19820306325853, 40.03002304453975], [-75.19823411302642, 40.02978969602251], [-75.19829376662832, 40.02958552503025], [-75.19828416203968, 40.02924852546078], [-75.19819251359026, 40.02892111955368], [-75.19811077570213, 40.028725224431575], [-75.19802839269148, 40.028546436679], [-75.19791676438537, 40.02835558505061], [-75.19777105348861, 40.02809851703602], [-75.19767468097466, 40.02788212914194], [-75.19756219684936, 40.027714089537525], [-75.19741853522534, 40.0275853145659], [-75.19725767500935, 40.027518948984756], [-75.19694080192527, 40.02745482282738], [-75.19661479316244, 40.0274361591623], [-75.19623470657457, 40.0274733724764], [-75.1959209605919, 40.02752347929342], [-75.19553559884544, 40.02750349075091], [-75.19508175165136, 40.0275276456523], [-75.19479240866688, 40.0275212082444], [-75.19453124018865, 40.02755535481058], [-75.19426071771045, 40.027640665222464], [-75.19391664861698, 40.027707214493816], [-75.19361203818029, 40.027711851852914], [-75.19334538111958, 40.0276944982596], [-75.19321592230008, 40.0275831612474], [-75.19316151110232, 40.027450658973855], [-75.19330450726073, 40.02720268011006], [-75.19348244764849, 40.02701256037837], [-75.19363490933219, 40.026907498464205], [-75.19374457249535, 40.026755815367316], [-75.19393735196232, 40.02656602708576], [-75.19428000791352, 40.02633961354925], [-75.19449396494984, 40.02617883771931], [-75.19467674213509, 40.02605732279176], [-75.19484511016006, 40.02592407125742], [-75.19496810515115, 40.02581264147189], [-75.19504616022495, 40.02571163018187], [-75.1951019554212, 40.02561012271681], [-75.19516602862579, 40.02548596792842], [-75.19522160999645, 40.02539016261946], [-75.19525557906691, 40.02527675470127], [-75.19523997803107, 40.02509945210123], [-75.19525727026146, 40.024837256973086], [-75.19531800535528, 40.02460456940891], [-75.19539863212474, 40.024435116240824], [-75.19561451234333, 40.02422300599726], [-75.19586209060706, 40.02408052814591], [-75.1962364802291, 40.02385044329653], [-75.19661673607646, 40.023634510949535], [-75.1971247232168, 40.02335468413469], [-75.19773806728172, 40.02303723908307], [-75.19828926933943, 40.02279261764224], [-75.19878532457916, 40.022632393583635], [-75.19918450788889, 40.02248142957175], [-75.19934170779126, 40.022409689343846], [-75.19963776060904, 40.02227458377773], [-75.20007218376311, 40.021975985218994], [-75.20027234638414, 40.02178635090709], [-75.20040274633219, 40.02167508186673], [-75.20054840776287, 40.02155273490167], [-75.20062160003872, 40.021383111556446], [-75.20068994333401, 40.02114488354787], [-75.20082041804712, 40.02083382726441], [-75.200933484597, 40.02059088319604], [-75.20099183814499, 40.02042093025455], [-75.20179311252437, 40.01905161270349], [-75.20199055409695, 40.01873633438742], [-75.20222066465567, 40.0183418634675], [-75.20235155632979, 40.01801939652393], [-75.20246610984428, 40.017736527357975], [-75.20267609871061, 40.017284526184504], [-75.20286654166652, 40.016957674676874], [-75.20303280363615, 40.01668165809953], [-75.2031640440374, 40.016547571648445], [-75.20338429793868, 40.0164154592704], [-75.20364649000336, 40.016352775248386], [-75.20395932174982, 40.01632546331481], [-75.20424669291437, 40.01638320741465], [-75.20451922741914, 40.016440624581826], [-75.20479875441963, 40.01650961178716], [-75.20500453014414, 40.01656554618231], [-75.20530801957125, 40.016589396839564], [-75.20555030887488, 40.016463477484905], [-75.20579366609358, 40.01630904026045], [-75.20617481696412, 40.01604348848058], [-75.206387706368, 40.01571141920294], [-75.20645087585967, 40.01545245604645], [-75.20646664769988, 40.015387799942964], [-75.20662654125256, 40.015083096447846], [-75.2067059307227, 40.01490263093841], [-75.20678072668967, 40.0147326026567], [-75.20692071497255, 40.01436466800637], [-75.20706619715126, 40.01404822910396], [-75.20715783224605, 40.013781971752], [-75.20727299953978, 40.01348198569755], [-75.20739351668358, 40.01320203826188], [-75.20760649409308, 40.01272404544921], [-75.2086521136056, 40.01343967710121], [-75.21000742817179, 40.01410645377305], [-75.21166268341004, 40.015119462622884], [-75.21308389807258, 40.01624048556557], [-75.21384979900387, 40.01692249206666], [-75.21464457001309, 40.017817392484254], [-75.21542414542677, 40.01862704494904], [-75.2162562666293, 40.01950860927236], [-75.21734481410951, 40.02042412150334], [-75.21856318246036, 40.02131418430032], [-75.21939048433295, 40.02185599674593], [-75.22056540237243, 40.02220734989407], [-75.22126003177011, 40.022335853157074], [-75.22222421119417, 40.022640097680785], [-75.22304860630462, 40.02323842117824], [-75.22394763206715, 40.023810080688754], [-75.22487599450581, 40.0242944622951], [-75.22346371468775, 40.02540139058075], [-75.2231242065633, 40.025920410852386], [-75.22303325252824, 40.02601664157854], [-75.22141557478547, 40.02672157764617], [-75.22102716121036, 40.026229814753904], [-75.22060429661252, 40.025744288768784], [-75.21970065360257, 40.026141537737644], [-75.2193894442182, 40.02632450620234], [-75.21884192263634, 40.02660106639319], [-75.21822504333498, 40.02689789199421], [-75.21757598443969, 40.02717835626701], [-75.21663305375151, 40.02760356191073], [-75.21583510209882, 40.02795116403751], [-75.21503704266769, 40.02832590370966], [-75.21418958233424, 40.02870001667278], [-75.21332953362057, 40.02906470309765], [-75.21130935560589, 40.02997181305775], [-75.21207109206586, 40.03066671482359], [-75.21231047697843, 40.03088089134142], [-75.21310171087386, 40.03159961035404], [-75.21369099841677, 40.03210832453038], [-75.21449335806577, 40.0328392244125], [-75.21163946652192, 40.03425528193702], [-75.21069571487631, 40.03470016806649], [-75.20970207086455, 40.034975212048174], [-75.20894890862664, 40.03524245326302], [-75.20912218928297, 40.035621840775775], [-75.20914139137474, 40.035659851691165], [-75.20699511141257, 40.03649295570227], [-75.2065986085726, 40.036631961173214], [-75.20653556814453, 40.03653259396182], [-75.20647712448454, 40.03630867952482], [-75.20637352169493, 40.036100889391015], [-75.20626035989733, 40.03594996856576], [-75.20613913768528, 40.03581599532369], [-75.20608512223498, 40.03567209300905], [-75.20607098712954, 40.03545486751505]]]}}, {"id": "6440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17998167048039, 40.04209473357406], [-75.17963202957364, 40.04168252762443], [-75.17912977440957, 40.04106626641239], [-75.17871264213939, 40.04055843101864], [-75.1786313883227, 40.04045502151935], [-75.17775844345613, 40.039402056474906], [-75.17762916337077, 40.03923034817212], [-75.17695591195294, 40.03842372889561], [-75.17642853248903, 40.037795390475246], [-75.17614415827084, 40.0374530957513], [-75.17562257070458, 40.0367689105063], [-75.17520805709144, 40.03623377954292], [-75.17472531934024, 40.03582198106344], [-75.17649623766056, 40.03409785740428], [-75.17757545599665, 40.033047573898465], [-75.17773994379091, 40.032891613455284], [-75.1784680745982, 40.03217747122257], [-75.1788081294255, 40.03185131024302], [-75.17891466313162, 40.0317380686852], [-75.18029157893811, 40.030412246474555], [-75.18088365695873, 40.029841509241315], [-75.18148137413901, 40.02926532344677], [-75.182702183151, 40.028056239616085], [-75.18354462742221, 40.02726656215683], [-75.18416957969907, 40.02778727159014], [-75.18423409720958, 40.02785744191139], [-75.18475599428261, 40.02828670786825], [-75.18546479446888, 40.02887689787078], [-75.18619433324473, 40.0294699797975], [-75.18644380753355, 40.029296073536564], [-75.18677892810167, 40.0291124256], [-75.18706442961953, 40.02905763697274], [-75.18737926217861, 40.02909228285243], [-75.1883624717145, 40.02922889960042], [-75.18890267908205, 40.02934416339511], [-75.18940780350799, 40.02928574740464], [-75.18970849483175, 40.02922364496932], [-75.18994575152439, 40.02912954578415], [-75.19015478140203, 40.02899277241513], [-75.19028403082824, 40.028861861960216], [-75.19047396785099, 40.02837399003998], [-75.1904995457736, 40.02802570406753], [-75.19054476427709, 40.0278814543467], [-75.19064420187902, 40.0277498809391], [-75.19089851603299, 40.02759882364573], [-75.19104928822398, 40.027556311269855], [-75.1912292953343, 40.02752974194893], [-75.19176542891499, 40.02755315410919], [-75.1921111097142, 40.027484402743646], [-75.19235656838265, 40.02743635435836], [-75.19248235415391, 40.02739710662348], [-75.19261246810618, 40.02731614578106], [-75.19316151110232, 40.027450658973855], [-75.19321592230008, 40.0275831612474], [-75.19334538111958, 40.0276944982596], [-75.19361203818029, 40.027711851852914], [-75.19391664861698, 40.027707214493816], [-75.19426071771045, 40.027640665222464], [-75.19453124018865, 40.02755535481058], [-75.19479240866688, 40.0275212082444], [-75.19508175165136, 40.0275276456523], [-75.19553559884544, 40.02750349075091], [-75.1959209605919, 40.02752347929342], [-75.19623470657457, 40.0274733724764], [-75.19661479316244, 40.0274361591623], [-75.19694080192527, 40.02745482282738], [-75.19725767500935, 40.027518948984756], [-75.19741853522534, 40.0275853145659], [-75.19756219684936, 40.027714089537525], [-75.19767468097466, 40.02788212914194], [-75.19777105348861, 40.02809851703602], [-75.19791676438537, 40.02835558505061], [-75.19802839269148, 40.028546436679], [-75.19811077570213, 40.028725224431575], [-75.19819251359026, 40.02892111955368], [-75.19828416203968, 40.02924852546078], [-75.19829376662832, 40.02958552503025], [-75.19823411302642, 40.02978969602251], [-75.19820306325853, 40.03002304453975], [-75.19817115316746, 40.03027920626962], [-75.19810172067304, 40.03054595177751], [-75.19808658022411, 40.03075111177749], [-75.19809588817733, 40.03089442501455], [-75.19810068880156, 40.03096833830079], [-75.19822512372946, 40.031213702871426], [-75.19833847656706, 40.031358927702016], [-75.19849526936679, 40.031533657670074], [-75.19865313854223, 40.0316798702286], [-75.198899826879, 40.03183376513608], [-75.1992054457941, 40.032000384046086], [-75.19945063498541, 40.03219420120977], [-75.19965720849837, 40.032329249260336], [-75.19925173748065, 40.0327331286416], [-75.19903824459082, 40.032960800774006], [-75.19867854345327, 40.03310333437685], [-75.19791907202325, 40.033244249276365], [-75.19767897363276, 40.0334054527399], [-75.19759775248555, 40.03353189483889], [-75.1975423038068, 40.033712343674054], [-75.1975357248421, 40.033893093786155], [-75.19762267816256, 40.03416298827446], [-75.19764644430055, 40.0342703880722], [-75.19767408751511, 40.03440506991492], [-75.19781610939663, 40.03474973507563], [-75.19788801660623, 40.03505591715643], [-75.19797485763613, 40.03550704206032], [-75.19803969458452, 40.035669218093304], [-75.19823927899031, 40.0366086380846], [-75.19591426474284, 40.03773386290462], [-75.1961285681936, 40.03792510705202], [-75.19391825051949, 40.04003759263793], [-75.19209517660428, 40.0418099230789], [-75.19176919636841, 40.04214746287633], [-75.19157772831606, 40.042398635256504], [-75.19145042795034, 40.04262690767887], [-75.19134753185405, 40.04283747821982], [-75.19124142940883, 40.043133123148614], [-75.19119981577036, 40.04338709775542], [-75.19057914684831, 40.04299291082166], [-75.19025172805095, 40.04278912918824], [-75.18947980639672, 40.04230868909042], [-75.18931485668102, 40.0424870819142], [-75.18668797871183, 40.04503518347589], [-75.18527664267911, 40.046411282219864], [-75.18339861136822, 40.04825532226838], [-75.18279836557451, 40.04707577114246], [-75.18220444401027, 40.0458957297085], [-75.18170260015731, 40.044832379521964], [-75.18143093247392, 40.04416263987507], [-75.18125703292239, 40.043733829527675], [-75.18117466376285, 40.04361035144422], [-75.18097922010578, 40.04333838114339], [-75.18088411064987, 40.0432480218722], [-75.17998167048039, 40.04209473357406]]]}}, {"id": "6450", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22327148183568, 40.03873508257713], [-75.22280951936881, 40.038112997139116], [-75.22205297800791, 40.03777701262175], [-75.22178364076424, 40.03768423026475], [-75.22129409897332, 40.03752006547368], [-75.22067011533525, 40.03730541500676], [-75.21939787277367, 40.03691246463764], [-75.21876044719933, 40.03665586418302], [-75.21848040560981, 40.03654179248017], [-75.21818332016892, 40.03637186635479], [-75.21808156983627, 40.036298049985746], [-75.21792679239577, 40.03616127321977], [-75.21738290949676, 40.035585013994464], [-75.21663988774236, 40.034834138713485], [-75.2164164162974, 40.034606030367065], [-75.21600243118746, 40.03418744879971], [-75.21588220473366, 40.03405846904807], [-75.2153611594672, 40.033612978699125], [-75.21517657247027, 40.03344632792387], [-75.21449335806577, 40.0328392244125], [-75.21369099841677, 40.03210832453038], [-75.21310171087386, 40.03159961035404], [-75.21231047697843, 40.03088089134142], [-75.21207109206586, 40.03066671482359], [-75.21130935560589, 40.02997181305775], [-75.21332953362057, 40.02906470309765], [-75.21418958233424, 40.02870001667278], [-75.21503704266769, 40.02832590370966], [-75.21583510209882, 40.02795116403751], [-75.21663305375151, 40.02760356191073], [-75.21757598443969, 40.02717835626701], [-75.21822504333498, 40.02689789199421], [-75.21884192263634, 40.02660106639319], [-75.2193894442182, 40.02632450620234], [-75.21970065360257, 40.026141537737644], [-75.22060429661252, 40.025744288768784], [-75.22102716121036, 40.026229814753904], [-75.22141557478547, 40.02672157764617], [-75.22303325252824, 40.02601664157854], [-75.2231242065633, 40.025920410852386], [-75.22346371468775, 40.02540139058075], [-75.22487599450581, 40.0242944622951], [-75.22519348185745, 40.02446011104909], [-75.22631113681243, 40.025093159203045], [-75.22795481788366, 40.02593586023214], [-75.22813603325612, 40.02602641551546], [-75.22967908820523, 40.02679445646915], [-75.23074584431313, 40.02731313629939], [-75.23170331576, 40.027801110198155], [-75.23290675810962, 40.02860578109708], [-75.23392315762696, 40.02949124533276], [-75.2350183907117, 40.030236920862365], [-75.23569898916516, 40.03074709666462], [-75.23713850345766, 40.03164179287043], [-75.23794421073465, 40.03207409545746], [-75.23659973518544, 40.032788969997156], [-75.23548278380052, 40.033266081633215], [-75.23492237238553, 40.033507810813035], [-75.23400675069436, 40.03391051627217], [-75.23365926823085, 40.034091376274894], [-75.23356293339191, 40.03414453166594], [-75.23347140626689, 40.0341891572001], [-75.23334791606099, 40.03422990450476], [-75.23294892141585, 40.03440870118229], [-75.23110561965497, 40.0352203738803], [-75.23004048990013, 40.03591082603452], [-75.2291463474606, 40.036476921844844], [-75.22846478302714, 40.03691109620618], [-75.22817973172945, 40.03708302145663], [-75.22704014575491, 40.037811684914686], [-75.2261606942151, 40.03836248679967], [-75.22380787878424, 40.03943822398916], [-75.22339531056211, 40.03890199136062], [-75.22327148183568, 40.03873508257713]]]}}, {"id": "6470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17395171402475, 40.03519462706986], [-75.17372512349114, 40.035013997200274], [-75.17351405998669, 40.03483239338483], [-75.17271106053025, 40.03436680448122], [-75.17206034923001, 40.03398307995448], [-75.1706110856358, 40.03313266683023], [-75.16933164472384, 40.032384388862205], [-75.16921170143596, 40.032315150338924], [-75.16852487493777, 40.03194671602884], [-75.16774285096625, 40.03151764782613], [-75.16665612700291, 40.03089173848313], [-75.16648911530056, 40.03079541067652], [-75.16612124799292, 40.03060137387694], [-75.16549124869522, 40.030243355246], [-75.16495001486003, 40.029946937599085], [-75.16413486010035, 40.02949517005147], [-75.16374963293076, 40.02925677668989], [-75.16327034575254, 40.028961898037004], [-75.16226937941563, 40.028335271113015], [-75.16212693468864, 40.02824609646851], [-75.16142639258389, 40.027765739741476], [-75.16098306030462, 40.027254555654764], [-75.16057543984138, 40.02672479680068], [-75.16024532162861, 40.02630149469953], [-75.16005440340837, 40.0260242608284], [-75.15993190666204, 40.02555640847333], [-75.15989823412484, 40.024934916174836], [-75.15985830538149, 40.02462568816048], [-75.15955229569964, 40.02392652656961], [-75.1593151807718, 40.023411916350135], [-75.1592144562075, 40.02319330831552], [-75.15913886526133, 40.023029249784166], [-75.15903605423988, 40.02280190058979], [-75.15950224294882, 40.0223432341361], [-75.16020566761645, 40.021312918917715], [-75.160587094013, 40.02047412659202], [-75.16064104200257, 40.02032672424692], [-75.16065723063446, 40.020267866462135], [-75.16069195307685, 40.020154843997446], [-75.16165740699451, 40.019866523130446], [-75.16260104521236, 40.019587285956476], [-75.1637594507446, 40.01923581659435], [-75.16382947760472, 40.01918243550099], [-75.1642100579168, 40.01894959041402], [-75.16451672375794, 40.01882070935512], [-75.16549601289547, 40.018389849712655], [-75.16580943584417, 40.018250581845486], [-75.16595069899675, 40.01817014864473], [-75.16612297805914, 40.01804860618353], [-75.16637408236633, 40.017853963773874], [-75.16686766643225, 40.017471360816195], [-75.16726952579513, 40.01715117286135], [-75.16773914456775, 40.01677676715074], [-75.1681011247023, 40.0164922616461], [-75.16830601223785, 40.01634706248918], [-75.16843373327283, 40.016281090405364], [-75.16875550853955, 40.016063754154686], [-75.16903385880265, 40.01586767344456], [-75.16922639801739, 40.015723223219084], [-75.16932388598943, 40.01561308507677], [-75.16990856732517, 40.015251275367135], [-75.17185110939445, 40.01421865254688], [-75.17330414845071, 40.01342880284322], [-75.173493951003, 40.01363880364923], [-75.17368926651781, 40.01385498801739], [-75.17388452615543, 40.014071195097266], [-75.17407972733481, 40.01428743113824], [-75.17427486537244, 40.01450369603558], [-75.17446994026795, 40.014719989789626], [-75.17466494844024, 40.01493631412243], [-75.17485988513735, 40.0151526707297], [-75.17505474670979, 40.0153690631341], [-75.17524953212295, 40.01558548770875], [-75.17544423876154, 40.015801951603464], [-75.17552671391125, 40.015893697405055], [-75.17565908381408, 40.01604096033477], [-75.17575476211923, 40.01614745779258], [-75.17584542335327, 40.01624838166194], [-75.1760278511054, 40.01645157302326], [-75.17622220978954, 40.01666819526803], [-75.17641647316844, 40.016884860068586], [-75.17661063755828, 40.01710157184788], [-75.17680470071932, 40.01731832785329], [-75.17699866248022, 40.01753513258645], [-75.1771925170203, 40.01775198501652], [-75.17738626062157, 40.01796889046678], [-75.17756704006801, 40.01819271861627], [-75.17771296225875, 40.01843197748175], [-75.17783062615489, 40.01867870863221], [-75.17793398080568, 40.018929343960046], [-75.17802950186633, 40.01918236889096], [-75.17812245920452, 40.019436176044145], [-75.17821811683437, 40.01968915969033], [-75.17829905577587, 40.01996324862947], [-75.17835128765265, 40.02022254243119], [-75.17836483896939, 40.02048572998522], [-75.17835132003574, 40.020749360970896], [-75.17832225316255, 40.02101153911683], [-75.17829207453775, 40.02127366983408], [-75.17826098048974, 40.02153576743003], [-75.17822909970849, 40.02179783748928], [-75.17819654807381, 40.022059883507694], [-75.1781634577923, 40.02232191114883], [-75.17813356713184, 40.022588967799784], [-75.17903439685347, 40.02333017978122], [-75.17984442801564, 40.024087111001535], [-75.18166803708723, 40.02565827051328], [-75.1821248520501, 40.02604741606695], [-75.18293309559137, 40.02674623378277], [-75.18354462742221, 40.02726656215683], [-75.182702183151, 40.028056239616085], [-75.18148137413901, 40.02926532344677], [-75.18088365695873, 40.029841509241315], [-75.18029157893811, 40.030412246474555], [-75.17891466313162, 40.0317380686852], [-75.1788081294255, 40.03185131024302], [-75.1784680745982, 40.03217747122257], [-75.17773994379091, 40.032891613455284], [-75.17757545599665, 40.033047573898465], [-75.17649623766056, 40.03409785740428], [-75.17472531934024, 40.03582198106344], [-75.17395171402475, 40.03519462706986]]]}}, {"id": "7010", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05171102487331, 40.00699052937543], [-75.05273115891607, 40.00587339173539], [-75.05286953850623, 40.00563262986873], [-75.05435578267345, 40.003506885229285], [-75.05583164346423, 40.00125303629413], [-75.05668629664696, 39.999826352086515], [-75.05780413005665, 39.99784310027683], [-75.05881910641546, 39.99571927354719], [-75.05970259490692, 39.99346518181533], [-75.06072971978588, 39.99128939547064], [-75.06188994108325, 39.98931317828346], [-75.06261398611377, 39.988156275924574], [-75.06318390315069, 39.987342386672054], [-75.06394667821834, 39.98635801654672], [-75.0658800303735, 39.98470263060473], [-75.06673233459081, 39.984077215184996], [-75.06801544056256, 39.983135647058376], [-75.06939234949564, 39.981999197175654], [-75.07119989534809, 39.98073692359423], [-75.07323149967826, 39.979559390007445], [-75.07582271389332, 39.97834714035105], [-75.07769511402647, 39.97766051920748], [-75.08020200314922, 39.976930913778155], [-75.0825218917569, 39.976405694465285], [-75.08388364024222, 39.97614531542582], [-75.08558580969047, 39.97581981932251], [-75.08639109414254, 39.97566581927241], [-75.08795354905344, 39.975394673214204], [-75.08875616864948, 39.97525537833003], [-75.08930543909275, 39.97516004931649], [-75.08995641164408, 39.97504706505385], [-75.09096716599848, 39.97487162821714], [-75.0918136615686, 39.974724695193586], [-75.09289956921116, 39.9745361937343], [-75.09383959244585, 39.97437300792721], [-75.09767082904573, 39.97868529405697], [-75.09781795705604, 39.978853892130346], [-75.09964353338965, 39.98094576036583], [-75.0977377844456, 39.98194860579929], [-75.09761931635884, 39.982038241118104], [-75.09756005515227, 39.98211647076], [-75.0975276988675, 39.98219641877843], [-75.09752391315574, 39.98228957134906], [-75.09755217888296, 39.98238358003735], [-75.09760309687782, 39.98245354641823], [-75.09801763882122, 39.98292553606918], [-75.09821728078147, 39.983169049746955], [-75.09837805625185, 39.98336515270572], [-75.09900069277896, 39.98412460010107], [-75.09902737391457, 39.984229177837655], [-75.09905443550399, 39.984301895643185], [-75.09929255809479, 39.98457239187227], [-75.09950187343875, 39.984818019578746], [-75.09971429588026, 39.98505640311517], [-75.09977805216607, 39.98513090516478], [-75.10006751175682, 39.985454054005835], [-75.10028673505134, 39.98570433479536], [-75.10055278579604, 39.98600231567193], [-75.10091213494115, 39.986417209646824], [-75.10128194017628, 39.98682304051875], [-75.10160177835962, 39.98718808060266], [-75.10192236638139, 39.98754938871042], [-75.10227797698829, 39.98795138084919], [-75.1026223447675, 39.98834975160094], [-75.10305060635831, 39.98882263068709], [-75.10348311015099, 39.989312388500096], [-75.10390372468184, 39.989797541868775], [-75.1016035551865, 39.99099546766221], [-75.09930174421098, 39.99218683465115], [-75.09700726018444, 39.99340093093542], [-75.09555908145178, 39.99409568671221], [-75.09452368021225, 39.994604333014706], [-75.0920722662799, 39.99589576298429], [-75.08946670816803, 39.997270276066914], [-75.08708989422199, 39.99851975337438], [-75.08650317560277, 39.99882817507667], [-75.08637219053867, 39.99889668903513], [-75.08666932734353, 39.9991549010774], [-75.0870710855701, 39.99960523222292], [-75.08725148428842, 39.99985134298901], [-75.08741858989772, 40.000102183717935], [-75.08747738455683, 40.00044123669756], [-75.0874978781014, 40.000754199257734], [-75.0875148209393, 40.00115780317993], [-75.08756900623546, 40.00178151413913], [-75.08758552063374, 40.00202886357714], [-75.08768061036204, 40.002278035314845], [-75.08790668836195, 40.00269656807221], [-75.08798430624469, 40.00288989257783], [-75.08810160755651, 40.003074055475324], [-75.08825342491625, 40.003213660293326], [-75.08842985436478, 40.003394154256455], [-75.08864656234672, 40.0035503823744], [-75.08888380083832, 40.00368440414936], [-75.08941342606012, 40.00388316403909], [-75.09015139125702, 40.004153884085476], [-75.09033735121965, 40.004222103066994], [-75.09097751437344, 40.004443576190404], [-75.09140573694945, 40.004554296486084], [-75.09183794632433, 40.00473062814792], [-75.0921010930726, 40.00487280351358], [-75.09221919628253, 40.00503682062715], [-75.09233848386813, 40.0051706262382], [-75.09255396545545, 40.00536603675294], [-75.09239074383822, 40.005511140248174], [-75.09181617120602, 40.00600868145237], [-75.09288480353679, 40.005974655093624], [-75.09327398346457, 40.00596226234677], [-75.09634801619768, 40.005852913915064], [-75.096867594174, 40.0055623568645], [-75.09798025936766, 40.004951203315294], [-75.09936342138738, 40.004204338993276], [-75.10049827342786, 40.00358035163278], [-75.10181133678756, 40.00286444150113], [-75.1037972729379, 40.003135874650006], [-75.10368780044956, 40.0036383117411], [-75.10360252415369, 40.00407447780811], [-75.10352956329014, 40.00443165033639], [-75.10327103349695, 40.005603012611246], [-75.10533698181442, 40.00551937536787], [-75.10602631109278, 40.00549929463638], [-75.10666156788085, 40.00548114721689], [-75.1073529084745, 40.00547269932909], [-75.10803781110063, 40.00543237740518], [-75.10862843880291, 40.00540581803255], [-75.10937229646842, 40.00539334662989], [-75.11348354800558, 40.00592851401563], [-75.11930063244641, 40.00668062097756], [-75.12271875342688, 40.007135884907754], [-75.1234268932234, 40.007213386785665], [-75.12339320057532, 40.007418611434275], [-75.1233245784329, 40.00755692677894], [-75.12146940260696, 40.01015438751697], [-75.11944047531844, 40.01302705559972], [-75.11757219048913, 40.01558324450789], [-75.11747690485849, 40.015784203074695], [-75.11319772024986, 40.01553363305251], [-75.11136051115065, 40.01586805552725], [-75.10902514328343, 40.01628798447145], [-75.1079566960431, 40.01649243760471], [-75.10774566743571, 40.016581861972575], [-75.10706904288469, 40.016693842391774], [-75.10721337838702, 40.01677104914463], [-75.10733477456357, 40.0168519653075], [-75.10743534731849, 40.016962640715306], [-75.1074969191298, 40.0170648597228], [-75.10753986399301, 40.0172246106732], [-75.1075484926834, 40.01742389303715], [-75.1075019453263, 40.01760930469143], [-75.1074492879232, 40.01778323623494], [-75.10740250262029, 40.01789052115543], [-75.10725067393167, 40.01808611062809], [-75.10713174797101, 40.01819425525665], [-75.10702670300225, 40.01828255869556], [-75.10688632285866, 40.018352409187465], [-75.10672341291877, 40.01841166013801], [-75.10654007144916, 40.018490600181316], [-75.10629411473795, 40.01857817906554], [-75.10602757994306, 40.01868922492428], [-75.10586011859452, 40.01878112960109], [-75.10575625037828, 40.018839218600135], [-75.10567101752486, 40.01896577809034], [-75.10558162665019, 40.019114922541654], [-75.10548898171467, 40.01920460947764], [-75.10533590146107, 40.01928062696204], [-75.10514063362046, 40.01932905063636], [-75.10490885747714, 40.01934702238403], [-75.10417631965316, 40.01934652461066], [-75.10399315033166, 40.01937884526158], [-75.10383544166106, 40.019430651520175], [-75.10373741520444, 40.01952793403622], [-75.10369705860172, 40.01965930618886], [-75.1036570026035, 40.01987656897237], [-75.10359316270015, 40.02023388882772], [-75.10354663582343, 40.02039388960434], [-75.10349786087525, 40.02056161716755], [-75.10344906506903, 40.02072942262346], [-75.1033671849326, 40.02084992359056], [-75.10324696224033, 40.02092046779915], [-75.10317007037045, 40.02097241862366], [-75.10314578864238, 40.0210831418571], [-75.10315611454705, 40.02120233779963], [-75.10319501376617, 40.02135672803016], [-75.10326807374527, 40.02153109220913], [-75.10335965788994, 40.02174233905787], [-75.1035865167461, 40.0221965348681], [-75.10365124898982, 40.022328497067704], [-75.10376993748694, 40.02248472580516], [-75.10390069411592, 40.02258750934463], [-75.10409693194785, 40.02280308621844], [-75.10420684398072, 40.02292841226691], [-75.10419313378188, 40.02302403107859], [-75.10419937155955, 40.0231201076988], [-75.10422615514095, 40.02320130771402], [-75.10429208156532, 40.02330259974516], [-75.10438324573097, 40.02339679548704], [-75.10448981833729, 40.02347983364043], [-75.10462705803057, 40.02354439338227], [-75.10480855458879, 40.023604262577635], [-75.1024230166573, 40.02949318557148], [-75.10195887434806, 40.02934196297108], [-75.10156167428505, 40.02918380082311], [-75.10128705513067, 40.0289720841755], [-75.09906469220137, 40.02749807807378], [-75.09759035708078, 40.026571076513996], [-75.09725400391805, 40.02641113436297], [-75.09682994834438, 40.02627212964553], [-75.09647774420104, 40.026186774181035], [-75.09605195741689, 40.02613494846775], [-75.0955834671491, 40.026127620134424], [-75.09526862397325, 40.026148333813644], [-75.09495268670224, 40.02619701018641], [-75.09439191996336, 40.0263379947691], [-75.09406814999566, 40.02647046138908], [-75.09377160583495, 40.026629748156786], [-75.0903918108727, 40.02850061797068], [-75.08956157098642, 40.02895049593653], [-75.08853297121763, 40.02951223847952], [-75.08780447439533, 40.02991630348491], [-75.08704403318237, 40.030332471248634], [-75.08673522761529, 40.03051272166657], [-75.08604451725004, 40.03093078216704], [-75.08560488963899, 40.03119645712578], [-75.08547258246628, 40.031273684432875], [-75.0852697585556, 40.03138028375811], [-75.08512333320796, 40.031450025257755], [-75.08492630444702, 40.03154244548476], [-75.08472066349404, 40.03162543348738], [-75.08451686634676, 40.03169751451363], [-75.08432709881482, 40.031763071134606], [-75.08408993092331, 40.03182185063179], [-75.08394974653352, 40.031864818843445], [-75.08380562658093, 40.03190043045333], [-75.08210904612866, 40.03222753624818], [-75.08200440584257, 40.0322584952175], [-75.08190521436933, 40.032282428233174], [-75.08177593009637, 40.032308839996325], [-75.0807438478966, 40.03253982344368], [-75.07744388361579, 40.033296176686676], [-75.07697795937855, 40.033397972680206], [-75.07529951176552, 40.033783704283984], [-75.07525130271337, 40.033661436635455], [-75.0751487380651, 40.0334466456309], [-75.07506078615849, 40.03334997800687], [-75.07493564475371, 40.03325772149568], [-75.07483287179262, 40.03320326733209], [-75.07382568190619, 40.0326454257203], [-75.07360561234455, 40.03251822982968], [-75.07356021353532, 40.03244577064569], [-75.07355461850688, 40.032363421145035], [-75.07369253848567, 40.03210840218186], [-75.07386962085366, 40.03176463032088], [-75.07351393530942, 40.031555013912985], [-75.07304390892638, 40.03129574371874], [-75.06618493810203, 40.026915548478], [-75.06709032771728, 40.02677730779543], [-75.06795748719205, 40.026584067667095], [-75.06783721579384, 40.02649206348795], [-75.06668295259375, 40.02584138355716], [-75.06651979223467, 40.02580581909264], [-75.06629341432797, 40.025612034155614], [-75.06599609412177, 40.02529122842685], [-75.06543718559958, 40.02464211242266], [-75.06497094787639, 40.02411046962777], [-75.06491395782366, 40.02406163942987], [-75.06429850056371, 40.02437366105983], [-75.06379250395135, 40.02463878984568], [-75.06325416663721, 40.024913758823566], [-75.06280300649158, 40.02440337289763], [-75.06271239425418, 40.0242925423012], [-75.06075658276164, 40.025302397254684], [-75.05880467941977, 40.026314935658625], [-75.05825183059187, 40.02569286300014], [-75.057897070503, 40.025876805875036], [-75.05759522139245, 40.026032809647084], [-75.05727981106796, 40.02619638423572], [-75.05695499182227, 40.02636259906879], [-75.05629534391466, 40.02670488753105], [-75.05539833613314, 40.02567408298286], [-75.0549663561723, 40.025172380397535], [-75.05449649038853, 40.02464923564854], [-75.05405573884796, 40.024130575636875], [-75.05383051939687, 40.02388229248625], [-75.05360536254146, 40.023616927357196], [-75.05337410689482, 40.02336301410848], [-75.05315294282204, 40.02310603050815], [-75.0529326587648, 40.02286481292343], [-75.05270351743722, 40.02259335939741], [-75.05248290255767, 40.02234721787948], [-75.05225498658803, 40.02208102634417], [-75.05177492702299, 40.0215363498483], [-75.05132044682324, 40.02101559235904], [-75.05090575006129, 40.02053632334524], [-75.05045067390724, 40.02002728783608], [-75.05000317862873, 40.019512392481026], [-75.04949864826371, 40.018930315978146], [-75.04895805847762, 40.01833459840812], [-75.04879026013448, 40.01814272009394], [-75.04869060025547, 40.01802875804136], [-75.04858708950196, 40.01793877323055], [-75.04843241042651, 40.01780693177609], [-75.04827883286003, 40.01769035907416], [-75.04813594950116, 40.017585297316074], [-75.04808650156707, 40.01750175437715], [-75.04779921109528, 40.017327097465994], [-75.04740062933426, 40.01699499112109], [-75.04695708881782, 40.01666649054795], [-75.04654946592537, 40.016354768020506], [-75.04648114678258, 40.016302523093245], [-75.04628938611744, 40.01615203672511], [-75.04601335698105, 40.015932664335985], [-75.04578450295824, 40.01572048260732], [-75.04549702717796, 40.01539135984509], [-75.04318345620553, 40.01230180802732], [-75.04487805989457, 40.01142884476869], [-75.0468045730374, 40.01040768532484], [-75.04802351584226, 40.009719588094946], [-75.04917137466465, 40.008935643873606], [-75.05045520772387, 40.007982636145904], [-75.05092040548402, 40.00762418782804], [-75.05171102487331, 40.00699052937543]]]}}, {"id": "7100", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14471716118774, 40.02885685079207], [-75.14391379256013, 40.028750317831836], [-75.1431266425208, 40.02864419059783], [-75.14233586038641, 40.0285445555944], [-75.14155786712281, 40.028450084596976], [-75.14187993430589, 40.02695023153963], [-75.14108857730857, 40.02685210883573], [-75.14030488838324, 40.026746981853115], [-75.13950862078177, 40.02664905552823], [-75.1386988891154, 40.02653716609904], [-75.13828580138626, 40.02648992937553], [-75.13774715050255, 40.026417386977926], [-75.1378229004782, 40.026088812543264], [-75.13807943565392, 40.024928910005606], [-75.13841994705085, 40.023329816232724], [-75.13864604864172, 40.022274510415976], [-75.1386856314607, 40.022089355858064], [-75.13878989832307, 40.02167194894793], [-75.13962410577875, 40.02125554449826], [-75.13989326600749, 40.021143092921015], [-75.14126176526882, 40.020457827767785], [-75.14208211948895, 40.020076769123925], [-75.14246779103715, 40.01992131567765], [-75.1428848436295, 40.01977265716096], [-75.14326097466613, 40.01965955683399], [-75.14363335649988, 40.01956889301005], [-75.14409578705738, 40.019486694076015], [-75.14468710862543, 40.01941183457217], [-75.1453628611309, 40.019380817093726], [-75.14613788229155, 40.01938413204805], [-75.14638257068283, 40.01941384755003], [-75.14705879583687, 40.01909484972519], [-75.14714447643219, 40.01901145008065], [-75.1484680681646, 40.01840767197671], [-75.14908973201165, 40.0181106529181], [-75.1493475064601, 40.017958839322176], [-75.14923089340353, 40.01850378775497], [-75.14899401136766, 40.019573800755275], [-75.14895440785872, 40.01974442881808], [-75.14893672041177, 40.01982773281143], [-75.14885054693626, 40.020202287719464], [-75.14873876523373, 40.02071218205933], [-75.14869223870237, 40.02095431395297], [-75.14856756631274, 40.02147712508312], [-75.14824630443891, 40.02296067248439], [-75.14789505568146, 40.024554834487724], [-75.14755641513194, 40.02613961797357], [-75.14721962735459, 40.02764514311778], [-75.14691352343654, 40.02914516669453], [-75.14615174299354, 40.02904492261314], [-75.14471716118774, 40.02885685079207]]]}}, {"id": "7110", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05840701069471, 40.012781407430175], [-75.0586413312302, 40.01264885011602], [-75.05870638958133, 40.012612046410936], [-75.0600487730266, 40.011871081883434], [-75.06060679456483, 40.01156180339749], [-75.06097907480788, 40.011348487442554], [-75.06111667530679, 40.01126964195205], [-75.06231500458891, 40.01061667402492], [-75.0631592477611, 40.010222688814515], [-75.06426957195231, 40.009818299872826], [-75.06498019864055, 40.00957801634341], [-75.0657896484993, 40.00937412646459], [-75.06644883807276, 40.00924134697554], [-75.06761142282602, 40.009043480693656], [-75.06855645825688, 40.00885047847092], [-75.06889642394414, 40.0087888431993], [-75.06935185290021, 40.00868334693537], [-75.06970553402357, 40.00856782818408], [-75.06996509431009, 40.00847313292842], [-75.0704122559228, 40.00830999264732], [-75.07132799723937, 40.00794526456718], [-75.07226424118629, 40.00749422369687], [-75.07301414228317, 40.007088776220634], [-75.07368924273725, 40.006662615189924], [-75.07376939852078, 40.0066120160638], [-75.07391251175505, 40.00650694504352], [-75.074351815402, 40.0061844142656], [-75.07485107783086, 40.005801807302255], [-75.07539923571521, 40.00531395235073], [-75.07561777720912, 40.00513489052452], [-75.07571836824512, 40.00505247012691], [-75.0761923864628, 40.00462210010124], [-75.07672432017941, 40.00407046320036], [-75.07706342789717, 40.00369919122315], [-75.07723263993341, 40.00371552387754], [-75.07734549370338, 40.00372734461546], [-75.07742300443158, 40.00376172806825], [-75.07744727049445, 40.00392972355172], [-75.07747768474579, 40.00414030389461], [-75.07759312910837, 40.00469933736335], [-75.07774943992962, 40.00538417646413], [-75.07789180735155, 40.0060630276795], [-75.07804757869613, 40.00673401275043], [-75.07819554814382, 40.00741205761696], [-75.07833295323039, 40.00806746009549], [-75.07844817158372, 40.008587325110916], [-75.07847826246463, 40.008723089506965], [-75.07861364295223, 40.00935524799101], [-75.07874968635451, 40.00987955810453], [-75.07888283118169, 40.010028942497485], [-75.07928033188941, 40.01041011679957], [-75.07850491868784, 40.01073249149751], [-75.07831364702156, 40.01082038927243], [-75.07705894581584, 40.01133352361732], [-75.07742627803177, 40.012908300122575], [-75.07753693593935, 40.013356872141166], [-75.07830534931806, 40.013819680943], [-75.07946727058858, 40.01445822732093], [-75.08019987701304, 40.014864913005], [-75.08097132025813, 40.01530229667788], [-75.08236494235803, 40.01606923064227], [-75.08356395690733, 40.01675184627466], [-75.08366059658319, 40.0167978926383], [-75.08385322409082, 40.01657439468965], [-75.08438320179262, 40.01599753384922], [-75.08465720895092, 40.01571363601343], [-75.08551972336888, 40.01478886638747], [-75.08581981502454, 40.014449200555006], [-75.08634986317635, 40.013869059525234], [-75.08757777102656, 40.01251711448529], [-75.08765571886487, 40.01243104828334], [-75.0879733473435, 40.012104293034525], [-75.08873149831201, 40.01092474773304], [-75.08919763531237, 40.010179622728174], [-75.08927245543349, 40.01006426240513], [-75.08952675928374, 40.00967215486071], [-75.08965972218581, 40.00946714048222], [-75.08986582746228, 40.009132753141486], [-75.09009362547506, 40.0087631653654], [-75.09032710271441, 40.00836154533965], [-75.09093112514739, 40.007443593445664], [-75.09099114477563, 40.00732055578791], [-75.09116707754136, 40.00705389319111], [-75.09181617120602, 40.00600868145237], [-75.09288480353679, 40.005974655093624], [-75.09285136993151, 40.00613256007388], [-75.09275698304405, 40.00636726149589], [-75.09253778112755, 40.00660915183336], [-75.09232133963845, 40.00678054642556], [-75.09215590467748, 40.00698840157629], [-75.09211389737854, 40.00722431245984], [-75.09221407877834, 40.00751139890072], [-75.09237684350016, 40.00770669202036], [-75.09258891364838, 40.007938335956275], [-75.09295800332019, 40.008264474944404], [-75.09370780600149, 40.00870015399339], [-75.09427702237522, 40.00906109068554], [-75.09461576907472, 40.009264628212186], [-75.09478736900864, 40.00944395831309], [-75.0949067147156, 40.00963116035168], [-75.09500332253424, 40.009917311657965], [-75.095032054847, 40.01000711553365], [-75.09510418754013, 40.010232572844764], [-75.09497380707462, 40.010506979466605], [-75.09438434335257, 40.011344224245], [-75.0942937947617, 40.01148073163575], [-75.0940575446021, 40.01182303501672], [-75.09392127569429, 40.01203912720307], [-75.09368785533968, 40.012392834002796], [-75.09357548894567, 40.01258427955463], [-75.09350746262793, 40.012731388269465], [-75.09348279140482, 40.01285934120278], [-75.0934609009396, 40.012999956755614], [-75.09346560120999, 40.01313110856111], [-75.09349947382906, 40.01327049502147], [-75.09356744835101, 40.01345981206091], [-75.09369551346215, 40.013704700356556], [-75.09381573062232, 40.01389900569513], [-75.09420442282375, 40.01451911094814], [-75.09430071223922, 40.0146548995285], [-75.09440338987376, 40.01477399992073], [-75.09448920384817, 40.014863385092106], [-75.09459659753882, 40.014966670368004], [-75.09474943973703, 40.01508108734914], [-75.09492490873457, 40.01520358702422], [-75.09508142056097, 40.015308009412614], [-75.09526085584925, 40.01541296068959], [-75.0955843450359, 40.01560566269948], [-75.0958055633854, 40.01573173878071], [-75.09604315382364, 40.015858193742595], [-75.09617236304571, 40.01590654011003], [-75.09636091010914, 40.01594617963542], [-75.09648485082805, 40.01596164495705], [-75.0967104010329, 40.015976936196914], [-75.09687740317702, 40.015980795181704], [-75.09704557731395, 40.015984681002344], [-75.09727074161512, 40.0159798042748], [-75.09750577306133, 40.01600413412216], [-75.09779602673703, 40.016041078575135], [-75.09797714040202, 40.01610322275027], [-75.09818971848458, 40.01619885491984], [-75.09845171468743, 40.01628806731903], [-75.09863332010706, 40.01633762262499], [-75.0989541290843, 40.01634754934597], [-75.0994513910549, 40.016287207860074], [-75.09961312492426, 40.016258180541676], [-75.09989401812634, 40.01619914350674], [-75.10039348942762, 40.01608214693139], [-75.10059500594313, 40.01604143711569], [-75.10101542585011, 40.01601837474194], [-75.10132367727344, 40.01601414726746], [-75.10154615040638, 40.01602431942203], [-75.10177219311154, 40.016027011100995], [-75.10204814023679, 40.016010696208625], [-75.10228557952493, 40.015973331174216], [-75.10254485693365, 40.01596418856369], [-75.10287807753099, 40.01599203185247], [-75.10331734435431, 40.016073979351674], [-75.10365344557117, 40.016111967523926], [-75.10386599817559, 40.01612442581209], [-75.10408202186417, 40.01613192421742], [-75.10436661446846, 40.016146041630506], [-75.10468821059497, 40.016135811677856], [-75.10498560567682, 40.01615778306505], [-75.10520636551904, 40.01621200785604], [-75.1054144656799, 40.016254602047276], [-75.10566284402671, 40.01627292340564], [-75.10586269194972, 40.01627500464343], [-75.10619444215709, 40.01634060537272], [-75.1064316228546, 40.016393947125465], [-75.10666562720535, 40.016444695070696], [-75.10685778919127, 40.01656000056662], [-75.10706904288469, 40.016693842391774], [-75.10721337838702, 40.01677104914463], [-75.10733477456357, 40.0168519653075], [-75.10743534731849, 40.016962640715306], [-75.1074969191298, 40.0170648597228], [-75.10753986399301, 40.0172246106732], [-75.1075484926834, 40.01742389303715], [-75.1075019453263, 40.01760930469143], [-75.1074492879232, 40.01778323623494], [-75.10740250262029, 40.01789052115543], [-75.10725067393167, 40.01808611062809], [-75.10713174797101, 40.01819425525665], [-75.10702670300225, 40.01828255869556], [-75.10688632285866, 40.018352409187465], [-75.10672341291877, 40.01841166013801], [-75.10654007144916, 40.018490600181316], [-75.10629411473795, 40.01857817906554], [-75.10602757994306, 40.01868922492428], [-75.10586011859452, 40.01878112960109], [-75.10575625037828, 40.018839218600135], [-75.10567101752486, 40.01896577809034], [-75.10558162665019, 40.019114922541654], [-75.10548898171467, 40.01920460947764], [-75.10533590146107, 40.01928062696204], [-75.10514063362046, 40.01932905063636], [-75.10490885747714, 40.01934702238403], [-75.10417631965316, 40.01934652461066], [-75.10399315033166, 40.01937884526158], [-75.10383544166106, 40.019430651520175], [-75.10373741520444, 40.01952793403622], [-75.10369705860172, 40.01965930618886], [-75.1036570026035, 40.01987656897237], [-75.10359316270015, 40.02023388882772], [-75.10354663582343, 40.02039388960434], [-75.10349786087525, 40.02056161716755], [-75.10344906506903, 40.02072942262346], [-75.1033671849326, 40.02084992359056], [-75.10324696224033, 40.02092046779915], [-75.10317007037045, 40.02097241862366], [-75.10314578864238, 40.0210831418571], [-75.10315611454705, 40.02120233779963], [-75.10319501376617, 40.02135672803016], [-75.10326807374527, 40.02153109220913], [-75.10335965788994, 40.02174233905787], [-75.1035865167461, 40.0221965348681], [-75.10365124898982, 40.022328497067704], [-75.10376993748694, 40.02248472580516], [-75.10390069411592, 40.02258750934463], [-75.10409693194785, 40.02280308621844], [-75.10420684398072, 40.02292841226691], [-75.10419313378188, 40.02302403107859], [-75.10419937155955, 40.0231201076988], [-75.10422615514095, 40.02320130771402], [-75.10429208156532, 40.02330259974516], [-75.10438324573097, 40.02339679548704], [-75.10448981833729, 40.02347983364043], [-75.10462705803057, 40.02354439338227], [-75.10480855458879, 40.023604262577635], [-75.1024230166573, 40.02949318557148], [-75.10195887434806, 40.02934196297108], [-75.10156167428505, 40.02918380082311], [-75.10128705513067, 40.0289720841755], [-75.09906469220137, 40.02749807807378], [-75.09880927970418, 40.02774045184587], [-75.09869780527592, 40.027854182841565], [-75.09832541146291, 40.02820654081584], [-75.09790836046977, 40.02861986382946], [-75.09680538289797, 40.02794846082214], [-75.09665184640231, 40.02785106630354], [-75.09655185034995, 40.027787634227415], [-75.09623683618052, 40.02759719115612], [-75.09531218868015, 40.02854813419083], [-75.09320525225375, 40.03070558680073], [-75.09354315989118, 40.03119660686105], [-75.093790692357, 40.031513191046294], [-75.09435086658802, 40.03220778020944], [-75.09411844194337, 40.03245672539379], [-75.09392169359725, 40.032648524438095], [-75.0937343543084, 40.032843763787554], [-75.09349854261541, 40.03307356717856], [-75.09327502170578, 40.03330591693202], [-75.09308759856975, 40.03348670616812], [-75.09768657589605, 40.035719345833094], [-75.0903533819722, 40.04298457247651], [-75.08897663424665, 40.044333503559685], [-75.08831388614998, 40.045515125514], [-75.08794833282026, 40.04634483545947], [-75.08763612729165, 40.04704383759833], [-75.08697553819498, 40.04856837334297], [-75.0856951039326, 40.04785186002135], [-75.08406675926334, 40.046964233443056], [-75.08365174732054, 40.046724542027356], [-75.08341587267958, 40.046600359614075], [-75.08300095783821, 40.046371493960706], [-75.08234451175854, 40.04599251847069], [-75.08035251915297, 40.04490616956516], [-75.07856631286752, 40.043905245218944], [-75.0765608830969, 40.042763955361195], [-75.07555346965913, 40.04220531304383], [-75.07545468513057, 40.04215513798341], [-75.07503370357503, 40.041941143862246], [-75.07545256782305, 40.0414780821767], [-75.07583571343075, 40.04109610738058], [-75.07623828501488, 40.04068659459254], [-75.07665244087141, 40.04025881302328], [-75.07682097008166, 40.040075356887755], [-75.07700242865678, 40.03988600766493], [-75.0773958050892, 40.03946541060029], [-75.07782992709585, 40.0390022391198], [-75.07801135411607, 40.03882753769454], [-75.07821099744447, 40.03861885625212], [-75.07838964012736, 40.03843440242911], [-75.07862140296287, 40.038206697716774], [-75.07882205767763, 40.03798920232221], [-75.07899997600468, 40.03779706653513], [-75.07915910930849, 40.037622473914574], [-75.07931365313148, 40.0374713951191], [-75.07954709690475, 40.03722276508653], [-75.07983718668031, 40.03692272182405], [-75.08024922552187, 40.03651060128627], [-75.08060112266844, 40.036131819358744], [-75.08098162607358, 40.03571413929394], [-75.08137885375395, 40.03531391323505], [-75.08157537830293, 40.03511145579118], [-75.08175869585502, 40.03492521355816], [-75.08195841577964, 40.03471897149558], [-75.08218024701313, 40.03448704593086], [-75.08292349300645, 40.03372330867389], [-75.08337184825928, 40.03324444864927], [-75.08401838790222, 40.03253985258157], [-75.08417226608184, 40.03231398234938], [-75.08427364859448, 40.032173074144445], [-75.08413521559794, 40.0319684446678], [-75.084097405649, 40.03188155842482], [-75.08408993092331, 40.03182185063179], [-75.08432709881482, 40.031763071134606], [-75.08451686634676, 40.03169751451363], [-75.08472066349404, 40.03162543348738], [-75.08492630444702, 40.03154244548476], [-75.08512333320796, 40.031450025257755], [-75.0852697585556, 40.03138028375811], [-75.08547258246628, 40.031273684432875], [-75.08560488963899, 40.03119645712578], [-75.08604451725004, 40.03093078216704], [-75.08673522761529, 40.03051272166657], [-75.08704403318237, 40.030332471248634], [-75.08780447439533, 40.02991630348491], [-75.08853297121763, 40.02951223847952], [-75.08956157098642, 40.02895049593653], [-75.0903918108727, 40.02850061797068], [-75.09377160583495, 40.026629748156786], [-75.09406814999566, 40.02647046138908], [-75.09439191996336, 40.0263379947691], [-75.09495268670224, 40.02619701018641], [-75.09526862397325, 40.026148333813644], [-75.0955834671491, 40.026127620134424], [-75.09605195741689, 40.02613494846775], [-75.09647774420104, 40.026186774181035], [-75.09682994834438, 40.02627212964553], [-75.09725400391805, 40.02641113436297], [-75.09759035708078, 40.026571076513996], [-75.09760535640449, 40.026374768656446], [-75.09704494224373, 40.025879303453735], [-75.09588283398332, 40.02475709894003], [-75.0955364517077, 40.02412972769605], [-75.09495857630324, 40.023261012180676], [-75.09377048922879, 40.022509222848406], [-75.09292462407517, 40.02196113938917], [-75.09149384447011, 40.021028167748334], [-75.08971963095158, 40.019876666126635], [-75.08916970347666, 40.020553783344866], [-75.08862030507747, 40.02124363667434], [-75.0872830574803, 40.02048620669436], [-75.08505923193333, 40.01921760855102], [-75.0843249369079, 40.01880570129187], [-75.0840592270956, 40.018659715651644], [-75.08350869706807, 40.01836678867006], [-75.08264223060424, 40.01789885752839], [-75.081994744679, 40.01858136037251], [-75.08150044657228, 40.019137017951294], [-75.08092459856877, 40.01975684134091], [-75.08042603579892, 40.02030400776405], [-75.0799195555891, 40.0208342774118], [-75.07941418942038, 40.02138857280776], [-75.07912465172282, 40.021706484266794], [-75.07888115254191, 40.021882928661384], [-75.07816413361522, 40.02236282970455], [-75.07750264200587, 40.02280937560482], [-75.07684195149976, 40.02325898385755], [-75.07562310739706, 40.02407587162441], [-75.07396432896537, 40.025074257481116], [-75.07336441926067, 40.02537013618446], [-75.07333312714907, 40.025290965734875], [-75.07019764577667, 40.0227256137045], [-75.06976502199616, 40.02238877796283], [-75.06908841755269, 40.02190558456266], [-75.06747816671317, 40.02274087219851], [-75.06628126765678, 40.02335211348504], [-75.06491395782366, 40.02406163942987], [-75.06429850056371, 40.02437366105983], [-75.06379250395135, 40.02463878984568], [-75.06325416663721, 40.024913758823566], [-75.06280300649158, 40.02440337289763], [-75.06271239425418, 40.0242925423012], [-75.06075658276164, 40.025302397254684], [-75.05880467941977, 40.026314935658625], [-75.05825183059187, 40.02569286300014], [-75.057897070503, 40.025876805875036], [-75.05759522139245, 40.026032809647084], [-75.05727981106796, 40.02619638423572], [-75.05695499182227, 40.02636259906879], [-75.05629534391466, 40.02670488753105], [-75.05539833613314, 40.02567408298286], [-75.0549663561723, 40.025172380397535], [-75.05449649038853, 40.02464923564854], [-75.05405573884796, 40.024130575636875], [-75.05383051939687, 40.02388229248625], [-75.05360536254146, 40.023616927357196], [-75.05337410689482, 40.02336301410848], [-75.05315294282204, 40.02310603050815], [-75.0529326587648, 40.02286481292343], [-75.05270351743722, 40.02259335939741], [-75.05248290255767, 40.02234721787948], [-75.05225498658803, 40.02208102634417], [-75.05177492702299, 40.0215363498483], [-75.05132044682324, 40.02101559235904], [-75.05090575006129, 40.02053632334524], [-75.05045067390724, 40.02002728783608], [-75.05000317862873, 40.019512392481026], [-75.04949864826371, 40.018930315978146], [-75.04895805847762, 40.01833459840812], [-75.04879026013448, 40.01814272009394], [-75.04869060025547, 40.01802875804136], [-75.04858708950196, 40.01793877323055], [-75.04843241042651, 40.01780693177609], [-75.04827883286003, 40.01769035907416], [-75.04813594950116, 40.017585297316074], [-75.04808650156707, 40.01750175437715], [-75.04779921109528, 40.017327097465994], [-75.04740062933426, 40.01699499112109], [-75.04695708881782, 40.01666649054795], [-75.04654946592537, 40.016354768020506], [-75.04648114678258, 40.016302523093245], [-75.04628938611744, 40.01615203672511], [-75.04601335698105, 40.015932664335985], [-75.04578450295824, 40.01572048260732], [-75.04549702717796, 40.01539135984509], [-75.04318345620553, 40.01230180802732], [-75.04487805989457, 40.01142884476869], [-75.0468045730374, 40.01040768532484], [-75.04802351584226, 40.009719588094946], [-75.04917137466465, 40.008935643873606], [-75.05045520772387, 40.007982636145904], [-75.05092040548402, 40.00762418782804], [-75.05401718703848, 40.010002054559614], [-75.05729957020579, 40.01336760087576], [-75.05840701069471, 40.012781407430175]]]}}, {"id": "7120", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08897663424665, 40.044333503559685], [-75.08831388614998, 40.045515125514], [-75.08794833282026, 40.04634483545947], [-75.08763612729165, 40.04704383759833], [-75.08697553819498, 40.04856837334297], [-75.0856951039326, 40.04785186002135], [-75.08406675926334, 40.046964233443056], [-75.08365174732054, 40.046724542027356], [-75.08341587267958, 40.046600359614075], [-75.08300095783821, 40.046371493960706], [-75.08234451175854, 40.04599251847069], [-75.08035251915297, 40.04490616956516], [-75.07856631286752, 40.043905245218944], [-75.0765608830969, 40.042763955361195], [-75.07555346965913, 40.04220531304383], [-75.07545468513057, 40.04215513798341], [-75.07503370357503, 40.041941143862246], [-75.07545256782305, 40.0414780821767], [-75.07583571343075, 40.04109610738058], [-75.07623828501488, 40.04068659459254], [-75.07665244087141, 40.04025881302328], [-75.07682097008166, 40.040075356887755], [-75.07700242865678, 40.03988600766493], [-75.0773958050892, 40.03946541060029], [-75.07782992709585, 40.0390022391198], [-75.07801135411607, 40.03882753769454], [-75.07821099744447, 40.03861885625212], [-75.07838964012736, 40.03843440242911], [-75.07862140296287, 40.038206697716774], [-75.07882205767763, 40.03798920232221], [-75.07899997600468, 40.03779706653513], [-75.07915910930849, 40.037622473914574], [-75.07931365313148, 40.0374713951191], [-75.07954709690475, 40.03722276508653], [-75.07983718668031, 40.03692272182405], [-75.08024922552187, 40.03651060128627], [-75.08060112266844, 40.036131819358744], [-75.08098162607358, 40.03571413929394], [-75.08137885375395, 40.03531391323505], [-75.08157537830293, 40.03511145579118], [-75.08175869585502, 40.03492521355816], [-75.08195841577964, 40.03471897149558], [-75.08218024701313, 40.03448704593086], [-75.08292349300645, 40.03372330867389], [-75.08337184825928, 40.03324444864927], [-75.08401838790222, 40.03253985258157], [-75.08417226608184, 40.03231398234938], [-75.08427364859448, 40.032173074144445], [-75.08413521559794, 40.0319684446678], [-75.084097405649, 40.03188155842482], [-75.08408993092331, 40.03182185063179], [-75.08432709881482, 40.031763071134606], [-75.08451686634676, 40.03169751451363], [-75.08472066349404, 40.03162543348738], [-75.08492630444702, 40.03154244548476], [-75.08512333320796, 40.031450025257755], [-75.0852697585556, 40.03138028375811], [-75.08547258246628, 40.031273684432875], [-75.08560488963899, 40.03119645712578], [-75.08604451725004, 40.03093078216704], [-75.08673522761529, 40.03051272166657], [-75.08704403318237, 40.030332471248634], [-75.08780447439533, 40.02991630348491], [-75.08853297121763, 40.02951223847952], [-75.08956157098642, 40.02895049593653], [-75.0903918108727, 40.02850061797068], [-75.09377160583495, 40.026629748156786], [-75.09406814999566, 40.02647046138908], [-75.09439191996336, 40.0263379947691], [-75.09495268670224, 40.02619701018641], [-75.09526862397325, 40.026148333813644], [-75.0955834671491, 40.026127620134424], [-75.09605195741689, 40.02613494846775], [-75.09647774420104, 40.026186774181035], [-75.09682994834438, 40.02627212964553], [-75.09725400391805, 40.02641113436297], [-75.09759035708078, 40.026571076513996], [-75.09906469220137, 40.02749807807378], [-75.10128705513067, 40.0289720841755], [-75.10156167428505, 40.02918380082311], [-75.10195887434806, 40.02934196297108], [-75.1024230166573, 40.02949318557148], [-75.10480855458879, 40.023604262577635], [-75.1049143487351, 40.02360089684679], [-75.10508763662361, 40.02350895536784], [-75.10518210647984, 40.02339025508062], [-75.10543678370175, 40.023002793046025], [-75.10566863995791, 40.022944815986456], [-75.10584846396745, 40.022941281788675], [-75.10605247374939, 40.02295749164282], [-75.10613545565268, 40.02300544943703], [-75.10631124672449, 40.02310543037679], [-75.10646255127769, 40.02319333576283], [-75.10659934434501, 40.02326939441552], [-75.10673673617148, 40.02333011580817], [-75.10686065894835, 40.02335215568997], [-75.10704424584219, 40.02331608887378], [-75.1072096770473, 40.023233555827986], [-75.1073729845967, 40.02314138040217], [-75.10751425639339, 40.023102421663594], [-75.10768455448083, 40.02308715380358], [-75.10778154248753, 40.02303182489346], [-75.10792281385686, 40.02299286475194], [-75.10803565669126, 40.022914876376085], [-75.10808940525057, 40.02281634179531], [-75.10807862273626, 40.022708648478115], [-75.10816720392039, 40.02261283534436], [-75.10846947746545, 40.022412571771106], [-75.10861343267538, 40.02230460133006], [-75.10879579097849, 40.022235887123955], [-75.10908257018968, 40.022177247355486], [-75.10936860306877, 40.02213777806876], [-75.10968715675077, 40.02216045205417], [-75.10981502257131, 40.022209440059875], [-75.10997370141887, 40.022236111394484], [-75.11018165557297, 40.02227926614272], [-75.11043418841447, 40.022331119294705], [-75.11070048985525, 40.02241398644175], [-75.11085179972112, 40.02250188607569], [-75.11094118311102, 40.022642083552036], [-75.11099007363472, 40.02279670032437], [-75.11100130792074, 40.0228928929837], [-75.11103099730558, 40.023027881026636], [-75.11110177526518, 40.02313311519714], [-75.11118647596466, 40.023254281404995], [-75.11125308109845, 40.02334956411429], [-75.11133144784338, 40.02351637049445], [-75.11137275171805, 40.023609414750425], [-75.11136284617542, 40.02373581970001], [-75.11140146858001, 40.0238978752842], [-75.11146539218102, 40.02417946886957], [-75.11152217264079, 40.02438798964436], [-75.11155111853812, 40.02454214695341], [-75.11155118858731, 40.024668781106776], [-75.11151724422533, 40.024771608827905], [-75.11145649869287, 40.02492178887383], [-75.11139530336182, 40.02521202095638], [-75.11138100554518, 40.025322974135], [-75.11136771254505, 40.02547232346244], [-75.11145717538353, 40.02561060483848], [-75.11162389969851, 40.02568734496481], [-75.11184485327558, 40.02571736433789], [-75.11201306961777, 40.02575576420475], [-75.11219565173879, 40.02580984284168], [-75.11239743559263, 40.025883550536044], [-75.11253997405726, 40.025940546364005], [-75.11264127307359, 40.026031131377025], [-75.11269694601232, 40.026139855005376], [-75.11273721167133, 40.02625973722888], [-75.11276124831959, 40.02641186400716], [-75.11278223350453, 40.02664258597819], [-75.11281268095597, 40.026880239703914], [-75.11284742220191, 40.027038159909495], [-75.11288284071983, 40.02732048726397], [-75.11289026279778, 40.02745805116416], [-75.11288477850178, 40.02760043473574], [-75.11279310960418, 40.02771153141426], [-75.11262767431037, 40.027794071584445], [-75.11241925306783, 40.02789097420533], [-75.11228720378666, 40.02794933838244], [-75.11212083880417, 40.02799156515585], [-75.11201551288957, 40.02800449573766], [-75.11188540151312, 40.02801301937457], [-75.11176496213216, 40.02802943822743], [-75.1116525633503, 40.02809592899173], [-75.11150271900249, 40.0282267929963], [-75.1113933681751, 40.02834323816028], [-75.11128855606445, 40.02847129816967], [-75.11119944987506, 40.02858053334839], [-75.11108406824572, 40.0287237002696], [-75.11101505890687, 40.02882956142872], [-75.110963465984, 40.02900105463474], [-75.11093346239159, 40.02913083519481], [-75.11089965592181, 40.0293583793058], [-75.11088312012737, 40.02952684150518], [-75.11091824685484, 40.029650443769015], [-75.11099587582973, 40.02983641975879], [-75.11104641384301, 40.02994886364824], [-75.11111815921498, 40.03015772835574], [-75.11113817749339, 40.03028481815558], [-75.1111304256763, 40.030484182095286], [-75.11113733717988, 40.03069155703038], [-75.11115355423335, 40.030916413112244], [-75.11114603241961, 40.03098147483674], [-75.11113104639891, 40.031043888122646], [-75.11111029413618, 40.03113031110495], [-75.11108423162239, 40.03128704286119], [-75.1110655442647, 40.03138254520654], [-75.11106017740865, 40.031520565969934], [-75.11105012104336, 40.03165080490753], [-75.11101877241295, 40.031815089260064], [-75.11098697635899, 40.031990875782576], [-75.11098071478231, 40.032151899997615], [-75.11093395775706, 40.032327343632254], [-75.11088094445881, 40.03253525806396], [-75.11086083187242, 40.03279573592071], [-75.11083246535115, 40.03288334174899], [-75.11078444721699, 40.03296282191432], [-75.1107405208493, 40.03306542190741], [-75.11073180561117, 40.03316115427316], [-75.11075606505753, 40.03330752991063], [-75.11083024503537, 40.0334809861199], [-75.11086592483, 40.033563319462765], [-75.1109623165532, 40.03378042456657], [-75.11105961613627, 40.033989029395414], [-75.11110976725047, 40.03409655366053], [-75.11118435201018, 40.034232574807], [-75.11131878745127, 40.034369970957016], [-75.11147771551177, 40.03451943936245], [-75.1116426742597, 40.03464218637786], [-75.1118463429548, 40.03479652038135], [-75.11200088136177, 40.034930539948306], [-75.11210903928468, 40.035101865293676], [-75.11217677643165, 40.03528569564004], [-75.11223007187495, 40.03545576172138], [-75.11229498148876, 40.03558388308132], [-75.11234917031798, 40.03573094741304], [-75.11246381193612, 40.03586404823729], [-75.11259311624242, 40.03600516240305], [-75.11271773120262, 40.03613849196673], [-75.11286185146832, 40.03628378348594], [-75.11305569974876, 40.036434051292005], [-75.11316100665682, 40.036504056939116], [-75.11403140194247, 40.035472603119146], [-75.11461328019617, 40.03479657194471], [-75.11489795401083, 40.0344480299467], [-75.11513512724989, 40.03447968217076], [-75.11547394249487, 40.03451920586586], [-75.11583371765533, 40.03457011622014], [-75.11615336508022, 40.03461643623171], [-75.11650544942219, 40.03465710540937], [-75.11685146188826, 40.03469482398715], [-75.11716343499901, 40.03473588882475], [-75.11755213886096, 40.03479497055524], [-75.12007475167565, 40.035112436465], [-75.12142273542835, 40.03528205370963], [-75.12386086326329, 40.035563736148795], [-75.12395251307039, 40.03484852062137], [-75.12403310722064, 40.03404097915165], [-75.12418810210198, 40.03255273783986], [-75.12534748854145, 40.032908326018976], [-75.12598314561127, 40.033122585588295], [-75.12706004213122, 40.033477949059915], [-75.12813812194852, 40.0338276626433], [-75.12909893597146, 40.03414864853474], [-75.12996771413667, 40.034430870331285], [-75.13088081387585, 40.03474587521162], [-75.13184454399239, 40.035052721926434], [-75.13276532628717, 40.03533772841605], [-75.1335665112153, 40.035626316406706], [-75.13435513859052, 40.03588374814797], [-75.13491719236487, 40.0360488365267], [-75.13601924186796, 40.03629591786183], [-75.13596239568302, 40.03714069095362], [-75.1359172080124, 40.03721491407448], [-75.13579331165975, 40.037460704204015], [-75.13566051505993, 40.037703539013485], [-75.13551964132269, 40.03794392826701], [-75.13539985461783, 40.03818986383155], [-75.13530975823267, 40.038444142866446], [-75.13524186910239, 40.03870228819914], [-75.13519214212045, 40.03896256431206], [-75.1351508380495, 40.03922409987065], [-75.13510640080575, 40.03948519467066], [-75.13505778090732, 40.03974579508309], [-75.13500880438107, 40.040006362132374], [-75.13496233925464, 40.04026715213024], [-75.13492119862019, 40.040528418339036], [-75.13488252571301, 40.040790038958356], [-75.13484452100693, 40.0410518342622], [-75.13480890949876, 40.04131382009847], [-75.13477741194309, 40.04157600140778], [-75.13475175466523, 40.04183839136754], [-75.13473370487289, 40.04210100769038], [-75.13472438816113, 40.04236393907692], [-75.13472182558891, 40.042627129658364], [-75.13472352169212, 40.042890480269094], [-75.13472697741948, 40.04315389256317], [-75.13472969726423, 40.04341726647428], [-75.13472962098656, 40.04368052265935], [-75.13472892805768, 40.043943748583104], [-75.13472835459646, 40.044206977223425], [-75.13472788313881, 40.04447020547966], [-75.13472748898417, 40.044733435492475], [-75.13472715583922, 40.04499666418777], [-75.13472686127587, 40.04525989556012], [-75.13472658669221, 40.045523125581795], [-75.13472630862711, 40.045786354619786], [-75.13472601174911, 40.04604958502804], [-75.13472590134562, 40.046135759857265], [-75.1347256727699, 40.04631281267226], [-75.1347252728087, 40.04657604072672], [-75.13472479198656, 40.04683926783781], [-75.13472421038942, 40.04710249355224], [-75.13472350689706, 40.04736571829014], [-75.13472266045814, 40.04762894067132], [-75.13472165229443, 40.04789216116925], [-75.13472046245599, 40.048155380230874], [-75.13471906989062, 40.04841859647586], [-75.13471592360841, 40.0486818070314], [-75.13470588083467, 40.04893219041025], [-75.13440674322722, 40.04891116535305], [-75.13409180476353, 40.048902587735896], [-75.13375894185535, 40.0488817426885], [-75.1332567119416, 40.048777459670774], [-75.13166128235686, 40.048156268360856], [-75.13140423760464, 40.04940024691916], [-75.13111308760577, 40.050690271010204], [-75.12945227218991, 40.050489274927635], [-75.12858891879509, 40.05036125112049], [-75.12824747591462, 40.051887744051875], [-75.12791015844874, 40.053461088976896], [-75.12876930743163, 40.05356421498887], [-75.12924104435761, 40.053622265606776], [-75.12922179044439, 40.05440819171393], [-75.12918727245439, 40.05565461231603], [-75.13000011598297, 40.05555327791002], [-75.1290445515563, 40.05703322693472], [-75.12897416052719, 40.05718740622033], [-75.12846164184455, 40.056879450176595], [-75.12695636310552, 40.05597494947975], [-75.12535397189804, 40.05501204603146], [-75.12484271623276, 40.0547191895723], [-75.12455119024064, 40.0545521959416], [-75.1233259706588, 40.05385034051602], [-75.12212244862376, 40.05316088650055], [-75.1208067107143, 40.05241432562143], [-75.11999035839818, 40.051950901443305], [-75.11954267223868, 40.05169675465307], [-75.11856523235454, 40.05114186146354], [-75.11706038791601, 40.05028752301431], [-75.11507311325819, 40.049135406060444], [-75.11450749368127, 40.04880747770997], [-75.11292673836158, 40.047890875760764], [-75.11236444179346, 40.047564816507226], [-75.1120565540253, 40.04738627911108], [-75.11106357455648, 40.046814616741415], [-75.10943208023384, 40.045875319211376], [-75.10926483047405, 40.04577902615255], [-75.10890588420136, 40.04612833317729], [-75.10904548462598, 40.046210809920076], [-75.10810372165213, 40.04716783265226], [-75.10821232868344, 40.04723130847366], [-75.10742774513943, 40.048022729092416], [-75.10764531689773, 40.04814054013331], [-75.10749118597747, 40.04832907182175], [-75.10631154318088, 40.0492917283961], [-75.10310487206245, 40.05119338851588], [-75.1030246267211, 40.051089122973224], [-75.10281166625275, 40.0508685864897], [-75.1018914465809, 40.05006629533136], [-75.10133641421142, 40.049540434137114], [-75.10039563010359, 40.04869298730429], [-75.09956065794458, 40.04797498853239], [-75.09880087535097, 40.04753158377558], [-75.09801858961916, 40.04709794044168], [-75.09697175151327, 40.04656599718221], [-75.09600049007513, 40.04600379173299], [-75.0951428672017, 40.04555226333374], [-75.09479268570398, 40.0453649583314], [-75.09453467758765, 40.04522327325332], [-75.094176025479, 40.04502710432539], [-75.0903533819722, 40.04298457247651], [-75.08897663424665, 40.044333503559685]]]}}, {"id": "7130", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13472601174911, 40.04604958502804], [-75.13472630862711, 40.045786354619786], [-75.13472658669221, 40.045523125581795], [-75.13472686127587, 40.04525989556012], [-75.13472715583922, 40.04499666418777], [-75.13472748898417, 40.044733435492475], [-75.13472788313881, 40.04447020547966], [-75.13472835459646, 40.044206977223425], [-75.13472892805768, 40.043943748583104], [-75.13472962098656, 40.04368052265935], [-75.13472969726423, 40.04341726647428], [-75.13472697741948, 40.04315389256317], [-75.13472352169212, 40.042890480269094], [-75.13472182558891, 40.042627129658364], [-75.13472438816113, 40.04236393907692], [-75.13473370487289, 40.04210100769038], [-75.13475175466523, 40.04183839136754], [-75.13477741194309, 40.04157600140778], [-75.13480890949876, 40.04131382009847], [-75.13484452100693, 40.0410518342622], [-75.13488252571301, 40.040790038958356], [-75.13492119862019, 40.040528418339036], [-75.13496233925464, 40.04026715213024], [-75.13500880438107, 40.040006362132374], [-75.13505778090732, 40.03974579508309], [-75.13510640080575, 40.03948519467066], [-75.1351508380495, 40.03922409987065], [-75.13519214212045, 40.03896256431206], [-75.13524186910239, 40.03870228819914], [-75.13530975823267, 40.038444142866446], [-75.13539985461783, 40.03818986383155], [-75.13551964132269, 40.03794392826701], [-75.13566051505993, 40.037703539013485], [-75.13579331165975, 40.037460704204015], [-75.1359172080124, 40.03721491407448], [-75.13596239568302, 40.03714069095362], [-75.13643742560077, 40.03719714962134], [-75.13682469320108, 40.03688982868427], [-75.13720839198119, 40.03656309931997], [-75.13816430148131, 40.03580745474563], [-75.13837487569867, 40.03588478067623], [-75.13909695975165, 40.0359825433927], [-75.13988302535608, 40.036084777555345], [-75.14067276785356, 40.036185703147375], [-75.14146588926472, 40.03628840562802], [-75.14463761989032, 40.03740050019296], [-75.1450944010915, 40.03741430698231], [-75.14514980930565, 40.0371471869134], [-75.14555423769299, 40.03526310349242], [-75.14643827735868, 40.035379044730846], [-75.14719897646965, 40.03547322032816], [-75.14817965587301, 40.035599243543416], [-75.14872321845299, 40.03567052723887], [-75.14925006473153, 40.03573632825544], [-75.14986041135666, 40.03582873929858], [-75.15559107750623, 40.03621529856409], [-75.1558581505199, 40.036417443412375], [-75.1561245406069, 40.03655208788836], [-75.15638304168068, 40.03664529696424], [-75.15664349184547, 40.03668758259277], [-75.15702140499151, 40.03671310349853], [-75.15837413570682, 40.03668606571486], [-75.15841548109299, 40.03750327785943], [-75.15845241039253, 40.03854029926103], [-75.15840456619196, 40.040737478582756], [-75.15835915529544, 40.041488147437796], [-75.15834207328669, 40.04202281718912], [-75.15831847943383, 40.04240956273372], [-75.15830795807854, 40.042862286311994], [-75.15828650750801, 40.04334277765106], [-75.15826273724423, 40.04378326023385], [-75.15749434216939, 40.04376394033985], [-75.15710054390964, 40.04375024955351], [-75.15671170262142, 40.04374406575828], [-75.15586689162292, 40.04372131585984], [-75.15579424451015, 40.045130568462234], [-75.15577069181604, 40.04532887629433], [-75.15574994730251, 40.04581858914535], [-75.15564729333768, 40.04737197878589], [-75.15554903914908, 40.04893607533981], [-75.15550418978171, 40.04957273185858], [-75.15544804124193, 40.050509287563564], [-75.15535591337611, 40.05184994789018], [-75.1552727968388, 40.05311415506475], [-75.15521592846608, 40.053923630467544], [-75.15555586975394, 40.054075078255536], [-75.15648768589912, 40.054521088248016], [-75.1569513074915, 40.05473349141708], [-75.15717617792004, 40.054836323074866], [-75.15755804003476, 40.05503537344851], [-75.15772612947846, 40.05514266578577], [-75.15774917146788, 40.05515408706353], [-75.15787079217264, 40.05519994829528], [-75.1583068914531, 40.05543826600539], [-75.15889048363145, 40.05576949183422], [-75.15831599261553, 40.05603530684842], [-75.15746051816018, 40.0564194703756], [-75.15747896418917, 40.056504930678976], [-75.15737303204526, 40.05858598062293], [-75.157200041546, 40.05864718062386], [-75.15689851127883, 40.05877686767505], [-75.15562086138792, 40.05932667201359], [-75.15527293531468, 40.05947082097148], [-75.15451465886387, 40.05978796538895], [-75.15376348409853, 40.06009936287663], [-75.15446021032547, 40.061154792902464], [-75.15522895265995, 40.06237394340174], [-75.15525483072531, 40.0624327360658], [-75.15520562760757, 40.0625047873463], [-75.15469973804461, 40.06302558333437], [-75.15411076692092, 40.063648702720286], [-75.15358456284916, 40.06419917687332], [-75.15351422568159, 40.064286960105086], [-75.1533997052835, 40.064346319747806], [-75.15294352202838, 40.06429432184391], [-75.15225506922619, 40.06429891873402], [-75.15188488782408, 40.06599297260364], [-75.15154453594731, 40.067492518421346], [-75.1512590535016, 40.068766755608095], [-75.15113969247578, 40.06930768861748], [-75.15110941573222, 40.06938823856531], [-75.15106191088287, 40.06946857816879], [-75.15096958553814, 40.06956843639189], [-75.1507247653823, 40.06982534507238], [-75.15004070721001, 40.06943588345188], [-75.14960541385284, 40.06918804665245], [-75.14835533464405, 40.06847629140363], [-75.1476786971091, 40.06809102144619], [-75.14666575147052, 40.067521504880396], [-75.14550083646236, 40.066852333810544], [-75.14521906964595, 40.06669047274589], [-75.1445545761143, 40.06631208041861], [-75.14405155015547, 40.06601595270874], [-75.14309806566018, 40.06547590316734], [-75.1418870299279, 40.06478995437998], [-75.14077361287495, 40.06415244752091], [-75.13941558224629, 40.06338650266371], [-75.13680077963983, 40.061950670877565], [-75.13518201886446, 40.06095171336758], [-75.13411737359088, 40.06029467864256], [-75.13336952909367, 40.05983314071961], [-75.13306980634653, 40.059648161740796], [-75.13011006466647, 40.0578699154973], [-75.12897416052719, 40.05718740622033], [-75.1290445515563, 40.05703322693472], [-75.13000011598297, 40.05555327791002], [-75.12918727245439, 40.05565461231603], [-75.12922179044439, 40.05440819171393], [-75.12924104435761, 40.053622265606776], [-75.12876930743163, 40.05356421498887], [-75.12791015844874, 40.053461088976896], [-75.12824747591462, 40.051887744051875], [-75.12858891879509, 40.05036125112049], [-75.12945227218991, 40.050489274927635], [-75.13111308760577, 40.050690271010204], [-75.13140423760464, 40.04940024691916], [-75.13166128235686, 40.048156268360856], [-75.1332567119416, 40.048777459670774], [-75.13375894185535, 40.0488817426885], [-75.13409180476353, 40.048902587735896], [-75.13440674322722, 40.04891116535305], [-75.13470588083467, 40.04893219041025], [-75.13471592360841, 40.0486818070314], [-75.13471906989062, 40.04841859647586], [-75.13472046245599, 40.048155380230874], [-75.13472165229443, 40.04789216116925], [-75.13472266045814, 40.04762894067132], [-75.13472350689706, 40.04736571829014], [-75.13472421038942, 40.04710249355224], [-75.13472479198656, 40.04683926783781], [-75.1347252728087, 40.04657604072672], [-75.1347256727699, 40.04631281267226], [-75.13472590134562, 40.046135759857265], [-75.13472601174911, 40.04604958502804]]]}}, {"id": "7150", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.09687740317702, 40.015980795181704], [-75.0967104010329, 40.015976936196914], [-75.09648485082805, 40.01596164495705], [-75.09636091010914, 40.01594617963542], [-75.09617236304571, 40.01590654011003], [-75.09604315382364, 40.015858193742595], [-75.0958055633854, 40.01573173878071], [-75.0955843450359, 40.01560566269948], [-75.09526085584925, 40.01541296068959], [-75.09508142056097, 40.015308009412614], [-75.09492490873457, 40.01520358702422], [-75.09474943973703, 40.01508108734914], [-75.09459659753882, 40.014966670368004], [-75.09448920384817, 40.014863385092106], [-75.09440338987376, 40.01477399992073], [-75.09430071223922, 40.0146548995285], [-75.09420442282375, 40.01451911094814], [-75.09381573062232, 40.01389900569513], [-75.09369551346215, 40.013704700356556], [-75.09356744835101, 40.01345981206091], [-75.09349947382906, 40.01327049502147], [-75.09346560120999, 40.01313110856111], [-75.0934609009396, 40.012999956755614], [-75.09348279140482, 40.01285934120278], [-75.09350746262793, 40.012731388269465], [-75.09357548894567, 40.01258427955463], [-75.09368785533968, 40.012392834002796], [-75.09392127569429, 40.01203912720307], [-75.0940575446021, 40.01182303501672], [-75.0942937947617, 40.01148073163575], [-75.09438434335257, 40.011344224245], [-75.09497380707462, 40.010506979466605], [-75.09510418754013, 40.010232572844764], [-75.095032054847, 40.01000711553365], [-75.09614999669296, 40.0099888746019], [-75.0968188014077, 40.010078406190615], [-75.09737554928974, 40.0101520023793], [-75.0980970429894, 40.01024887892238], [-75.09879853964992, 40.01033751589478], [-75.09935967046846, 40.010413958937825], [-75.10003932656444, 40.01050417622113], [-75.10076724389869, 40.01059116998829], [-75.1014775675622, 40.01069036050293], [-75.10221797518595, 40.010790141259406], [-75.10318525441383, 40.01091553525819], [-75.10350084961114, 40.010953468918046], [-75.10370488334752, 40.010982498833606], [-75.10416652148031, 40.01104175426094], [-75.1044909378137, 40.00945115129698], [-75.10480773856783, 40.007968794353225], [-75.10514096994618, 40.00646277304497], [-75.10533698181442, 40.00551937536787], [-75.10602631109278, 40.00549929463638], [-75.10666156788085, 40.00548114721689], [-75.1073529084745, 40.00547269932909], [-75.10803781110063, 40.00543237740518], [-75.10862843880291, 40.00540581803255], [-75.10937229646842, 40.00539334662989], [-75.11348354800558, 40.00592851401563], [-75.11930063244641, 40.00668062097756], [-75.12271875342688, 40.007135884907754], [-75.1234268932234, 40.007213386785665], [-75.12339320057532, 40.007418611434275], [-75.1233245784329, 40.00755692677894], [-75.12146940260696, 40.01015438751697], [-75.11944047531844, 40.01302705559972], [-75.11757219048913, 40.01558324450789], [-75.11747690485849, 40.015784203074695], [-75.11319772024986, 40.01553363305251], [-75.11136051115065, 40.01586805552725], [-75.10902514328343, 40.01628798447145], [-75.1079566960431, 40.01649243760471], [-75.10774566743571, 40.016581861972575], [-75.10706904288469, 40.016693842391774], [-75.10685778919127, 40.01656000056662], [-75.10666562720535, 40.016444695070696], [-75.1064316228546, 40.016393947125465], [-75.10619444215709, 40.01634060537272], [-75.10586269194972, 40.01627500464343], [-75.10566284402671, 40.01627292340564], [-75.1054144656799, 40.016254602047276], [-75.10520636551904, 40.01621200785604], [-75.10498560567682, 40.01615778306505], [-75.10468821059497, 40.016135811677856], [-75.10436661446846, 40.016146041630506], [-75.10408202186417, 40.01613192421742], [-75.10386599817559, 40.01612442581209], [-75.10365344557117, 40.016111967523926], [-75.10331734435431, 40.016073979351674], [-75.10287807753099, 40.01599203185247], [-75.10254485693365, 40.01596418856369], [-75.10228557952493, 40.015973331174216], [-75.10204814023679, 40.016010696208625], [-75.10177219311154, 40.016027011100995], [-75.10154615040638, 40.01602431942203], [-75.10132367727344, 40.01601414726746], [-75.10101542585011, 40.01601837474194], [-75.10059500594313, 40.01604143711569], [-75.10039348942762, 40.01608214693139], [-75.09989401812634, 40.01619914350674], [-75.09961312492426, 40.016258180541676], [-75.0994513910549, 40.016287207860074], [-75.0989541290843, 40.01634754934597], [-75.09863332010706, 40.01633762262499], [-75.09845171468743, 40.01628806731903], [-75.09818971848458, 40.01619885491984], [-75.09797714040202, 40.01610322275027], [-75.09779602673703, 40.016041078575135], [-75.09750577306133, 40.01600413412216], [-75.09727074161512, 40.0159798042748], [-75.09704557731395, 40.015984681002344], [-75.09687740317702, 40.015980795181704]]]}}, {"id": "7200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11281268095597, 40.026880239703914], [-75.11278223350453, 40.02664258597819], [-75.11276124831959, 40.02641186400716], [-75.11273721167133, 40.02625973722888], [-75.11269694601232, 40.026139855005376], [-75.11264127307359, 40.026031131377025], [-75.11253997405726, 40.025940546364005], [-75.11239743559263, 40.025883550536044], [-75.11219565173879, 40.02580984284168], [-75.11201306961777, 40.02575576420475], [-75.11184485327558, 40.02571736433789], [-75.11162389969851, 40.02568734496481], [-75.11145717538353, 40.02561060483848], [-75.11136771254505, 40.02547232346244], [-75.11138100554518, 40.025322974135], [-75.11139530336182, 40.02521202095638], [-75.11145649869287, 40.02492178887383], [-75.11151724422533, 40.024771608827905], [-75.11155118858731, 40.024668781106776], [-75.11155111853812, 40.02454214695341], [-75.11152217264079, 40.02438798964436], [-75.11146539218102, 40.02417946886957], [-75.11140146858001, 40.0238978752842], [-75.11136284617542, 40.02373581970001], [-75.11137275171805, 40.023609414750425], [-75.11133144784338, 40.02351637049445], [-75.11125308109845, 40.02334956411429], [-75.11118647596466, 40.023254281404995], [-75.11110177526518, 40.02313311519714], [-75.11103099730558, 40.023027881026636], [-75.11100130792074, 40.0228928929837], [-75.11099007363472, 40.02279670032437], [-75.11094118311102, 40.022642083552036], [-75.11085179972112, 40.02250188607569], [-75.11070048985525, 40.02241398644175], [-75.11043418841447, 40.022331119294705], [-75.11018165557297, 40.02227926614272], [-75.10997370141887, 40.022236111394484], [-75.10981502257131, 40.022209440059875], [-75.10968715675077, 40.02216045205417], [-75.10936860306877, 40.02213777806876], [-75.10908257018968, 40.022177247355486], [-75.10879579097849, 40.022235887123955], [-75.10861343267538, 40.02230460133006], [-75.10846947746545, 40.022412571771106], [-75.10816720392039, 40.02261283534436], [-75.10807862273626, 40.022708648478115], [-75.10808940525057, 40.02281634179531], [-75.10803565669126, 40.022914876376085], [-75.10792281385686, 40.02299286475194], [-75.10778154248753, 40.02303182489346], [-75.10768455448083, 40.02308715380358], [-75.10751425639339, 40.023102421663594], [-75.1073729845967, 40.02314138040217], [-75.1072096770473, 40.023233555827986], [-75.10704424584219, 40.02331608887378], [-75.10686065894835, 40.02335215568997], [-75.10673673617148, 40.02333011580817], [-75.10659934434501, 40.02326939441552], [-75.10646255127769, 40.02319333576283], [-75.10631124672449, 40.02310543037679], [-75.10613545565268, 40.02300544943703], [-75.10605247374939, 40.02295749164282], [-75.10584846396745, 40.022941281788675], [-75.10566863995791, 40.022944815986456], [-75.10543678370175, 40.023002793046025], [-75.10518210647984, 40.02339025508062], [-75.10508763662361, 40.02350895536784], [-75.1049143487351, 40.02360089684679], [-75.10480855458879, 40.023604262577635], [-75.10462705803057, 40.02354439338227], [-75.10448981833729, 40.02347983364043], [-75.10438324573097, 40.02339679548704], [-75.10429208156532, 40.02330259974516], [-75.10422615514095, 40.02320130771402], [-75.10419937155955, 40.0231201076988], [-75.10419313378188, 40.02302403107859], [-75.10420684398072, 40.02292841226691], [-75.10409693194785, 40.02280308621844], [-75.10390069411592, 40.02258750934463], [-75.10376993748694, 40.02248472580516], [-75.10365124898982, 40.022328497067704], [-75.1035865167461, 40.0221965348681], [-75.10335965788994, 40.02174233905787], [-75.10326807374527, 40.02153109220913], [-75.10319501376617, 40.02135672803016], [-75.10315611454705, 40.02120233779963], [-75.10314578864238, 40.0210831418571], [-75.10317007037045, 40.02097241862366], [-75.10324696224033, 40.02092046779915], [-75.1033671849326, 40.02084992359056], [-75.10344906506903, 40.02072942262346], [-75.10349786087525, 40.02056161716755], [-75.10354663582343, 40.02039388960434], [-75.10359316270015, 40.02023388882772], [-75.1036570026035, 40.01987656897237], [-75.10369705860172, 40.01965930618886], [-75.10373741520444, 40.01952793403622], [-75.10383544166106, 40.019430651520175], [-75.10399315033166, 40.01937884526158], [-75.10417631965316, 40.01934652461066], [-75.10490885747714, 40.01934702238403], [-75.10514063362046, 40.01932905063636], [-75.10533590146107, 40.01928062696204], [-75.10548898171467, 40.01920460947764], [-75.10558162665019, 40.019114922541654], [-75.10567101752486, 40.01896577809034], [-75.10575625037828, 40.018839218600135], [-75.10586011859452, 40.01878112960109], [-75.10602757994306, 40.01868922492428], [-75.10629411473795, 40.01857817906554], [-75.10654007144916, 40.018490600181316], [-75.10672341291877, 40.01841166013801], [-75.10688632285866, 40.018352409187465], [-75.10702670300225, 40.01828255869556], [-75.10713174797101, 40.01819425525665], [-75.10725067393167, 40.01808611062809], [-75.10740250262029, 40.01789052115543], [-75.1074492879232, 40.01778323623494], [-75.1075019453263, 40.01760930469143], [-75.1075484926834, 40.01742389303715], [-75.10753986399301, 40.0172246106732], [-75.1074969191298, 40.0170648597228], [-75.10743534731849, 40.016962640715306], [-75.10733477456357, 40.0168519653075], [-75.10721337838702, 40.01677104914463], [-75.10706904288469, 40.016693842391774], [-75.10774566743571, 40.016581861972575], [-75.1079566960431, 40.01649243760471], [-75.10902514328343, 40.01628798447145], [-75.11136051115065, 40.01586805552725], [-75.11319772024986, 40.01553363305251], [-75.11747690485849, 40.015784203074695], [-75.11757219048913, 40.01558324450789], [-75.11944047531844, 40.01302705559972], [-75.12146940260696, 40.01015438751697], [-75.1233245784329, 40.00755692677894], [-75.12339320057532, 40.007418611434275], [-75.1234268932234, 40.007213386785665], [-75.12394932729268, 40.0048150263638], [-75.12413815881776, 40.004830317442874], [-75.12447874922599, 40.0048561241479], [-75.12481960245576, 40.004880381575894], [-75.12516067340198, 40.00490328601852], [-75.12550191799478, 40.00492503739572], [-75.12584329110216, 40.004945832900546], [-75.12618475093373, 40.004965874307906], [-75.1265262525044, 40.00498535521095], [-75.12686775392743, 40.005004480086335], [-75.12720920671373, 40.00502344244802], [-75.12755058678738, 40.005042349869555], [-75.12787293070507, 40.00505914287225], [-75.12823372347772, 40.00507655443872], [-75.12857548972254, 40.00509169232322], [-75.12891735401352, 40.005105659191635], [-75.1292592889243, 40.00511855803528], [-75.12960127164347, 40.005130493753214], [-75.12994327233797, 40.005141571084394], [-75.13028526365714, 40.00515189122062], [-75.13062734388893, 40.00516042473138], [-75.13096967892228, 40.0051647840814], [-75.1313120905648, 40.005165243621754], [-75.13165438461807, 40.00516218906765], [-75.13195017894888, 40.0051571594535], [-75.13159329869447, 40.006777230208], [-75.13157556350811, 40.006918297371676], [-75.13128895844574, 40.0082654424629], [-75.13122229503595, 40.00838998153134], [-75.13076933610816, 40.010429891484755], [-75.13058658979985, 40.01132621444333], [-75.13039457043838, 40.0122046367008], [-75.13032098038171, 40.012520430993625], [-75.12995568069938, 40.01421690737463], [-75.12991212376365, 40.01438165693674], [-75.12985744154966, 40.01458954235703], [-75.12969626827335, 40.015025138211094], [-75.12954449782806, 40.015628823804676], [-75.1295060820777, 40.01580432267141], [-75.12950279799507, 40.0158893945626], [-75.12958420585664, 40.01596204506945], [-75.12816782747261, 40.01727601049683], [-75.12773597041543, 40.01780744067364], [-75.12728008257253, 40.01855118772663], [-75.12717014834826, 40.0187202445289], [-75.12841230851205, 40.01888818420382], [-75.12828942424522, 40.01931224639612], [-75.12817272187972, 40.019745126505015], [-75.12805743325659, 40.02016776351229], [-75.12793752006728, 40.02058217569274], [-75.12782553628675, 40.02100974360595], [-75.12772254870809, 40.02143541478058], [-75.12766722191142, 40.021678075942006], [-75.1275883473653, 40.02193652409814], [-75.12799561695972, 40.021990003261664], [-75.12832997980297, 40.02203750959046], [-75.1288388007593, 40.02209552698992], [-75.13067747059611, 40.0223264212425], [-75.13165534349513, 40.022466545626095], [-75.13266657267638, 40.02260530897158], [-75.13351806873054, 40.02269961384838], [-75.13517364017464, 40.02288937907387], [-75.13568333923226, 40.02295388314234], [-75.13606727037968, 40.022993869695384], [-75.13593982391987, 40.023051045166966], [-75.13549018536642, 40.023223266760084], [-75.13500172747884, 40.023376356045276], [-75.13433030569912, 40.02355568546947], [-75.13328560210047, 40.02378554621781], [-75.13255946830762, 40.02393498874043], [-75.1311676032351, 40.024128287087606], [-75.13043553193194, 40.02427583568229], [-75.12828863205314, 40.02472700509781], [-75.12773023933812, 40.0248465792651], [-75.12546398521849, 40.02518550922072], [-75.12447140059426, 40.025323467472475], [-75.12352677108895, 40.02546431519292], [-75.12228042299785, 40.02565150686943], [-75.11717408415109, 40.026387182797414], [-75.11323526065227, 40.02696631162894], [-75.11284742220191, 40.027038159909495], [-75.11281268095597, 40.026880239703914]]]}}, {"id": "7220", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0856951039326, 40.04785186002135], [-75.08406675926334, 40.046964233443056], [-75.08365174732054, 40.046724542027356], [-75.08341587267958, 40.046600359614075], [-75.08300095783821, 40.046371493960706], [-75.08234451175854, 40.04599251847069], [-75.08035251915297, 40.04490616956516], [-75.07856631286752, 40.043905245218944], [-75.0765608830969, 40.042763955361195], [-75.07555346965913, 40.04220531304383], [-75.07545468513057, 40.04215513798341], [-75.07503370357503, 40.041941143862246], [-75.07545256782305, 40.0414780821767], [-75.07583571343075, 40.04109610738058], [-75.07623828501488, 40.04068659459254], [-75.07665244087141, 40.04025881302328], [-75.07682097008166, 40.040075356887755], [-75.07700242865678, 40.03988600766493], [-75.0773958050892, 40.03946541060029], [-75.07782992709585, 40.0390022391198], [-75.07801135411607, 40.03882753769454], [-75.07821099744447, 40.03861885625212], [-75.07838964012736, 40.03843440242911], [-75.07862140296287, 40.038206697716774], [-75.07882205767763, 40.03798920232221], [-75.07899997600468, 40.03779706653513], [-75.07915910930849, 40.037622473914574], [-75.07931365313148, 40.0374713951191], [-75.07954709690475, 40.03722276508653], [-75.07983718668031, 40.03692272182405], [-75.08024922552187, 40.03651060128627], [-75.08060112266844, 40.036131819358744], [-75.08098162607358, 40.03571413929394], [-75.08137885375395, 40.03531391323505], [-75.08157537830293, 40.03511145579118], [-75.08175869585502, 40.03492521355816], [-75.08195841577964, 40.03471897149558], [-75.08218024701313, 40.03448704593086], [-75.08292349300645, 40.03372330867389], [-75.08337184825928, 40.03324444864927], [-75.08401838790222, 40.03253985258157], [-75.08417226608184, 40.03231398234938], [-75.08427364859448, 40.032173074144445], [-75.08413521559794, 40.0319684446678], [-75.084097405649, 40.03188155842482], [-75.08408993092331, 40.03182185063179], [-75.08432709881482, 40.031763071134606], [-75.08451686634676, 40.03169751451363], [-75.08472066349404, 40.03162543348738], [-75.08492630444702, 40.03154244548476], [-75.08512333320796, 40.031450025257755], [-75.0852697585556, 40.03138028375811], [-75.08547258246628, 40.031273684432875], [-75.08560488963899, 40.03119645712578], [-75.08604451725004, 40.03093078216704], [-75.08673522761529, 40.03051272166657], [-75.08704403318237, 40.030332471248634], [-75.08780447439533, 40.02991630348491], [-75.08853297121763, 40.02951223847952], [-75.08956157098642, 40.02895049593653], [-75.0903918108727, 40.02850061797068], [-75.09377160583495, 40.026629748156786], [-75.09406814999566, 40.02647046138908], [-75.09439191996336, 40.0263379947691], [-75.09495268670224, 40.02619701018641], [-75.09526862397325, 40.026148333813644], [-75.0955834671491, 40.026127620134424], [-75.09605195741689, 40.02613494846775], [-75.09647774420104, 40.026186774181035], [-75.09682994834438, 40.02627212964553], [-75.09725400391805, 40.02641113436297], [-75.09759035708078, 40.026571076513996], [-75.09906469220137, 40.02749807807378], [-75.09880927970418, 40.02774045184587], [-75.09869780527592, 40.027854182841565], [-75.09832541146291, 40.02820654081584], [-75.09790836046977, 40.02861986382946], [-75.09680538289797, 40.02794846082214], [-75.09665184640231, 40.02785106630354], [-75.09655185034995, 40.027787634227415], [-75.09623683618052, 40.02759719115612], [-75.09531218868015, 40.02854813419083], [-75.09320525225375, 40.03070558680073], [-75.09354315989118, 40.03119660686105], [-75.093790692357, 40.031513191046294], [-75.09435086658802, 40.03220778020944], [-75.09411844194337, 40.03245672539379], [-75.09392169359725, 40.032648524438095], [-75.0937343543084, 40.032843763787554], [-75.09349854261541, 40.03307356717856], [-75.09327502170578, 40.03330591693202], [-75.09308759856975, 40.03348670616812], [-75.09768657589605, 40.035719345833094], [-75.0903533819722, 40.04298457247651], [-75.08897663424665, 40.044333503559685], [-75.08831388614998, 40.045515125514], [-75.08794833282026, 40.04634483545947], [-75.08763612729165, 40.04704383759833], [-75.08697553819498, 40.04856837334297], [-75.0856951039326, 40.04785186002135]]]}}, {"id": "7260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13941558224629, 40.06338650266371], [-75.13680077963983, 40.061950670877565], [-75.13518201886446, 40.06095171336758], [-75.13411737359088, 40.06029467864256], [-75.13336952909367, 40.05983314071961], [-75.13306980634653, 40.059648161740796], [-75.13011006466647, 40.0578699154973], [-75.12897416052719, 40.05718740622033], [-75.1290445515563, 40.05703322693472], [-75.13000011598297, 40.05555327791002], [-75.12918727245439, 40.05565461231603], [-75.12922179044439, 40.05440819171393], [-75.12924104435761, 40.053622265606776], [-75.12876930743163, 40.05356421498887], [-75.12791015844874, 40.053461088976896], [-75.12824747591462, 40.051887744051875], [-75.12858891879509, 40.05036125112049], [-75.12945227218991, 40.050489274927635], [-75.13111308760577, 40.050690271010204], [-75.13140423760464, 40.04940024691916], [-75.13166128235686, 40.048156268360856], [-75.1332567119416, 40.048777459670774], [-75.13375894185535, 40.0488817426885], [-75.13409180476353, 40.048902587735896], [-75.13440674322722, 40.04891116535305], [-75.13470588083467, 40.04893219041025], [-75.13471592360841, 40.0486818070314], [-75.13471906989062, 40.04841859647586], [-75.13472046245599, 40.048155380230874], [-75.13472165229443, 40.04789216116925], [-75.13472266045814, 40.04762894067132], [-75.13472350689706, 40.04736571829014], [-75.13472421038942, 40.04710249355224], [-75.13472479198656, 40.04683926783781], [-75.1347252728087, 40.04657604072672], [-75.1347256727699, 40.04631281267226], [-75.13472590134562, 40.046135759857265], [-75.13566061865193, 40.04617514610765], [-75.13601975734528, 40.04623017754461], [-75.13635208096265, 40.046547805923666], [-75.13674362053031, 40.046696229658956], [-75.13713453708962, 40.046754167213415], [-75.1375290790481, 40.046806629274776], [-75.139108304773, 40.04701213324483], [-75.13990542259862, 40.047114056859115], [-75.14068846932118, 40.0472161940831], [-75.1417168401787, 40.04734688948639], [-75.14184609111163, 40.04735743502089], [-75.14289822863655, 40.04749494486369], [-75.14345145923748, 40.047823524418746], [-75.14405424447305, 40.04817245487743], [-75.14461035012435, 40.04847914408857], [-75.1449594702503, 40.048681907740466], [-75.14416856197187, 40.04988720936273], [-75.14400246680357, 40.05013417813268], [-75.14388950527827, 40.05072105229967], [-75.14384251662177, 40.05077213551278], [-75.14371846407764, 40.05130204420223], [-75.14360727865454, 40.05182697464946], [-75.14356956884698, 40.05211776363833], [-75.14357057108192, 40.05229749911938], [-75.14319193942907, 40.05381063214488], [-75.14307327307765, 40.05435604650704], [-75.1429815662819, 40.05478955328133], [-75.142849374825, 40.055358526745394], [-75.14250966589323, 40.05691042371588], [-75.14229230921642, 40.057942274324425], [-75.14218360676519, 40.05842583390503], [-75.14184320184367, 40.059949195387794], [-75.14151288719079, 40.061468595416784], [-75.14117039658525, 40.06301326034312], [-75.14092963782336, 40.06409383361448], [-75.14077361287495, 40.06415244752091], [-75.13941558224629, 40.06338650266371]]]}}, {"id": "7270", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12695636310552, 40.05597494947975], [-75.12535397189804, 40.05501204603146], [-75.12484271623276, 40.0547191895723], [-75.12455119024064, 40.0545521959416], [-75.1233259706588, 40.05385034051602], [-75.12212244862376, 40.05316088650055], [-75.1208067107143, 40.05241432562143], [-75.11999035839818, 40.051950901443305], [-75.11954267223868, 40.05169675465307], [-75.11856523235454, 40.05114186146354], [-75.11706038791601, 40.05028752301431], [-75.11507311325819, 40.049135406060444], [-75.11450749368127, 40.04880747770997], [-75.11292673836158, 40.047890875760764], [-75.11236444179346, 40.047564816507226], [-75.1120565540253, 40.04738627911108], [-75.11106357455648, 40.046814616741415], [-75.11115848410493, 40.046733071595796], [-75.1112195630462, 40.04663395316706], [-75.11123980198471, 40.046533897476515], [-75.1112605313834, 40.04642128910051], [-75.1112718713749, 40.04633987581251], [-75.11128418892369, 40.046233355278694], [-75.11132052005281, 40.04613995210309], [-75.11129273266582, 40.04601366260246], [-75.11127238187268, 40.0459063916448], [-75.11126958339774, 40.04576811220361], [-75.11124510292609, 40.045346619697824], [-75.11118527095176, 40.0449934222092], [-75.11115078146194, 40.04482928323243], [-75.11111531561619, 40.04469025331622], [-75.11111349520444, 40.04452686481716], [-75.11113349305668, 40.04443308648353], [-75.11118713129076, 40.04431495034588], [-75.11131341960784, 40.04422047269176], [-75.11151024216281, 40.04407797918106], [-75.11156575354802, 40.04403779158808], [-75.1117332427706, 40.043934836877064], [-75.11185124027685, 40.04384330742715], [-75.11198581625828, 40.04374587662462], [-75.11210576754667, 40.043604133305365], [-75.11219231569136, 40.04348047053307], [-75.11228678688215, 40.043363271613295], [-75.11233201443348, 40.04325122473875], [-75.11236858653379, 40.04315154394665], [-75.11246866984594, 40.04288997486483], [-75.11253291397634, 40.04270925566286], [-75.11257021738584, 40.04259074478913], [-75.11264213788857, 40.042422767540494], [-75.1127128405414, 40.04228617576003], [-75.1127741066663, 40.04214006146113], [-75.11286947701865, 40.04204161064726], [-75.1130556110803, 40.04187939626916], [-75.11331865739629, 40.04163099141643], [-75.11349028293597, 40.041421325852625], [-75.11359413553215, 40.04127292783695], [-75.1136475265812, 40.0411610687875], [-75.11372590411038, 40.04103721654756], [-75.11378099830318, 40.040881417330844], [-75.11385169712868, 40.04074482303881], [-75.11392190675035, 40.04062078412621], [-75.1140082063116, 40.04050339639674], [-75.11411900420693, 40.04038657080244], [-75.1142154194218, 40.04021915570021], [-75.11437838529145, 40.04002185416315], [-75.11446248689798, 40.03996095702236], [-75.11453306027111, 40.03982750226669], [-75.11453878916122, 40.039679994812566], [-75.11455061278535, 40.03958602844723], [-75.11453027601395, 40.03948631264985], [-75.11445948254539, 40.0392343375422], [-75.11434745416437, 40.03907566195408], [-75.11427990082679, 40.03898964670384], [-75.11469350877786, 40.039065701477355], [-75.11672716188447, 40.03942956666282], [-75.11722753225436, 40.039490945751716], [-75.11801054092834, 40.03959379090564], [-75.11876750715301, 40.03968652105032], [-75.11955672523094, 40.03978025236859], [-75.12043498445308, 40.03988793187012], [-75.12033160946375, 40.0404009127846], [-75.1225519578111, 40.040689183048585], [-75.1241108007864, 40.0408745104706], [-75.12403986750705, 40.041368609598], [-75.12397774297331, 40.04189472798651], [-75.12390826084913, 40.04243176165273], [-75.12384856625496, 40.04291297527701], [-75.12376584112621, 40.04343900192864], [-75.12370323161629, 40.043952497466286], [-75.12364352816455, 40.044445286281785], [-75.12356660532694, 40.044994142319055], [-75.1235023266746, 40.04554713840614], [-75.12343252567005, 40.04604121448975], [-75.12333940277584, 40.04656545250321], [-75.12325949511863, 40.04696936426776], [-75.12320877532723, 40.04724070249147], [-75.12315707859291, 40.04758132523088], [-75.12311811404847, 40.047814647662754], [-75.12303589199668, 40.04818714799974], [-75.12277702133987, 40.04961430254356], [-75.12251658636832, 40.05112692097295], [-75.12342163465625, 40.051255826598315], [-75.12433636664228, 40.05138159362807], [-75.12529830543205, 40.05149392534659], [-75.12575866118469, 40.0515612130172], [-75.12618668434979, 40.051616262405275], [-75.12666934586862, 40.05168769416722], [-75.12714446243086, 40.0517499945417], [-75.12824747591462, 40.051887744051875], [-75.12791015844874, 40.053461088976896], [-75.12876930743163, 40.05356421498887], [-75.12924104435761, 40.053622265606776], [-75.12922179044439, 40.05440819171393], [-75.12918727245439, 40.05565461231603], [-75.13000011598297, 40.05555327791002], [-75.1290445515563, 40.05703322693472], [-75.12897416052719, 40.05718740622033], [-75.12846164184455, 40.056879450176595], [-75.12695636310552, 40.05597494947975]]]}}, {"id": "7280", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10281166625275, 40.0508685864897], [-75.1018914465809, 40.05006629533136], [-75.10133641421142, 40.049540434137114], [-75.10039563010359, 40.04869298730429], [-75.09956065794458, 40.04797498853239], [-75.09880087535097, 40.04753158377558], [-75.09801858961916, 40.04709794044168], [-75.09697175151327, 40.04656599718221], [-75.09600049007513, 40.04600379173299], [-75.0951428672017, 40.04555226333374], [-75.09479268570398, 40.0453649583314], [-75.09453467758765, 40.04522327325332], [-75.094176025479, 40.04502710432539], [-75.0903533819722, 40.04298457247651], [-75.09768657589605, 40.035719345833094], [-75.09842348622718, 40.03609259162841], [-75.0993867904679, 40.03676270560465], [-75.10157375467256, 40.03829446838198], [-75.103163265148, 40.03919752094247], [-75.1046332240413, 40.04007483349837], [-75.10562252298803, 40.040667949189285], [-75.10673069026728, 40.041321112298505], [-75.10827180197076, 40.042214728152906], [-75.10993282324226, 40.04319925585045], [-75.1105023114915, 40.04351627589818], [-75.11151024216281, 40.04407797918106], [-75.11131341960784, 40.04422047269176], [-75.11118713129076, 40.04431495034588], [-75.11113349305668, 40.04443308648353], [-75.11111349520444, 40.04452686481716], [-75.11111531561619, 40.04469025331622], [-75.11115078146194, 40.04482928323243], [-75.11118527095176, 40.0449934222092], [-75.11124510292609, 40.045346619697824], [-75.11126958339774, 40.04576811220361], [-75.11127238187268, 40.0459063916448], [-75.11129273266582, 40.04601366260246], [-75.11132052005281, 40.04613995210309], [-75.11128418892369, 40.046233355278694], [-75.1112718713749, 40.04633987581251], [-75.1112605313834, 40.04642128910051], [-75.11123980198471, 40.046533897476515], [-75.1112195630462, 40.04663395316706], [-75.11115848410493, 40.046733071595796], [-75.11106357455648, 40.046814616741415], [-75.10943208023384, 40.045875319211376], [-75.10926483047405, 40.04577902615255], [-75.10890588420136, 40.04612833317729], [-75.10904548462598, 40.046210809920076], [-75.10810372165213, 40.04716783265226], [-75.10821232868344, 40.04723130847366], [-75.10742774513943, 40.048022729092416], [-75.10764531689773, 40.04814054013331], [-75.10749118597747, 40.04832907182175], [-75.10631154318088, 40.0492917283961], [-75.10310487206245, 40.05119338851588], [-75.1030246267211, 40.051089122973224], [-75.10281166625275, 40.0508685864897]]]}}, {"id": "7290", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08097132025813, 40.01530229667788], [-75.08019987701304, 40.014864913005], [-75.07946727058858, 40.01445822732093], [-75.07830534931806, 40.013819680943], [-75.07753693593935, 40.013356872141166], [-75.07742627803177, 40.012908300122575], [-75.07705894581584, 40.01133352361732], [-75.07831364702156, 40.01082038927243], [-75.07850491868784, 40.01073249149751], [-75.07928033188941, 40.01041011679957], [-75.07888283118169, 40.010028942497485], [-75.07874968635451, 40.00987955810453], [-75.07861364295223, 40.00935524799101], [-75.07847826246463, 40.008723089506965], [-75.07844817158372, 40.008587325110916], [-75.07833295323039, 40.00806746009549], [-75.07819554814382, 40.00741205761696], [-75.07804757869613, 40.00673401275043], [-75.07789180735155, 40.0060630276795], [-75.07774943992962, 40.00538417646413], [-75.07759312910837, 40.00469933736335], [-75.07747768474579, 40.00414030389461], [-75.0777073161663, 40.00398457483515], [-75.07870570437166, 40.00316245077873], [-75.07925832998944, 40.0027283673608], [-75.07978287508426, 40.00233899747106], [-75.08168151580726, 40.00134991509014], [-75.08363918980993, 40.00032618625841], [-75.08482491742816, 39.99970600691798], [-75.08513260283303, 39.99954507122644], [-75.08637219053867, 39.99889668903513], [-75.08666932734353, 39.9991549010774], [-75.0870710855701, 39.99960523222292], [-75.08725148428842, 39.99985134298901], [-75.08741858989772, 40.000102183717935], [-75.08747738455683, 40.00044123669756], [-75.0874978781014, 40.000754199257734], [-75.0875148209393, 40.00115780317993], [-75.08756900623546, 40.00178151413913], [-75.08758552063374, 40.00202886357714], [-75.08768061036204, 40.002278035314845], [-75.08790668836195, 40.00269656807221], [-75.08798430624469, 40.00288989257783], [-75.08810160755651, 40.003074055475324], [-75.08825342491625, 40.003213660293326], [-75.08842985436478, 40.003394154256455], [-75.08864656234672, 40.0035503823744], [-75.08888380083832, 40.00368440414936], [-75.08941342606012, 40.00388316403909], [-75.09015139125702, 40.004153884085476], [-75.09033735121965, 40.004222103066994], [-75.09097751437344, 40.004443576190404], [-75.09140573694945, 40.004554296486084], [-75.09183794632433, 40.00473062814792], [-75.0921010930726, 40.00487280351358], [-75.09221919628253, 40.00503682062715], [-75.09233848386813, 40.0051706262382], [-75.09255396545545, 40.00536603675294], [-75.09239074383822, 40.005511140248174], [-75.09181617120602, 40.00600868145237], [-75.09116707754136, 40.00705389319111], [-75.09099114477563, 40.00732055578791], [-75.09093112514739, 40.007443593445664], [-75.09032710271441, 40.00836154533965], [-75.09009362547506, 40.0087631653654], [-75.08986582746228, 40.009132753141486], [-75.08965972218581, 40.00946714048222], [-75.08952675928374, 40.00967215486071], [-75.08927245543349, 40.01006426240513], [-75.08919763531237, 40.010179622728174], [-75.08873149831201, 40.01092474773304], [-75.0879733473435, 40.012104293034525], [-75.08765571886487, 40.01243104828334], [-75.08757777102656, 40.01251711448529], [-75.08634986317635, 40.013869059525234], [-75.08581981502454, 40.014449200555006], [-75.08551972336888, 40.01478886638747], [-75.08465720895092, 40.01571363601343], [-75.08438320179262, 40.01599753384922], [-75.08385322409082, 40.01657439468965], [-75.08366059658319, 40.0167978926383], [-75.08356395690733, 40.01675184627466], [-75.08236494235803, 40.01606923064227], [-75.08097132025813, 40.01530229667788]]]}}, {"id": "7300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10318525441383, 40.01091553525819], [-75.10221797518595, 40.010790141259406], [-75.1014775675622, 40.01069036050293], [-75.10076724389869, 40.01059116998829], [-75.10003932656444, 40.01050417622113], [-75.09935967046846, 40.010413958937825], [-75.09879853964992, 40.01033751589478], [-75.0980970429894, 40.01024887892238], [-75.09737554928974, 40.0101520023793], [-75.0968188014077, 40.010078406190615], [-75.09614999669296, 40.0099888746019], [-75.095032054847, 40.01000711553365], [-75.09500332253424, 40.009917311657965], [-75.0949067147156, 40.00963116035168], [-75.09478736900864, 40.00944395831309], [-75.09461576907472, 40.009264628212186], [-75.09427702237522, 40.00906109068554], [-75.09370780600149, 40.00870015399339], [-75.09295800332019, 40.008264474944404], [-75.09258891364838, 40.007938335956275], [-75.09237684350016, 40.00770669202036], [-75.09221407877834, 40.00751139890072], [-75.09211389737854, 40.00722431245984], [-75.09215590467748, 40.00698840157629], [-75.09232133963845, 40.00678054642556], [-75.09253778112755, 40.00660915183336], [-75.09275698304405, 40.00636726149589], [-75.09285136993151, 40.00613256007388], [-75.09288480353679, 40.005974655093624], [-75.09327398346457, 40.00596226234677], [-75.09634801619768, 40.005852913915064], [-75.096867594174, 40.0055623568645], [-75.09798025936766, 40.004951203315294], [-75.09936342138738, 40.004204338993276], [-75.10049827342786, 40.00358035163278], [-75.10181133678756, 40.00286444150113], [-75.1037972729379, 40.003135874650006], [-75.10368780044956, 40.0036383117411], [-75.10360252415369, 40.00407447780811], [-75.10352956329014, 40.00443165033639], [-75.10327103349695, 40.005603012611246], [-75.10533698181442, 40.00551937536787], [-75.10514096994618, 40.00646277304497], [-75.10480773856783, 40.007968794353225], [-75.1044909378137, 40.00945115129698], [-75.10416652148031, 40.01104175426094], [-75.10370488334752, 40.010982498833606], [-75.10350084961114, 40.010953468918046], [-75.10318525441383, 40.01091553525819]]]}}, {"id": "7320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14405424447305, 40.04817245487743], [-75.14345145923748, 40.047823524418746], [-75.14289822863655, 40.04749494486369], [-75.14184609111163, 40.04735743502089], [-75.1417168401787, 40.04734688948639], [-75.14068846932118, 40.0472161940831], [-75.13990542259862, 40.047114056859115], [-75.139108304773, 40.04701213324483], [-75.1375290790481, 40.046806629274776], [-75.13713453708962, 40.046754167213415], [-75.13674362053031, 40.046696229658956], [-75.13635208096265, 40.046547805923666], [-75.13601975734528, 40.04623017754461], [-75.13566061865193, 40.04617514610765], [-75.13472590134562, 40.046135759857265], [-75.13472601174911, 40.04604958502804], [-75.13472630862711, 40.045786354619786], [-75.13472658669221, 40.045523125581795], [-75.13472686127587, 40.04525989556012], [-75.13472715583922, 40.04499666418777], [-75.13472748898417, 40.044733435492475], [-75.13472788313881, 40.04447020547966], [-75.13472835459646, 40.044206977223425], [-75.13472892805768, 40.043943748583104], [-75.13472962098656, 40.04368052265935], [-75.13472969726423, 40.04341726647428], [-75.13472697741948, 40.04315389256317], [-75.13472352169212, 40.042890480269094], [-75.13472182558891, 40.042627129658364], [-75.13472438816113, 40.04236393907692], [-75.13473370487289, 40.04210100769038], [-75.13475175466523, 40.04183839136754], [-75.13477741194309, 40.04157600140778], [-75.13480890949876, 40.04131382009847], [-75.13484452100693, 40.0410518342622], [-75.13488252571301, 40.040790038958356], [-75.13492119862019, 40.040528418339036], [-75.13496233925464, 40.04026715213024], [-75.13500880438107, 40.040006362132374], [-75.13505778090732, 40.03974579508309], [-75.13510640080575, 40.03948519467066], [-75.1351508380495, 40.03922409987065], [-75.13519214212045, 40.03896256431206], [-75.13524186910239, 40.03870228819914], [-75.13530975823267, 40.038444142866446], [-75.13539985461783, 40.03818986383155], [-75.13551964132269, 40.03794392826701], [-75.13566051505993, 40.037703539013485], [-75.13579331165975, 40.037460704204015], [-75.1359172080124, 40.03721491407448], [-75.13596239568302, 40.03714069095362], [-75.13643742560077, 40.03719714962134], [-75.13682469320108, 40.03688982868427], [-75.13720839198119, 40.03656309931997], [-75.13816430148131, 40.03580745474563], [-75.13837487569867, 40.03588478067623], [-75.13909695975165, 40.0359825433927], [-75.13988302535608, 40.036084777555345], [-75.14067276785356, 40.036185703147375], [-75.14146588926472, 40.03628840562802], [-75.14463761989032, 40.03740050019296], [-75.1450944010915, 40.03741430698231], [-75.14475013943076, 40.03907393952762], [-75.14483484273276, 40.03909529389763], [-75.1465864041407, 40.03905049033996], [-75.14751693464373, 40.0390216568223], [-75.14853266999647, 40.039003599011316], [-75.14854554188075, 40.03924251617451], [-75.14854610688744, 40.03937335949963], [-75.14852773195206, 40.03948876019615], [-75.14849532919025, 40.03967890879429], [-75.14843192760813, 40.039876935680155], [-75.14833728636707, 40.04008926772206], [-75.14822050255044, 40.04029680839816], [-75.14808463273732, 40.040481288460676], [-75.1476752049131, 40.040934966381], [-75.14740059680261, 40.04124865209369], [-75.14717808632864, 40.04149643421224], [-75.14709850337391, 40.04157143906791], [-75.14697851267586, 40.041731463715664], [-75.14690535911149, 40.04185985712996], [-75.14687399161087, 40.04196612419693], [-75.14685593723742, 40.04208108234812], [-75.146857531517, 40.04218180278661], [-75.14688229840992, 40.04231870797406], [-75.14693970827715, 40.0424584486666], [-75.14699021201726, 40.04254004327967], [-75.14708428051617, 40.042744899563225], [-75.14714370082122, 40.0430084054196], [-75.14714038176054, 40.04310281640004], [-75.14710460885777, 40.043324167185084], [-75.14701361561217, 40.043721372621505], [-75.14695055644779, 40.04401627147233], [-75.14684915190857, 40.04448263821296], [-75.14677547274304, 40.04478388096465], [-75.14677753155169, 40.044849237938145], [-75.14669300886234, 40.045194628987076], [-75.14663676712304, 40.04545030860512], [-75.14646875550979, 40.04622407338927], [-75.14528147732689, 40.046185509948074], [-75.1454080210859, 40.04673127633197], [-75.14547666751128, 40.047031947533014], [-75.14550656707368, 40.04723247677593], [-75.14550820155128, 40.047415603523135], [-75.14548093715094, 40.04761805154559], [-75.14543723983196, 40.04782781267246], [-75.14538930108704, 40.04796252007741], [-75.1453205598177, 40.04811425177652], [-75.14524213250647, 40.04825292700271], [-75.14514845117893, 40.04840811255315], [-75.14505541602155, 40.048546456430095], [-75.1449594702503, 40.048681907740466], [-75.14461035012435, 40.04847914408857], [-75.14405424447305, 40.04817245487743]]]}}, {"id": "7330", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05539833613314, 40.02567408298286], [-75.0549663561723, 40.025172380397535], [-75.05449649038853, 40.02464923564854], [-75.05405573884796, 40.024130575636875], [-75.05383051939687, 40.02388229248625], [-75.05360536254146, 40.023616927357196], [-75.05337410689482, 40.02336301410848], [-75.05315294282204, 40.02310603050815], [-75.0529326587648, 40.02286481292343], [-75.05270351743722, 40.02259335939741], [-75.05248290255767, 40.02234721787948], [-75.05225498658803, 40.02208102634417], [-75.05177492702299, 40.0215363498483], [-75.05132044682324, 40.02101559235904], [-75.05090575006129, 40.02053632334524], [-75.05045067390724, 40.02002728783608], [-75.05000317862873, 40.019512392481026], [-75.04949864826371, 40.018930315978146], [-75.04895805847762, 40.01833459840812], [-75.04879026013448, 40.01814272009394], [-75.04869060025547, 40.01802875804136], [-75.04858708950196, 40.01793877323055], [-75.04843241042651, 40.01780693177609], [-75.04827883286003, 40.01769035907416], [-75.04813594950116, 40.017585297316074], [-75.04808650156707, 40.01750175437715], [-75.04779921109528, 40.017327097465994], [-75.04740062933426, 40.01699499112109], [-75.04695708881782, 40.01666649054795], [-75.04654946592537, 40.016354768020506], [-75.04648114678258, 40.016302523093245], [-75.04628938611744, 40.01615203672511], [-75.04601335698105, 40.015932664335985], [-75.04578450295824, 40.01572048260732], [-75.04549702717796, 40.01539135984509], [-75.04318345620553, 40.01230180802732], [-75.04487805989457, 40.01142884476869], [-75.0468045730374, 40.01040768532484], [-75.04802351584226, 40.009719588094946], [-75.04917137466465, 40.008935643873606], [-75.05045520772387, 40.007982636145904], [-75.05092040548402, 40.00762418782804], [-75.05401718703848, 40.010002054559614], [-75.05729957020579, 40.01336760087576], [-75.05745743132746, 40.01350819366441], [-75.05784818069887, 40.013855847350165], [-75.05840033380261, 40.01434703578137], [-75.05889250801464, 40.014906966560616], [-75.05979914210195, 40.01594287272425], [-75.06065911296884, 40.01693317004281], [-75.06159650213483, 40.01799493818623], [-75.06249567396762, 40.01901613855505], [-75.06330301920873, 40.0199391862737], [-75.0634198291396, 40.02004287509226], [-75.06358848374596, 40.020322696550465], [-75.06368423489864, 40.02039292136493], [-75.0642976684409, 40.02107469328656], [-75.0651918913363, 40.02210515175155], [-75.06582704066194, 40.022829713864425], [-75.06628126765678, 40.02335211348504], [-75.06491395782366, 40.02406163942987], [-75.06429850056371, 40.02437366105983], [-75.06379250395135, 40.02463878984568], [-75.06325416663721, 40.024913758823566], [-75.06280300649158, 40.02440337289763], [-75.06271239425418, 40.0242925423012], [-75.06075658276164, 40.025302397254684], [-75.05880467941977, 40.026314935658625], [-75.05825183059187, 40.02569286300014], [-75.057897070503, 40.025876805875036], [-75.05759522139245, 40.026032809647084], [-75.05727981106796, 40.02619638423572], [-75.05695499182227, 40.02636259906879], [-75.05629534391466, 40.02670488753105], [-75.05539833613314, 40.02567408298286]]]}}, {"id": "7350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12714446243086, 40.0517499945417], [-75.12666934586862, 40.05168769416722], [-75.12618668434979, 40.051616262405275], [-75.12575866118469, 40.0515612130172], [-75.12529830543205, 40.05149392534659], [-75.12433636664228, 40.05138159362807], [-75.12342163465625, 40.051255826598315], [-75.12251658636832, 40.05112692097295], [-75.12277702133987, 40.04961430254356], [-75.12303589199668, 40.04818714799974], [-75.12311811404847, 40.047814647662754], [-75.12315707859291, 40.04758132523088], [-75.12320877532723, 40.04724070249147], [-75.12325949511863, 40.04696936426776], [-75.12333940277584, 40.04656545250321], [-75.12343252567005, 40.04604121448975], [-75.1235023266746, 40.04554713840614], [-75.12356660532694, 40.044994142319055], [-75.12364352816455, 40.044445286281785], [-75.12370323161629, 40.043952497466286], [-75.12376584112621, 40.04343900192864], [-75.12384856625496, 40.04291297527701], [-75.12390826084913, 40.04243176165273], [-75.12397774297331, 40.04189472798651], [-75.12403986750705, 40.041368609598], [-75.1241108007864, 40.0408745104706], [-75.1225519578111, 40.040689183048585], [-75.12033160946375, 40.0404009127846], [-75.12043498445308, 40.03988793187012], [-75.11955672523094, 40.03978025236859], [-75.11876750715301, 40.03968652105032], [-75.11801054092834, 40.03959379090564], [-75.11722753225436, 40.039490945751716], [-75.11672716188447, 40.03942956666282], [-75.11469350877786, 40.039065701477355], [-75.11427990082679, 40.03898964670384], [-75.11425014870089, 40.03884252882347], [-75.1142487356538, 40.038750401375246], [-75.11420272836139, 40.038649574724715], [-75.1141160352188, 40.038503685594705], [-75.11409857931179, 40.03837473435773], [-75.11410319589001, 40.03825588381147], [-75.11408860470681, 40.038117404159905], [-75.11404788283444, 40.03800902466463], [-75.11402212652956, 40.03790098860959], [-75.1139219993191, 40.037522632849516], [-75.11386266859212, 40.0373792906528], [-75.11381241943819, 40.03725917994319], [-75.1137419204401, 40.03714627938603], [-75.11361410099974, 40.03696682859716], [-75.11349536452525, 40.03681061013599], [-75.11338012352775, 40.036692843895196], [-75.11326496084212, 40.03657316283834], [-75.11316100665682, 40.036504056939116], [-75.11403140194247, 40.035472603119146], [-75.11461328019617, 40.03479657194471], [-75.11489795401083, 40.0344480299467], [-75.11513512724989, 40.03447968217076], [-75.11547394249487, 40.03451920586586], [-75.11583371765533, 40.03457011622014], [-75.11615336508022, 40.03461643623171], [-75.11650544942219, 40.03465710540937], [-75.11685146188826, 40.03469482398715], [-75.11716343499901, 40.03473588882475], [-75.11755213886096, 40.03479497055524], [-75.12007475167565, 40.035112436465], [-75.12142273542835, 40.03528205370963], [-75.12386086326329, 40.035563736148795], [-75.12395251307039, 40.03484852062137], [-75.12403310722064, 40.03404097915165], [-75.12418810210198, 40.03255273783986], [-75.12534748854145, 40.032908326018976], [-75.12598314561127, 40.033122585588295], [-75.12706004213122, 40.033477949059915], [-75.12813812194852, 40.0338276626433], [-75.12909893597146, 40.03414864853474], [-75.12996771413667, 40.034430870331285], [-75.13088081387585, 40.03474587521162], [-75.13184454399239, 40.035052721926434], [-75.13276532628717, 40.03533772841605], [-75.1335665112153, 40.035626316406706], [-75.13435513859052, 40.03588374814797], [-75.13491719236487, 40.0360488365267], [-75.13601924186796, 40.03629591786183], [-75.13596239568302, 40.03714069095362], [-75.1359172080124, 40.03721491407448], [-75.13579331165975, 40.037460704204015], [-75.13566051505993, 40.037703539013485], [-75.13551964132269, 40.03794392826701], [-75.13539985461783, 40.03818986383155], [-75.13530975823267, 40.038444142866446], [-75.13524186910239, 40.03870228819914], [-75.13519214212045, 40.03896256431206], [-75.1351508380495, 40.03922409987065], [-75.13510640080575, 40.03948519467066], [-75.13505778090732, 40.03974579508309], [-75.13500880438107, 40.040006362132374], [-75.13496233925464, 40.04026715213024], [-75.13492119862019, 40.040528418339036], [-75.13488252571301, 40.040790038958356], [-75.13484452100693, 40.0410518342622], [-75.13480890949876, 40.04131382009847], [-75.13477741194309, 40.04157600140778], [-75.13475175466523, 40.04183839136754], [-75.13473370487289, 40.04210100769038], [-75.13472438816113, 40.04236393907692], [-75.13472182558891, 40.042627129658364], [-75.13472352169212, 40.042890480269094], [-75.13472697741948, 40.04315389256317], [-75.13472969726423, 40.04341726647428], [-75.13472962098656, 40.04368052265935], [-75.13472892805768, 40.043943748583104], [-75.13472835459646, 40.044206977223425], [-75.13472788313881, 40.04447020547966], [-75.13472748898417, 40.044733435492475], [-75.13472715583922, 40.04499666418777], [-75.13472686127587, 40.04525989556012], [-75.13472658669221, 40.045523125581795], [-75.13472630862711, 40.045786354619786], [-75.13472601174911, 40.04604958502804], [-75.13472590134562, 40.046135759857265], [-75.1347256727699, 40.04631281267226], [-75.1347252728087, 40.04657604072672], [-75.13472479198656, 40.04683926783781], [-75.13472421038942, 40.04710249355224], [-75.13472350689706, 40.04736571829014], [-75.13472266045814, 40.04762894067132], [-75.13472165229443, 40.04789216116925], [-75.13472046245599, 40.048155380230874], [-75.13471906989062, 40.04841859647586], [-75.13471592360841, 40.0486818070314], [-75.13470588083467, 40.04893219041025], [-75.13440674322722, 40.04891116535305], [-75.13409180476353, 40.048902587735896], [-75.13375894185535, 40.0488817426885], [-75.1332567119416, 40.048777459670774], [-75.13166128235686, 40.048156268360856], [-75.13140423760464, 40.04940024691916], [-75.13111308760577, 40.050690271010204], [-75.12945227218991, 40.050489274927635], [-75.12858891879509, 40.05036125112049], [-75.12824747591462, 40.051887744051875], [-75.12714446243086, 40.0517499945417]]]}}, {"id": "7360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.09906469220137, 40.02749807807378], [-75.09759035708078, 40.026571076513996], [-75.09760535640449, 40.026374768656446], [-75.09704494224373, 40.025879303453735], [-75.09588283398332, 40.02475709894003], [-75.0955364517077, 40.02412972769605], [-75.09495857630324, 40.023261012180676], [-75.09377048922879, 40.022509222848406], [-75.09292462407517, 40.02196113938917], [-75.09149384447011, 40.021028167748334], [-75.08971963095158, 40.019876666126635], [-75.08916970347666, 40.020553783344866], [-75.08862030507747, 40.02124363667434], [-75.0872830574803, 40.02048620669436], [-75.08505923193333, 40.01921760855102], [-75.0843249369079, 40.01880570129187], [-75.0840592270956, 40.018659715651644], [-75.08350869706807, 40.01836678867006], [-75.08264223060424, 40.01789885752839], [-75.08366059658319, 40.0167978926383], [-75.08385322409082, 40.01657439468965], [-75.08438320179262, 40.01599753384922], [-75.08465720895092, 40.01571363601343], [-75.08551972336888, 40.01478886638747], [-75.08581981502454, 40.014449200555006], [-75.08634986317635, 40.013869059525234], [-75.08757777102656, 40.01251711448529], [-75.08765571886487, 40.01243104828334], [-75.0879733473435, 40.012104293034525], [-75.08873149831201, 40.01092474773304], [-75.08919763531237, 40.010179622728174], [-75.08927245543349, 40.01006426240513], [-75.08952675928374, 40.00967215486071], [-75.08965972218581, 40.00946714048222], [-75.08986582746228, 40.009132753141486], [-75.09009362547506, 40.0087631653654], [-75.09032710271441, 40.00836154533965], [-75.09093112514739, 40.007443593445664], [-75.09099114477563, 40.00732055578791], [-75.09116707754136, 40.00705389319111], [-75.09181617120602, 40.00600868145237], [-75.09288480353679, 40.005974655093624], [-75.09285136993151, 40.00613256007388], [-75.09275698304405, 40.00636726149589], [-75.09253778112755, 40.00660915183336], [-75.09232133963845, 40.00678054642556], [-75.09215590467748, 40.00698840157629], [-75.09211389737854, 40.00722431245984], [-75.09221407877834, 40.00751139890072], [-75.09237684350016, 40.00770669202036], [-75.09258891364838, 40.007938335956275], [-75.09295800332019, 40.008264474944404], [-75.09370780600149, 40.00870015399339], [-75.09427702237522, 40.00906109068554], [-75.09461576907472, 40.009264628212186], [-75.09478736900864, 40.00944395831309], [-75.0949067147156, 40.00963116035168], [-75.09500332253424, 40.009917311657965], [-75.095032054847, 40.01000711553365], [-75.09510418754013, 40.010232572844764], [-75.09497380707462, 40.010506979466605], [-75.09438434335257, 40.011344224245], [-75.0942937947617, 40.01148073163575], [-75.0940575446021, 40.01182303501672], [-75.09392127569429, 40.01203912720307], [-75.09368785533968, 40.012392834002796], [-75.09357548894567, 40.01258427955463], [-75.09350746262793, 40.012731388269465], [-75.09348279140482, 40.01285934120278], [-75.0934609009396, 40.012999956755614], [-75.09346560120999, 40.01313110856111], [-75.09349947382906, 40.01327049502147], [-75.09356744835101, 40.01345981206091], [-75.09369551346215, 40.013704700356556], [-75.09381573062232, 40.01389900569513], [-75.09420442282375, 40.01451911094814], [-75.09430071223922, 40.0146548995285], [-75.09440338987376, 40.01477399992073], [-75.09448920384817, 40.014863385092106], [-75.09459659753882, 40.014966670368004], [-75.09474943973703, 40.01508108734914], [-75.09492490873457, 40.01520358702422], [-75.09508142056097, 40.015308009412614], [-75.09526085584925, 40.01541296068959], [-75.0955843450359, 40.01560566269948], [-75.0958055633854, 40.01573173878071], [-75.09604315382364, 40.015858193742595], [-75.09617236304571, 40.01590654011003], [-75.09636091010914, 40.01594617963542], [-75.09648485082805, 40.01596164495705], [-75.0967104010329, 40.015976936196914], [-75.09687740317702, 40.015980795181704], [-75.09704557731395, 40.015984681002344], [-75.09727074161512, 40.0159798042748], [-75.09750577306133, 40.01600413412216], [-75.09779602673703, 40.016041078575135], [-75.09797714040202, 40.01610322275027], [-75.09818971848458, 40.01619885491984], [-75.09845171468743, 40.01628806731903], [-75.09863332010706, 40.01633762262499], [-75.0989541290843, 40.01634754934597], [-75.0994513910549, 40.016287207860074], [-75.09961312492426, 40.016258180541676], [-75.09989401812634, 40.01619914350674], [-75.10039348942762, 40.01608214693139], [-75.10059500594313, 40.01604143711569], [-75.10101542585011, 40.01601837474194], [-75.10132367727344, 40.01601414726746], [-75.10154615040638, 40.01602431942203], [-75.10177219311154, 40.016027011100995], [-75.10204814023679, 40.016010696208625], [-75.10228557952493, 40.015973331174216], [-75.10254485693365, 40.01596418856369], [-75.10287807753099, 40.01599203185247], [-75.10331734435431, 40.016073979351674], [-75.10365344557117, 40.016111967523926], [-75.10386599817559, 40.01612442581209], [-75.10408202186417, 40.01613192421742], [-75.10436661446846, 40.016146041630506], [-75.10468821059497, 40.016135811677856], [-75.10498560567682, 40.01615778306505], [-75.10520636551904, 40.01621200785604], [-75.1054144656799, 40.016254602047276], [-75.10566284402671, 40.01627292340564], [-75.10586269194972, 40.01627500464343], [-75.10619444215709, 40.01634060537272], [-75.1064316228546, 40.016393947125465], [-75.10666562720535, 40.016444695070696], [-75.10685778919127, 40.01656000056662], [-75.10706904288469, 40.016693842391774], [-75.10721337838702, 40.01677104914463], [-75.10733477456357, 40.0168519653075], [-75.10743534731849, 40.016962640715306], [-75.1074969191298, 40.0170648597228], [-75.10753986399301, 40.0172246106732], [-75.1075484926834, 40.01742389303715], [-75.1075019453263, 40.01760930469143], [-75.1074492879232, 40.01778323623494], [-75.10740250262029, 40.01789052115543], [-75.10725067393167, 40.01808611062809], [-75.10713174797101, 40.01819425525665], [-75.10702670300225, 40.01828255869556], [-75.10688632285866, 40.018352409187465], [-75.10672341291877, 40.01841166013801], [-75.10654007144916, 40.018490600181316], [-75.10629411473795, 40.01857817906554], [-75.10602757994306, 40.01868922492428], [-75.10586011859452, 40.01878112960109], [-75.10575625037828, 40.018839218600135], [-75.10567101752486, 40.01896577809034], [-75.10558162665019, 40.019114922541654], [-75.10548898171467, 40.01920460947764], [-75.10533590146107, 40.01928062696204], [-75.10514063362046, 40.01932905063636], [-75.10490885747714, 40.01934702238403], [-75.10417631965316, 40.01934652461066], [-75.10399315033166, 40.01937884526158], [-75.10383544166106, 40.019430651520175], [-75.10373741520444, 40.01952793403622], [-75.10369705860172, 40.01965930618886], [-75.1036570026035, 40.01987656897237], [-75.10359316270015, 40.02023388882772], [-75.10354663582343, 40.02039388960434], [-75.10349786087525, 40.02056161716755], [-75.10344906506903, 40.02072942262346], [-75.1033671849326, 40.02084992359056], [-75.10324696224033, 40.02092046779915], [-75.10317007037045, 40.02097241862366], [-75.10314578864238, 40.0210831418571], [-75.10315611454705, 40.02120233779963], [-75.10319501376617, 40.02135672803016], [-75.10326807374527, 40.02153109220913], [-75.10335965788994, 40.02174233905787], [-75.1035865167461, 40.0221965348681], [-75.10365124898982, 40.022328497067704], [-75.10376993748694, 40.02248472580516], [-75.10390069411592, 40.02258750934463], [-75.10409693194785, 40.02280308621844], [-75.10420684398072, 40.02292841226691], [-75.10419313378188, 40.02302403107859], [-75.10419937155955, 40.0231201076988], [-75.10422615514095, 40.02320130771402], [-75.10429208156532, 40.02330259974516], [-75.10438324573097, 40.02339679548704], [-75.10448981833729, 40.02347983364043], [-75.10462705803057, 40.02354439338227], [-75.10480855458879, 40.023604262577635], [-75.1024230166573, 40.02949318557148], [-75.10195887434806, 40.02934196297108], [-75.10156167428505, 40.02918380082311], [-75.10128705513067, 40.0289720841755], [-75.09906469220137, 40.02749807807378]]]}}, {"id": "7370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12714446243086, 40.0517499945417], [-75.12666934586862, 40.05168769416722], [-75.12618668434979, 40.051616262405275], [-75.12575866118469, 40.0515612130172], [-75.12529830543205, 40.05149392534659], [-75.12433636664228, 40.05138159362807], [-75.12342163465625, 40.051255826598315], [-75.12251658636832, 40.05112692097295], [-75.12277702133987, 40.04961430254356], [-75.12303589199668, 40.04818714799974], [-75.12311811404847, 40.047814647662754], [-75.12315707859291, 40.04758132523088], [-75.12320877532723, 40.04724070249147], [-75.12325949511863, 40.04696936426776], [-75.12333940277584, 40.04656545250321], [-75.12343252567005, 40.04604121448975], [-75.1235023266746, 40.04554713840614], [-75.12356660532694, 40.044994142319055], [-75.12364352816455, 40.044445286281785], [-75.12370323161629, 40.043952497466286], [-75.12376584112621, 40.04343900192864], [-75.12384856625496, 40.04291297527701], [-75.12390826084913, 40.04243176165273], [-75.12397774297331, 40.04189472798651], [-75.12403986750705, 40.041368609598], [-75.1241108007864, 40.0408745104706], [-75.1225519578111, 40.040689183048585], [-75.12033160946375, 40.0404009127846], [-75.12043498445308, 40.03988793187012], [-75.11955672523094, 40.03978025236859], [-75.11876750715301, 40.03968652105032], [-75.11801054092834, 40.03959379090564], [-75.11722753225436, 40.039490945751716], [-75.11672716188447, 40.03942956666282], [-75.11469350877786, 40.039065701477355], [-75.11427990082679, 40.03898964670384], [-75.11425014870089, 40.03884252882347], [-75.1142487356538, 40.038750401375246], [-75.11420272836139, 40.038649574724715], [-75.1141160352188, 40.038503685594705], [-75.11409857931179, 40.03837473435773], [-75.11410319589001, 40.03825588381147], [-75.11408860470681, 40.038117404159905], [-75.11404788283444, 40.03800902466463], [-75.11402212652956, 40.03790098860959], [-75.1139219993191, 40.037522632849516], [-75.11386266859212, 40.0373792906528], [-75.11381241943819, 40.03725917994319], [-75.1137419204401, 40.03714627938603], [-75.11361410099974, 40.03696682859716], [-75.11349536452525, 40.03681061013599], [-75.11338012352775, 40.036692843895196], [-75.11326496084212, 40.03657316283834], [-75.11316100665682, 40.036504056939116], [-75.11403140194247, 40.035472603119146], [-75.11461328019617, 40.03479657194471], [-75.11489795401083, 40.0344480299467], [-75.11513512724989, 40.03447968217076], [-75.11547394249487, 40.03451920586586], [-75.11583371765533, 40.03457011622014], [-75.11615336508022, 40.03461643623171], [-75.11650544942219, 40.03465710540937], [-75.11685146188826, 40.03469482398715], [-75.11716343499901, 40.03473588882475], [-75.11755213886096, 40.03479497055524], [-75.12007475167565, 40.035112436465], [-75.12142273542835, 40.03528205370963], [-75.12386086326329, 40.035563736148795], [-75.12395251307039, 40.03484852062137], [-75.12403310722064, 40.03404097915165], [-75.12418810210198, 40.03255273783986], [-75.12534748854145, 40.032908326018976], [-75.12598314561127, 40.033122585588295], [-75.12706004213122, 40.033477949059915], [-75.12813812194852, 40.0338276626433], [-75.12909893597146, 40.03414864853474], [-75.12996771413667, 40.034430870331285], [-75.13088081387585, 40.03474587521162], [-75.13184454399239, 40.035052721926434], [-75.13276532628717, 40.03533772841605], [-75.1335665112153, 40.035626316406706], [-75.13435513859052, 40.03588374814797], [-75.13491719236487, 40.0360488365267], [-75.13601924186796, 40.03629591786183], [-75.13596239568302, 40.03714069095362], [-75.1359172080124, 40.03721491407448], [-75.13579331165975, 40.037460704204015], [-75.13566051505993, 40.037703539013485], [-75.13551964132269, 40.03794392826701], [-75.13539985461783, 40.03818986383155], [-75.13530975823267, 40.038444142866446], [-75.13524186910239, 40.03870228819914], [-75.13519214212045, 40.03896256431206], [-75.1351508380495, 40.03922409987065], [-75.13510640080575, 40.03948519467066], [-75.13505778090732, 40.03974579508309], [-75.13500880438107, 40.040006362132374], [-75.13496233925464, 40.04026715213024], [-75.13492119862019, 40.040528418339036], [-75.13488252571301, 40.040790038958356], [-75.13484452100693, 40.0410518342622], [-75.13480890949876, 40.04131382009847], [-75.13477741194309, 40.04157600140778], [-75.13475175466523, 40.04183839136754], [-75.13473370487289, 40.04210100769038], [-75.13472438816113, 40.04236393907692], [-75.13472182558891, 40.042627129658364], [-75.13472352169212, 40.042890480269094], [-75.13472697741948, 40.04315389256317], [-75.13472969726423, 40.04341726647428], [-75.13472962098656, 40.04368052265935], [-75.13472892805768, 40.043943748583104], [-75.13472835459646, 40.044206977223425], [-75.13472788313881, 40.04447020547966], [-75.13472748898417, 40.044733435492475], [-75.13472715583922, 40.04499666418777], [-75.13472686127587, 40.04525989556012], [-75.13472658669221, 40.045523125581795], [-75.13472630862711, 40.045786354619786], [-75.13472601174911, 40.04604958502804], [-75.13472590134562, 40.046135759857265], [-75.1347256727699, 40.04631281267226], [-75.1347252728087, 40.04657604072672], [-75.13472479198656, 40.04683926783781], [-75.13472421038942, 40.04710249355224], [-75.13472350689706, 40.04736571829014], [-75.13472266045814, 40.04762894067132], [-75.13472165229443, 40.04789216116925], [-75.13472046245599, 40.048155380230874], [-75.13471906989062, 40.04841859647586], [-75.13471592360841, 40.0486818070314], [-75.13470588083467, 40.04893219041025], [-75.13440674322722, 40.04891116535305], [-75.13409180476353, 40.048902587735896], [-75.13375894185535, 40.0488817426885], [-75.1332567119416, 40.048777459670774], [-75.13166128235686, 40.048156268360856], [-75.13140423760464, 40.04940024691916], [-75.13111308760577, 40.050690271010204], [-75.12945227218991, 40.050489274927635], [-75.12858891879509, 40.05036125112049], [-75.12824747591462, 40.051887744051875], [-75.12714446243086, 40.0517499945417]]]}}, {"id": "7380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14804861159351, 40.01834745042115], [-75.14718171411992, 40.01822158662099], [-75.14674207614026, 40.01816830825549], [-75.141842755967, 40.01754526543114], [-75.14076235440827, 40.01741242962785], [-75.14024968966272, 40.017342373698476], [-75.13974978354928, 40.01727754038999], [-75.13911045332391, 40.017188516576056], [-75.13846703853598, 40.017101650623424], [-75.13763970201917, 40.01700490589694], [-75.13681235707244, 40.01690027732512], [-75.13615399991127, 40.01680675916981], [-75.13592411965315, 40.01678028971108], [-75.13558304956146, 40.016735761721314], [-75.13484437013499, 40.01663857260232], [-75.13389576979203, 40.01652956087033], [-75.13299382132521, 40.01641091387685], [-75.13247683593104, 40.0163386448571], [-75.1319817951704, 40.01628024323355], [-75.13139153266953, 40.01619119732399], [-75.13079224052301, 40.01612157929509], [-75.12958420585664, 40.01596204506945], [-75.12950279799507, 40.0158893945626], [-75.1295060820777, 40.01580432267141], [-75.12954449782806, 40.015628823804676], [-75.12969626827335, 40.015025138211094], [-75.12985744154966, 40.01458954235703], [-75.12991212376365, 40.01438165693674], [-75.12995568069938, 40.01421690737463], [-75.13032098038171, 40.012520430993625], [-75.13039457043838, 40.0122046367008], [-75.13058658979985, 40.01132621444333], [-75.13178052756184, 40.01148382640851], [-75.13439360990137, 40.01179259679523], [-75.1358887367984, 40.01043104327948], [-75.13617708233727, 40.01047951381085], [-75.13684683101371, 40.010560273649396], [-75.13746168397694, 40.010638582057894], [-75.13815935184121, 40.01072934820405], [-75.13898727479942, 40.010836322762636], [-75.13981649955595, 40.01094028174158], [-75.14045699145424, 40.01102129045243], [-75.1410933855548, 40.0111042603752], [-75.14158672309158, 40.0111699127295], [-75.14211264092272, 40.01123807168278], [-75.14178660755206, 40.01270991995661], [-75.14232926693204, 40.01279113891428], [-75.14279528639928, 40.012858788197796], [-75.1433203153046, 40.01292742387583], [-75.14647680294615, 40.013343114491526], [-75.14722189137788, 40.013432961843364], [-75.14722884497878, 40.01408140210885], [-75.14791438685396, 40.01392740449221], [-75.14795501083744, 40.0139786146205], [-75.1478365064141, 40.01450755380314], [-75.14983165309977, 40.01476596338327], [-75.15003962572906, 40.01481970269212], [-75.14993222382938, 40.01532671020396], [-75.14983979568106, 40.01567315281484], [-75.14977041330002, 40.01602280409584], [-75.14972718930441, 40.016216009188604], [-75.14958686700786, 40.01693362198721], [-75.1493475064601, 40.017958839322176], [-75.14908973201165, 40.0181106529181], [-75.1484680681646, 40.01840767197671], [-75.14804861159351, 40.01834745042115]]]}}, {"id": "7390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12909893597146, 40.03414864853474], [-75.12813812194852, 40.0338276626433], [-75.12706004213122, 40.033477949059915], [-75.12598314561127, 40.033122585588295], [-75.12534748854145, 40.032908326018976], [-75.12418810210198, 40.03255273783986], [-75.1242615297526, 40.0316798314733], [-75.12436563680168, 40.03095476487289], [-75.1245304400276, 40.0301880005405], [-75.12470176099916, 40.029399146808075], [-75.12509414742468, 40.027411312523604], [-75.12510247861539, 40.027334876121955], [-75.1251999408352, 40.02683486575879], [-75.12527430620894, 40.02631198921396], [-75.12538707606632, 40.025648973551675], [-75.12541289684687, 40.02550639971717], [-75.12546398521849, 40.02518550922072], [-75.12773023933812, 40.0248465792651], [-75.12828863205314, 40.02472700509781], [-75.13043553193194, 40.02427583568229], [-75.1311676032351, 40.024128287087606], [-75.13255946830762, 40.02393498874043], [-75.13328560210047, 40.02378554621781], [-75.13326111468093, 40.0238967790924], [-75.13320788314832, 40.024145564934464], [-75.13316850018711, 40.02430018863057], [-75.13301086909873, 40.02499780982186], [-75.13283944491678, 40.02578433313788], [-75.13251011366452, 40.0272753508569], [-75.132353179843, 40.02802099829087], [-75.1321754906953, 40.02877322025858], [-75.13183059592654, 40.03032234554205], [-75.13160904957076, 40.03135428719283], [-75.13150816845437, 40.03186826466147], [-75.13139417908607, 40.03235326090929], [-75.13129072350458, 40.032819538815794], [-75.13116347306803, 40.0333930419087], [-75.13088081387585, 40.03474587521162], [-75.12996771413667, 40.034430870331285], [-75.12909893597146, 40.03414864853474]]]}}, {"id": "7400", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1109623165532, 40.03378042456657], [-75.11086592483, 40.033563319462765], [-75.11083024503537, 40.0334809861199], [-75.11075606505753, 40.03330752991063], [-75.11073180561117, 40.03316115427316], [-75.1107405208493, 40.03306542190741], [-75.11078444721699, 40.03296282191432], [-75.11083246535115, 40.03288334174899], [-75.11086083187242, 40.03279573592071], [-75.11088094445881, 40.03253525806396], [-75.11093395775706, 40.032327343632254], [-75.11098071478231, 40.032151899997615], [-75.11098697635899, 40.031990875782576], [-75.11101877241295, 40.031815089260064], [-75.11105012104336, 40.03165080490753], [-75.11106017740865, 40.031520565969934], [-75.1110655442647, 40.03138254520654], [-75.11108423162239, 40.03128704286119], [-75.11111029413618, 40.03113031110495], [-75.11113104639891, 40.031043888122646], [-75.11114603241961, 40.03098147483674], [-75.11115355423335, 40.030916413112244], [-75.11113733717988, 40.03069155703038], [-75.1111304256763, 40.030484182095286], [-75.11113817749339, 40.03028481815558], [-75.11111815921498, 40.03015772835574], [-75.11104641384301, 40.02994886364824], [-75.11099587582973, 40.02983641975879], [-75.11091824685484, 40.029650443769015], [-75.11088312012737, 40.02952684150518], [-75.11089965592181, 40.0293583793058], [-75.11093346239159, 40.02913083519481], [-75.110963465984, 40.02900105463474], [-75.11101505890687, 40.02882956142872], [-75.11108406824572, 40.0287237002696], [-75.11119944987506, 40.02858053334839], [-75.11128855606445, 40.02847129816967], [-75.1113933681751, 40.02834323816028], [-75.11150271900249, 40.0282267929963], [-75.1116525633503, 40.02809592899173], [-75.11176496213216, 40.02802943822743], [-75.11188540151312, 40.02801301937457], [-75.11201551288957, 40.02800449573766], [-75.11212083880417, 40.02799156515585], [-75.11228720378666, 40.02794933838244], [-75.11241925306783, 40.02789097420533], [-75.11262767431037, 40.027794071584445], [-75.11279310960418, 40.02771153141426], [-75.11288477850178, 40.02760043473574], [-75.11289026279778, 40.02745805116416], [-75.11288284071983, 40.02732048726397], [-75.11284742220191, 40.027038159909495], [-75.11323526065227, 40.02696631162894], [-75.11717408415109, 40.026387182797414], [-75.12228042299785, 40.02565150686943], [-75.12352677108895, 40.02546431519292], [-75.12447140059426, 40.025323467472475], [-75.12546398521849, 40.02518550922072], [-75.12541289684687, 40.02550639971717], [-75.12538707606632, 40.025648973551675], [-75.12527430620894, 40.02631198921396], [-75.1251999408352, 40.02683486575879], [-75.12510247861539, 40.027334876121955], [-75.12509414742468, 40.027411312523604], [-75.12470176099916, 40.029399146808075], [-75.1245304400276, 40.0301880005405], [-75.12436563680168, 40.03095476487289], [-75.1242615297526, 40.0316798314733], [-75.12418810210198, 40.03255273783986], [-75.12403310722064, 40.03404097915165], [-75.12395251307039, 40.03484852062137], [-75.12386086326329, 40.035563736148795], [-75.12142273542835, 40.03528205370963], [-75.12007475167565, 40.035112436465], [-75.11755213886096, 40.03479497055524], [-75.11716343499901, 40.03473588882475], [-75.11685146188826, 40.03469482398715], [-75.11650544942219, 40.03465710540937], [-75.11615336508022, 40.03461643623171], [-75.11583371765533, 40.03457011622014], [-75.11547394249487, 40.03451920586586], [-75.11513512724989, 40.03447968217076], [-75.11489795401083, 40.0344480299467], [-75.11461328019617, 40.03479657194471], [-75.11403140194247, 40.035472603119146], [-75.11316100665682, 40.036504056939116], [-75.11305569974876, 40.036434051292005], [-75.11286185146832, 40.03628378348594], [-75.11271773120262, 40.03613849196673], [-75.11259311624242, 40.03600516240305], [-75.11246381193612, 40.03586404823729], [-75.11234917031798, 40.03573094741304], [-75.11229498148876, 40.03558388308132], [-75.11223007187495, 40.03545576172138], [-75.11217677643165, 40.03528569564004], [-75.11210903928468, 40.035101865293676], [-75.11200088136177, 40.034930539948306], [-75.1118463429548, 40.03479652038135], [-75.1116426742597, 40.03464218637786], [-75.11147771551177, 40.03451943936245], [-75.11131878745127, 40.034369970957016], [-75.11118435201018, 40.034232574807], [-75.11110976725047, 40.03409655366053], [-75.11105961613627, 40.033989029395414], [-75.1109623165532, 40.03378042456657]]]}}, {"id": "7430", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.06582704066194, 40.022829713864425], [-75.0651918913363, 40.02210515175155], [-75.0642976684409, 40.02107469328656], [-75.06368423489864, 40.02039292136493], [-75.06358848374596, 40.020322696550465], [-75.0634198291396, 40.02004287509226], [-75.06330301920873, 40.0199391862737], [-75.06249567396762, 40.01901613855505], [-75.06159650213483, 40.01799493818623], [-75.06065911296884, 40.01693317004281], [-75.05979914210195, 40.01594287272425], [-75.05889250801464, 40.014906966560616], [-75.05840033380261, 40.01434703578137], [-75.05784818069887, 40.013855847350165], [-75.05745743132746, 40.01350819366441], [-75.05729957020579, 40.01336760087576], [-75.05840701069471, 40.012781407430175], [-75.0586413312302, 40.01264885011602], [-75.05870638958133, 40.012612046410936], [-75.0600487730266, 40.011871081883434], [-75.06060679456483, 40.01156180339749], [-75.06097907480788, 40.011348487442554], [-75.06111667530679, 40.01126964195205], [-75.06231500458891, 40.01061667402492], [-75.0631592477611, 40.010222688814515], [-75.06426957195231, 40.009818299872826], [-75.06498019864055, 40.00957801634341], [-75.0657896484993, 40.00937412646459], [-75.06644883807276, 40.00924134697554], [-75.06761142282602, 40.009043480693656], [-75.06855645825688, 40.00885047847092], [-75.06889642394414, 40.0087888431993], [-75.06935185290021, 40.00868334693537], [-75.06970553402357, 40.00856782818408], [-75.06996509431009, 40.00847313292842], [-75.0704122559228, 40.00830999264732], [-75.07132799723937, 40.00794526456718], [-75.07226424118629, 40.00749422369687], [-75.07301414228317, 40.007088776220634], [-75.07368924273725, 40.006662615189924], [-75.07376939852078, 40.0066120160638], [-75.07391251175505, 40.00650694504352], [-75.074351815402, 40.0061844142656], [-75.07485107783086, 40.005801807302255], [-75.07539923571521, 40.00531395235073], [-75.07561777720912, 40.00513489052452], [-75.07571836824512, 40.00505247012691], [-75.0761923864628, 40.00462210010124], [-75.07672432017941, 40.00407046320036], [-75.07706342789717, 40.00369919122315], [-75.07723263993341, 40.00371552387754], [-75.07734549370338, 40.00372734461546], [-75.07742300443158, 40.00376172806825], [-75.07744727049445, 40.00392972355172], [-75.07747768474579, 40.00414030389461], [-75.07759312910837, 40.00469933736335], [-75.07774943992962, 40.00538417646413], [-75.07789180735155, 40.0060630276795], [-75.07804757869613, 40.00673401275043], [-75.07819554814382, 40.00741205761696], [-75.07833295323039, 40.00806746009549], [-75.07844817158372, 40.008587325110916], [-75.07847826246463, 40.008723089506965], [-75.07861364295223, 40.00935524799101], [-75.07874968635451, 40.00987955810453], [-75.07888283118169, 40.010028942497485], [-75.07928033188941, 40.01041011679957], [-75.07850491868784, 40.01073249149751], [-75.07831364702156, 40.01082038927243], [-75.07705894581584, 40.01133352361732], [-75.07622634718078, 40.011676965469704], [-75.07522940795765, 40.0121026927516], [-75.0732958299355, 40.012544988908715], [-75.07263028656905, 40.01269070974734], [-75.07184515773078, 40.01285876208922], [-75.07108902366078, 40.01301909786802], [-75.0704302429624, 40.01316878168165], [-75.07086519651371, 40.014354069188656], [-75.07105511498045, 40.01485517334384], [-75.07121600444587, 40.015290208483194], [-75.07129561130252, 40.01547628208808], [-75.07146018939343, 40.01592034300228], [-75.07164698160777, 40.016426323339644], [-75.07184777398788, 40.01695356105951], [-75.07217711141486, 40.01780815616435], [-75.07239528427003, 40.01837077919597], [-75.0725767335006, 40.018869237302596], [-75.0726472240869, 40.01893074978055], [-75.07302026297972, 40.01925666717689], [-75.07329423625396, 40.019530663540294], [-75.07338094307251, 40.01965571477877], [-75.07333431412346, 40.01971039962692], [-75.07281645032124, 40.01998177475131], [-75.07227204176523, 40.02024986964836], [-75.07063667030565, 40.02109944245052], [-75.06915891028082, 40.02186413973909], [-75.06908841755269, 40.02190558456266], [-75.06747816671317, 40.02274087219851], [-75.06628126765678, 40.02335211348504], [-75.06582704066194, 40.022829713864425]]]}}, {"id": "7440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13178052756184, 40.01148382640851], [-75.13058658979985, 40.01132621444333], [-75.13076933610816, 40.010429891484755], [-75.13122229503595, 40.00838998153134], [-75.13128895844574, 40.0082654424629], [-75.13157556350811, 40.006918297371676], [-75.13159329869447, 40.006777230208], [-75.13195017894888, 40.0051571594535], [-75.1323393000563, 40.005147432728876], [-75.13268120165456, 40.005131878874295], [-75.1330212513291, 40.00510594253852], [-75.13335888197858, 40.0050626585146], [-75.13369357562595, 40.00500497218568], [-75.13402486017198, 40.00493889706954], [-75.13435250240111, 40.004861512171956], [-75.13467397684518, 40.004771398547945], [-75.1349895542347, 40.004669614814944], [-75.13530090626963, 40.00455963199797], [-75.13560909369671, 40.00444496665626], [-75.1359157518846, 40.00432808881714], [-75.13622149461732, 40.00420973238526], [-75.13652667478337, 40.00409046944232], [-75.13683165251034, 40.003970866824645], [-75.13713677708644, 40.0038514992271], [-75.13744240731118, 40.00373293795305], [-75.13766927943385, 40.00364619730299], [-75.1377488996158, 40.00361575514893], [-75.13805660933845, 40.00350052113034], [-75.1383656919968, 40.0033874881072], [-75.13867532541023, 40.00327533899265], [-75.13898533409136, 40.00316379317689], [-75.13929567189308, 40.00305277121833], [-75.13960628994526, 40.00294220352529], [-75.13988662155539, 40.002842828195924], [-75.1402281822031, 40.00272211317395], [-75.14053936145434, 40.002612439684974], [-75.14085063459378, 40.002502917979676], [-75.1411619520598, 40.00239346583894], [-75.14147326507981, 40.002284010973575], [-75.14178453204205, 40.00217447765325], [-75.1420957018997, 40.00206479173606], [-75.14241335513279, 40.00195252307149], [-75.14271756308496, 40.001844650614025], [-75.14302815937185, 40.00173404638711], [-75.14333847105587, 40.0016229852707], [-75.14364845063128, 40.00151139230492], [-75.14379809293565, 40.00145585389514], [-75.14406451756503, 40.00191290723567], [-75.14412366322766, 40.00215922659642], [-75.1440384135838, 40.00223426474612], [-75.14374365394839, 40.00358293398834], [-75.14350127331724, 40.00355156369469], [-75.14329364986786, 40.00352469250323], [-75.1431399324757, 40.00428493094099], [-75.1433015921368, 40.00472237755151], [-75.14343826047002, 40.005072838644516], [-75.14309801736401, 40.00656380658327], [-75.14306343435318, 40.006722226308], [-75.14277427561711, 40.0080455913732], [-75.14277295786349, 40.00815499045495], [-75.14276347100015, 40.00826978854965], [-75.14243880955175, 40.00974402913456], [-75.14211264092272, 40.01123807168278], [-75.14158672309158, 40.0111699127295], [-75.1410933855548, 40.0111042603752], [-75.14045699145424, 40.01102129045243], [-75.13981649955595, 40.01094028174158], [-75.13898727479942, 40.010836322762636], [-75.13815935184121, 40.01072934820405], [-75.13746168397694, 40.010638582057894], [-75.13684683101371, 40.010560273649396], [-75.13617708233727, 40.01047951381085], [-75.1358887367984, 40.01043104327948], [-75.13439360990137, 40.01179259679523], [-75.13178052756184, 40.01148382640851]]]}}, {"id": "7460", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0751487380651, 40.0334466456309], [-75.07506078615849, 40.03334997800687], [-75.07493564475371, 40.03325772149568], [-75.07483287179262, 40.03320326733209], [-75.07382568190619, 40.0326454257203], [-75.07360561234455, 40.03251822982968], [-75.07356021353532, 40.03244577064569], [-75.07355461850688, 40.032363421145035], [-75.07369253848567, 40.03210840218186], [-75.07386962085366, 40.03176463032088], [-75.07351393530942, 40.031555013912985], [-75.07304390892638, 40.03129574371874], [-75.06618493810203, 40.026915548478], [-75.06709032771728, 40.02677730779543], [-75.06795748719205, 40.026584067667095], [-75.06783721579384, 40.02649206348795], [-75.06668295259375, 40.02584138355716], [-75.06651979223467, 40.02580581909264], [-75.06629341432797, 40.025612034155614], [-75.06599609412177, 40.02529122842685], [-75.06543718559958, 40.02464211242266], [-75.06497094787639, 40.02411046962777], [-75.06491395782366, 40.02406163942987], [-75.06628126765678, 40.02335211348504], [-75.06747816671317, 40.02274087219851], [-75.06908841755269, 40.02190558456266], [-75.06976502199616, 40.02238877796283], [-75.07019764577667, 40.0227256137045], [-75.07333312714907, 40.025290965734875], [-75.07336441926067, 40.02537013618446], [-75.07494510576818, 40.02669246215147], [-75.07514229652037, 40.02684967008404], [-75.0753671940858, 40.027039098136406], [-75.07548899291868, 40.027072748600645], [-75.07563722211042, 40.02708182314514], [-75.07677420640991, 40.027382718225276], [-75.07721471049769, 40.02749290128267], [-75.077862216485, 40.02787088057335], [-75.07847393502698, 40.02820917789621], [-75.07908101722236, 40.0285537217213], [-75.0796932647578, 40.02889532236388], [-75.07998518405103, 40.029061425175044], [-75.08028492634173, 40.02923217101581], [-75.08078735737097, 40.02951759989224], [-75.08086693407104, 40.02955704706404], [-75.08263572791671, 40.03056433012943], [-75.08336080567985, 40.030970773680785], [-75.08368317740005, 40.03115517912689], [-75.08410591451434, 40.03139699477768], [-75.08419874170141, 40.03143968991069], [-75.08411167142378, 40.03161919193568], [-75.08408993092331, 40.03182185063179], [-75.08394974653352, 40.031864818843445], [-75.08380562658093, 40.03190043045333], [-75.08210904612866, 40.03222753624818], [-75.08200440584257, 40.0322584952175], [-75.08190521436933, 40.032282428233174], [-75.08177593009637, 40.032308839996325], [-75.0807438478966, 40.03253982344368], [-75.07744388361579, 40.033296176686676], [-75.07697795937855, 40.033397972680206], [-75.07529951176552, 40.033783704283984], [-75.07525130271337, 40.033661436635455], [-75.0751487380651, 40.0334466456309]]]}}, {"id": "7470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05208174231397, 40.008573090436336], [-75.05092040548402, 40.00762418782804], [-75.05171102487331, 40.00699052937543], [-75.05273115891607, 40.00587339173539], [-75.05286953850623, 40.00563262986873], [-75.05435578267345, 40.003506885229285], [-75.05583164346423, 40.00125303629413], [-75.05668629664696, 39.999826352086515], [-75.05780413005665, 39.99784310027683], [-75.05881910641546, 39.99571927354719], [-75.05970259490692, 39.99346518181533], [-75.06072971978588, 39.99128939547064], [-75.06188994108325, 39.98931317828346], [-75.06261398611377, 39.988156275924574], [-75.06318390315069, 39.987342386672054], [-75.06394667821834, 39.98635801654672], [-75.0658800303735, 39.98470263060473], [-75.06673233459081, 39.984077215184996], [-75.06801544056256, 39.983135647058376], [-75.06939234949564, 39.981999197175654], [-75.07119989534809, 39.98073692359423], [-75.07323149967826, 39.979559390007445], [-75.07582271389332, 39.97834714035105], [-75.07769511402647, 39.97766051920748], [-75.08020200314922, 39.976930913778155], [-75.0825218917569, 39.976405694465285], [-75.08388364024222, 39.97614531542582], [-75.08558580969047, 39.97581981932251], [-75.08639109414254, 39.97566581927241], [-75.08795354905344, 39.975394673214204], [-75.08875616864948, 39.97525537833003], [-75.08930543909275, 39.97516004931649], [-75.08995641164408, 39.97504706505385], [-75.09096716599848, 39.97487162821714], [-75.0918136615686, 39.974724695193586], [-75.09289956921116, 39.9745361937343], [-75.09383959244585, 39.97437300792721], [-75.09767082904573, 39.97868529405697], [-75.09781795705604, 39.978853892130346], [-75.09964353338965, 39.98094576036583], [-75.0977377844456, 39.98194860579929], [-75.09761931635884, 39.982038241118104], [-75.09756005515227, 39.98211647076], [-75.0975276988675, 39.98219641877843], [-75.09752391315574, 39.98228957134906], [-75.09755217888296, 39.98238358003735], [-75.09760309687782, 39.98245354641823], [-75.09801763882122, 39.98292553606918], [-75.09821728078147, 39.983169049746955], [-75.09837805625185, 39.98336515270572], [-75.09900069277896, 39.98412460010107], [-75.09902737391457, 39.984229177837655], [-75.09905443550399, 39.984301895643185], [-75.09929255809479, 39.98457239187227], [-75.09950187343875, 39.984818019578746], [-75.09971429588026, 39.98505640311517], [-75.09977805216607, 39.98513090516478], [-75.10006751175682, 39.985454054005835], [-75.10028673505134, 39.98570433479536], [-75.10055278579604, 39.98600231567193], [-75.10091213494115, 39.986417209646824], [-75.10128194017628, 39.98682304051875], [-75.10160177835962, 39.98718808060266], [-75.10192236638139, 39.98754938871042], [-75.10227797698829, 39.98795138084919], [-75.1026223447675, 39.98834975160094], [-75.10305060635831, 39.98882263068709], [-75.10348311015099, 39.989312388500096], [-75.10390372468184, 39.989797541868775], [-75.1016035551865, 39.99099546766221], [-75.09930174421098, 39.99218683465115], [-75.09700726018444, 39.99340093093542], [-75.09555908145178, 39.99409568671221], [-75.09452368021225, 39.994604333014706], [-75.0920722662799, 39.99589576298429], [-75.08946670816803, 39.997270276066914], [-75.08708989422199, 39.99851975337438], [-75.08650317560277, 39.99882817507667], [-75.08637219053867, 39.99889668903513], [-75.08513260283303, 39.99954507122644], [-75.08482491742816, 39.99970600691798], [-75.08363918980993, 40.00032618625841], [-75.08168151580726, 40.00134991509014], [-75.07978287508426, 40.00233899747106], [-75.07925832998944, 40.0027283673608], [-75.07870570437166, 40.00316245077873], [-75.0777073161663, 40.00398457483515], [-75.07747768474579, 40.00414030389461], [-75.07744727049445, 40.00392972355172], [-75.07742300443158, 40.00376172806825], [-75.07734549370338, 40.00372734461546], [-75.07723263993341, 40.00371552387754], [-75.07706342789717, 40.00369919122315], [-75.07672432017941, 40.00407046320036], [-75.0761923864628, 40.00462210010124], [-75.07571836824512, 40.00505247012691], [-75.07561777720912, 40.00513489052452], [-75.07539923571521, 40.00531395235073], [-75.07485107783086, 40.005801807302255], [-75.074351815402, 40.0061844142656], [-75.07391251175505, 40.00650694504352], [-75.07376939852078, 40.0066120160638], [-75.07368924273725, 40.006662615189924], [-75.07301414228317, 40.007088776220634], [-75.07226424118629, 40.00749422369687], [-75.07132799723937, 40.00794526456718], [-75.0704122559228, 40.00830999264732], [-75.06996509431009, 40.00847313292842], [-75.06970553402357, 40.00856782818408], [-75.06935185290021, 40.00868334693537], [-75.06889642394414, 40.0087888431993], [-75.06855645825688, 40.00885047847092], [-75.06761142282602, 40.009043480693656], [-75.06644883807276, 40.00924134697554], [-75.0657896484993, 40.00937412646459], [-75.06498019864055, 40.00957801634341], [-75.06426957195231, 40.009818299872826], [-75.0631592477611, 40.010222688814515], [-75.06231500458891, 40.01061667402492], [-75.06111667530679, 40.01126964195205], [-75.06097907480788, 40.011348487442554], [-75.06060679456483, 40.01156180339749], [-75.0600487730266, 40.011871081883434], [-75.05870638958133, 40.012612046410936], [-75.0586413312302, 40.01264885011602], [-75.05840701069471, 40.012781407430175], [-75.05729957020579, 40.01336760087576], [-75.05401718703848, 40.010002054559614], [-75.05208174231397, 40.008573090436336]]]}}, {"id": "7490", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14250966589323, 40.05691042371588], [-75.142849374825, 40.055358526745394], [-75.1429815662819, 40.05478955328133], [-75.14307327307765, 40.05435604650704], [-75.14319193942907, 40.05381063214488], [-75.14357057108192, 40.05229749911938], [-75.14356956884698, 40.05211776363833], [-75.14360727865454, 40.05182697464946], [-75.14371846407764, 40.05130204420223], [-75.14384251662177, 40.05077213551278], [-75.14388950527827, 40.05072105229967], [-75.14400246680357, 40.05013417813268], [-75.14416856197187, 40.04988720936273], [-75.1449594702503, 40.048681907740466], [-75.14505541602155, 40.048546456430095], [-75.14514845117893, 40.04840811255315], [-75.14524213250647, 40.04825292700271], [-75.1453205598177, 40.04811425177652], [-75.14538930108704, 40.04796252007741], [-75.14543723983196, 40.04782781267246], [-75.14548093715094, 40.04761805154559], [-75.14550820155128, 40.047415603523135], [-75.14550656707368, 40.04723247677593], [-75.14547666751128, 40.047031947533014], [-75.1454080210859, 40.04673127633197], [-75.14528147732689, 40.046185509948074], [-75.14646875550979, 40.04622407338927], [-75.14751948857638, 40.0462558432871], [-75.14807370799431, 40.046273052569106], [-75.1486563555371, 40.04629196163454], [-75.15068101521854, 40.04635332723772], [-75.15082915483441, 40.04653858372858], [-75.15096808613218, 40.046768835694195], [-75.15103283505383, 40.046951987093884], [-75.15108319635144, 40.047121440951564], [-75.15104529347037, 40.04747366855939], [-75.1509824795425, 40.047815942160376], [-75.15091417024898, 40.04811018793448], [-75.15082167575875, 40.04851954731878], [-75.15062969401944, 40.04941735934156], [-75.15047695034879, 40.050072214971735], [-75.15127702118768, 40.05017532996552], [-75.15198400138559, 40.05026771590411], [-75.15310149329383, 40.05041353940018], [-75.15392188456589, 40.05045250401035], [-75.15461967306605, 40.05047573996834], [-75.15544804124193, 40.050509287563564], [-75.15535591337611, 40.05184994789018], [-75.1552727968388, 40.05311415506475], [-75.15521592846608, 40.053923630467544], [-75.15555586975394, 40.054075078255536], [-75.15648768589912, 40.054521088248016], [-75.1569513074915, 40.05473349141708], [-75.15717617792004, 40.054836323074866], [-75.15755804003476, 40.05503537344851], [-75.15734391588596, 40.05500402290393], [-75.15707432565118, 40.05499793881807], [-75.15687116994677, 40.05500430723925], [-75.1560470623377, 40.05497328117998], [-75.15515761227925, 40.054931499250564], [-75.1544823906462, 40.05490508326544], [-75.15427280751227, 40.05489519893428], [-75.15352367677063, 40.05485939020831], [-75.15272476251467, 40.0548265057077], [-75.1520020482651, 40.05478800632502], [-75.15129522267308, 40.05474719746728], [-75.15055867809859, 40.0547066975397], [-75.15028778825528, 40.05469086503768], [-75.14970524572563, 40.054650322238786], [-75.14947845840086, 40.05621888382296], [-75.1493745648853, 40.05692594612495], [-75.14928970147974, 40.057520987693955], [-75.1488934058613, 40.05750020952185], [-75.1481699920398, 40.057460071497545], [-75.14725984277771, 40.05740806357222], [-75.14645605826058, 40.057355261951244], [-75.14566060047844, 40.05731506035911], [-75.14497247347106, 40.05722578016407], [-75.14424547963077, 40.057129558564995], [-75.14341668112358, 40.05702643560121], [-75.14330940927842, 40.05701141820891], [-75.14250966589323, 40.05691042371588]]]}}, {"id": "7500", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11281268095597, 40.026880239703914], [-75.11278223350453, 40.02664258597819], [-75.11276124831959, 40.02641186400716], [-75.11273721167133, 40.02625973722888], [-75.11269694601232, 40.026139855005376], [-75.11264127307359, 40.026031131377025], [-75.11253997405726, 40.025940546364005], [-75.11239743559263, 40.025883550536044], [-75.11219565173879, 40.02580984284168], [-75.11201306961777, 40.02575576420475], [-75.11184485327558, 40.02571736433789], [-75.11162389969851, 40.02568734496481], [-75.11145717538353, 40.02561060483848], [-75.11136771254505, 40.02547232346244], [-75.11138100554518, 40.025322974135], [-75.11139530336182, 40.02521202095638], [-75.11145649869287, 40.02492178887383], [-75.11151724422533, 40.024771608827905], [-75.11155118858731, 40.024668781106776], [-75.11155111853812, 40.02454214695341], [-75.11152217264079, 40.02438798964436], [-75.11146539218102, 40.02417946886957], [-75.11140146858001, 40.0238978752842], [-75.11136284617542, 40.02373581970001], [-75.11137275171805, 40.023609414750425], [-75.11133144784338, 40.02351637049445], [-75.11125308109845, 40.02334956411429], [-75.11118647596466, 40.023254281404995], [-75.11110177526518, 40.02313311519714], [-75.11103099730558, 40.023027881026636], [-75.11100130792074, 40.0228928929837], [-75.11099007363472, 40.02279670032437], [-75.11094118311102, 40.022642083552036], [-75.11085179972112, 40.02250188607569], [-75.11070048985525, 40.02241398644175], [-75.11043418841447, 40.022331119294705], [-75.11018165557297, 40.02227926614272], [-75.10997370141887, 40.022236111394484], [-75.10981502257131, 40.022209440059875], [-75.10968715675077, 40.02216045205417], [-75.10936860306877, 40.02213777806876], [-75.10908257018968, 40.022177247355486], [-75.10879579097849, 40.022235887123955], [-75.10861343267538, 40.02230460133006], [-75.10846947746545, 40.022412571771106], [-75.10816720392039, 40.02261283534436], [-75.10807862273626, 40.022708648478115], [-75.10808940525057, 40.02281634179531], [-75.10803565669126, 40.022914876376085], [-75.10792281385686, 40.02299286475194], [-75.10778154248753, 40.02303182489346], [-75.10768455448083, 40.02308715380358], [-75.10751425639339, 40.023102421663594], [-75.1073729845967, 40.02314138040217], [-75.1072096770473, 40.023233555827986], [-75.10704424584219, 40.02331608887378], [-75.10686065894835, 40.02335215568997], [-75.10673673617148, 40.02333011580817], [-75.10659934434501, 40.02326939441552], [-75.10646255127769, 40.02319333576283], [-75.10631124672449, 40.02310543037679], [-75.10613545565268, 40.02300544943703], [-75.10605247374939, 40.02295749164282], [-75.10584846396745, 40.022941281788675], [-75.10566863995791, 40.022944815986456], [-75.10543678370175, 40.023002793046025], [-75.10518210647984, 40.02339025508062], [-75.10508763662361, 40.02350895536784], [-75.1049143487351, 40.02360089684679], [-75.10480855458879, 40.023604262577635], [-75.10462705803057, 40.02354439338227], [-75.10448981833729, 40.02347983364043], [-75.10438324573097, 40.02339679548704], [-75.10429208156532, 40.02330259974516], [-75.10422615514095, 40.02320130771402], [-75.10419937155955, 40.0231201076988], [-75.10419313378188, 40.02302403107859], [-75.10420684398072, 40.02292841226691], [-75.10409693194785, 40.02280308621844], [-75.10390069411592, 40.02258750934463], [-75.10376993748694, 40.02248472580516], [-75.10365124898982, 40.022328497067704], [-75.1035865167461, 40.0221965348681], [-75.10335965788994, 40.02174233905787], [-75.10326807374527, 40.02153109220913], [-75.10319501376617, 40.02135672803016], [-75.10315611454705, 40.02120233779963], [-75.10314578864238, 40.0210831418571], [-75.10317007037045, 40.02097241862366], [-75.10324696224033, 40.02092046779915], [-75.1033671849326, 40.02084992359056], [-75.10344906506903, 40.02072942262346], [-75.10349786087525, 40.02056161716755], [-75.10354663582343, 40.02039388960434], [-75.10359316270015, 40.02023388882772], [-75.1036570026035, 40.01987656897237], [-75.10369705860172, 40.01965930618886], [-75.10373741520444, 40.01952793403622], [-75.10383544166106, 40.019430651520175], [-75.10399315033166, 40.01937884526158], [-75.10417631965316, 40.01934652461066], [-75.10490885747714, 40.01934702238403], [-75.10514063362046, 40.01932905063636], [-75.10533590146107, 40.01928062696204], [-75.10548898171467, 40.01920460947764], [-75.10558162665019, 40.019114922541654], [-75.10567101752486, 40.01896577809034], [-75.10575625037828, 40.018839218600135], [-75.10586011859452, 40.01878112960109], [-75.10602757994306, 40.01868922492428], [-75.10629411473795, 40.01857817906554], [-75.10654007144916, 40.018490600181316], [-75.10672341291877, 40.01841166013801], [-75.10688632285866, 40.018352409187465], [-75.10702670300225, 40.01828255869556], [-75.10713174797101, 40.01819425525665], [-75.10725067393167, 40.01808611062809], [-75.10740250262029, 40.01789052115543], [-75.1074492879232, 40.01778323623494], [-75.1075019453263, 40.01760930469143], [-75.1075484926834, 40.01742389303715], [-75.10753986399301, 40.0172246106732], [-75.1074969191298, 40.0170648597228], [-75.10743534731849, 40.016962640715306], [-75.10733477456357, 40.0168519653075], [-75.10721337838702, 40.01677104914463], [-75.10706904288469, 40.016693842391774], [-75.10774566743571, 40.016581861972575], [-75.1079566960431, 40.01649243760471], [-75.10902514328343, 40.01628798447145], [-75.11136051115065, 40.01586805552725], [-75.11319772024986, 40.01553363305251], [-75.11747690485849, 40.015784203074695], [-75.11757219048913, 40.01558324450789], [-75.11944047531844, 40.01302705559972], [-75.12146940260696, 40.01015438751697], [-75.1233245784329, 40.00755692677894], [-75.12339320057532, 40.007418611434275], [-75.1234268932234, 40.007213386785665], [-75.12394932729268, 40.0048150263638], [-75.12413815881776, 40.004830317442874], [-75.12447874922599, 40.0048561241479], [-75.12481960245576, 40.004880381575894], [-75.12516067340198, 40.00490328601852], [-75.12550191799478, 40.00492503739572], [-75.12584329110216, 40.004945832900546], [-75.12618475093373, 40.004965874307906], [-75.1265262525044, 40.00498535521095], [-75.12686775392743, 40.005004480086335], [-75.12720920671373, 40.00502344244802], [-75.12755058678738, 40.005042349869555], [-75.12787293070507, 40.00505914287225], [-75.12823372347772, 40.00507655443872], [-75.12857548972254, 40.00509169232322], [-75.12891735401352, 40.005105659191635], [-75.1292592889243, 40.00511855803528], [-75.12960127164347, 40.005130493753214], [-75.12994327233797, 40.005141571084394], [-75.13028526365714, 40.00515189122062], [-75.13062734388893, 40.00516042473138], [-75.13096967892228, 40.0051647840814], [-75.1313120905648, 40.005165243621754], [-75.13165438461807, 40.00516218906765], [-75.13195017894888, 40.0051571594535], [-75.13159329869447, 40.006777230208], [-75.13157556350811, 40.006918297371676], [-75.13128895844574, 40.0082654424629], [-75.13122229503595, 40.00838998153134], [-75.13076933610816, 40.010429891484755], [-75.13058658979985, 40.01132621444333], [-75.13039457043838, 40.0122046367008], [-75.13032098038171, 40.012520430993625], [-75.12995568069938, 40.01421690737463], [-75.12991212376365, 40.01438165693674], [-75.12985744154966, 40.01458954235703], [-75.12969626827335, 40.015025138211094], [-75.12954449782806, 40.015628823804676], [-75.1295060820777, 40.01580432267141], [-75.12950279799507, 40.0158893945626], [-75.12958420585664, 40.01596204506945], [-75.12816782747261, 40.01727601049683], [-75.12773597041543, 40.01780744067364], [-75.12728008257253, 40.01855118772663], [-75.12717014834826, 40.0187202445289], [-75.12841230851205, 40.01888818420382], [-75.12828942424522, 40.01931224639612], [-75.12817272187972, 40.019745126505015], [-75.12805743325659, 40.02016776351229], [-75.12793752006728, 40.02058217569274], [-75.12782553628675, 40.02100974360595], [-75.12772254870809, 40.02143541478058], [-75.12766722191142, 40.021678075942006], [-75.1275883473653, 40.02193652409814], [-75.12799561695972, 40.021990003261664], [-75.12832997980297, 40.02203750959046], [-75.1288388007593, 40.02209552698992], [-75.13067747059611, 40.0223264212425], [-75.13165534349513, 40.022466545626095], [-75.13266657267638, 40.02260530897158], [-75.13351806873054, 40.02269961384838], [-75.13517364017464, 40.02288937907387], [-75.13568333923226, 40.02295388314234], [-75.13606727037968, 40.022993869695384], [-75.13593982391987, 40.023051045166966], [-75.13549018536642, 40.023223266760084], [-75.13500172747884, 40.023376356045276], [-75.13433030569912, 40.02355568546947], [-75.13328560210047, 40.02378554621781], [-75.13255946830762, 40.02393498874043], [-75.1311676032351, 40.024128287087606], [-75.13043553193194, 40.02427583568229], [-75.12828863205314, 40.02472700509781], [-75.12773023933812, 40.0248465792651], [-75.12546398521849, 40.02518550922072], [-75.12447140059426, 40.025323467472475], [-75.12352677108895, 40.02546431519292], [-75.12228042299785, 40.02565150686943], [-75.11717408415109, 40.026387182797414], [-75.11323526065227, 40.02696631162894], [-75.11284742220191, 40.027038159909495], [-75.11281268095597, 40.026880239703914]]]}}, {"id": "7510", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14795501083744, 40.0139786146205], [-75.14791438685396, 40.01392740449221], [-75.14722884497878, 40.01408140210885], [-75.14722189137788, 40.013432961843364], [-75.14647680294615, 40.013343114491526], [-75.1433203153046, 40.01292742387583], [-75.14279528639928, 40.012858788197796], [-75.14232926693204, 40.01279113891428], [-75.14178660755206, 40.01270991995661], [-75.14211264092272, 40.01123807168278], [-75.14243880955175, 40.00974402913456], [-75.14276347100015, 40.00826978854965], [-75.14277295786349, 40.00815499045495], [-75.14277427561711, 40.0080455913732], [-75.14306343435318, 40.006722226308], [-75.14309801736401, 40.00656380658327], [-75.14343826047002, 40.005072838644516], [-75.1433015921368, 40.00472237755151], [-75.1431399324757, 40.00428493094099], [-75.14329364986786, 40.00352469250323], [-75.14350127331724, 40.00355156369469], [-75.14374365394839, 40.00358293398834], [-75.1440384135838, 40.00223426474612], [-75.14412366322766, 40.00215922659642], [-75.14406451756503, 40.00191290723567], [-75.14379809293565, 40.00145585389514], [-75.14395805176184, 40.00139919255699], [-75.14426722590736, 40.0012863074405], [-75.1445759199824, 40.00117265466236], [-75.14488409738829, 40.00105818023578], [-75.14519180816691, 40.00094295377832], [-75.14549910383906, 40.00082706746568], [-75.1458060431573, 40.00071060823121], [-75.14611268015865, 40.00059366380154], [-75.14641907001749, 40.00047632282946], [-75.14672526660064, 40.00035867754171], [-75.14703132763313, 40.000240811241575], [-75.14733730812034, 40.00012281708132], [-75.14764326110743, 40.00000477825697], [-75.14771857637933, 39.999975736496935], [-75.14794924507942, 39.99988678889942], [-75.14825531418532, 39.99976893403054], [-75.14856152357349, 39.999651303199265], [-75.1488679272919, 39.99953398412696], [-75.14917458286699, 39.99941706551422], [-75.14948154428005, 39.9993006368818], [-75.14978886678787, 39.99918478507549], [-75.15002142288795, 39.99909774129665], [-75.15009660788598, 39.99906959969441], [-75.15040478837375, 39.99895511904876], [-75.15071319988314, 39.99884100233675], [-75.15102177807661, 39.998727155294766], [-75.15133051435075, 39.998613557904264], [-75.15163939531651, 39.99850019274151], [-75.151948411096, 39.99838704246226], [-75.15225754960804, 39.99827408606865], [-75.1525667984611, 39.998161310664905], [-75.15287614918813, 39.998048692632175], [-75.15318558709062, 39.99793621812171], [-75.15349510235843, 39.997823867989524], [-75.15378676915165, 39.997718116984636], [-75.15360944500394, 39.99851659723753], [-75.15356617822117, 39.99872491882124], [-75.15351676429032, 39.99894368200813], [-75.15343043501113, 39.99932290234036], [-75.1533756429784, 39.999535716947804], [-75.15327178153623, 40.000005964225274], [-75.15292652250417, 40.00159394177207], [-75.15255074890221, 40.00318283825957], [-75.15223616898231, 40.00469095826975], [-75.1519215609655, 40.00616852257761], [-75.15160350639509, 40.007666561375814], [-75.15145388577758, 40.008304667680875], [-75.15136965214894, 40.0087285626357], [-75.15124691791851, 40.00928023079825], [-75.15109155559469, 40.009935608153896], [-75.15088384543449, 40.01083838502309], [-75.15057380008965, 40.01237154180903], [-75.15039513654646, 40.01316714443147], [-75.15024565919153, 40.01376307611625], [-75.15021373801147, 40.013916741078155], [-75.1500965005928, 40.014569226117416], [-75.15007096763034, 40.01468167354025], [-75.15003962572906, 40.01481970269212], [-75.14983165309977, 40.01476596338327], [-75.1478365064141, 40.01450755380314], [-75.14795501083744, 40.0139786146205]]]}}, {"id": "7530", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14077361287495, 40.06415244752091], [-75.14092963782336, 40.06409383361448], [-75.14117039658525, 40.06301326034312], [-75.14151288719079, 40.061468595416784], [-75.14184320184367, 40.059949195387794], [-75.14218360676519, 40.05842583390503], [-75.14229230921642, 40.057942274324425], [-75.14250966589323, 40.05691042371588], [-75.14330940927842, 40.05701141820891], [-75.14341668112358, 40.05702643560121], [-75.14424547963077, 40.057129558564995], [-75.14497247347106, 40.05722578016407], [-75.14566060047844, 40.05731506035911], [-75.14645605826058, 40.057355261951244], [-75.14725984277771, 40.05740806357222], [-75.1481699920398, 40.057460071497545], [-75.1488934058613, 40.05750020952185], [-75.14928970147974, 40.057520987693955], [-75.1493745648853, 40.05692594612495], [-75.14947845840086, 40.05621888382296], [-75.14970524572563, 40.054650322238786], [-75.15028778825528, 40.05469086503768], [-75.15055867809859, 40.0547066975397], [-75.15129522267308, 40.05474719746728], [-75.1520020482651, 40.05478800632502], [-75.15272476251467, 40.0548265057077], [-75.15352367677063, 40.05485939020831], [-75.15427280751227, 40.05489519893428], [-75.1544823906462, 40.05490508326544], [-75.15515761227925, 40.054931499250564], [-75.1560470623377, 40.05497328117998], [-75.15687116994677, 40.05500430723925], [-75.15707432565118, 40.05499793881807], [-75.15734391588596, 40.05500402290393], [-75.15755804003476, 40.05503537344851], [-75.15772612947846, 40.05514266578577], [-75.15774917146788, 40.05515408706353], [-75.15787079217264, 40.05519994829528], [-75.1583068914531, 40.05543826600539], [-75.15889048363145, 40.05576949183422], [-75.15831599261553, 40.05603530684842], [-75.15746051816018, 40.0564194703756], [-75.15747896418917, 40.056504930678976], [-75.15737303204526, 40.05858598062293], [-75.157200041546, 40.05864718062386], [-75.15689851127883, 40.05877686767505], [-75.15562086138792, 40.05932667201359], [-75.15527293531468, 40.05947082097148], [-75.15451465886387, 40.05978796538895], [-75.15376348409853, 40.06009936287663], [-75.15446021032547, 40.061154792902464], [-75.15522895265995, 40.06237394340174], [-75.15525483072531, 40.0624327360658], [-75.15520562760757, 40.0625047873463], [-75.15469973804461, 40.06302558333437], [-75.15411076692092, 40.063648702720286], [-75.15358456284916, 40.06419917687332], [-75.15351422568159, 40.064286960105086], [-75.1533997052835, 40.064346319747806], [-75.15294352202838, 40.06429432184391], [-75.15225506922619, 40.06429891873402], [-75.15188488782408, 40.06599297260364], [-75.15154453594731, 40.067492518421346], [-75.1512590535016, 40.068766755608095], [-75.15113969247578, 40.06930768861748], [-75.15110941573222, 40.06938823856531], [-75.15106191088287, 40.06946857816879], [-75.15096958553814, 40.06956843639189], [-75.1507247653823, 40.06982534507238], [-75.15004070721001, 40.06943588345188], [-75.14960541385284, 40.06918804665245], [-75.14835533464405, 40.06847629140363], [-75.1476786971091, 40.06809102144619], [-75.14666575147052, 40.067521504880396], [-75.14550083646236, 40.066852333810544], [-75.14521906964595, 40.06669047274589], [-75.1445545761143, 40.06631208041861], [-75.14405155015547, 40.06601595270874], [-75.14309806566018, 40.06547590316734], [-75.1418870299279, 40.06478995437998], [-75.14077361287495, 40.06415244752091]]]}}, {"id": "7730", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13076933610816, 40.010429891484755], [-75.13122229503595, 40.00838998153134], [-75.13128895844574, 40.0082654424629], [-75.13157556350811, 40.006918297371676], [-75.13159329869447, 40.006777230208], [-75.13195017894888, 40.0051571594535], [-75.1323393000563, 40.005147432728876], [-75.13268120165456, 40.005131878874295], [-75.1330212513291, 40.00510594253852], [-75.13335888197858, 40.0050626585146], [-75.13369357562595, 40.00500497218568], [-75.13402486017198, 40.00493889706954], [-75.13435250240111, 40.004861512171956], [-75.13467397684518, 40.004771398547945], [-75.1349895542347, 40.004669614814944], [-75.13530090626963, 40.00455963199797], [-75.13560909369671, 40.00444496665626], [-75.1359157518846, 40.00432808881714], [-75.13622149461732, 40.00420973238526], [-75.13652667478337, 40.00409046944232], [-75.13683165251034, 40.003970866824645], [-75.13713677708644, 40.0038514992271], [-75.13744240731118, 40.00373293795305], [-75.13766927943385, 40.00364619730299], [-75.1377488996158, 40.00361575514893], [-75.13805660933845, 40.00350052113034], [-75.1383656919968, 40.0033874881072], [-75.13867532541023, 40.00327533899265], [-75.13898533409136, 40.00316379317689], [-75.13929567189308, 40.00305277121833], [-75.13960628994526, 40.00294220352529], [-75.13988662155539, 40.002842828195924], [-75.1402281822031, 40.00272211317395], [-75.14053936145434, 40.002612439684974], [-75.14085063459378, 40.002502917979676], [-75.1411619520598, 40.00239346583894], [-75.14147326507981, 40.002284010973575], [-75.14178453204205, 40.00217447765325], [-75.1420957018997, 40.00206479173606], [-75.14241335513279, 40.00195252307149], [-75.14271756308496, 40.001844650614025], [-75.14302815937185, 40.00173404638711], [-75.14333847105587, 40.0016229852707], [-75.14364845063128, 40.00151139230492], [-75.14379809293565, 40.00145585389514], [-75.14406451756503, 40.00191290723567], [-75.14412366322766, 40.00215922659642], [-75.1440384135838, 40.00223426474612], [-75.14374365394839, 40.00358293398834], [-75.14350127331724, 40.00355156369469], [-75.14329364986786, 40.00352469250323], [-75.1431399324757, 40.00428493094099], [-75.1433015921368, 40.00472237755151], [-75.14343826047002, 40.005072838644516], [-75.14309801736401, 40.00656380658327], [-75.14306343435318, 40.006722226308], [-75.14277427561711, 40.0080455913732], [-75.14277295786349, 40.00815499045495], [-75.14276347100015, 40.00826978854965], [-75.14243880955175, 40.00974402913456], [-75.14211264092272, 40.01123807168278], [-75.14178660755206, 40.01270991995661], [-75.14232926693204, 40.01279113891428], [-75.14279528639928, 40.012858788197796], [-75.1433203153046, 40.01292742387583], [-75.14647680294615, 40.013343114491526], [-75.14722189137788, 40.013432961843364], [-75.14722884497878, 40.01408140210885], [-75.14791438685396, 40.01392740449221], [-75.14795501083744, 40.0139786146205], [-75.1478365064141, 40.01450755380314], [-75.14983165309977, 40.01476596338327], [-75.15003962572906, 40.01481970269212], [-75.14993222382938, 40.01532671020396], [-75.14983979568106, 40.01567315281484], [-75.14977041330002, 40.01602280409584], [-75.14972718930441, 40.016216009188604], [-75.14958686700786, 40.01693362198721], [-75.1493475064601, 40.017958839322176], [-75.14908973201165, 40.0181106529181], [-75.1484680681646, 40.01840767197671], [-75.14714447643219, 40.01901145008065], [-75.14705879583687, 40.01909484972519], [-75.14638257068283, 40.01941384755003], [-75.14613788229155, 40.01938413204805], [-75.1453628611309, 40.019380817093726], [-75.14468710862543, 40.01941183457217], [-75.14409578705738, 40.019486694076015], [-75.14363335649988, 40.01956889301005], [-75.14326097466613, 40.01965955683399], [-75.1428848436295, 40.01977265716096], [-75.14246779103715, 40.01992131567765], [-75.14208211948895, 40.020076769123925], [-75.14126176526882, 40.020457827767785], [-75.13989326600749, 40.021143092921015], [-75.13962410577875, 40.02125554449826], [-75.13878989832307, 40.02167194894793], [-75.13680074130902, 40.02266481390887], [-75.13606727037968, 40.022993869695384], [-75.13568333923226, 40.02295388314234], [-75.13517364017464, 40.02288937907387], [-75.13351806873054, 40.02269961384838], [-75.13266657267638, 40.02260530897158], [-75.13165534349513, 40.022466545626095], [-75.13067747059611, 40.0223264212425], [-75.1288388007593, 40.02209552698992], [-75.12832997980297, 40.02203750959046], [-75.12799561695972, 40.021990003261664], [-75.1275883473653, 40.02193652409814], [-75.12766722191142, 40.021678075942006], [-75.12772254870809, 40.02143541478058], [-75.12782553628675, 40.02100974360595], [-75.12793752006728, 40.02058217569274], [-75.12805743325659, 40.02016776351229], [-75.12817272187972, 40.019745126505015], [-75.12828942424522, 40.01931224639612], [-75.12841230851205, 40.01888818420382], [-75.12717014834826, 40.0187202445289], [-75.12728008257253, 40.01855118772663], [-75.12773597041543, 40.01780744067364], [-75.12816782747261, 40.01727601049683], [-75.12958420585664, 40.01596204506945], [-75.12950279799507, 40.0158893945626], [-75.1295060820777, 40.01580432267141], [-75.12954449782806, 40.015628823804676], [-75.12969626827335, 40.015025138211094], [-75.12985744154966, 40.01458954235703], [-75.12991212376365, 40.01438165693674], [-75.12995568069938, 40.01421690737463], [-75.13032098038171, 40.012520430993625], [-75.13039457043838, 40.0122046367008], [-75.13058658979985, 40.01132621444333], [-75.13076933610816, 40.010429891484755]]]}}, {"id": "8010", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.03418808182995, 40.01552685458882], [-75.03593236969367, 40.015122265975734], [-75.03846131468903, 40.014341371204885], [-75.0400887750218, 40.013724643582975], [-75.04318345620553, 40.01230180802732], [-75.04549702717796, 40.01539135984509], [-75.04654946592537, 40.016354768020506], [-75.04695708881782, 40.01666649054795], [-75.04740062933426, 40.01699499112109], [-75.04779921109528, 40.017327097465994], [-75.04808650156707, 40.01750175437715], [-75.04813594950116, 40.017585297316074], [-75.04827883286003, 40.01769035907416], [-75.04843241042651, 40.01780693177609], [-75.04858708950196, 40.01793877323055], [-75.04869060025547, 40.01802875804136], [-75.04879026013448, 40.01814272009394], [-75.04895805847762, 40.01833459840812], [-75.04949864826371, 40.018930315978146], [-75.05000317862873, 40.019512392481026], [-75.05045067390724, 40.02002728783608], [-75.05090575006129, 40.02053632334524], [-75.05132044682324, 40.02101559235904], [-75.05177492702299, 40.0215363498483], [-75.05225498658803, 40.02208102634417], [-75.05248290255767, 40.02234721787948], [-75.05270351743722, 40.02259335939741], [-75.0529326587648, 40.02286481292343], [-75.05315294282204, 40.02310603050815], [-75.05337410689482, 40.02336301410848], [-75.05360536254146, 40.023616927357196], [-75.05383051939687, 40.02388229248625], [-75.05405573884796, 40.024130575636875], [-75.05449649038853, 40.02464923564854], [-75.0549663561723, 40.025172380397535], [-75.05539833613314, 40.02567408298286], [-75.05629534391466, 40.02670488753105], [-75.05695499182227, 40.02636259906879], [-75.05727981106796, 40.02619638423572], [-75.05759522139245, 40.026032809647084], [-75.057897070503, 40.025876805875036], [-75.05825183059187, 40.02569286300014], [-75.05880467941977, 40.026314935658625], [-75.06075658276164, 40.025302397254684], [-75.06271239425418, 40.0242925423012], [-75.06280300649158, 40.02440337289763], [-75.06325416663721, 40.024913758823566], [-75.06379250395135, 40.02463878984568], [-75.06429850056371, 40.02437366105983], [-75.06491395782366, 40.02406163942987], [-75.06497094787639, 40.02411046962777], [-75.06543718559958, 40.02464211242266], [-75.06599609412177, 40.02529122842685], [-75.06629341432797, 40.025612034155614], [-75.06651979223467, 40.02580581909264], [-75.06668295259375, 40.02584138355716], [-75.06783721579384, 40.02649206348795], [-75.06795748719205, 40.026584067667095], [-75.06709032771728, 40.02677730779543], [-75.06618493810203, 40.026915548478], [-75.07304390892638, 40.03129574371874], [-75.07351393530942, 40.031555013912985], [-75.07386962085366, 40.03176463032088], [-75.07369253848567, 40.03210840218186], [-75.07355461850688, 40.032363421145035], [-75.07356021353532, 40.03244577064569], [-75.07360561234455, 40.03251822982968], [-75.07382568190619, 40.0326454257203], [-75.07483287179262, 40.03320326733209], [-75.07493564475371, 40.03325772149568], [-75.07506078615849, 40.03334997800687], [-75.0751487380651, 40.0334466456309], [-75.07525130271337, 40.033661436635455], [-75.07529951176552, 40.033783704283984], [-75.07443993025743, 40.03398123715264], [-75.07148466221675, 40.03466540963907], [-75.07109755523071, 40.0347439109783], [-75.06959738437399, 40.03509441906304], [-75.06809997139733, 40.03543185853618], [-75.06767241302904, 40.03552753743839], [-75.0660952774568, 40.03590830909203], [-75.06518040298042, 40.03612573203004], [-75.06436363948667, 40.03630732602594], [-75.06356652744833, 40.03648551118628], [-75.06319645774718, 40.03658640547235], [-75.06289854950163, 40.036705949036644], [-75.062502852093, 40.03689443759703], [-75.06212144079021, 40.03710684041035], [-75.0618255356151, 40.03730550024004], [-75.06141110167145, 40.03763975920058], [-75.06106479422336, 40.03796318088107], [-75.06101051345323, 40.03801387425303], [-75.05879506193901, 40.04010164795467], [-75.05855594906858, 40.040312717870684], [-75.05670935146723, 40.04206037491096], [-75.05612301550626, 40.04264626875537], [-75.05561028491073, 40.0431883691441], [-75.05492781601713, 40.04385567168835], [-75.05460150362975, 40.04415792107146], [-75.054288575661, 40.04444780416778], [-75.05221162133299, 40.046387949574495], [-75.05220136259966, 40.04639470707811], [-75.05216045389054, 40.04642165805307], [-75.05166716612983, 40.0469581122058], [-75.05132919985556, 40.047547394403196], [-75.05112791207715, 40.04811401788436], [-75.05110862075935, 40.04830837382625], [-75.05112820905771, 40.04831042708993], [-75.05105274198593, 40.049070751012366], [-75.05090916889004, 40.050580507726], [-75.05090902067869, 40.05058782885867], [-75.050905547692, 40.05075968333635], [-75.05089050413272, 40.051103695807655], [-75.0508348505287, 40.05150787577755], [-75.05071463051047, 40.0519831306507], [-75.0505184779635, 40.052414280789066], [-75.05046568303189, 40.052508291736785], [-75.05042475255875, 40.05257628439179], [-75.05034323522091, 40.05268789358886], [-75.05015918593955, 40.052955041413384], [-75.04993761409428, 40.05319662649828], [-75.04964729232861, 40.05347835338288], [-75.04905018513644, 40.05407708512535], [-75.04774962504511, 40.05536430870876], [-75.04749817741373, 40.05564927592735], [-75.0473796338358, 40.05574498363881], [-75.04653734773393, 40.05656862179591], [-75.04645228389022, 40.05665642401393], [-75.04479205913208, 40.058370038156426], [-75.04452138806724, 40.05870458649961], [-75.04438569065395, 40.05890397388182], [-75.04432195723118, 40.05899761927773], [-75.04423684741798, 40.05912267367909], [-75.04413865112885, 40.0593298577121], [-75.042735081359, 40.062373930726196], [-75.04224674786106, 40.06353209298826], [-75.04117363314958, 40.06591649432094], [-75.04104856821186, 40.06619437066853], [-75.04027165133148, 40.06792050879335], [-75.03990055038933, 40.0687164982515], [-75.03952749808136, 40.0693585665246], [-75.03937274031372, 40.0695553420102], [-75.03895106634981, 40.07005670880712], [-75.03797590147553, 40.071078701239365], [-75.03688057928926, 40.072209186628385], [-75.0348403042355, 40.07430802573013], [-75.03394468660325, 40.07522585640025], [-75.03345632981974, 40.075733552485595], [-75.03265156130533, 40.076563913553244], [-75.03024499085504, 40.07905911048138], [-75.02936100367475, 40.07996554086386], [-75.02860591922072, 40.08077109526856], [-75.02844973853612, 40.08067939112584], [-75.02537845533197, 40.07894441699348], [-75.02371460278547, 40.07799573890452], [-75.02174937544991, 40.07695644903743], [-75.01714477252432, 40.074343800429524], [-75.0170511604494, 40.07429139164119], [-75.01683647482798, 40.074171198321956], [-75.01506505696598, 40.073179433645436], [-75.014088715379, 40.07264365237408], [-75.01312768506725, 40.07207268034328], [-75.01133066624226, 40.07118005144515], [-75.00727005000492, 40.06916284283319], [-75.00290365177997, 40.06668327635158], [-75.00020320019168, 40.06515197637998], [-74.99902373253308, 40.06448114410677], [-74.9984208088978, 40.06413807764871], [-74.99530548636974, 40.06236533704058], [-74.99451468543627, 40.06191530970193], [-74.99427698081958, 40.061782881163985], [-74.99395224082419, 40.061629044655696], [-74.99356775227025, 40.06149391799965], [-74.99321774729918, 40.061397389171425], [-74.99281403097854, 40.06133230332667], [-74.99239711762029, 40.06126941868098], [-74.99194572488256, 40.06116793486433], [-74.99170939033432, 40.06109679086137], [-74.99149351660745, 40.06100599428357], [-74.99130342505201, 40.06092588935296], [-74.99110105709491, 40.06082534327962], [-74.99085541386388, 40.06066080733073], [-74.99064230555005, 40.06050208736882], [-74.99051053375126, 40.060438488973645], [-74.9904325723008, 40.060397207455054], [-74.989286928798, 40.05937652147773], [-74.9879801607809, 40.05821631396604], [-74.98590682466101, 40.056378300947806], [-74.98529316777564, 40.05582904683217], [-74.98500302675573, 40.05557645381922], [-74.98475433761872, 40.055358582041585], [-74.98451795866875, 40.05514942559683], [-74.98439233134985, 40.055017035967204], [-74.9842573866046, 40.05490393180876], [-74.98415155670932, 40.05482814694793], [-74.98409878171032, 40.05478373231092], [-74.98401688146697, 40.054708509021076], [-74.98396572527261, 40.05462750125775], [-74.98379632094823, 40.05420356773441], [-74.98273352293714, 40.05301574562342], [-74.98229743001636, 40.05252025409304], [-74.98182371053878, 40.052047477411186], [-74.98158920688721, 40.051824814724505], [-74.98147989780368, 40.05171902695606], [-74.98093132226789, 40.05121469976086], [-74.98022845607794, 40.05058274545212], [-74.9766399576386, 40.04740753190659], [-74.978556593772, 40.046776920971546], [-74.97989203561042, 40.046340572217694], [-74.98059132219204, 40.04594380560141], [-74.98174496524592, 40.04506481578623], [-74.98267772211753, 40.044069039558025], [-74.98354833311693, 40.04303263159738], [-74.98494277204559, 40.04176918605419], [-74.98628044404798, 40.04094230870215], [-74.98770726511312, 40.039958475210966], [-74.98921273178432, 40.038655978629805], [-74.99046771078892, 40.03757014522302], [-74.99138517154653, 40.03677630839157], [-74.9940705153599, 40.034416675946346], [-74.99592322615307, 40.0327693789857], [-74.9972646789298, 40.03157658769071], [-74.99840929180525, 40.030580559169564], [-74.99975901814408, 40.02960479363618], [-75.0015932214651, 40.028499635674116], [-75.00316023945895, 40.027502189715776], [-75.00633490899871, 40.02551540086163], [-75.00969202947779, 40.02346289089041], [-75.01210156445315, 40.021652540993706], [-75.01439595160497, 40.02017284569141], [-75.01569583843182, 40.01949405820048], [-75.01660844953228, 40.01907485929474], [-75.0178569563277, 40.01855237721734], [-75.01973985658044, 40.01788386821405], [-75.02145303888575, 40.017491993859835], [-75.02377146395851, 40.017068709017565], [-75.02658115512718, 40.01665813075844], [-75.0293708496235, 40.01628945858043], [-75.02985946482646, 40.01622487799484], [-75.03255713556078, 40.015812624946086], [-75.03418808182995, 40.01552685458882]], [[-75.0495881231959, 40.041739215346446], [-75.05222822387734, 40.04327245835874], [-75.054288575661, 40.04444780416778], [-75.0495881231959, 40.041739215346446]], [[-75.0432001630908, 40.0355454899382], [-75.04243452139467, 40.035962491064716], [-75.0432001642619, 40.035545489965806], [-75.04405452994727, 40.035097840094735], [-75.0432001630908, 40.0355454899382]], [[-75.04075351141236, 40.03679473370573], [-75.04036436554968, 40.03693740614655], [-75.04075351258349, 40.03679473373337], [-75.04168391253879, 40.036344090785576], [-75.04075351141236, 40.03679473370573]], [[-75.03683287760813, 40.03823718981451], [-75.03627792045715, 40.03844215824022], [-75.03868784381856, 40.03755204667702], [-75.03683287760813, 40.03823718981451]], [[-75.02825800975391, 40.04136678332327], [-75.02840484907568, 40.04156181392152], [-75.02832845948224, 40.04145779947094], [-75.0282580103248, 40.041366783113986], [-75.02825800975391, 40.04136678332327]], [[-75.02967734942368, 40.043251881970015], [-75.02967748420446, 40.04325205688601], [-75.02967729438747, 40.04325180887595], [-75.02967734942368, 40.043251881970015]], [[-75.03074357479696, 40.04605429842213], [-75.03012985400888, 40.04633500936937], [-75.03085259565582, 40.04600443292508], [-75.03074357479696, 40.04605429842213]], [[-75.02714770611784, 40.04769893835468], [-75.02639597519511, 40.048042732551565], [-75.02611039141759, 40.0481733387064], [-75.0275913510811, 40.047496039407974], [-75.02714770611784, 40.04769893835468]], [[-75.02604481931499, 40.048339874814666], [-75.02596530973688, 40.048541809939096], [-75.02611039141759, 40.0481733387064], [-75.02604481931499, 40.048339874814666]], [[-75.02611572240293, 40.04892110857427], [-75.02612481482035, 40.04894403693681], [-75.02596530973688, 40.048541809939096], [-75.02611572240293, 40.04892110857427]], [[-75.0369064793127, 40.06302466339694], [-75.03712804351242, 40.06325799335081], [-75.03735112456283, 40.06345334240326], [-75.03750310075594, 40.06357098082033], [-75.03765381085454, 40.06372026648389], [-75.03788538907857, 40.06390947971823], [-75.03814966941594, 40.06410579957072], [-75.03838201066941, 40.06427602117927], [-75.03869496649082, 40.06449249607631], [-75.0368207935583, 40.06293751450016], [-75.0369064793127, 40.06302466339694]], [[-75.03638120175484, 40.06193196037857], [-75.03644991043785, 40.06227573126081], [-75.03654548910033, 40.06256627810336], [-75.03664499201747, 40.062758710126666], [-75.03682078447434, 40.06293750526108], [-75.0365930000981, 40.06265599960139], [-75.03638120175484, 40.06193196037857]], [[-75.03607775442912, 40.061272177770654], [-75.03622744441218, 40.0614467880024], [-75.03594479401579, 40.06109162811677], [-75.03607775442912, 40.061272177770654]], [[-75.03595833618175, 40.0605470460292], [-75.0358693703198, 40.060709682823955], [-75.03593012745294, 40.06059861454617], [-75.03595833618175, 40.0605470460292]]]}}, {"id": "8020", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0618255356151, 40.03730550024004], [-75.06212144079021, 40.03710684041035], [-75.062502852093, 40.03689443759703], [-75.06289854950163, 40.036705949036644], [-75.06319645774718, 40.03658640547235], [-75.06356652744833, 40.03648551118628], [-75.06436363948667, 40.03630732602594], [-75.06518040298042, 40.03612573203004], [-75.0660952774568, 40.03590830909203], [-75.06767241302904, 40.03552753743839], [-75.06809997139733, 40.03543185853618], [-75.06959738437399, 40.03509441906304], [-75.07109755523071, 40.0347439109783], [-75.07148466221675, 40.03466540963907], [-75.07443993025743, 40.03398123715264], [-75.07529951176552, 40.033783704283984], [-75.07697795937855, 40.033397972680206], [-75.07744388361579, 40.033296176686676], [-75.0807438478966, 40.03253982344368], [-75.08177593009637, 40.032308839996325], [-75.08190521436933, 40.032282428233174], [-75.08200440584257, 40.0322584952175], [-75.08210904612866, 40.03222753624818], [-75.08380562658093, 40.03190043045333], [-75.08394974653352, 40.031864818843445], [-75.08408993092331, 40.03182185063179], [-75.084097405649, 40.03188155842482], [-75.08413521559794, 40.0319684446678], [-75.08427364859448, 40.032173074144445], [-75.08417226608184, 40.03231398234938], [-75.08401838790222, 40.03253985258157], [-75.08337184825928, 40.03324444864927], [-75.08292349300645, 40.03372330867389], [-75.08218024701313, 40.03448704593086], [-75.08195841577964, 40.03471897149558], [-75.08175869585502, 40.03492521355816], [-75.08157537830293, 40.03511145579118], [-75.08137885375395, 40.03531391323505], [-75.08098162607358, 40.03571413929394], [-75.08060112266844, 40.036131819358744], [-75.08024922552187, 40.03651060128627], [-75.07983718668031, 40.03692272182405], [-75.07954709690475, 40.03722276508653], [-75.07931365313148, 40.0374713951191], [-75.07915910930849, 40.037622473914574], [-75.07899997600468, 40.03779706653513], [-75.07882205767763, 40.03798920232221], [-75.07862140296287, 40.038206697716774], [-75.07838964012736, 40.03843440242911], [-75.07821099744447, 40.03861885625212], [-75.07801135411607, 40.03882753769454], [-75.07782992709585, 40.0390022391198], [-75.0773958050892, 40.03946541060029], [-75.07700242865678, 40.03988600766493], [-75.07682097008166, 40.040075356887755], [-75.07665244087141, 40.04025881302328], [-75.07623828501488, 40.04068659459254], [-75.07583571343075, 40.04109610738058], [-75.07545256782305, 40.0414780821767], [-75.07503370357503, 40.041941143862246], [-75.07545468513057, 40.04215513798341], [-75.07555346965913, 40.04220531304383], [-75.0765608830969, 40.042763955361195], [-75.07856631286752, 40.043905245218944], [-75.08035251915297, 40.04490616956516], [-75.08234451175854, 40.04599251847069], [-75.08300095783821, 40.046371493960706], [-75.08341587267958, 40.046600359614075], [-75.08365174732054, 40.046724542027356], [-75.08406675926334, 40.046964233443056], [-75.0856951039326, 40.04785186002135], [-75.08697553819498, 40.04856837334297], [-75.08763612729165, 40.04704383759833], [-75.08794833282026, 40.04634483545947], [-75.08831388614998, 40.045515125514], [-75.08897663424665, 40.044333503559685], [-75.0903533819722, 40.04298457247651], [-75.094176025479, 40.04502710432539], [-75.09453467758765, 40.04522327325332], [-75.09479268570398, 40.0453649583314], [-75.0951428672017, 40.04555226333374], [-75.09600049007513, 40.04600379173299], [-75.09697175151327, 40.04656599718221], [-75.09801858961916, 40.04709794044168], [-75.09880087535097, 40.04753158377558], [-75.09956065794458, 40.04797498853239], [-75.10039563010359, 40.04869298730429], [-75.10133641421142, 40.049540434137114], [-75.1018914465809, 40.05006629533136], [-75.10281166625275, 40.0508685864897], [-75.1030246267211, 40.051089122973224], [-75.10310487206245, 40.05119338851588], [-75.10075000741492, 40.052589800378406], [-75.10016462242423, 40.052947969102206], [-75.09983039549444, 40.05315383660878], [-75.09937540599458, 40.05330003122185], [-75.09911047209413, 40.05356349100261], [-75.09880255946189, 40.05371498814136], [-75.09846339383841, 40.05388885033198], [-75.09766560795609, 40.05436649656119], [-75.09748783614391, 40.05447997074385], [-75.09650501415967, 40.05517207626254], [-75.09575755844112, 40.0556306342029], [-75.09511934619522, 40.05593782266534], [-75.09468071935262, 40.056370745767495], [-75.09361503390471, 40.05741817620406], [-75.09274064284068, 40.05829937415294], [-75.0920750089637, 40.05896683336336], [-75.08976380729703, 40.06129389020495], [-75.08900285768611, 40.06205226329], [-75.08823967373392, 40.06281283793292], [-75.08746453554552, 40.06358530745863], [-75.08789701681395, 40.06383695621994], [-75.0887650890161, 40.06434205694387], [-75.08944617660568, 40.06473751202954], [-75.09037058875349, 40.06527619765871], [-75.08902882748413, 40.066599282792986], [-75.08723266257306, 40.06839116981807], [-75.08707644886283, 40.068565824165354], [-75.08531032224032, 40.068513075978196], [-75.08462537770777, 40.06836930728484], [-75.08432206063496, 40.06830338858394], [-75.08372661331803, 40.068174970048695], [-75.08204090213172, 40.06805242820077], [-75.08096567099172, 40.06797552436967], [-75.07890160880922, 40.06683635632901], [-75.07805155797986, 40.06636177054576], [-75.0778873699058, 40.066227749755065], [-75.07771866653502, 40.066036330276916], [-75.07767354595893, 40.06596702456253], [-75.0775074708497, 40.06568457988809], [-75.07736001106932, 40.0654320643241], [-75.07715589235868, 40.06504476333175], [-75.07599116443163, 40.06434346148916], [-75.0753759601058, 40.06397178792418], [-75.07354324395854, 40.062936481673376], [-75.07330491095185, 40.06281311335858], [-75.07294842940784, 40.06261524742156], [-75.07275111584283, 40.06252154435866], [-75.07243794149772, 40.06242514102399], [-75.07214134544577, 40.0623757177902], [-75.07128377583618, 40.062285371006226], [-75.07086082608126, 40.06222798789649], [-75.07053197167276, 40.06213715241198], [-75.07031102114136, 40.06205477404607], [-75.06988024443862, 40.061825341066864], [-75.06502668978634, 40.067345239044975], [-75.0658467809666, 40.067832099023924], [-75.06735652846181, 40.06872835474917], [-75.0678274453076, 40.06896467197677], [-75.06749638627788, 40.06910861366898], [-75.06719852233356, 40.06923872176233], [-75.06690135658151, 40.06936976897946], [-75.06660492565369, 40.06950177780655], [-75.0663092707974, 40.06963477263976], [-75.0660137588297, 40.06976806832083], [-75.0657180402657, 40.06990130888495], [-75.06542327369665, 40.070035772044], [-75.06513063452837, 40.070172754836676], [-75.06484130035514, 40.07031355796916], [-75.06455614032294, 40.07045915598219], [-75.06427369713427, 40.070608024523715], [-75.06399338735496, 40.07075943635126], [-75.06371496187346, 40.07091301803206], [-75.0634381718676, 40.0710683889291], [-75.06316277192772, 40.071225171185866], [-75.06288851078965, 40.07138298680624], [-75.06261533565403, 40.07154180663149], [-75.06234372144463, 40.07170234278835], [-75.06207392243033, 40.0718647490067], [-75.06180618592673, 40.07202914731945], [-75.06154075136922, 40.07219565146795], [-75.0612778636246, 40.07236438613518], [-75.06101694643431, 40.07253494680178], [-75.06075741494566, 40.07270693865332], [-75.06049970478726, 40.07288061517643], [-75.06024425155283, 40.07305623076177], [-75.05999149552423, 40.07323403991354], [-75.05974187453398, 40.07341429978524], [-75.05949570921547, 40.07359720622223], [-75.05925247709082, 40.0737824478666], [-75.05901157500546, 40.07396955919014], [-75.05877243914605, 40.074158088195375], [-75.05853450793607, 40.07434758563563], [-75.05829722217847, 40.07453760141421], [-75.0580600180249, 40.07472768441965], [-75.05782233982951, 40.074917383728305], [-75.05758362004983, 40.07510625263813], [-75.05552497347986, 40.076671328095905], [-75.05537620540206, 40.07678442526513], [-75.05534535391104, 40.07671670469455], [-75.05517312496838, 40.07648456942428], [-75.05498466818896, 40.07624571716204], [-75.0547928060949, 40.07608904559435], [-75.05455976708468, 40.07593796030108], [-75.05431382253069, 40.07590051164817], [-75.05414725883203, 40.07594095572149], [-75.05399541632775, 40.076026097060954], [-75.05396616603974, 40.07613946065988], [-75.0539296157627, 40.07643639594118], [-75.05386828593147, 40.07694183832337], [-75.05377757875698, 40.07714879871762], [-75.05362308928163, 40.07730040711198], [-75.05346174180787, 40.0774170064721], [-75.05325296607438, 40.07748180349217], [-75.0529128500191, 40.07753084556232], [-75.05263142116847, 40.077555922185596], [-75.05234301422513, 40.077549152659024], [-75.05212826288668, 40.077556783823084], [-75.05198616329548, 40.07760413533933], [-75.05186551085286, 40.07773436021535], [-75.05168591663612, 40.077894879164575], [-75.0515065722058, 40.07804906936406], [-75.05122809364289, 40.07820726754548], [-75.0509663444948, 40.07835952001648], [-75.0506484231972, 40.078472438334956], [-75.05038994860831, 40.07854239912013], [-75.05015720083807, 40.07858761908509], [-75.04995917909704, 40.07858930313321], [-75.04973719410566, 40.07857141713605], [-75.04940833315213, 40.07854468046004], [-75.04883226443728, 40.07851213372634], [-75.04818367057818, 40.07843669765365], [-75.04777938855011, 40.07843986397968], [-75.04743152769055, 40.07847603650771], [-75.04707046516083, 40.07842952916896], [-75.04671865181837, 40.07835789268325], [-75.04631143038561, 40.078227928813625], [-75.04595415584761, 40.078086466332714], [-75.04561487822417, 40.07790741100268], [-75.04534926028896, 40.07774275870906], [-75.045181767739, 40.07759942286984], [-75.04505497403682, 40.077469718840085], [-75.04496189751694, 40.077321798879794], [-75.044893542534, 40.07717445983989], [-75.04482771390366, 40.07696382122396], [-75.04474262752414, 40.076822426205], [-75.04461019606796, 40.07671426002101], [-75.04437544784992, 40.076515986745726], [-75.04420098626825, 40.076340808020944], [-75.04398238591108, 40.07603152918247], [-75.04381666845494, 40.07584388336682], [-75.04350437156484, 40.07540250824636], [-75.04344653650189, 40.07519839220523], [-75.04347130832939, 40.07501237386902], [-75.0434818653947, 40.07493311127461], [-75.04358058733531, 40.074732682333874], [-75.04381174842123, 40.07431361061849], [-75.04387877137246, 40.07408075501489], [-75.04388862161355, 40.07383388162932], [-75.04367347260144, 40.07364506960524], [-75.04338088274055, 40.07353680258656], [-75.04299664661441, 40.0734517197984], [-75.0427300417902, 40.07331238140349], [-75.04234135855599, 40.073132150758376], [-75.04185417957775, 40.07294009334167], [-75.0416120446288, 40.07280766508903], [-75.04138815858997, 40.072631315890035], [-75.04132108124091, 40.072452325411106], [-75.04136137041226, 40.07226952947355], [-75.04147430148507, 40.07212646098452], [-75.0418127306453, 40.071912676397304], [-75.04208473704509, 40.07170999709947], [-75.04248841833828, 40.07130766563954], [-75.04276168364336, 40.07107333361617], [-75.04285241512586, 40.07086638181349], [-75.04302513401653, 40.07046494259144], [-75.04357575655808, 40.069479984511155], [-75.04376191556884, 40.06915489498487], [-75.04385971299041, 40.06877069871069], [-75.04388739876102, 40.06828347515002], [-75.04386302954859, 40.068067475794585], [-75.0437825664205, 40.067397128713154], [-75.04367908978594, 40.06709689587563], [-75.04350844181876, 40.06682676256377], [-75.04331929512507, 40.06660688172657], [-75.04311837397684, 40.06647542875296], [-75.04289147572567, 40.066375041588714], [-75.04252300081988, 40.06630933607577], [-75.04214704345395, 40.06622444269112], [-75.04181278865332, 40.06612786129399], [-75.04147018298123, 40.066018667392534], [-75.0413335088859, 40.065974787552165], [-75.04117363314958, 40.06591649432094], [-75.04224674786106, 40.06353209298826], [-75.042735081359, 40.062373930726196], [-75.04413865112885, 40.0593298577121], [-75.04423684741798, 40.05912267367909], [-75.04452138806724, 40.05870458649961], [-75.04479205913208, 40.058370038156426], [-75.04653734773393, 40.05656862179591], [-75.0473796338358, 40.05574498363881], [-75.04749817741373, 40.05564927592735], [-75.04774962504511, 40.05536430870876], [-75.04905018513644, 40.05407708512535], [-75.04964729232861, 40.05347835338288], [-75.04993761409428, 40.05319662649828], [-75.05015918593955, 40.052955041413384], [-75.05034323522091, 40.05268789358886], [-75.05042475255875, 40.05257628439179], [-75.05046568303189, 40.052508291736785], [-75.0505184779635, 40.052414280789066], [-75.05071463051047, 40.0519831306507], [-75.0508348505287, 40.05150787577755], [-75.05089050413272, 40.051103695807655], [-75.050905547692, 40.05075968333635], [-75.05090916889004, 40.050580507726], [-75.05105274198593, 40.049070751012366], [-75.05112820905771, 40.04831042708993], [-75.05114765733573, 40.048114481781674], [-75.05134894495073, 40.04754785826596], [-75.05168691105588, 40.0469585760105], [-75.05221162133299, 40.046387949574495], [-75.054288575661, 40.04444780416778], [-75.05460150362975, 40.04415792107146], [-75.05492781601713, 40.04385567168835], [-75.05561028491073, 40.0431883691441], [-75.05612301550626, 40.04264626875537], [-75.05670935146723, 40.04206037491096], [-75.05855594906858, 40.040312717870684], [-75.05879506193901, 40.04010164795467], [-75.06101051345323, 40.03801387425303], [-75.06106479422336, 40.03796318088107], [-75.06141110167145, 40.03763975920058], [-75.0618255356151, 40.03730550024004]]]}}, {"id": "8030", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.98092547600625, 40.06450113291681], [-74.98090652361171, 40.0642202004415], [-74.98091319615096, 40.064056750560354], [-74.98093682653479, 40.06390372564563], [-74.98098107209536, 40.06377791063741], [-74.98101970108976, 40.06357683183606], [-74.98103912535659, 40.06342036708048], [-74.9810830992625, 40.0633012233168], [-74.98109613905308, 40.06319468880888], [-74.98109126910086, 40.063101080141166], [-74.98101572704437, 40.06292896931465], [-74.98093339478694, 40.06281679788501], [-74.98086449324052, 40.06269493289984], [-74.98080339150526, 40.06259496080614], [-74.98080720441843, 40.062501561383606], [-74.98082878953207, 40.062398572212544], [-74.98086787906719, 40.062292665554864], [-74.98091158138077, 40.06218019313656], [-74.98098526272864, 40.06207846039402], [-74.98100725590439, 40.061965464748084], [-74.98102898023743, 40.06185913954121], [-74.98101488116173, 40.06177866408198], [-74.98100119413706, 40.061688181365994], [-74.98095304795676, 40.061590189439556], [-74.9809082368487, 40.06141047341162], [-74.98091693600342, 40.061303834300475], [-74.98093431621123, 40.061197404410905], [-74.98094287911613, 40.06109410137642], [-74.9809256664009, 40.060983501101816], [-74.98091686490596, 40.06087977866368], [-74.98088567526722, 40.06079221344733], [-74.98084227891759, 40.06068431874318], [-74.98076726775463, 40.06060571357947], [-74.98054751869043, 40.06045350020058], [-74.98048084972567, 40.06038344522766], [-74.98042415929415, 40.060281907707775], [-74.98043231307426, 40.060188612916164], [-74.98048456069661, 40.0600796851148], [-74.98055633622793, 40.06002465150425], [-74.980666499553, 40.059987239059254], [-74.98081518922255, 40.05996411164604], [-74.98093362472231, 40.05993691551578], [-74.98108760777988, 40.05989054160097], [-74.98120795035433, 40.059816644592956], [-74.98131119964572, 40.05973565772611], [-74.98140115508835, 40.05966102824717], [-74.98152449071034, 40.0595137452045], [-74.98161119424806, 40.05941232502472], [-74.98198967925197, 40.058975688220436], [-74.98210365108055, 40.05884487311465], [-74.98218573793844, 40.05875002003741], [-74.98229698706716, 40.058685920073096], [-74.98247512019503, 40.058580023075194], [-74.98260875567634, 40.05849976797433], [-74.9827543245591, 40.05844651143368], [-74.98295795892344, 40.05835458448135], [-74.98332758775962, 40.05813476435305], [-74.98351399150326, 40.05803908396144], [-74.98368519849436, 40.057996460812056], [-74.98383931016633, 40.057946746193515], [-74.98399681211448, 40.05792048850884], [-74.98411103845788, 40.057889848521434], [-74.98424737790943, 40.05784972268482], [-74.98437164690296, 40.05778593512348], [-74.98453852004965, 40.057636357750695], [-74.98491349868218, 40.05739161992467], [-74.98506530826549, 40.05729176424976], [-74.98515166382873, 40.05719867980012], [-74.98518585479218, 40.0571060114213], [-74.98518098080696, 40.05701240292386], [-74.98514375233084, 40.05691300585423], [-74.98494971406399, 40.056716343633866], [-74.98481963186443, 40.05660302568651], [-74.98469307335526, 40.0565098258428], [-74.98458876497823, 40.056403805800805], [-74.98449341161933, 40.05629132520466], [-74.98440999142397, 40.056205842147605], [-74.98433763521942, 40.05606219289731], [-74.98429505346952, 40.05593428658902], [-74.98428375997585, 40.055875386707186], [-74.98426996993457, 40.05580346034975], [-74.98426320268395, 40.0556497031396], [-74.98425941689021, 40.05552940768928], [-74.98424883572238, 40.055410642653335], [-74.98425225091168, 40.05527881117554], [-74.98422696599542, 40.055152990006206], [-74.98417820778371, 40.05507001087779], [-74.9840640661072, 40.05499213539381], [-74.98394390189576, 40.05491967708071], [-74.98379684774893, 40.054832108124515], [-74.9837355436281, 40.054737139844825], [-74.98367966917444, 40.05461558919392], [-74.98361958842578, 40.05449059966494], [-74.98347540298006, 40.05440365259739], [-74.98279123935055, 40.053919714941244], [-74.98253901188087, 40.053818478172815], [-74.98232251640555, 40.05379990612641], [-74.98220536121858, 40.05376998757276], [-74.98191222280094, 40.053710090556365], [-74.981827139927, 40.05369447845001], [-74.9817110770208, 40.0536605020565], [-74.98159098419983, 40.05362534624615], [-74.98139239780356, 40.053593849249175], [-74.9811006741922, 40.05359349625193], [-74.98104456280066, 40.05359222852843], [-74.98101013867401, 40.0535913141073], [-74.98094102121459, 40.053599959083876], [-74.98083107792566, 40.053613710265495], [-74.98070312535563, 40.05362429968076], [-74.98063015568569, 40.053630079020856], [-74.98049113804896, 40.05363890568749], [-74.98028684909443, 40.05364065842978], [-74.98020034834873, 40.053637124904604], [-74.98016671564534, 40.053635751745446], [-74.98012106201882, 40.053633886903825], [-74.98008731111703, 40.053632508168285], [-74.98004127500081, 40.053626800922004], [-74.98000168352553, 40.05362189151193], [-74.97993736718946, 40.05361391698472], [-74.97983656849195, 40.053601419693535], [-74.97972581494665, 40.053549177556555], [-74.97968613886177, 40.053530462506835], [-74.97965752614932, 40.05351696651479], [-74.97964215966273, 40.05350511091698], [-74.97957938189387, 40.053456678306596], [-74.97951009524691, 40.05340322381422], [-74.9793804359642, 40.05327989322368], [-74.97914132500213, 40.053070446581486], [-74.9788643758819, 40.052830035989494], [-74.97855513523946, 40.05263559138109], [-74.97800620398617, 40.05220691321566], [-74.97683828922655, 40.05115910201165], [-74.97607665903661, 40.05047576991033], [-74.9747841439478, 40.04931608880409], [-74.97526196175941, 40.048745620231564], [-74.97576089776359, 40.04814992707445], [-74.97621401852302, 40.0476995145884], [-74.9766399576386, 40.04740753190659], [-74.98111308745125, 40.05138180422633], [-74.98208931617228, 40.05231255529608], [-74.98273352293714, 40.05301574562342], [-74.98379632094823, 40.05420356773441], [-74.98396572527261, 40.05462750125775], [-74.98401688146697, 40.054708509021076], [-74.98409878171032, 40.05478373231092], [-74.98415155670932, 40.05482814694793], [-74.9842573866046, 40.05490393180876], [-74.98439233134985, 40.055017035967204], [-74.98451795866875, 40.05514942559683], [-74.98475433761872, 40.055358582041585], [-74.98500302675573, 40.05557645381922], [-74.98529316777564, 40.05582904683217], [-74.98590682466101, 40.056378300947806], [-74.9879801607809, 40.05821631396604], [-74.989286928798, 40.05937652147773], [-74.9904325723008, 40.060397207455054], [-74.99051053375126, 40.060438488973645], [-74.99064230555005, 40.06050208736882], [-74.99085541386388, 40.06066080733073], [-74.99110105709491, 40.06082534327962], [-74.99130342505201, 40.06092588935296], [-74.99149351660745, 40.06100599428357], [-74.99170939033432, 40.06109679086137], [-74.99194572488256, 40.06116793486433], [-74.99239711762029, 40.06126941868098], [-74.99281403097854, 40.06133230332667], [-74.99321774729918, 40.061397389171425], [-74.99356775227025, 40.06149391799965], [-74.99395224082419, 40.061629044655696], [-74.99427698081958, 40.061782881163985], [-74.99451468543627, 40.06191530970193], [-74.99530548636974, 40.06236533704058], [-74.9984208088978, 40.06413807764871], [-74.99902373253308, 40.06448114410677], [-75.00020320019168, 40.06515197637998], [-75.00290365177997, 40.06668327635158], [-75.00727005000492, 40.06916284283319], [-75.01133066624226, 40.07118005144515], [-75.01312768506725, 40.07207268034328], [-75.014088715379, 40.07264365237408], [-75.01506505696598, 40.073179433645436], [-75.01683647482798, 40.074171198321956], [-75.0170511604494, 40.07429139164119], [-75.01714477252432, 40.074343800429524], [-75.02174937544991, 40.07695644903743], [-75.02371460278547, 40.07799573890452], [-75.02537845533197, 40.07894441699348], [-75.02844973853612, 40.08067939112584], [-75.02860591922072, 40.08077109526856], [-75.02936100367475, 40.07996554086386], [-75.03024499085504, 40.07905911048138], [-75.03265156130533, 40.076563913553244], [-75.03345632981974, 40.075733552485595], [-75.03394468660325, 40.07522585640025], [-75.0348403042355, 40.07430802573013], [-75.03688057928926, 40.072209186628385], [-75.03797590147553, 40.071078701239365], [-75.03895106634981, 40.07005670880712], [-75.03937274031372, 40.0695553420102], [-75.03952749808136, 40.0693585665246], [-75.03990055038933, 40.0687164982515], [-75.04027165133148, 40.06792050879335], [-75.04104856821186, 40.06619437066853], [-75.04117363314958, 40.06591649432094], [-75.0413335088859, 40.065974787552165], [-75.04147018298123, 40.066018667392534], [-75.04181278865332, 40.06612786129399], [-75.04214704345395, 40.06622444269112], [-75.04252300081988, 40.06630933607577], [-75.04289147572567, 40.066375041588714], [-75.04311837397684, 40.06647542875296], [-75.04331929512507, 40.06660688172657], [-75.04350844181876, 40.06682676256377], [-75.04367908978594, 40.06709689587563], [-75.0437825664205, 40.067397128713154], [-75.04386302954859, 40.068067475794585], [-75.04388739876102, 40.06828347515002], [-75.04385971299041, 40.06877069871069], [-75.04376191556884, 40.06915489498487], [-75.04357575655808, 40.069479984511155], [-75.04302513401653, 40.07046494259144], [-75.04285241512586, 40.07086638181349], [-75.04276168364336, 40.07107333361617], [-75.04248841833828, 40.07130766563954], [-75.04208473704509, 40.07170999709947], [-75.0418127306453, 40.071912676397304], [-75.04147430148507, 40.07212646098452], [-75.04136137041226, 40.07226952947355], [-75.04132108124091, 40.072452325411106], [-75.04138815858997, 40.072631315890035], [-75.0416120446288, 40.07280766508903], [-75.04185417957775, 40.07294009334167], [-75.04234135855599, 40.073132150758376], [-75.0427300417902, 40.07331238140349], [-75.04299664661441, 40.0734517197984], [-75.04338088274055, 40.07353680258656], [-75.04367347260144, 40.07364506960524], [-75.04388862161355, 40.07383388162932], [-75.04387877137246, 40.07408075501489], [-75.04381174842123, 40.07431361061849], [-75.04358058733531, 40.074732682333874], [-75.0434818653947, 40.07493311127461], [-75.04347130832939, 40.07501237386902], [-75.04344653650189, 40.07519839220523], [-75.04350437156484, 40.07540250824636], [-75.04381666845494, 40.07584388336682], [-75.04398238591108, 40.07603152918247], [-75.04420098626825, 40.076340808020944], [-75.04437544784992, 40.076515986745726], [-75.04461019606796, 40.07671426002101], [-75.04474262752414, 40.076822426205], [-75.04482771390366, 40.07696382122396], [-75.044893542534, 40.07717445983989], [-75.04496189751694, 40.077321798879794], [-75.04505497403682, 40.077469718840085], [-75.045181767739, 40.07759942286984], [-75.04534926028896, 40.07774275870906], [-75.04561487822417, 40.07790741100268], [-75.04595415584761, 40.078086466332714], [-75.04631143038561, 40.078227928813625], [-75.04671865181837, 40.07835789268325], [-75.04707046516083, 40.07842952916896], [-75.04743152769055, 40.07847603650771], [-75.04777938855011, 40.07843986397968], [-75.04818367057818, 40.07843669765365], [-75.04883226443728, 40.07851213372634], [-75.04940833315213, 40.07854468046004], [-75.04973719410566, 40.07857141713605], [-75.04995917909704, 40.07858930313321], [-75.05015720083807, 40.07858761908509], [-75.05038994860831, 40.07854239912013], [-75.0506484231972, 40.078472438334956], [-75.0509663444948, 40.07835952001648], [-75.05122809364289, 40.07820726754548], [-75.0515065722058, 40.07804906936406], [-75.05168591663612, 40.077894879164575], [-75.05186551085286, 40.07773436021535], [-75.05198616329548, 40.07760413533933], [-75.05212826288668, 40.077556783823084], [-75.05234301422513, 40.077549152659024], [-75.05263142116847, 40.077555922185596], [-75.0529128500191, 40.07753084556232], [-75.05325296607438, 40.07748180349217], [-75.05346174180787, 40.0774170064721], [-75.05362308928163, 40.07730040711198], [-75.05377757875698, 40.07714879871762], [-75.05386828593147, 40.07694183832337], [-75.0539296157627, 40.07643639594118], [-75.05396616603974, 40.07613946065988], [-75.05399541632775, 40.076026097060954], [-75.05414725883203, 40.07594095572149], [-75.05431382253069, 40.07590051164817], [-75.05455976708468, 40.07593796030108], [-75.0547928060949, 40.07608904559435], [-75.05498466818896, 40.07624571716204], [-75.05517312496838, 40.07648456942428], [-75.05534535391104, 40.07671670469455], [-75.05537620540206, 40.07678442526513], [-75.05552497347986, 40.076671328095905], [-75.05758362004983, 40.07510625263813], [-75.05782233982951, 40.074917383728305], [-75.0580600180249, 40.07472768441965], [-75.05829722217847, 40.07453760141421], [-75.05853450793607, 40.07434758563563], [-75.05877243914605, 40.074158088195375], [-75.05901157500546, 40.07396955919014], [-75.05925247709082, 40.0737824478666], [-75.05949570921547, 40.07359720622223], [-75.05974187453398, 40.07341429978524], [-75.05999149552423, 40.07323403991354], [-75.06024425155283, 40.07305623076177], [-75.06049970478726, 40.07288061517643], [-75.06075741494566, 40.07270693865332], [-75.06101694643431, 40.07253494680178], [-75.0612778636246, 40.07236438613518], [-75.06154075136922, 40.07219565146795], [-75.06180618592673, 40.07202914731945], [-75.06207392243033, 40.0718647490067], [-75.06234372144463, 40.07170234278835], [-75.06261533565403, 40.07154180663149], [-75.06288851078965, 40.07138298680624], [-75.06316277192772, 40.071225171185866], [-75.0634381718676, 40.0710683889291], [-75.06371496187346, 40.07091301803206], [-75.06399338735496, 40.07075943635126], [-75.06427369713427, 40.070608024523715], [-75.06455614032294, 40.07045915598219], [-75.06484130035514, 40.07031355796916], [-75.06513063452837, 40.070172754836676], [-75.06542327369665, 40.070035772044], [-75.0657180402657, 40.06990130888495], [-75.0660137588297, 40.06976806832083], [-75.0663092707974, 40.06963477263976], [-75.06660492565369, 40.06950177780655], [-75.06690135658151, 40.06936976897946], [-75.06719852233356, 40.06923872176233], [-75.06749638627788, 40.06910861366898], [-75.0678274453076, 40.06896467197677], [-75.06735652846181, 40.06872835474917], [-75.0658467809666, 40.067832099023924], [-75.06502668978634, 40.067345239044975], [-75.06988024443862, 40.061825341066864], [-75.07031102114136, 40.06205477404607], [-75.07053197167276, 40.06213715241198], [-75.07086082608126, 40.06222798789649], [-75.07128377583618, 40.062285371006226], [-75.07214134544577, 40.0623757177902], [-75.07243794149772, 40.06242514102399], [-75.07275111584283, 40.06252154435866], [-75.07294842940784, 40.06261524742156], [-75.07330491095185, 40.06281311335858], [-75.07354324395854, 40.062936481673376], [-75.0753759601058, 40.06397178792418], [-75.07599116443163, 40.06434346148916], [-75.07715589235868, 40.06504476333175], [-75.07736001106932, 40.0654320643241], [-75.0775074708497, 40.06568457988809], [-75.07767354595893, 40.06596702456253], [-75.07771866653502, 40.066036330276916], [-75.0778873699058, 40.066227749755065], [-75.07805155797986, 40.06636177054576], [-75.07890160880922, 40.06683635632901], [-75.08096567099172, 40.06797552436967], [-75.08204090213172, 40.06805242820077], [-75.08372661331803, 40.068174970048695], [-75.08432206063496, 40.06830338858394], [-75.08462537770777, 40.06836930728484], [-75.08531032224032, 40.068513075978196], [-75.08707644886283, 40.068565824165354], [-75.08723266257306, 40.06839116981807], [-75.08902882748413, 40.066599282792986], [-75.09037058875349, 40.06527619765871], [-75.09195860699734, 40.066200121654816], [-75.09324449349958, 40.0669482279799], [-75.0967382741719, 40.06898069222738], [-75.09404260233903, 40.07163329133227], [-75.09384252084408, 40.07183059824139], [-75.08996067275, 40.075661165003694], [-75.08951995056393, 40.076096031543], [-75.0891907542941, 40.07640878097414], [-75.08793830991601, 40.077598613149505], [-75.08689904947299, 40.0786463148236], [-75.0853654932011, 40.08010823724802], [-75.08390468787542, 40.08149006648177], [-75.08245787770203, 40.08288512949956], [-75.08168760417915, 40.083621315787084], [-75.081189150627, 40.084117842516726], [-75.07780237997744, 40.08577060590932], [-75.0762850362767, 40.08734184166048], [-75.07621101423739, 40.08741849292918], [-75.07123362350859, 40.09257200373774], [-75.07070881400485, 40.093115325291215], [-75.06945610894356, 40.09441217098119], [-75.06717459389318, 40.09677392043086], [-75.06567004428658, 40.098331262499364], [-75.0649336197538, 40.09909349519872], [-75.06424298959658, 40.099807689376114], [-75.06374502815815, 40.10032262854479], [-75.0635651080532, 40.100515285556895], [-75.06282035380688, 40.101283120986444], [-75.06141701723698, 40.10272988308664], [-75.06031563558594, 40.103868676200975], [-75.05955296452716, 40.10465722571823], [-75.05922801573257, 40.104993193756656], [-75.05842417065355, 40.10582388395065], [-75.05829127958201, 40.10591680588243], [-75.05533361228288, 40.10798663663956], [-75.05426974383495, 40.10873110159568], [-75.0529733091716, 40.10963827387001], [-75.04855727894453, 40.11272003648118], [-75.03904358203224, 40.11935771332061], [-75.03833768667893, 40.119871126479985], [-75.03790870422559, 40.12016854479975], [-75.03165368202416, 40.12450474988725], [-75.02578697968089, 40.12857094226713], [-75.02535538098483, 40.12889038492844], [-75.02489288491259, 40.12921773685513], [-75.02057228005175, 40.13227559885376], [-75.01795079475555, 40.1348493174986], [-75.01496568865494, 40.13792673459656], [-75.01456067078037, 40.13768065893307], [-75.0138684262985, 40.13725936442157], [-75.01223394265399, 40.136258288870415], [-75.01145933375201, 40.13578384504616], [-75.01062219911778, 40.13527108950435], [-75.01042775736174, 40.13515198930369], [-75.00946320264039, 40.13457113553308], [-75.00909381736882, 40.134356185708235], [-75.00833596776289, 40.1339151761605], [-75.00690178558112, 40.13308056182538], [-75.00595861235607, 40.13253191330906], [-75.00327001426656, 40.13096784691968], [-75.00095172285465, 40.129611280464566], [-74.99974011719799, 40.12890703669493], [-74.9985346905457, 40.12819793818561], [-74.9978850588362, 40.12781794116706], [-74.99780190241209, 40.12790374778628], [-74.99757220204631, 40.12811959877898], [-74.99744965541919, 40.12825118330879], [-74.99419528808693, 40.13151014669864], [-74.99384688724413, 40.13185471136569], [-74.99367317732383, 40.13173436666953], [-74.99350785278044, 40.13161576347745], [-74.99343106095644, 40.13155152365505], [-74.99335533436061, 40.13146118845349], [-74.99321078471104, 40.131319865993845], [-74.99310093956477, 40.131185178047396], [-74.99299676270985, 40.131050626760704], [-74.99292156692285, 40.13094724398734], [-74.99284088018882, 40.130816157055825], [-74.99278026356792, 40.130726185458435], [-74.99275110516915, 40.13060649049591], [-74.99274390324655, 40.13050473851017], [-74.99277175782396, 40.13042414137247], [-74.99281359908359, 40.1303017972717], [-74.9929023373726, 40.13021177663748], [-74.9930469675919, 40.13018839744057], [-74.99310816805531, 40.13005490803291], [-74.993100548191, 40.1298936480917], [-74.9931600387094, 40.129778982289196], [-74.99327813756538, 40.12973392528314], [-74.99338897696153, 40.129704655558946], [-74.99350270793782, 40.12965078758715], [-74.99350258578647, 40.12951437573597], [-74.99344940499783, 40.12942748500944], [-74.99341711256507, 40.12917566099978], [-74.99342224211132, 40.12900309829395], [-74.99350627829726, 40.1287729279413], [-74.99366020157917, 40.12875340025432], [-74.99369171487793, 40.1286757929296], [-74.9937830750758, 40.12861413053864], [-74.99380348967514, 40.1284840181938], [-74.99366012652379, 40.12838335521616], [-74.99368703397506, 40.128209861928816], [-74.99366826208929, 40.12811363735725], [-74.99375206224478, 40.12791248437565], [-74.99389381834347, 40.127750450369135], [-74.99400459382454, 40.127676194932434], [-74.9941000243865, 40.12760737452182], [-74.99423670784721, 40.12750036439918], [-74.99440737836564, 40.12727807307649], [-74.99447276364499, 40.12711130801509], [-74.99452646102851, 40.12695296893941], [-74.99454409430443, 40.12668202702574], [-74.9944807001155, 40.12652088068956], [-74.99442639881008, 40.126415097107525], [-74.99435025872926, 40.12621882018101], [-74.99427589196361, 40.126141577996655], [-74.99415325042847, 40.12608930072979], [-74.99392432087171, 40.12604753438069], [-74.99348109976557, 40.12599918257441], [-74.99314711869496, 40.12593748455393], [-74.99287616866249, 40.125906320763235], [-74.9926359106685, 40.12591071823606], [-74.9923637235236, 40.12593321422704], [-74.99204396969058, 40.125986496201385], [-74.99170214125444, 40.12607117157965], [-74.99145379683662, 40.12613486977064], [-74.99106628732451, 40.12620393596334], [-74.99078200041933, 40.12626822208866], [-74.9906201734298, 40.12629626404043], [-74.99039532413906, 40.12625086354251], [-74.99029392602662, 40.12623039113767], [-74.99008122672589, 40.12623109067799], [-74.98974081450858, 40.12623452928292], [-74.9895593341608, 40.12623452823697], [-74.98933784425813, 40.126195834500834], [-74.98915583444865, 40.12616244294436], [-74.98905875193762, 40.126109321214216], [-74.98904187525785, 40.12601313939742], [-74.98901219261161, 40.125906494258736], [-74.98898410602332, 40.125760704715326], [-74.98906950887601, 40.125601677456196], [-74.98901350705765, 40.12547988794097], [-74.9889384974872, 40.125418589031064], [-74.98879745063422, 40.12530781757151], [-74.98870376831839, 40.12512490064517], [-74.98850020774394, 40.12469264952626], [-74.98848268484002, 40.12456597722211], [-74.98838980683794, 40.12427061582366], [-74.98836165835336, 40.12417271247097], [-74.98824027051452, 40.12404354766518], [-74.98805750308202, 40.1239593439921], [-74.98783896771224, 40.12394103529547], [-74.98770654101158, 40.123897221980116], [-74.98754265877153, 40.123790255182094], [-74.98738521497013, 40.12366457634058], [-74.98731469498354, 40.123585971982386], [-74.9871948402606, 40.1235119852043], [-74.98704500171455, 40.123477910475984], [-74.98684418330842, 40.12332652032373], [-74.98666945185785, 40.12316124321139], [-74.98651902950084, 40.12304879274083], [-74.98642454740087, 40.12304797297941], [-74.98624330656364, 40.123135040242815], [-74.98603639097097, 40.12324906180734], [-74.98591959548023, 40.12333187281942], [-74.98567431656518, 40.12348270102307], [-74.9855275955225, 40.12360397328139], [-74.98513276405075, 40.12382956806535], [-74.98499843823157, 40.123901798125566], [-74.98486488113883, 40.12393196412], [-74.98469840033007, 40.12393521553624], [-74.98455245852941, 40.12389833072942], [-74.98445461633227, 40.1238408345315], [-74.98438616735899, 40.123757923261785], [-74.98435790537371, 40.12366291838033], [-74.98430592358461, 40.12359346490056], [-74.98421274002482, 40.12356074895703], [-74.98407853783876, 40.12356042451801], [-74.98397502306135, 40.123595663268794], [-74.9836767594915, 40.123608807072536], [-74.98354349950957, 40.123631721506506], [-74.98343809993273, 40.123620478076916], [-74.98313696708402, 40.12344925398773], [-74.98290564151625, 40.12332759496191], [-74.98281907207792, 40.12327182017356], [-74.98268134745676, 40.12314951147065], [-74.98261095951418, 40.123021566745926], [-74.98258500724079, 40.12291646013414], [-74.98259313937157, 40.12276355858768], [-74.98273754554711, 40.1225370250372], [-74.98275626640915, 40.12244895670757], [-74.98272240401374, 40.12235236496688], [-74.98263348621425, 40.122215268243], [-74.98247616214583, 40.12192487866225], [-74.98229183649046, 40.12190230320981], [-74.98219181957151, 40.12180557160739], [-74.98225143867948, 40.12168801186797], [-74.98237828163757, 40.121521280553715], [-74.98238815087403, 40.12141848488436], [-74.98241194768732, 40.12129861222322], [-74.98245450499472, 40.12122852887616], [-74.98260003717536, 40.12118269249207], [-74.98276958654986, 40.1211504948091], [-74.9829306993569, 40.121093421818045], [-74.98300223393417, 40.12100807497506], [-74.98306751447676, 40.120890650179], [-74.983080804259, 40.12079664466655], [-74.98307769441928, 40.12064129742954], [-74.98303328175004, 40.12045593308441], [-74.98298283921916, 40.12034878383909], [-74.98292129453237, 40.120282001848466], [-74.98278764029821, 40.120222189804174], [-74.98269367366333, 40.120139390472424], [-74.98261806292406, 40.120046873290725], [-74.98251456218918, 40.11998923817729], [-74.98237093233877, 40.1199422464889], [-74.98216409935375, 40.11991550221207], [-74.9819809850239, 40.119909643010125], [-74.98183315979003, 40.11991914556726], [-74.9816972476433, 40.11996085947256], [-74.98158700540135, 40.12002205591612], [-74.98150715492436, 40.12007963179768], [-74.98135807846693, 40.120142795423035], [-74.98120375893839, 40.12017245535031], [-74.98105221429736, 40.12018041574893], [-74.98086939545769, 40.12016730742784], [-74.9807250555385, 40.12013771056408], [-74.98041188790387, 40.120076475793724], [-74.98029098448727, 40.1200053594499], [-74.98010425541783, 40.11985017926239], [-74.97996529974716, 40.11973470075871], [-74.97985040050135, 40.119639213251936], [-74.97973664437417, 40.11953199064375], [-74.97959940390363, 40.11942129890018], [-74.97946881752101, 40.119378971700826], [-74.97928311461659, 40.119344022453376], [-74.97913192604561, 40.11934328185931], [-74.97900787828966, 40.1193722175273], [-74.97889067491155, 40.11941873381068], [-74.97879907649181, 40.119486182472166], [-74.97864531187494, 40.11953689403562], [-74.97847810794664, 40.11950021323935], [-74.97836652680947, 40.11945544049511], [-74.97824259706185, 40.11948147676035], [-74.97797525333478, 40.11959402646026], [-74.97773653771272, 40.11965357566717], [-74.97764600532771, 40.11969492631858], [-74.97756726385114, 40.11979460879553], [-74.97751936128212, 40.12001838357799], [-74.9773824442252, 40.12006151984426], [-74.97724636119099, 40.12006114191805], [-74.97714197536872, 40.12002524669148], [-74.97704072411415, 40.119958955574155], [-74.97692890597693, 40.119919978588435], [-74.97679447375349, 40.11992544460344], [-74.97661135285827, 40.11996601317583], [-74.9763984801125, 40.12004069461639], [-74.97613632527936, 40.12014175686918], [-74.9760656741631, 40.1202053538645], [-74.97602865573337, 40.120278469144544], [-74.97604798396799, 40.12040663733858], [-74.97593059763722, 40.12045749843611], [-74.97577268928615, 40.12041305811775], [-74.97572783943329, 40.120284998611616], [-74.97567123948349, 40.1201900338411], [-74.97556614203015, 40.12017153673227], [-74.97538963277015, 40.12018904420357], [-74.97522598541474, 40.12021557057682], [-74.97510046902921, 40.12021109022837], [-74.97497194983922, 40.12016445381979], [-74.97480549897833, 40.120074818390854], [-74.97468767057562, 40.11999796644932], [-74.97461185960975, 40.119910518223364], [-74.9745359275946, 40.119849188974094], [-74.97442653084751, 40.119797207882335], [-74.9742871477504, 40.11978513743176], [-74.97407535418373, 40.119787280378276], [-74.97360768030312, 40.119806464009066], [-74.97336614764144, 40.11979627827101], [-74.97311068709377, 40.11977995191179], [-74.97299106726703, 40.11979302657531], [-74.97281919105099, 40.11981281896032], [-74.97267181455953, 40.119788218775675], [-74.97255871643699, 40.11968825919607], [-74.97250570125584, 40.119552021189186], [-74.9724284117816, 40.11950081544841], [-74.97223888836929, 40.11942077662379], [-74.97205575095256, 40.11930025986093], [-74.97193297444045, 40.11920587049832], [-74.97185840313676, 40.119134414527075], [-74.97178478526581, 40.11903976009768], [-74.97170976553542, 40.11888702760334], [-74.97160274498218, 40.1188002748363], [-74.97149424481319, 40.11872654540102], [-74.97129618915099, 40.1185780959754], [-74.97120676448317, 40.11845403754876], [-74.97114123532079, 40.11834651983752], [-74.97101974486496, 40.11810559262142], [-74.9709138774968, 40.11792163987746], [-74.97084240830002, 40.1177515775754], [-74.97075038445179, 40.11764486998256], [-74.97061357512354, 40.11752401882371], [-74.9704511062578, 40.11738368246097], [-74.97034660159044, 40.11718960430663], [-74.97026773623337, 40.11708466508946], [-74.97017841940855, 40.11700414262678], [-74.97003398180668, 40.11695421419456], [-74.96989070229579, 40.1169681633536], [-74.96977538222899, 40.11701471504024], [-74.96961872190718, 40.11698625679075], [-74.96947894996535, 40.11691467242613], [-74.96932483964085, 40.11684709602135], [-74.96920228822546, 40.11681655966739], [-74.9690859712698, 40.11684131942042], [-74.9689164285201, 40.11687349700147], [-74.96868520942675, 40.11693465942787], [-74.96843952075207, 40.11702594286368], [-74.96831959234572, 40.1170926980655], [-74.96821630091362, 40.11716856176311], [-74.96812458171257, 40.117215683673145], [-74.96803450750106, 40.1172918660717], [-74.96789019155149, 40.117400115305706], [-74.96773200301362, 40.117523988464775], [-74.96753970498874, 40.117649941113235], [-74.9674834750638, 40.11779950161915], [-74.9674614374426, 40.11787587919556], [-74.96735343056804, 40.117928410187], [-74.96712222242492, 40.117943130495256], [-74.96694965359058, 40.11800280658301], [-74.96672103343944, 40.11804661220493], [-74.96653260089148, 40.11807832915238], [-74.96638376413878, 40.11811245683492], [-74.96607916757638, 40.11823423701863], [-74.96591951833074, 40.118301478900214], [-74.96577268884946, 40.11833275115982], [-74.96559196896969, 40.118406737845646], [-74.96543019396812, 40.11847973319444], [-74.96533250088125, 40.11855718161553], [-74.96526018943926, 40.11861492728163], [-74.96514763896454, 40.11866299316389], [-74.96499291483178, 40.118656343623556], [-74.96483536722802, 40.11862640669265], [-74.9647329398482, 40.11858909669982], [-74.96462727083852, 40.11853864977195], [-74.96453376503183, 40.1184681800264], [-74.96448764842168, 40.11839450417565], [-74.96450736047414, 40.11823680585786], [-74.9644875196328, 40.118121682868896], [-74.96441676121945, 40.11798065781134], [-74.96433255898638, 40.1178218911196], [-74.96428035539026, 40.11762036609921], [-74.96420550185364, 40.1173950744162], [-74.96413528486632, 40.1173131518111], [-74.96399708852267, 40.11722314129124], [-74.96382918768471, 40.11712329562558], [-74.96373455468749, 40.11708036972731], [-74.96357465411043, 40.11703876634753], [-74.96340959849404, 40.1169847003448], [-74.96329353805959, 40.11688828892024], [-74.96321947390042, 40.11675879051246], [-74.96317383581372, 40.116674623670896], [-74.96314983322998, 40.11649879523493], [-74.96314050777443, 40.1163578065179], [-74.9631547381758, 40.11619562061336], [-74.96313235561803, 40.116096399988464], [-74.9631137485702, 40.11599726906], [-74.96311043878094, 40.11587093698896], [-74.96314587676885, 40.11579053093015], [-74.9632483766372, 40.11564209551682], [-74.96332246230332, 40.11549514569606], [-74.9633942125015, 40.11529009400465], [-74.96341265501594, 40.115209276000215], [-74.96334801694702, 40.11512644458324], [-74.96324764071571, 40.11499340701054], [-74.9631444705759, 40.11476742726126], [-74.9630999252316, 40.114609621509736], [-74.96324780056486, 40.11446083336213], [-74.96345602581059, 40.11420031586229], [-74.96366871303304, 40.11399214937468], [-74.96399992451454, 40.11368237063091], [-74.96409025601378, 40.11355395348697], [-74.96413749869085, 40.11346222377605], [-74.96415535231249, 40.11337268525479], [-74.96413644891938, 40.1132808036394], [-74.96402096391904, 40.113009539385665], [-74.96391844543861, 40.11262975324262], [-74.9638774580994, 40.112431401967754], [-74.96388250940994, 40.112193532423404], [-74.96387898647576, 40.1120033461688], [-74.96384869535596, 40.11191263836298], [-74.96378309280428, 40.11173836100134], [-74.96377557767543, 40.11164530452999], [-74.96379485422027, 40.111544189323716], [-74.96385070057904, 40.111472985592656], [-74.96393417383017, 40.111373425946965], [-74.96404481260235, 40.11121067363387], [-74.96410387706898, 40.1110611851694], [-74.96411973302025, 40.11095127998503], [-74.96411977237734, 40.11085840658203], [-74.96403911400388, 40.11070553173609], [-74.96390145962403, 40.110559980986196], [-74.96383765607658, 40.110456854381745], [-74.96383934385922, 40.11036982471464], [-74.96381143583622, 40.11022112937438], [-74.963745172204, 40.11008601721508], [-74.96370887785643, 40.10995743417731], [-74.96370879621225, 40.10986746107558], [-74.96377020519976, 40.10975285602159], [-74.9638898084259, 40.10960193053898], [-74.96397681595, 40.10950826215481], [-74.96407360148214, 40.10945256031356], [-74.96423339141067, 40.10942740937499], [-74.96440812902686, 40.10949839617235], [-74.9645076215663, 40.10946888072424], [-74.96460110813432, 40.1094014900223], [-74.96467843512309, 40.10931339131839], [-74.96473678175828, 40.10918129840122], [-74.96476348935374, 40.10908326543434], [-74.96480860228478, 40.108997287725906], [-74.96490510709901, 40.1089023980248], [-74.96508711155552, 40.10879651821489], [-74.96520452139433, 40.10865279376601], [-74.96538552333612, 40.10838726082454], [-74.96551491521684, 40.108227863806526], [-74.96557978452094, 40.10814498190638], [-74.96558395061751, 40.10806555604411], [-74.96550238324046, 40.107980864075955], [-74.96543067252851, 40.10788625388897], [-74.96536723004647, 40.10777442889945], [-74.96529412593388, 40.10762173604106], [-74.96521076588365, 40.107442675354456], [-74.96512196496265, 40.107304114824885], [-74.96501650930959, 40.107202880458296], [-74.96472482099311, 40.1071725965749], [-74.96442003531749, 40.10713909226683], [-74.96419407038636, 40.10711910553015], [-74.96395677513556, 40.107098842885186], [-74.9637089907015, 40.107058011779365], [-74.96351561716939, 40.10698076556588], [-74.96333488205855, 40.10687190125946], [-74.96324831098964, 40.10677112471085], [-74.9632120071881, 40.10665100135869], [-74.9632683414159, 40.10655974021317], [-74.96338775907506, 40.10650745210231], [-74.96346437237705, 40.10648032330571], [-74.96359454454354, 40.10643994290029], [-74.96365758025517, 40.10637761973227], [-74.96366918543235, 40.10627922187831], [-74.96361603929876, 40.106100891211604], [-74.96369137662307, 40.10596920969179], [-74.96378485917754, 40.105901819636934], [-74.9639060841823, 40.10580317682134], [-74.96396204610612, 40.10572907177049], [-74.96394415798275, 40.105612545068865], [-74.96379597945818, 40.10553929768364], [-74.96359104385553, 40.10546757779541], [-74.96339791446555, 40.10538453427425], [-74.96318284504194, 40.105283544474474], [-74.962963164746, 40.10520275805894], [-74.9626919154668, 40.10513523365247], [-74.96255447219637, 40.10507675664639], [-74.96249775198542, 40.1049854102411], [-74.96242759983974, 40.104853103358295], [-74.9624316534999, 40.10475452338473], [-74.96246627331722, 40.10464797656316], [-74.96253801424646, 40.1045118536878], [-74.96237672471584, 40.10434396220508], [-74.96209043267068, 40.1041367593823], [-74.96199136750904, 40.10401826282574], [-74.96176561224028, 40.10380962481303], [-74.96156330892553, 40.10367411403533], [-74.96140110953917, 40.103574403016644], [-74.96122698558308, 40.1034889133785], [-74.96114017300145, 40.103435546349274], [-74.96101844359531, 40.1033213243334], [-74.96098827939214, 40.103227718057234], [-74.96099352798086, 40.10310014169535], [-74.96102317699925, 40.103022499139044], [-74.96108806584733, 40.1027773738771], [-74.9611975256981, 40.102597183444516], [-74.96120102805526, 40.102420225558284], [-74.96123341984755, 40.102275895291584], [-74.96128894444362, 40.102120514932956], [-74.96128045155375, 40.1019824483342], [-74.96117649137744, 40.1018681879942], [-74.96110006443077, 40.101796677407464], [-74.96106000262057, 40.101668001835556], [-74.96112407504828, 40.101396736449274], [-74.96122488894056, 40.10128889520469], [-74.96139308776735, 40.101150760717616], [-74.96147619296396, 40.10105990114736], [-74.96164168712644, 40.10089557950857], [-74.96169979393106, 40.10076928698368], [-74.96174255931354, 40.10064842615592], [-74.96176668581465, 40.10052130854028], [-74.96179907553315, 40.100376977195545], [-74.96184541778801, 40.100169133300874], [-74.96185253345196, 40.10008803990201], [-74.96188848050542, 40.09990316362808], [-74.96193100648846, 40.099788102552125], [-74.96199406049067, 40.099679342223226], [-74.96201864140038, 40.09958706386156], [-74.96198434418078, 40.0995020637502], [-74.96191642295962, 40.09940754288477], [-74.96181428304273, 40.099317994054964], [-74.96173750165367, 40.09925518410154], [-74.96167842327168, 40.09917538753953], [-74.96175669636678, 40.0990640950242], [-74.96206937522757, 40.09876693282772], [-74.96207662896857, 40.09863650451015], [-74.96190666953866, 40.0984959727095], [-74.9617225418011, 40.098378315842666], [-74.96160518328142, 40.098291302709356], [-74.96158634719137, 40.09819797039727], [-74.96165860004366, 40.09809523810618], [-74.96177331562501, 40.09801675545612], [-74.96180876655832, 40.097889912503334], [-74.96178710750394, 40.09777329380282], [-74.9617217725669, 40.097707858160305], [-74.96161784668656, 40.09766180201515], [-74.96141293836342, 40.097590078235875], [-74.96118927222231, 40.09751499576082], [-74.96105856058438, 40.097476997244186], [-74.96092276389942, 40.09747080023532], [-74.96078954638355, 40.097493689224166], [-74.96067803104046, 40.097540323516256], [-74.96056746872704, 40.09756376196426], [-74.96046163514461, 40.09756409438816], [-74.96007657891424, 40.097461876208584], [-74.95973257710463, 40.097372260851245], [-74.95962523555662, 40.09731741377516], [-74.9594744989043, 40.09721507453958], [-74.95937399268634, 40.09717780820223], [-74.95876548627052, 40.096899039666354], [-74.95851430034554, 40.09680865469869], [-74.95825066194955, 40.09669486590342], [-74.95816657239854, 40.09662607029507], [-74.9580938923291, 40.096509662320166], [-74.95799490376446, 40.096389713851764], [-74.95765135894611, 40.096105646749336], [-74.95735317370796, 40.09595909061887], [-74.9572076044577, 40.09591492102114], [-74.95705730675867, 40.095893856147875], [-74.95689802502051, 40.095907399328425], [-74.9566389075855, 40.095959150293666], [-74.95646086677436, 40.09596933556449], [-74.95628497762564, 40.09592733032099], [-74.95618543097287, 40.09586686371889], [-74.95609058057512, 40.09573830698621], [-74.95611264839714, 40.095615494259576], [-74.95583640361829, 40.09525759748484], [-74.9557583653384, 40.09513380038586], [-74.9557595489431, 40.09501338331986], [-74.95587915493088, 40.094724605366636], [-74.95600706377722, 40.09446360022027], [-74.95623346209133, 40.09401343633093], [-74.95639087460387, 40.09372412604626], [-74.95640181776452, 40.09355025200715], [-74.95640095839518, 40.0933876996812], [-74.95638074249425, 40.09323628638063], [-74.95637269106219, 40.09306485216829], [-74.95645302212061, 40.092857837007095], [-74.95668999695222, 40.09247177960124], [-74.95682222258692, 40.092289244195165], [-74.95694085382434, 40.09216152051755], [-74.95706373630678, 40.09202229237414], [-74.95711548804199, 40.091866822224674], [-74.95719698471487, 40.09167724821423], [-74.95728517503632, 40.09155459112615], [-74.95744112074948, 40.09134650831758], [-74.95747160812206, 40.09124857047232], [-74.95764213077516, 40.0911453266044], [-74.95781370059555, 40.090833138751776], [-74.95795906082304, 40.09056094710358], [-74.95797821940813, 40.090462733962696], [-74.95796304502679, 40.09037239214202], [-74.9579075408016, 40.09025204794809], [-74.95782231122263, 40.09011937309264], [-74.95779215612944, 40.09002576586814], [-74.95778914310826, 40.08991540380297], [-74.95785827330144, 40.08979663551961], [-74.95802891227677, 40.08969049163477], [-74.95811173142842, 40.089560448074124], [-74.95811555178857, 40.08946766437731], [-74.95811454572612, 40.089354449615925], [-74.95815351448273, 40.08927993382665], [-74.95824139797537, 40.08916452500722], [-74.95822879134455, 40.08901184524645], [-74.95818032996581, 40.08872043554952], [-74.95800915113314, 40.088243196130925], [-74.95786822721342, 40.08790310149964], [-74.95771263675732, 40.08764391471092], [-74.9576079809796, 40.08720311986009], [-74.95762291135141, 40.08706997478536], [-74.9580162109943, 40.08683283017598], [-74.95802600041833, 40.08659507602561], [-74.95803278313677, 40.08647624481164], [-74.95802460773955, 40.08630771097548], [-74.95806425225537, 40.086170813108446], [-74.95820216028376, 40.086033397931644], [-74.95822382526586, 40.085874296023924], [-74.95821450201854, 40.08564188234166], [-74.95825042206582, 40.08527415836413], [-74.95829712294712, 40.085057618206065], [-74.95833940705427, 40.08494835547422], [-74.95862611131385, 40.084592527228246], [-74.95867823230348, 40.08438192150736], [-74.95858816083263, 40.08427524979799], [-74.95842092324301, 40.08420733774501], [-74.95836434900353, 40.08411308799784], [-74.95837182172221, 40.08402329625386], [-74.95840176734495, 40.08393840525309], [-74.95859127838324, 40.08392414323246], [-74.95872069406991, 40.08390116506728], [-74.95890184992464, 40.08372271569425], [-74.95896419799766, 40.08358491909451], [-74.95898289842745, 40.08345186635132], [-74.95894297197812, 40.08332029045303], [-74.95890610552568, 40.08320620302309], [-74.95901704696429, 40.08308119502889], [-74.95913331519058, 40.082918584675745], [-74.95915306777049, 40.08280587309673], [-74.95913034295927, 40.082715348937064], [-74.95903757227579, 40.08258249162527], [-74.95899927283814, 40.08250319866731], [-74.95907588300675, 40.082386063109766], [-74.95926814392355, 40.082370061103965], [-74.95966512082344, 40.082314399849274], [-74.95974238806396, 40.082303567007834], [-74.95985801389948, 40.08224832687534], [-74.95995325701332, 40.0821374469473], [-74.9600098001495, 40.08204884727716], [-74.96004905115942, 40.081921669099025], [-74.96007204635139, 40.081785326136774], [-74.96007671227004, 40.08167191390378], [-74.96007799941006, 40.08153504487056], [-74.96005971537338, 40.0814511254571], [-74.96004024952006, 40.08129037965196], [-74.96010570987941, 40.08117844232902], [-74.96017944313634, 40.081076721240095], [-74.9606259039805, 40.08079038634399], [-74.96081418558292, 40.08065137782424], [-74.96088220349698, 40.08058290873134], [-74.9609850982979, 40.080511946609434], [-74.96109777495953, 40.08041451032501], [-74.96127232265127, 40.08018668501864], [-74.96140483535991, 40.0800296281236], [-74.96152226619331, 40.07992228866674], [-74.96163439246631, 40.079838195165365], [-74.96174163623067, 40.07976466083418], [-74.96189285623186, 40.07966205055332], [-74.96198535025003, 40.07960129133098], [-74.9621058397999, 40.07947232314706], [-74.96213031811381, 40.07935271185449], [-74.96215518203701, 40.079117913887906], [-74.96219879028268, 40.07900878387991], [-74.96226872365817, 40.078893614574234], [-74.96233239783723, 40.078825040228445], [-74.96238653289808, 40.07877407663615], [-74.96248682278156, 40.07866350464332], [-74.96253280493795, 40.07854942303499], [-74.96249852328924, 40.07843172582277], [-74.96242979967485, 40.07825309063244], [-74.96242260095161, 40.07811100765712], [-74.96244394469112, 40.07801469414361], [-74.96251236960778, 40.077936217711645], [-74.96262828690277, 40.07786557101308], [-74.96318267365572, 40.07738484004166], [-74.96328574281962, 40.07720369423109], [-74.96339372536175, 40.0771144887099], [-74.96350474704495, 40.07705707908875], [-74.96363597570574, 40.07703688707247], [-74.96377899428731, 40.07704703246299], [-74.96432245829457, 40.077043513110574], [-74.96481054613699, 40.077165438262], [-74.96493188085668, 40.07718031354425], [-74.96504091549386, 40.07719599713985], [-74.965148051296, 40.077206220968435], [-74.96525421741462, 40.07721635091551], [-74.96544038515029, 40.07723421765086], [-74.96573511033144, 40.07725471421994], [-74.96603024649585, 40.077265202756344], [-74.96618243056821, 40.07726388115482], [-74.96629724518719, 40.077219916470604], [-74.96648834432457, 40.07711769602994], [-74.96659598022093, 40.07703682764955], [-74.96666915154685, 40.076948447512486], [-74.96674930682953, 40.07668994452809], [-74.96677379252641, 40.076516909823034], [-74.96682050111231, 40.07643790503121], [-74.9669402030141, 40.0763807006061], [-74.9672676468526, 40.07634522260966], [-74.96755112221653, 40.07632203482477], [-74.96780717414165, 40.076331573473695], [-74.96828170393493, 40.07631301094343], [-74.96874402870634, 40.07627411483709], [-74.96889214145376, 40.07626601242334], [-74.96908285648924, 40.07627897608996], [-74.96929524748076, 40.0763993103491], [-74.96947991074815, 40.076453865465815], [-74.96962686258466, 40.07647411507143], [-74.96978610465588, 40.07645960291672], [-74.96989990768837, 40.07638722918965], [-74.97001078599946, 40.076333147546435], [-74.97010904979206, 40.07626874524497], [-74.97025018729272, 40.076218733812205], [-74.97036742613606, 40.07622156960225], [-74.97051017169011, 40.07623837967644], [-74.97069213569767, 40.07625279689518], [-74.97083720292183, 40.07621289790571], [-74.97094035284289, 40.07613525649743], [-74.9710531446344, 40.07603447436548], [-74.97117027990238, 40.07593379715892], [-74.9712602656344, 40.075859175630335], [-74.97134727869772, 40.07575109295855], [-74.97138095363404, 40.075671769504446], [-74.97141442219036, 40.075597452811046], [-74.97139653928615, 40.07550352705863], [-74.97134839710093, 40.07540553298759], [-74.9712887295793, 40.07527052803402], [-74.9712316315386, 40.07517899519269], [-74.97123573174729, 40.07507892312442], [-74.97124851468415, 40.07497906281009], [-74.97127962459003, 40.074856271851594], [-74.97131832623661, 40.07476037491537], [-74.97136584477349, 40.07466135448893], [-74.97145107957475, 40.07459663518703], [-74.97159193923397, 40.07455329513424], [-74.971618569112, 40.07443373515477], [-74.9715748371766, 40.07433417540154], [-74.97148638872916, 40.07426525757462], [-74.97127013526364, 40.07413314518485], [-74.97107897971678, 40.07402501489192], [-74.97102704330784, 40.07391357140299], [-74.97103575842551, 40.073806933088406], [-74.97110471819212, 40.073715109117074], [-74.97119863239095, 40.07365059900637], [-74.97153792048043, 40.07343175005237], [-74.97173204420336, 40.07336131576828], [-74.97187248889232, 40.07332798171143], [-74.9720129369216, 40.07329464846803], [-74.97212828752855, 40.07323733548228], [-74.97221881743907, 40.073149370779944], [-74.97227108822958, 40.07304044679336], [-74.97229648565562, 40.072950906722994], [-74.97233111548009, 40.07284823503492], [-74.97241250049727, 40.07245286045425], [-74.97243355865558, 40.072363214573826], [-74.9725001510312, 40.072222918060405], [-74.97257371939335, 40.072124524136385], [-74.97265433303046, 40.07206637198485], [-74.97279641599361, 40.07199300853841], [-74.97291651707785, 40.07192579152796], [-74.9730619834403, 40.07187588331615], [-74.9732117943859, 40.0718260781077], [-74.9733802024007, 40.07174667315732], [-74.97350105118124, 40.071661108899875], [-74.97358391660255, 40.07154791545609], [-74.9736049716868, 40.07145827112839], [-74.97362385436797, 40.071368574310284], [-74.97366824377356, 40.071292848523456], [-74.97380646071099, 40.07120770449727], [-74.97397541142657, 40.07111495616597], [-74.9741176251625, 40.0710382549561], [-74.97425820387885, 40.0710015828951], [-74.97441587522754, 40.07097200136158], [-74.97461033024312, 40.070893221130845], [-74.97480017054443, 40.07082101057005], [-74.97489828421111, 40.07075993839606], [-74.97497984844728, 40.07067843388479], [-74.97503983983766, 40.07059306809202], [-74.97506998790081, 40.07049362593002], [-74.97509999470132, 40.0703975197176], [-74.97512099163596, 40.070256118073274], [-74.97509634345491, 40.07006186028319], [-74.9751046434313, 40.069965228978134], [-74.97516422454726, 40.06988987223098], [-74.97524931211711, 40.06982848523762], [-74.97534728750703, 40.069770747848224], [-74.97545787889761, 40.06972333310177], [-74.97558054057365, 40.06969958254904], [-74.97572220605018, 40.06963622369192], [-74.97596687130982, 40.069498553039736], [-74.9761833006568, 40.06941362564576], [-74.97640054799047, 40.06930868140618], [-74.97660774856126, 40.06923688523815], [-74.97673190691846, 40.069176440194866], [-74.9768269722155, 40.06908357343089], [-74.97687109358594, 40.068961095243665], [-74.9769103270948, 40.06885185474146], [-74.9770056168985, 40.06864713714278], [-74.97707756245333, 40.06848192130966], [-74.97715180188668, 40.06836684766548], [-74.97720324400308, 40.06827793697835], [-74.97726934416491, 40.06814931029942], [-74.97732851344432, 40.06808395797298], [-74.97745871910837, 40.067981920573025], [-74.9776269727749, 40.0679058444728], [-74.97785696553466, 40.067807884785346], [-74.97800812722319, 40.06772471616518], [-74.97815942476227, 40.067638213971016], [-74.97837054917967, 40.06757652753234], [-74.97861627153421, 40.067519012746146], [-74.97888099496791, 40.06742188693341], [-74.97909184669426, 40.06736687044966], [-74.97918140471873, 40.06730225004122], [-74.97941166455479, 40.06719761505796], [-74.97958033525174, 40.067058104670515], [-74.97971202302425, 40.06697279648664], [-74.97979174768422, 40.06688289603536], [-74.97984040867183, 40.06675551815952], [-74.9799084032363, 40.06663361450377], [-74.98004762338027, 40.066523444140216], [-74.98016418169048, 40.06643610016845], [-74.9802671710583, 40.06636178555352], [-74.98037761840621, 40.066317702170856], [-74.98051356836118, 40.066287589017335], [-74.98067570426821, 40.066254767466326], [-74.98075223552989, 40.066189832838035], [-74.98085685804622, 40.06607548924987], [-74.98092145233923, 40.06598355374982], [-74.98096692726357, 40.065827715907844], [-74.98094625650972, 40.065695327413714], [-74.98092063219168, 40.0655778457586], [-74.98096805301702, 40.06550935577075], [-74.98093027752608, 40.065434396469676], [-74.98076818185282, 40.06520352869084], [-74.98069204514626, 40.06508455202811], [-74.98067034061296, 40.06500976100377], [-74.98106055052514, 40.06492588830355], [-74.98096642260431, 40.064669071563905], [-74.98092547600625, 40.06450113291681]]]}}, {"id": "8120", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05460150362975, 40.04415792107146], [-75.05492781601713, 40.04385567168835], [-75.05561028491073, 40.0431883691441], [-75.05612301550626, 40.04264626875537], [-75.05670935146723, 40.04206037491096], [-75.05855594906858, 40.040312717870684], [-75.05879506193901, 40.04010164795467], [-75.06101051345323, 40.03801387425303], [-75.06106479422336, 40.03796318088107], [-75.06140380301757, 40.03813629649556], [-75.06154488245978, 40.03821427560114], [-75.06214677605868, 40.038546631227106], [-75.06268346286417, 40.03883432856052], [-75.06344313976948, 40.039269320376555], [-75.06449621821068, 40.03985446021455], [-75.06558187540165, 40.04044320316244], [-75.0660857896981, 40.04072975664135], [-75.06642601490118, 40.04093771954029], [-75.06675770935561, 40.04111460245521], [-75.06706596059117, 40.041297768499824], [-75.06739568625702, 40.04147925558724], [-75.06766325307836, 40.041635557581635], [-75.06798420272139, 40.04179847020789], [-75.06823563552051, 40.04194630812822], [-75.0685577882953, 40.04212473879472], [-75.06886529842217, 40.04229304231545], [-75.06920821257458, 40.042477206954615], [-75.06946025604138, 40.0426220306221], [-75.06976855750999, 40.042788664233946], [-75.0700275588608, 40.042931021514136], [-75.07034146085934, 40.04310166587641], [-75.07063400351964, 40.04327336991995], [-75.0710144394115, 40.04348418205174], [-75.07130585465983, 40.04364719900084], [-75.0716119804814, 40.04382430087064], [-75.0718666728502, 40.04395920354846], [-75.07224860971324, 40.044162562355126], [-75.07264598524705, 40.04439500937581], [-75.0732510924011, 40.04379731122706], [-75.07383656948787, 40.043175065259916], [-75.07443892565124, 40.04254487598299], [-75.07503370357503, 40.041941143862246], [-75.07545468513057, 40.04215513798341], [-75.07555346965913, 40.04220531304383], [-75.0765608830969, 40.042763955361195], [-75.07856631286752, 40.043905245218944], [-75.08035251915297, 40.04490616956516], [-75.08234451175854, 40.04599251847069], [-75.08300095783821, 40.046371493960706], [-75.08341587267958, 40.046600359614075], [-75.08365174732054, 40.046724542027356], [-75.08406675926334, 40.046964233443056], [-75.0856951039326, 40.04785186002135], [-75.08697553819498, 40.04856837334297], [-75.08763612729165, 40.04704383759833], [-75.08794833282026, 40.04634483545947], [-75.08831388614998, 40.045515125514], [-75.08897663424665, 40.044333503559685], [-75.0903533819722, 40.04298457247651], [-75.094176025479, 40.04502710432539], [-75.09453467758765, 40.04522327325332], [-75.09479268570398, 40.0453649583314], [-75.0951428672017, 40.04555226333374], [-75.09600049007513, 40.04600379173299], [-75.09697175151327, 40.04656599718221], [-75.09801858961916, 40.04709794044168], [-75.09880087535097, 40.04753158377558], [-75.09956065794458, 40.04797498853239], [-75.10039563010359, 40.04869298730429], [-75.10133641421142, 40.049540434137114], [-75.1018914465809, 40.05006629533136], [-75.10281166625275, 40.0508685864897], [-75.1030246267211, 40.051089122973224], [-75.10310487206245, 40.05119338851588], [-75.10075000741492, 40.052589800378406], [-75.10016462242423, 40.052947969102206], [-75.09983039549444, 40.05315383660878], [-75.09937540599458, 40.05330003122185], [-75.09911047209413, 40.05356349100261], [-75.09880255946189, 40.05371498814136], [-75.09846339383841, 40.05388885033198], [-75.09766560795609, 40.05436649656119], [-75.09748783614391, 40.05447997074385], [-75.09650501415967, 40.05517207626254], [-75.09575755844112, 40.0556306342029], [-75.09511934619522, 40.05593782266534], [-75.09468071935262, 40.056370745767495], [-75.09361503390471, 40.05741817620406], [-75.09274064284068, 40.05829937415294], [-75.0920750089637, 40.05896683336336], [-75.08976380729703, 40.06129389020495], [-75.08900285768611, 40.06205226329], [-75.08823967373392, 40.06281283793292], [-75.08746453554552, 40.06358530745863], [-75.08789701681395, 40.06383695621994], [-75.0887650890161, 40.06434205694387], [-75.08944617660568, 40.06473751202954], [-75.09037058875349, 40.06527619765871], [-75.08902882748413, 40.066599282792986], [-75.08723266257306, 40.06839116981807], [-75.08707644886283, 40.068565824165354], [-75.08531032224032, 40.068513075978196], [-75.08462537770777, 40.06836930728484], [-75.08432206063496, 40.06830338858394], [-75.08372661331803, 40.068174970048695], [-75.08204090213172, 40.06805242820077], [-75.08096567099172, 40.06797552436967], [-75.07890160880922, 40.06683635632901], [-75.07805155797986, 40.06636177054576], [-75.0778873699058, 40.066227749755065], [-75.07771866653502, 40.066036330276916], [-75.07767354595893, 40.06596702456253], [-75.0775074708497, 40.06568457988809], [-75.07736001106932, 40.0654320643241], [-75.07715589235868, 40.06504476333175], [-75.07599116443163, 40.06434346148916], [-75.0753759601058, 40.06397178792418], [-75.07354324395854, 40.062936481673376], [-75.07330491095185, 40.06281311335858], [-75.07294842940784, 40.06261524742156], [-75.07275111584283, 40.06252154435866], [-75.07243794149772, 40.06242514102399], [-75.07214134544577, 40.0623757177902], [-75.07128377583618, 40.062285371006226], [-75.07086082608126, 40.06222798789649], [-75.07053197167276, 40.06213715241198], [-75.07031102114136, 40.06205477404607], [-75.06988024443862, 40.061825341066864], [-75.06502668978634, 40.067345239044975], [-75.06405818719493, 40.06677025634781], [-75.0630408094246, 40.066144789190346], [-75.06255763313197, 40.06583861502309], [-75.06218147795423, 40.06560470005923], [-75.06133659676387, 40.065057789812315], [-75.05962484879859, 40.06397538184036], [-75.05769815107087, 40.062788811856926], [-75.05614632296499, 40.06183339815738], [-75.05418457187895, 40.06071898139321], [-75.05240827802209, 40.059740597259314], [-75.05202317645325, 40.05953669355135], [-75.05058270628449, 40.058770569622034], [-75.04856087951997, 40.05766348831064], [-75.04814635480116, 40.057439439991185], [-75.04780547251835, 40.05724869132331], [-75.04739752439824, 40.05703210686795], [-75.0470043191248, 40.056819119641574], [-75.0468569505688, 40.05673893712926], [-75.04667970088784, 40.05664514380146], [-75.04653734773393, 40.05656862179591], [-75.0473796338358, 40.05574498363881], [-75.04749817741373, 40.05564927592735], [-75.04774962504511, 40.05536430870876], [-75.04905018513644, 40.05407708512535], [-75.04964729232861, 40.05347835338288], [-75.04993761409428, 40.05319662649828], [-75.05015918593955, 40.052955041413384], [-75.05034323522091, 40.05268789358886], [-75.05042475255875, 40.05257628439179], [-75.05046568303189, 40.052508291736785], [-75.0505184779635, 40.052414280789066], [-75.05071463051047, 40.0519831306507], [-75.0508348505287, 40.05150787577755], [-75.05089050413272, 40.051103695807655], [-75.050905547692, 40.05075968333635], [-75.05090916889004, 40.050580507726], [-75.05105274198593, 40.049070751012366], [-75.05112820905771, 40.04831042708993], [-75.05114765733573, 40.048114481781674], [-75.05134894495073, 40.04754785826596], [-75.05168691105588, 40.0469585760105], [-75.05221162133299, 40.046387949574495], [-75.054288575661, 40.04444780416778], [-75.05460150362975, 40.04415792107146]]]}}, {"id": "8130", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.03517055641647, 40.046028330960695], [-75.03477748750193, 40.045962015600765], [-75.03440609108267, 40.04597224477433], [-75.03409158792017, 40.046002825622864], [-75.03380622954349, 40.04612913694608], [-75.03361920109269, 40.04627044347879], [-75.03346258149377, 40.04647583001222], [-75.03332686781721, 40.04677675296022], [-75.03324855624916, 40.0470853686681], [-75.03320445816153, 40.04736311338003], [-75.0331868430721, 40.04759713188297], [-75.03311879573305, 40.04785530063414], [-75.03301133821068, 40.04806818649151], [-75.03282898814976, 40.048298307630084], [-75.03275168774034, 40.048581603964], [-75.03275751269969, 40.04884785701076], [-75.03275991877743, 40.04899364306544], [-75.03273512646496, 40.04909855374293], [-75.03260442716415, 40.049376466372244], [-75.03250342901752, 40.04963385627425], [-75.03239963980208, 40.049960878349516], [-75.03215450129062, 40.050167550009796], [-75.03202415569447, 40.05027830250542], [-75.03182266798144, 40.050368575575696], [-75.03155807297706, 40.05038765937087], [-75.031386988123, 40.050362728796465], [-75.03116007921557, 40.05032966570556], [-75.0307793707139, 40.05027418916789], [-75.03009026470946, 40.05018817715169], [-75.02964648888532, 40.05015232518487], [-75.02921817104463, 40.05014218156038], [-75.02896181092363, 40.050161453510526], [-75.02865653966767, 40.05016689560829], [-75.02840221191596, 40.05013552473676], [-75.02824774092592, 40.050081177066225], [-75.02811254123834, 40.04995758832029], [-75.02802131823515, 40.04976534485357], [-75.02790512977876, 40.049578844136946], [-75.02772925615429, 40.04944161774527], [-75.02750218118987, 40.049347532053694], [-75.02701684656185, 40.04932018735995], [-75.02632430049782, 40.049447076724384], [-75.02596530973688, 40.048541809939096], [-75.02611039141759, 40.0481733387064], [-75.03155191862186, 40.045684560606354], [-75.03016869967418, 40.0439114484632], [-75.03016869323982, 40.04391076080642], [-75.03016410524347, 40.043904924168594], [-75.0298614141997, 40.04349525557283], [-75.02980064871952, 40.04341301270909], [-75.02979997371571, 40.04341209927368], [-75.02976139230165, 40.04336168887477], [-75.0294660126119, 40.04297575213251], [-75.02941706930282, 40.04291180292833], [-75.0291616911158, 40.04257932260296], [-75.02894353306291, 40.042295299968515], [-75.02894201793717, 40.042293235801736], [-75.02894292119566, 40.042292900381796], [-75.02865759907105, 40.04190596333264], [-75.02842276364342, 40.041586206901506], [-75.02832845948224, 40.04145779947094], [-75.02825800979002, 40.04136678242306], [-75.03084342658859, 40.040418956773735], [-75.03133840827954, 40.04023903391241], [-75.03134158218617, 40.0402378808999], [-75.03170851182412, 40.04010744165081], [-75.03261303209376, 40.03977282657692], [-75.03342753323346, 40.03947455773396], [-75.03442434112202, 40.03912170984904], [-75.03627792045715, 40.03844215824022], [-75.03868784381856, 40.03755204667702], [-75.03885390792045, 40.03749116486106], [-75.04075351258349, 40.03679473373337], [-75.04168391253879, 40.036344090785576], [-75.04243452139467, 40.035962491064716], [-75.0432001642619, 40.035545489965806], [-75.04405452994727, 40.035097840094735], [-75.04467210428737, 40.03477220262877], [-75.04492768604423, 40.03464254968361], [-75.04693303678364, 40.03576355445415], [-75.04855944706433, 40.03666656703972], [-75.0474065050084, 40.03789343353875], [-75.04580687006829, 40.0395804105673], [-75.04742434954356, 40.040498315060965], [-75.04902811502865, 40.04141397292131], [-75.05222822387734, 40.04327245835874], [-75.054288575661, 40.04444780416778], [-75.05221162133299, 40.046387949574495], [-75.05220136259966, 40.04639470707811], [-75.05216045389054, 40.04642165805307], [-75.05166716612983, 40.0469581122058], [-75.05132919985556, 40.047547394403196], [-75.05112791207715, 40.04811401788436], [-75.05110862075935, 40.04830837382625], [-75.05112820905771, 40.04831042708993], [-75.05105274198593, 40.049070751012366], [-75.05090916889004, 40.050580507726], [-75.05090902067869, 40.05058782885867], [-75.050905547692, 40.05075968333635], [-75.05089050413272, 40.051103695807655], [-75.0508348505287, 40.05150787577755], [-75.05071463051047, 40.0519831306507], [-75.0505184779635, 40.052414280789066], [-75.05046568303189, 40.052508291736785], [-75.05042475255875, 40.05257628439179], [-75.05034323522091, 40.05268789358886], [-75.05015918593955, 40.052955041413384], [-75.04993761409428, 40.05319662649828], [-75.04964729232861, 40.05347835338288], [-75.04905018513644, 40.05407708512535], [-75.04774962504511, 40.05536430870876], [-75.04749817741373, 40.05564927592735], [-75.0473796338358, 40.05574498363881], [-75.04653734773393, 40.05656862179591], [-75.04645228389022, 40.05665642401393], [-75.04479205913208, 40.058370038156426], [-75.04452138806724, 40.05870458649961], [-75.04438569065395, 40.05890397388182], [-75.04432195723118, 40.05899761927773], [-75.04423684741798, 40.05912267367909], [-75.04413865112885, 40.0593298577121], [-75.042735081359, 40.062373930726196], [-75.04224674786106, 40.06353209298826], [-75.04117363314958, 40.06591649432094], [-75.04104427139312, 40.06586932828391], [-75.04095034198383, 40.06583508055774], [-75.04049503847756, 40.06567227941196], [-75.04019449967235, 40.065557479676315], [-75.03999409587853, 40.065413359947996], [-75.0397604831818, 40.065274793634096], [-75.03943991390388, 40.06504230084497], [-75.03918436982643, 40.06483351787988], [-75.03892109564133, 40.06461188044359], [-75.03869496649082, 40.06449249607631], [-75.03682078866517, 40.062937510440264], [-75.0365930000981, 40.06265599960139], [-75.03638120175484, 40.06193196037857], [-75.03622744441218, 40.0614467880024], [-75.03594479401579, 40.06109162811677], [-75.03586151897895, 40.06090591490791], [-75.0358693703198, 40.060709682823955], [-75.03593012745294, 40.06059861454617], [-75.03595833618175, 40.0605470460292], [-75.03602562691434, 40.060307864636904], [-75.0361185037693, 40.05963526721701], [-75.03616639645348, 40.05926257016379], [-75.03622696641376, 40.058985213663846], [-75.0362852568641, 40.058764828154175], [-75.03634987732259, 40.05838619085585], [-75.03635823343399, 40.0581772973824], [-75.03635264885071, 40.05793907699135], [-75.03634298892773, 40.05785761271243], [-75.03630637671064, 40.05761849905944], [-75.03634387671092, 40.05729941323421], [-75.03644386007977, 40.05706734004885], [-75.03663001924059, 40.05674226094827], [-75.03701576649881, 40.05616845250137], [-75.03722384815177, 40.0559135874657], [-75.03749186912516, 40.055603111547406], [-75.0376612884122, 40.055283972820995], [-75.0378549153302, 40.054978075943396], [-75.03840436577126, 40.05422755171946], [-75.03856998248837, 40.05400336223474], [-75.0387530873489, 40.0537542413913], [-75.03888701792384, 40.05349762093939], [-75.03900244889742, 40.053291255130254], [-75.03905072085828, 40.0531149862997], [-75.03905057765729, 40.052912228409426], [-75.03909592017588, 40.05260282952274], [-75.03912781387623, 40.05254164477889], [-75.03926557731987, 40.05227735905819], [-75.03949807952917, 40.051823479264854], [-75.0396385783606, 40.051402277498596], [-75.03969114277413, 40.051118395390674], [-75.03977145261283, 40.05075913536208], [-75.03982553438144, 40.05043727096335], [-75.03985187008364, 40.050190786255165], [-75.03981115234363, 40.049765308997756], [-75.03986850212037, 40.04915523222436], [-75.03993652512311, 40.04889705859395], [-75.0399855454556, 40.04870179674293], [-75.03957255389473, 40.04851464333907], [-75.03923116477951, 40.04839253909587], [-75.03895389871607, 40.04831629959168], [-75.03848123080721, 40.04817842149729], [-75.03823095507052, 40.04804579334495], [-75.03789235293517, 40.047854053551994], [-75.03767654382669, 40.04768421979736], [-75.03740586476825, 40.04744339356805], [-75.03719334721026, 40.047191268710314], [-75.03692964175026, 40.04698228604219], [-75.03658433201305, 40.046752367459256], [-75.03624003619049, 40.046497126936124], [-75.035883962518, 40.0463303129377], [-75.03554487024263, 40.04615122667316], [-75.03517055641647, 40.046028330960695]]]}}, {"id": "8140", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.9972646789298, 40.03157658769071], [-74.99840929180525, 40.030580559169564], [-74.99975901814408, 40.02960479363618], [-75.0015932214651, 40.028499635674116], [-75.00316023945895, 40.027502189715776], [-75.00633490899871, 40.02551540086163], [-75.00969202947779, 40.02346289089041], [-75.01210156445315, 40.021652540993706], [-75.01439595160497, 40.02017284569141], [-75.01569583843182, 40.01949405820048], [-75.01660844953228, 40.01907485929474], [-75.0178569563277, 40.01855237721734], [-75.01973985658044, 40.01788386821405], [-75.02145303888575, 40.017491993859835], [-75.02377146395851, 40.017068709017565], [-75.02658115512718, 40.01665813075844], [-75.0293708496235, 40.01628945858043], [-75.0331832422015, 40.021032183914976], [-75.03380917379319, 40.02190684150733], [-75.03443147882443, 40.022726690314514], [-75.03447210556332, 40.0228085548892], [-75.03448566390134, 40.022883532331115], [-75.03498362096369, 40.0234979270977], [-75.03506828680622, 40.023557653954924], [-75.03534610372795, 40.02395175515207], [-75.03581302378812, 40.0245736685611], [-75.03599028702791, 40.02482212471624], [-75.03612050834508, 40.024931492357474], [-75.03645284769156, 40.02536085689675], [-75.03668837866726, 40.025651600117925], [-75.03714187768846, 40.026165608298875], [-75.0375896136875, 40.02668081195321], [-75.03803847890595, 40.027189747406304], [-75.03845771205219, 40.02767336993102], [-75.03890723481716, 40.02818667827646], [-75.03938800441148, 40.028735407318045], [-75.03984251941257, 40.02924565417187], [-75.0402887380438, 40.029766993479576], [-75.04074283011289, 40.03027777969118], [-75.04118909288377, 40.03078748722589], [-75.0416361999487, 40.031300465562694], [-75.0420889110238, 40.03181769643146], [-75.0425383747686, 40.03232987949128], [-75.04298610898273, 40.03284195137486], [-75.04343476160835, 40.03335799679555], [-75.04375244475754, 40.033720142760444], [-75.04401611500334, 40.0340207114769], [-75.04467210428737, 40.03477220262877], [-75.04492768604423, 40.03464254968361], [-75.04693303678364, 40.03576355445415], [-75.04855944706433, 40.03666656703972], [-75.0474065050084, 40.03789343353875], [-75.04580687006829, 40.0395804105673], [-75.04742434954356, 40.040498315060965], [-75.04902811502865, 40.04141397292131], [-75.05222822387734, 40.04327245835874], [-75.054288575661, 40.04444780416778], [-75.05221162133299, 40.046387949574495], [-75.05220136259966, 40.04639470707811], [-75.05216045389054, 40.04642165805307], [-75.05166716612983, 40.0469581122058], [-75.05132919985556, 40.047547394403196], [-75.05112791207715, 40.04811401788436], [-75.05110862075935, 40.04830837382625], [-75.05112820905771, 40.04831042708993], [-75.05105274198593, 40.049070751012366], [-75.05090916889004, 40.050580507726], [-75.05090902067869, 40.05058782885867], [-75.050905547692, 40.05075968333635], [-75.05089050413272, 40.051103695807655], [-75.0508348505287, 40.05150787577755], [-75.05071463051047, 40.0519831306507], [-75.0505184779635, 40.052414280789066], [-75.05046568303189, 40.052508291736785], [-75.05042475255875, 40.05257628439179], [-75.05034323522091, 40.05268789358886], [-75.05015918593955, 40.052955041413384], [-75.04993761409428, 40.05319662649828], [-75.04964729232861, 40.05347835338288], [-75.04905018513644, 40.05407708512535], [-75.04774962504511, 40.05536430870876], [-75.04749817741373, 40.05564927592735], [-75.0473796338358, 40.05574498363881], [-75.04653734773393, 40.05656862179591], [-75.04645228389022, 40.05665642401393], [-75.04479205913208, 40.058370038156426], [-75.04452138806724, 40.05870458649961], [-75.04438569065395, 40.05890397388182], [-75.04432195723118, 40.05899761927773], [-75.04423684741798, 40.05912267367909], [-75.04413865112885, 40.0593298577121], [-75.042735081359, 40.062373930726196], [-75.04224674786106, 40.06353209298826], [-75.04117363314958, 40.06591649432094], [-75.04104856821186, 40.06619437066853], [-75.04027165133148, 40.06792050879335], [-75.03990055038933, 40.0687164982515], [-75.03952749808136, 40.0693585665246], [-75.03937274031372, 40.0695553420102], [-75.03895106634981, 40.07005670880712], [-75.03797590147553, 40.071078701239365], [-75.03688057928926, 40.072209186628385], [-75.0348403042355, 40.07430802573013], [-75.03394468660325, 40.07522585640025], [-75.03345632981974, 40.075733552485595], [-75.03265156130533, 40.076563913553244], [-75.03024499085504, 40.07905911048138], [-75.02936100367475, 40.07996554086386], [-75.02860591922072, 40.08077109526856], [-75.02844973853612, 40.08067939112584], [-75.02537845533197, 40.07894441699348], [-75.02371460278547, 40.07799573890452], [-75.02174937544991, 40.07695644903743], [-75.01714477252432, 40.074343800429524], [-75.0170511604494, 40.07429139164119], [-75.01683647482798, 40.074171198321956], [-75.01506505696598, 40.073179433645436], [-75.014088715379, 40.07264365237408], [-75.01312768506725, 40.07207268034328], [-75.01133066624226, 40.07118005144515], [-75.00727005000492, 40.06916284283319], [-75.00290365177997, 40.06668327635158], [-75.00020320019168, 40.06515197637998], [-74.99902373253308, 40.06448114410677], [-74.9984208088978, 40.06413807764871], [-74.99530548636974, 40.06236533704058], [-74.99451468543627, 40.06191530970193], [-74.99427698081958, 40.061782881163985], [-74.99395224082419, 40.061629044655696], [-74.99356775227025, 40.06149391799965], [-74.99321774729918, 40.061397389171425], [-74.99281403097854, 40.06133230332667], [-74.99239711762029, 40.06126941868098], [-74.99194572488256, 40.06116793486433], [-74.99170939033432, 40.06109679086137], [-74.99149351660745, 40.06100599428357], [-74.99130342505201, 40.06092588935296], [-74.99110105709491, 40.06082534327962], [-74.99085541386388, 40.06066080733073], [-74.99064230555005, 40.06050208736882], [-74.99051053375126, 40.060438488973645], [-74.9904325723008, 40.060397207455054], [-74.989286928798, 40.05937652147773], [-74.9879801607809, 40.05821631396604], [-74.98590682466101, 40.056378300947806], [-74.98529316777564, 40.05582904683217], [-74.98500302675573, 40.05557645381922], [-74.98475433761872, 40.055358582041585], [-74.98451795866875, 40.05514942559683], [-74.98439233134985, 40.055017035967204], [-74.9842573866046, 40.05490393180876], [-74.98415155670932, 40.05482814694793], [-74.98409878171032, 40.05478373231092], [-74.98401688146697, 40.054708509021076], [-74.98396572527261, 40.05462750125775], [-74.98379632094823, 40.05420356773441], [-74.98273352293714, 40.05301574562342], [-74.98229743001636, 40.05252025409304], [-74.98182371053878, 40.052047477411186], [-74.98158920688721, 40.051824814724505], [-74.98147989780368, 40.05171902695606], [-74.98093132226789, 40.05121469976086], [-74.98022845607794, 40.05058274545212], [-74.9766399576386, 40.04740753190659], [-74.978556593772, 40.046776920971546], [-74.97989203561042, 40.046340572217694], [-74.98059132219204, 40.04594380560141], [-74.98174496524592, 40.04506481578623], [-74.98267772211753, 40.044069039558025], [-74.98354833311693, 40.04303263159738], [-74.98494277204559, 40.04176918605419], [-74.98628044404798, 40.04094230870215], [-74.98770726511312, 40.039958475210966], [-74.98921273178432, 40.038655978629805], [-74.99046771078892, 40.03757014522302], [-74.99138517154653, 40.03677630839157], [-74.9940705153599, 40.034416675946346], [-74.99592322615307, 40.0327693789857], [-74.9972646789298, 40.03157658769071]], [[-75.02825800975391, 40.04136678332327], [-75.02840484907568, 40.04156181392152], [-75.02832845948224, 40.04145779947094], [-75.0282580103248, 40.041366783113986], [-75.02825800975391, 40.04136678332327]], [[-75.02967734942368, 40.043251881970015], [-75.02967748420446, 40.04325205688601], [-75.02967729438747, 40.04325180887595], [-75.02967734942368, 40.043251881970015]], [[-75.03074357479696, 40.04605429842213], [-75.03012985400888, 40.04633500936937], [-75.03085259565582, 40.04600443292508], [-75.03074357479696, 40.04605429842213]], [[-75.02714770611784, 40.04769893835468], [-75.02639597519511, 40.048042732551565], [-75.02611039141759, 40.0481733387064], [-75.0275913510811, 40.047496039407974], [-75.02714770611784, 40.04769893835468]], [[-75.02604481931499, 40.048339874814666], [-75.02596530973688, 40.048541809939096], [-75.02611039141759, 40.0481733387064], [-75.02604481931499, 40.048339874814666]], [[-75.02611572240293, 40.04892110857427], [-75.02612481482035, 40.04894403693681], [-75.02596530973688, 40.048541809939096], [-75.02611572240293, 40.04892110857427]], [[-75.0432001630908, 40.0355454899382], [-75.04243452139467, 40.035962491064716], [-75.0432001642619, 40.035545489965806], [-75.04405452994727, 40.035097840094735], [-75.0432001630908, 40.0355454899382]], [[-75.04075351141236, 40.03679473370573], [-75.04036436554968, 40.03693740614655], [-75.04075351258349, 40.03679473373337], [-75.04168391253879, 40.036344090785576], [-75.04075351141236, 40.03679473370573]], [[-75.03683287760813, 40.03823718981451], [-75.03627792045715, 40.03844215824022], [-75.03868784381856, 40.03755204667702], [-75.03683287760813, 40.03823718981451]], [[-75.0369064793127, 40.06302466339694], [-75.03712804351242, 40.06325799335081], [-75.03735112456283, 40.06345334240326], [-75.03750310075594, 40.06357098082033], [-75.03765381085454, 40.06372026648389], [-75.03788538907857, 40.06390947971823], [-75.03814966941594, 40.06410579957072], [-75.03838201066941, 40.06427602117927], [-75.03869496649082, 40.06449249607631], [-75.0368207935583, 40.06293751450016], [-75.0369064793127, 40.06302466339694]], [[-75.03638120175484, 40.06193196037857], [-75.03644991043785, 40.06227573126081], [-75.03654548910033, 40.06256627810336], [-75.03664499201747, 40.062758710126666], [-75.03682078447434, 40.06293750526108], [-75.0365930000981, 40.06265599960139], [-75.03638120175484, 40.06193196037857]], [[-75.03607775442912, 40.061272177770654], [-75.03622744441218, 40.0614467880024], [-75.03594479401579, 40.06109162811677], [-75.03607775442912, 40.061272177770654]], [[-75.03595833618175, 40.0605470460292], [-75.0358693703198, 40.060709682823955], [-75.03593012745294, 40.06059861454617], [-75.03595833618175, 40.0605470460292]]]}}, {"id": "8160", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05758362004983, 40.07510625263813], [-75.05782233982951, 40.074917383728305], [-75.0580600180249, 40.07472768441965], [-75.05829722217847, 40.07453760141421], [-75.05853450793607, 40.07434758563563], [-75.05877243914605, 40.074158088195375], [-75.05901157500546, 40.07396955919014], [-75.05925247709082, 40.0737824478666], [-75.05949570921547, 40.07359720622223], [-75.05974187453398, 40.07341429978524], [-75.05999149552423, 40.07323403991354], [-75.06024425155283, 40.07305623076177], [-75.06049970478726, 40.07288061517643], [-75.06075741494566, 40.07270693865332], [-75.06101694643431, 40.07253494680178], [-75.0612778636246, 40.07236438613518], [-75.06154075136922, 40.07219565146795], [-75.06180618592673, 40.07202914731945], [-75.06207392243033, 40.0718647490067], [-75.06234372144463, 40.07170234278835], [-75.06261533565403, 40.07154180663149], [-75.06288851078965, 40.07138298680624], [-75.06316277192772, 40.071225171185866], [-75.0634381718676, 40.0710683889291], [-75.06371496187346, 40.07091301803206], [-75.06399338735496, 40.07075943635126], [-75.06427369713427, 40.070608024523715], [-75.06455614032294, 40.07045915598219], [-75.06484130035514, 40.07031355796916], [-75.06513063452837, 40.070172754836676], [-75.06542327369665, 40.070035772044], [-75.0657180402657, 40.06990130888495], [-75.0660137588297, 40.06976806832083], [-75.0663092707974, 40.06963477263976], [-75.06660492565369, 40.06950177780655], [-75.06690135658151, 40.06936976897946], [-75.06719852233356, 40.06923872176233], [-75.06749638627788, 40.06910861366898], [-75.0678274453076, 40.06896467197677], [-75.06735652846181, 40.06872835474917], [-75.0658467809666, 40.067832099023924], [-75.06502668978634, 40.067345239044975], [-75.06988024443862, 40.061825341066864], [-75.07031102114136, 40.06205477404607], [-75.07053197167276, 40.06213715241198], [-75.07086082608126, 40.06222798789649], [-75.07128377583618, 40.062285371006226], [-75.07214134544577, 40.0623757177902], [-75.07243794149772, 40.06242514102399], [-75.07275111584283, 40.06252154435866], [-75.07294842940784, 40.06261524742156], [-75.07330491095185, 40.06281311335858], [-75.07354324395854, 40.062936481673376], [-75.0753759601058, 40.06397178792418], [-75.07599116443163, 40.06434346148916], [-75.07715589235868, 40.06504476333175], [-75.07736001106932, 40.0654320643241], [-75.0775074708497, 40.06568457988809], [-75.07767354595893, 40.06596702456253], [-75.07771866653502, 40.066036330276916], [-75.0778873699058, 40.066227749755065], [-75.07805155797986, 40.06636177054576], [-75.07890160880922, 40.06683635632901], [-75.08096567099172, 40.06797552436967], [-75.08204090213172, 40.06805242820077], [-75.08372661331803, 40.068174970048695], [-75.08432206063496, 40.06830338858394], [-75.08462537770777, 40.06836930728484], [-75.08531032224032, 40.068513075978196], [-75.08707644886283, 40.068565824165354], [-75.08723266257306, 40.06839116981807], [-75.08902882748413, 40.066599282792986], [-75.09037058875349, 40.06527619765871], [-75.09195860699734, 40.066200121654816], [-75.09324449349958, 40.0669482279799], [-75.0967382741719, 40.06898069222738], [-75.09404260233903, 40.07163329133227], [-75.09384252084408, 40.07183059824139], [-75.08996067275, 40.075661165003694], [-75.08951995056393, 40.076096031543], [-75.0891907542941, 40.07640878097414], [-75.08793830991601, 40.077598613149505], [-75.08689904947299, 40.0786463148236], [-75.0853654932011, 40.08010823724802], [-75.08390468787542, 40.08149006648177], [-75.08245787770203, 40.08288512949956], [-75.08168760417915, 40.083621315787084], [-75.0788450068151, 40.082049292987676], [-75.0778688389965, 40.08150231853251], [-75.07712295578538, 40.081081159091646], [-75.07625945129958, 40.080606739792614], [-75.07516847105627, 40.07999208020388], [-75.07463570858634, 40.079691913047505], [-75.07370523817029, 40.07918335936801], [-75.07301452470581, 40.07878225782444], [-75.07100864922093, 40.07768329396865], [-75.07038058984115, 40.07829099731442], [-75.06983091190762, 40.07882368559944], [-75.06921655202608, 40.07944205456631], [-75.06846470867045, 40.08016550253619], [-75.06827619919731, 40.080346677864654], [-75.06792498559446, 40.08060118151999], [-75.06708999434463, 40.081174476560655], [-75.06696943036414, 40.08125861072924], [-75.0654748991703, 40.082301532678365], [-75.06242021822165, 40.08439328542534], [-75.06011501160998, 40.08596985993657], [-75.06003442287486, 40.0860251054256], [-75.05997263007093, 40.08606746524045], [-75.05909916467368, 40.086670750169496], [-75.05872045663507, 40.08708410146879], [-75.05828040137938, 40.087783892001646], [-75.05769466444262, 40.088691375176175], [-75.0570680545122, 40.08969819867304], [-75.05645890895181, 40.09023614591196], [-75.0556873901617, 40.09075402583353], [-75.05424117419759, 40.09165232479042], [-75.05390748141029, 40.09187479828705], [-75.05359684465985, 40.092145793219075], [-75.05301377767144, 40.09266948399353], [-75.0529389112885, 40.092736131135304], [-75.052641232185, 40.0930011284728], [-75.0521008379093, 40.093511371602695], [-75.05148676871707, 40.0940921800102], [-75.05075288836791, 40.09478108446115], [-75.04842883493836, 40.09707683670527], [-75.04711687101697, 40.0983783993297], [-75.0462124467127, 40.09879441808162], [-75.04553188548518, 40.09911447843645], [-75.04359687718139, 40.1000244552356], [-75.04321102489683, 40.10023003104892], [-75.04261449745741, 40.10050531238359], [-75.03985773860795, 40.10183646397926], [-75.0385638336794, 40.10246180447796], [-75.03697023344401, 40.10318490149781], [-75.03497397154703, 40.10416480472308], [-75.03439861780558, 40.10442959994114], [-75.03299801495899, 40.10511107854101], [-75.03389807759999, 40.10569014574707], [-75.03476073863058, 40.10621739221594], [-75.03522208142601, 40.106497910264906], [-75.03536082349481, 40.10655823433889], [-75.0356459599636, 40.10667335538193], [-75.0360649295839, 40.10678593215079], [-75.0364868663854, 40.106824415656945], [-75.03715602640324, 40.10683321275579], [-75.03778419148301, 40.10687422181052], [-75.03821596534208, 40.10695216263746], [-75.03884342326626, 40.10711311473855], [-75.03946005929, 40.10736383011532], [-75.0398364866094, 40.107567401341505], [-75.04002147516533, 40.10766744216544], [-75.04124577923858, 40.108391784993984], [-75.04497148690287, 40.110579868480315], [-75.04780526845325, 40.1122439541413], [-75.04855727894453, 40.11272003648118], [-75.03904358203224, 40.11935771332061], [-75.03833768667893, 40.119871126479985], [-75.03790870422559, 40.12016854479975], [-75.03165368202416, 40.12450474988725], [-75.02578697968089, 40.12857094226713], [-75.02535538098483, 40.12889038492844], [-75.02489288491259, 40.12921773685513], [-75.02057228005175, 40.13227559885376], [-75.01795079475555, 40.1348493174986], [-75.01496568865494, 40.13792673459656], [-75.01456067078037, 40.13768065893307], [-75.0138684262985, 40.13725936442157], [-75.01223394265399, 40.136258288870415], [-75.01145933375201, 40.13578384504616], [-75.01062219911778, 40.13527108950435], [-75.01042775736174, 40.13515198930369], [-75.00946320264039, 40.13457113553308], [-75.00909381736882, 40.134356185708235], [-75.00833596776289, 40.1339151761605], [-75.00690178558112, 40.13308056182538], [-75.00595861235607, 40.13253191330906], [-75.00327001426656, 40.13096784691968], [-75.00095172285465, 40.129611280464566], [-74.99974011719799, 40.12890703669493], [-74.9985346905457, 40.12819793818561], [-74.9978850588362, 40.12781794116706], [-74.99780190241209, 40.12790374778628], [-74.99757220204631, 40.12811959877898], [-74.99744965541919, 40.12825118330879], [-74.99419528808693, 40.13151014669864], [-74.99384688724413, 40.13185471136569], [-74.99367317732383, 40.13173436666953], [-74.99350785278044, 40.13161576347745], [-74.99343106095644, 40.13155152365505], [-74.99335533436061, 40.13146118845349], [-74.99321078471104, 40.131319865993845], [-74.99310093956477, 40.131185178047396], [-74.99299676270985, 40.131050626760704], [-74.99292156692285, 40.13094724398734], [-74.99284088018882, 40.130816157055825], [-74.99278026356792, 40.130726185458435], [-74.99275110516915, 40.13060649049591], [-74.99274390324655, 40.13050473851017], [-74.99277175782396, 40.13042414137247], [-74.99281359908359, 40.1303017972717], [-74.9929023373726, 40.13021177663748], [-74.9930469675919, 40.13018839744057], [-74.99310816805531, 40.13005490803291], [-74.993100548191, 40.1298936480917], [-74.9931600387094, 40.129778982289196], [-74.99327813756538, 40.12973392528314], [-74.99338897696153, 40.129704655558946], [-74.99350270793782, 40.12965078758715], [-74.99350258578647, 40.12951437573597], [-74.99344940499783, 40.12942748500944], [-74.99341711256507, 40.12917566099978], [-74.99342224211132, 40.12900309829395], [-74.99350627829726, 40.1287729279413], [-74.99366020157917, 40.12875340025432], [-74.99369171487793, 40.1286757929296], [-74.9937830750758, 40.12861413053864], [-74.99380348967514, 40.1284840181938], [-74.99366012652379, 40.12838335521616], [-74.99368703397506, 40.128209861928816], [-74.99366826208929, 40.12811363735725], [-74.99375206224478, 40.12791248437565], [-74.99389381834347, 40.127750450369135], [-74.99400459382454, 40.127676194932434], [-74.9941000243865, 40.12760737452182], [-74.99423670784721, 40.12750036439918], [-74.99440737836564, 40.12727807307649], [-74.99447276364499, 40.12711130801509], [-74.99452646102851, 40.12695296893941], [-74.99454409430443, 40.12668202702574], [-74.9944807001155, 40.12652088068956], [-74.99442639881008, 40.126415097107525], [-74.99435025872926, 40.12621882018101], [-74.99427589196361, 40.126141577996655], [-74.99415325042847, 40.12608930072979], [-74.99392432087171, 40.12604753438069], [-74.99348109976557, 40.12599918257441], [-74.99314711869496, 40.12593748455393], [-74.99287616866249, 40.125906320763235], [-74.9926359106685, 40.12591071823606], [-74.9923637235236, 40.12593321422704], [-74.99204396969058, 40.125986496201385], [-74.99170214125444, 40.12607117157965], [-74.99145379683662, 40.12613486977064], [-74.99106628732451, 40.12620393596334], [-74.99078200041933, 40.12626822208866], [-74.9906201734298, 40.12629626404043], [-74.99039532413906, 40.12625086354251], [-74.99029392602662, 40.12623039113767], [-74.99008122672589, 40.12623109067799], [-74.98974081450858, 40.12623452928292], [-74.9895593341608, 40.12623452823697], [-74.98933784425813, 40.126195834500834], [-74.98915583444865, 40.12616244294436], [-74.98905875193762, 40.126109321214216], [-74.98904187525785, 40.12601313939742], [-74.98901219261161, 40.125906494258736], [-74.98898410602332, 40.125760704715326], [-74.98906950887601, 40.125601677456196], [-74.98901350705765, 40.12547988794097], [-74.9889384974872, 40.125418589031064], [-74.98879745063422, 40.12530781757151], [-74.98870376831839, 40.12512490064517], [-74.98850020774394, 40.12469264952626], [-74.98848268484002, 40.12456597722211], [-74.98838980683794, 40.12427061582366], [-74.98836165835336, 40.12417271247097], [-74.98824027051452, 40.12404354766518], [-74.98805750308202, 40.1239593439921], [-74.98783896771224, 40.12394103529547], [-74.98770654101158, 40.123897221980116], [-74.98754265877153, 40.123790255182094], [-74.98738521497013, 40.12366457634058], [-74.98731469498354, 40.123585971982386], [-74.9871948402606, 40.1235119852043], [-74.98704500171455, 40.123477910475984], [-74.98684418330842, 40.12332652032373], [-74.98666945185785, 40.12316124321139], [-74.98651902950084, 40.12304879274083], [-74.98642454740087, 40.12304797297941], [-74.98624330656364, 40.123135040242815], [-74.98603639097097, 40.12324906180734], [-74.98591959548023, 40.12333187281942], [-74.98567431656518, 40.12348270102307], [-74.9855275955225, 40.12360397328139], [-74.98513276405075, 40.12382956806535], [-74.98499843823157, 40.123901798125566], [-74.98486488113883, 40.12393196412], [-74.98469840033007, 40.12393521553624], [-74.98455245852941, 40.12389833072942], [-74.98445461633227, 40.1238408345315], [-74.98438616735899, 40.123757923261785], [-74.98435790537371, 40.12366291838033], [-74.98430592358461, 40.12359346490056], [-74.98421274002482, 40.12356074895703], [-74.98407853783876, 40.12356042451801], [-74.98397502306135, 40.123595663268794], [-74.9836767594915, 40.123608807072536], [-74.98354349950957, 40.123631721506506], [-74.98343809993273, 40.123620478076916], [-74.98313696708402, 40.12344925398773], [-74.98290564151625, 40.12332759496191], [-74.98281907207792, 40.12327182017356], [-74.98268134745676, 40.12314951147065], [-74.98261095951418, 40.123021566745926], [-74.98258500724079, 40.12291646013414], [-74.98259313937157, 40.12276355858768], [-74.98273754554711, 40.1225370250372], [-74.98275626640915, 40.12244895670757], [-74.98272240401374, 40.12235236496688], [-74.98263348621425, 40.122215268243], [-74.98247616214583, 40.12192487866225], [-74.98229183649046, 40.12190230320981], [-74.98219181957151, 40.12180557160739], [-74.98225143867948, 40.12168801186797], [-74.98237828163757, 40.121521280553715], [-74.98238815087403, 40.12141848488436], [-74.98241194768732, 40.12129861222322], [-74.98245450499472, 40.12122852887616], [-74.98260003717536, 40.12118269249207], [-74.98276958654986, 40.1211504948091], [-74.9829306993569, 40.121093421818045], [-74.98300223393417, 40.12100807497506], [-74.98306751447676, 40.120890650179], [-74.983080804259, 40.12079664466655], [-74.98307769441928, 40.12064129742954], [-74.98303328175004, 40.12045593308441], [-74.98298283921916, 40.12034878383909], [-74.98292129453237, 40.120282001848466], [-74.98278764029821, 40.120222189804174], [-74.98269367366333, 40.120139390472424], [-74.98261806292406, 40.120046873290725], [-74.98251456218918, 40.11998923817729], [-74.98237093233877, 40.1199422464889], [-74.98216409935375, 40.11991550221207], [-74.9819809850239, 40.119909643010125], [-74.98183315979003, 40.11991914556726], [-74.9816972476433, 40.11996085947256], [-74.98158700540135, 40.12002205591612], [-74.98150715492436, 40.12007963179768], [-74.98135807846693, 40.120142795423035], [-74.98120375893839, 40.12017245535031], [-74.98105221429736, 40.12018041574893], [-74.98086939545769, 40.12016730742784], [-74.9807250555385, 40.12013771056408], [-74.98041188790387, 40.120076475793724], [-74.98029098448727, 40.1200053594499], [-74.98010425541783, 40.11985017926239], [-74.97996529974716, 40.11973470075871], [-74.98147515610661, 40.1186769133751], [-74.9832953100798, 40.11725366951866], [-74.98376690795077, 40.116945591479535], [-74.98497655197892, 40.116048088569165], [-74.98777727231318, 40.114128017574764], [-74.98962186970763, 40.11284772728174], [-74.99072087794879, 40.112101463231575], [-74.99549876139298, 40.10879904559209], [-74.99667938760946, 40.10800050653488], [-74.9968236875527, 40.10790136357909], [-74.99668944228584, 40.107775838781585], [-74.99639582594651, 40.1075218009091], [-74.99470828060764, 40.10612149353524], [-74.9944361008318, 40.10585213685131], [-74.99217821394565, 40.103963569454834], [-74.99003518154542, 40.10211898869551], [-74.98891948652006, 40.101196604672424], [-74.98807317181068, 40.10045024082944], [-74.98667529438421, 40.09927999004267], [-74.98686286259387, 40.09914759612365], [-74.98728400129649, 40.09885130072101], [-74.9875405116155, 40.09865870896836], [-74.98781255018112, 40.098403433270256], [-74.98801555830231, 40.098198226784405], [-74.98825650823251, 40.09796565247674], [-74.98845261605591, 40.09780067963804], [-74.99126578796898, 40.095779203568775], [-74.99468698631495, 40.0985157489326], [-74.99546405689867, 40.09916734037778], [-74.99657424689374, 40.100140078323584], [-74.99723871681812, 40.100751491956906], [-74.99816680486222, 40.10160707675546], [-74.99838625313424, 40.10185089076054], [-74.99873340533885, 40.10231021991832], [-74.99901105573085, 40.10257798261559], [-74.99980595308102, 40.10323798393834], [-75.001340227351, 40.10447338267896], [-75.00136789022717, 40.10456204607671], [-75.00149790449852, 40.1046791321352], [-75.00209020651084, 40.104269754465854], [-75.00308446345512, 40.103582544083494], [-75.0049069951211, 40.10232227359235], [-75.00609069595153, 40.10151430747137], [-75.00835671186192, 40.09996020510662], [-75.00954611943996, 40.09912788213696], [-75.01023965777635, 40.0986274887173], [-75.0119460309999, 40.09749968924053], [-75.01306376029899, 40.096647549345235], [-75.01343102395374, 40.096351954570224], [-75.013734888549, 40.09608863203972], [-75.01503017200935, 40.094813029183335], [-75.0152249575392, 40.09462706024111], [-75.01671960534827, 40.093058557376125], [-75.01859914987443, 40.09110979481837], [-75.02059729180073, 40.0890453629084], [-75.02077321098622, 40.088869692247826], [-75.02416289978059, 40.085352135669666], [-75.02477351284554, 40.084719170290285], [-75.02489690219, 40.084602454866946], [-75.02677501201643, 40.08266059899274], [-75.02698441790379, 40.082416567036645], [-75.02860591922072, 40.08077109526856], [-75.02936100367475, 40.07996554086386], [-75.03024499085504, 40.07905911048138], [-75.03265156130533, 40.076563913553244], [-75.03345632981974, 40.075733552485595], [-75.03394468660325, 40.07522585640025], [-75.0348403042355, 40.07430802573013], [-75.03688057928926, 40.072209186628385], [-75.03797590147553, 40.071078701239365], [-75.03895106634981, 40.07005670880712], [-75.03937274031372, 40.0695553420102], [-75.03952749808136, 40.0693585665246], [-75.03990055038933, 40.0687164982515], [-75.04027165133148, 40.06792050879335], [-75.04104856821186, 40.06619437066853], [-75.04117363314958, 40.06591649432094], [-75.0413335088859, 40.065974787552165], [-75.04147018298123, 40.066018667392534], [-75.04181278865332, 40.06612786129399], [-75.04214704345395, 40.06622444269112], [-75.04252300081988, 40.06630933607577], [-75.04289147572567, 40.066375041588714], [-75.04311837397684, 40.06647542875296], [-75.04331929512507, 40.06660688172657], [-75.04350844181876, 40.06682676256377], [-75.04367908978594, 40.06709689587563], [-75.0437825664205, 40.067397128713154], [-75.04386302954859, 40.068067475794585], [-75.04388739876102, 40.06828347515002], [-75.04385971299041, 40.06877069871069], [-75.04376191556884, 40.06915489498487], [-75.04357575655808, 40.069479984511155], [-75.04302513401653, 40.07046494259144], [-75.04285241512586, 40.07086638181349], [-75.04276168364336, 40.07107333361617], [-75.04248841833828, 40.07130766563954], [-75.04208473704509, 40.07170999709947], [-75.0418127306453, 40.071912676397304], [-75.04147430148507, 40.07212646098452], [-75.04136137041226, 40.07226952947355], [-75.04132108124091, 40.072452325411106], [-75.04138815858997, 40.072631315890035], [-75.0416120446288, 40.07280766508903], [-75.04185417957775, 40.07294009334167], [-75.04234135855599, 40.073132150758376], [-75.0427300417902, 40.07331238140349], [-75.04299664661441, 40.0734517197984], [-75.04338088274055, 40.07353680258656], [-75.04367347260144, 40.07364506960524], [-75.04388862161355, 40.07383388162932], [-75.04387877137246, 40.07408075501489], [-75.04381174842123, 40.07431361061849], [-75.04358058733531, 40.074732682333874], [-75.0434818653947, 40.07493311127461], [-75.04347130832939, 40.07501237386902], [-75.04344653650189, 40.07519839220523], [-75.04350437156484, 40.07540250824636], [-75.04381666845494, 40.07584388336682], [-75.04398238591108, 40.07603152918247], [-75.04420098626825, 40.076340808020944], [-75.04437544784992, 40.076515986745726], [-75.04461019606796, 40.07671426002101], [-75.04474262752414, 40.076822426205], [-75.04482771390366, 40.07696382122396], [-75.044893542534, 40.07717445983989], [-75.04496189751694, 40.077321798879794], [-75.04505497403682, 40.077469718840085], [-75.045181767739, 40.07759942286984], [-75.04534926028896, 40.07774275870906], [-75.04561487822417, 40.07790741100268], [-75.04595415584761, 40.078086466332714], [-75.04631143038561, 40.078227928813625], [-75.04671865181837, 40.07835789268325], [-75.04707046516083, 40.07842952916896], [-75.04743152769055, 40.07847603650771], [-75.04777938855011, 40.07843986397968], [-75.04818367057818, 40.07843669765365], [-75.04883226443728, 40.07851213372634], [-75.04940833315213, 40.07854468046004], [-75.04973719410566, 40.07857141713605], [-75.04995917909704, 40.07858930313321], [-75.05015720083807, 40.07858761908509], [-75.05038994860831, 40.07854239912013], [-75.0506484231972, 40.078472438334956], [-75.0509663444948, 40.07835952001648], [-75.05122809364289, 40.07820726754548], [-75.0515065722058, 40.07804906936406], [-75.05168591663612, 40.077894879164575], [-75.05186551085286, 40.07773436021535], [-75.05198616329548, 40.07760413533933], [-75.05212826288668, 40.077556783823084], [-75.05234301422513, 40.077549152659024], [-75.05263142116847, 40.077555922185596], [-75.0529128500191, 40.07753084556232], [-75.05325296607438, 40.07748180349217], [-75.05346174180787, 40.0774170064721], [-75.05362308928163, 40.07730040711198], [-75.05377757875698, 40.07714879871762], [-75.05386828593147, 40.07694183832337], [-75.0539296157627, 40.07643639594118], [-75.05396616603974, 40.07613946065988], [-75.05399541632775, 40.076026097060954], [-75.05414725883203, 40.07594095572149], [-75.05431382253069, 40.07590051164817], [-75.05455976708468, 40.07593796030108], [-75.0547928060949, 40.07608904559435], [-75.05498466818896, 40.07624571716204], [-75.05517312496838, 40.07648456942428], [-75.05534535391104, 40.07671670469455], [-75.05537620540206, 40.07678442526513], [-75.05552497347986, 40.076671328095905], [-75.05758362004983, 40.07510625263813]]]}}, {"id": "8200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.06113997797009, 40.036065823974994], [-75.05976186725078, 40.03531184400613], [-75.05812369049985, 40.03440572633176], [-75.0565084990886, 40.033503254434855], [-75.05486963353049, 40.03259570069375], [-75.0548027092524, 40.03255070960607], [-75.05324994815125, 40.031701519137656], [-75.05335331145208, 40.03166167446234], [-75.05351206750697, 40.03156856374935], [-75.05396879247006, 40.0312383579716], [-75.0540557517707, 40.031181810533084], [-75.05480048534808, 40.030643626362625], [-75.05527018439086, 40.03022135744487], [-75.05541714262289, 40.03008757076595], [-75.05566168130791, 40.02984419389852], [-75.05607891100887, 40.029456075016896], [-75.05604632671471, 40.02934055154145], [-75.05563483500727, 40.02886208786481], [-75.05558557801861, 40.028816639439626], [-75.05508530919815, 40.02823746026574], [-75.05454376412172, 40.027608361391856], [-75.05514238466856, 40.02730244853657], [-75.05569244617301, 40.02701603820304], [-75.05629534391466, 40.02670488753105], [-75.05695499182227, 40.02636259906879], [-75.05727981106796, 40.02619638423572], [-75.05759522139245, 40.026032809647084], [-75.057897070503, 40.025876805875036], [-75.05825183059187, 40.02569286300014], [-75.05880467941977, 40.026314935658625], [-75.06075658276164, 40.025302397254684], [-75.06271239425418, 40.0242925423012], [-75.06280300649158, 40.02440337289763], [-75.06325416663721, 40.024913758823566], [-75.06379250395135, 40.02463878984568], [-75.06429850056371, 40.02437366105983], [-75.06491395782366, 40.02406163942987], [-75.06497094787639, 40.02411046962777], [-75.06543718559958, 40.02464211242266], [-75.06599609412177, 40.02529122842685], [-75.06629341432797, 40.025612034155614], [-75.06651979223467, 40.02580581909264], [-75.06668295259375, 40.02584138355716], [-75.06783721579384, 40.02649206348795], [-75.06795748719205, 40.026584067667095], [-75.06709032771728, 40.02677730779543], [-75.06618493810203, 40.026915548478], [-75.07304390892638, 40.03129574371874], [-75.07351393530942, 40.031555013912985], [-75.07386962085366, 40.03176463032088], [-75.07369253848567, 40.03210840218186], [-75.07355461850688, 40.032363421145035], [-75.07356021353532, 40.03244577064569], [-75.07360561234455, 40.03251822982968], [-75.07382568190619, 40.0326454257203], [-75.07483287179262, 40.03320326733209], [-75.07493564475371, 40.03325772149568], [-75.07506078615849, 40.03334997800687], [-75.0751487380651, 40.0334466456309], [-75.07525130271337, 40.033661436635455], [-75.07529951176552, 40.033783704283984], [-75.07443993025743, 40.03398123715264], [-75.07148466221675, 40.03466540963907], [-75.07109755523071, 40.0347439109783], [-75.06959738437399, 40.03509441906304], [-75.06809997139733, 40.03543185853618], [-75.06767241302904, 40.03552753743839], [-75.0660952774568, 40.03590830909203], [-75.06518040298042, 40.03612573203004], [-75.06436363948667, 40.03630732602594], [-75.06356652744833, 40.03648551118628], [-75.06319645774718, 40.03658640547235], [-75.06289854950163, 40.036705949036644], [-75.062502852093, 40.03689443759703], [-75.06238203492896, 40.03679536275914], [-75.06113997797009, 40.036065823974994]]]}}, {"id": "8210", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0293079344799, 40.046710939966566], [-75.02838841052163, 40.04713150064877], [-75.02714770611784, 40.04769893835468], [-75.02639597519511, 40.048042732551565], [-75.02611039141759, 40.0481733387064], [-75.02604481931499, 40.048339874814666], [-75.02596530973688, 40.048541809939096], [-75.02611572240293, 40.04892110857427], [-75.02620829586333, 40.04915455044818], [-75.02632430049782, 40.049447076724384], [-75.02589573262637, 40.04952170668328], [-75.0254880641761, 40.049613417369144], [-75.02502019460765, 40.049767059045784], [-75.0246081985107, 40.04996637531921], [-75.0240054813053, 40.05019284749639], [-75.02287289411287, 40.05067918955403], [-75.02258673304789, 40.050824460871986], [-75.02223174570442, 40.05104096568759], [-75.02202617030173, 40.05123250274537], [-75.02182160952268, 40.05139872043992], [-75.02160677289102, 40.05161538177912], [-75.0214845821503, 40.05178355338406], [-75.02134667770706, 40.0519323447473], [-75.02106925447676, 40.052065150263466], [-75.02082351295573, 40.05213400019852], [-75.02042141397483, 40.05218281649405], [-75.01998255499787, 40.052229412557466], [-75.01952153238526, 40.052212119631534], [-75.01918432133711, 40.052191431808566], [-75.01889729725363, 40.0521529292174], [-75.0186370228605, 40.05206437200777], [-75.01838626073734, 40.05194435918992], [-75.01816921177453, 40.05180614059553], [-75.01786308884188, 40.051627784851746], [-75.01767049852461, 40.05149648319447], [-75.0175443161446, 40.05135408648656], [-75.01755043478562, 40.05120216498335], [-75.01758924577986, 40.05105735641996], [-75.01768945949236, 40.050616214968876], [-75.01773956595072, 40.05039564195628], [-75.01775672518255, 40.050174286210655], [-75.01778908370103, 40.049984972257434], [-75.0178802941837, 40.04956262166281], [-75.01803051421066, 40.049312750147635], [-75.01816196668464, 40.04911945649441], [-75.01833128834889, 40.04900943252222], [-75.01853330083512, 40.048906522773834], [-75.0187479652438, 40.04889895525579], [-75.01903066139741, 40.04891140340598], [-75.01935391439712, 40.04900206528802], [-75.01958352312684, 40.0490328679513], [-75.01988208259739, 40.04898927403982], [-75.01999170658894, 40.04892851967565], [-75.020111095476, 40.048829978958686], [-75.0201244262231, 40.04870357286658], [-75.02007984563811, 40.048582126789256], [-75.02005479512427, 40.04838511360781], [-75.01999314446053, 40.04807317837754], [-75.01998310726302, 40.04801396653994], [-75.01856361634631, 40.047101543709665], [-75.0163779323651, 40.04567344925912], [-75.01470318620812, 40.04434586745607], [-75.01342268280341, 40.04330713994061], [-75.01270851187705, 40.04378082221711], [-75.01246742931468, 40.043587646508655], [-75.01139389433654, 40.04272876581121], [-75.0113422425946, 40.04267395636326], [-75.0101011823225, 40.04167243934788], [-75.00697352621539, 40.0407409930132], [-75.00483810605391, 40.04012421177983], [-75.00250671990396, 40.03807633012065], [-75.00031946803244, 40.03618434268132], [-74.99899376226033, 40.035056771211345], [-74.99592322615307, 40.0327693789857], [-74.9972646789298, 40.03157658769071], [-74.99840929180525, 40.030580559169564], [-74.99975901814408, 40.02960479363618], [-75.0015932214651, 40.028499635674116], [-75.00316023945895, 40.027502189715776], [-75.00633490899871, 40.02551540086163], [-75.00969202947779, 40.02346289089041], [-75.01210156445315, 40.021652540993706], [-75.01439595160497, 40.02017284569141], [-75.02008756986974, 40.02518900115906], [-75.02399375470502, 40.03000960993312], [-75.02535457841348, 40.031696280918176], [-75.0262813598896, 40.03284108576819], [-75.02741876359461, 40.03413128335938], [-75.02746886194936, 40.034189583466166], [-75.02801024959247, 40.03508121516515], [-75.028575366214, 40.03599700573118], [-75.02889062942201, 40.03645008857938], [-75.02913431180818, 40.03688391588971], [-75.02915581509315, 40.036940178066445], [-75.0296788542452, 40.03779465801103], [-75.02932093656287, 40.037932070082725], [-75.03005646817876, 40.03913391257796], [-75.03084342658859, 40.040418956773735], [-75.02825800975391, 40.04136678332327], [-75.02967734942368, 40.043251881970015], [-75.03155191862186, 40.045684560606354], [-75.03103542149, 40.045920809071234], [-75.03074357479696, 40.04605429842213], [-75.0293079344799, 40.046710939966566]]]}}, {"id": "8230", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08531032224032, 40.068513075978196], [-75.08462537770777, 40.06836930728484], [-75.08432206063496, 40.06830338858394], [-75.08372661331803, 40.068174970048695], [-75.08204090213172, 40.06805242820077], [-75.08096567099172, 40.06797552436967], [-75.07890160880922, 40.06683635632901], [-75.07805155797986, 40.06636177054576], [-75.0778873699058, 40.066227749755065], [-75.07771866653502, 40.066036330276916], [-75.07767354595893, 40.06596702456253], [-75.0775074708497, 40.06568457988809], [-75.07736001106932, 40.0654320643241], [-75.07715589235868, 40.06504476333175], [-75.07599116443163, 40.06434346148916], [-75.0753759601058, 40.06397178792418], [-75.07354324395854, 40.062936481673376], [-75.07330491095185, 40.06281311335858], [-75.07294842940784, 40.06261524742156], [-75.07275111584283, 40.06252154435866], [-75.07243794149772, 40.06242514102399], [-75.07214134544577, 40.0623757177902], [-75.07128377583618, 40.062285371006226], [-75.07086082608126, 40.06222798789649], [-75.07053197167276, 40.06213715241198], [-75.07031102114136, 40.06205477404607], [-75.06988024443862, 40.061825341066864], [-75.06894885909264, 40.061300326928006], [-75.06807519408441, 40.0608252823429], [-75.06876647953051, 40.06004889185658], [-75.06922522469736, 40.05958424575375], [-75.07041884608611, 40.058348266294544], [-75.07159330153667, 40.05710541404976], [-75.07325641605624, 40.05533105113294], [-75.07409579140203, 40.05582026905029], [-75.07503258792923, 40.056360110360174], [-75.07673423979696, 40.05735167621376], [-75.07863198529692, 40.05535800129497], [-75.07894388368823, 40.0550164197011], [-75.07921728890726, 40.05472044687155], [-75.07950874382271, 40.054419384957846], [-75.07981575873377, 40.05408550147162], [-75.08084986682182, 40.05466084634046], [-75.08186603160338, 40.055215426542915], [-75.0827520610956, 40.05572331553077], [-75.0836553608135, 40.05621406309386], [-75.08399188675543, 40.05586227698336], [-75.0842284438816, 40.05559627468498], [-75.0845139349677, 40.0552925284236], [-75.08487165715582, 40.05488253906962], [-75.0857956987781, 40.05542581638905], [-75.08587644984081, 40.055503803104216], [-75.08595836163552, 40.05556809118631], [-75.08617744057557, 40.05569545247368], [-75.08662023866947, 40.05594685106228], [-75.08840985984426, 40.05694126266981], [-75.08997232434874, 40.05782207720906], [-75.0908474266367, 40.05824780573915], [-75.09252516508181, 40.05691461494527], [-75.09333583281115, 40.057015325871674], [-75.09345644681767, 40.057189632053856], [-75.09354111024288, 40.05731198399955], [-75.09361503390471, 40.05741817620406], [-75.09274064284068, 40.05829937415294], [-75.0920750089637, 40.05896683336336], [-75.08976380729703, 40.06129389020495], [-75.08900285768611, 40.06205226329], [-75.08823967373392, 40.06281283793292], [-75.08746453554552, 40.06358530745863], [-75.08789701681395, 40.06383695621994], [-75.0887650890161, 40.06434205694387], [-75.08944617660568, 40.06473751202954], [-75.09037058875349, 40.06527619765871], [-75.08902882748413, 40.066599282792986], [-75.08723266257306, 40.06839116981807], [-75.08707644886283, 40.068565824165354], [-75.08531032224032, 40.068513075978196]]]}}, {"id": "8240", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.04375244475754, 40.033720142760444], [-75.04343476160835, 40.03335799679555], [-75.04298610898273, 40.03284195137486], [-75.0425383747686, 40.03232987949128], [-75.0420889110238, 40.03181769643146], [-75.0416361999487, 40.031300465562694], [-75.04118909288377, 40.03078748722589], [-75.04074283011289, 40.03027777969118], [-75.0402887380438, 40.029766993479576], [-75.03984251941257, 40.02924565417187], [-75.03938800441148, 40.028735407318045], [-75.03890723481716, 40.02818667827646], [-75.03845771205219, 40.02767336993102], [-75.03803847890595, 40.027189747406304], [-75.0375896136875, 40.02668081195321], [-75.03714187768846, 40.026165608298875], [-75.03668837866726, 40.025651600117925], [-75.03645284769156, 40.02536085689675], [-75.03612050834508, 40.024931492357474], [-75.03599028702791, 40.02482212471624], [-75.03581302378812, 40.0245736685611], [-75.03534610372795, 40.02395175515207], [-75.03506828680622, 40.023557653954924], [-75.03498362096369, 40.0234979270977], [-75.03448566390134, 40.022883532331115], [-75.03447210556332, 40.0228085548892], [-75.03443147882443, 40.022726690314514], [-75.03380917379319, 40.02190684150733], [-75.0331832422015, 40.021032183914976], [-75.0293708496235, 40.01628945858043], [-75.02985946482646, 40.01622487799484], [-75.03255713556078, 40.015812624946086], [-75.03418808182995, 40.01552685458882], [-75.03593236969367, 40.015122265975734], [-75.03846131468903, 40.014341371204885], [-75.0400887750218, 40.013724643582975], [-75.04318345620553, 40.01230180802732], [-75.04549702717796, 40.01539135984509], [-75.04654946592537, 40.016354768020506], [-75.04695708881782, 40.01666649054795], [-75.04740062933426, 40.01699499112109], [-75.04779921109528, 40.017327097465994], [-75.04808650156707, 40.01750175437715], [-75.04813594950116, 40.017585297316074], [-75.04827883286003, 40.01769035907416], [-75.04843241042651, 40.01780693177609], [-75.04858708950196, 40.01793877323055], [-75.04869060025547, 40.01802875804136], [-75.04879026013448, 40.01814272009394], [-75.04895805847762, 40.01833459840812], [-75.04949864826371, 40.018930315978146], [-75.05000317862873, 40.019512392481026], [-75.05045067390724, 40.02002728783608], [-75.05090575006129, 40.02053632334524], [-75.05132044682324, 40.02101559235904], [-75.05177492702299, 40.0215363498483], [-75.05225498658803, 40.02208102634417], [-75.05248290255767, 40.02234721787948], [-75.05270351743722, 40.02259335939741], [-75.0529326587648, 40.02286481292343], [-75.05315294282204, 40.02310603050815], [-75.05337410689482, 40.02336301410848], [-75.05360536254146, 40.023616927357196], [-75.05383051939687, 40.02388229248625], [-75.05405573884796, 40.024130575636875], [-75.05449649038853, 40.02464923564854], [-75.0549663561723, 40.025172380397535], [-75.05539833613314, 40.02567408298286], [-75.05629534391466, 40.02670488753105], [-75.05569244617301, 40.02701603820304], [-75.05514238466856, 40.02730244853657], [-75.05454376412172, 40.027608361391856], [-75.05508530919815, 40.02823746026574], [-75.05558557801861, 40.028816639439626], [-75.05563483500727, 40.02886208786481], [-75.05604632671471, 40.02934055154145], [-75.05607891100887, 40.029456075016896], [-75.05566168130791, 40.02984419389852], [-75.05541714262289, 40.03008757076595], [-75.05527018439086, 40.03022135744487], [-75.05480048534808, 40.030643626362625], [-75.0540557517707, 40.031181810533084], [-75.05396879247006, 40.0312383579716], [-75.05351206750697, 40.03156856374935], [-75.05335331145208, 40.03166167446234], [-75.05324994815125, 40.031701519137656], [-75.05285796282334, 40.03179739878761], [-75.05268628258194, 40.03184703228738], [-75.05097354286903, 40.03232582356486], [-75.04991032850579, 40.03261150364894], [-75.04867198729823, 40.03295489498672], [-75.04771947920379, 40.0333027373664], [-75.04677139455464, 40.033684118641375], [-75.04665793239292, 40.03372700236978], [-75.04580164198363, 40.034176476257336], [-75.04492768604423, 40.03464254968361], [-75.04467210428737, 40.03477220262877], [-75.04401611500334, 40.0340207114769], [-75.04375244475754, 40.033720142760444]]]}}, {"id": "8250", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.03500252427024, 40.03890974380595], [-75.03442434112202, 40.03912170984904], [-75.03342753323346, 40.03947455773396], [-75.03261303209376, 40.03977282657692], [-75.03170851182412, 40.04010744165081], [-75.03134158218617, 40.0402378808999], [-75.03084342658859, 40.040418956773735], [-75.03005646817876, 40.03913391257796], [-75.02932093656287, 40.037932070082725], [-75.0296788542452, 40.03779465801103], [-75.02915581509315, 40.036940178066445], [-75.02913431180818, 40.03688391588971], [-75.02889062942201, 40.03645008857938], [-75.028575366214, 40.03599700573118], [-75.02801024959247, 40.03508121516515], [-75.02746886194936, 40.034189583466166], [-75.02741876359461, 40.03413128335938], [-75.0262813598896, 40.03284108576819], [-75.02535457841348, 40.031696280918176], [-75.02399375470502, 40.03000960993312], [-75.02008756986974, 40.02518900115906], [-75.01439595160497, 40.02017284569141], [-75.01569583843182, 40.01949405820048], [-75.01660844953228, 40.01907485929474], [-75.0178569563277, 40.01855237721734], [-75.01973985658044, 40.01788386821405], [-75.02145303888575, 40.017491993859835], [-75.02377146395851, 40.017068709017565], [-75.02658115512718, 40.01665813075844], [-75.0293708496235, 40.01628945858043], [-75.0331832422015, 40.021032183914976], [-75.03380917379319, 40.02190684150733], [-75.03443147882443, 40.022726690314514], [-75.03447210556332, 40.0228085548892], [-75.03448566390134, 40.022883532331115], [-75.03498362096369, 40.0234979270977], [-75.03506828680622, 40.023557653954924], [-75.03534610372795, 40.02395175515207], [-75.03581302378812, 40.0245736685611], [-75.03599028702791, 40.02482212471624], [-75.03612050834508, 40.024931492357474], [-75.03645284769156, 40.02536085689675], [-75.03668837866726, 40.025651600117925], [-75.03714187768846, 40.026165608298875], [-75.0375896136875, 40.02668081195321], [-75.03803847890595, 40.027189747406304], [-75.03845771205219, 40.02767336993102], [-75.03890723481716, 40.02818667827646], [-75.03938800441148, 40.028735407318045], [-75.03984251941257, 40.02924565417187], [-75.0402887380438, 40.029766993479576], [-75.04074283011289, 40.03027777969118], [-75.04118909288377, 40.03078748722589], [-75.0416361999487, 40.031300465562694], [-75.0420889110238, 40.03181769643146], [-75.0425383747686, 40.03232987949128], [-75.04298610898273, 40.03284195137486], [-75.04343476160835, 40.03335799679555], [-75.04375244475754, 40.033720142760444], [-75.04401611500334, 40.0340207114769], [-75.04467210428737, 40.03477220262877], [-75.04405452994727, 40.035097840094735], [-75.0432001630908, 40.0355454899382], [-75.04243452139467, 40.035962491064716], [-75.04168391253879, 40.036344090785576], [-75.04075351141236, 40.03679473370573], [-75.03984077562761, 40.03712936674828], [-75.03868784381856, 40.03755204667702], [-75.03683287760813, 40.03823718981451], [-75.03627792045715, 40.03844215824022], [-75.03554299787328, 40.03871159793633], [-75.03500252427024, 40.03890974380595]]]}}, {"id": "8260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05899098615006, 40.08094668209277], [-75.05916303922639, 40.08069329950346], [-75.05940930199259, 40.08051532061701], [-75.05962134585386, 40.080368219983605], [-75.05992328166774, 40.08024223237487], [-75.06023370827079, 40.080110104778555], [-75.0604349954488, 40.08002611230843], [-75.0606375408534, 40.07991046736888], [-75.06082485791416, 40.079762787799226], [-75.06099418571385, 40.07965270023839], [-75.06114502715863, 40.07959286989936], [-75.06132782260427, 40.079559130549555], [-75.06151810922886, 40.07954457455014], [-75.06167718722045, 40.07948493440269], [-75.06183927818138, 40.07934933453984], [-75.06199588892682, 40.07914390974338], [-75.06203662816267, 40.078948446111255], [-75.06206088712396, 40.07875259702242], [-75.06206715943975, 40.078594343139876], [-75.06198102916176, 40.078478280995135], [-75.0618954033809, 40.07834955741347], [-75.06179204337724, 40.07825210050341], [-75.06170516129058, 40.07815502713799], [-75.06163003522988, 40.077969527351115], [-75.06151646881796, 40.077713428092345], [-75.06148543068252, 40.07745609581747], [-75.0615249157013, 40.07729228275948], [-75.06160284111687, 40.07719906639292], [-75.06176116081122, 40.0771584160093], [-75.06195892835154, 40.07716304192318], [-75.0621726737404, 40.07718071525179], [-75.06232124740075, 40.07717785385517], [-75.06251579036129, 40.077055682578724], [-75.06273731119458, 40.07687711754378], [-75.06304700024614, 40.07655488797269], [-75.06334719235429, 40.076264112653824], [-75.0636473829897, 40.07597333837383], [-75.06381196651216, 40.0757744329674], [-75.06391861912485, 40.075580509452834], [-75.06394512893239, 40.075327689336845], [-75.0638219366318, 40.07510621883967], [-75.06370936954882, 40.07482480332952], [-75.06361851137763, 40.0746199278114], [-75.06347470755827, 40.07450251759421], [-75.0632609701968, 40.07448484848411], [-75.06304372192314, 40.07455580181499], [-75.06260897559609, 40.07470403576466], [-75.06220794047137, 40.07483404907385], [-75.06170078559855, 40.07493623409436], [-75.06106279412101, 40.07501001288991], [-75.06045801177557, 40.07507822835723], [-75.05990040944747, 40.075204569426475], [-75.05944967163806, 40.07533974506808], [-75.05904686857083, 40.07551405825606], [-75.05877539994854, 40.0757041180278], [-75.05869131808406, 40.0759524201826], [-75.05859836366761, 40.07621635755008], [-75.05835106158882, 40.076628740973035], [-75.0581237512023, 40.076952890732144], [-75.05789668999567, 40.07727070798033], [-75.05768811786795, 40.077538271537975], [-75.05751728221968, 40.07768633216519], [-75.05730077170082, 40.07773828386777], [-75.05703783549077, 40.077713114500966], [-75.05677590846673, 40.077662625406894], [-75.05653272186636, 40.07755555053142], [-75.05624009117663, 40.07744731438692], [-75.0558024112148, 40.07725330993658], [-75.05550481551758, 40.07706258916549], [-75.05542121699486, 40.0768832205816], [-75.05537620540206, 40.07678442526513], [-75.05552497347986, 40.076671328095905], [-75.05758362004983, 40.07510625263813], [-75.05782233982951, 40.074917383728305], [-75.0580600180249, 40.07472768441965], [-75.05829722217847, 40.07453760141421], [-75.05853450793607, 40.07434758563563], [-75.05877243914605, 40.074158088195375], [-75.05901157500546, 40.07396955919014], [-75.05925247709082, 40.0737824478666], [-75.05949570921547, 40.07359720622223], [-75.05974187453398, 40.07341429978524], [-75.05999149552423, 40.07323403991354], [-75.06024425155283, 40.07305623076177], [-75.06049970478726, 40.07288061517643], [-75.06075741494566, 40.07270693865332], [-75.06101694643431, 40.07253494680178], [-75.0612778636246, 40.07236438613518], [-75.06154075136922, 40.07219565146795], [-75.06180618592673, 40.07202914731945], [-75.06207392243033, 40.0718647490067], [-75.06234372144463, 40.07170234278835], [-75.06261533565403, 40.07154180663149], [-75.06288851078965, 40.07138298680624], [-75.06316277192772, 40.071225171185866], [-75.0634381718676, 40.0710683889291], [-75.06371496187346, 40.07091301803206], [-75.06399338735496, 40.07075943635126], [-75.06427369713427, 40.070608024523715], [-75.06455614032294, 40.07045915598219], [-75.06484130035514, 40.07031355796916], [-75.06513063452837, 40.070172754836676], [-75.06542327369665, 40.070035772044], [-75.0657180402657, 40.06990130888495], [-75.0660137588297, 40.06976806832083], [-75.0663092707974, 40.06963477263976], [-75.06660492565369, 40.06950177780655], [-75.06690135658151, 40.06936976897946], [-75.06719852233356, 40.06923872176233], [-75.06749638627788, 40.06910861366898], [-75.0678274453076, 40.06896467197677], [-75.06735652846181, 40.06872835474917], [-75.0658467809666, 40.067832099023924], [-75.06502668978634, 40.067345239044975], [-75.06988024443862, 40.061825341066864], [-75.07031102114136, 40.06205477404607], [-75.07053197167276, 40.06213715241198], [-75.07086082608126, 40.06222798789649], [-75.07128377583618, 40.062285371006226], [-75.07214134544577, 40.0623757177902], [-75.07243794149772, 40.06242514102399], [-75.07275111584283, 40.06252154435866], [-75.07294842940784, 40.06261524742156], [-75.07330491095185, 40.06281311335858], [-75.07354324395854, 40.062936481673376], [-75.0753759601058, 40.06397178792418], [-75.07599116443163, 40.06434346148916], [-75.07715589235868, 40.06504476333175], [-75.07736001106932, 40.0654320643241], [-75.0775074708497, 40.06568457988809], [-75.07767354595893, 40.06596702456253], [-75.07771866653502, 40.066036330276916], [-75.0778873699058, 40.066227749755065], [-75.07805155797986, 40.06636177054576], [-75.07890160880922, 40.06683635632901], [-75.08096567099172, 40.06797552436967], [-75.08204090213172, 40.06805242820077], [-75.08372661331803, 40.068174970048695], [-75.08432206063496, 40.06830338858394], [-75.08462537770777, 40.06836930728484], [-75.08531032224032, 40.068513075978196], [-75.08707644886283, 40.068565824165354], [-75.08723266257306, 40.06839116981807], [-75.08902882748413, 40.066599282792986], [-75.09037058875349, 40.06527619765871], [-75.09195860699734, 40.066200121654816], [-75.09324449349958, 40.0669482279799], [-75.0967382741719, 40.06898069222738], [-75.09404260233903, 40.07163329133227], [-75.09384252084408, 40.07183059824139], [-75.08996067275, 40.075661165003694], [-75.08951995056393, 40.076096031543], [-75.0891907542941, 40.07640878097414], [-75.08793830991601, 40.077598613149505], [-75.08689904947299, 40.0786463148236], [-75.0853654932011, 40.08010823724802], [-75.08390468787542, 40.08149006648177], [-75.08245787770203, 40.08288512949956], [-75.08168760417915, 40.083621315787084], [-75.0788450068151, 40.082049292987676], [-75.0778688389965, 40.08150231853251], [-75.07712295578538, 40.081081159091646], [-75.07625945129958, 40.080606739792614], [-75.07516847105627, 40.07999208020388], [-75.07463570858634, 40.079691913047505], [-75.07370523817029, 40.07918335936801], [-75.07301452470581, 40.07878225782444], [-75.07100864922093, 40.07768329396865], [-75.07038058984115, 40.07829099731442], [-75.06983091190762, 40.07882368559944], [-75.06921655202608, 40.07944205456631], [-75.06846470867045, 40.08016550253619], [-75.06827619919731, 40.080346677864654], [-75.06792498559446, 40.08060118151999], [-75.06708999434463, 40.081174476560655], [-75.06696943036414, 40.08125861072924], [-75.0654748991703, 40.082301532678365], [-75.06242021822165, 40.08439328542534], [-75.06011501160998, 40.08596985993657], [-75.06003442287486, 40.0860251054256], [-75.05992011887795, 40.08579897163223], [-75.05980438212187, 40.08552499483347], [-75.05965515328373, 40.085255350968396], [-75.05953738974036, 40.08503250834953], [-75.05945311392284, 40.08480533248337], [-75.05942270649093, 40.084564061096536], [-75.05940480238687, 40.084343556793144], [-75.05939791730421, 40.084013266940076], [-75.05942117231665, 40.08376301499222], [-75.05944442943007, 40.083512764891076], [-75.059463055046, 40.08321122260964], [-75.05930149847765, 40.08308460223097], [-75.05903703982814, 40.08303234667941], [-75.05870418288193, 40.08302455294798], [-75.05840380330494, 40.083037990541975], [-75.05813954732395, 40.08298061972417], [-75.05786482173603, 40.082851346657215], [-75.05762419352845, 40.08270239814969], [-75.05743199455884, 40.08250851872775], [-75.05735799887307, 40.08235835532862], [-75.05730519147647, 40.08217797800818], [-75.05739573415532, 40.08191139086551], [-75.05752891747137, 40.08174560762594], [-75.05768507545918, 40.081672491463536], [-75.0578855956929, 40.08165671504968], [-75.05810547877068, 40.08165674648728], [-75.05831387189762, 40.08161044616171], [-75.05847749470482, 40.08151703026426], [-75.05865483943762, 40.081413698717384], [-75.05882049051664, 40.08126914787851], [-75.05897043153769, 40.08101674440808], [-75.05899098615006, 40.08094668209277]]]}}, {"id": "8270", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.00727005000492, 40.06916284283319], [-75.00290365177997, 40.06668327635158], [-75.00020320019168, 40.06515197637998], [-74.99902373253308, 40.06448114410677], [-74.9984208088978, 40.06413807764871], [-74.99530548636974, 40.06236533704058], [-74.99451468543627, 40.06191530970193], [-74.99427698081958, 40.061782881163985], [-74.99395224082419, 40.061629044655696], [-74.99356775227025, 40.06149391799965], [-74.99321774729918, 40.061397389171425], [-74.99281403097854, 40.06133230332667], [-74.99239711762029, 40.06126941868098], [-74.99194572488256, 40.06116793486433], [-74.99170939033432, 40.06109679086137], [-74.99149351660745, 40.06100599428357], [-74.99130342505201, 40.06092588935296], [-74.99110105709491, 40.06082534327962], [-74.99085541386388, 40.06066080733073], [-74.99064230555005, 40.06050208736882], [-74.99051053375126, 40.060438488973645], [-74.9904325723008, 40.060397207455054], [-74.989286928798, 40.05937652147773], [-74.9879801607809, 40.05821631396604], [-74.98590682466101, 40.056378300947806], [-74.98529316777564, 40.05582904683217], [-74.98500302675573, 40.05557645381922], [-74.98475433761872, 40.055358582041585], [-74.98451795866875, 40.05514942559683], [-74.98439233134985, 40.055017035967204], [-74.9842573866046, 40.05490393180876], [-74.98415155670932, 40.05482814694793], [-74.98409878171032, 40.05478373231092], [-74.98401688146697, 40.054708509021076], [-74.98396572527261, 40.05462750125775], [-74.98379632094823, 40.05420356773441], [-74.98273352293714, 40.05301574562342], [-74.98229743001636, 40.05252025409304], [-74.98182371053878, 40.052047477411186], [-74.98158920688721, 40.051824814724505], [-74.98147989780368, 40.05171902695606], [-74.98093132226789, 40.05121469976086], [-74.98022845607794, 40.05058274545212], [-74.9766399576386, 40.04740753190659], [-74.978556593772, 40.046776920971546], [-74.97989203561042, 40.046340572217694], [-74.98059132219204, 40.04594380560141], [-74.98174496524592, 40.04506481578623], [-74.98267772211753, 40.044069039558025], [-74.98354833311693, 40.04303263159738], [-74.98494277204559, 40.04176918605419], [-74.98628044404798, 40.04094230870215], [-74.98770726511312, 40.039958475210966], [-74.98921273178432, 40.038655978629805], [-74.99046771078892, 40.03757014522302], [-74.99138517154653, 40.03677630839157], [-74.9940705153599, 40.034416675946346], [-74.99592322615307, 40.0327693789857], [-74.99899376226033, 40.035056771211345], [-75.00031946803244, 40.03618434268132], [-75.00250671990396, 40.03807633012065], [-75.00483810605391, 40.04012421177983], [-75.00697352621539, 40.0407409930132], [-75.0101011823225, 40.04167243934788], [-75.0113422425946, 40.04267395636326], [-75.01139389433654, 40.04272876581121], [-75.01246742931468, 40.043587646508655], [-75.01270851187705, 40.04378082221711], [-75.01342268280341, 40.04330713994061], [-75.01470318620812, 40.04434586745607], [-75.0163779323651, 40.04567344925912], [-75.01856361634631, 40.047101543709665], [-75.01998310726302, 40.04801396653994], [-75.01999314446053, 40.04807317837754], [-75.02005479512427, 40.04838511360781], [-75.02007984563811, 40.048582126789256], [-75.0201244262231, 40.04870357286658], [-75.020111095476, 40.048829978958686], [-75.01999170658894, 40.04892851967565], [-75.01988208259739, 40.04898927403982], [-75.01958352312684, 40.0490328679513], [-75.01935391439712, 40.04900206528802], [-75.01903066139741, 40.04891140340598], [-75.0187479652438, 40.04889895525579], [-75.01853330083512, 40.048906522773834], [-75.01833128834889, 40.04900943252222], [-75.01816196668464, 40.04911945649441], [-75.01803051421066, 40.049312750147635], [-75.0178802941837, 40.04956262166281], [-75.01778908370103, 40.049984972257434], [-75.01775672518255, 40.050174286210655], [-75.01773956595072, 40.05039564195628], [-75.01768945949236, 40.050616214968876], [-75.01758924577986, 40.05105735641996], [-75.01755043478562, 40.05120216498335], [-75.0175443161446, 40.05135408648656], [-75.01767049852461, 40.05149648319447], [-75.01786308884188, 40.051627784851746], [-75.01816921177453, 40.05180614059553], [-75.01838626073734, 40.05194435918992], [-75.0186370228605, 40.05206437200777], [-75.01889729725363, 40.0521529292174], [-75.01918432133711, 40.052191431808566], [-75.01952153238526, 40.052212119631534], [-75.01998255499787, 40.052229412557466], [-75.02042141397483, 40.05218281649405], [-75.02082351295573, 40.05213400019852], [-75.02088993332914, 40.05234177415102], [-75.02091723952032, 40.05248161358513], [-75.02087840672286, 40.05262831661571], [-75.02082877655748, 40.05277054528203], [-75.0207690258568, 40.05289144426327], [-75.02071080182549, 40.05297441796306], [-75.02069610560125, 40.05306686235357], [-75.02071464869559, 40.05315166073157], [-75.02076937187448, 40.053292150644964], [-75.02082613061091, 40.05338207472192], [-75.02093478167261, 40.05340996289716], [-75.02108747077057, 40.05343467920917], [-75.02131059809051, 40.05348215761974], [-75.02151829112039, 40.053503961948444], [-75.0216374022443, 40.0535447523138], [-75.02191830511406, 40.05365686930914], [-75.02209671789657, 40.053724374456756], [-75.02222781323063, 40.053740140788996], [-75.02236202016512, 40.053815031571304], [-75.02249209927083, 40.05385608053362], [-75.02327873692083, 40.05408564694144], [-75.02342391147224, 40.0541607967507], [-75.02344342237699, 40.0542899053639], [-75.0233061439893, 40.054427945416464], [-75.02325883533216, 40.05458077518629], [-75.02329770833737, 40.05470612463295], [-75.02329697751313, 40.05479257441689], [-75.02308683509538, 40.05503644028902], [-75.02301832165558, 40.055117459789635], [-75.02295270237222, 40.05518720906307], [-75.02296126227928, 40.05529285923183], [-75.02298959026602, 40.05540741431654], [-75.02296392945912, 40.05549959866026], [-75.02285912686669, 40.055648954179546], [-75.02281735264908, 40.05573231941055], [-75.02284183827801, 40.05587419975179], [-75.02292285415761, 40.055975242631], [-75.02306650910235, 40.05608831731229], [-75.02319354424118, 40.05620521517992], [-75.02329830532375, 40.056330019936595], [-75.02335792116091, 40.056438831672395], [-75.02339951134499, 40.05654331580518], [-75.0234514689111, 40.05661625220775], [-75.0235197094016, 40.056693793749254], [-75.0236138431599, 40.056809910294824], [-75.02373270735212, 40.0568570187658], [-75.023907932674, 40.056867502998784], [-75.02410433087374, 40.05689747005967], [-75.02421847374397, 40.056925486161866], [-75.02428629100011, 40.05701356132886], [-75.02426931312309, 40.057162892330595], [-75.0242474440112, 40.057297345292945], [-75.02425983172488, 40.05739886827296], [-75.02428002238715, 40.05751112142612], [-75.02431514065105, 40.05766168838805], [-75.02432187545998, 40.057767295084304], [-75.02425698143027, 40.05787963810014], [-75.02420457979494, 40.05795431600173], [-75.02413058150069, 40.05802004670343], [-75.02400612716242, 40.05811199571979], [-75.0239373583225, 40.058184176694986], [-75.02380439126402, 40.05821476437058], [-75.02364366633292, 40.05825312978684], [-75.02346564302887, 40.05831217277386], [-75.02335873957705, 40.05837712210828], [-75.02325698219693, 40.05845062826453], [-75.02318315065173, 40.058512144504434], [-75.02309303807974, 40.058569055531905], [-75.02297533559285, 40.05862953037194], [-75.02288041527724, 40.05866945575464], [-75.02277984274103, 40.0587134656363], [-75.022684922193, 40.05875339085738], [-75.02256654251953, 40.058830720591054], [-75.02242967671278, 40.05895822546024], [-75.02227070548015, 40.05908942320252], [-75.02214582306436, 40.05919190430037], [-75.02208143359125, 40.05929160464568], [-75.02201353883376, 40.05941020247696], [-75.02196766420064, 40.0595272137529], [-75.02189634982466, 40.0596626008018], [-75.02184773227115, 40.05977954690714], [-75.02175730775194, 40.059912371634475], [-75.0216406495094, 40.060015048423956], [-75.02156941869207, 40.06014832880668], [-75.02150203068393, 40.06025428397214], [-75.0213678719578, 40.060314366459814], [-75.02124261759111, 40.060357787997795], [-75.02116683397419, 40.06046776142961], [-75.0211230204869, 40.06060169364698], [-75.02105110996689, 40.06075182897833], [-75.02099768542261, 40.06085178921662], [-75.02094476815968, 40.060939107046785], [-75.02081722362328, 40.061039416015774], [-75.02070262528976, 40.061159012237674], [-75.02057977282244, 40.06127911509596], [-75.0204938950218, 40.06136705628301], [-75.02033050297699, 40.061403243645614], [-75.02019300601317, 40.06147800753754], [-75.02008010163895, 40.061555464966105], [-75.02002254762955, 40.0616215839113], [-75.0199864210835, 40.06170086460079], [-75.01992202488529, 40.061800563694625], [-75.0198283436528, 40.0619459631985], [-75.01973799707683, 40.062076679863075], [-75.01964420137666, 40.06215669944157], [-75.0195479172144, 40.06223033349241], [-75.01947871542869, 40.062313045872756], [-75.01940436738393, 40.06238720111911], [-75.01931871281806, 40.06246952330191], [-75.01922876021322, 40.06252221744369], [-75.01910556448806, 40.06258255709327], [-75.01899983768322, 40.0626180056519], [-75.01884871067023, 40.06269033467704], [-75.01874179707323, 40.062755279728954], [-75.01866264229521, 40.06281244797046], [-75.01855222208856, 40.06289629026223], [-75.0184215618429, 40.062937470988345], [-75.0182824199927, 40.06298477804318], [-75.01816470559515, 40.06304524704141], [-75.01804614240108, 40.06312678588627], [-75.01800384966306, 40.063222791701655], [-75.0179495701373, 40.063343818675705], [-75.01788997588838, 40.06346050230505], [-75.01779662625562, 40.0635974733855], [-75.01766669581285, 40.06375677132412], [-75.01749662400833, 40.06382232182605], [-75.01730693318339, 40.06389795055588], [-75.01714500277654, 40.063965802656504], [-75.01704390934661, 40.0640224489414], [-75.01689175837886, 40.06412005915821], [-75.01677918545927, 40.0641890848095], [-75.01666610404993, 40.06427075271167], [-75.0165706627164, 40.06432331430387], [-75.0164025669745, 40.06440789103234], [-75.01623961545582, 40.0645010256198], [-75.01620896722129, 40.06458043649334], [-75.01616616152177, 40.0646890821555], [-75.01600631554668, 40.06484134024199], [-75.01588587828371, 40.06496922876008], [-75.01576586519033, 40.06508658307714], [-75.01574954597372, 40.065219057514625], [-75.0157425817053, 40.0653918255055], [-75.01565594839043, 40.06563440111219], [-75.01558503848605, 40.06575925009745], [-75.01549287137524, 40.06586672175268], [-75.01545142274483, 40.06594165666884], [-75.01537983261072, 40.06608336076093], [-75.01531457721896, 40.06620412632028], [-75.01521828261474, 40.06627775672721], [-75.01508427752486, 40.066333617178856], [-75.01498351749207, 40.06638183399944], [-75.01485293330873, 40.06642090420657], [-75.01469003582997, 40.06644444301656], [-75.01455328716379, 40.06650023755559], [-75.01442176779595, 40.06656248366375], [-75.0142842526952, 40.06663724043714], [-75.01418614950114, 40.066687628313986], [-75.01414170114295, 40.066768818609674], [-75.01415939115768, 40.066874687043146], [-75.01423492275127, 40.06697560540138], [-75.01429202300844, 40.067057104995996], [-75.01438994155741, 40.06721549770347], [-75.01439855380417, 40.06734223923181], [-75.01434598649034, 40.067488613490006], [-75.01430300598287, 40.067601473147434], [-75.01425041589033, 40.06768036117643], [-75.01413783434027, 40.06774938512688], [-75.01401445462469, 40.06781393310805], [-75.01390956693898, 40.06782830704168], [-75.01376775522982, 40.067873435980935], [-75.0136854235918, 40.06794107045589], [-75.0136545996472, 40.06802469441069], [-75.01366234006926, 40.068105017962885], [-75.013658090155, 40.068210364007015], [-75.01363003069318, 40.068361539452575], [-75.01361277147016, 40.06851719084309], [-75.01356917244466, 40.06857731100868], [-75.01341407181296, 40.0686115789023], [-75.01328803076183, 40.0686739542966], [-75.01320527263027, 40.0687521224871], [-75.0131434338241, 40.0688560969041], [-75.01309470956213, 40.0689751465982], [-75.01304152189287, 40.06906878193416], [-75.01299938840812, 40.06916057207089], [-75.01292451568432, 40.069247363609996], [-75.01285597882301, 40.069313217652315], [-75.01278042667118, 40.06941686524192], [-75.01264369118155, 40.069540144576386], [-75.01248365580095, 40.06969661152543], [-75.01240227778314, 40.06980855580792], [-75.01234798178868, 40.069929580963226], [-75.01227740265138, 40.07004600029827], [-75.01216294414564, 40.070161374140504], [-75.01207246548898, 40.07022670406734], [-75.01193674889853, 40.07032469976572], [-75.0118207583076, 40.070477997489135], [-75.0117368264488, 40.07065314833198], [-75.0116641830306, 40.070752646713004], [-75.01153052607532, 40.070867562474575], [-75.01145556450106, 40.0709564603993], [-75.01140118198131, 40.07107959247818], [-75.01133066624226, 40.07118005144515], [-75.00727005000492, 40.06916284283319]]]}}, {"id": "8300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.04580687006829, 40.0395804105673], [-75.0474065050084, 40.03789343353875], [-75.04855944706433, 40.03666656703972], [-75.04693303678364, 40.03576355445415], [-75.04597419610603, 40.03522756508031], [-75.04492768604423, 40.03464254968361], [-75.04580164198363, 40.034176476257336], [-75.04665793239292, 40.03372700236978], [-75.04677139455464, 40.033684118641375], [-75.04771947920379, 40.0333027373664], [-75.04867198729823, 40.03295489498672], [-75.04991032850579, 40.03261150364894], [-75.05097354286903, 40.03232582356486], [-75.05268628258194, 40.03184703228738], [-75.05285796282334, 40.03179739878761], [-75.05324994815125, 40.031701519137656], [-75.0548027092524, 40.03255070960607], [-75.05486963353049, 40.03259570069375], [-75.0565084990886, 40.033503254434855], [-75.05812369049985, 40.03440572633176], [-75.05976186725078, 40.03531184400613], [-75.06113997797009, 40.036065823974994], [-75.06238203492896, 40.03679536275914], [-75.062502852093, 40.03689443759703], [-75.06212144079021, 40.03710684041035], [-75.0618255356151, 40.03730550024004], [-75.06141110167145, 40.03763975920058], [-75.06106479422336, 40.03796318088107], [-75.06101051345323, 40.03801387425303], [-75.05879506193901, 40.04010164795467], [-75.05855594906858, 40.040312717870684], [-75.05670935146723, 40.04206037491096], [-75.05612301550626, 40.04264626875537], [-75.05561028491073, 40.0431883691441], [-75.05492781601713, 40.04385567168835], [-75.05460150362975, 40.04415792107146], [-75.054288575661, 40.04444780416778], [-75.04855924363905, 40.041146279229956], [-75.04580687006829, 40.0395804105673]]]}}, {"id": "8310", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08997232434874, 40.05782207720906], [-75.08840985984426, 40.05694126266981], [-75.08662023866947, 40.05594685106228], [-75.08617744057557, 40.05569545247368], [-75.08595836163552, 40.05556809118631], [-75.08587644984081, 40.055503803104216], [-75.0857956987781, 40.05542581638905], [-75.08487165715582, 40.05488253906962], [-75.0845139349677, 40.0552925284236], [-75.0842284438816, 40.05559627468498], [-75.08399188675543, 40.05586227698336], [-75.0836553608135, 40.05621406309386], [-75.0827520610956, 40.05572331553077], [-75.08186603160338, 40.055215426542915], [-75.08084986682182, 40.05466084634046], [-75.07981575873377, 40.05408550147162], [-75.07950874382271, 40.054419384957846], [-75.07921728890726, 40.05472044687155], [-75.07894388368823, 40.0550164197011], [-75.07863198529692, 40.05535800129497], [-75.07673423979696, 40.05735167621376], [-75.07503258792923, 40.056360110360174], [-75.07409579140203, 40.05582026905029], [-75.07325641605624, 40.05533105113294], [-75.0714713444968, 40.05429561144987], [-75.06972233687439, 40.05328592583538], [-75.06913354449135, 40.05295041203199], [-75.06850345733856, 40.052591793505435], [-75.06772433304438, 40.05214658768736], [-75.06604683768562, 40.05118232361415], [-75.06669185706753, 40.050543039089554], [-75.06727426491679, 40.04997353898988], [-75.06787343897767, 40.04935188152548], [-75.06847589500786, 40.04873091409659], [-75.06907498348741, 40.04811091937425], [-75.0696893040897, 40.047481945983684], [-75.07030203561538, 40.046823274699946], [-75.07088714926057, 40.04621961091087], [-75.07146501476772, 40.04564898413407], [-75.0720702659434, 40.0450251982418], [-75.07264598524705, 40.04439500937581], [-75.0732510924011, 40.04379731122706], [-75.07383656948787, 40.043175065259916], [-75.07443892565124, 40.04254487598299], [-75.07503370357503, 40.041941143862246], [-75.07545468513057, 40.04215513798341], [-75.07555346965913, 40.04220531304383], [-75.0765608830969, 40.042763955361195], [-75.07856631286752, 40.043905245218944], [-75.08035251915297, 40.04490616956516], [-75.08234451175854, 40.04599251847069], [-75.08300095783821, 40.046371493960706], [-75.08341587267958, 40.046600359614075], [-75.08365174732054, 40.046724542027356], [-75.08406675926334, 40.046964233443056], [-75.0856951039326, 40.04785186002135], [-75.08697553819498, 40.04856837334297], [-75.08763612729165, 40.04704383759833], [-75.08794833282026, 40.04634483545947], [-75.08831388614998, 40.045515125514], [-75.08897663424665, 40.044333503559685], [-75.0903533819722, 40.04298457247651], [-75.094176025479, 40.04502710432539], [-75.09453467758765, 40.04522327325332], [-75.09479268570398, 40.0453649583314], [-75.0951428672017, 40.04555226333374], [-75.09600049007513, 40.04600379173299], [-75.09697175151327, 40.04656599718221], [-75.09801858961916, 40.04709794044168], [-75.09880087535097, 40.04753158377558], [-75.09956065794458, 40.04797498853239], [-75.10039563010359, 40.04869298730429], [-75.10133641421142, 40.049540434137114], [-75.1018914465809, 40.05006629533136], [-75.10281166625275, 40.0508685864897], [-75.1030246267211, 40.051089122973224], [-75.10310487206245, 40.05119338851588], [-75.10075000741492, 40.052589800378406], [-75.10016462242423, 40.052947969102206], [-75.09983039549444, 40.05315383660878], [-75.09937540599458, 40.05330003122185], [-75.09911047209413, 40.05356349100261], [-75.09880255946189, 40.05371498814136], [-75.09846339383841, 40.05388885033198], [-75.09766560795609, 40.05436649656119], [-75.09748783614391, 40.05447997074385], [-75.09650501415967, 40.05517207626254], [-75.09575755844112, 40.0556306342029], [-75.09511934619522, 40.05593782266534], [-75.09468071935262, 40.056370745767495], [-75.09361503390471, 40.05741817620406], [-75.09354111024288, 40.05731198399955], [-75.09345644681767, 40.057189632053856], [-75.09333583281115, 40.057015325871674], [-75.09252516508181, 40.05691461494527], [-75.0908474266367, 40.05824780573915], [-75.08997232434874, 40.05782207720906]]]}}, {"id": "8340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.06540361474656, 40.05081003955534], [-75.06513211427097, 40.05066554213725], [-75.06484350368635, 40.050495128381236], [-75.0645613032086, 40.050339881398195], [-75.06418663053842, 40.05013079060843], [-75.06383084698672, 40.04993198322422], [-75.06354775787439, 40.04977992868425], [-75.0634386635129, 40.04975238066097], [-75.06238419105132, 40.049149229061904], [-75.0613752774647, 40.04858659306768], [-75.05993725162006, 40.04775231666055], [-75.05836847221693, 40.04680641598864], [-75.05806617351023, 40.046632372140266], [-75.05772602777856, 40.046411552886525], [-75.05737072220283, 40.04620859185653], [-75.05704869255719, 40.046031297565584], [-75.05671472872338, 40.04583586108637], [-75.05638402993739, 40.045640916435765], [-75.05614410928958, 40.04550022611669], [-75.05572346243962, 40.04525751492341], [-75.05464795929313, 40.04464634220914], [-75.05443484012639, 40.044529909686844], [-75.054288575661, 40.04444780416778], [-75.05460150362975, 40.04415792107146], [-75.05492781601713, 40.04385567168835], [-75.05561028491073, 40.0431883691441], [-75.05612301550626, 40.04264626875537], [-75.05670935146723, 40.04206037491096], [-75.05855594906858, 40.040312717870684], [-75.05879506193901, 40.04010164795467], [-75.06101051345323, 40.03801387425303], [-75.06106479422336, 40.03796318088107], [-75.06140380301757, 40.03813629649556], [-75.06154488245978, 40.03821427560114], [-75.06214677605868, 40.038546631227106], [-75.06268346286417, 40.03883432856052], [-75.06344313976948, 40.039269320376555], [-75.06449621821068, 40.03985446021455], [-75.06558187540165, 40.04044320316244], [-75.0660857896981, 40.04072975664135], [-75.06642601490118, 40.04093771954029], [-75.06675770935561, 40.04111460245521], [-75.06706596059117, 40.041297768499824], [-75.06739568625702, 40.04147925558724], [-75.06766325307836, 40.041635557581635], [-75.06798420272139, 40.04179847020789], [-75.06823563552051, 40.04194630812822], [-75.0685577882953, 40.04212473879472], [-75.06886529842217, 40.04229304231545], [-75.06920821257458, 40.042477206954615], [-75.06946025604138, 40.0426220306221], [-75.06976855750999, 40.042788664233946], [-75.0700275588608, 40.042931021514136], [-75.07034146085934, 40.04310166587641], [-75.07063400351964, 40.04327336991995], [-75.0710144394115, 40.04348418205174], [-75.07130585465983, 40.04364719900084], [-75.0716119804814, 40.04382430087064], [-75.0718666728502, 40.04395920354846], [-75.07224860971324, 40.044162562355126], [-75.07264598524705, 40.04439500937581], [-75.0720702659434, 40.0450251982418], [-75.07146501476772, 40.04564898413407], [-75.07088714926057, 40.04621961091087], [-75.07030203561538, 40.046823274699946], [-75.0696893040897, 40.047481945983684], [-75.06907498348741, 40.04811091937425], [-75.06847589500786, 40.04873091409659], [-75.06787343897767, 40.04935188152548], [-75.06727426491679, 40.04997353898988], [-75.06669185706753, 40.050543039089554], [-75.06604683768562, 40.05118232361415], [-75.06575581403023, 40.05100925276912], [-75.06540361474656, 40.05081003955534]]]}}, {"id": "8350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0716119804814, 40.04382430087064], [-75.07130585465983, 40.04364719900084], [-75.0710144394115, 40.04348418205174], [-75.07063400351964, 40.04327336991995], [-75.07034146085934, 40.04310166587641], [-75.0700275588608, 40.042931021514136], [-75.06976855750999, 40.042788664233946], [-75.06946025604138, 40.0426220306221], [-75.06920821257458, 40.042477206954615], [-75.06886529842217, 40.04229304231545], [-75.0685577882953, 40.04212473879472], [-75.06823563552051, 40.04194630812822], [-75.06798420272139, 40.04179847020789], [-75.06766325307836, 40.041635557581635], [-75.06739568625702, 40.04147925558724], [-75.06706596059117, 40.041297768499824], [-75.06675770935561, 40.04111460245521], [-75.06642601490118, 40.04093771954029], [-75.0660857896981, 40.04072975664135], [-75.06558187540165, 40.04044320316244], [-75.06449621821068, 40.03985446021455], [-75.06344313976948, 40.039269320376555], [-75.06268346286417, 40.03883432856052], [-75.06214677605868, 40.038546631227106], [-75.06154488245978, 40.03821427560114], [-75.06140380301757, 40.03813629649556], [-75.06106479422336, 40.03796318088107], [-75.06141110167145, 40.03763975920058], [-75.0618255356151, 40.03730550024004], [-75.06212144079021, 40.03710684041035], [-75.062502852093, 40.03689443759703], [-75.06289854950163, 40.036705949036644], [-75.06319645774718, 40.03658640547235], [-75.06356652744833, 40.03648551118628], [-75.06436363948667, 40.03630732602594], [-75.06518040298042, 40.03612573203004], [-75.0660952774568, 40.03590830909203], [-75.06767241302904, 40.03552753743839], [-75.06809997139733, 40.03543185853618], [-75.06959738437399, 40.03509441906304], [-75.07109755523071, 40.0347439109783], [-75.07148466221675, 40.03466540963907], [-75.07443993025743, 40.03398123715264], [-75.07529951176552, 40.033783704283984], [-75.07697795937855, 40.033397972680206], [-75.07744388361579, 40.033296176686676], [-75.0807438478966, 40.03253982344368], [-75.08177593009637, 40.032308839996325], [-75.08190521436933, 40.032282428233174], [-75.08200440584257, 40.0322584952175], [-75.08210904612866, 40.03222753624818], [-75.08380562658093, 40.03190043045333], [-75.08394974653352, 40.031864818843445], [-75.08408993092331, 40.03182185063179], [-75.084097405649, 40.03188155842482], [-75.08413521559794, 40.0319684446678], [-75.08427364859448, 40.032173074144445], [-75.08417226608184, 40.03231398234938], [-75.08401838790222, 40.03253985258157], [-75.08337184825928, 40.03324444864927], [-75.08292349300645, 40.03372330867389], [-75.08218024701313, 40.03448704593086], [-75.08195841577964, 40.03471897149558], [-75.08175869585502, 40.03492521355816], [-75.08157537830293, 40.03511145579118], [-75.08137885375395, 40.03531391323505], [-75.08098162607358, 40.03571413929394], [-75.08060112266844, 40.036131819358744], [-75.08024922552187, 40.03651060128627], [-75.07983718668031, 40.03692272182405], [-75.07954709690475, 40.03722276508653], [-75.07931365313148, 40.0374713951191], [-75.07915910930849, 40.037622473914574], [-75.07899997600468, 40.03779706653513], [-75.07882205767763, 40.03798920232221], [-75.07862140296287, 40.038206697716774], [-75.07838964012736, 40.03843440242911], [-75.07821099744447, 40.03861885625212], [-75.07801135411607, 40.03882753769454], [-75.07782992709585, 40.0390022391198], [-75.0773958050892, 40.03946541060029], [-75.07700242865678, 40.03988600766493], [-75.07682097008166, 40.040075356887755], [-75.07665244087141, 40.04025881302328], [-75.07623828501488, 40.04068659459254], [-75.07583571343075, 40.04109610738058], [-75.07545256782305, 40.0414780821767], [-75.07503370357503, 40.041941143862246], [-75.07443892565124, 40.04254487598299], [-75.07383656948787, 40.043175065259916], [-75.0732510924011, 40.04379731122706], [-75.07264598524705, 40.04439500937581], [-75.07224860971324, 40.044162562355126], [-75.0718666728502, 40.04395920354846], [-75.0716119804814, 40.04382430087064]]]}}, {"id": "8360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.06405818719493, 40.06677025634781], [-75.0630408094246, 40.066144789190346], [-75.06255763313197, 40.06583861502309], [-75.06218147795423, 40.06560470005923], [-75.06133659676387, 40.065057789812315], [-75.05962484879859, 40.06397538184036], [-75.05769815107087, 40.062788811856926], [-75.05614632296499, 40.06183339815738], [-75.05418457187895, 40.06071898139321], [-75.05240827802209, 40.059740597259314], [-75.05202317645325, 40.05953669355135], [-75.05058270628449, 40.058770569622034], [-75.04856087951997, 40.05766348831064], [-75.04814635480116, 40.057439439991185], [-75.04780547251835, 40.05724869132331], [-75.04739752439824, 40.05703210686795], [-75.0470043191248, 40.056819119641574], [-75.0468569505688, 40.05673893712926], [-75.04667970088784, 40.05664514380146], [-75.04653734773393, 40.05656862179591], [-75.0473796338358, 40.05574498363881], [-75.04749817741373, 40.05564927592735], [-75.04774962504511, 40.05536430870876], [-75.04905018513644, 40.05407708512535], [-75.04964729232861, 40.05347835338288], [-75.04993761409428, 40.05319662649828], [-75.05015918593955, 40.052955041413384], [-75.05034323522091, 40.05268789358886], [-75.05042475255875, 40.05257628439179], [-75.05046568303189, 40.052508291736785], [-75.0505184779635, 40.052414280789066], [-75.05071463051047, 40.0519831306507], [-75.0508348505287, 40.05150787577755], [-75.05089050413272, 40.051103695807655], [-75.050905547692, 40.05075968333635], [-75.05090916889004, 40.050580507726], [-75.05105274198593, 40.049070751012366], [-75.05112820905771, 40.04831042708993], [-75.05114765733573, 40.048114481781674], [-75.05134894495073, 40.04754785826596], [-75.05168691105588, 40.0469585760105], [-75.05221162133299, 40.046387949574495], [-75.054288575661, 40.04444780416778], [-75.05443484012639, 40.044529909686844], [-75.05464795929313, 40.04464634220914], [-75.05572346243962, 40.04525751492341], [-75.05614410928958, 40.04550022611669], [-75.05638402993739, 40.045640916435765], [-75.05671472872338, 40.04583586108637], [-75.05704869255719, 40.046031297565584], [-75.05737072220283, 40.04620859185653], [-75.05772602777856, 40.046411552886525], [-75.05806617351023, 40.046632372140266], [-75.05836847221693, 40.04680641598864], [-75.05993725162006, 40.04775231666055], [-75.0613752774647, 40.04858659306768], [-75.06238419105132, 40.049149229061904], [-75.0634386635129, 40.04975238066097], [-75.06354775787439, 40.04977992868425], [-75.06383084698672, 40.04993198322422], [-75.06418663053842, 40.05013079060843], [-75.0645613032086, 40.050339881398195], [-75.06484350368635, 40.050495128381236], [-75.06513211427097, 40.05066554213725], [-75.06540361474656, 40.05081003955534], [-75.06575581403023, 40.05100925276912], [-75.06604683768562, 40.05118232361415], [-75.06772433304438, 40.05214658768736], [-75.06850345733856, 40.052591793505435], [-75.06913354449135, 40.05295041203199], [-75.06972233687439, 40.05328592583538], [-75.0714713444968, 40.05429561144987], [-75.07325641605624, 40.05533105113294], [-75.07159330153667, 40.05710541404976], [-75.07041884608611, 40.058348266294544], [-75.06922522469736, 40.05958424575375], [-75.06876647953051, 40.06004889185658], [-75.06807519408441, 40.0608252823429], [-75.06894885909264, 40.061300326928006], [-75.06988024443862, 40.061825341066864], [-75.06502668978634, 40.067345239044975], [-75.06405818719493, 40.06677025634781]]]}}, {"id": "8370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.01456067078037, 40.13768065893307], [-75.0138684262985, 40.13725936442157], [-75.01223394265399, 40.136258288870415], [-75.01145933375201, 40.13578384504616], [-75.01062219911778, 40.13527108950435], [-75.01042775736174, 40.13515198930369], [-75.00946320264039, 40.13457113553308], [-75.00909381736882, 40.134356185708235], [-75.00833596776289, 40.1339151761605], [-75.00690178558112, 40.13308056182538], [-75.00595861235607, 40.13253191330906], [-75.00327001426656, 40.13096784691968], [-75.00095172285465, 40.129611280464566], [-74.99974011719799, 40.12890703669493], [-74.9985346905457, 40.12819793818561], [-74.9978850588362, 40.12781794116706], [-74.99780190241209, 40.12790374778628], [-74.99757220204631, 40.12811959877898], [-74.99744965541919, 40.12825118330879], [-74.99419528808693, 40.13151014669864], [-74.99384688724413, 40.13185471136569], [-74.99367317732383, 40.13173436666953], [-74.99350785278044, 40.13161576347745], [-74.99343106095644, 40.13155152365505], [-74.99335533436061, 40.13146118845349], [-74.99321078471104, 40.131319865993845], [-74.99310093956477, 40.131185178047396], [-74.99299676270985, 40.131050626760704], [-74.99292156692285, 40.13094724398734], [-74.99284088018882, 40.130816157055825], [-74.99278026356792, 40.130726185458435], [-74.99275110516915, 40.13060649049591], [-74.99274390324655, 40.13050473851017], [-74.99277175782396, 40.13042414137247], [-74.99281359908359, 40.1303017972717], [-74.9929023373726, 40.13021177663748], [-74.9930469675919, 40.13018839744057], [-74.99310816805531, 40.13005490803291], [-74.993100548191, 40.1298936480917], [-74.9931600387094, 40.129778982289196], [-74.99327813756538, 40.12973392528314], [-74.99338897696153, 40.129704655558946], [-74.99350270793782, 40.12965078758715], [-74.99350258578647, 40.12951437573597], [-74.99344940499783, 40.12942748500944], [-74.99341711256507, 40.12917566099978], [-74.99342224211132, 40.12900309829395], [-74.99350627829726, 40.1287729279413], [-74.99366020157917, 40.12875340025432], [-74.99369171487793, 40.1286757929296], [-74.9937830750758, 40.12861413053864], [-74.99380348967514, 40.1284840181938], [-74.99366012652379, 40.12838335521616], [-74.99368703397506, 40.128209861928816], [-74.99366826208929, 40.12811363735725], [-74.99375206224478, 40.12791248437565], [-74.99389381834347, 40.127750450369135], [-74.99400459382454, 40.127676194932434], [-74.9941000243865, 40.12760737452182], [-74.99423670784721, 40.12750036439918], [-74.99440737836564, 40.12727807307649], [-74.99447276364499, 40.12711130801509], [-74.99452646102851, 40.12695296893941], [-74.99454409430443, 40.12668202702574], [-74.9944807001155, 40.12652088068956], [-74.99442639881008, 40.126415097107525], [-74.99435025872926, 40.12621882018101], [-74.99427589196361, 40.126141577996655], [-74.99415325042847, 40.12608930072979], [-74.99392432087171, 40.12604753438069], [-74.99348109976557, 40.12599918257441], [-74.99314711869496, 40.12593748455393], [-74.99287616866249, 40.125906320763235], [-74.9926359106685, 40.12591071823606], [-74.9923637235236, 40.12593321422704], [-74.99204396969058, 40.125986496201385], [-74.99170214125444, 40.12607117157965], [-74.99145379683662, 40.12613486977064], [-74.99106628732451, 40.12620393596334], [-74.99078200041933, 40.12626822208866], [-74.9906201734298, 40.12629626404043], [-74.99039532413906, 40.12625086354251], [-74.99029392602662, 40.12623039113767], [-74.99008122672589, 40.12623109067799], [-74.98974081450858, 40.12623452928292], [-74.9895593341608, 40.12623452823697], [-74.98933784425813, 40.126195834500834], [-74.98915583444865, 40.12616244294436], [-74.98905875193762, 40.126109321214216], [-74.98904187525785, 40.12601313939742], [-74.98901219261161, 40.125906494258736], [-74.98898410602332, 40.125760704715326], [-74.98906950887601, 40.125601677456196], [-74.98901350705765, 40.12547988794097], [-74.9889384974872, 40.125418589031064], [-74.98879745063422, 40.12530781757151], [-74.98870376831839, 40.12512490064517], [-74.98850020774394, 40.12469264952626], [-74.98848268484002, 40.12456597722211], [-74.98838980683794, 40.12427061582366], [-74.98836165835336, 40.12417271247097], [-74.98824027051452, 40.12404354766518], [-74.98805750308202, 40.1239593439921], [-74.98783896771224, 40.12394103529547], [-74.98770654101158, 40.123897221980116], [-74.98754265877153, 40.123790255182094], [-74.98738521497013, 40.12366457634058], [-74.98731469498354, 40.123585971982386], [-74.9871948402606, 40.1235119852043], [-74.98704500171455, 40.123477910475984], [-74.98684418330842, 40.12332652032373], [-74.98666945185785, 40.12316124321139], [-74.98651902950084, 40.12304879274083], [-74.98642454740087, 40.12304797297941], [-74.98624330656364, 40.123135040242815], [-74.98603639097097, 40.12324906180734], [-74.98591959548023, 40.12333187281942], [-74.98567431656518, 40.12348270102307], [-74.9855275955225, 40.12360397328139], [-74.98513276405075, 40.12382956806535], [-74.98499843823157, 40.123901798125566], [-74.98486488113883, 40.12393196412], [-74.98469840033007, 40.12393521553624], [-74.98455245852941, 40.12389833072942], [-74.98445461633227, 40.1238408345315], [-74.98438616735899, 40.123757923261785], [-74.98435790537371, 40.12366291838033], [-74.98430592358461, 40.12359346490056], [-74.98421274002482, 40.12356074895703], [-74.98407853783876, 40.12356042451801], [-74.98397502306135, 40.123595663268794], [-74.9836767594915, 40.123608807072536], [-74.98354349950957, 40.123631721506506], [-74.98343809993273, 40.123620478076916], [-74.98313696708402, 40.12344925398773], [-74.98290564151625, 40.12332759496191], [-74.98281907207792, 40.12327182017356], [-74.98268134745676, 40.12314951147065], [-74.98261095951418, 40.123021566745926], [-74.98258500724079, 40.12291646013414], [-74.98259313937157, 40.12276355858768], [-74.98273754554711, 40.1225370250372], [-74.98275626640915, 40.12244895670757], [-74.98272240401374, 40.12235236496688], [-74.98263348621425, 40.122215268243], [-74.98247616214583, 40.12192487866225], [-74.98229183649046, 40.12190230320981], [-74.98219181957151, 40.12180557160739], [-74.98225143867948, 40.12168801186797], [-74.98237828163757, 40.121521280553715], [-74.98238815087403, 40.12141848488436], [-74.98241194768732, 40.12129861222322], [-74.98245450499472, 40.12122852887616], [-74.98260003717536, 40.12118269249207], [-74.98276958654986, 40.1211504948091], [-74.9829306993569, 40.121093421818045], [-74.98300223393417, 40.12100807497506], [-74.98306751447676, 40.120890650179], [-74.983080804259, 40.12079664466655], [-74.98307769441928, 40.12064129742954], [-74.98303328175004, 40.12045593308441], [-74.98298283921916, 40.12034878383909], [-74.98292129453237, 40.120282001848466], [-74.98278764029821, 40.120222189804174], [-74.98269367366333, 40.120139390472424], [-74.98261806292406, 40.120046873290725], [-74.98251456218918, 40.11998923817729], [-74.98237093233877, 40.1199422464889], [-74.98216409935375, 40.11991550221207], [-74.9819809850239, 40.119909643010125], [-74.98183315979003, 40.11991914556726], [-74.9816972476433, 40.11996085947256], [-74.98158700540135, 40.12002205591612], [-74.98150715492436, 40.12007963179768], [-74.98135807846693, 40.120142795423035], [-74.98120375893839, 40.12017245535031], [-74.98105221429736, 40.12018041574893], [-74.98086939545769, 40.12016730742784], [-74.9807250555385, 40.12013771056408], [-74.98041188790387, 40.120076475793724], [-74.98029098448727, 40.1200053594499], [-74.98010425541783, 40.11985017926239], [-74.97996529974716, 40.11973470075871], [-74.98147515610661, 40.1186769133751], [-74.9832953100798, 40.11725366951866], [-74.98376690795077, 40.116945591479535], [-74.98497655197892, 40.116048088569165], [-74.98777727231318, 40.114128017574764], [-74.98962186970763, 40.11284772728174], [-74.99072087794879, 40.112101463231575], [-74.99549876139298, 40.10879904559209], [-74.99667938760946, 40.10800050653488], [-74.9968236875527, 40.10790136357909], [-74.99668944228584, 40.107775838781585], [-74.99639582594651, 40.1075218009091], [-74.99470828060764, 40.10612149353524], [-74.9944361008318, 40.10585213685131], [-74.99217821394565, 40.103963569454834], [-74.99003518154542, 40.10211898869551], [-74.98891948652006, 40.101196604672424], [-74.98807317181068, 40.10045024082944], [-74.98667529438421, 40.09927999004267], [-74.98686286259387, 40.09914759612365], [-74.98728400129649, 40.09885130072101], [-74.9875405116155, 40.09865870896836], [-74.98781255018112, 40.098403433270256], [-74.98801555830231, 40.098198226784405], [-74.98825650823251, 40.09796565247674], [-74.98845261605591, 40.09780067963804], [-74.99126578796898, 40.095779203568775], [-74.99468698631495, 40.0985157489326], [-74.99546405689867, 40.09916734037778], [-74.99657424689374, 40.100140078323584], [-74.99723871681812, 40.100751491956906], [-74.99816680486222, 40.10160707675546], [-74.99838625313424, 40.10185089076054], [-74.99873340533885, 40.10231021991832], [-74.99901105573085, 40.10257798261559], [-74.99980595308102, 40.10323798393834], [-75.001340227351, 40.10447338267896], [-75.00136789022717, 40.10456204607671], [-75.00149790449852, 40.1046791321352], [-75.00164633387656, 40.1048024998248], [-75.00179675486682, 40.10493172044542], [-75.00978586328247, 40.11144901647281], [-75.01315715970044, 40.11397164430021], [-75.01405579936676, 40.114358078192055], [-75.01488513379138, 40.114771444084184], [-75.01716677391697, 40.116117378431504], [-75.01739326479394, 40.11618138360495], [-75.01760274888854, 40.11619368898693], [-75.01790159654345, 40.116120184293074], [-75.01829950741967, 40.115780499219866], [-75.01905312452371, 40.11619950584618], [-75.01987429417981, 40.11666437903554], [-75.0209333336518, 40.1172453878266], [-75.02201567349113, 40.11781847198307], [-75.02216119910535, 40.11789417605088], [-75.02298428830309, 40.118342812032566], [-75.02377258300768, 40.11876699768091], [-75.02460789142913, 40.119217782683876], [-75.02551266739819, 40.11971559046697], [-75.02782474166607, 40.120925153598286], [-75.02854697652947, 40.12132704323474], [-75.02938197636728, 40.12173577231891], [-75.02977332370307, 40.121876166199485], [-75.03006993446725, 40.121943360379674], [-75.03043774058939, 40.12201223927109], [-75.03065632113092, 40.122031169005254], [-75.0311063297577, 40.12204446019847], [-75.03162501875032, 40.12201792395095], [-75.03214415732494, 40.12193222228967], [-75.03264767458357, 40.121787477379655], [-75.03373877093078, 40.121377934919174], [-75.03487352835602, 40.12097568456606], [-75.03649616603012, 40.12039195367696], [-75.03767077099427, 40.12014456163275], [-75.03790870422559, 40.12016854479975], [-75.03165368202416, 40.12450474988725], [-75.02578697968089, 40.12857094226713], [-75.02535538098483, 40.12889038492844], [-75.02489288491259, 40.12921773685513], [-75.02057228005175, 40.13227559885376], [-75.01795079475555, 40.1348493174986], [-75.01496568865494, 40.13792673459656], [-75.01456067078037, 40.13768065893307]]]}}, {"id": "8380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.04437544784992, 40.076515986745726], [-75.04420098626825, 40.076340808020944], [-75.04398238591108, 40.07603152918247], [-75.04381666845494, 40.07584388336682], [-75.04350437156484, 40.07540250824636], [-75.04344653650189, 40.07519839220523], [-75.04347130832939, 40.07501237386902], [-75.0434818653947, 40.07493311127461], [-75.04358058733531, 40.074732682333874], [-75.04381174842123, 40.07431361061849], [-75.04387877137246, 40.07408075501489], [-75.04388862161355, 40.07383388162932], [-75.04367347260144, 40.07364506960524], [-75.04338088274055, 40.07353680258656], [-75.04299664661441, 40.0734517197984], [-75.0427300417902, 40.07331238140349], [-75.04234135855599, 40.073132150758376], [-75.04185417957775, 40.07294009334167], [-75.0416120446288, 40.07280766508903], [-75.04138815858997, 40.072631315890035], [-75.04132108124091, 40.072452325411106], [-75.04136137041226, 40.07226952947355], [-75.04147430148507, 40.07212646098452], [-75.0418127306453, 40.071912676397304], [-75.04208473704509, 40.07170999709947], [-75.04248841833828, 40.07130766563954], [-75.04276168364336, 40.07107333361617], [-75.04285241512586, 40.07086638181349], [-75.04302513401653, 40.07046494259144], [-75.04357575655808, 40.069479984511155], [-75.04376191556884, 40.06915489498487], [-75.04385971299041, 40.06877069871069], [-75.04388739876102, 40.06828347515002], [-75.04386302954859, 40.068067475794585], [-75.0437825664205, 40.067397128713154], [-75.04367908978594, 40.06709689587563], [-75.04350844181876, 40.06682676256377], [-75.04331929512507, 40.06660688172657], [-75.04311837397684, 40.06647542875296], [-75.04289147572567, 40.066375041588714], [-75.04252300081988, 40.06630933607577], [-75.04214704345395, 40.06622444269112], [-75.04181278865332, 40.06612786129399], [-75.04147018298123, 40.066018667392534], [-75.0413335088859, 40.065974787552165], [-75.04117363314958, 40.06591649432094], [-75.04224674786106, 40.06353209298826], [-75.042735081359, 40.062373930726196], [-75.04413865112885, 40.0593298577121], [-75.04423684741798, 40.05912267367909], [-75.04452138806724, 40.05870458649961], [-75.04479205913208, 40.058370038156426], [-75.04653734773393, 40.05656862179591], [-75.04667970088784, 40.05664514380146], [-75.0468569505688, 40.05673893712926], [-75.0470043191248, 40.056819119641574], [-75.04739752439824, 40.05703210686795], [-75.04780547251835, 40.05724869132331], [-75.04814635480116, 40.057439439991185], [-75.04856087951997, 40.05766348831064], [-75.05058270628449, 40.058770569622034], [-75.05202317645325, 40.05953669355135], [-75.05240827802209, 40.059740597259314], [-75.05418457187895, 40.06071898139321], [-75.05614632296499, 40.06183339815738], [-75.05769815107087, 40.062788811856926], [-75.05962484879859, 40.06397538184036], [-75.06133659676387, 40.065057789812315], [-75.06218147795423, 40.06560470005923], [-75.06255763313197, 40.06583861502309], [-75.0630408094246, 40.066144789190346], [-75.06405818719493, 40.06677025634781], [-75.06502668978634, 40.067345239044975], [-75.0658467809666, 40.067832099023924], [-75.06735652846181, 40.06872835474917], [-75.0678274453076, 40.06896467197677], [-75.06749638627788, 40.06910861366898], [-75.06719852233356, 40.06923872176233], [-75.06690135658151, 40.06936976897946], [-75.06660492565369, 40.06950177780655], [-75.0663092707974, 40.06963477263976], [-75.0660137588297, 40.06976806832083], [-75.0657180402657, 40.06990130888495], [-75.06542327369665, 40.070035772044], [-75.06513063452837, 40.070172754836676], [-75.06484130035514, 40.07031355796916], [-75.06455614032294, 40.07045915598219], [-75.06427369713427, 40.070608024523715], [-75.06399338735496, 40.07075943635126], [-75.06371496187346, 40.07091301803206], [-75.0634381718676, 40.0710683889291], [-75.06316277192772, 40.071225171185866], [-75.06288851078965, 40.07138298680624], [-75.06261533565403, 40.07154180663149], [-75.06234372144463, 40.07170234278835], [-75.06207392243033, 40.0718647490067], [-75.06180618592673, 40.07202914731945], [-75.06154075136922, 40.07219565146795], [-75.0612778636246, 40.07236438613518], [-75.06101694643431, 40.07253494680178], [-75.06075741494566, 40.07270693865332], [-75.06049970478726, 40.07288061517643], [-75.06024425155283, 40.07305623076177], [-75.05999149552423, 40.07323403991354], [-75.05974187453398, 40.07341429978524], [-75.05949570921547, 40.07359720622223], [-75.05925247709082, 40.0737824478666], [-75.05901157500546, 40.07396955919014], [-75.05877243914605, 40.074158088195375], [-75.05853450793607, 40.07434758563563], [-75.05829722217847, 40.07453760141421], [-75.0580600180249, 40.07472768441965], [-75.05782233982951, 40.074917383728305], [-75.05758362004983, 40.07510625263813], [-75.05552497347986, 40.076671328095905], [-75.05537620540206, 40.07678442526513], [-75.05534535391104, 40.07671670469455], [-75.05517312496838, 40.07648456942428], [-75.05498466818896, 40.07624571716204], [-75.0547928060949, 40.07608904559435], [-75.05455976708468, 40.07593796030108], [-75.05431382253069, 40.07590051164817], [-75.05414725883203, 40.07594095572149], [-75.05399541632775, 40.076026097060954], [-75.05396616603974, 40.07613946065988], [-75.0539296157627, 40.07643639594118], [-75.05386828593147, 40.07694183832337], [-75.05377757875698, 40.07714879871762], [-75.05362308928163, 40.07730040711198], [-75.05346174180787, 40.0774170064721], [-75.05325296607438, 40.07748180349217], [-75.0529128500191, 40.07753084556232], [-75.05263142116847, 40.077555922185596], [-75.05234301422513, 40.077549152659024], [-75.05212826288668, 40.077556783823084], [-75.05198616329548, 40.07760413533933], [-75.05186551085286, 40.07773436021535], [-75.05168591663612, 40.077894879164575], [-75.0515065722058, 40.07804906936406], [-75.05122809364289, 40.07820726754548], [-75.0509663444948, 40.07835952001648], [-75.0506484231972, 40.078472438334956], [-75.05038994860831, 40.07854239912013], [-75.05015720083807, 40.07858761908509], [-75.04995917909704, 40.07858930313321], [-75.04973719410566, 40.07857141713605], [-75.04940833315213, 40.07854468046004], [-75.04883226443728, 40.07851213372634], [-75.04818367057818, 40.07843669765365], [-75.04777938855011, 40.07843986397968], [-75.04743152769055, 40.07847603650771], [-75.04707046516083, 40.07842952916896], [-75.04671865181837, 40.07835789268325], [-75.04631143038561, 40.078227928813625], [-75.04595415584761, 40.078086466332714], [-75.04561487822417, 40.07790741100268], [-75.04534926028896, 40.07774275870906], [-75.045181767739, 40.07759942286984], [-75.04505497403682, 40.077469718840085], [-75.04496189751694, 40.077321798879794], [-75.044893542534, 40.07717445983989], [-75.04482771390366, 40.07696382122396], [-75.04474262752414, 40.076822426205], [-75.04461019606796, 40.07671426002101], [-75.04437544784992, 40.076515986745726]]]}}, {"id": "8390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.001340227351, 40.10447338267896], [-74.99980595308102, 40.10323798393834], [-74.99901105573085, 40.10257798261559], [-74.99873340533885, 40.10231021991832], [-74.99838625313424, 40.10185089076054], [-74.99816680486222, 40.10160707675546], [-74.99723871681812, 40.100751491956906], [-74.99657424689374, 40.100140078323584], [-74.99546405689867, 40.09916734037778], [-74.99468698631495, 40.0985157489326], [-74.99126578796898, 40.095779203568775], [-74.98845261605591, 40.09780067963804], [-74.98825650823251, 40.09796565247674], [-74.98801555830231, 40.098198226784405], [-74.98781255018112, 40.098403433270256], [-74.9875405116155, 40.09865870896836], [-74.98728400129649, 40.09885130072101], [-74.98686286259387, 40.09914759612365], [-74.98667529438421, 40.09927999004267], [-74.98581371160367, 40.09855867567171], [-74.98431375717901, 40.09729964811916], [-74.98410643925581, 40.09710654276584], [-74.98001838277072, 40.09371126251982], [-74.97803583627811, 40.09205594381622], [-74.97719326038882, 40.09133676742325], [-74.975220751884, 40.089854176405005], [-74.97335356637348, 40.088504638917414], [-74.97226035954658, 40.08772373967268], [-74.97162854838277, 40.08725109988515], [-74.97138607796352, 40.08705566489162], [-74.97117513228486, 40.08691367533132], [-74.97056950632104, 40.086385994240395], [-74.97018809543366, 40.086023191707326], [-74.96988962485035, 40.085709477705606], [-74.96866569300502, 40.084332634218896], [-74.96755307599429, 40.08307629554037], [-74.96682090137726, 40.082216473817276], [-74.96666319536153, 40.08201435740862], [-74.96646756928382, 40.08173967536829], [-74.9663404029493, 40.08154234032804], [-74.96618187901562, 40.08124937703642], [-74.96607904775334, 40.08103230110434], [-74.96595348766569, 40.08072432479731], [-74.96582688977068, 40.08037333929694], [-74.96567839184083, 40.079904498837685], [-74.96562550287764, 40.07962691425054], [-74.96487823382172, 40.07739275793584], [-74.96481054613699, 40.077165438262], [-74.96493188085668, 40.07718031354425], [-74.96504091549386, 40.07719599713985], [-74.965148051296, 40.077206220968435], [-74.96525421741462, 40.07721635091551], [-74.96544038515029, 40.07723421765086], [-74.96573511033144, 40.07725471421994], [-74.96603024649585, 40.077265202756344], [-74.96618243056821, 40.07726388115482], [-74.96629724518719, 40.077219916470604], [-74.96648834432457, 40.07711769602994], [-74.96659598022093, 40.07703682764955], [-74.96666915154685, 40.076948447512486], [-74.96674930682953, 40.07668994452809], [-74.96677379252641, 40.076516909823034], [-74.96682050111231, 40.07643790503121], [-74.9669402030141, 40.0763807006061], [-74.9672676468526, 40.07634522260966], [-74.96755112221653, 40.07632203482477], [-74.96780717414165, 40.076331573473695], [-74.96828170393493, 40.07631301094343], [-74.96874402870634, 40.07627411483709], [-74.96889214145376, 40.07626601242334], [-74.96908285648924, 40.07627897608996], [-74.96929524748076, 40.0763993103491], [-74.96947991074815, 40.076453865465815], [-74.96962686258466, 40.07647411507143], [-74.96978610465588, 40.07645960291672], [-74.96989990768837, 40.07638722918965], [-74.97001078599946, 40.076333147546435], [-74.97010904979206, 40.07626874524497], [-74.97025018729272, 40.076218733812205], [-74.97036742613606, 40.07622156960225], [-74.97051017169011, 40.07623837967644], [-74.97069213569767, 40.07625279689518], [-74.97083720292183, 40.07621289790571], [-74.97094035284289, 40.07613525649743], [-74.9710531446344, 40.07603447436548], [-74.97117027990238, 40.07593379715892], [-74.9712602656344, 40.075859175630335], [-74.97134727869772, 40.07575109295855], [-74.97138095363404, 40.075671769504446], [-74.97141442219036, 40.075597452811046], [-74.97139653928615, 40.07550352705863], [-74.97134839710093, 40.07540553298759], [-74.9712887295793, 40.07527052803402], [-74.9712316315386, 40.07517899519269], [-74.97123573174729, 40.07507892312442], [-74.97124851468415, 40.07497906281009], [-74.97127962459003, 40.074856271851594], [-74.97131832623661, 40.07476037491537], [-74.97136584477349, 40.07466135448893], [-74.97145107957475, 40.07459663518703], [-74.97159193923397, 40.07455329513424], [-74.971618569112, 40.07443373515477], [-74.9715748371766, 40.07433417540154], [-74.97148638872916, 40.07426525757462], [-74.97127013526364, 40.07413314518485], [-74.97107897971678, 40.07402501489192], [-74.97102704330784, 40.07391357140299], [-74.97103575842551, 40.073806933088406], [-74.97110471819212, 40.073715109117074], [-74.97119863239095, 40.07365059900637], [-74.97153792048043, 40.07343175005237], [-74.97173204420336, 40.07336131576828], [-74.97187248889232, 40.07332798171143], [-74.9720129369216, 40.07329464846803], [-74.97212828752855, 40.07323733548228], [-74.97221881743907, 40.073149370779944], [-74.97227108822958, 40.07304044679336], [-74.97229648565562, 40.072950906722994], [-74.97233111548009, 40.07284823503492], [-74.97241250049727, 40.07245286045425], [-74.97243355865558, 40.072363214573826], [-74.9725001510312, 40.072222918060405], [-74.97257371939335, 40.072124524136385], [-74.97265433303046, 40.07206637198485], [-74.97279641599361, 40.07199300853841], [-74.97291651707785, 40.07192579152796], [-74.9730619834403, 40.07187588331615], [-74.9732117943859, 40.0718260781077], [-74.9733802024007, 40.07174667315732], [-74.97350105118124, 40.071661108899875], [-74.97358391660255, 40.07154791545609], [-74.9736049716868, 40.07145827112839], [-74.97362385436797, 40.071368574310284], [-74.97366824377356, 40.071292848523456], [-74.97380646071099, 40.07120770449727], [-74.97397541142657, 40.07111495616597], [-74.9741176251625, 40.0710382549561], [-74.97425820387885, 40.0710015828951], [-74.97441587522754, 40.07097200136158], [-74.97461033024312, 40.070893221130845], [-74.97480017054443, 40.07082101057005], [-74.97489828421111, 40.07075993839606], [-74.97497984844728, 40.07067843388479], [-74.97503983983766, 40.07059306809202], [-74.97506998790081, 40.07049362593002], [-74.97509999470132, 40.0703975197176], [-74.97512099163596, 40.070256118073274], [-74.97509634345491, 40.07006186028319], [-74.9751046434313, 40.069965228978134], [-74.97516422454726, 40.06988987223098], [-74.97524931211711, 40.06982848523762], [-74.97534728750703, 40.069770747848224], [-74.97545787889761, 40.06972333310177], [-74.97558054057365, 40.06969958254904], [-74.97572220605018, 40.06963622369192], [-74.97596687130982, 40.069498553039736], [-74.9761833006568, 40.06941362564576], [-74.97640054799047, 40.06930868140618], [-74.97660774856126, 40.06923688523815], [-74.97673190691846, 40.069176440194866], [-74.9768269722155, 40.06908357343089], [-74.97687109358594, 40.068961095243665], [-74.9769103270948, 40.06885185474146], [-74.9770056168985, 40.06864713714278], [-74.97707756245333, 40.06848192130966], [-74.97715180188668, 40.06836684766548], [-74.97720324400308, 40.06827793697835], [-74.97726934416491, 40.06814931029942], [-74.97732851344432, 40.06808395797298], [-74.97745871910837, 40.067981920573025], [-74.9776269727749, 40.0679058444728], [-74.97785696553466, 40.067807884785346], [-74.97800812722319, 40.06772471616518], [-74.97815942476227, 40.067638213971016], [-74.97837054917967, 40.06757652753234], [-74.97861627153421, 40.067519012746146], [-74.97888099496791, 40.06742188693341], [-74.97909184669426, 40.06736687044966], [-74.97918140471873, 40.06730225004122], [-74.97941166455479, 40.06719761505796], [-74.97958033525174, 40.067058104670515], [-74.97971202302425, 40.06697279648664], [-74.97979174768422, 40.06688289603536], [-74.97984040867183, 40.06675551815952], [-74.9799084032363, 40.06663361450377], [-74.98004762338027, 40.066523444140216], [-74.98016418169048, 40.06643610016845], [-74.9802671710583, 40.06636178555352], [-74.98037761840621, 40.066317702170856], [-74.98051356836118, 40.066287589017335], [-74.98067570426821, 40.066254767466326], [-74.98075223552989, 40.066189832838035], [-74.98085685804622, 40.06607548924987], [-74.98092145233923, 40.06598355374982], [-74.98096692726357, 40.065827715907844], [-74.98094625650972, 40.065695327413714], [-74.98092063219168, 40.0655778457586], [-74.98096805301702, 40.06550935577075], [-74.98093027752608, 40.065434396469676], [-74.98076818185282, 40.06520352869084], [-74.98069204514626, 40.06508455202811], [-74.98067034061296, 40.06500976100377], [-74.98106055052514, 40.06492588830355], [-74.9823554882295, 40.064673770476055], [-74.98242024726542, 40.06534949169114], [-74.98241394977978, 40.065737371587836], [-74.98236541229721, 40.06610959079852], [-74.9823023375811, 40.066421684760115], [-74.9819513580679, 40.06756396300465], [-74.98182918044128, 40.067971284274606], [-74.98172734938943, 40.06841249102111], [-74.98164897881254, 40.06881132519683], [-74.9815649114516, 40.06952343351367], [-74.98141437652902, 40.07098998904093], [-74.98134747214282, 40.07149443151838], [-74.98125842441804, 40.07178484849688], [-74.98117480683793, 40.071986132815525], [-74.98287766317866, 40.07326270833547], [-74.98317558338958, 40.07346948631761], [-74.98365896723641, 40.073787978727594], [-74.98463233010169, 40.07433652288278], [-74.98541434288165, 40.074757414542674], [-74.98574963774715, 40.07492132700258], [-74.98599482568952, 40.07502073363189], [-74.9862868797863, 40.07510790761913], [-74.98657006926763, 40.07519932165152], [-74.98688627999283, 40.07533382860203], [-74.98716340447214, 40.07550301771704], [-74.987383258211, 40.07565524633398], [-74.98756894135704, 40.0758266045254], [-74.98827235695214, 40.07646712169232], [-74.98885168056458, 40.07699519493959], [-74.98921996786541, 40.077297778639334], [-74.990003702322, 40.07797687101398], [-74.99118237508259, 40.07898035939267], [-74.9913784196397, 40.07884341256029], [-74.99149575676354, 40.078738917622466], [-74.99161486081663, 40.07859103005699], [-74.9917502324365, 40.07835878497265], [-74.99188545930957, 40.07815294738114], [-74.99202158831007, 40.07791348464197], [-74.99214452925322, 40.07767115166447], [-74.99226415503534, 40.077385191469126], [-74.99237406663944, 40.07705607405646], [-74.99248972749447, 40.076630909470836], [-74.99464211008906, 40.076966309251105], [-74.99492079563227, 40.07703174634329], [-74.9952821379686, 40.07715036703388], [-74.9954437473729, 40.07688764666741], [-74.99556469868985, 40.07669412464115], [-74.99571972139283, 40.07638810043395], [-74.99587217302256, 40.076005529452345], [-74.99589315117564, 40.07587098620906], [-74.99591862423539, 40.075728059062044], [-74.99592659278815, 40.075531830794006], [-74.99592194375668, 40.075303406093376], [-74.99740306779414, 40.073875826223386], [-74.99766811629149, 40.073622153962596], [-74.99802898075785, 40.07322340870369], [-74.99810530662826, 40.073152295469725], [-74.99836399949143, 40.07284546179489], [-74.99854251966426, 40.072661980060474], [-74.99864769578822, 40.072562334898095], [-74.9989482944393, 40.07251845219748], [-74.99953545380916, 40.07187173742727], [-75.00225469148393, 40.07335752168253], [-75.00233985929778, 40.073081104824716], [-75.00246652040993, 40.07275315621835], [-75.00262103331933, 40.07248393598939], [-75.00282981283493, 40.072181176068305], [-75.00304118878766, 40.07190750917391], [-75.00330164540017, 40.071635015988534], [-75.00360740450331, 40.071363604993394], [-75.0039421890115, 40.071121919058655], [-75.0042297892391, 40.07092555896701], [-75.00483354427188, 40.07057416485648], [-75.00727005000492, 40.06916284283319], [-75.01133066624226, 40.07118005144515], [-75.01312768506725, 40.07207268034328], [-75.014088715379, 40.07264365237408], [-75.01506505696598, 40.073179433645436], [-75.01683647482798, 40.074171198321956], [-75.0170511604494, 40.07429139164119], [-75.01714477252432, 40.074343800429524], [-75.02174937544991, 40.07695644903743], [-75.02371460278547, 40.07799573890452], [-75.02537845533197, 40.07894441699348], [-75.02844973853612, 40.08067939112584], [-75.02860591922072, 40.08077109526856], [-75.02698441790379, 40.082416567036645], [-75.02677501201643, 40.08266059899274], [-75.02489690219, 40.084602454866946], [-75.02477351284554, 40.084719170290285], [-75.02416289978059, 40.085352135669666], [-75.02077321098622, 40.088869692247826], [-75.02059729180073, 40.0890453629084], [-75.01859914987443, 40.09110979481837], [-75.01671960534827, 40.093058557376125], [-75.0152249575392, 40.09462706024111], [-75.01503017200935, 40.094813029183335], [-75.013734888549, 40.09608863203972], [-75.01343102395374, 40.096351954570224], [-75.01306376029899, 40.096647549345235], [-75.0119460309999, 40.09749968924053], [-75.01023965777635, 40.0986274887173], [-75.00954611943996, 40.09912788213696], [-75.00835671186192, 40.09996020510662], [-75.00609069595153, 40.10151430747137], [-75.0049069951211, 40.10232227359235], [-75.00308446345512, 40.103582544083494], [-75.00209020651084, 40.104269754465854], [-75.00149790449852, 40.1046791321352], [-75.00136789022717, 40.10456204607671], [-75.001340227351, 40.10447338267896]]]}}, {"id": "8400", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.00179675486682, 40.10493172044542], [-75.00164633387656, 40.1048024998248], [-75.00149790449852, 40.1046791321352], [-75.00209020651084, 40.104269754465854], [-75.00308446345512, 40.103582544083494], [-75.0049069951211, 40.10232227359235], [-75.00609069595153, 40.10151430747137], [-75.00835671186192, 40.09996020510662], [-75.00954611943996, 40.09912788213696], [-75.01023965777635, 40.0986274887173], [-75.0119460309999, 40.09749968924053], [-75.01306376029899, 40.096647549345235], [-75.01343102395374, 40.096351954570224], [-75.013734888549, 40.09608863203972], [-75.01503017200935, 40.094813029183335], [-75.0152249575392, 40.09462706024111], [-75.01671960534827, 40.093058557376125], [-75.01859914987443, 40.09110979481837], [-75.02059729180073, 40.0890453629084], [-75.02077321098622, 40.088869692247826], [-75.02416289978059, 40.085352135669666], [-75.02477351284554, 40.084719170290285], [-75.02489690219, 40.084602454866946], [-75.02677501201643, 40.08266059899274], [-75.02698441790379, 40.082416567036645], [-75.02860591922072, 40.08077109526856], [-75.02936100367475, 40.07996554086386], [-75.03024499085504, 40.07905911048138], [-75.03265156130533, 40.076563913553244], [-75.03345632981974, 40.075733552485595], [-75.03394468660325, 40.07522585640025], [-75.0348403042355, 40.07430802573013], [-75.03688057928926, 40.072209186628385], [-75.03797590147553, 40.071078701239365], [-75.03895106634981, 40.07005670880712], [-75.03937274031372, 40.0695553420102], [-75.03952749808136, 40.0693585665246], [-75.03990055038933, 40.0687164982515], [-75.04027165133148, 40.06792050879335], [-75.04104856821186, 40.06619437066853], [-75.04117363314958, 40.06591649432094], [-75.0413335088859, 40.065974787552165], [-75.04147018298123, 40.066018667392534], [-75.04181278865332, 40.06612786129399], [-75.04214704345395, 40.06622444269112], [-75.04252300081988, 40.06630933607577], [-75.04289147572567, 40.066375041588714], [-75.04311837397684, 40.06647542875296], [-75.04331929512507, 40.06660688172657], [-75.04350844181876, 40.06682676256377], [-75.04367908978594, 40.06709689587563], [-75.0437825664205, 40.067397128713154], [-75.04386302954859, 40.068067475794585], [-75.04388739876102, 40.06828347515002], [-75.04385971299041, 40.06877069871069], [-75.04376191556884, 40.06915489498487], [-75.04357575655808, 40.069479984511155], [-75.04302513401653, 40.07046494259144], [-75.04285241512586, 40.07086638181349], [-75.04276168364336, 40.07107333361617], [-75.04248841833828, 40.07130766563954], [-75.04208473704509, 40.07170999709947], [-75.0418127306453, 40.071912676397304], [-75.04147430148507, 40.07212646098452], [-75.04136137041226, 40.07226952947355], [-75.04132108124091, 40.072452325411106], [-75.04138815858997, 40.072631315890035], [-75.0416120446288, 40.07280766508903], [-75.04185417957775, 40.07294009334167], [-75.04234135855599, 40.073132150758376], [-75.0427300417902, 40.07331238140349], [-75.04299664661441, 40.0734517197984], [-75.04338088274055, 40.07353680258656], [-75.04367347260144, 40.07364506960524], [-75.04388862161355, 40.07383388162932], [-75.04387877137246, 40.07408075501489], [-75.04381174842123, 40.07431361061849], [-75.04358058733531, 40.074732682333874], [-75.0434818653947, 40.07493311127461], [-75.04347130832939, 40.07501237386902], [-75.04344653650189, 40.07519839220523], [-75.04350437156484, 40.07540250824636], [-75.04381666845494, 40.07584388336682], [-75.04398238591108, 40.07603152918247], [-75.04420098626825, 40.076340808020944], [-75.04437544784992, 40.076515986745726], [-75.04461019606796, 40.07671426002101], [-75.04474262752414, 40.076822426205], [-75.04482771390366, 40.07696382122396], [-75.044893542534, 40.07717445983989], [-75.04496189751694, 40.077321798879794], [-75.04505497403682, 40.077469718840085], [-75.045181767739, 40.07759942286984], [-75.04534926028896, 40.07774275870906], [-75.04561487822417, 40.07790741100268], [-75.04595415584761, 40.078086466332714], [-75.04631143038561, 40.078227928813625], [-75.04671865181837, 40.07835789268325], [-75.04707046516083, 40.07842952916896], [-75.04743152769055, 40.07847603650771], [-75.04777938855011, 40.07843986397968], [-75.04818367057818, 40.07843669765365], [-75.04883226443728, 40.07851213372634], [-75.04940833315213, 40.07854468046004], [-75.04973719410566, 40.07857141713605], [-75.04995917909704, 40.07858930313321], [-75.05015720083807, 40.07858761908509], [-75.05038994860831, 40.07854239912013], [-75.0506484231972, 40.078472438334956], [-75.0509663444948, 40.07835952001648], [-75.05122809364289, 40.07820726754548], [-75.0515065722058, 40.07804906936406], [-75.05168591663612, 40.077894879164575], [-75.05186551085286, 40.07773436021535], [-75.05198616329548, 40.07760413533933], [-75.05212826288668, 40.077556783823084], [-75.05234301422513, 40.077549152659024], [-75.05263142116847, 40.077555922185596], [-75.0529128500191, 40.07753084556232], [-75.05325296607438, 40.07748180349217], [-75.05346174180787, 40.0774170064721], [-75.05362308928163, 40.07730040711198], [-75.05377757875698, 40.07714879871762], [-75.05386828593147, 40.07694183832337], [-75.0539296157627, 40.07643639594118], [-75.05396616603974, 40.07613946065988], [-75.05399541632775, 40.076026097060954], [-75.05414725883203, 40.07594095572149], [-75.05431382253069, 40.07590051164817], [-75.05455976708468, 40.07593796030108], [-75.0547928060949, 40.07608904559435], [-75.05498466818896, 40.07624571716204], [-75.05517312496838, 40.07648456942428], [-75.05534535391104, 40.07671670469455], [-75.05537620540206, 40.07678442526513], [-75.05542121699486, 40.0768832205816], [-75.05550481551758, 40.07706258916549], [-75.0558024112148, 40.07725330993658], [-75.05624009117663, 40.07744731438692], [-75.05653272186636, 40.07755555053142], [-75.05677590846673, 40.077662625406894], [-75.05703783549077, 40.077713114500966], [-75.05730077170082, 40.07773828386777], [-75.05751728221968, 40.07768633216519], [-75.05768811786795, 40.077538271537975], [-75.05789668999567, 40.07727070798033], [-75.0581237512023, 40.076952890732144], [-75.05835106158882, 40.076628740973035], [-75.05859836366761, 40.07621635755008], [-75.05869131808406, 40.0759524201826], [-75.05877539994854, 40.0757041180278], [-75.05904686857083, 40.07551405825606], [-75.05944967163806, 40.07533974506808], [-75.05990040944747, 40.075204569426475], [-75.06045801177557, 40.07507822835723], [-75.06106279412101, 40.07501001288991], [-75.06170078559855, 40.07493623409436], [-75.06220794047137, 40.07483404907385], [-75.06260897559609, 40.07470403576466], [-75.06304372192314, 40.07455580181499], [-75.0632609701968, 40.07448484848411], [-75.06347470755827, 40.07450251759421], [-75.06361851137763, 40.0746199278114], [-75.06370936954882, 40.07482480332952], [-75.0638219366318, 40.07510621883967], [-75.06394512893239, 40.075327689336845], [-75.06391861912485, 40.075580509452834], [-75.06381196651216, 40.0757744329674], [-75.0636473829897, 40.07597333837383], [-75.06334719235429, 40.076264112653824], [-75.06304700024614, 40.07655488797269], [-75.06273731119458, 40.07687711754378], [-75.06251579036129, 40.077055682578724], [-75.06232124740075, 40.07717785385517], [-75.0621726737404, 40.07718071525179], [-75.06195892835154, 40.07716304192318], [-75.06176116081122, 40.0771584160093], [-75.06160284111687, 40.07719906639292], [-75.0615249157013, 40.07729228275948], [-75.06148543068252, 40.07745609581747], [-75.06151646881796, 40.077713428092345], [-75.06163003522988, 40.077969527351115], [-75.06170516129058, 40.07815502713799], [-75.06179204337724, 40.07825210050341], [-75.0618954033809, 40.07834955741347], [-75.06198102916176, 40.078478280995135], [-75.06206715943975, 40.078594343139876], [-75.06206088712396, 40.07875259702242], [-75.06203662816267, 40.078948446111255], [-75.06199588892682, 40.07914390974338], [-75.06183927818138, 40.07934933453984], [-75.06167718722045, 40.07948493440269], [-75.06151810922886, 40.07954457455014], [-75.06132782260427, 40.079559130549555], [-75.06114502715863, 40.07959286989936], [-75.06099418571385, 40.07965270023839], [-75.06082485791416, 40.079762787799226], [-75.0606375408534, 40.07991046736888], [-75.0604349954488, 40.08002611230843], [-75.06023370827079, 40.080110104778555], [-75.05992328166774, 40.08024223237487], [-75.05962134585386, 40.080368219983605], [-75.05940930199259, 40.08051532061701], [-75.05916303922639, 40.08069329950346], [-75.05899098615006, 40.08094668209277], [-75.05897043153769, 40.08101674440808], [-75.05882049051664, 40.08126914787851], [-75.05865483943762, 40.081413698717384], [-75.05847749470482, 40.08151703026426], [-75.05831387189762, 40.08161044616171], [-75.05810547877068, 40.08165674648728], [-75.0578855956929, 40.08165671504968], [-75.05768507545918, 40.081672491463536], [-75.05752891747137, 40.08174560762594], [-75.05739573415532, 40.08191139086551], [-75.05730519147647, 40.08217797800818], [-75.05735799887307, 40.08235835532862], [-75.05743199455884, 40.08250851872775], [-75.05762419352845, 40.08270239814969], [-75.05786482173603, 40.082851346657215], [-75.05813954732395, 40.08298061972417], [-75.05840380330494, 40.083037990541975], [-75.05870418288193, 40.08302455294798], [-75.05903703982814, 40.08303234667941], [-75.05930149847765, 40.08308460223097], [-75.059463055046, 40.08321122260964], [-75.05944442943007, 40.083512764891076], [-75.05942117231665, 40.08376301499222], [-75.05939791730421, 40.084013266940076], [-75.05940480238687, 40.084343556793144], [-75.05942270649093, 40.084564061096536], [-75.05945311392284, 40.08480533248337], [-75.05953738974036, 40.08503250834953], [-75.05965515328373, 40.085255350968396], [-75.05980438212187, 40.08552499483347], [-75.05992011887795, 40.08579897163223], [-75.06003442287486, 40.0860251054256], [-75.05997263007093, 40.08606746524045], [-75.05909916467368, 40.086670750169496], [-75.05872045663507, 40.08708410146879], [-75.05828040137938, 40.087783892001646], [-75.05769466444262, 40.088691375176175], [-75.0570680545122, 40.08969819867304], [-75.05645890895181, 40.09023614591196], [-75.0556873901617, 40.09075402583353], [-75.05424117419759, 40.09165232479042], [-75.05390748141029, 40.09187479828705], [-75.05359684465985, 40.092145793219075], [-75.05301377767144, 40.09266948399353], [-75.0529389112885, 40.092736131135304], [-75.052641232185, 40.0930011284728], [-75.0521008379093, 40.093511371602695], [-75.05148676871707, 40.0940921800102], [-75.05075288836791, 40.09478108446115], [-75.04842883493836, 40.09707683670527], [-75.04711687101697, 40.0983783993297], [-75.0462124467127, 40.09879441808162], [-75.04553188548518, 40.09911447843645], [-75.04359687718139, 40.1000244552356], [-75.04321102489683, 40.10023003104892], [-75.04261449745741, 40.10050531238359], [-75.03985773860795, 40.10183646397926], [-75.0385638336794, 40.10246180447796], [-75.03697023344401, 40.10318490149781], [-75.03497397154703, 40.10416480472308], [-75.03439861780558, 40.10442959994114], [-75.03299801495899, 40.10511107854101], [-75.02888459210209, 40.10254424963743], [-75.02791301286108, 40.10195014011948], [-75.02763612412987, 40.10176688834416], [-75.02696824217134, 40.101507255222664], [-75.0256564318838, 40.10114330040666], [-75.02406487925523, 40.100738749448176], [-75.02392704057284, 40.10070388017047], [-75.00978586328247, 40.11144901647281], [-75.00179675486682, 40.10493172044542]]]}}, {"id": "8410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.02844973853612, 40.08067939112584], [-75.02537845533197, 40.07894441699348], [-75.02371460278547, 40.07799573890452], [-75.02174937544991, 40.07695644903743], [-75.01714477252432, 40.074343800429524], [-75.0170511604494, 40.07429139164119], [-75.01683647482798, 40.074171198321956], [-75.01506505696598, 40.073179433645436], [-75.014088715379, 40.07264365237408], [-75.01312768506725, 40.07207268034328], [-75.01133066624226, 40.07118005144515], [-75.01140118198131, 40.07107959247818], [-75.01145556450106, 40.0709564603993], [-75.01153052607532, 40.070867562474575], [-75.0116641830306, 40.070752646713004], [-75.0117368264488, 40.07065314833198], [-75.0118207583076, 40.070477997489135], [-75.01193674889853, 40.07032469976572], [-75.01207246548898, 40.07022670406734], [-75.01216294414564, 40.070161374140504], [-75.01227740265138, 40.07004600029827], [-75.01234798178868, 40.069929580963226], [-75.01240227778314, 40.06980855580792], [-75.01248365580095, 40.06969661152543], [-75.01264369118155, 40.069540144576386], [-75.01278042667118, 40.06941686524192], [-75.01285597882301, 40.069313217652315], [-75.01292451568432, 40.069247363609996], [-75.01299938840812, 40.06916057207089], [-75.01304152189287, 40.06906878193416], [-75.01309470956213, 40.0689751465982], [-75.0131434338241, 40.0688560969041], [-75.01320527263027, 40.0687521224871], [-75.01328803076183, 40.0686739542966], [-75.01341407181296, 40.0686115789023], [-75.01356917244466, 40.06857731100868], [-75.01361277147016, 40.06851719084309], [-75.01363003069318, 40.068361539452575], [-75.013658090155, 40.068210364007015], [-75.01366234006926, 40.068105017962885], [-75.0136545996472, 40.06802469441069], [-75.0136854235918, 40.06794107045589], [-75.01376775522982, 40.067873435980935], [-75.01390956693898, 40.06782830704168], [-75.01401445462469, 40.06781393310805], [-75.01413783434027, 40.06774938512688], [-75.01425041589033, 40.06768036117643], [-75.01430300598287, 40.067601473147434], [-75.01434598649034, 40.067488613490006], [-75.01439855380417, 40.06734223923181], [-75.01438994155741, 40.06721549770347], [-75.01429202300844, 40.067057104995996], [-75.01423492275127, 40.06697560540138], [-75.01415939115768, 40.066874687043146], [-75.01414170114295, 40.066768818609674], [-75.01418614950114, 40.066687628313986], [-75.0142842526952, 40.06663724043714], [-75.01442176779595, 40.06656248366375], [-75.01455328716379, 40.06650023755559], [-75.01469003582997, 40.06644444301656], [-75.01485293330873, 40.06642090420657], [-75.01498351749207, 40.06638183399944], [-75.01508427752486, 40.066333617178856], [-75.01521828261474, 40.06627775672721], [-75.01531457721896, 40.06620412632028], [-75.01537983261072, 40.06608336076093], [-75.01545142274483, 40.06594165666884], [-75.01549287137524, 40.06586672175268], [-75.01558503848605, 40.06575925009745], [-75.01565594839043, 40.06563440111219], [-75.0157425817053, 40.0653918255055], [-75.01574954597372, 40.065219057514625], [-75.01576586519033, 40.06508658307714], [-75.01588587828371, 40.06496922876008], [-75.01600631554668, 40.06484134024199], [-75.01616616152177, 40.0646890821555], [-75.01620896722129, 40.06458043649334], [-75.01623961545582, 40.0645010256198], [-75.0164025669745, 40.06440789103234], [-75.0165706627164, 40.06432331430387], [-75.01666610404993, 40.06427075271167], [-75.01677918545927, 40.0641890848095], [-75.01689175837886, 40.06412005915821], [-75.01704390934661, 40.0640224489414], [-75.01714500277654, 40.063965802656504], [-75.01730693318339, 40.06389795055588], [-75.01749662400833, 40.06382232182605], [-75.01766669581285, 40.06375677132412], [-75.01779662625562, 40.0635974733855], [-75.01788997588838, 40.06346050230505], [-75.0179495701373, 40.063343818675705], [-75.01800384966306, 40.063222791701655], [-75.01804614240108, 40.06312678588627], [-75.01816470559515, 40.06304524704141], [-75.0182824199927, 40.06298477804318], [-75.0184215618429, 40.062937470988345], [-75.01855222208856, 40.06289629026223], [-75.01866264229521, 40.06281244797046], [-75.01874179707323, 40.062755279728954], [-75.01884871067023, 40.06269033467704], [-75.01899983768322, 40.0626180056519], [-75.01910556448806, 40.06258255709327], [-75.01922876021322, 40.06252221744369], [-75.01931871281806, 40.06246952330191], [-75.01940436738393, 40.06238720111911], [-75.01947871542869, 40.062313045872756], [-75.0195479172144, 40.06223033349241], [-75.01964420137666, 40.06215669944157], [-75.01973799707683, 40.062076679863075], [-75.0198283436528, 40.0619459631985], [-75.01992202488529, 40.061800563694625], [-75.0199864210835, 40.06170086460079], [-75.02002254762955, 40.0616215839113], [-75.02008010163895, 40.061555464966105], [-75.02019300601317, 40.06147800753754], [-75.02033050297699, 40.061403243645614], [-75.0204938950218, 40.06136705628301], [-75.02057977282244, 40.06127911509596], [-75.02070262528976, 40.061159012237674], [-75.02081722362328, 40.061039416015774], [-75.02094476815968, 40.060939107046785], [-75.02099768542261, 40.06085178921662], [-75.02105110996689, 40.06075182897833], [-75.0211230204869, 40.06060169364698], [-75.02116683397419, 40.06046776142961], [-75.02124261759111, 40.060357787997795], [-75.0213678719578, 40.060314366459814], [-75.02150203068393, 40.06025428397214], [-75.02156941869207, 40.06014832880668], [-75.0216406495094, 40.060015048423956], [-75.02175730775194, 40.059912371634475], [-75.02184773227115, 40.05977954690714], [-75.02189634982466, 40.0596626008018], [-75.02196766420064, 40.0595272137529], [-75.02201353883376, 40.05941020247696], [-75.02208143359125, 40.05929160464568], [-75.02214582306436, 40.05919190430037], [-75.02227070548015, 40.05908942320252], [-75.02242967671278, 40.05895822546024], [-75.02256654251953, 40.058830720591054], [-75.022684922193, 40.05875339085738], [-75.02277984274103, 40.0587134656363], [-75.02288041527724, 40.05866945575464], [-75.02297533559285, 40.05862953037194], [-75.02309303807974, 40.058569055531905], [-75.02318315065173, 40.058512144504434], [-75.02325698219693, 40.05845062826453], [-75.02335873957705, 40.05837712210828], [-75.02346564302887, 40.05831217277386], [-75.02364366633292, 40.05825312978684], [-75.02380439126402, 40.05821476437058], [-75.0239373583225, 40.058184176694986], [-75.02400612716242, 40.05811199571979], [-75.02413058150069, 40.05802004670343], [-75.02420457979494, 40.05795431600173], [-75.02425698143027, 40.05787963810014], [-75.02432187545998, 40.057767295084304], [-75.02431514065105, 40.05766168838805], [-75.02428002238715, 40.05751112142612], [-75.02425983172488, 40.05739886827296], [-75.0242474440112, 40.057297345292945], [-75.02426931312309, 40.057162892330595], [-75.02428629100011, 40.05701356132886], [-75.02421847374397, 40.056925486161866], [-75.02410433087374, 40.05689747005967], [-75.023907932674, 40.056867502998784], [-75.02373270735212, 40.0568570187658], [-75.0236138431599, 40.056809910294824], [-75.0235197094016, 40.056693793749254], [-75.0234514689111, 40.05661625220775], [-75.02339951134499, 40.05654331580518], [-75.02335792116091, 40.056438831672395], [-75.02329830532375, 40.056330019936595], [-75.02319354424118, 40.05620521517992], [-75.02306650910235, 40.05608831731229], [-75.02292285415761, 40.055975242631], [-75.02284183827801, 40.05587419975179], [-75.02281735264908, 40.05573231941055], [-75.02285912686669, 40.055648954179546], [-75.02296392945912, 40.05549959866026], [-75.02298959026602, 40.05540741431654], [-75.02296126227928, 40.05529285923183], [-75.02295270237222, 40.05518720906307], [-75.02301832165558, 40.055117459789635], [-75.02308683509538, 40.05503644028902], [-75.02329697751313, 40.05479257441689], [-75.02329770833737, 40.05470612463295], [-75.02325883533216, 40.05458077518629], [-75.0233061439893, 40.054427945416464], [-75.02344342237699, 40.0542899053639], [-75.02342391147224, 40.0541607967507], [-75.02327873692083, 40.05408564694144], [-75.02249209927083, 40.05385608053362], [-75.02236202016512, 40.053815031571304], [-75.02222781323063, 40.053740140788996], [-75.02209671789657, 40.053724374456756], [-75.02191830511406, 40.05365686930914], [-75.0216374022443, 40.0535447523138], [-75.02151829112039, 40.053503961948444], [-75.02131059809051, 40.05348215761974], [-75.02108747077057, 40.05343467920917], [-75.02093478167261, 40.05340996289716], [-75.02082613061091, 40.05338207472192], [-75.02076937187448, 40.053292150644964], [-75.02071464869559, 40.05315166073157], [-75.02069610560125, 40.05306686235357], [-75.02071080182549, 40.05297441796306], [-75.0207690258568, 40.05289144426327], [-75.02082877655748, 40.05277054528203], [-75.02087840672286, 40.05262831661571], [-75.02091723952032, 40.05248161358513], [-75.02088993332914, 40.05234177415102], [-75.02082351295573, 40.05213400019852], [-75.02106925447676, 40.052065150263466], [-75.02134667770706, 40.0519323447473], [-75.0214845821503, 40.05178355338406], [-75.02160677289102, 40.05161538177912], [-75.02182160952268, 40.05139872043992], [-75.02202617030173, 40.05123250274537], [-75.02223174570442, 40.05104096568759], [-75.02258673304789, 40.050824460871986], [-75.02287289411287, 40.05067918955403], [-75.0240054813053, 40.05019284749639], [-75.0246081985107, 40.04996637531921], [-75.02502019460765, 40.049767059045784], [-75.0254880641761, 40.049613417369144], [-75.02589573262637, 40.04952170668328], [-75.02632430049782, 40.049447076724384], [-75.02701684656185, 40.04932018735995], [-75.02750218118987, 40.049347532053694], [-75.02772925615429, 40.04944161774527], [-75.02790512977876, 40.049578844136946], [-75.02802131823515, 40.04976534485357], [-75.02811254123834, 40.04995758832029], [-75.02824774092592, 40.050081177066225], [-75.02840221191596, 40.05013552473676], [-75.02865653966767, 40.05016689560829], [-75.02896181092363, 40.050161453510526], [-75.02921817104463, 40.05014218156038], [-75.02964648888532, 40.05015232518487], [-75.03009026470946, 40.05018817715169], [-75.0307793707139, 40.05027418916789], [-75.03116007921557, 40.05032966570556], [-75.031386988123, 40.050362728796465], [-75.03155807297706, 40.05038765937087], [-75.03182266798144, 40.050368575575696], [-75.03202415569447, 40.05027830250542], [-75.03215450129062, 40.050167550009796], [-75.03239963980208, 40.049960878349516], [-75.03250342901752, 40.04963385627425], [-75.03260442716415, 40.049376466372244], [-75.03273512646496, 40.04909855374293], [-75.03275991877743, 40.04899364306544], [-75.03275751269969, 40.04884785701076], [-75.03275168774034, 40.048581603964], [-75.03282898814976, 40.048298307630084], [-75.03301133821068, 40.04806818649151], [-75.03311879573305, 40.04785530063414], [-75.0331868430721, 40.04759713188297], [-75.03320445816153, 40.04736311338003], [-75.03324855624916, 40.0470853686681], [-75.03332686781721, 40.04677675296022], [-75.03346258149377, 40.04647583001222], [-75.03361920109269, 40.04627044347879], [-75.03380622954349, 40.04612913694608], [-75.03409158792017, 40.046002825622864], [-75.03440609108267, 40.04597224477433], [-75.03477748750193, 40.045962015600765], [-75.03517055641647, 40.046028330960695], [-75.03554487024263, 40.04615122667316], [-75.035883962518, 40.0463303129377], [-75.03624003619049, 40.046497126936124], [-75.03658433201305, 40.046752367459256], [-75.03692964175026, 40.04698228604219], [-75.03719334721026, 40.047191268710314], [-75.03740586476825, 40.04744339356805], [-75.03767654382669, 40.04768421979736], [-75.03789235293517, 40.047854053551994], [-75.03823095507052, 40.04804579334495], [-75.03848123080721, 40.04817842149729], [-75.03895389871607, 40.04831629959168], [-75.03923116477951, 40.04839253909587], [-75.03957255389473, 40.04851464333907], [-75.0399855454556, 40.04870179674293], [-75.03993652512311, 40.04889705859395], [-75.03986850212037, 40.04915523222436], [-75.03981115234363, 40.049765308997756], [-75.03985187008364, 40.050190786255165], [-75.03982553438144, 40.05043727096335], [-75.03977145261283, 40.05075913536208], [-75.03969114277413, 40.051118395390674], [-75.0396385783606, 40.051402277498596], [-75.03949807952917, 40.051823479264854], [-75.03926557731987, 40.05227735905819], [-75.03912781387623, 40.05254164477889], [-75.03909592017588, 40.05260282952274], [-75.03905057765729, 40.052912228409426], [-75.03905072085828, 40.0531149862997], [-75.03900244889742, 40.053291255130254], [-75.03888701792384, 40.05349762093939], [-75.0387530873489, 40.0537542413913], [-75.03856998248837, 40.05400336223474], [-75.03840436577126, 40.05422755171946], [-75.0378549153302, 40.054978075943396], [-75.0376612884122, 40.055283972820995], [-75.03749186912516, 40.055603111547406], [-75.03722384815177, 40.0559135874657], [-75.03701576649881, 40.05616845250137], [-75.03663001924059, 40.05674226094827], [-75.03644386007977, 40.05706734004885], [-75.03634387671092, 40.05729941323421], [-75.03630637671064, 40.05761849905944], [-75.03634298892773, 40.05785761271243], [-75.03635264885071, 40.05793907699135], [-75.03635823343399, 40.0581772973824], [-75.03634987732259, 40.05838619085585], [-75.0362852568641, 40.058764828154175], [-75.03622696641376, 40.058985213663846], [-75.03616639645348, 40.05926257016379], [-75.0361185037693, 40.05963526721701], [-75.03602562691434, 40.060307864636904], [-75.03595833618175, 40.0605470460292], [-75.0358693703198, 40.060709682823955], [-75.03586151897895, 40.06090591490791], [-75.03594479401579, 40.06109162811677], [-75.03607775442912, 40.061272177770654], [-75.03622744441218, 40.0614467880024], [-75.03634114149207, 40.06169657956052], [-75.03638120175484, 40.06193196037857], [-75.03644991043785, 40.06227573126081], [-75.03654548910033, 40.06256627810336], [-75.03664499201747, 40.062758710126666], [-75.0369064793127, 40.06302466339694], [-75.03712804351242, 40.06325799335081], [-75.03735112456283, 40.06345334240326], [-75.03750310075594, 40.06357098082033], [-75.03765381085454, 40.06372026648389], [-75.03788538907857, 40.06390947971823], [-75.03814966941594, 40.06410579957072], [-75.03838201066941, 40.06427602117927], [-75.03869496649082, 40.06449249607631], [-75.03892109564133, 40.06461188044359], [-75.03918436982643, 40.06483351787988], [-75.03943991390388, 40.06504230084497], [-75.0397604831818, 40.065274793634096], [-75.03999409587853, 40.065413359947996], [-75.04019449967235, 40.065557479676315], [-75.04049503847756, 40.06567227941196], [-75.04095034198383, 40.06583508055774], [-75.04104427139312, 40.06586932828391], [-75.04117363314958, 40.06591649432094], [-75.04104856821186, 40.06619437066853], [-75.04027165133148, 40.06792050879335], [-75.03990055038933, 40.0687164982515], [-75.03952749808136, 40.0693585665246], [-75.03937274031372, 40.0695553420102], [-75.03895106634981, 40.07005670880712], [-75.03797590147553, 40.071078701239365], [-75.03688057928926, 40.072209186628385], [-75.0348403042355, 40.07430802573013], [-75.03394468660325, 40.07522585640025], [-75.03345632981974, 40.075733552485595], [-75.03265156130533, 40.076563913553244], [-75.03024499085504, 40.07905911048138], [-75.02936100367475, 40.07996554086386], [-75.02860591922072, 40.08077109526856], [-75.02844973853612, 40.08067939112584]]]}}, {"id": "8420", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.9745359275946, 40.119849188974094], [-74.97442653084751, 40.119797207882335], [-74.9742871477504, 40.11978513743176], [-74.97407535418373, 40.119787280378276], [-74.97360768030312, 40.119806464009066], [-74.97336614764144, 40.11979627827101], [-74.97311068709377, 40.11977995191179], [-74.97299106726703, 40.11979302657531], [-74.97281919105099, 40.11981281896032], [-74.97267181455953, 40.119788218775675], [-74.97255871643699, 40.11968825919607], [-74.97250570125584, 40.119552021189186], [-74.9724284117816, 40.11950081544841], [-74.97223888836929, 40.11942077662379], [-74.97205575095256, 40.11930025986093], [-74.97193297444045, 40.11920587049832], [-74.97185840313676, 40.119134414527075], [-74.97178478526581, 40.11903976009768], [-74.97170976553542, 40.11888702760334], [-74.97160274498218, 40.1188002748363], [-74.97149424481319, 40.11872654540102], [-74.97129618915099, 40.1185780959754], [-74.97120676448317, 40.11845403754876], [-74.97114123532079, 40.11834651983752], [-74.97101974486496, 40.11810559262142], [-74.9709138774968, 40.11792163987746], [-74.97084240830002, 40.1177515775754], [-74.97075038445179, 40.11764486998256], [-74.97061357512354, 40.11752401882371], [-74.9704511062578, 40.11738368246097], [-74.97034660159044, 40.11718960430663], [-74.97026773623337, 40.11708466508946], [-74.97017841940855, 40.11700414262678], [-74.97003398180668, 40.11695421419456], [-74.96989070229579, 40.1169681633536], [-74.96977538222899, 40.11701471504024], [-74.96961872190718, 40.11698625679075], [-74.96947894996535, 40.11691467242613], [-74.96932483964085, 40.11684709602135], [-74.96920228822546, 40.11681655966739], [-74.9690859712698, 40.11684131942042], [-74.9689164285201, 40.11687349700147], [-74.96868520942675, 40.11693465942787], [-74.96843952075207, 40.11702594286368], [-74.96831959234572, 40.1170926980655], [-74.96821630091362, 40.11716856176311], [-74.96812458171257, 40.117215683673145], [-74.96803450750106, 40.1172918660717], [-74.96789019155149, 40.117400115305706], [-74.96773200301362, 40.117523988464775], [-74.96753970498874, 40.117649941113235], [-74.9674834750638, 40.11779950161915], [-74.9674614374426, 40.11787587919556], [-74.96735343056804, 40.117928410187], [-74.96712222242492, 40.117943130495256], [-74.96694965359058, 40.11800280658301], [-74.96672103343944, 40.11804661220493], [-74.96653260089148, 40.11807832915238], [-74.96638376413878, 40.11811245683492], [-74.96607916757638, 40.11823423701863], [-74.96591951833074, 40.118301478900214], [-74.96577268884946, 40.11833275115982], [-74.96559196896969, 40.118406737845646], [-74.96543019396812, 40.11847973319444], [-74.96533250088125, 40.11855718161553], [-74.96526018943926, 40.11861492728163], [-74.96514763896454, 40.11866299316389], [-74.96499291483178, 40.118656343623556], [-74.96483536722802, 40.11862640669265], [-74.9647329398482, 40.11858909669982], [-74.96462727083852, 40.11853864977195], [-74.96453376503183, 40.1184681800264], [-74.96448764842168, 40.11839450417565], [-74.96450736047414, 40.11823680585786], [-74.9644875196328, 40.118121682868896], [-74.96441676121945, 40.11798065781134], [-74.96433255898638, 40.1178218911196], [-74.96428035539026, 40.11762036609921], [-74.96420550185364, 40.1173950744162], [-74.96413528486632, 40.1173131518111], [-74.96399708852267, 40.11722314129124], [-74.96382918768471, 40.11712329562558], [-74.96373455468749, 40.11708036972731], [-74.96357465411043, 40.11703876634753], [-74.96340959849404, 40.1169847003448], [-74.96329353805959, 40.11688828892024], [-74.96321947390042, 40.11675879051246], [-74.96317383581372, 40.116674623670896], [-74.96314983322998, 40.11649879523493], [-74.96314050777443, 40.1163578065179], [-74.9631547381758, 40.11619562061336], [-74.96313235561803, 40.116096399988464], [-74.9631137485702, 40.11599726906], [-74.96311043878094, 40.11587093698896], [-74.96314587676885, 40.11579053093015], [-74.9632483766372, 40.11564209551682], [-74.96332246230332, 40.11549514569606], [-74.9633942125015, 40.11529009400465], [-74.96341265501594, 40.115209276000215], [-74.96334801694702, 40.11512644458324], [-74.96324764071571, 40.11499340701054], [-74.9631444705759, 40.11476742726126], [-74.9630999252316, 40.114609621509736], [-74.96324780056486, 40.11446083336213], [-74.96345602581059, 40.11420031586229], [-74.96366871303304, 40.11399214937468], [-74.96399992451454, 40.11368237063091], [-74.96409025601378, 40.11355395348697], [-74.96413749869085, 40.11346222377605], [-74.96415535231249, 40.11337268525479], [-74.96413644891938, 40.1132808036394], [-74.96402096391904, 40.113009539385665], [-74.96391844543861, 40.11262975324262], [-74.9638774580994, 40.112431401967754], [-74.96388250940994, 40.112193532423404], [-74.96387898647576, 40.1120033461688], [-74.96384869535596, 40.11191263836298], [-74.96378309280428, 40.11173836100134], [-74.96377557767543, 40.11164530452999], [-74.96379485422027, 40.111544189323716], [-74.96385070057904, 40.111472985592656], [-74.96393417383017, 40.111373425946965], [-74.96404481260235, 40.11121067363387], [-74.96410387706898, 40.1110611851694], [-74.96411973302025, 40.11095127998503], [-74.96411977237734, 40.11085840658203], [-74.96403911400388, 40.11070553173609], [-74.96390145962403, 40.110559980986196], [-74.96383765607658, 40.110456854381745], [-74.96383934385922, 40.11036982471464], [-74.96381143583622, 40.11022112937438], [-74.963745172204, 40.11008601721508], [-74.96370887785643, 40.10995743417731], [-74.96370879621225, 40.10986746107558], [-74.96377020519976, 40.10975285602159], [-74.9638898084259, 40.10960193053898], [-74.96397681595, 40.10950826215481], [-74.96407360148214, 40.10945256031356], [-74.96423339141067, 40.10942740937499], [-74.96440812902686, 40.10949839617235], [-74.9645076215663, 40.10946888072424], [-74.96460110813432, 40.1094014900223], [-74.96467843512309, 40.10931339131839], [-74.96473678175828, 40.10918129840122], [-74.96476348935374, 40.10908326543434], [-74.96480860228478, 40.108997287725906], [-74.96490510709901, 40.1089023980248], [-74.96508711155552, 40.10879651821489], [-74.96520452139433, 40.10865279376601], [-74.96538552333612, 40.10838726082454], [-74.96551491521684, 40.108227863806526], [-74.96557978452094, 40.10814498190638], [-74.96558395061751, 40.10806555604411], [-74.96550238324046, 40.107980864075955], [-74.96543067252851, 40.10788625388897], [-74.96536723004647, 40.10777442889945], [-74.96529412593388, 40.10762173604106], [-74.96521076588365, 40.107442675354456], [-74.96512196496265, 40.107304114824885], [-74.96501650930959, 40.107202880458296], [-74.96472482099311, 40.1071725965749], [-74.96442003531749, 40.10713909226683], [-74.96419407038636, 40.10711910553015], [-74.96395677513556, 40.107098842885186], [-74.9637089907015, 40.107058011779365], [-74.96351561716939, 40.10698076556588], [-74.96333488205855, 40.10687190125946], [-74.96324831098964, 40.10677112471085], [-74.9632120071881, 40.10665100135869], [-74.9632683414159, 40.10655974021317], [-74.96338775907506, 40.10650745210231], [-74.96346437237705, 40.10648032330571], [-74.96359454454354, 40.10643994290029], [-74.96365758025517, 40.10637761973227], [-74.96366918543235, 40.10627922187831], [-74.96361603929876, 40.106100891211604], [-74.96369137662307, 40.10596920969179], [-74.96378485917754, 40.105901819636934], [-74.9639060841823, 40.10580317682134], [-74.96396204610612, 40.10572907177049], [-74.96394415798275, 40.105612545068865], [-74.96379597945818, 40.10553929768364], [-74.96359104385553, 40.10546757779541], [-74.96339791446555, 40.10538453427425], [-74.96318284504194, 40.105283544474474], [-74.962963164746, 40.10520275805894], [-74.9626919154668, 40.10513523365247], [-74.96255447219637, 40.10507675664639], [-74.96249775198542, 40.1049854102411], [-74.96242759983974, 40.104853103358295], [-74.9624316534999, 40.10475452338473], [-74.96246627331722, 40.10464797656316], [-74.96253801424646, 40.1045118536878], [-74.96237672471584, 40.10434396220508], [-74.96209043267068, 40.1041367593823], [-74.96199136750904, 40.10401826282574], [-74.96176561224028, 40.10380962481303], [-74.96156330892553, 40.10367411403533], [-74.96140110953917, 40.103574403016644], [-74.96122698558308, 40.1034889133785], [-74.96114017300145, 40.103435546349274], [-74.96101844359531, 40.1033213243334], [-74.96098827939214, 40.103227718057234], [-74.96099352798086, 40.10310014169535], [-74.96102317699925, 40.103022499139044], [-74.96108806584733, 40.1027773738771], [-74.9611975256981, 40.102597183444516], [-74.96120102805526, 40.102420225558284], [-74.96123341984755, 40.102275895291584], [-74.96128894444362, 40.102120514932956], [-74.96128045155375, 40.1019824483342], [-74.96117649137744, 40.1018681879942], [-74.96110006443077, 40.101796677407464], [-74.96106000262057, 40.101668001835556], [-74.96112407504828, 40.101396736449274], [-74.96122488894056, 40.10128889520469], [-74.96139308776735, 40.101150760717616], [-74.96147619296396, 40.10105990114736], [-74.96164168712644, 40.10089557950857], [-74.96169979393106, 40.10076928698368], [-74.96174255931354, 40.10064842615592], [-74.96176668581465, 40.10052130854028], [-74.96179907553315, 40.100376977195545], [-74.96184541778801, 40.100169133300874], [-74.96185253345196, 40.10008803990201], [-74.96188848050542, 40.09990316362808], [-74.96193100648846, 40.099788102552125], [-74.96199406049067, 40.099679342223226], [-74.96201864140038, 40.09958706386156], [-74.96198434418078, 40.0995020637502], [-74.96191642295962, 40.09940754288477], [-74.96181428304273, 40.099317994054964], [-74.96173750165367, 40.09925518410154], [-74.96167842327168, 40.09917538753953], [-74.96175669636678, 40.0990640950242], [-74.96206937522757, 40.09876693282772], [-74.96207662896857, 40.09863650451015], [-74.96190666953866, 40.0984959727095], [-74.9617225418011, 40.098378315842666], [-74.96160518328142, 40.098291302709356], [-74.96158634719137, 40.09819797039727], [-74.96165860004366, 40.09809523810618], [-74.96177331562501, 40.09801675545612], [-74.96180876655832, 40.097889912503334], [-74.96178710750394, 40.09777329380282], [-74.9617217725669, 40.097707858160305], [-74.96161784668656, 40.09766180201515], [-74.96141293836342, 40.097590078235875], [-74.96118927222231, 40.09751499576082], [-74.96105856058438, 40.097476997244186], [-74.96092276389942, 40.09747080023532], [-74.96078954638355, 40.097493689224166], [-74.96067803104046, 40.097540323516256], [-74.96056746872704, 40.09756376196426], [-74.96046163514461, 40.09756409438816], [-74.96007657891424, 40.097461876208584], [-74.95973257710463, 40.097372260851245], [-74.95962523555662, 40.09731741377516], [-74.9594744989043, 40.09721507453958], [-74.95937399268634, 40.09717780820223], [-74.95876548627052, 40.096899039666354], [-74.95851430034554, 40.09680865469869], [-74.95825066194955, 40.09669486590342], [-74.95816657239854, 40.09662607029507], [-74.9580938923291, 40.096509662320166], [-74.95799490376446, 40.096389713851764], [-74.95765135894611, 40.096105646749336], [-74.95735317370796, 40.09595909061887], [-74.9572076044577, 40.09591492102114], [-74.95705730675867, 40.095893856147875], [-74.95689802502051, 40.095907399328425], [-74.9566389075855, 40.095959150293666], [-74.95646086677436, 40.09596933556449], [-74.95628497762564, 40.09592733032099], [-74.95618543097287, 40.09586686371889], [-74.95609058057512, 40.09573830698621], [-74.95611264839714, 40.095615494259576], [-74.95583640361829, 40.09525759748484], [-74.9557583653384, 40.09513380038586], [-74.9557595489431, 40.09501338331986], [-74.95587915493088, 40.094724605366636], [-74.95600706377722, 40.09446360022027], [-74.95623346209133, 40.09401343633093], [-74.95639087460387, 40.09372412604626], [-74.95640181776452, 40.09355025200715], [-74.95640095839518, 40.0933876996812], [-74.95638074249425, 40.09323628638063], [-74.95637269106219, 40.09306485216829], [-74.95645302212061, 40.092857837007095], [-74.95668999695222, 40.09247177960124], [-74.95682222258692, 40.092289244195165], [-74.95694085382434, 40.09216152051755], [-74.95706373630678, 40.09202229237414], [-74.95711548804199, 40.091866822224674], [-74.95719698471487, 40.09167724821423], [-74.95728517503632, 40.09155459112615], [-74.95744112074948, 40.09134650831758], [-74.95747160812206, 40.09124857047232], [-74.95764213077516, 40.0911453266044], [-74.95781370059555, 40.090833138751776], [-74.95795906082304, 40.09056094710358], [-74.95797821940813, 40.090462733962696], [-74.95796304502679, 40.09037239214202], [-74.9579075408016, 40.09025204794809], [-74.95782231122263, 40.09011937309264], [-74.95779215612944, 40.09002576586814], [-74.95778914310826, 40.08991540380297], [-74.95785827330144, 40.08979663551961], [-74.95802891227677, 40.08969049163477], [-74.95811173142842, 40.089560448074124], [-74.95811555178857, 40.08946766437731], [-74.95811454572612, 40.089354449615925], [-74.95815351448273, 40.08927993382665], [-74.95824139797537, 40.08916452500722], [-74.95822879134455, 40.08901184524645], [-74.95818032996581, 40.08872043554952], [-74.95800915113314, 40.088243196130925], [-74.95786822721342, 40.08790310149964], [-74.95771263675732, 40.08764391471092], [-74.9576079809796, 40.08720311986009], [-74.95762291135141, 40.08706997478536], [-74.9580162109943, 40.08683283017598], [-74.95802600041833, 40.08659507602561], [-74.95803278313677, 40.08647624481164], [-74.95802460773955, 40.08630771097548], [-74.95806425225537, 40.086170813108446], [-74.95820216028376, 40.086033397931644], [-74.95822382526586, 40.085874296023924], [-74.95821450201854, 40.08564188234166], [-74.95825042206582, 40.08527415836413], [-74.95829712294712, 40.085057618206065], [-74.95833940705427, 40.08494835547422], [-74.95862611131385, 40.084592527228246], [-74.95867823230348, 40.08438192150736], [-74.95858816083263, 40.08427524979799], [-74.95842092324301, 40.08420733774501], [-74.95836434900353, 40.08411308799784], [-74.95837182172221, 40.08402329625386], [-74.95840176734495, 40.08393840525309], [-74.95859127838324, 40.08392414323246], [-74.95872069406991, 40.08390116506728], [-74.95890184992464, 40.08372271569425], [-74.95896419799766, 40.08358491909451], [-74.95898289842745, 40.08345186635132], [-74.95894297197812, 40.08332029045303], [-74.95890610552568, 40.08320620302309], [-74.95901704696429, 40.08308119502889], [-74.95913331519058, 40.082918584675745], [-74.95915306777049, 40.08280587309673], [-74.95913034295927, 40.082715348937064], [-74.95903757227579, 40.08258249162527], [-74.95899927283814, 40.08250319866731], [-74.95907588300675, 40.082386063109766], [-74.95926814392355, 40.082370061103965], [-74.95966512082344, 40.082314399849274], [-74.95974238806396, 40.082303567007834], [-74.95985801389948, 40.08224832687534], [-74.95995325701332, 40.0821374469473], [-74.9600098001495, 40.08204884727716], [-74.96004905115942, 40.081921669099025], [-74.96007204635139, 40.081785326136774], [-74.96007671227004, 40.08167191390378], [-74.96007799941006, 40.08153504487056], [-74.96005971537338, 40.0814511254571], [-74.96004024952006, 40.08129037965196], [-74.96010570987941, 40.08117844232902], [-74.96017944313634, 40.081076721240095], [-74.9606259039805, 40.08079038634399], [-74.96081418558292, 40.08065137782424], [-74.96088220349698, 40.08058290873134], [-74.9609850982979, 40.080511946609434], [-74.96109777495953, 40.08041451032501], [-74.96127232265127, 40.08018668501864], [-74.96140483535991, 40.0800296281236], [-74.96152226619331, 40.07992228866674], [-74.96163439246631, 40.079838195165365], [-74.96174163623067, 40.07976466083418], [-74.96189285623186, 40.07966205055332], [-74.96198535025003, 40.07960129133098], [-74.9621058397999, 40.07947232314706], [-74.96213031811381, 40.07935271185449], [-74.96215518203701, 40.079117913887906], [-74.96219879028268, 40.07900878387991], [-74.96226872365817, 40.078893614574234], [-74.96233239783723, 40.078825040228445], [-74.96238653289808, 40.07877407663615], [-74.96248682278156, 40.07866350464332], [-74.96253280493795, 40.07854942303499], [-74.96249852328924, 40.07843172582277], [-74.96242979967485, 40.07825309063244], [-74.96242260095161, 40.07811100765712], [-74.96244394469112, 40.07801469414361], [-74.96251236960778, 40.077936217711645], [-74.96262828690277, 40.07786557101308], [-74.96318267365572, 40.07738484004166], [-74.96328574281962, 40.07720369423109], [-74.96339372536175, 40.0771144887099], [-74.96350474704495, 40.07705707908875], [-74.96363597570574, 40.07703688707247], [-74.96377899428731, 40.07704703246299], [-74.96432245829457, 40.077043513110574], [-74.96481054613699, 40.077165438262], [-74.96487823382172, 40.07739275793584], [-74.96562550287764, 40.07962691425054], [-74.96567839184083, 40.079904498837685], [-74.96582688977068, 40.08037333929694], [-74.96595348766569, 40.08072432479731], [-74.96607904775334, 40.08103230110434], [-74.96618187901562, 40.08124937703642], [-74.9663404029493, 40.08154234032804], [-74.96646756928382, 40.08173967536829], [-74.96666319536153, 40.08201435740862], [-74.96682090137726, 40.082216473817276], [-74.96755307599429, 40.08307629554037], [-74.96866569300502, 40.084332634218896], [-74.96988962485035, 40.085709477705606], [-74.97018809543366, 40.086023191707326], [-74.97056950632104, 40.086385994240395], [-74.97117513228486, 40.08691367533132], [-74.97138607796352, 40.08705566489162], [-74.97162854838277, 40.08725109988515], [-74.97226035954658, 40.08772373967268], [-74.97335356637348, 40.088504638917414], [-74.975220751884, 40.089854176405005], [-74.97719326038882, 40.09133676742325], [-74.97803583627811, 40.09205594381622], [-74.98001838277072, 40.09371126251982], [-74.98410643925581, 40.09710654276584], [-74.98431375717901, 40.09729964811916], [-74.98581371160367, 40.09855867567171], [-74.98667529438421, 40.09927999004267], [-74.98807317181068, 40.10045024082944], [-74.98891948652006, 40.101196604672424], [-74.99003518154542, 40.10211898869551], [-74.99217821394565, 40.103963569454834], [-74.9944361008318, 40.10585213685131], [-74.99470828060764, 40.10612149353524], [-74.99639582594651, 40.1075218009091], [-74.99668944228584, 40.107775838781585], [-74.9968236875527, 40.10790136357909], [-74.99667938760946, 40.10800050653488], [-74.99549876139298, 40.10879904559209], [-74.99072087794879, 40.112101463231575], [-74.98962186970763, 40.11284772728174], [-74.98777727231318, 40.114128017574764], [-74.98497655197892, 40.116048088569165], [-74.98376690795077, 40.116945591479535], [-74.9832953100798, 40.11725366951866], [-74.98147515610661, 40.1186769133751], [-74.97996529974716, 40.11973470075871], [-74.97985040050135, 40.119639213251936], [-74.97973664437417, 40.11953199064375], [-74.97959940390363, 40.11942129890018], [-74.97946881752101, 40.119378971700826], [-74.97928311461659, 40.119344022453376], [-74.97913192604561, 40.11934328185931], [-74.97900787828966, 40.1193722175273], [-74.97889067491155, 40.11941873381068], [-74.97879907649181, 40.119486182472166], [-74.97864531187494, 40.11953689403562], [-74.97847810794664, 40.11950021323935], [-74.97836652680947, 40.11945544049511], [-74.97824259706185, 40.11948147676035], [-74.97797525333478, 40.11959402646026], [-74.97773653771272, 40.11965357566717], [-74.97764600532771, 40.11969492631858], [-74.97756726385114, 40.11979460879553], [-74.97751936128212, 40.12001838357799], [-74.9773824442252, 40.12006151984426], [-74.97724636119099, 40.12006114191805], [-74.97714197536872, 40.12002524669148], [-74.97704072411415, 40.119958955574155], [-74.97692890597693, 40.119919978588435], [-74.97679447375349, 40.11992544460344], [-74.97661135285827, 40.11996601317583], [-74.9763984801125, 40.12004069461639], [-74.97613632527936, 40.12014175686918], [-74.9760656741631, 40.1202053538645], [-74.97602865573337, 40.120278469144544], [-74.97604798396799, 40.12040663733858], [-74.97593059763722, 40.12045749843611], [-74.97577268928615, 40.12041305811775], [-74.97572783943329, 40.120284998611616], [-74.97567123948349, 40.1201900338411], [-74.97556614203015, 40.12017153673227], [-74.97538963277015, 40.12018904420357], [-74.97522598541474, 40.12021557057682], [-74.97510046902921, 40.12021109022837], [-74.97497194983922, 40.12016445381979], [-74.97480549897833, 40.120074818390854], [-74.97468767057562, 40.11999796644932], [-74.97461185960975, 40.119910518223364], [-74.9745359275946, 40.119849188974094]]]}}, {"id": "8430", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.04497148690287, 40.110579868480315], [-75.04124577923858, 40.108391784993984], [-75.04002147516533, 40.10766744216544], [-75.0398364866094, 40.107567401341505], [-75.03946005929, 40.10736383011532], [-75.03884342326626, 40.10711311473855], [-75.03821596534208, 40.10695216263746], [-75.03778419148301, 40.10687422181052], [-75.03715602640324, 40.10683321275579], [-75.0364868663854, 40.106824415656945], [-75.0360649295839, 40.10678593215079], [-75.0356459599636, 40.10667335538193], [-75.03536082349481, 40.10655823433889], [-75.03522208142601, 40.106497910264906], [-75.03476073863058, 40.10621739221594], [-75.03389807759999, 40.10569014574707], [-75.03299801495899, 40.10511107854101], [-75.03439861780558, 40.10442959994114], [-75.03497397154703, 40.10416480472308], [-75.03697023344401, 40.10318490149781], [-75.0385638336794, 40.10246180447796], [-75.03985773860795, 40.10183646397926], [-75.04261449745741, 40.10050531238359], [-75.04321102489683, 40.10023003104892], [-75.04359687718139, 40.1000244552356], [-75.04553188548518, 40.09911447843645], [-75.0462124467127, 40.09879441808162], [-75.04711687101697, 40.0983783993297], [-75.04842883493836, 40.09707683670527], [-75.05075288836791, 40.09478108446115], [-75.05148676871707, 40.0940921800102], [-75.0521008379093, 40.093511371602695], [-75.052641232185, 40.0930011284728], [-75.0529389112885, 40.092736131135304], [-75.05301377767144, 40.09266948399353], [-75.05359684465985, 40.092145793219075], [-75.05390748141029, 40.09187479828705], [-75.05424117419759, 40.09165232479042], [-75.0556873901617, 40.09075402583353], [-75.05645890895181, 40.09023614591196], [-75.0570680545122, 40.08969819867304], [-75.05769466444262, 40.088691375176175], [-75.05828040137938, 40.087783892001646], [-75.05872045663507, 40.08708410146879], [-75.05909916467368, 40.086670750169496], [-75.05997263007093, 40.08606746524045], [-75.06003442287486, 40.0860251054256], [-75.06011501160998, 40.08596985993657], [-75.06242021822165, 40.08439328542534], [-75.0654748991703, 40.082301532678365], [-75.06696943036414, 40.08125861072924], [-75.06708999434463, 40.081174476560655], [-75.06792498559446, 40.08060118151999], [-75.06827619919731, 40.080346677864654], [-75.06846470867045, 40.08016550253619], [-75.06921655202608, 40.07944205456631], [-75.06983091190762, 40.07882368559944], [-75.07038058984115, 40.07829099731442], [-75.07100864922093, 40.07768329396865], [-75.07301452470581, 40.07878225782444], [-75.07370523817029, 40.07918335936801], [-75.07463570858634, 40.079691913047505], [-75.07516847105627, 40.07999208020388], [-75.07625945129958, 40.080606739792614], [-75.07712295578538, 40.081081159091646], [-75.0778688389965, 40.08150231853251], [-75.0788450068151, 40.082049292987676], [-75.08168760417915, 40.083621315787084], [-75.081189150627, 40.084117842516726], [-75.07780237997744, 40.08577060590932], [-75.0762850362767, 40.08734184166048], [-75.07621101423739, 40.08741849292918], [-75.07123362350859, 40.09257200373774], [-75.07070881400485, 40.093115325291215], [-75.06945610894356, 40.09441217098119], [-75.06717459389318, 40.09677392043086], [-75.06567004428658, 40.098331262499364], [-75.0649336197538, 40.09909349519872], [-75.06424298959658, 40.099807689376114], [-75.06374502815815, 40.10032262854479], [-75.0635651080532, 40.100515285556895], [-75.06282035380688, 40.101283120986444], [-75.06141701723698, 40.10272988308664], [-75.06031563558594, 40.103868676200975], [-75.05955296452716, 40.10465722571823], [-75.05922801573257, 40.104993193756656], [-75.05842417065355, 40.10582388395065], [-75.05829127958201, 40.10591680588243], [-75.05533361228288, 40.10798663663956], [-75.05426974383495, 40.10873110159568], [-75.0529733091716, 40.10963827387001], [-75.04855727894453, 40.11272003648118], [-75.04780526845325, 40.1122439541413], [-75.04497148690287, 40.110579868480315]]]}}, {"id": "8440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.03065632113092, 40.122031169005254], [-75.03043774058939, 40.12201223927109], [-75.03006993446725, 40.121943360379674], [-75.02977332370307, 40.121876166199485], [-75.02938197636728, 40.12173577231891], [-75.02854697652947, 40.12132704323474], [-75.02782474166607, 40.120925153598286], [-75.02551266739819, 40.11971559046697], [-75.02460789142913, 40.119217782683876], [-75.02377258300768, 40.11876699768091], [-75.02298428830309, 40.118342812032566], [-75.02216119910535, 40.11789417605088], [-75.02201567349113, 40.11781847198307], [-75.0209333336518, 40.1172453878266], [-75.01987429417981, 40.11666437903554], [-75.01905312452371, 40.11619950584618], [-75.01829950741967, 40.115780499219866], [-75.01790159654345, 40.116120184293074], [-75.01760274888854, 40.11619368898693], [-75.01739326479394, 40.11618138360495], [-75.01716677391697, 40.116117378431504], [-75.01488513379138, 40.114771444084184], [-75.01405579936676, 40.114358078192055], [-75.01315715970044, 40.11397164430021], [-75.00978586328247, 40.11144901647281], [-75.02392704057284, 40.10070388017047], [-75.02406487925523, 40.100738749448176], [-75.0256564318838, 40.10114330040666], [-75.02696824217134, 40.101507255222664], [-75.02763612412987, 40.10176688834416], [-75.02791301286108, 40.10195014011948], [-75.02888459210209, 40.10254424963743], [-75.03299801495899, 40.10511107854101], [-75.03389807759999, 40.10569014574707], [-75.03476073863058, 40.10621739221594], [-75.03522208142601, 40.106497910264906], [-75.03536082349481, 40.10655823433889], [-75.0356459599636, 40.10667335538193], [-75.0360649295839, 40.10678593215079], [-75.0364868663854, 40.106824415656945], [-75.03715602640324, 40.10683321275579], [-75.03778419148301, 40.10687422181052], [-75.03821596534208, 40.10695216263746], [-75.03884342326626, 40.10711311473855], [-75.03946005929, 40.10736383011532], [-75.0398364866094, 40.107567401341505], [-75.04002147516533, 40.10766744216544], [-75.04124577923858, 40.108391784993984], [-75.04497148690287, 40.110579868480315], [-75.04780526845325, 40.1122439541413], [-75.04855727894453, 40.11272003648118], [-75.03904358203224, 40.11935771332061], [-75.03833768667893, 40.119871126479985], [-75.03790870422559, 40.12016854479975], [-75.03767077099427, 40.12014456163275], [-75.03649616603012, 40.12039195367696], [-75.03487352835602, 40.12097568456606], [-75.03373877093078, 40.121377934919174], [-75.03264767458357, 40.121787477379655], [-75.03214415732494, 40.12193222228967], [-75.03162501875032, 40.12201792395095], [-75.0311063297577, 40.12204446019847], [-75.03065632113092, 40.122031169005254]]]}}, {"id": "8770", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.98921996786541, 40.077297778639334], [-74.98885168056458, 40.07699519493959], [-74.98827235695214, 40.07646712169232], [-74.98756894135704, 40.0758266045254], [-74.987383258211, 40.07565524633398], [-74.98716340447214, 40.07550301771704], [-74.98688627999283, 40.07533382860203], [-74.98657006926763, 40.07519932165152], [-74.9862868797863, 40.07510790761913], [-74.98599482568952, 40.07502073363189], [-74.98574963774715, 40.07492132700258], [-74.98541434288165, 40.074757414542674], [-74.98463233010169, 40.07433652288278], [-74.98365896723641, 40.073787978727594], [-74.98317558338958, 40.07346948631761], [-74.98287766317866, 40.07326270833547], [-74.98117480683793, 40.071986132815525], [-74.98125842441804, 40.07178484849688], [-74.98134747214282, 40.07149443151838], [-74.98141437652902, 40.07098998904093], [-74.9815649114516, 40.06952343351367], [-74.98164897881254, 40.06881132519683], [-74.98172734938943, 40.06841249102111], [-74.98182918044128, 40.067971284274606], [-74.9819513580679, 40.06756396300465], [-74.9823023375811, 40.066421684760115], [-74.98236541229721, 40.06610959079852], [-74.98241394977978, 40.065737371587836], [-74.98242024726542, 40.06534949169114], [-74.9823554882295, 40.064673770476055], [-74.98106055052514, 40.06492588830355], [-74.98096642260431, 40.064669071563905], [-74.98092547600625, 40.06450113291681], [-74.98090652361171, 40.0642202004415], [-74.98091319615096, 40.064056750560354], [-74.98093682653479, 40.06390372564563], [-74.98098107209536, 40.06377791063741], [-74.98101970108976, 40.06357683183606], [-74.98103912535659, 40.06342036708048], [-74.9810830992625, 40.0633012233168], [-74.98109613905308, 40.06319468880888], [-74.98109126910086, 40.063101080141166], [-74.98101572704437, 40.06292896931465], [-74.98093339478694, 40.06281679788501], [-74.98086449324052, 40.06269493289984], [-74.98080339150526, 40.06259496080614], [-74.98080720441843, 40.062501561383606], [-74.98082878953207, 40.062398572212544], [-74.98086787906719, 40.062292665554864], [-74.98091158138077, 40.06218019313656], [-74.98098526272864, 40.06207846039402], [-74.98100725590439, 40.061965464748084], [-74.98102898023743, 40.06185913954121], [-74.98101488116173, 40.06177866408198], [-74.98100119413706, 40.061688181365994], [-74.98095304795676, 40.061590189439556], [-74.9809082368487, 40.06141047341162], [-74.98091693600342, 40.061303834300475], [-74.98093431621123, 40.061197404410905], [-74.98094287911613, 40.06109410137642], [-74.9809256664009, 40.060983501101816], [-74.98091686490596, 40.06087977866368], [-74.98088567526722, 40.06079221344733], [-74.98084227891759, 40.06068431874318], [-74.98076726775463, 40.06060571357947], [-74.98054751869043, 40.06045350020058], [-74.98048084972567, 40.06038344522766], [-74.98042415929415, 40.060281907707775], [-74.98043231307426, 40.060188612916164], [-74.98048456069661, 40.0600796851148], [-74.98055633622793, 40.06002465150425], [-74.980666499553, 40.059987239059254], [-74.98081518922255, 40.05996411164604], [-74.98093362472231, 40.05993691551578], [-74.98108760777988, 40.05989054160097], [-74.98120795035433, 40.059816644592956], [-74.98131119964572, 40.05973565772611], [-74.98140115508835, 40.05966102824717], [-74.98152449071034, 40.0595137452045], [-74.98161119424806, 40.05941232502472], [-74.98198967925197, 40.058975688220436], [-74.98210365108055, 40.05884487311465], [-74.98218573793844, 40.05875002003741], [-74.98229698706716, 40.058685920073096], [-74.98247512019503, 40.058580023075194], [-74.98260875567634, 40.05849976797433], [-74.9827543245591, 40.05844651143368], [-74.98295795892344, 40.05835458448135], [-74.98332758775962, 40.05813476435305], [-74.98351399150326, 40.05803908396144], [-74.98368519849436, 40.057996460812056], [-74.98383931016633, 40.057946746193515], [-74.98399681211448, 40.05792048850884], [-74.98411103845788, 40.057889848521434], [-74.98424737790943, 40.05784972268482], [-74.98437164690296, 40.05778593512348], [-74.98453852004965, 40.057636357750695], [-74.98491349868218, 40.05739161992467], [-74.98506530826549, 40.05729176424976], [-74.98515166382873, 40.05719867980012], [-74.98518585479218, 40.0571060114213], [-74.98518098080696, 40.05701240292386], [-74.98514375233084, 40.05691300585423], [-74.98494971406399, 40.056716343633866], [-74.98481963186443, 40.05660302568651], [-74.98469307335526, 40.0565098258428], [-74.98458876497823, 40.056403805800805], [-74.98449341161933, 40.05629132520466], [-74.98440999142397, 40.056205842147605], [-74.98433763521942, 40.05606219289731], [-74.98429505346952, 40.05593428658902], [-74.98428375997585, 40.055875386707186], [-74.98426996993457, 40.05580346034975], [-74.98426320268395, 40.0556497031396], [-74.98425941689021, 40.05552940768928], [-74.98424883572238, 40.055410642653335], [-74.98425225091168, 40.05527881117554], [-74.98422696599542, 40.055152990006206], [-74.98417820778371, 40.05507001087779], [-74.9840640661072, 40.05499213539381], [-74.98394390189576, 40.05491967708071], [-74.98379684774893, 40.054832108124515], [-74.9837355436281, 40.054737139844825], [-74.98367966917444, 40.05461558919392], [-74.98361958842578, 40.05449059966494], [-74.98347540298006, 40.05440365259739], [-74.98279123935055, 40.053919714941244], [-74.98253901188087, 40.053818478172815], [-74.98232251640555, 40.05379990612641], [-74.98220536121858, 40.05376998757276], [-74.98191222280094, 40.053710090556365], [-74.981827139927, 40.05369447845001], [-74.9817110770208, 40.0536605020565], [-74.98159098419983, 40.05362534624615], [-74.98139239780356, 40.053593849249175], [-74.9811006741922, 40.05359349625193], [-74.98104456280066, 40.05359222852843], [-74.98101013867401, 40.0535913141073], [-74.98094102121459, 40.053599959083876], [-74.98083107792566, 40.053613710265495], [-74.98070312535563, 40.05362429968076], [-74.98063015568569, 40.053630079020856], [-74.98049113804896, 40.05363890568749], [-74.98028684909443, 40.05364065842978], [-74.98020034834873, 40.053637124904604], [-74.98016671564534, 40.053635751745446], [-74.98012106201882, 40.053633886903825], [-74.98008731111703, 40.053632508168285], [-74.98004127500081, 40.053626800922004], [-74.98000168352553, 40.05362189151193], [-74.97993736718946, 40.05361391698472], [-74.97983656849195, 40.053601419693535], [-74.97972581494665, 40.053549177556555], [-74.97968613886177, 40.053530462506835], [-74.97965752614932, 40.05351696651479], [-74.97964215966273, 40.05350511091698], [-74.97957938189387, 40.053456678306596], [-74.97951009524691, 40.05340322381422], [-74.9793804359642, 40.05327989322368], [-74.97914132500213, 40.053070446581486], [-74.9788643758819, 40.052830035989494], [-74.97855513523946, 40.05263559138109], [-74.97800620398617, 40.05220691321566], [-74.97683828922655, 40.05115910201165], [-74.97607665903661, 40.05047576991033], [-74.9747841439478, 40.04931608880409], [-74.97526196175941, 40.048745620231564], [-74.97576089776359, 40.04814992707445], [-74.97621401852302, 40.0476995145884], [-74.9766399576386, 40.04740753190659], [-74.98111308745125, 40.05138180422633], [-74.98208931617228, 40.05231255529608], [-74.98273352293714, 40.05301574562342], [-74.98379632094823, 40.05420356773441], [-74.98396572527261, 40.05462750125775], [-74.98401688146697, 40.054708509021076], [-74.98409878171032, 40.05478373231092], [-74.98415155670932, 40.05482814694793], [-74.9842573866046, 40.05490393180876], [-74.98439233134985, 40.055017035967204], [-74.98451795866875, 40.05514942559683], [-74.98475433761872, 40.055358582041585], [-74.98500302675573, 40.05557645381922], [-74.98529316777564, 40.05582904683217], [-74.98590682466101, 40.056378300947806], [-74.9879801607809, 40.05821631396604], [-74.989286928798, 40.05937652147773], [-74.9904325723008, 40.060397207455054], [-74.99051053375126, 40.060438488973645], [-74.99064230555005, 40.06050208736882], [-74.99085541386388, 40.06066080733073], [-74.99110105709491, 40.06082534327962], [-74.99130342505201, 40.06092588935296], [-74.99149351660745, 40.06100599428357], [-74.99170939033432, 40.06109679086137], [-74.99194572488256, 40.06116793486433], [-74.99239711762029, 40.06126941868098], [-74.99281403097854, 40.06133230332667], [-74.99321774729918, 40.061397389171425], [-74.99356775227025, 40.06149391799965], [-74.99395224082419, 40.061629044655696], [-74.99427698081958, 40.061782881163985], [-74.99451468543627, 40.06191530970193], [-74.99530548636974, 40.06236533704058], [-74.9984208088978, 40.06413807764871], [-74.99902373253308, 40.06448114410677], [-75.00020320019168, 40.06515197637998], [-75.00290365177997, 40.06668327635158], [-75.00727005000492, 40.06916284283319], [-75.00483354427188, 40.07057416485648], [-75.0042297892391, 40.07092555896701], [-75.0039421890115, 40.071121919058655], [-75.00360740450331, 40.071363604993394], [-75.00330164540017, 40.071635015988534], [-75.00304118878766, 40.07190750917391], [-75.00282981283493, 40.072181176068305], [-75.00262103331933, 40.07248393598939], [-75.00246652040993, 40.07275315621835], [-75.00233985929778, 40.073081104824716], [-75.00225469148393, 40.07335752168253], [-74.99953545380916, 40.07187173742727], [-74.9989482944393, 40.07251845219748], [-74.99864769578822, 40.072562334898095], [-74.99854251966426, 40.072661980060474], [-74.99836399949143, 40.07284546179489], [-74.99810530662826, 40.073152295469725], [-74.99802898075785, 40.07322340870369], [-74.99766811629149, 40.073622153962596], [-74.99740306779414, 40.073875826223386], [-74.99592194375668, 40.075303406093376], [-74.99592659278815, 40.075531830794006], [-74.99591862423539, 40.075728059062044], [-74.99589315117564, 40.07587098620906], [-74.99587217302256, 40.076005529452345], [-74.99571972139283, 40.07638810043395], [-74.99556469868985, 40.07669412464115], [-74.9954437473729, 40.07688764666741], [-74.9952821379686, 40.07715036703388], [-74.99492079563227, 40.07703174634329], [-74.99464211008906, 40.076966309251105], [-74.99248972749447, 40.076630909470836], [-74.99237406663944, 40.07705607405646], [-74.99226415503534, 40.077385191469126], [-74.99214452925322, 40.07767115166447], [-74.99202158831007, 40.07791348464197], [-74.99188545930957, 40.07815294738114], [-74.9917502324365, 40.07835878497265], [-74.99161486081663, 40.07859103005699], [-74.99149575676354, 40.078738917622466], [-74.9913784196397, 40.07884341256029], [-74.99118237508259, 40.07898035939267], [-74.990003702322, 40.07797687101398], [-74.98921996786541, 40.077297778639334]]]}}]}
diff --git a/examples/school-explorer-for-parents/site/data/schools.json b/examples/school-explorer-for-parents/site/data/schools.json
deleted file mode 100644
index 3e1a6fe..0000000
--- a/examples/school-explorer-for-parents/site/data/schools.json
+++ /dev/null
@@ -1 +0,0 @@
-[{"sdp_id": "1010", "name": "John Bartram High School", "sort_name": "Bartram, John High School", "abbr_name": "Bartram", "geom": {"type": "Point", "coordinates": [-75.23405562, 39.92149737]}, "Year Opened": "1939", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2401 S 67TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8100", "Fax Number": "215-400-8101", "Website": "https://bartram.philasd.org/", "School Leader Name": "MR BRIAN JOHNSON", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1020", "name": "West Philadelphia High School", "sort_name": "West Philadelphia High School", "abbr_name": "West Philadelphia", "geom": {"type": "Point", "coordinates": [-75.219654, 39.95811]}, "Year Opened": "1911", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4901 CHESTNUT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7900", "Fax Number": "215-400-7901", "Website": "https://wphs.philasd.org/", "School Leader Name": "MS MARLA TRAVIS CURTIS", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1030", "name": "High School of the Future", "sort_name": "High School of the Future", "abbr_name": "HS of Future", "geom": {"type": "Point", "coordinates": [-75.2047566, 39.97465766]}, "Year Opened": "2006", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "4021 PARKSIDE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7790", "Fax Number": "215-400-7791", "Website": "https://sof.philasd.org/", "School Leader Name": "MR JOHN SMITH JR", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1050", "name": "Paul Robeson High School for Human Services", "sort_name": "Robeson, Paul High School for Human Services", "abbr_name": "Robeson", "geom": {"type": "Point", "coordinates": [-75.20476311, 39.95679553]}, "Year Opened": "2003", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4125 LUDLOW ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7780", "Fax Number": "215-400-7781", "Website": "https://robeson.philasd.org/", "School Leader Name": "MR RICHARD GORDON", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1100", "name": "William L. Sayre High School", "sort_name": "Sayre, William L. High School", "abbr_name": "Sayre", "geom": {"type": "Point", "coordinates": [-75.23859405, 39.95759354]}, "Year Opened": "1950", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5800 WALNUT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7800", "Fax Number": "215-400-7801", "Website": "https://sayre.philasd.org/", "School Leader Name": "MS JAMIE EBERLE", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1130", "name": "William T. Tilden School", "sort_name": "Tilden, William T. Middle School", "abbr_name": "Tilden", "geom": {"type": "Point", "coordinates": [-75.23227632, 39.92093619]}, "Year Opened": "1927", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "6601 ELMWOOD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8170", "Fax Number": "215-400-8171", "Website": "https://tilden.philasd.org/", "School Leader Name": "MS TIMEKA FORD-SMITH", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1190", "name": "Motivation High School", "sort_name": "Motivation High School", "abbr_name": "Motivation", "geom": {"type": "Point", "coordinates": [-75.24184422, 39.94453199]}, "Year Opened": "2004", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5900 BALTIMORE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7930", "Fax Number": "215-400-7931", "Website": "https://motivationhs.philasd.org/", "School Leader Name": "MRS RENNU TELI", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1200", "name": "John Barry School", "sort_name": "Barry, John Elementary School", "abbr_name": "Barry", "geom": {"type": "Point", "coordinates": [-75.23860376, 39.96437494]}, "Year Opened": "2007", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "5900 RACE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7640", "Fax Number": "215-400-7641", "Website": "https://barry.philasd.org/", "School Leader Name": "MS KATIEDRA ARGRO", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1230", "name": "William C. Bryant School", "sort_name": "Bryant, William C. School", "abbr_name": "Bryant", "geom": {"type": "Point", "coordinates": [-75.243691, 39.952687]}, "Year Opened": "1903", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "6001 CEDAR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7910", "Fax Number": "215-400-7911", "Website": "https://bryant.philasd.org/", "School Leader Name": "MR BAHIR HAYES", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Sandra Hopkins", "FACE Liaison Email": "shopkins@philasd.org", "FACE Liaison Phone Number": "215-400-7910", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1250", "name": "Joseph W. Catharine School", "sort_name": "Catharine, Joseph W. School", "abbr_name": "Catharine", "geom": {"type": "Point", "coordinates": [-75.239911, 39.927435]}, "Year Opened": "1937", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "6600 CHESTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8150", "Fax Number": "215-400-8151", "Website": "https://catharine.philasd.org/", "School Leader Name": "MS LISA WILMER", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1260", "name": "Benjamin B. Comegys School", "sort_name": "Comegys, Benjamin B. School", "abbr_name": "Comegys", "geom": {"type": "Point", "coordinates": [-75.216289, 39.94052]}, "Year Opened": "1911", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5100 GREENWAY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7860", "Fax Number": "215-400-7861", "Website": "https://comegys.philasd.org/", "School Leader Name": "MS RAUCHAUN DUPREE", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1280", "name": "Sadie Alexander School", "sort_name": "Penn Alexander School", "abbr_name": "Penn Alexander", "geom": {"type": "Point", "coordinates": [-75.208187, 39.953099]}, "Year Opened": "2001", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4209 SPRUCE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7760", "Fax Number": "215-400-7761", "Website": "https://pennalexander.philasd.org/", "School Leader Name": "MS LAUREN OVERTON", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1290", "name": "Andrew Hamilton School", "sort_name": "Hamilton, Andrew School", "abbr_name": "Hamilton", "geom": {"type": "Point", "coordinates": [-75.235543, 39.955438]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5640 SPRUCE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7650", "Fax Number": "215-400-7651", "Website": "https://hamilton.philasd.org/", "School Leader Name": "MR TORRENCE ROTHMILLER", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1300", "name": "Avery D. Harrington School", "sort_name": "Harrington, Avery D. School", "abbr_name": "Harrington", "geom": {"type": "Point", "coordinates": [-75.23059508, 39.94736517]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2019-2020", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5300 BALTIMORE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7920", "Fax Number": "215-400-7921", "Website": "https://harrington.philasd.org/", "School Leader Name": "MR ALONZO FULTON", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1340", "name": "Henry C. Lea School", "sort_name": "Lea, Henry C. School", "abbr_name": "Lea", "geom": {"type": "Point", "coordinates": [-75.216347, 39.954515]}, "Year Opened": "1914", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4700 LOCUST ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7660", "Fax Number": "215-400-7661", "Website": "https://lea.philasd.org/", "School Leader Name": "AARON GERWER", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1350", "name": "William C. Longstreth School", "sort_name": "Longstreth, William C. School", "abbr_name": "Longstreth", "geom": {"type": "Point", "coordinates": [-75.23237316, 39.94090823]}, "Year Opened": "1971", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5700 WILLOWS AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7870", "Fax Number": "215-400-7871", "Website": "https://longstreth.philasd.org/", "School Leader Name": "MS TISHA DOUGLAS", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1360", "name": "Morton McMichael School", "sort_name": "McMichael, Morton School", "abbr_name": "McMichael", "geom": {"type": "Point", "coordinates": [-75.19411487, 39.96619727]}, "Year Opened": "1963", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "3543 FAIRMOUNT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7750", "Fax Number": "215-400-7751", "Website": "https://mcmichael.philasd.org/", "School Leader Name": "DOLLETTE JOHNS-SMITH", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1370", "name": "S. Weir Mitchell School", "sort_name": "Mitchell, S. Weir Elementary School", "abbr_name": "Mitchell", "geom": {"type": "Point", "coordinates": [-75.223291, 39.93681427]}, "Year Opened": "1916", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5500 KINGSESSING AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7880", "Fax Number": "215-400-7881", "Website": "https://mitchell.philasd.org/", "School Leader Name": "STEPHANIE ANDREWLEVICH", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1380", "name": "Thomas G. Morton School", "sort_name": "Morton, Thomas G. School", "abbr_name": "Morton", "geom": {"type": "Point", "coordinates": [-75.22690015, 39.92346826]}, "Year Opened": "1971", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2501 S 63RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8160", "Fax Number": "215-400-8161", "Website": "https://morton.philasd.org/", "School Leader Name": "MR ANDREW BROOKING", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1390", "name": "Samuel Powel School", "sort_name": "Powel, Samuel School", "abbr_name": "Powel", "geom": {"type": "Point", "coordinates": [-75.19391769815562, 39.95796279797709]}, "Year Opened": "1961", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "3610 WARREN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7740", "Fax Number": "215-400-7741", "Website": "https://powel.philasd.org/", "School Leader Name": "MRS KIMBERLY ELLERBEE", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1400", "name": "John M. Patterson School", "sort_name": "Patterson, John M. School", "abbr_name": "Patterson", "geom": {"type": "Point", "coordinates": [-75.236762, 39.916095]}, "Year Opened": "1921", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "7000 BUIST AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8190", "Fax Number": "215-400-8191", "Website": "https://patterson.philasd.org/", "School Leader Name": "MRS LEANDREA BALTIMORE-HAGAN", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1410", "name": "James Rhoads School", "sort_name": "Rhoads, James School", "abbr_name": "Rhoads", "geom": {"type": "Point", "coordinates": [-75.220063, 39.967339]}, "Year Opened": "1960", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4901 PARRISH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7680", "Fax Number": "215-400-7681", "Website": "https://rhoads.philasd.org/", "School Leader Name": "MRS MEGAN WAPNER", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Ginger Glass-Mcintyre", "FACE Liaison Email": "geglass@philasd.org", "FACE Liaison Phone Number": "215-400-7680", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1420", "name": "Martha Washington School", "sort_name": "Washington, Martha School", "abbr_name": "Washington, Martha", "geom": {"type": "Point", "coordinates": [-75.211179, 39.966206]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "766 N 44TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7770", "Fax Number": "215-400-7771", "Website": "https://mwashington.philasd.org/", "School Leader Name": "MRS LAKEISHA PATRICK", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1440", "name": "Penrose School", "sort_name": "Penrose School", "abbr_name": "Penrose", "geom": {"type": "Point", "coordinates": [-75.24865833, 39.90692358]}, "Year Opened": "1971", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2515 S 78TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19153", "Phone Number": "215-400-8310", "Fax Number": "215-400-8311", "Website": "https://penrose.philasd.org/", "School Leader Name": "MS CAROL TRENCH", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1460", "name": "Add B. Anderson School", "sort_name": "Anderson, Add B. School", "abbr_name": "Anderson", "geom": {"type": "Point", "coordinates": [-75.245717, 39.946726]}, "Year Opened": "1963", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2020-2021", "Community School Cohort": "2022-2023", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "1034 S 60TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7890", "Fax Number": "215-400-7891", "Website": "https://anderson.philasd.org/", "School Leader Name": "MS LAURENA ZELLER", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Annette Ellis", "FACE Liaison Email": "aellis@philasd.org", "FACE Liaison Phone Number": "215-400-7890", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1470", "name": "Alain Locke School", "sort_name": "Locke, Alain School", "abbr_name": "Locke", "geom": {"type": "Point", "coordinates": [-75.21245097, 39.96262376]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2019-2020", "Community School Cohort": "2017-2018", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4550 HAVERFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7670", "Fax Number": "215-400-7671", "Website": "https://locke.philasd.org/", "School Leader Name": "MS BARETTA MASSEY", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1490", "name": "Rudolph Blankenburg School", "sort_name": "Blankenburg, Rudolph School", "abbr_name": "Blankenburg", "geom": {"type": "Point", "coordinates": [-75.21388868, 39.97296312]}, "Year Opened": "1925", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "4600 W GIRARD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7280", "Fax Number": "215-400-7281", "Website": "https://blankenburg.philasd.org/", "School Leader Name": "DR IVY BROWN", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Ghandi Powell-Thompson", "FACE Liaison Email": "gpowell@philasd.org", "FACE Liaison Phone Number": "215-400-7280", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1580", "name": "Middle Years Alternative School", "sort_name": "Middle Years Alternative (MYA) School", "abbr_name": "MYA", "geom": {"type": "Point", "coordinates": [-75.21546704, 39.96425379]}, "Year Opened": "1972", "School Level": "Middle", "Admission Type": "Citywide", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4725 FAIRMOUNT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7720", "Fax Number": "215-400-7721", "Website": "https://mya.philasd.org/", "School Leader Name": "MS SHAKAE DUPRE", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2000", "name": "South Philadelphia High School", "sort_name": "South Philadelphia High School", "abbr_name": "South Philadelphia", "geom": {"type": "Point", "coordinates": [-75.1691065, 39.9238987]}, "Year Opened": "1957", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2101 S BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8400", "Fax Number": "215-400-8401", "Website": "https://sphs.philasd.org/", "School Leader Name": "KIMLIME CHEK-TAYLOR", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2010", "name": "Benjamin Franklin High School", "sort_name": "Franklin, Benjamin High School", "abbr_name": "Franklin HS", "geom": {"type": "Point", "coordinates": [-75.16164, 39.96353]}, "Year Opened": "1958", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "550 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7600", "Fax Number": "215-400-7601", "Website": "https://bfhs.philasd.org/", "School Leader Name": "MS KHAILIAH CANADA", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2020", "name": "High School for Creative and Performing Arts", "sort_name": "Creative and Performing Arts (CAPA) High School", "abbr_name": "CAPA", "geom": {"type": "Point", "coordinates": [-75.16548375, 39.93941992]}, "Year Opened": "1997", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "901 S BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-8140", "Fax Number": "215-400-8141", "Website": "https://capa.philasd.org/", "School Leader Name": "MS JOANNE BEAVER", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2050", "name": "Science Leadership Academy Middle School", "sort_name": "Science Leadership Academy Middle School (SLAMS)", "abbr_name": "SLAMS", "geom": {"type": "Point", "coordinates": [-75.19391769815562, 39.95796279797709]}, "Year Opened": "2016", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "3610 WARREN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-8320", "Fax Number": "", "Website": "https://slams.philasd.org/", "School Leader Name": "MR TIMOTHY BOYLE", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2140", "name": "Julia R. Masterman School", "sort_name": "Masterman, Julia R. High School", "abbr_name": "Masterman", "geom": {"type": "Point", "coordinates": [-75.16620758, 39.96320031]}, "Year Opened": "1933", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "05-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1699 SPRING GARDEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7580", "Fax Number": "215-400-7581", "Website": "https://masterman.philasd.org/", "School Leader Name": "MS JEANNINE PAYNE", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2160", "name": "Furness High School", "sort_name": "Furness, Horace High School", "abbr_name": "Furness", "geom": {"type": "Point", "coordinates": [-75.150585, 39.923762]}, "Year Opened": "1912", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1900 S 3RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8300", "Fax Number": "215-400-8301", "Website": "https://furness.philasd.org/", "School Leader Name": "MR DANIEL PEOU", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2190", "name": "D. Newlin Fell School", "sort_name": "Fell, D. Newlin School", "abbr_name": "Fell", "geom": {"type": "Point", "coordinates": [-75.16300858, 39.91558638]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "900 W OREGON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8260", "Fax Number": "215-400-8261", "Website": "https://fell.philasd.org/", "School Leader Name": "MR OMAHR ASHE", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2210", "name": "Bache-Martin School", "sort_name": "Bache-Martin School", "abbr_name": "Bache-Martin", "geom": {"type": "Point", "coordinates": [-75.17384692, 39.96967782]}, "Year Opened": "1906", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2201 BROWN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7550", "Fax Number": "215-400-7551", "Website": "https://bachemartin.philasd.org/", "School Leader Name": "MR MARK VITVITSKY", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2240", "name": "F. Amedee Bregy School", "sort_name": "Bregy, F. Amedee School", "abbr_name": "Bregy", "geom": {"type": "Point", "coordinates": [-75.176674, 39.914699]}, "Year Opened": "1923", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1700 BIGLER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-400-8210", "Fax Number": "215-400-8211", "Website": "https://bregy.philasd.org/", "School Leader Name": "MS RACHEL MARIANNO", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2260", "name": "George W. Childs School", "sort_name": "Childs, George W. School", "abbr_name": "Childs", "geom": {"type": "Point", "coordinates": [-75.170493, 39.934637]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1599 WHARTON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-400-7950", "Fax Number": "215-400-7951", "Website": "https://childs.philasd.org/", "School Leader Name": "MR GORDON LAURIE", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2290", "name": "Franklin Learning Center", "sort_name": "Franklin Learning Center (FLC)", "abbr_name": "FLC", "geom": {"type": "Point", "coordinates": [-75.162753, 39.965049]}, "Year Opened": "1978", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "616 N 15TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7570", "Fax Number": "215-400-7571", "Website": "https://flc.philasd.org/", "School Leader Name": "MS NICOLE LEE", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2310", "name": "Camelot Academy", "sort_name": "Achieve Academy", "abbr_name": "Camelot", "geom": {"type": "Point", "coordinates": [-75.177658, 39.978134]}, "Year Opened": "2004", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "AEDY", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1435 N 26TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-684-5080", "Fax Number": "215-684-8961", "Website": "http://cameloteducation.org/our-schools/transitional-schools/camelot-academy-of-philadelphia", "School Leader Name": "MR ALPHONSO EVANS", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2320", "name": "Stephen Girard School", "sort_name": "Girard, Stephen School", "abbr_name": "Girard", "geom": {"type": "Point", "coordinates": [-75.176611, 39.925059]}, "Year Opened": "1959", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1800 SNYDER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-400-8180", "Fax Number": "215-400-8181", "Website": "https://girard.philasd.org/", "School Leader Name": "MS LEAH COLEMAN", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2340", "name": "General George A. McCall School", "sort_name": "McCall, General George A. School", "abbr_name": "McCall", "geom": {"type": "Point", "coordinates": [-75.15318, 39.944635]}, "Year Opened": "1909", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "325 S 7TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19106", "Phone Number": "215-400-7840", "Fax Number": "215-400-7841", "Website": "https://mccall.philasd.org/", "School Leader Name": "MRS ANTOINETTE POWELL", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2370", "name": "Delaplaine McDaniel School", "sort_name": "McDaniel, Delaplaine School", "abbr_name": "McDaniel", "geom": {"type": "Point", "coordinates": [-75.181793, 39.929592]}, "Year Opened": "1937", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2020-2021", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1801 S 22ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-400-8220", "Fax Number": "215-400-8221", "Website": "https://mcdaniel.philasd.org/", "School Leader Name": "MR AUSTIN WALLACE", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Abebi Deloatch", "FACE Liaison Email": "adeloatch@philasd.org", "FACE Liaison Phone Number": "215-400-8220", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2380", "name": "William M. Meredith School", "sort_name": "Meredith, William M. School", "abbr_name": "Meredith", "geom": {"type": "Point", "coordinates": [-75.15113339, 39.93974936]}, "Year Opened": "1931", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "725 S 5TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-7990", "Fax Number": "215-400-7991", "Website": "https://meredith.philasd.org/", "School Leader Name": "MR BRIAN WALLACE", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2390", "name": "Robert Morris School", "sort_name": "Morris, Robert School", "abbr_name": "Morris", "geom": {"type": "Point", "coordinates": [-75.17866, 39.975439]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2600 W THOMPSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7320", "Fax Number": "215-400-7321", "Website": "https://morris.philasd.org/", "School Leader Name": "MS TAMERON DANCY", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2410", "name": "Girard Academic Music Program", "sort_name": "Girard Academic Music Program (GAMP)", "abbr_name": "GAMP", "geom": {"type": "Point", "coordinates": [-75.18256439, 39.92210463]}, "Year Opened": "1914", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "05-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2136 W RITNER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-400-8230", "Fax Number": "215-400-8231", "Website": "https://gamp.philasd.org/", "School Leader Name": "MS JOVAN MOORE", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2450", "name": "Edwin M. Stanton School", "sort_name": "Stanton, Edwin M. School", "abbr_name": "Stanton", "geom": {"type": "Point", "coordinates": [-75.171017, 39.940503]}, "Year Opened": "1926", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "901 S. 17TH ST.", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-400-7960", "Fax Number": "215-400-7961", "Website": "https://emstanton.philasd.org/", "School Leader Name": "MRS STACEY BURNLEY", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2470", "name": "Albert M. Greenfield School", "sort_name": "Greenfield, Albert M. School", "abbr_name": "Greenfield", "geom": {"type": "Point", "coordinates": [-75.17739206, 39.95227234]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2200 CHESTNUT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19103", "Phone Number": "215-400-7810", "Fax Number": "215-400-7811", "Website": "https://greenfield.philasd.org/", "School Leader Name": "MR DANIEL LAZAR", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2480", "name": "Chester A. Arthur School", "sort_name": "Arthur, Chester A. School", "abbr_name": "Arthur", "geom": {"type": "Point", "coordinates": [-75.17569882, 39.94190083]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2000 CATHARINE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-400-7940", "Fax Number": "215-400-7941", "Website": "https://arthur.philasd.org/", "School Leader Name": "DR MARY LIBBY", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2490", "name": "Laura W. Waring School", "sort_name": "Waring, Laura W. School", "abbr_name": "Waring", "geom": {"type": "Point", "coordinates": [-75.1677006, 39.96491939]}, "Year Opened": "1956", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1801 GREEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7560", "Fax Number": "215-400-7561", "Website": "https://waring.philasd.org/", "School Leader Name": "MS AMANDA STRAIN", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2510", "name": "Fanny Jackson Coppin School", "sort_name": "Jackson Coppin, Fanny School", "abbr_name": "Jackson Coppin", "geom": {"type": "Point", "coordinates": [-75.163481, 39.934623]}, "Year Opened": "1925", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1213 S 12TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-7970", "Fax Number": "215-400-7971", "Website": "https://jackson.philasd.org/", "School Leader Name": "MS KELLY ESPINOSA", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2520", "name": "Abram S. Jenks School", "sort_name": "Jenks, Abram S. School", "abbr_name": "Jenks, A.S", "geom": {"type": "Point", "coordinates": [-75.168367, 39.918773]}, "Year Opened": "1897", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2501 S 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8240", "Fax Number": "215-400-8241", "Website": "https://asjenks.philasd.org/", "School Leader Name": "MS SIOUDA DOUGLAS", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2530", "name": "Phila. Juv. Justice Services Ctr.", "sort_name": "Philadelphia Juvenile Justice Services Center", "abbr_name": "PJJSCS", "geom": {"type": "Point", "coordinates": [-75.21572624, 39.96136565]}, "Year Opened": "2012", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Justice", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "91 N 48TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-683-3495", "Fax Number": "215-471-2787", "Website": "https://pjjsc.philasd.org/", "School Leader Name": "MS DEANA RAMSEY", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2540", "name": "Francis S. Key School", "sort_name": "Key, Francis S. School", "abbr_name": "Key", "geom": {"type": "Point", "coordinates": [-75.1601961, 39.9213857]}, "Year Opened": "1889", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2230 S 8TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8250", "Fax Number": "215-400-8251", "Website": "https://key.philasd.org/", "School Leader Name": "MS PAULINE CHEUNG", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2580", "name": "Eliza B. Kirkbride School", "sort_name": "Kirkbride, Eliza B. School", "abbr_name": "Kirkbride", "geom": {"type": "Point", "coordinates": [-75.156466, 39.93002]}, "Year Opened": "1926", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1501 S 7TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-7980", "Fax Number": "215-400-7981", "Website": "https://kirkbride.philasd.org/", "School Leader Name": "MS REBECCA JULIEN", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2590", "name": "George W. Nebinger School", "sort_name": "Nebinger, George W. School", "abbr_name": "Nebinger", "geom": {"type": "Point", "coordinates": [-75.15383, 39.936694]}, "Year Opened": "1925", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "601 CARPENTER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-8110", "Fax Number": "215-400-8111", "Website": "https://nebinger.philasd.org/", "School Leader Name": "MS AYANA TOWNSEND", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2620", "name": "Academy at Palumbo", "sort_name": "Academy at Palumbo", "abbr_name": "Palumbo", "geom": {"type": "Point", "coordinates": [-75.16194915, 39.94019787]}, "Year Opened": "2006", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1100 CATHARINE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-8130", "Fax Number": "215-400-8131", "Website": "https://palumbo.philasd.org/", "School Leader Name": "MS KIANA THOMPSON", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2630", "name": "George W. Sharswood School", "sort_name": "Sharswood, George W. School", "abbr_name": "Sharswood", "geom": {"type": "Point", "coordinates": [-75.15055053, 39.91935714]}, "Year Opened": "1906", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2300 S 2ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8270", "Fax Number": "215-400-8271", "Website": "https://sharswood.philasd.org/", "School Leader Name": "MS LEIGH MCLINDEN", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2640", "name": "Southwark School", "sort_name": "Southwark School", "abbr_name": "Southwark", "geom": {"type": "Point", "coordinates": [-75.16053168, 39.92637775]}, "Year Opened": "1905", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1835 S 9TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8280", "Fax Number": "215-400-8281", "Website": "https://southwark.philasd.org/", "School Leader Name": "MR ANDREW LUKOV", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2650", "name": "Science Leadership Academy", "sort_name": "Science Leadership Academy (SLA)", "abbr_name": "SLA", "geom": {"type": "Point", "coordinates": [-75.162516, 39.963701]}, "Year Opened": "2006", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "550 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7830", "Fax Number": "215-400-7831", "Website": "https://sla.philasd.org/", "School Leader Name": "MR CHRISTOPHER LEHMANN", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2670", "name": "Constitution High School", "sort_name": "Constitution High School", "abbr_name": "Constitution", "geom": {"type": "Point", "coordinates": [-75.152336, 39.950252]}, "Year Opened": "2006", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "18 S 7TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19106", "Phone Number": "215-400-7850", "Fax Number": "215-400-7851", "Website": "https://constitutionhs.philasd.org/", "School Leader Name": "MS BRIANNA DUNN", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2680", "name": "The Science Leadership Academy at Beeber", "sort_name": "Science Leadership Academy (SLA) at Beeber", "abbr_name": "SLA at Beeber", "geom": {"type": "Point", "coordinates": [-75.24192008, 39.98610221]}, "Year Opened": "2014", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "05-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "5925 MALVERN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7270", "Fax Number": "215-400-7271", "Website": "https://slabeeber.philasd.org/", "School Leader Name": "MR CHRISTOPHER JOHNSON", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2690", "name": "John H. Taggart School", "sort_name": "Taggart, John H. School", "abbr_name": "Taggart", "geom": {"type": "Point", "coordinates": [-75.15452237, 39.91721223]}, "Year Opened": "1917", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "400 W PORTER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8290", "Fax Number": "215-400-8291", "Website": "https://taggart.philasd.org/", "School Leader Name": "MRS STEPHANIE MCKENNA", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2720", "name": "Vare-Washington School", "sort_name": "Vare-Washington School", "abbr_name": "Vare-Washington", "geom": {"type": "Point", "coordinates": [-75.15252649, 39.93427949]}, "Year Opened": "1903", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1198 S 5TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-8120", "Fax Number": "215-400-8121", "Website": "https://vare.philasd.org/", "School Leader Name": "MS ALISON BARNES", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3040", "name": "Excel Middle Years Academy", "sort_name": "Excel Middle Years Academy", "abbr_name": "Excel Middle", "geom": {"type": "Point", "coordinates": [-75.18402464, 39.99074371]}, "Year Opened": "2017", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Continuation", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "4300 WESTMINSTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-436-0307", "Fax Number": "", "Website": "https://sesischools.com/locations/excel-middle-years-academy/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3190", "name": "Crossroads at Hunting Park", "sort_name": "Crossroads at Hunting Park", "abbr_name": "Crossroads @HP", "geom": {"type": "Point", "coordinates": [-75.12599679, 40.01425525]}, "Year Opened": "2011", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "03-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Transition/Intervention", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4224 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-9060", "Fax Number": "215-400-9061", "Website": "https://philasd.org/crossroads-huntingpark", "School Leader Name": "MR JAMAL DENNIS", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3210", "name": "Ben Franklin High School EOP", "sort_name": "Franklin, Benjamin High School - EOP", "abbr_name": "Franklin EOP", "geom": {"type": "Point", "coordinates": [-75.15921, 39.962909]}, "Year Opened": "2012", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "EOP", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "540 N 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7600", "Fax Number": "", "Website": "https://www.philasd.org/opportunitynetwork/benjamin-franklin-high-school-eop/", "School Leader Name": "MS HOPE WORTHY", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3240", "name": "Liguori Academy-Fortis", "sort_name": "Liguori Academy-Fortis", "abbr_name": "Liguori Fortis", "geom": {"type": "Point", "coordinates": [-75.111842, 39.994204]}, "Year Opened": "2017", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Ligouri INC", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2332 E LEHIGH AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-291-4700", "Fax Number": "215-291-5833", "Website": "https://www.liguoriacademy.org/fortis-program", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3290", "name": "Excel Academy South", "sort_name": "Excel Academy South", "abbr_name": "Excel South", "geom": {"type": "Point", "coordinates": [-75.10251944, 40.02608143]}, "Year Opened": "2008", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4641 ROOSEVELT BLVD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-904-6254", "Fax Number": "215-904-6282", "Website": "http://cameloteducation.org/our-schools/accelerated-schools/excel-academy-south", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3301", "name": "Community Academy of Philadelphia Charter School", "sort_name": "Community Academy of Philadelphia Charter School", "abbr_name": "Community Academy", "geom": {"type": "Point", "coordinates": [-75.10735613, 40.00538049]}, "Year Opened": "1997", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "1100 E ERIE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-533-6700", "Fax Number": "215-533-6722", "Website": "https://www.communityacademy.org", "School Leader Name": "DR. ALBERTA O'BRIEN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3302", "name": "Harambee Institute of Science and Technology Charter School", "sort_name": "Harambee Institute of Science and Technology Charter School", "abbr_name": "Harambee", "geom": {"type": "Point", "coordinates": [-75.25171974, 39.97309111]}, "Year Opened": "1997", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "640 N 66TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-472-8770", "Fax Number": "215-472-9611", "Website": "https://histcs.org", "School Leader Name": "GREGORY SHANNON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3304", "name": "YouthBuild Philadelphia Charter School", "sort_name": "YouthBuild Philadelphia Charter School", "abbr_name": "Youthbuild", "geom": {"type": "Point", "coordinates": [-75.15863287, 39.97290649]}, "Year Opened": "1997", "School Level": "High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "1231 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "", "Fax Number": "", "Website": "https://www.youthbuildphilly.org", "School Leader Name": "SCOTT EMERICK", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "1"}, {"sdp_id": "3306", "name": "Christopher Columbus Charter School", "sort_name": "Christopher Columbus Charter School", "abbr_name": "Christopher Columbus", "geom": {"type": "Point", "coordinates": [-75.15824752, 39.93894574]}, "Year Opened": "1999", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "1", "Street Address": "916 CHRISTIAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-925-7400", "Fax Number": "215-925-6851", "Website": "https://www.columbuscharter.org/", "School Leader Name": "ANTHONY ELIA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3307", "name": "Eugenio Maria De Hostos Charter School", "sort_name": "Eugenio Maria De Hostos Charter School", "abbr_name": "De Hostos", "geom": {"type": "Point", "coordinates": [-75.12324994, 40.04655012]}, "Year Opened": "1998", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "ASPIRA", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "0", "Street Address": "6301 N 2ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-455-2300", "Fax Number": "215-455-6312", "Website": "https://hostoscharter.org/", "School Leader Name": "ALBERTO VARGAS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3308", "name": "Inquiry Charter School", "sort_name": "Inquiry Charter School", "abbr_name": "Inquiry", "geom": {"type": "Point", "coordinates": [-75.21252924, 39.97475234]}, "Year Opened": "1998", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-05", "Grade Span at Scale": "00-08", "Phasing-In": "1", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Belmont Charter Network", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "1301 BELMONT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-386-5768", "Fax Number": "215-386-5769", "Website": "https://www.belmontcharternetwork.org/ics/", "School Leader Name": "CLAIRE COHEN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3309", "name": "Imhotep Institute Charter High School", "sort_name": "Imhotep Institute Charter High School", "abbr_name": "Imhotep", "geom": {"type": "Point", "coordinates": [-75.154717, 40.049427]}, "Year Opened": "1998", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "6201 N 21ST ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-438-4140", "Fax Number": "", "Website": "https://www.imhotephighschool.com", "School Leader Name": "JURY SEGERS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3310", "name": "Laboratory Charter School of Communication and Languages", "sort_name": "Laboratory Charter School of Communication and Languages", "abbr_name": "Laboratory", "geom": {"type": "Point", "coordinates": [-75.145662, 40.001404]}, "Year Opened": "1998", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "1", "Street Address": "926 W SEDGLEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-574-1680", "Fax Number": "", "Website": "https://www.thelaboratorycharterschool.com", "School Leader Name": "KAREN NEWSOME", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3312", "name": "Multicultural Academy Charter School", "sort_name": "Multicultural Academy Charter School", "abbr_name": "Multicultural Academy", "geom": {"type": "Point", "coordinates": [-75.15073123, 40.01112725]}, "Year Opened": "1998", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "3821 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-457-6666", "Fax Number": "", "Website": "https://www.macs.k12.pa.us", "School Leader Name": "SCOTT WALSH", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3313", "name": "Preparatory Charter School of Mathematics, Science, Technology and Careers", "sort_name": "Preparatory Charter School of Mathematics, Science, Technology and Careers", "abbr_name": "Preparatory Charter", "geom": {"type": "Point", "coordinates": [-75.18665686, 39.92845355]}, "Year Opened": "1998", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "1928 POINT BREEZE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-334-6144", "Fax Number": "", "Website": "https://prepchs.org", "School Leader Name": "JO ANN MOORE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3314", "name": "West Oak Lane Charter School", "sort_name": "West Oak Lane Charter School", "abbr_name": "West Oak Lane", "geom": {"type": "Point", "coordinates": [-75.16363798, 40.05936358]}, "Year Opened": "1998", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "0", "Street Address": "7115 STENTON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-927-7995", "Fax Number": "", "Website": "https://www.wolcs.org", "School Leader Name": "CHARLETTA ZEIGLER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3315", "name": "Alliance For Progress Charter School", "sort_name": "Alliance For Progress Charter School", "abbr_name": "Alliance for Progress", "geom": {"type": "Point", "coordinates": [-75.165471, 39.979731]}, "Year Opened": "1998", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "1", "Street Address": "1722 CECIL B MOORE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-232-4892", "Fax Number": "215-232-4893", "Website": "http://www.afpcs.org", "School Leader Name": "GREGORY WRIGHT", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3318", "name": "Freire Charter School", "sort_name": "Freire Charter School", "abbr_name": "Freire", "geom": {"type": "Point", "coordinates": [-75.17442259, 39.95247289]}, "Year Opened": "1999", "School Level": "Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "05-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "1", "Street Address": "2027 CHESTNUT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19103", "Phone Number": "215-557-8555", "Fax Number": "215-557-9051", "Website": "https://www.freirecharterschool.org", "School Leader Name": "CHRISTOPHER MOORE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3321", "name": "Math, Civics and Sciences Charter School", "sort_name": "The Mathematics Civics and Sciences Charter School", "abbr_name": "Math Civics and Sciences", "geom": {"type": "Point", "coordinates": [-75.16097, 39.961301]}, "Year Opened": "1999", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "01-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "447 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-923-4880", "Fax Number": "", "Website": "https://www.mcscs.org", "School Leader Name": "ANDRE GLENN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3322", "name": "Philadelphia Academy Charter School", "sort_name": "Philadelphia Academy Charter School", "abbr_name": "Philadelphia Academy", "geom": {"type": "Point", "coordinates": [-75.01109307, 40.10358436]}, "Year Opened": "1999", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "1", "Street Address": "11000 ROOSEVELT BLVD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "215-676-8320", "Fax Number": "", "Website": "https://www.philadelphiaacademy.org", "School Leader Name": "MEGAN SIMMONS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3323", "name": "Mastery Charter School at Hardy Williams", "sort_name": "Hardy Williams Academy Charter School", "abbr_name": "Mastery Hardy Williams", "geom": {"type": "Point", "coordinates": [-75.226447, 39.941562]}, "Year Opened": "1999", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5400 WARRINGTON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-724-2343", "Fax Number": "", "Website": "https://www.masterycharter.org/hardyhigh", "School Leader Name": "NAEEMAH SEWARD", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3326", "name": "Universal Institute Charter School", "sort_name": "Universal Institute Charter School", "abbr_name": "Universal Institute", "geom": {"type": "Point", "coordinates": [-75.16794, 39.940931]}, "Year Opened": "1999", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "801 S 15TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-732-2876", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-institute/", "School Leader Name": "JEFFERY WILLIAMS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3328", "name": "Mathematics, Science, and Technology Community Charter School (MaST)", "sort_name": "Mathematics, Science, and Technology (MaST) Community Charter School", "abbr_name": "MaST", "geom": {"type": "Point", "coordinates": [-75.005658, 40.113832]}, "Year Opened": "1999", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "0", "Street Address": "1800 BYBERRY RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "267-348-1100", "Fax Number": "", "Website": "https://www.mastccs.org", "School Leader Name": "PHYLLIS SANTIAGO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3329", "name": "Young Scholars Charter School", "sort_name": "Young Scholars Charter School", "abbr_name": "Young Scholars", "geom": {"type": "Point", "coordinates": [-75.14799661, 39.96734659]}, "Year Opened": "1999", "School Level": "Middle", "Admission Type": "Citywide", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Scholar Academies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "900 N MARSHALL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-232-9727", "Fax Number": "", "Website": "https://www.phillyscholars.org", "School Leader Name": "BETH BIRNKRANT", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3331", "name": "Franklin Towne Charter High School", "sort_name": "Franklin Towne Charter High School", "abbr_name": "Franklin Towne High School", "geom": {"type": "Point", "coordinates": [-75.066611, 40.007337]}, "Year Opened": "2000", "School Level": "High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "0", "Street Address": "5301 TACONY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19137", "Phone Number": "215-289-5000", "Fax Number": "215-535-8910", "Website": "https://hs.franklintowne.org", "School Leader Name": "JOSEPH VENDITTI", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3332", "name": "Mariana Bracetti Academy Charter School", "sort_name": "Mariana Bracetti Academy Charter School", "abbr_name": "Bracetti, Mariana", "geom": {"type": "Point", "coordinates": [-75.094146, 40.005757]}, "Year Opened": "2000", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "1840 TORRESDALE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-291-4436", "Fax Number": "", "Website": "https://www.mbacs.org", "School Leader Name": "JANA SOMMA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3333", "name": "Esperanza Academy Charter School", "sort_name": "Esperanza Academy Charter School", "abbr_name": "Esperanza Academy", "geom": {"type": "Point", "coordinates": [-75.13232396, 40.01478539]}, "Year Opened": "2000", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "05-12", "Grade Span at Scale": "00-12", "Phasing-In": "1", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "1", "Street Address": "301 W HUNTING PARK AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-457-3667", "Fax Number": "", "Website": "https://esperanzaacademycs.org", "School Leader Name": "JORGE CALIXTO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3334", "name": "New Foundations Charter School", "sort_name": "New Foundations Charter School", "abbr_name": "New Foundations", "geom": {"type": "Point", "coordinates": [-75.024187, 40.03507]}, "Year Opened": "2000", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "1", "Street Address": "8001 TORRESDALE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-624-8100", "Fax Number": "", "Website": "https://www.nfcsonline.org", "School Leader Name": "NICOLE UNEGBU", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3335", "name": "People for People Charter School", "sort_name": "People for People Charter School", "abbr_name": "People for People", "geom": {"type": "Point", "coordinates": [-75.16067477, 39.96810141]}, "Year Opened": "2001", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "00-08", "Phasing-In": "0", "Phasing-Out": "1", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "800 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-763-7060", "Fax Number": "", "Website": "https://www.pfpcs.org", "School Leader Name": "COREY DWYER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3336", "name": "Philadelphia Performing Arts: A String Theory Charter School", "sort_name": "Philadelphia Performing Arts Charter School", "abbr_name": "Philadelphia Performing Arts", "geom": {"type": "Point", "coordinates": [-75.17166577, 39.91777662]}, "Year Opened": "2000", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "1", "Street Address": "2600 S BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-551-4000", "Fax Number": "", "Website": "https://www.stringtheoryschools.org", "School Leader Name": "ANGELA PULEIO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3337", "name": "Global Leadership Academy Charter School", "sort_name": "Global Leadership Academy Charter School", "abbr_name": "Global Leadership", "geom": {"type": "Point", "coordinates": [-75.2154352, 39.97335953]}, "Year Opened": "2000", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "4601 W GIRARD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-477-6672", "Fax Number": "215-477-6674", "Website": "https://glacharter.org/gawest", "School Leader Name": "SHOSHANA TYLER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3341", "name": "Independence Charter School", "sort_name": "Independence Charter School", "abbr_name": "Independence", "geom": {"type": "Point", "coordinates": [-75.16855598, 39.94496682]}, "Year Opened": "2001", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "1600 LOMBARD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-238-8000", "Fax Number": "215-545-2924", "Website": "https://www.independencecharter.org", "School Leader Name": "KRISTEN LONG", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3353", "name": "KIPP DuBois Charter School", "sort_name": "KIPP DuBois Charter School", "abbr_name": "KIPP DuBois", "geom": {"type": "Point", "coordinates": [-75.22085032, 39.98043019]}, "Year Opened": "2015", "School Level": "High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "KIPP", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "5070 PARKSIDE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "", "Fax Number": "", "Website": "https://kippphiladelphia.org/our-schools/kipp-dubois-collegiate-academy", "School Leader Name": "MELISSA POORMAN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3357", "name": "West Philadelphia Achievement Charter School", "sort_name": "West Philadelphia Achievement Charter School", "abbr_name": "West Philadelphia Achievement", "geom": {"type": "Point", "coordinates": [-75.254111, 39.970667]}, "Year Opened": "2002", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "6701 CALLOWHILL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-476-6471", "Fax Number": "215-476-6481", "Website": "https://www.wpaces.org", "School Leader Name": "LATOYA JOHNSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3358", "name": "Philadelphia Electrical and Technology Charter School", "sort_name": "Philadelphia Electrical and Technology Charter School", "abbr_name": "PE&T", "geom": {"type": "Point", "coordinates": [-75.1681729, 39.9566589]}, "Year Opened": "2002", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "1709 BENJAMIN FRANKLIN PKWY", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19103", "Phone Number": "267-514-1823", "Fax Number": "", "Website": "https://www.petchs.org", "School Leader Name": "ERIN DOUGHERTY", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3359", "name": "Richard Allen Preparatory Charter School", "sort_name": "Richard Allen Preparatory Charter School", "abbr_name": "Allen, Richard", "geom": {"type": "Point", "coordinates": [-75.21926743, 39.92809187]}, "Year Opened": "2001", "School Level": "Middle", "Admission Type": "Citywide", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "2601 S 58TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-878-5144", "Fax Number": "", "Website": "https://www.rapcs.org", "School Leader Name": "LAWRENCE JONES", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3360", "name": "Russell Byers Charter School", "sort_name": "Russell Byers Charter School", "abbr_name": "Byers, Russell", "geom": {"type": "Point", "coordinates": [-75.17155064, 39.95594922]}, "Year Opened": "2001", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "1911 ARCH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19103", "Phone Number": "215-972-1700", "Fax Number": "", "Website": "https://www.byerschool.org", "School Leader Name": "KELLIE PORTER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3361", "name": "Mastery Charter School at Lenfest", "sort_name": "Mastery Charter High School", "abbr_name": "Mastery Lenfest", "geom": {"type": "Point", "coordinates": [-75.14734776, 39.94950579]}, "Year Opened": "2001", "School Level": "Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "07-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "35 S 4TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19106", "Phone Number": "215-922-1902", "Fax Number": "215-922-1903", "Website": "https://masterycharter.org/secondary-schools/lenfest-campus", "School Leader Name": "CHRISTOPHER ZIEMBA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3362", "name": "Wissahickon Charter School", "sort_name": "Wissahickon Charter School", "abbr_name": "Wissahickon", "geom": {"type": "Point", "coordinates": [-75.17405347, 40.01537246]}, "Year Opened": "2002", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "1", "Street Address": "4700 WISSAHICKON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "267-338-1020", "Fax Number": "", "Website": "http://www.wissahickoncharter.org", "School Leader Name": "KRISTI LITTELL", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3364", "name": "First Philadelphia Preparatory Charter School", "sort_name": "First Philadelphia Preparatory Charter School", "abbr_name": "First Philadelphia", "geom": {"type": "Point", "coordinates": [-75.08240619, 40.00719991]}, "Year Opened": "2002", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "American Paradigm", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "1", "Street Address": "4300 TACONY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-743-3100", "Fax Number": "215-743-9877", "Website": "https://www.ap-schools.org/First-Phila-Prep/", "School Leader Name": "DR. MAX KLINK", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3365", "name": "Green Woods Charter School", "sort_name": "Green Woods Charter School", "abbr_name": "Green Woods", "geom": {"type": "Point", "coordinates": [-75.23385852, 40.04416378]}, "Year Opened": "2002", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "468 DOMINO LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-482-6337", "Fax Number": "215-482-9135", "Website": "https://www.greenwoodscharter.org", "School Leader Name": "DEBI DURSO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3366", "name": "Maritime Academy Charter School (MACHS)", "sort_name": "Maritime Academy Charter School", "abbr_name": "Maritime", "geom": {"type": "Point", "coordinates": [-75.068318, 40.007862]}, "Year Opened": "2003", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "01-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "1", "Street Address": "2275 BRIDGE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19137", "Phone Number": "215-535-4555", "Fax Number": "215-387-7021", "Website": "https://www.maritimecharter.org", "School Leader Name": "LUCY FERIA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3368", "name": "Belmont Charter School", "sort_name": "Belmont Elementary Charter School", "abbr_name": "Belmont", "geom": {"type": "Point", "coordinates": [-75.20487093, 39.96696484]}, "Year Opened": "2005", "School Level": "Elementary-Middle-High", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Belmont Charter Network", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "1", "Street Address": "4030 BROWN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-823-8208", "Fax Number": "215-823-8209", "Website": "https://www.belmontcharternetwork.org/bcs", "School Leader Name": "KRISTEN NEWMUIS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3370", "name": "KIPP Philadelphia Charter School", "sort_name": "KIPP Philadelphia Charter School", "abbr_name": "KIPP Philadelphia", "geom": {"type": "Point", "coordinates": [-75.158039, 39.992038]}, "Year Opened": "2003", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "KIPP", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "1", "Street Address": "3001 N 27TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-227-1728", "Fax Number": "", "Website": "https://kippphiladelphia.org/our-schools/kipp-philadelphia-preparatory-academy", "School Leader Name": "MARC MANNELLA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3372", "name": "Discovery Charter School", "sort_name": "The Jacquelyn Y. Kelley Discovery Charter School", "abbr_name": "Discovery", "geom": {"type": "Point", "coordinates": [-75.21350485, 39.97770823]}, "Year Opened": "2003", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "4700 PARKSIDE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-879-8182", "Fax Number": "215-879-9510", "Website": "https://www.jykdiscoverycharterschool.com/", "School Leader Name": "MARIA SNIPE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3378", "name": "Philadelphia Montessori Charter School", "sort_name": "Philadelphia Montessori Charter School", "abbr_name": "Philadelphia Montessori", "geom": {"type": "Point", "coordinates": [-75.24515327, 39.91656437]}, "Year Opened": "2004", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "2227 ISLAND RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-365-4011", "Fax Number": "", "Website": "https://www.philadelphiamontessori.org", "School Leader Name": "EARL SISSELL", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3379", "name": "Ad Prima Charter School", "sort_name": "Ad Prima Charter School", "abbr_name": "Ad Prima", "geom": {"type": "Point", "coordinates": [-75.24786, 39.984296]}, "Year Opened": "2004", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "1", "Street Address": "1922 N 63RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "267-403-2672", "Fax Number": "610-660-8416", "Website": "https://www.adprimacharterschools.org", "School Leader Name": "NIYA BLACKWELL", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3383", "name": "Mastery Charter School at Shoemaker", "sort_name": "Mastery Charter School - Shoemaker Campus", "abbr_name": "Mastery Shoemaker", "geom": {"type": "Point", "coordinates": [-75.228437, 39.975799]}, "Year Opened": "2006", "School Level": "Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "07-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5301 MEDIA ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "267-296-7111", "Fax Number": "267-296-7112", "Website": "https://masterycharter.org/secondary-schools/shoemaker-campus", "School Leader Name": "MEAGHANN LAWSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3384", "name": "Folk Arts-Cultural Treasures Charter School", "sort_name": "Folk Arts-Cultural Treasures Charter School (FACTS)", "abbr_name": "FACTS", "geom": {"type": "Point", "coordinates": [-75.15551365, 39.95885103]}, "Year Opened": "2005", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "1023 CALLOWHILL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-569-2600", "Fax Number": "215-569-3985", "Website": "https://www.factschool.org", "School Leader Name": "ELYSSA YUEN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3385", "name": "Mastery Charter School at Thomas Campus", "sort_name": "Mastery Charter School - Thomas Campus", "abbr_name": "Mastery Thomas", "geom": {"type": "Point", "coordinates": [-75.16358831, 39.91454096]}, "Year Opened": "2005", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "1", "Street Address": "927 JOHNSTON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "267-236-0036", "Fax Number": "267-236-0030", "Website": "https://masterycharter.org/elementary-schools/thomas", "School Leader Name": "EMILY MYERS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3386", "name": "Northwood Academy Charter School", "sort_name": "Northwood Academy Charter School", "abbr_name": "Northwood", "geom": {"type": "Point", "coordinates": [-75.09523811, 40.02015006]}, "Year Opened": "2005", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "4621 CASTOR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-289-5606", "Fax Number": "215-289-5464", "Website": "https://www.northwoodcs.org", "School Leader Name": "CINDY CAREY", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3388", "name": "Boys Latin of Philadelphia Charter School", "sort_name": "Boys' Latin of Philadelphia Charter School", "abbr_name": "Boys Latin", "geom": {"type": "Point", "coordinates": [-75.23374851, 39.95172558]}, "Year Opened": "2007", "School Level": "Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "1", "Street Address": "5501 CEDAR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-387-5149", "Fax Number": "215-387-5159", "Website": "https://www.boyslatin.org", "School Leader Name": "EROS UTHMAN-OLUKOKUN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3389", "name": "Keystone Academy Charter School", "sort_name": "Keystone Academy Charter School", "abbr_name": "Keystone Academy", "geom": {"type": "Point", "coordinates": [-75.045089, 40.021916]}, "Year Opened": "2007", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "0", "Street Address": "4521 LONGSHORE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19135", "Phone Number": "215-332-2111", "Fax Number": "", "Website": "http://www.keystoneacademycs.org", "School Leader Name": "DR. KATHRYN MAKAR", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3392", "name": "Southwest Leadership Academy Charter School", "sort_name": "Southwest Leadership Academy Charter School", "abbr_name": "Southwest Leadership", "geom": {"type": "Point", "coordinates": [-75.2426, 39.918099]}, "Year Opened": "2007", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "7101 PASCHALL AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-729-1939", "Fax Number": "", "Website": "https://slacs-phila.org/", "School Leader Name": "LEIGH PURNELL", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3393", "name": "Mastery Charter School at Pickett", "sort_name": "Mastery Charter School - Pickett Campus", "abbr_name": "Mastery Pickett", "geom": {"type": "Point", "coordinates": [-75.18087124, 40.03187441]}, "Year Opened": "2007", "School Level": "Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "5700 WAYNE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-866-9000", "Fax Number": "", "Website": "https://masterycharter.org/secondary-schools/pickett-campus", "School Leader Name": "MARGAUX MUNNELLY", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3394", "name": "Pan American Academy Charter School", "sort_name": "Pan American Academy Charter School", "abbr_name": "Pan American", "geom": {"type": "Point", "coordinates": [-75.13614883, 39.99428061]}, "Year Opened": "2008", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Congreso", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "2830 N AMERICAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-425-1212", "Fax Number": "", "Website": "https://www.panamcs.org/", "School Leader Name": "YOLANDA COOPER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3395", "name": "Antonia Pantoja Charter School", "sort_name": "Antonia Pantoja Charter School", "abbr_name": "Pantoja, Antonia", "geom": {"type": "Point", "coordinates": [-75.13136564, 40.01300525]}, "Year Opened": "2008", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "ASPIRA", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "4101 N AMERICAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "", "Fax Number": "", "Website": "https://pantojacharter.org/", "School Leader Name": "SANDRA GONZALEZ", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3399", "name": "Sankofa Freedom Academy Charter School", "sort_name": "Sankofa Freedom Academy Charter School", "abbr_name": "Sankofa", "geom": {"type": "Point", "coordinates": [-75.128641, 39.987082]}, "Year Opened": "2009", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "2501 KENSINGTON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "", "Fax Number": "", "Website": "https://www.sfacs.us", "School Leader Name": "MARIKA MEEKINS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3403", "name": "Franklin Towne Charter Elementary School", "sort_name": "Franklin Towne Charter Elementary School", "abbr_name": "Franklin Towne Elementary", "geom": {"type": "Point", "coordinates": [-75.07472434, 39.99551599]}, "Year Opened": "2009", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "0", "Street Address": "4259 RICHMOND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19137", "Phone Number": "", "Fax Number": "", "Website": "https://es.franklintowne.org", "School Leader Name": "EUGENIA KOO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3404", "name": "Tacony Academy Charter School", "sort_name": "Tacony Academy Charter School", "abbr_name": "Tacony Academy", "geom": {"type": "Point", "coordinates": [-75.06598353, 40.06684222]}, "Year Opened": "2009", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "American Paradigm", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "1", "Street Address": "1330 RHAWN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "", "Fax Number": "", "Website": "https://www.ap-schools.org/Tacony-Academy-Charter/", "School Leader Name": "JESS HARRON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3407", "name": "Mastery Charter School at Harrity", "sort_name": "Mastery Charter School At Harrity Elementary", "abbr_name": "Mastery Harrity", "geom": {"type": "Point", "coordinates": [-75.23548525, 39.94852458]}, "Year Opened": "2010", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5601 CHRISTIAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-471-2908", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/harrity", "School Leader Name": "ROBERT MILLER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3408", "name": "Mastery Charter School at Mann", "sort_name": "Mastery Charter School Mann Elementary", "abbr_name": "Mastery Mann", "geom": {"type": "Point", "coordinates": [-75.2313266, 39.98590147]}, "Year Opened": "2010", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "5376 W BERKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-581-5516", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/mann", "School Leader Name": "JANET THOMPSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3409", "name": "Mastery Charter School at Smedley", "sort_name": "Mastery Charter School Smedley Elementary", "abbr_name": "Mastery Smedley", "geom": {"type": "Point", "coordinates": [-75.073892, 40.019786]}, "Year Opened": "2010", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "1790 BRIDGE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-537-2523", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/smedley", "School Leader Name": "CAITLIN MURPHY", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3410", "name": "Bluford Charter School", "sort_name": "Universal Bluford Charter School", "abbr_name": "Bluford", "geom": {"type": "Point", "coordinates": [-75.23602, 39.973739]}, "Year Opened": "2010", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "5801 MEDIA ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-581-5502", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-bluford/", "School Leader Name": "CRYSTAL GARY-NELSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3412", "name": "Mastery Charter School at Douglass", "sort_name": "Frederick Douglass Mastery Charter School", "abbr_name": "Mastery Douglass", "geom": {"type": "Point", "coordinates": [-75.16846267, 39.98461532]}, "Year Opened": "2010", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "2118 W NORRIS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-684-5063", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/frederick-douglass", "School Leader Name": "AKEERE SCOTT-MACK", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3415", "name": "Mastery Charter School at Clymer", "sort_name": "Mastery Charter School At Clymer Elementary", "abbr_name": "Mastery Clymer", "geom": {"type": "Point", "coordinates": [-75.15034419, 39.99565934]}, "Year Opened": "2011", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "1201 W RUSH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/clymer", "School Leader Name": "HEATHER SCHEG", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3416", "name": "Mastery Charter School at Gratz", "sort_name": "Mastery Charter School Simon Gratz Campus", "abbr_name": "Mastery Gratz", "geom": {"type": "Point", "coordinates": [-75.15660685, 40.01453965]}, "Year Opened": "2011", "School Level": "Middle-High", "Admission Type": "Neighborhood", "Current Grade Span Served": "07-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "1798 W HUNTING PARK AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/secondary-schools/gratz-prep-middle", "School Leader Name": "LE'YONDO DUNN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3417", "name": "Universal Charter School at Audenried", "sort_name": "Universal Audenried Promise Neighborhood Partnership Charter School", "abbr_name": "Universal Audenried", "geom": {"type": "Point", "coordinates": [-75.19859, 39.933737]}, "Year Opened": "2011", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "3301 TASKER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-audenried/", "School Leader Name": "JOSH ANDERSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3418", "name": "Universal Charter School at Vare", "sort_name": "Universal Vare Promise Neighborhood Partnership Charter School", "abbr_name": "Universal Vare", "geom": {"type": "Point", "coordinates": [-75.185707, 39.925837]}, "Year Opened": "2011", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "2100 S 24TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-vare/", "School Leader Name": "KAREN HOWELL-TOOMER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3419", "name": "Lindley Academy Charter at Birney", "sort_name": "General David B. Birney Charter School", "abbr_name": "Lindely Birney", "geom": {"type": "Point", "coordinates": [-75.13883269, 40.02954904]}, "Year Opened": "2011", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "American Paradigm", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "900 LINDLEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "", "Fax Number": "", "Website": "https://www.ap-schools.org/Lindley-Academy/", "School Leader Name": "", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3420", "name": "Mastery Charter School at Cleveland", "sort_name": "Mastery Charter School Cleveland Elementary", "abbr_name": "Mastery Cleveland", "geom": {"type": "Point", "coordinates": [-75.15908455, 40.01027824]}, "Year Opened": "2012", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2012-2013", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "3701 N 19TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/event/cleveland-back-school-night/", "School Leader Name": "LETISHA LAWS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3421", "name": "Universal Charter School at Creighton", "sort_name": "Universal Creighton Charter School", "abbr_name": "Universal Creighton", "geom": {"type": "Point", "coordinates": [-75.10586492, 40.03404277]}, "Year Opened": "2012", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2012-2013", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "0", "Street Address": "5401 TABOR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-creighton/", "School Leader Name": "WENDY BALDWIN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3422", "name": "The Philadelphia Charter School for Arts and Sciences", "sort_name": "The Philadelphia Charter School For The Arts & Sciences At H.R. Edmunds", "abbr_name": "Edmunds", "geom": {"type": "Point", "coordinates": [-75.08599631, 40.02423246]}, "Year Opened": "2012", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2012-2013", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "1197 HAWORTH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-537-2520", "Fax Number": "", "Website": "https://www.stringtheoryschools.org/edmunds-campus/art-science-landing-page", "School Leader Name": "JUDITH TAGGART", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3423", "name": "Memphis Street Academy Charter School at J.P. Jones", "sort_name": "Memphis Street Academy At J.P. Jones", "abbr_name": "Memphis Street", "geom": {"type": "Point", "coordinates": [-75.11285949, 39.98588986]}, "Year Opened": "2012", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "American Paradigm", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2012-2013", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "2950 MEMPHIS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "", "Fax Number": "", "Website": "https://www.ap-schools.org/Memphis-Street-Academy/", "School Leader Name": "AMANDA HENNIE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3424", "name": "Universal Charter School at Alcorn", "sort_name": "Universal Alcorn Charter School", "abbr_name": "Universal Alcorn", "geom": {"type": "Point", "coordinates": [-75.197771, 39.935499]}, "Year Opened": "2013", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "1", "Street Address": "3200 DICKINSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-alcorn/", "School Leader Name": "AARON STARKE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3426", "name": "Mastery Charter School at Pastorius", "sort_name": "Mastery Charter School Pastorius Elementary", "abbr_name": "Mastery Pastorius", "geom": {"type": "Point", "coordinates": [-75.161424, 40.048208]}, "Year Opened": "2013", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "5650 SPRAGUE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/pastorius-richardson", "School Leader Name": "ERIC LANGSTON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3427", "name": "Mastery Charter School at Wister", "sort_name": "John Wister Mastery Charter School", "abbr_name": "Mastery Wister", "geom": {"type": "Point", "coordinates": [-75.16672063, 40.03288146]}, "Year Opened": "2016", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "67 E BRINGHURST ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/john-wister", "School Leader Name": "ASHLEY LANGSTON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3428", "name": "Global Leadership Academy at Huey", "sort_name": "Global Leadership Academy Charter School Southwest At Huey", "abbr_name": "Global Leadership at Huey", "geom": {"type": "Point", "coordinates": [-75.22685833, 39.95332691]}, "Year Opened": "2016", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5200 PINE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "", "Fax Number": "", "Website": "https://glacharter.org/southwest", "School Leader Name": "TAMIKA EVANS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3437", "name": "KIPP North Philadelphia Charter School", "sort_name": "KIPP North Philadelphia Charter School", "abbr_name": "KIPP N Phila Charter", "geom": {"type": "Point", "coordinates": [-75.158212, 39.99193]}, "Year Opened": "2018", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-02", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "KIPP", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "2539 N 16TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "", "Fax Number": "", "Website": "https://kippphiladelphia.org/kipp-north-philadelphia-academy", "School Leader Name": "BEN SPEICHER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3438", "name": "Deep Roots Charter School", "sort_name": "Deep Roots Charter School", "abbr_name": "Deep Roots Charter", "geom": {"type": "Point", "coordinates": [-75.101664, 39.998066]}, "Year Opened": "2018", "School Level": "Elementary", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "0", "Street Address": "3556 FRANKFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "", "Fax Number": "", "Website": "https://deeprootscs.org", "School Leader Name": "G. LOGAN BLYLER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3439", "name": "Mastery Prep Elementary Charter School", "sort_name": "Mastery Prep Elementary Charter School", "abbr_name": "Mastery Prp Elm", "geom": {"type": "Point", "coordinates": [-75.156128, 40.013457]}, "Year Opened": "2018", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-03", "Grade Span at Scale": "00-06", "Phasing-In": "1", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "1801 W PIKE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/mastery-prep", "School Leader Name": "EUGENE HAITH", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3440", "name": "MaST Community Charter School II", "sort_name": "Mathematics, Science and Technology Community Charter School II", "abbr_name": "MaST II", "geom": {"type": "Point", "coordinates": [-75.044372, 40.017476]}, "Year Opened": "2016", "School Level": "Elementary-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-06, 09", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "1", "Street Address": "6501 STATE RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19135", "Phone Number": "", "Fax Number": "", "Website": "https://mast2.org/", "School Leader Name": "CHUCK PUCHON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3441", "name": "TECH Freire Charter School", "sort_name": "Tech Freire Charter School", "abbr_name": "TECH Freire", "geom": {"type": "Point", "coordinates": [-75.155669, 39.986869]}, "Year Opened": "2016", "School Level": "High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "2221 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "", "Fax Number": "", "Website": "http://techfreire.org/", "School Leader Name": "CHARLES WARE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3442", "name": "Independence Charter School West", "sort_name": "Independence West Charter School", "abbr_name": "Independence West", "geom": {"type": "Point", "coordinates": [-75.22614036, 39.93731366]}, "Year Opened": "2016", "School Level": "Elementary", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5600 CHESTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "", "Fax Number": "", "Website": "https://www.icswest.org", "School Leader Name": "DANA TWYMAN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3443", "name": "KIPP West Philadelphia Charter School", "sort_name": "KIPP West Philadelphia Charter School", "abbr_name": "KIPP West Elementary", "geom": {"type": "Point", "coordinates": [-75.24184422, 39.94453199]}, "Year Opened": "2016", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "KIPP", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "1", "Street Address": "5070 PARKSIDE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "267-787-5700", "Fax Number": "", "Website": "https://kippphiladelphia.org/our-schools/kipp-west-philadelphia-elementary-academy/", "School Leader Name": "CHESHONNA MILES", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3445", "name": "MAST III Charter School", "sort_name": "MAST Community Charter School III", "abbr_name": "MAST III", "geom": {"type": "Point", "coordinates": [-74.991671, 40.109575]}, "Year Opened": "2019", "School Level": "Elementary", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "0", "Street Address": "1 CROWN WAY", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19154", "Phone Number": "", "Fax Number": "", "Website": "https://mast3.org/", "School Leader Name": "PHIL SERPIELLO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3446", "name": "Philadelphia Hebrew Public Charter School", "sort_name": "Philadelphia Hebrew Public Charter School", "abbr_name": "Philadelphia Hebrew", "geom": {"type": "Point", "coordinates": [-75.184376, 40.012045]}, "Year Opened": "2019", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-01", "Grade Span at Scale": "00-08", "Phasing-In": "1", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "3300 HENRY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19129", "Phone Number": "", "Fax Number": "", "Website": "https://philadelphiahebrewpublic.org/", "School Leader Name": "ELYSSA YUEN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3510", "name": "El Centro de Estudiantes (Big Picture)", "sort_name": "El Centro de Estudiantes - Big Picture", "abbr_name": "El Centro", "geom": {"type": "Point", "coordinates": [-75.17934897974463, 39.97507482702365]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Big Picture Philadelphia", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1241 N TANEY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "267-687-1172", "Fax Number": "", "Website": "https://www.elcentrobpp.org/", "School Leader Name": "MISS JACQUELYN TISDALE", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3540", "name": "Ombudsman Northwest", "sort_name": "Ombudsman Accelerated Northwest", "abbr_name": "Ombudsman NW", "geom": {"type": "Point", "coordinates": [-75.15648403, 40.05586457]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Ombudsman Educational Services LTD", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "2111 EASTBURN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-924-8950", "Fax Number": "", "Website": "http://www.ombudsman.com/state/pa", "School Leader Name": "MS JULITA BYRD", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3810", "name": "One Bright Ray - Elmwood Campus", "sort_name": "One Bright Ray - Elmwood Campus", "abbr_name": "OBR Elmwood", "geom": {"type": "Point", "coordinates": [-75.22908493, 39.92251591]}, "Year Opened": "2015", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "6404 ELMWOOD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-488-1177", "Fax Number": "", "Website": "http://www.onebrightraycommunity.org/school-life/obr-team/elmwood-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3820", "name": "Camelot Academy East", "sort_name": "Achieve Academy East Campus", "abbr_name": "Camelot Hunting Park", "geom": {"type": "Point", "coordinates": [-75.12599679, 40.01425525]}, "Year Opened": "2016", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "AEDY", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4224 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "267-335-4764", "Fax Number": "", "Website": "http://cameloteducation.org/our-schools/transitional-schools/camelot-academy-east", "School Leader Name": "MS JEN GREEN", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3850", "name": "Northeast High School EOP", "sort_name": "Northeast High School - EOP", "abbr_name": "NE High EOP", "geom": {"type": "Point", "coordinates": [-75.071168, 40.055681]}, "Year Opened": "2016", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "EOP", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "1601 COTTMAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3200", "Fax Number": "", "Website": "https://www.philasd.org/opportunitynetwork/northeast-high-school-eop/", "School Leader Name": "MS ADRIENNE STATEN", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3880", "name": "South Philadelphia High School EOP", "sort_name": "South Philadelphia High School - EOP", "abbr_name": "South Philly EOP", "geom": {"type": "Point", "coordinates": [-75.1691065, 39.9238987]}, "Year Opened": "2008", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "EOP", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2101 S BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8400", "Fax Number": "", "Website": "https://www.philasd.org/opportunitynetwork/south-philadelphia-high-school-eop/", "School Leader Name": "MS AUDREY NOCK", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4020", "name": "Overbrook High School", "sort_name": "Overbrook High School", "abbr_name": "Overbrook High", "geom": {"type": "Point", "coordinates": [-75.238556, 39.981028]}, "Year Opened": "1926", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "5898 LANCASTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7300", "Fax Number": "215-400-7301", "Website": "https://overbrookhs.philasd.org/", "School Leader Name": "MRS KAHLILA LEE", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4030", "name": "High School of Engineering and Science", "sort_name": "High School of Engineering and Science - Carver", "abbr_name": "Carver", "geom": {"type": "Point", "coordinates": [-75.16127789, 39.98341809]}, "Year Opened": "1949", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "07-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1600 W NORRIS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7380", "Fax Number": "215-400-7381", "Website": "https://hses.philasd.org/", "School Leader Name": "MR DARRYL JOHNSON", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4060", "name": "Murrell Dobbins Career and Technical High School", "sort_name": "Dobbins, Murrell Career and Technical Education High School", "abbr_name": "Dobbins", "geom": {"type": "Point", "coordinates": [-75.16679334, 39.9954293]}, "Year Opened": "1938", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2150 W LEHIGH AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7050", "Fax Number": "215-400-7051", "Website": "https://dobbins.philasd.org/", "School Leader Name": "MS SHERVON THOMPSON", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4140", "name": "Strawberry Mansion High School", "sort_name": "Strawberry Mansion High School", "abbr_name": "Strawberry Mansion", "geom": {"type": "Point", "coordinates": [-75.18402464, 39.99074371]}, "Year Opened": "1964", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Program Redesign", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3133 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7500", "Fax Number": "215-400-7501", "Website": "https://smhs.philasd.org/", "School Leader Name": "MR BRIAN MCCRACKEN", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4220", "name": "James G. Blaine School", "sort_name": "Blaine, James G. School", "abbr_name": "Blaine", "geom": {"type": "Point", "coordinates": [-75.18293887, 39.98521297]}, "Year Opened": "1966", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3001 W BERKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7330", "Fax Number": "215-400-7331", "Website": "https://blaine.philasd.org/", "School Leader Name": "MRS GIANEEN ANYIKA", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4240", "name": "Lewis C. Cassidy Academics Plus School", "sort_name": "Cassidy, Lewis C. Academics Plus School", "abbr_name": "Cassidy", "geom": {"type": "Point", "coordinates": [-75.25077443, 39.97551874]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "1625 N 76TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-400-7510", "Fax Number": "215-400-7511", "Website": "https://cassidy.philasd.org/", "School Leader Name": "MRS TANGELA MCCLAM", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4270", "name": "William Dick School", "sort_name": "Dick, William School", "abbr_name": "Dick, William", "geom": {"type": "Point", "coordinates": [-75.173787, 39.98673]}, "Year Opened": "1954", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2498 W DIAMOND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7340", "Fax Number": "215-400-7341", "Website": "https://wdick.philasd.org/", "School Leader Name": "MRS AMY WILLIAMS", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4280", "name": "Samuel Gompers School", "sort_name": "Gompers, Samuel School", "abbr_name": "Gompers", "geom": {"type": "Point", "coordinates": [-75.23754028, 39.99205763]}, "Year Opened": "1968", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2017-2018", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "5701 WYNNEFIELD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7250", "Fax Number": "215-400-7251", "Website": "https://gompers.philasd.org/", "School Leader Name": "MR PHILLIP DELUCA", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4300", "name": "Edward Heston School", "sort_name": "Heston, Edward School", "abbr_name": "Heston", "geom": {"type": "Point", "coordinates": [-75.229727, 39.977852]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "1621 N 54TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7290", "Fax Number": "215-400-7291", "Website": "https://heston.philasd.org/", "School Leader Name": "MS ANGELA EDWARDS", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Nkemdi Adighije", "FACE Liaison Email": "nadighije@philasd.org", "FACE Liaison Phone Number": "215-400-7290", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4320", "name": "Robert E. Lamberton School", "sort_name": "Lamberton, Robert E. School", "abbr_name": "Lamberton", "geom": {"type": "Point", "coordinates": [-75.266329, 39.975465]}, "Year Opened": "1949", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2019-2020", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "7501 WOODBINE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-400-7530", "Fax Number": "215-400-7531", "Website": "https://lamberton.philasd.org/", "School Leader Name": "MS TIFFANY OSEI", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4350", "name": "E. Washington Rhodes School", "sort_name": "Rhodes, E. Washington Elementary School", "abbr_name": "Rhodes", "geom": {"type": "Point", "coordinates": [-75.17812979, 40.00275594]}, "Year Opened": "2013", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "2900 W CLEARFIELD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7060", "Fax Number": "215-400-7061", "Website": "https://rhodes.philasd.org/", "School Leader Name": "MS ANDREA SURRATT", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Maurice Jessup", "FACE Liaison Email": "mjessup@philasd.org", "FACE Liaison Phone Number": "215-400-7910", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4360", "name": "Kenderton Elementary School", "sort_name": "Kenderton Elementary School", "abbr_name": "Kenderton", "geom": {"type": "Point", "coordinates": [-75.154241, 40.00494]}, "Year Opened": "2016", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1500 W ONTARIO ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-8340", "Fax Number": "215-400-8341", "Website": "https://kenderton.philasd.org/", "School Leader Name": "MS DEANNA BREDELL", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4370", "name": "Overbrook Elementary School", "sort_name": "Overbrook Elementary School", "abbr_name": "Overbrook Elem", "geom": {"type": "Point", "coordinates": [-75.24584611, 39.98225806]}, "Year Opened": "1990", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "2032 N 62ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-400-7520", "Fax Number": "215-400-7521", "Website": "https://overbrook.philasd.org/", "School Leader Name": "MR JOE DIXON", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4380", "name": "Thomas M. Peirce School", "sort_name": "Peirce, Thomas M. School", "abbr_name": "Peirce", "geom": {"type": "Point", "coordinates": [-75.168424, 39.998839]}, "Year Opened": "1908", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "2200 N 22ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7020", "Fax Number": "215-400-7021", "Website": "https://tmpeirce.philasd.org/", "School Leader Name": "MR ANTHONY GORDON", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4440", "name": "Dr. Ethel Allen School", "sort_name": "Allen, Dr. Ethel School", "abbr_name": "Allen, Ethel", "geom": {"type": "Point", "coordinates": [-75.18345963, 39.99757697]}, "Year Opened": "1971", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3200 W LEHIGH AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7040", "Fax Number": "215-400-7041", "Website": "https://ethelallen.philasd.org/", "School Leader Name": "MR JOHN PAUL ROSKOS", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Maryann Cobb", "FACE Liaison Email": "mcobb@philasd.org", "FACE Liaison Phone Number": "215-400-7040", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4460", "name": "Tanner G. Duckrey School", "sort_name": "Duckrey, Tanner G. School", "abbr_name": "Duckrey", "geom": {"type": "Point", "coordinates": [-75.15830107, 39.98520302]}, "Year Opened": "1968", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1501 W DIAMOND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7350", "Fax Number": "215-400-7351", "Website": "https://duckrey.philasd.org/", "School Leader Name": "MR DAVID COHEN", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4470", "name": "Richard R. Wright School", "sort_name": "Wright, Richard R. School", "abbr_name": "Wright", "geom": {"type": "Point", "coordinates": [-75.17699812, 39.99043963]}, "Year Opened": "1970", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2201 N 28TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7030", "Fax Number": "215-400-7031", "Website": "https://wright.philasd.org/", "School Leader Name": "MS SAKIA BEARD", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4480", "name": "Overbrook Educational Center", "sort_name": "Overbrook Educational Center", "abbr_name": "Overbrook EC", "geom": {"type": "Point", "coordinates": [-75.25401239, 39.97429952]}, "Year Opened": "1986", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "6722 LANSDOWNE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-400-7540", "Fax Number": "215-400-7541", "Website": "https://oec.philasd.org/", "School Leader Name": "MS MEREDITH FOOTE", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4530", "name": "Edward Gideon School", "sort_name": "Gideon, Edward School", "abbr_name": "Gideon", "geom": {"type": "Point", "coordinates": [-75.18016456, 39.98447594]}, "Year Opened": "1952", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2018-2019", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2817 W GLENWOOD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7360", "Fax Number": "215-400-7361", "Website": "https://gideon.philasd.org/", "School Leader Name": "MS SHAUNEILLE TAYLOR", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4560", "name": "William D. Kelley School", "sort_name": "Kelley, William D. School", "abbr_name": "Kelley", "geom": {"type": "Point", "coordinates": [-75.18032689, 39.98039173]}, "Year Opened": "1965", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1601 N 28TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7370", "Fax Number": "215-400-7371", "Website": "https://kelley.philasd.org/", "School Leader Name": "MS CRYSTAL EDWARDS", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4570", "name": "General George G. Meade School", "sort_name": "Meade, General George G. School", "abbr_name": "Meade", "geom": {"type": "Point", "coordinates": [-75.164718, 39.978587]}, "Year Opened": "1937", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1600 N 18TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7310", "Fax Number": "215-400-7311", "Website": "https://meade.philasd.org/", "School Leader Name": "MS AKEERE SCOTT", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5020", "name": "Thomas A. Edison High School", "sort_name": "Edison, Thomas A. High School", "abbr_name": "Edison", "geom": {"type": "Point", "coordinates": [-75.12863791, 40.01116485]}, "Year Opened": "1985", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2014-2015", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "151 W LUZERNE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3900", "Fax Number": "215-400-3901", "Website": "https://edison.philasd.org/", "School Leader Name": "MS CHERYL MASON-DORMAN", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5050", "name": "Philadelphia Military Academy", "sort_name": "Philadelphia Military Academy (PMA)", "abbr_name": "PMA", "geom": {"type": "Point", "coordinates": [-75.15443401, 39.98470959]}, "Year Opened": "2005", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2118 N. 13TH ST.", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7420", "Fax Number": "215-400-7421", "Website": "https://pma.philasd.org/", "School Leader Name": "MS KRISTIAN ALI", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5060", "name": "Jules E. Mastbaum Area Vocational Technical High School", "sort_name": "Mastbaum, Jules E. Area Vocational Technical High School", "abbr_name": "Mastbaum", "geom": {"type": "Point", "coordinates": [-75.11213573, 39.99214686]}, "Year Opened": "1929", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "3116 FRANKFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7220", "Fax Number": "215-400-7221", "Website": "https://mastbaum.philasd.org/", "School Leader Name": "MR DAVID LON JR", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5070", "name": "Parkway Northwest High School", "sort_name": "Parkway Northwest High School", "abbr_name": "Parkway N.W.", "geom": {"type": "Point", "coordinates": [-75.16457453, 40.05664074]}, "Year Opened": "1960", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6200 CRITTENDEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-3390", "Fax Number": "215-400-3391", "Website": "https://parkwaynw.philasd.org/", "School Leader Name": "MR JEFFREY MACFARLAND", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5080", "name": "Parkway Center City Middle College High School", "sort_name": "Parkway Center City Middle College High School", "abbr_name": "Parkway C.C.", "geom": {"type": "Point", "coordinates": [-75.1592865, 39.96300501]}, "Year Opened": "2005", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "540 N 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7620", "Fax Number": "215-400-7621", "Website": "https://parkwaycc.philasd.org/", "School Leader Name": "MRS ANH NGUYEN", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5090", "name": "Parkway West High School", "sort_name": "Parkway West High School", "abbr_name": "Parkway W.", "geom": {"type": "Point", "coordinates": [-75.21546704, 39.96425379]}, "Year Opened": "2004", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4725 FAIRMOUNT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7710", "Fax Number": "215-400-7711", "Website": "https://parkwaywest.philasd.org/", "School Leader Name": "MR WILLIAM BROWN", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5150", "name": "William W. Bodine High School", "sort_name": "Bodine, William W. High School", "abbr_name": "Bodine", "geom": {"type": "Point", "coordinates": [-75.14343443, 39.96793026]}, "Year Opened": "1935", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1101 N 4TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7630", "Fax Number": "215-400-7631", "Website": "https://bodine.philasd.org/", "School Leader Name": "MS PATRICIA PARSON", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5160", "name": "Penn Treaty High School", "sort_name": "Penn Treaty High School", "abbr_name": "Penn Treaty", "geom": {"type": "Point", "coordinates": [-75.12787008, 39.97272711]}, "Year Opened": "2013", "School Level": "Middle-High", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "600 E THOMPSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-3800", "Fax Number": "215-400-3801", "Website": "https://penntreaty.philasd.org/", "School Leader Name": "MS WAJIBAH THOMPSON", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5170", "name": "Julia de Burgos School", "sort_name": "De Burgos, Julia School", "abbr_name": "De Burgos", "geom": {"type": "Point", "coordinates": [-75.13862743, 39.99275164]}, "Year Opened": "1903", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "401 W LEHIGH AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7080", "Fax Number": "215-400-7081", "Website": "https://deburgos.philasd.org/", "School Leader Name": "MS BIANCA REYES", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5180", "name": "Vaux High School: A Big Picture", "sort_name": "Vaux High School - Big Picture", "abbr_name": "Vaux High", "geom": {"type": "Point", "coordinates": [-75.174186, 39.976325]}, "Year Opened": "2017", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-11", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2300 W MASTER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "", "Fax Number": "", "Website": "https://www.vauxbpp.org/", "School Leader Name": "MS SHAVONNE MCMILLAN", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "0"}, {"sdp_id": "5200", "name": "Alexander Adaire School", "sort_name": "Adaire, Alexander School", "abbr_name": "Adaire", "geom": {"type": "Point", "coordinates": [-75.12930989, 39.97232661]}, "Year Opened": "1957", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1300 E PALMER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-7480", "Fax Number": "215-400-7481", "Website": "https://adaire.philasd.org/", "School Leader Name": "MS ANNA JENKINS", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5210", "name": "Henry A. Brown School", "sort_name": "Brown, Henry A. School", "abbr_name": "Brown, Henry", "geom": {"type": "Point", "coordinates": [-75.12725674, 39.98661748]}, "Year Opened": "1959", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1946 E SERGEANT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-7490", "Fax Number": "215-400-7491", "Website": "https://habrown.philasd.org/", "School Leader Name": "MRS CONNIE CARNIVALE", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5230", "name": "Russell H. Conwell School", "sort_name": "Conwell, Russell H. School", "abbr_name": "Conwell", "geom": {"type": "Point", "coordinates": [-75.11527383, 39.99471406]}, "Year Opened": "1926", "School Level": "Middle", "Admission Type": "Special Admit", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1849 E CLEARFIELD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7210", "Fax Number": "215-400-7211", "Website": "https://conwell.philasd.org/", "School Leader Name": "MS ERICA GREEN", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5250", "name": "Paul L. Dunbar School", "sort_name": "Dunbar, Paul L. School", "abbr_name": "Dunbar", "geom": {"type": "Point", "coordinates": [-75.15416974, 39.97948773]}, "Year Opened": "1932", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2010-2011", "Community School Cohort": "2022-2023", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1750 N 12TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7410", "Fax Number": "215-400-7411", "Website": "https://dunbar.philasd.org/", "School Leader Name": "MR DANIEL MINA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5260", "name": "Lewis Elkin School", "sort_name": "Elkin, Lewis School", "abbr_name": "Elkin", "geom": {"type": "Point", "coordinates": [-75.121274, 39.997018]}, "Year Opened": "1973", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2020-2021", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3199 D ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7140", "Fax Number": "215-400-7141", "Website": "https://elkin.philasd.org/", "School Leader Name": "MS CHARLOTTE GILLUM", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5300", "name": "Horatio B. Hackett School", "sort_name": "Hackett, Horatio B. School", "abbr_name": "Hackett", "geom": {"type": "Point", "coordinates": [-75.12685511, 39.98096374]}, "Year Opened": "1969", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2161 E YORK ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-7470", "Fax Number": "215-400-7471", "Website": "https://hackett.philasd.org/", "School Leader Name": "MR TODD KIMMEL", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5320", "name": "John F. Hartranft School", "sort_name": "Hartranft, John F. School", "abbr_name": "Hartranft", "geom": {"type": "Point", "coordinates": [-75.14477741, 39.98942228]}, "Year Opened": "1968", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "720 W CUMBERLAND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7090", "Fax Number": "215-400-7091", "Website": "https://hartranft.philasd.org/", "School Leader Name": "MR KEITH ARRINGTON", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5330", "name": "William H. Hunter School", "sort_name": "Hunter, William H. School", "abbr_name": "Hunter", "geom": {"type": "Point", "coordinates": [-75.13176356, 39.98725028]}, "Year Opened": "1909", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2400 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7110", "Fax Number": "215-400-7111", "Website": "https://hunter.philasd.org/", "School Leader Name": "MS HEATHER MILLER", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5340", "name": "James R. Ludlow School", "sort_name": "Ludlow, James R. School", "abbr_name": "Ludlow", "geom": {"type": "Point", "coordinates": [-75.145854, 39.972724]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "550 W MASTER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7430", "Fax Number": "215-400-7431", "Website": "https://ludlow.philasd.org/", "School Leader Name": "MR KHARY MOODY", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5350", "name": "William McKinley School", "sort_name": "McKinley, William School", "abbr_name": "McKinley", "geom": {"type": "Point", "coordinates": [-75.14165528, 39.9827686]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2101 N ORKNEY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7440", "Fax Number": "215-400-7441", "Website": "https://mckinley.philasd.org/", "School Leader Name": "MS MARILYN MEJIA", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5370", "name": "John Moffet School", "sort_name": "Moffet, John School", "abbr_name": "Moffet", "geom": {"type": "Point", "coordinates": [-75.13498462, 39.97439362]}, "Year Opened": "1973", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "127 W OXFORD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7390", "Fax Number": "215-400-7391", "Website": "https://moffet.philasd.org/", "School Leader Name": "MR RODNEY JOHNSON", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5390", "name": "Potter-Thomas School", "sort_name": "Potter-Thomas School", "abbr_name": "Potter-Thomas", "geom": {"type": "Point", "coordinates": [-75.14107646, 39.99690701]}, "Year Opened": "1967", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3001 N 6TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7120", "Fax Number": "215-400-7121", "Website": "https://potterthomas.philasd.org/", "School Leader Name": "NICHOLE POLK", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Rosa Lopez", "FACE Liaison Email": "rlopez@philasd.org", "FACE Liaison Phone Number": "215-400-7120", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5400", "name": "Richmond School", "sort_name": "Richmond School", "abbr_name": "Richmond", "geom": {"type": "Point", "coordinates": [-75.110491, 39.983496]}, "Year Opened": "1929", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2944 BELGRADE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7150", "Fax Number": "215-400-7151", "Website": "https://richmond.philasd.org/", "School Leader Name": "MRS SUSAN ROZANSKI", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5410", "name": "Isaac A. Sheppard School", "sort_name": "Sheppard, Isaac A. School", "abbr_name": "Sheppard", "geom": {"type": "Point", "coordinates": [-75.13163, 39.993651]}, "Year Opened": "1898", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "120 W CAMBRIA ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7070", "Fax Number": "215-400-7071", "Website": "https://sheppard.philasd.org/", "School Leader Name": "MS YONAIRA RODRIGUEZ", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5420", "name": "John Welsh School", "sort_name": "Welsh, John School", "abbr_name": "Welsh", "geom": {"type": "Point", "coordinates": [-75.13941869, 39.98653438]}, "Year Opened": "1966", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2331 N 4TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7130", "Fax Number": "215-400-7131", "Website": "https://welsh.philasd.org/", "School Leader Name": "MS PRERNA SRIVASTAVA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5430", "name": "Alternative Middle Years at James Martin", "sort_name": "Alternative Middle Years (AMY) at James Martin", "abbr_name": "AMY at Martin", "geom": {"type": "Point", "coordinates": [-75.09718185, 39.98529996]}, "Year Opened": "1985", "School Level": "Middle", "Admission Type": "Citywide", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3380 RICHMOND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7190", "Fax Number": "215-400-7191", "Website": "https://amymartin.philasd.org/", "School Leader Name": "MS PAULA FURMAN", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5440", "name": "Frances E. Willard School", "sort_name": "Willard, Frances E. School", "abbr_name": "Willard", "geom": {"type": "Point", "coordinates": [-75.115907, 39.993065]}, "Year Opened": "1907", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1930 E ELKHART ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7180", "Fax Number": "215-400-7181", "Website": "https://willard.philasd.org/", "School Leader Name": "MRS DIANA GARCIA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5470", "name": "William Cramp School", "sort_name": "Cramp, William School", "abbr_name": "Cramp", "geom": {"type": "Point", "coordinates": [-75.13036297, 40.00260657]}, "Year Opened": "1969", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3449 N MASCHER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3860", "Fax Number": "215-400-3861", "Website": "https://cramp.philasd.org/", "School Leader Name": "MS DEANDA LOGAN", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5480", "name": "General Philip Kearny School", "sort_name": "Kearny, General Philip School", "abbr_name": "Kearny", "geom": {"type": "Point", "coordinates": [-75.14812935, 39.96385753]}, "Year Opened": "1898", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "601 FAIRMOUNT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7590", "Fax Number": "215-400-7591", "Website": "https://kearny.philasd.org/", "School Leader Name": "MS SABRINA SCOTT FEGGINS", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5490", "name": "Cayuga School", "sort_name": "Cayuga School", "abbr_name": "Cayuga", "geom": {"type": "Point", "coordinates": [-75.135246, 40.017826]}, "Year Opened": "1950", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4344 N 5TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3850", "Fax Number": "215-400-3851", "Website": "https://cayuga.philasd.org/", "School Leader Name": "MR JASON CARRION", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5500", "name": "Thurgood Marshall School", "sort_name": "Marshall, Thurgood School", "abbr_name": "Marshall, Thurgood", "geom": {"type": "Point", "coordinates": [-75.13416332, 40.02938155]}, "Year Opened": "1997", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "5120 N 6TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3770", "Fax Number": "215-400-3771", "Website": "https://thurgoodmarshall.philasd.org/", "School Leader Name": "MR BRIAN MEADOWS", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5520", "name": "Kensington High School for Creative and Performing Arts", "sort_name": "Kensington High School for Creative and Performing Arts (CAPA)", "abbr_name": "Kensington CAPA", "geom": {"type": "Point", "coordinates": [-75.1330532, 39.97794956]}, "Year Opened": "2005", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1901 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7400", "Fax Number": "215-400-7401", "Website": "https://kcapa.philasd.org/", "School Leader Name": "MS PATRICIA MCDERMOTT", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5530", "name": "Gloria Casarez Elementary School", "sort_name": "Gloria Casarez Elementary School", "abbr_name": "Casarez", "geom": {"type": "Point", "coordinates": [-75.11478572, 39.99974725]}, "Year Opened": "1899", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2020-2021", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "800 E ONTARIO ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7160", "Fax Number": "215-400-7161", "Website": "https://sheridan.philasd.org/", "School Leader Name": "MRS AWILDA BALBUENA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5550", "name": "Kensington Health Sciences Academy", "sort_name": "Kensington Health Sciences Academy", "abbr_name": "Kensington Health", "geom": {"type": "Point", "coordinates": [-75.128685, 39.985026]}, "Year Opened": "2001", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2463 EMERALD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-3600", "Fax Number": "215-400-3601", "Website": "https://khsa.philasd.org/", "School Leader Name": "MS NIMET EREN", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5560", "name": "Spring Garden School", "sort_name": "Spring Garden School", "abbr_name": "Spring Garden", "geom": {"type": "Point", "coordinates": [-75.15614042, 39.96516155]}, "Year Opened": "1928", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1146 MELON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7610", "Fax Number": "215-400-7611", "Website": "https://springgarden.philasd.org/", "School Leader Name": "MS LAUREAL ROBINSON", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5580", "name": "Stetson, John B. Middle School", "sort_name": "Stetson, John B. Middle School", "abbr_name": "Stetson", "geom": {"type": "Point", "coordinates": [-75.12546663, 39.99806894]}, "Year Opened": "2022", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3200 B ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-9150", "Fax Number": "", "Website": "", "School Leader Name": "MR THOMAS MULLIN", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5590", "name": "John H. Webster School", "sort_name": "Webster, John H. School", "abbr_name": "Webster", "geom": {"type": "Point", "coordinates": [-75.104516, 39.996199]}, "Year Opened": "1968", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "3400 FRANKFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7170", "Fax Number": "215-400-7171", "Website": "https://webster.philasd.org/", "School Leader Name": "MS SHERRI ARABIA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5610", "name": "Building 21", "sort_name": "Building 21", "abbr_name": "Building 21", "geom": {"type": "Point", "coordinates": [-75.152481, 40.053631]}, "Year Opened": "2014", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6501 LIMEKILN PIKE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-7450", "Fax Number": "215-400-7451", "Website": "https://building21.philasd.org/", "School Leader Name": "MS BRIANNE MACNAMARA", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5620", "name": "The U School", "sort_name": "The U School", "abbr_name": "U School", "geom": {"type": "Point", "coordinates": [-75.146256, 39.981983]}, "Year Opened": "2014", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2000 N 7TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7460", "Fax Number": "215-400-7461", "Website": "https://uschool.philasd.org/", "School Leader Name": "MR NEIL GEYETTE", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5660", "name": "The LINC", "sort_name": "The LINC", "abbr_name": "LINC", "geom": {"type": "Point", "coordinates": [-75.129736, 40.006819]}, "Year Opened": "2014", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "122 W ERIE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3940", "Fax Number": "215-400-3941", "Website": "https://thelinc.philasd.org/", "School Leader Name": "MS BRIDGET BUJAK", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5680", "name": "Honorable Luis Munoz-Marin School", "sort_name": "Munoz-Marin, Honorable Luis School", "abbr_name": "Munoz-Marin", "geom": {"type": "Point", "coordinates": [-75.13538958, 40.00098011]}, "Year Opened": "1997", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3300 N 3RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3920", "Fax Number": "215-400-3921", "Website": "https://munozmarin.philasd.org/", "School Leader Name": "MS AMANDA JONES", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5700", "name": "Kensington High School", "sort_name": "Kensington High School", "abbr_name": "Kensington H.S.", "geom": {"type": "Point", "coordinates": [-75.12640188, 39.98483396]}, "Year Opened": "2016", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2051 E CUMBERLAND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-7700", "Fax Number": "215-400-7701", "Website": "https://kensingtonhs.philasd.org/", "School Leader Name": "MR JOSE LEBRON", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6010", "name": "Central High School", "sort_name": "Central High School", "abbr_name": "Central", "geom": {"type": "Point", "coordinates": [-75.15074825, 40.0372851]}, "Year Opened": "1939", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1700 W OLNEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3590", "Fax Number": "215-400-3591", "Website": "https://centralhs.philasd.org/", "School Leader Name": "MS KATHARINE DAVIS", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6030", "name": "Roxborough High School", "sort_name": "Roxborough High School", "abbr_name": "Roxborough", "geom": {"type": "Point", "coordinates": [-75.22283357, 40.03802479]}, "Year Opened": "1924", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "6498 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3400", "Fax Number": "215-400-3401", "Website": "https://roxboroughhs.philasd.org/", "School Leader Name": "MRS KRISTIN WILLIAMS-SMALLEY", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6040", "name": "Walter B. Saul High School", "sort_name": "Saul, Walter B. High School", "abbr_name": "Saul", "geom": {"type": "Point", "coordinates": [-75.21981676, 40.04902036]}, "Year Opened": "1950", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "7100 HENRY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3450", "Fax Number": "215-400-3451", "Website": "https://saul.philasd.org/", "School Leader Name": "MS JANE ARBASAK", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6050", "name": "Philadelphia High School for Girls", "sort_name": "Philadelphia High School for Girls", "abbr_name": "Girls", "geom": {"type": "Point", "coordinates": [-75.14475989, 40.03898514]}, "Year Opened": "1956", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1400 W OLNEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3700", "Fax Number": "215-400-3701", "Website": "https://girlshs.philasd.org/", "School Leader Name": "MS LISA MESI", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6060", "name": "Martin Luther King High School", "sort_name": "King, Martin Luther High School", "abbr_name": "MLK", "geom": {"type": "Point", "coordinates": [-75.16217184, 40.05756238]}, "Year Opened": "1972", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6100 STENTON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-3500", "Fax Number": "215-400-3501", "Website": "https://mlkhs.philasd.org/", "School Leader Name": "MRS KEISHA WILKINS", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6090", "name": "A. Philip Randolph Career and Technical High School", "sort_name": "Randolph, A. Philip Career and Technical High School", "abbr_name": "Randolph", "geom": {"type": "Point", "coordinates": [-75.179609, 40.008504]}, "Year Opened": "2004", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "3101 HENRY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19129", "Phone Number": "215-400-3840", "Fax Number": "215-400-3841", "Website": "https://randolph.philasd.org/", "School Leader Name": "MS MICHELLE BURNS", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6200", "name": "Anna B. Day School", "sort_name": "Day, Anna B. School", "abbr_name": "Day", "geom": {"type": "Point", "coordinates": [-75.16833464, 40.05840682]}, "Year Opened": "1952", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6324 CRITTENDEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-3520", "Fax Number": "215-400-3521", "Website": "https://abday.philasd.org/", "School Leader Name": "KAREN WHITE", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6210", "name": "Franklin S. Edmonds School", "sort_name": "Edmonds, Franklin S. School", "abbr_name": "Edmonds", "geom": {"type": "Point", "coordinates": [-75.1692495, 40.0717255]}, "Year Opened": "1948", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "8025 THOURON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19150", "Phone Number": "215-400-3370", "Fax Number": "215-400-3371", "Website": "https://edmonds.philasd.org/", "School Leader Name": "MS WENDY SHARPE", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6220", "name": "Eleanor C. Emlen School", "sort_name": "Emlen, Eleanor C. School", "abbr_name": "Emlen", "geom": {"type": "Point", "coordinates": [-75.17790573, 40.05436289]}, "Year Opened": "1926", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6501 CHEW AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19119", "Phone Number": "215-400-3470", "Fax Number": "215-400-3471", "Website": "https://emlen.philasd.org/", "School Leader Name": "MRS TAMMY THOMAS", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6230", "name": "Fitler Academics Plus School", "sort_name": "Fitler Academics Plus School", "abbr_name": "Fitler", "geom": {"type": "Point", "coordinates": [-75.16633733, 40.02610052]}, "Year Opened": "1898", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "140 W SEYMOUR ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-400-3610", "Fax Number": "215-400-3611", "Website": "https://fitler.philasd.org/", "School Leader Name": "MR ANTHIOUS BOONE", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6250", "name": "Charles W. Henry School", "sort_name": "Henry, Charles W. School", "abbr_name": "Henry", "geom": {"type": "Point", "coordinates": [-75.19658776, 40.04625771]}, "Year Opened": "1908", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "601 CARPENTER LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19119", "Phone Number": "215-400-3480", "Fax Number": "215-400-3481", "Website": "https://henry.philasd.org/", "School Leader Name": "MR TYRONE ROSS II", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6260", "name": "Henry H. Houston School", "sort_name": "Houston, Henry H. School", "abbr_name": "Houston", "geom": {"type": "Point", "coordinates": [-75.195084, 40.059003]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "7300 RURAL LN.", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19119", "Phone Number": "215-400-3490", "Fax Number": "215-400-3491", "Website": "https://houston.philasd.org/", "School Leader Name": "MR LEROY HALL", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6270", "name": "Jenks Academy for Arts and Sciences", "sort_name": "Jenks Academy for Arts and Sciences", "abbr_name": "Jenks, J.S.", "geom": {"type": "Point", "coordinates": [-75.20356162, 40.07440887]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "8301 GERMANTOWN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19118", "Phone Number": "215-400-3360", "Fax Number": "215-400-3361", "Website": "https://jsjenks.philasd.org/", "School Leader Name": "MS CORINNE SCIOLI", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6300", "name": "James Logan School", "sort_name": "Logan, James School", "abbr_name": "Logan", "geom": {"type": "Point", "coordinates": [-75.15205995, 40.03085306]}, "Year Opened": "1924", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1700 LINDLEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3670", "Fax Number": "215-400-3671", "Website": "https://logan.philasd.org/", "School Leader Name": "MR MATTHEW GRILL", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6310", "name": "John F. McCloskey School", "sort_name": "McCloskey, John F. School", "abbr_name": "McCloskey", "geom": {"type": "Point", "coordinates": [-75.17533748, 40.08162668]}, "Year Opened": "1956", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "8500 PICKERING AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19150", "Phone Number": "215-400-3380", "Fax Number": "215-400-3381", "Website": "https://mccloskey.philasd.org/", "School Leader Name": "MR JOHN SPENCER", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6320", "name": "Thomas Mifflin School", "sort_name": "Mifflin, Thomas School", "abbr_name": "Mifflin", "geom": {"type": "Point", "coordinates": [-75.19128804, 40.01357043]}, "Year Opened": "1937", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "3624 CONRAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19129", "Phone Number": "215-400-3830", "Fax Number": "215-400-3831", "Website": "https://mifflin.philasd.org/", "School Leader Name": "MS LESLIE MASON", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6340", "name": "Joseph Pennell School", "sort_name": "Pennell, Joseph School", "abbr_name": "Pennell", "geom": {"type": "Point", "coordinates": [-75.15208663, 40.04351806]}, "Year Opened": "1927", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1800 NEDRO AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3680", "Fax Number": "215-400-3681", "Website": "https://pennell.philasd.org/", "School Leader Name": "MRS SUSAN LOFTON", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6350", "name": "Samuel Pennypacker School", "sort_name": "Pennypacker, Samuel School", "abbr_name": "Pennypacker", "geom": {"type": "Point", "coordinates": [-75.1597946, 40.06527032]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "1858 E WASHINGTON LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-3510", "Fax Number": "215-400-3511", "Website": "https://pennypacker.philasd.org/", "School Leader Name": "MRS TAMIKA GILLIAM", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6360", "name": "Theodore Roosevelt School", "sort_name": "Roosevelt Elementary School", "abbr_name": "Roosevelt", "geom": {"type": "Point", "coordinates": [-75.17529079, 40.04856262]}, "Year Opened": "2013", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "430 E WASHINGTON LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-400-3640", "Fax Number": "215-400-3641", "Website": "https://roosevelt.philasd.org/", "School Leader Name": "MS KRISTEN HEIFET", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Ginger Glass-Mcintyre", "FACE Liaison Email": "geglass@philasd.org", "FACE Liaison Phone Number": "215-400-7680", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6380", "name": "Shawmont School", "sort_name": "Shawmont School", "abbr_name": "Shawmont", "geom": {"type": "Point", "coordinates": [-75.238543, 40.051478]}, "Year Opened": "1928", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "535 SHAWMONT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3440", "Fax Number": "215-400-3441", "Website": "https://shawmont.philasd.org/", "School Leader Name": "MR ROBERT MC GROGAN", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6390", "name": "Edward T. Steel School", "sort_name": "Steel, Edward T. School", "abbr_name": "Steel", "geom": {"type": "Point", "coordinates": [-75.15689064, 40.01879502]}, "Year Opened": "1973", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "4301 WAYNE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3910", "Fax Number": "215-400-3911", "Website": "https://steel.philasd.org/", "School Leader Name": "MR ANGIKINDSLOWS SENATUS", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Tamarra Grant", "FACE Liaison Email": "tcgrant@philasd.org", "FACE Liaison Phone Number": "215-400-3910", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6400", "name": "Widener Memorial School", "sort_name": "Widener Memorial School", "abbr_name": "Widener", "geom": {"type": "Point", "coordinates": [-75.146598, 40.036706]}, "Year Opened": "1953", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP Special Education", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1450 W OLNEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3710", "Fax Number": "215-400-3711", "Website": "https://widener.philasd.org/", "School Leader Name": "MR HARRIS GAFFIN", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6410", "name": "Cook-Wissahickon School", "sort_name": "Cook-Wissahickon School", "abbr_name": "Cook-Wissahickon", "geom": {"type": "Point", "coordinates": [-75.206802, 40.022472]}, "Year Opened": "1969", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "201 E SALAIGNAC ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3430", "Fax Number": "215-400-3431", "Website": "https://cookwissahickon.philasd.org/", "School Leader Name": "MR MICHAEL LOWE", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6440", "name": "Anna L. Lingelbach School", "sort_name": "Lingelbach, Anna L. School", "abbr_name": "Lingelbach", "geom": {"type": "Point", "coordinates": [-75.18961364, 40.03708413]}, "Year Opened": "1955", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6340 WAYNE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-400-3630", "Fax Number": "215-400-3631", "Website": "https://lingelbach.philasd.org/", "School Leader Name": "MRS LISA WADDELL", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6450", "name": "James Dobson School", "sort_name": "Dobson, James School", "abbr_name": "Dobson", "geom": {"type": "Point", "coordinates": [-75.23067163, 40.03147536]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "4667 UMBRIA ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19127", "Phone Number": "215-400-3570", "Fax Number": "215-400-3571", "Website": "https://dobson.philasd.org/", "School Leader Name": "MRS KHLOE WILLIAMS-LAWANI", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6460", "name": "Hill-Freedman World Academy", "sort_name": "Hill-Freedman World Academy", "abbr_name": "Hill-Freedman", "geom": {"type": "Point", "coordinates": [-75.175303, 40.071311]}, "Year Opened": "1980", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1100 E MOUNT PLEASANT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19150", "Phone Number": "215-400-3530", "Fax Number": "215-400-3531", "Website": "https://hfwa.philasd.org/", "School Leader Name": "MR ANTHONY MAJEWSKI", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6470", "name": "John B. Kelly School", "sort_name": "Kelly, John B. School", "abbr_name": "Kelly", "geom": {"type": "Point", "coordinates": [-75.1711868, 40.02479143]}, "Year Opened": "1970", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "5116 PULASKI AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-400-3580", "Fax Number": "215-400-3581", "Website": "https://kelly.philasd.org/", "School Leader Name": "MS RUTH JOHNSON PRESSLE", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6480", "name": "Academy for the Middle Years at Northwest", "sort_name": "Academy for the Middle Years (AMY) at Northwest", "abbr_name": "AMY at Northwest", "geom": {"type": "Point", "coordinates": [-75.21317609, 40.03154543]}, "Year Opened": "2012", "School Level": "Middle", "Admission Type": "Special Admit", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "6000 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3460", "Fax Number": "215-400-3461", "Website": "https://amynw.philasd.org/", "School Leader Name": "MS JODAN FLOYD", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6540", "name": "Lankenau High School", "sort_name": "Lankenau High School", "abbr_name": "Lankenau", "geom": {"type": "Point", "coordinates": [-75.25295594, 40.06153271]}, "Year Opened": "1987", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "201 SPRING LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3420", "Fax Number": "215-400-3421", "Website": "https://lankenau.philasd.org/", "School Leader Name": "MS JESSICA MCATAMNEY", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "7010", "name": "Frankford High School", "sort_name": "Frankford High School", "abbr_name": "Frankford", "geom": {"type": "Point", "coordinates": [-75.084823, 40.021602]}, "Year Opened": "1914", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2022-2023", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "5000 OXFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-7200", "Fax Number": "215-400-7201", "Website": "https://frankfordhs.philasd.org/", "School Leader Name": "DR MICHAEL CALDERONE", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "7060", "name": "Olney High School", "sort_name": "Olney High School", "abbr_name": "Olney High", "geom": {"type": "Point", "coordinates": [-75.123808, 40.028772]}, "Year Opened": "2022", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "100 W DUNCANNON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-9140", "Fax Number": "", "Website": "", "School Leader Name": "MR MICHAEL ROTH", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "7100", "name": "Jay Cooke School", "sort_name": "Cooke, Jay School", "abbr_name": "Cooke", "geom": {"type": "Point", "coordinates": [-75.146074, 40.025526]}, "Year Opened": "1923", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1300 W LOUDON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-8330", "Fax Number": "215-400-8331", "Website": "https://cooke.philasd.org/", "School Leader Name": "MS CHRISTIE PARFITT", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Sherria Mansell-Watts", "FACE Liaison Email": "smansellwatts@philasd.org", "FACE Liaison Phone Number": "215-400-8330", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7110", "name": "Warren G. Harding School", "sort_name": "Harding, Warren G. Middle School", "abbr_name": "Harding", "geom": {"type": "Point", "coordinates": [-75.07456081, 40.01291694]}, "Year Opened": "1924", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2000 WAKELING ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3990", "Fax Number": "215-400-3991", "Website": "https://harding.philasd.org/", "School Leader Name": "MS MARY SANCHEZ", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7120", "name": "Samuel Fels High School", "sort_name": "Fels, Samuel High School", "abbr_name": "Fels", "geom": {"type": "Point", "coordinates": [-75.09109404, 40.03564646]}, "Year Opened": "1954", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "5500 LANGDON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-7100", "Fax Number": "215-400-7101", "Website": "https://fels.philasd.org/", "School Leader Name": "MS MELISSA RASPER", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "7130", "name": "General Louis Wagner School", "sort_name": "Wagner, General Louis Middle School", "abbr_name": "Wagner", "geom": {"type": "Point", "coordinates": [-75.14767962, 40.05174748]}, "Year Opened": "1928", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1701 W CHELTEN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19126", "Phone Number": "215-400-3560", "Fax Number": "215-400-3561", "Website": "https://wagner.philasd.org/", "School Leader Name": "MS CONNIE GRIER", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7150", "name": "Juniata Park Academy", "sort_name": "Juniata Park Academy", "abbr_name": "Juniata Park", "geom": {"type": "Point", "coordinates": [-75.11102921, 40.01284122]}, "Year Opened": "2007", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "801 E HUNTING PARK AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-7010", "Fax Number": "215-400-7011", "Website": "https://juniatapark.philasd.org/", "School Leader Name": "MRS MARISOL RIVERA RODRIGUEZ", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7200", "name": "Clara Barton School", "sort_name": "Barton, Clara School", "abbr_name": "Barton", "geom": {"type": "Point", "coordinates": [-75.11950188, 40.0193401]}, "Year Opened": "1925", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-02", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4600 ROSEHILL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3720", "Fax Number": "215-400-3721", "Website": "https://barton.philasd.org/", "School Leader Name": "MS COLLEEN BOWEN", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7220", "name": "Laura H. Carnell School", "sort_name": "Carnell, Laura H. School", "abbr_name": "Carnell", "geom": {"type": "Point", "coordinates": [-75.084142, 40.038957]}, "Year Opened": "1931", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "1100 DEVEREAUX AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3150", "Fax Number": "215-400-3151", "Website": "https://carnell.philasd.org/", "School Leader Name": "MR HILDERBRAND PELZER III", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7260", "name": "Ellwood School", "sort_name": "Ellwood School", "abbr_name": "Ellwood", "geom": {"type": "Point", "coordinates": [-75.13894107, 40.05472609]}, "Year Opened": "1957", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6701 N 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19126", "Phone Number": "215-400-3540", "Fax Number": "215-400-3541", "Website": "https://ellwood.philasd.org/", "School Leader Name": "MS ZAIDA ALFARO", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7270", "name": "Thomas K. Finletter School", "sort_name": "Finletter, Thomas K. School", "abbr_name": "Finletter", "geom": {"type": "Point", "coordinates": [-75.119176, 40.043608]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6100 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3750", "Fax Number": "215-400-3751", "Website": "https://finletter.philasd.org/", "School Leader Name": "MRS APRIL BROWN", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7280", "name": "Benjamin Franklin School", "sort_name": "Franklin, Benjamin K8 School", "abbr_name": "Franklin K8", "geom": {"type": "Point", "coordinates": [-75.10498859, 40.04215213]}, "Year Opened": "1915", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "5735 RISING SUN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3760", "Fax Number": "215-400-3761", "Website": "https://franklin.philasd.org/", "School Leader Name": "MS ROSLYNN SAMPLE GREENE", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7290", "name": "Allen M. Stearne School", "sort_name": "Stearne, Allen M. School", "abbr_name": "Stearne", "geom": {"type": "Point", "coordinates": [-75.085112, 40.011752]}, "Year Opened": "1968", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1655 UNITY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3980", "Fax Number": "215-400-3981", "Website": "https://stearne.philasd.org/", "School Leader Name": "MR ALPHONSO EVANS", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7300", "name": "Francis Hopkinson School", "sort_name": "Hopkinson, Francis School", "abbr_name": "Hopkinson", "geom": {"type": "Point", "coordinates": [-75.10274511, 40.00771059]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4001 L ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3970", "Fax Number": "215-400-3971", "Website": "https://hopkinson.philasd.org/", "School Leader Name": "MS MARGARET SHRIVER", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7310", "name": "Feltonville Intermediate School", "sort_name": "Feltonville Intermediate School", "abbr_name": "Feltonville Int", "geom": {"type": "Point", "coordinates": [-75.12102564, 40.02034002]}, "Year Opened": "1908", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "03-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "238 E WYOMING AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3730", "Fax Number": "215-400-3731", "Website": "https://fint.philasd.org/", "School Leader Name": "MS DANA SINGLETARY", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7320", "name": "Julia W. Howe School", "sort_name": "Howe, Julia Ward School", "abbr_name": "Howe", "geom": {"type": "Point", "coordinates": [-75.14211131, 40.04113187]}, "Year Opened": "1913", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "5800 N 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3650", "Fax Number": "215-400-3651", "Website": "https://howe.philasd.org/", "School Leader Name": "MR MATTHEW REID", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7330", "name": "Henry W. Lawton School", "sort_name": "Lawton, Henry W. School", "abbr_name": "Lawton", "geom": {"type": "Point", "coordinates": [-75.058976, 40.020648]}, "Year Opened": "1973", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "6101 JACKSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19135", "Phone Number": "215-400-3340", "Fax Number": "215-400-3341", "Website": "https://lawton.philasd.org/", "School Leader Name": "MS ARNETTA IMES", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7350", "name": "James R. Lowell School", "sort_name": "Lowell, James R. School", "abbr_name": "Lowell", "geom": {"type": "Point", "coordinates": [-75.12871963, 40.04086578]}, "Year Opened": "1913", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "450 W NEDRO AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3740", "Fax Number": "215-400-3741", "Website": "https://lowell.philasd.org/", "School Leader Name": "MS CHANTAL BARR", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7360", "name": "John Marshall School", "sort_name": "Marshall, John School", "abbr_name": "Marshall, John", "geom": {"type": "Point", "coordinates": [-75.087158, 40.014546]}, "Year Opened": "1909", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4500 GRISCOM ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3950", "Fax Number": "215-400-3951", "Website": "https://johnmarshall.philasd.org/", "School Leader Name": "MR WILLIAM LAWRENCE", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Lorna Gill", "FACE Liaison Email": "lgil@philasd.org", "FACE Liaison Phone Number": "215-400-3950", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7370", "name": "Grover Washington, Jr. School", "sort_name": "Washington, Grover Jr. Middle School", "abbr_name": "Washington, Grover", "geom": {"type": "Point", "coordinates": [-75.117969, 40.035479]}, "Year Opened": "2000", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "201 E OLNEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3820", "Fax Number": "215-400-3821", "Website": "https://gwjr.philasd.org/", "School Leader Name": "MS TIFFANI BLUNT", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7380", "name": "Alexander K. McClure School", "sort_name": "McClure, Alexander K. School", "abbr_name": "McClure", "geom": {"type": "Point", "coordinates": [-75.137574, 40.015178]}, "Year Opened": "1910", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "600 W HUNTING PARK AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3870", "Fax Number": "215-400-3871", "Website": "https://mcclure.philasd.org/", "School Leader Name": "MR LUIS GARCIA", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7390", "name": "Andrew J. Morrison School", "sort_name": "Morrison, Andrew J. School", "abbr_name": "Morrison", "geom": {"type": "Point", "coordinates": [-75.12941126, 40.02843729]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "5100 N 3RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3780", "Fax Number": "215-400-3781", "Website": "https://morrison.philasd.org/", "School Leader Name": "MS MEREDITH LOWE", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7400", "name": "Olney School", "sort_name": "Olney School", "abbr_name": "Olney", "geom": {"type": "Point", "coordinates": [-75.12134354, 40.03058672]}, "Year Opened": "1900", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "5301 N WATER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3790", "Fax Number": "215-400-3791", "Website": "https://olney.philasd.org/", "School Leader Name": "DR MARTIN WOODSIDE", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7430", "name": "James J. Sullivan School", "sort_name": "Sullivan, James J. School", "abbr_name": "Sullivan", "geom": {"type": "Point", "coordinates": [-75.06706036, 40.01529786]}, "Year Opened": "1930", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2020-2021", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "5300 DITMAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3960", "Fax Number": "215-400-3961", "Website": "https://sullivan.philasd.org/", "School Leader Name": "MS SHANTELLE YARBROUGH", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Xiomara Daye", "FACE Liaison Email": "xdaye@philasd.org", "FACE Liaison Phone Number": "215-400-3960", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7440", "name": "Bayard Taylor School", "sort_name": "Taylor, Bayard School", "abbr_name": "Taylor", "geom": {"type": "Point", "coordinates": [-75.13793972, 40.00753033]}, "Year Opened": "1907", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3698 N RANDOLPH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3880", "Fax Number": "215-400-3881", "Website": "https://taylor.philasd.org/", "School Leader Name": "MR DAVID LAVER", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7460", "name": "William H. Ziegler School", "sort_name": "Ziegler, William H. School", "abbr_name": "Ziegler", "geom": {"type": "Point", "coordinates": [-75.07570448, 40.03003725]}, "Year Opened": "1957", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "5935 SAUL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3260", "Fax Number": "215-400-3261", "Website": "https://ziegler.philasd.org/", "School Leader Name": "MS NICOLE FREEMAN", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7470", "name": "Bridesburg School", "sort_name": "Bridesburg School", "abbr_name": "Bridesburg", "geom": {"type": "Point", "coordinates": [-75.06660471, 40.00030082]}, "Year Opened": "1958", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "2824 JENKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19137", "Phone Number": "215-400-7240", "Fax Number": "215-400-7241", "Website": "https://bridesburg.philasd.org/", "School Leader Name": "MR DONALD DIPAULO", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7490", "name": "Prince Hall School", "sort_name": "Prince Hall School", "abbr_name": "Prince Hall", "geom": {"type": "Point", "coordinates": [-75.14956052, 40.04770742]}, "Year Opened": "1971", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6101 N GRATZ ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3690", "Fax Number": "215-400-3691", "Website": "https://princehall.philasd.org/", "School Leader Name": "MRS DONNA RAGSDALE", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7500", "name": "Feltonville School of Arts and Sciences", "sort_name": "Feltonville School of Arts and Sciences", "abbr_name": "FSAS", "geom": {"type": "Point", "coordinates": [-75.121675, 40.019437]}, "Year Opened": "1993", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "210 E COURTLAND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3810", "Fax Number": "215-400-3811", "Website": "https://fas.philasd.org/", "School Leader Name": "MR JOHN PINIAT", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7510", "name": "Mary M. Bethune School", "sort_name": "Bethune, Mary M. School", "abbr_name": "Bethune", "geom": {"type": "Point", "coordinates": [-75.14872828, 40.00269526]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3301 OLD YORK RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3890", "Fax Number": "215-400-3891", "Website": "https://bethune.philasd.org/", "School Leader Name": "MRS ALIYA CATANCH-BRADLEY", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7530", "name": "William Rowen School", "sort_name": "Rowen, William School", "abbr_name": "Rowen", "geom": {"type": "Point", "coordinates": [-75.1486472, 40.05930676]}, "Year Opened": "1938", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6841 N 19TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19126", "Phone Number": "215-400-3550", "Fax Number": "215-400-3551", "Website": "https://rowen.philasd.org/", "School Leader Name": "MR JAMES MURRAY JR", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7730", "name": "Roberto Clemente School", "sort_name": "Clemente, Roberto Middle School", "abbr_name": "Clemente", "geom": {"type": "Point", "coordinates": [-75.129736, 40.006819]}, "Year Opened": "1916", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "122 W ERIE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3930", "Fax Number": "215-400-3931", "Website": "https://clemente.philasd.org/", "School Leader Name": "MS CLAUDETTE WILLIAMS-STONE", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Lisa Wade", "FACE Liaison Email": "lwade@philasd.org", "FACE Liaison Phone Number": "215-400-3930", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8010", "name": "Abraham Lincoln High School", "sort_name": "Lincoln, Abraham High School", "abbr_name": "Lincoln", "geom": {"type": "Point", "coordinates": [-75.04479221, 40.04310838]}, "Year Opened": "1950", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3201 RYAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-400-3300", "Fax Number": "215-400-3301", "Website": "https://lincoln.philasd.org/", "School Leader Name": "MR JACK NELSON JR", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8020", "name": "Northeast High School", "sort_name": "Northeast High School", "abbr_name": "Northeast", "geom": {"type": "Point", "coordinates": [-75.07118355, 40.05564409]}, "Year Opened": "1957", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "1601 COTTMAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3200", "Fax Number": "215-400-3201", "Website": "https://nehs.philasd.org/", "School Leader Name": "MR OMAR CROWDER", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8030", "name": "George Washington High School", "sort_name": "Washington, George High School", "abbr_name": "Washington, George", "geom": {"type": "Point", "coordinates": [-75.02723013, 40.10598577]}, "Year Opened": "1963", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2017-2018", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "10175 BUSTLETON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "215-400-3100", "Fax Number": "215-400-3101", "Website": "https://gwhs.philasd.org/", "School Leader Name": "MS SUSAN THOMPSON", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8040", "name": "Arts Academy at Benjamin Rush", "sort_name": "Arts Academy at Benjamin Rush", "abbr_name": "Rush", "geom": {"type": "Point", "coordinates": [-74.9752061, 40.08253275]}, "Year Opened": "2008", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "11081 KNIGHTS RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19154", "Phone Number": "215-400-3030", "Fax Number": "215-400-3031", "Website": "https://rush.philasd.org/", "School Leader Name": "MS LATOYIA BAILEY", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8070", "name": "OIC CADI", "sort_name": "OIC Career and Academic Development Institute (CADI)", "abbr_name": "OIC CADI", "geom": {"type": "Point", "coordinates": [-75.144801, 39.958322]}, "Year Opened": "2004", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Opportunities Industrialization Centers of America", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "444 N 3RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-567-2410", "Fax Number": "215-567-2421", "Website": "https://www.philaoic.org/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8080", "name": "Excel Academy North", "sort_name": "Excel Academy North", "abbr_name": "Excel North", "geom": {"type": "Point", "coordinates": [-75.177658, 39.978134]}, "Year Opened": "2005", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1435 N 26TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-684-5080", "Fax Number": "", "Website": "http://cameloteducation.org/our-schools/accelerated-schools/excel-academy-north", "School Leader Name": "MR RYAN MULLER", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8090", "name": "Swenson Arts and Technology High School", "sort_name": "Swenson Arts and Technology High School", "abbr_name": "Swenson", "geom": {"type": "Point", "coordinates": [-75.01398863, 40.0921093]}, "Year Opened": "2000", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "2750 RED LION RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19114", "Phone Number": "215-400-3140", "Fax Number": "215-400-3141", "Website": "https://swenson.philasd.org/", "School Leader Name": "MS JUDITH HAUGHTON", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8100", "name": "Gateway to College - Community College of Philadelphia", "sort_name": "Gateway to College - Community College of Philadelphia", "abbr_name": "Gateway to College", "geom": {"type": "Point", "coordinates": [-75.16627046, 39.9629017]}, "Year Opened": "2006", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Community College of Phila", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1700 SPRING GARDEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-751-8540", "Fax Number": "", "Website": "http://www.ccp.edu/academic-offerings/high-school-student-programs/gateway-college", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8120", "name": "Castor Gardens Middle School", "sort_name": "Castor Gardens Middle School", "abbr_name": "Castor Gardens", "geom": {"type": "Point", "coordinates": [-75.069086, 40.052367]}, "Year Opened": "1928", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "1800 COTTMAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3190", "Fax Number": "215-400-3191", "Website": "https://wwilson.philasd.org/", "School Leader Name": "MR SHAWN MCGUIGAN", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8130", "name": "Northeast Community Propel Academy", "sort_name": "Northeast Community Propel Academy", "abbr_name": "Propel Academy", "geom": {"type": "Point", "coordinates": [-75.04413272617913, 40.045775289859506]}, "Year Opened": "2021", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "7500 ROWLAND AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-400-8350", "Fax Number": "", "Website": "https://ncpa.philasd.org/", "School Leader Name": "MRS DYWONNE SIMPSON", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8160", "name": "Baldi School", "sort_name": "Baldi Middle School", "abbr_name": "Baldi", "geom": {"type": "Point", "coordinates": [-75.05217234, 40.09331609]}, "Year Opened": "1971", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "8801 VERREE RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19115", "Phone Number": "215-400-3090", "Fax Number": "215-400-3091", "Website": "https://baldi.philasd.org/", "School Leader Name": "MR LUKE HOSTETTER", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8190", "name": "One Bright Ray - Fairhill Campus", "sort_name": "One Bright Ray - Fairhill", "abbr_name": "OBR Fairhill", "geom": {"type": "Point", "coordinates": [-75.13801882, 39.99376434]}, "Year Opened": "2004", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2820 N 4TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-423-1776", "Fax Number": "215-425-1213", "Website": "http://www.onebrightraycommunity.org/school-life/obr-team/fairhill-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8200", "name": "Ethan Allen School", "sort_name": "Allen, Ethan School", "abbr_name": "Allen, Ethan", "geom": {"type": "Point", "coordinates": [-75.06268841, 40.0294252]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "6329 BATTERSBY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3270", "Fax Number": "215-400-3271", "Website": "https://ethanallen.philasd.org/", "School Leader Name": "MRS CASSANDRA HOUSTON", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8210", "name": "Joseph H. Brown School", "sort_name": "Brown, Joseph H. School", "abbr_name": "Brown, Joseph", "geom": {"type": "Point", "coordinates": [-75.02460195, 40.04392183]}, "Year Opened": "1937", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3600 STANWOOD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-400-3320", "Fax Number": "215-400-3321", "Website": "https://jhbrown.philasd.org/", "School Leader Name": "MS ARTHUREA SMITH", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8230", "name": "Kennedy C. Crossan School", "sort_name": "Crossan, Kennedy C. School", "abbr_name": "Crossan", "geom": {"type": "Point", "coordinates": [-75.08155085, 40.06144841]}, "Year Opened": "1924", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "7350 BINGHAM ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3160", "Fax Number": "215-400-3161", "Website": "https://crossan.philasd.org/", "School Leader Name": "MS KHADIJAH BRIGHT", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8240", "name": "Hamilton Disston School", "sort_name": "Disston, Hamilton School", "abbr_name": "Disston", "geom": {"type": "Point", "coordinates": [-75.04658904, 40.02836911]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "6801 COTTAGE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19135", "Phone Number": "215-400-3350", "Fax Number": "215-400-3351", "Website": "https://disston.philasd.org/", "School Leader Name": "MRS MICHELE HUTZ", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8250", "name": "Edwin Forrest School", "sort_name": "Forrest, Edwin School", "abbr_name": "Forrest", "geom": {"type": "Point", "coordinates": [-75.035891, 40.03444]}, "Year Opened": "1929", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "7300 COTTAGE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-400-3330", "Fax Number": "215-400-3331", "Website": "https://forrest.philasd.org/", "School Leader Name": "MR VANCE QUITMAN-MCNEAR", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8260", "name": "Fox Chase School", "sort_name": "Fox Chase School", "abbr_name": "Fox Chase", "geom": {"type": "Point", "coordinates": [-75.082129, 40.076307]}, "Year Opened": "1949", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "500 RHAWN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3170", "Fax Number": "215-400-3171", "Website": "https://foxchase.philasd.org/", "School Leader Name": "MS ANGELIQUE LEIZEROWICZ", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8270", "name": "Thomas Holme School", "sort_name": "Holme, Thomas School", "abbr_name": "Holme", "geom": {"type": "Point", "coordinates": [-75.008965, 40.054988]}, "Year Opened": "1950", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "9125 ACADEMY RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19114", "Phone Number": "215-400-3130", "Fax Number": "215-400-3131", "Website": "https://holme.philasd.org/", "School Leader Name": "MRS CRYSTLE ROYE-GILL", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8300", "name": "Mayfair School", "sort_name": "Mayfair School", "abbr_name": "Mayfair", "geom": {"type": "Point", "coordinates": [-75.05339332, 40.03945436]}, "Year Opened": "1949", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3001 PRINCETON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3280", "Fax Number": "215-400-3281", "Website": "https://mayfair.philasd.org/", "School Leader Name": "MR WILLIAM DAY JR", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8310", "name": "J. Hampton Moore School", "sort_name": "Moore, J. Hampton School", "abbr_name": "Moore", "geom": {"type": "Point", "coordinates": [-75.076912, 40.049135]}, "Year Opened": "1952", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6900 SUMMERDALE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3180", "Fax Number": "215-400-3181", "Website": "https://moore.philasd.org/", "School Leader Name": "MR TIMOTHY GLYNN", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8340", "name": "Solomon Solis-Cohen School", "sort_name": "Solis-Cohen, Solomon School", "abbr_name": "Solis-Cohen", "geom": {"type": "Point", "coordinates": [-75.064725, 40.044644]}, "Year Opened": "1948", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "7001 HORROCKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3250", "Fax Number": "215-400-3251", "Website": "https://soliscohen.philasd.org/", "School Leader Name": "MS MICHELINA SERIANNI", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8350", "name": "Gilbert Spruance School", "sort_name": "Spruance, Gilbert School", "abbr_name": "Spruance", "geom": {"type": "Point", "coordinates": [-75.07232936, 40.03756142]}, "Year Opened": "1949", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "6401 HORROCKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3290", "Fax Number": "215-400-3291", "Website": "https://spruance.philasd.org/", "School Leader Name": "MR KWAND LANG", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8360", "name": "Rhawnhurst School", "sort_name": "Rhawnhurst School", "abbr_name": "Rhawnhurst", "geom": {"type": "Point", "coordinates": [-75.05898166, 40.05869601]}, "Year Opened": "1949", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "7809 CASTOR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19152", "Phone Number": "215-400-3220", "Fax Number": "215-400-3221", "Website": "https://rhawnhurst.philasd.org/", "School Leader Name": "MS JOY ELLIS", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8370", "name": "Watson Comly School", "sort_name": "Comly, Watson School", "abbr_name": "Comly", "geom": {"type": "Point", "coordinates": [-75.0091088, 40.12096486]}, "Year Opened": "1929", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "1001 BYBERRY RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "215-400-3010", "Fax Number": "215-400-3011", "Website": "https://comly.philasd.org/", "School Leader Name": "MR RAYMOND REALDINE", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8380", "name": "Louis H. Farrell School", "sort_name": "Farrell, Louis H. School", "abbr_name": "Farrell", "geom": {"type": "Point", "coordinates": [-75.05241476, 40.06657162]}, "Year Opened": "1959", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "8300 CASTOR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19152", "Phone Number": "215-400-3230", "Fax Number": "215-400-3231", "Website": "https://farrell.philasd.org/", "School Leader Name": "MR PETER JEPSEN", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8390", "name": "A.L. Fitzpatrick School", "sort_name": "Fitzpatrick, A. L. School", "abbr_name": "Fitzpatrick", "geom": {"type": "Point", "coordinates": [-74.976529, 40.080306]}, "Year Opened": "1960", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "11061 KNIGHTS RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19154", "Phone Number": "215-400-3060", "Fax Number": "215-400-3061", "Website": "https://fitzpatrick.philasd.org/", "School Leader Name": "MS KAREN WHITE", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8400", "name": "Anne Frank School", "sort_name": "Frank, Anne School", "abbr_name": "Frank, Anne", "geom": {"type": "Point", "coordinates": [-75.028222, 40.088288]}, "Year Opened": "1962", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "2000 BOWLER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19115", "Phone Number": "215-400-3070", "Fax Number": "215-400-3071", "Website": "https://annefrank.philasd.org/", "School Leader Name": "MR MAX KOMINS", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8410", "name": "Robert B. Pollock School", "sort_name": "Pollock, Robert B. School", "abbr_name": "Pollock", "geom": {"type": "Point", "coordinates": [-75.04414659999999, 40.0457222]}, "Year Opened": "1962", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3001 RYAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19152", "Phone Number": "215-400-3210", "Fax Number": "215-400-3211", "Website": "https://pollock.philasd.org/", "School Leader Name": "MS YVETTE JACKSON", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8420", "name": "Stephen Decatur School", "sort_name": "Decatur, Stephen School", "abbr_name": "Decatur", "geom": {"type": "Point", "coordinates": [-74.970535, 40.095818]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "3500 ACADEMY RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19154", "Phone Number": "215-400-3050", "Fax Number": "215-400-3051", "Website": "https://decatur.philasd.org/", "School Leader Name": "MR DOUGLAS STROBEL", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8430", "name": "Joseph Greenberg School", "sort_name": "Greenberg, Joseph School", "abbr_name": "Greenberg", "geom": {"type": "Point", "coordinates": [-75.05771102, 40.09608652]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "600 SHARON LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19115", "Phone Number": "215-400-3080", "Fax Number": "215-400-3081", "Website": "https://greenberg.philasd.org/", "School Leader Name": "MS GINA HUBBARD", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8440", "name": "William H. Loesche School", "sort_name": "Loesche, William H. School", "abbr_name": "Loesche", "geom": {"type": "Point", "coordinates": [-75.02386784, 40.11358364]}, "Year Opened": "1965", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "595 TOMLINSON RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "215-400-3020", "Fax Number": "215-400-3021", "Website": "https://loesche.philasd.org/", "School Leader Name": "MS SHERIN KURIAN", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8450", "name": "YESPhilly", "sort_name": "YESPhilly", "abbr_name": "YESPhilly", "geom": {"type": "Point", "coordinates": [-75.1541276, 39.9944643]}, "Year Opened": "2013", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Youth Empowerment Services", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2709 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-769-0340", "Fax Number": "215-972-2329", "Website": "http://www.yesphilly.org", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8460", "name": "Philadelphia Learning Academy South", "sort_name": "Philadelphia Learning Academy South (PLAS)", "abbr_name": "PLAS", "geom": {"type": "Point", "coordinates": [-75.21013521, 39.96971371]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Intervention/Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4300 WESTMINSTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-9080", "Fax Number": "215-400-9081", "Website": "https://plasouth.philasd.org/", "School Leader Name": "MR DARRYL BLACKWELL", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8470", "name": "Philadelphia Learning Academy North", "sort_name": "Philadelphia Learning Academy North (PLAN)", "abbr_name": "PLAN", "geom": {"type": "Point", "coordinates": [-75.12599679, 40.01425525]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "08-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Intervention/Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4224 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-9050", "Fax Number": "215-400-9051", "Website": "https://planorth.philasd.org/", "School Leader Name": "", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8540", "name": "Pennypack House School", "sort_name": "Pennypack House School", "abbr_name": "Pennypack", "geom": {"type": "Point", "coordinates": [-75.019689, 40.032021]}, "Year Opened": "1952", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Justice", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "7901 STATE RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-685-7752", "Fax Number": "215-335-5393", "Website": "https://pennypackhouse.philasd.org/", "School Leader Name": "MS BARBARA WELLS", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8560", "name": "The Workshop School", "sort_name": "The Workshop School", "abbr_name": "The Workshop", "geom": {"type": "Point", "coordinates": [-75.21855329, 39.95530589]}, "Year Opened": "2013", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "221 S HANSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7730", "Fax Number": "215-400-7731", "Website": "https://workshopschool.philasd.org/", "School Leader Name": "MRS AYANNA WALKER", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8690", "name": "Crossroads Accelerated Academy", "sort_name": "Crossroads Accelerated Academy", "abbr_name": "Crossroads Accel", "geom": {"type": "Point", "coordinates": [-75.21013521, 39.96971371]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "07-10", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4300 WESTMINSTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-9070", "Fax Number": "215-400-9071", "Website": "https://crossroads-accelerated.philasd.org/", "School Leader Name": "DR KIMBERLY GRAHN", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8770", "name": "John Hancock Demonstration School", "sort_name": "John Hancock Demonstration School", "abbr_name": "Hancock Demonstration", "geom": {"type": "Point", "coordinates": [-74.98842793, 40.06774728]}, "Year Opened": "2016", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "3700 MORRELL AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19114", "Phone Number": "215-400-3120", "Fax Number": "215-400-3121", "Website": "https://hancock.philasd.org/", "School Leader Name": "MS MELISSA BRAGG", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8780", "name": "Philadelphia Virtual Academy", "sort_name": "Philadelphia Virtual Academy (PVA)", "abbr_name": "PVA", "geom": {"type": "Point", "coordinates": [-75.16264405, 39.96102159]}, "Year Opened": "2013", "School Level": "Elementary-Middle-High", "Admission Type": "Virtual", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Virtual", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "440 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-3110", "Fax Number": "215-400-3111", "Website": "https://pva.philasd.org/", "School Leader Name": "MR DAVID ANDERSON", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8860", "name": "One Bright Ray Mansion", "sort_name": "One Bright Ray Mansion", "abbr_name": "OBR Mansion", "geom": {"type": "Point", "coordinates": [-75.18402464, 39.99074371]}, "Year Opened": "2018", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3133 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "", "Fax Number": "", "Website": "https://www.onebrightraycommunity.org/school-life/obr-team/mansion-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8870", "name": "One Bright Ray Mansion Evening", "sort_name": "One Bright Ray Mansion EOP", "abbr_name": "OBR Mansion Evn", "geom": {"type": "Point", "coordinates": [-75.18402464, 39.99074371]}, "Year Opened": "2018", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Adult Diploma", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3133 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "", "Fax Number": "", "Website": "https://www.onebrightraycommunity.org/school-life/obr-team/mansion-adult-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8890", "name": "One Bright Ray - Simpson Campus", "sort_name": "One Bright Ray - Simpson", "abbr_name": "OBR Simpson", "geom": {"type": "Point", "coordinates": [-75.10560096, 40.00528]}, "Year Opened": "2007", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1142 E ERIE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-744-6000", "Fax Number": "", "Website": "http://www.onebrightraycommunity.org/school-life/obr-team/simpson-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8900", "name": "Re-Engagement Center", "sort_name": "Re-Engagement Center (REC)", "abbr_name": "Re-Engagement", "geom": {"type": "Point", "coordinates": [-75.16264405, 39.96102159]}, "Year Opened": "2008", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Justice", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "440 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-6700", "Fax Number": "215-400-4179", "Website": "https://www.philasd.org/opportunitynetwork/reengagement/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}]
diff --git a/examples/school-explorer-for-parents/site/index.html b/examples/school-explorer-for-parents/site/index.html
deleted file mode 100644
index e5ae241..0000000
--- a/examples/school-explorer-for-parents/site/index.html
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
- School Explorer
-
-
-
-
-
-
-
-
- Philadelphia School Explorer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/examples/school-explorer-for-parents/site/js/address-entry.js b/examples/school-explorer-for-parents/site/js/address-entry.js
deleted file mode 100644
index 0a8459d..0000000
--- a/examples/school-explorer-for-parents/site/js/address-entry.js
+++ /dev/null
@@ -1,82 +0,0 @@
-/* globals turf */
-
-import { debounce } from './function-tools.js';
-
-const addressSearchInput = document.querySelector('[name="address-search"]');
-const addressOptionsList = document.querySelector('#address-options');
-
-function initializeAddressEntry(catchments, eventBus) {
- addressSearchInput.addEventListener(
- 'input',
- debounce(() => handleAddressSearch(catchments, eventBus), 500),
- );
-}
-
-async function handleAddressSearch(catchments, eventBus) {
- const searchAddress = addressSearchInput.value;
-
- if (searchAddress === '') {
- const detail = { place: null, catchment: null };
- const evt = new CustomEvent('addresschanged', { detail });
- eventBus.dispatchEvent(evt);
- return;
- }
-
- const apiKey = 'pk.eyJ1IjoibWp1bWJlLXRlc3QiLCJhIjoiY2wwb3BudmZ3MWdyMjNkbzM1c2NrMGQwbSJ9.2ATDPobUwpa7Ou5jsJOGYA';
- const resp = await fetch(`https://api.mapbox.com/geocoding/v5/mapbox.places/${searchAddress}.json?access_token=${apiKey}`);
- const addressOptions = await resp.json();
-
- addressOptionsList.innerHTML = `
- ${addressOptions.features.map((feature) => `
-
- ${feature.place_name}
-
- `).join('')}
- `;
-
- for (const option of addressOptionsList.querySelectorAll('li')) {
- option.addEventListener('click', (evt) => {
- handleAddressOptionSelect(evt, catchments, eventBus);
- });
- }
-}
-
-/**
- * Handle the click of an address option list item.
- *
- * @param {PointerEvent} evt The event from clicking the list item
- * @param {FeatureCollection} catchments An array of catchment features
- * @param {EventTarget} eventBus The application event bus
- */
-function handleAddressOptionSelect(evt, catchments, eventBus) {
- const option = evt.target;
-
- addressSearchInput.value = option.dataset.name;
- addressOptionsList.innerHTML = '';
-
- const coords = [parseFloat(option.dataset.lon), parseFloat(option.dataset.lat)];
- const catchment = catchments.features.find((feature) => turf.booleanPointInPolygon(coords, feature));
-
- const detail = {
- place: {
- type: 'Feature',
- properties: {
- address: option.dataset.name,
- },
- geometry: {
- type: 'Point',
- coordinates: coords,
- },
- },
- catchment,
- };
- console.log(detail);
- const newEvt = new CustomEvent('addresschanged', { detail });
- eventBus.dispatchEvent(newEvt);
-}
-
-export {
- initializeAddressEntry,
-};
diff --git a/examples/school-explorer-for-parents/site/js/function-tools.js b/examples/school-explorer-for-parents/site/js/function-tools.js
deleted file mode 100644
index 52ed5ac..0000000
--- a/examples/school-explorer-for-parents/site/js/function-tools.js
+++ /dev/null
@@ -1,74 +0,0 @@
-/**
- * NOTE:
- * ~~~~~
- * The following functions are re-implementations of functions that are
- * available from the Lodash library: https://lodash.com/
- */
-
-/**
- * Creates an array of values by a particular attribute value (denoted by
- * `key`) off of each object in an input array. For example:
- *
- * const users = [
- * { 'user': 'barney' },
- * { 'user': 'fred' }
- * ];
- *
- * _.map(users, 'user');
- * // => ['barney', 'fred']
- *
- * @param {Array} arr The input array
- * @param {String} key The attribute name to search for within each object
- * @return {Array} A new array of only the given properties of each input array object
- */
-function pluck(arr, key) {
- return arr.map((elem) => elem[key]);
-}
-
-/**
- * Create a new array with only unique elements. Order is not guaranteed to be
- * maintained. For example:
- *
- * _.uniq([1, 1, 2]);
- * // => [1, 2]
- *
- * @param {Array} arr An input array
- * @return {Array} A new array with only the unique elements from the input
- */
-function uniq(arr) {
- return [...new Set(arr)];
-}
-
-/**
- * Create a new function that waits some number of milliseconds after its last
- * call to run the given function. Useful for doing things like requesting data
- * from an API, where you want to limit the frequency with which you call the
- * API.
- *
- * @param {Function} func The function that should be run when the timer runs out
- * @param {Number} timeout How long (in milliseconds) to wait after the last call to actually run the function
- * @return {Function} A new function that waits some number of milliseconds after its last call to run the wrapped function
- */
-function debounce(func, timeout) {
- let timer = null;
-
- function wrapper(...args) {
- if (timer) {
- clearTimeout(timer);
- }
- timer = setTimeout(() => {
- func.apply(this, args); // eslint-disable-line no-invalid-this
- timer = null;
- }, timeout);
- }
-
- return wrapper;
-}
-
-window.functionTools = {
- pluck,
- uniq,
- debounce,
-};
-
-export { pluck, uniq, debounce };
diff --git a/examples/school-explorer-for-parents/site/js/main.js b/examples/school-explorer-for-parents/site/js/main.js
deleted file mode 100644
index edbefbb..0000000
--- a/examples/school-explorer-for-parents/site/js/main.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import { initializeSchoolMap } from './school-map.js';
-import { initializeSchoolList } from './school-list.js';
-import { initializeCountDisplay } from './school-count.js';
-import { initializeAddressEntry } from './address-entry.js';
-import { setupFilterEvents } from './school-filters.js';
-
-
-const [schoolsReq, catchmentsReq] = await Promise.all([
- fetch('data/schools.json'),
- fetch('data/catchments.json'),
-]);
-const schools = await schoolsReq.json();
-const catchments = await catchmentsReq.json();
-
-const eventBus = new EventTarget();
-
-const schoolMap = initializeSchoolMap(schools, eventBus);
-const schoolList = initializeSchoolList(schools, eventBus);
-const schoolCountDisplay = initializeCountDisplay(schools, eventBus);
-const addressEntry = initializeAddressEntry(catchments, eventBus);
-setupFilterEvents(schools, eventBus);
-
-// Make these variables globally available.
-window.schools = schools;
-window.catchments = catchments;
-window.schoolMap = schoolMap;
-window.schoolList = schoolList;
-window.addressEntry = addressEntry;
-window.schoolCountDisplay = schoolCountDisplay;
diff --git a/examples/school-explorer-for-parents/site/js/school-count.js b/examples/school-explorer-for-parents/site/js/school-count.js
deleted file mode 100644
index 06d4820..0000000
--- a/examples/school-explorer-for-parents/site/js/school-count.js
+++ /dev/null
@@ -1,23 +0,0 @@
-function initializeCountDisplay(schools, eventBus) {
- const schoolCountDisplay = document.querySelector('#school-count');
-
- updateCountDisplay(schools, schoolCountDisplay);
- setupCountDisplayEventHandlers(schoolCountDisplay, eventBus);
-
- return schoolCountDisplay;
-}
-
-function setupCountDisplayEventHandlers(display, eventBus) {
- eventBus.addEventListener('filterschanged', (evt) => {
- const { include } = evt.detail;
- updateCountDisplay(include, display);
- });
-}
-
-function updateCountDisplay(schools, display) {
- display.innerHTML = `Showing ${schools.length} school${schools.length === 1 ? '' : 's'}`;
-}
-
-export {
- initializeCountDisplay,
-};
diff --git a/examples/school-explorer-for-parents/site/js/school-filters.js b/examples/school-explorer-for-parents/site/js/school-filters.js
deleted file mode 100644
index 6b439ae..0000000
--- a/examples/school-explorer-for-parents/site/js/school-filters.js
+++ /dev/null
@@ -1,71 +0,0 @@
-/* globals turf */
-
-const gradeCheckboxes = document.querySelectorAll('[name="school-filter-grade"]');
-const admissionCheckboxes = document.querySelectorAll('[name="school-filter-admission"]');
-const nameSubstringInput = document.querySelector('[name="school-filter-name"]');
-
-window.schoolNameFilter = nameSubstringInput;
-window.schoolGradeFilters = gradeCheckboxes;
-
-let currentCatchment = null;
-
-function shouldShowSchool(school) {
- const filterGrades = Array.from(gradeCheckboxes)
- .filter((c) => c.checked)
- .map((c) => `Grade ${c.value}`);
- for (const g of filterGrades) {
- if (school[g] === '0') {
- return false;
- }
- }
-
- const filterAdmissions = Array.from(admissionCheckboxes)
- .filter((c) => c.checked)
- .map((c) => c.value);
- if (filterAdmissions.length > 0 && !filterAdmissions.includes(school['Admission Type'])) {
- return false;
- }
-
- const lSchoolName = school.name.toLowerCase();
- const lFilterNameSubstring = nameSubstringInput.value.toLowerCase();
- if (!lSchoolName.includes(lFilterNameSubstring)) {
- return false;
- }
-
- if (school['Admission Type'] === 'Neighborhood' && currentCatchment &&
- !turf.booleanPointInPolygon(school.geom.coordinates, currentCatchment)) {
- return false;
- }
-
- return true;
-}
-
-function updateShownSchools(allSchools, eventBus) {
- const schoolsToShow = allSchools.filter(shouldShowSchool);
- const detail = { 'include': schoolsToShow };
- const evt = new CustomEvent('filterschanged', { detail });
- eventBus.dispatchEvent(evt);
-}
-
-function setupFilterEvents(allSchools, eventBus) {
- for (const filter of document.querySelectorAll('#school-filters input')) {
- filter.addEventListener('change', () => {
- updateShownSchools(allSchools, eventBus);
- });
- filter.addEventListener('input', () => {
- updateShownSchools(allSchools, eventBus);
- });
- }
-
- eventBus.addEventListener('addresschanged', (evt) => {
- const { catchment } = evt.detail;
- currentCatchment = catchment;
- updateShownSchools(allSchools, eventBus);
- });
-}
-
-export {
- shouldShowSchool,
- setupFilterEvents,
- updateShownSchools,
-};
diff --git a/examples/school-explorer-for-parents/site/js/school-list.js b/examples/school-explorer-for-parents/site/js/school-list.js
deleted file mode 100644
index 1063a59..0000000
--- a/examples/school-explorer-for-parents/site/js/school-list.js
+++ /dev/null
@@ -1,92 +0,0 @@
-import { htmlToElement } from './template-tools.js';
-
-function initializeSchoolList(schools, eventBus) {
- const list = document.getElementById('school-list');
- list.highlightedIDs = new Set();
- list.items = {};
- list.eventBus = eventBus;
-
- showSchoolsInList(schools, list);
- setupListEventHandlers(list);
-
- return list;
-}
-
-function setupListEventHandlers(list) {
- list.eventBus.addEventListener('selectionchanged', (evt) => {
- const { added, removed } = evt.detail;
- highlightSchoolsInList(added, list);
- unhighlightSchoolsInList(removed, list);
- });
-
- list.eventBus.addEventListener('filterschanged', (evt) => {
- const { include } = evt.detail;
- showSchoolsInList(include, list);
- });
-}
-
-function isHighlightedInList(school, list) {
- const id = school['sdp_id'];
- return list.highlightedIDs.has(id);
-}
-
-function makeSchoolListItem(school, list) {
- const isHighlighted = isHighlightedInList(school, list);
- const html = `
-
- ${school.name}
- ${school['Current Grade Span Served']}
- ${school['Admission Type']}
-
- `;
- const li = htmlToElement(html);
- li.addEventListener('click', () => {
- const detail = isHighlightedInList(school, list)
- ? { 'added': [], 'removed': [school] }
- : { 'added': [school], 'removed': [] };
- const evt = new CustomEvent('selectionchanged', { detail });
- list.eventBus.dispatchEvent(evt);
- });
- return li;
-}
-
-function redrawSchoolsInList(schools, list) {
- for (const school of schools) {
- const id = school['sdp_id'];
- const li = list.querySelector(`li[data-sdp-id="${id}"]`);
- if (li) {
- li.replaceWith(makeSchoolListItem(school, list));
- }
- }
-}
-
-function highlightSchoolsInList(schools, list) {
- for (const school of schools) {
- const id = school['sdp_id'];
- list.highlightedIDs.add(id);
- }
- redrawSchoolsInList(schools, list);
-}
-
-function unhighlightSchoolsInList(schools, list) {
- for (const school of schools) {
- const id = school['sdp_id'];
- list.highlightedIDs.delete(id);
- }
- redrawSchoolsInList(schools, list);
-}
-
-function showSchoolsInList(schools, list) {
- list.innerHTML = '';
- for (const school of schools) {
- const li = makeSchoolListItem(school, list);
- list.append(li);
- }
-}
-
-export {
- highlightSchoolsInList,
- initializeSchoolList,
- showSchoolsInList,
- unhighlightSchoolsInList,
-};
diff --git a/examples/school-explorer-for-parents/site/js/school-map.js b/examples/school-explorer-for-parents/site/js/school-map.js
deleted file mode 100644
index 7474849..0000000
--- a/examples/school-explorer-for-parents/site/js/school-map.js
+++ /dev/null
@@ -1,171 +0,0 @@
-function initializeSchoolMap(schools, eventBus) {
- const schoolMap = L.map('school-map').setView([40.047591, -75.153350], 10);
- L.tileLayer('https://api.mapbox.com/styles/v1/mjumbe-test/cl8w256ur002h14qe8m4a2n3s/tiles/256/{z}/{x}/{y}@2x?access_token={apiKey}', {
- apiKey: 'pk.eyJ1IjoibWp1bWJlLXRlc3QiLCJhIjoiY2wwb3BudmZ3MWdyMjNkbzM1c2NrMGQwbSJ9.2ATDPobUwpa7Ou5jsJOGYA',
- maxZoom: 19,
- attribution: '© Mapbox © OpenStreetMap Improve this map ',
- }).addTo(schoolMap);
-
- schoolMap.catchmentPane = schoolMap.createPane('catchmentPane');
- schoolMap.catchmentPane.style.zIndex = 300;
-
- schoolMap.userAddressLayer = L.layerGroup().addTo(schoolMap);
- schoolMap.highlightedIDs = new Set();
- schoolMap.schoolLayers = {};
- schoolMap.eventBus = eventBus;
-
- showSchoolsOnMap(schools, schoolMap);
- setupMapEventHandlers(schoolMap);
-
- return schoolMap;
-}
-
-function setupMapEventHandlers(map) {
- map.eventBus.addEventListener('selectionchanged', (evt) => {
- const { added, removed } = evt.detail;
- highlightSchoolsOnMap(added, map);
- unhighlightSchoolsOnMap(removed, map);
- });
-
- map.eventBus.addEventListener('filterschanged', (evt) => {
- const { include } = evt.detail;
- showSchoolsOnMap(include, map);
- });
-
- map.eventBus.addEventListener('addresschanged', (evt) => {
- const { place, catchment } = evt.detail;
- showUserAddressOnMap(place, catchment, map);
- });
-}
-
-function makeSchoolFeature(school) {
- const feature = {
- type: 'Feature',
- id: school['sdp_id'],
- properties: {},
- geometry: school.geom,
- };
- return feature;
-}
-
-function getSchoolStyle(feature, map) {
- if (map.highlightedIDs.has(feature.id)) {
- return {
- stroke: true,
- color: 'red',
- fillColor: 'blue',
- fillOpacity: 0.5,
- radius: 3,
- };
- } else {
- return {
- stroke: false,
- fillColor: 'blue',
- fillOpacity: 0.5,
- radius: 3,
- };
- }
-}
-
-let firstFit = false;
-function redrawSchoolsOnMap(schools, map) {
- let boundsToFit = null;
-
- for (const school of schools) {
- const id = school['sdp_id'];
- const layer = map.schoolLayers[id];
- if (layer) {
- layer.resetStyle();
- }
-
- if (!firstFit) {
- if (boundsToFit === null) {
- boundsToFit = layer.getBounds();
- } else {
- boundsToFit.extend(layer.getBounds());
- }
- }
- }
-
- if (!firstFit) {
- map.fitBounds(boundsToFit);
- firstFit = true;
- }
-}
-
-function isHighlightedOnMap(school, map) {
- const id = school['sdp_id'];
- return map.highlightedIDs.has(id);
-}
-
-function highlightSchoolsOnMap(schools, map) {
- for (const school of schools) {
- const id = school['sdp_id'];
- map.highlightedIDs.add(id);
- }
- redrawSchoolsOnMap(schools, map);
-}
-
-function unhighlightSchoolsOnMap(schools, map) {
- for (const school of schools) {
- const id = school['sdp_id'];
- map.highlightedIDs.delete(id);
- }
- redrawSchoolsOnMap(schools, map);
-}
-
-function showSchoolsOnMap(schools, map) {
- const ids = new Set(schools.map((s) => s['sdp_id']));
-
- // Remove features with IDs not in the schools array
- for (const id of Object.keys(map.schoolLayers)) {
- if (!ids.has(id)) {
- const layer = map.schoolLayers[id];
- map.removeLayer(layer);
- delete map.schoolLayers[id];
- }
- }
-
- // Add new features for IDs not in the layers
- for (const school of schools) {
- const feature = makeSchoolFeature(school);
- const id = feature.id;
- if (map.schoolLayers[id] === undefined) {
- map.schoolLayers[id] = L.geoJSON(feature, {
- pointToLayer: (p, ll) => L.circleMarker(ll),
- style: (f) => getSchoolStyle(f, map),
- })
- .on('click', () => {
- const detail = isHighlightedOnMap(school, map)
- ? { 'added': [], 'removed': [school] }
- : { 'added': [school], 'removed': [] };
- const evt = new CustomEvent('selectionchanged', { detail });
- map.eventBus.dispatchEvent(evt);
- })
- .addTo(map);
- }
- }
-
- redrawSchoolsOnMap(schools, map);
-}
-
-function showUserAddressOnMap(place, catchment, map) {
- map.userAddressLayer.clearLayers();
-
- if (catchment) {
- L.geoJSON(catchment, { pane: 'catchmentPane', style: { color: 'gray', weight: 1 }})
- .addTo(map.userAddressLayer);
- }
-
- if (place) {
- L.geoJSON(place)
- .addTo(map.userAddressLayer);
- }
-}
-
-export {
- highlightSchoolsOnMap,
- initializeSchoolMap,
- showSchoolsOnMap,
- unhighlightSchoolsOnMap,
-};
diff --git a/examples/school-explorer-for-parents/site/js/template-tools.js b/examples/school-explorer-for-parents/site/js/template-tools.js
deleted file mode 100644
index 3818461..0000000
--- a/examples/school-explorer-for-parents/site/js/template-tools.js
+++ /dev/null
@@ -1,33 +0,0 @@
-/* ====================
-The following two functions take a string of HTML and create DOM element objects
-representing the tags, using the `template` feature of HTML. See the following
-for more information: https://stackoverflow.com/a/35385518/123776
-==================== */
-
-/* eslint-disable no-unused-vars */
-
-/**
- * @param {String} html HTML representing a single element
- * @return {Element}
- */
-function htmlToElement(html) {
- const template = document.createElement('template');
- const trimmedHtml = html.trim(); // Never return a text node of whitespace as the result
- template.innerHTML = trimmedHtml;
- return template.content.firstChild;
-}
-
-/**
- * @param {String} html HTML representing any number of sibling elements
- * @return {NodeList}
- */
-function htmlToElements(html) {
- const template = document.createElement('template');
- template.innerHTML = html;
- return template.content.childNodes;
-}
-
-export {
- htmlToElement,
- htmlToElements,
-};
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..f71de98
--- /dev/null
+++ b/index.html
@@ -0,0 +1,135 @@
+
+
+
+
+
+ Travel Dashboard - Uber Style
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..7b944ca
--- /dev/null
+++ b/style.css
@@ -0,0 +1,139 @@
+/* General Reset and Styling */
+* {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ }
+
+ body {
+ background-color: #2C2C2C; /* Dark gray background */
+ font-family: "Open Sans", sans-serif;
+ color: #ffffff;
+ display: flex;
+ justify-content: center; /* Center the map and dashboard */
+ align-items: center;
+ height: 100vh;
+ padding: 0 20px;
+ }
+
+ /* Map container */
+ #map {
+ height: 80vh; /* 80% of the viewport height */
+ width: 60vw; /* 60% of the viewport width */
+ border-radius: 15px;
+ border: 2px solid #444;
+ box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
+ }
+
+ /* Main Dashboard Container */
+ .dashboard-container {
+ position: absolute;
+ right: 30px;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 400px;
+ background: #FFFFFF;
+ border-radius: 15px;
+ box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
+ padding: 20px;
+ overflow-y: auto;
+ height: 80vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ /* Uber-style buttons */
+ .uber-btn {
+ background-color: #000000;
+ color: #FFFFFF;
+ font-size: 14px;
+ padding: 10px 20px;
+ border-radius: 6px;
+ border: none;
+ margin-top: 15px;
+ cursor: pointer;
+ text-align: center;
+ width: 100%;
+ }
+
+ .uber-btn:hover {
+ background-color: #333333;
+ }
+
+ /* Section Titles */
+ .dashboard-title, .search-section h4, .itinerary-section h4 {
+ margin-top: 0;
+ color: #333333;
+ font-weight: 700;
+ font-size: 18px;
+ margin-bottom: 15px;
+ }
+
+ /* Input fields for search bars */
+ .search-bar {
+ width: 100%;
+ padding: 12px;
+ margin-bottom: 15px;
+ font-size: 16px;
+ border: 1px solid #E0E0E0;
+ border-radius: 10px;
+ background-color: #F9F9F9;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ }
+
+ /* Filter Dropdowns */
+ .filter-dropdown {
+ width: 100%;
+ padding: 12px;
+ margin-bottom: 15px;
+ font-size: 16px;
+ border: 1px solid #E0E0E0;
+ border-radius: 10px;
+ background-color: #F9F9F9;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ }
+
+ /* Table for Itinerary */
+ .itinerary-section {
+ margin-top: 20px;
+ }
+
+ .itinerary-table {
+ width: 100%;
+ border-collapse: collapse;
+ background-color: #F9F9F9;
+ border-radius: 10px;
+ box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ .itinerary-table th, .itinerary-table td {
+ padding: 12px;
+ border-bottom: 1px solid #E0E0E0;
+ text-align: left;
+ }
+
+ .itinerary-table th {
+ background-color: #444;
+ color: #FFF;
+ }
+
+ .itinerary-table td {
+ background-color: #FFF;
+ }
+
+ /* Misc */
+ .extra-stop-container {
+ display: flex;
+ align-items: center;
+ margin-top: 15px;
+ }
+
+ .inputs input, .duration-selector {
+ width: 70%;
+ padding: 12px;
+ font-size: 16px;
+ border: 1px solid #E0E0E0;
+ border-radius: 10px;
+ background-color: #F9F9F9;
+ }
+
\ No newline at end of file